38 lines
770 B
PHP
38 lines
770 B
PHP
<?php
|
|
|
|
/*
|
|
|
|
Platinus API
|
|
|
|
*/
|
|
|
|
namespace Platinus;
|
|
|
|
class API {
|
|
function __construct() {
|
|
if(http_response_code() == 404){
|
|
API::InvokeError(403, "Unauthorized");
|
|
}
|
|
}
|
|
|
|
function InvokeError($errorCode, $message) {
|
|
$incident = md5(time()*8^42);
|
|
$incidentRand = ["azrt4o", "30jg49k", "nigm4gd"];
|
|
$incident = substr_replace($incident, $incidentRand[array_rand($incidentRand)], 15, 0);
|
|
http_response_code($errorCode);
|
|
header("Content-Type: application/json");
|
|
exit(API::PrettyJSONEncode(["error"=>"$message", "incidentID"=>$incident]));
|
|
}
|
|
|
|
function RespondJSON($array)
|
|
{
|
|
header("Content-Type: application/json");
|
|
exit(API::PrettyJSONEncode($array));
|
|
}
|
|
|
|
function PrettyJSONEncode($array){
|
|
return json_encode($array, JSON_PRETTY_PRINT);
|
|
}
|
|
}
|
|
|
|
?>
|