Api Controller

This commit is contained in:
JonatanRek 2020-04-24 18:37:05 +02:00
parent 3dbec89f7b
commit bc0816e812
1 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
<?php
class ApiObject {
private $data = [];
public $httpCode = 200;
public $autenticated = false;
function __construct($objectName, $httpHeaders) {
$this->table = $objectName;
$this->headers = $httpHeaders;
}
function requireAuth(){
if (isset($this->headers['HTTP_AUTHORIZATION'])) {
$this->autenticated = $this->apiManager->validateToken(explode(' ', $this->headers['HTTP_AUTHORIZATION'])[1]);
} else {
$error = new ApiError();
$error->code = "missing_token_header";
$error->message = "Missing Token in Header";
$error->hint = "check paiload header for 'token'";
echo json_encode($error);
die();
}
}
function response(){
http_response_code($this->httpCode);
echo json_encode($this->data);
die();
}
}