2017-04-13 22:46:51 +02:00
|
|
|
<?php
|
|
|
|
if (!defined('DC_RC_PATH')) { return; }
|
|
|
|
|
2017-04-30 17:38:07 +02:00
|
|
|
$core->url->register('rest','rest','^rest(?:/(.*))?$',array('rest','getResponse'));
|
2017-04-13 22:46:51 +02:00
|
|
|
class rest extends dcUrlHandlers
|
|
|
|
{
|
|
|
|
public static function getResponse($args)
|
|
|
|
{
|
|
|
|
global $core;
|
|
|
|
$active = (boolean)$core->blog->settings->rest->rest_active;
|
|
|
|
if (!$active){
|
|
|
|
self::p404();
|
|
|
|
return;
|
|
|
|
}
|
2017-05-01 00:51:42 +02:00
|
|
|
error_log($args);
|
2017-04-27 19:35:58 +02:00
|
|
|
|
2017-05-01 00:51:42 +02:00
|
|
|
//exception pour la documentation
|
|
|
|
if($args == "documentation"){
|
|
|
|
include (dirname(__FILE__).'/documentation/swagger-ui-dist/index.php');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-04-27 20:01:47 +02:00
|
|
|
//coors headers
|
|
|
|
if($core->blog->settings->rest->rest_send_cors_headers){
|
|
|
|
header('Access-Control-Allow-Origin: *');
|
2017-04-30 17:38:07 +02:00
|
|
|
header('Access-Control-Allow-Methods: GET, POST, PATCH, PUT, DELETE');
|
|
|
|
header('Access-Control-Allow-Headers: Content-Type, authorization, x_dc_key');
|
2017-04-27 20:01:47 +02:00
|
|
|
}
|
2017-04-28 19:34:27 +02:00
|
|
|
header('Content-Type: application/json');
|
2017-04-27 19:35:58 +02:00
|
|
|
|
2017-05-01 00:51:42 +02:00
|
|
|
//user authentification (facultative at this step)
|
2017-04-30 17:38:07 +02:00
|
|
|
$apiKey = rest::get_api_key_sended();
|
2017-05-01 00:51:42 +02:00
|
|
|
$user = false;
|
2017-04-30 17:38:07 +02:00
|
|
|
if($apiKey){
|
|
|
|
$user = new restAuth($core);
|
|
|
|
if($user->checkUser('','',$apiKey) === false){
|
2017-05-01 00:51:42 +02:00
|
|
|
header(RestQuery::get_full_code_header(403));
|
|
|
|
echo json_encode(array(
|
|
|
|
"error" => "Wrong API Key",
|
|
|
|
"code" => 403
|
|
|
|
));
|
|
|
|
return;
|
2017-04-30 17:38:07 +02:00
|
|
|
}
|
2017-05-01 00:51:42 +02:00
|
|
|
}
|
2017-04-30 17:38:07 +02:00
|
|
|
|
2017-05-01 00:51:42 +02:00
|
|
|
$r = new RestQuery($_SERVER['REQUEST_METHOD'],$args,$user);
|
|
|
|
header($r->response_code);
|
|
|
|
echo json_encode($r->response_message);
|
2017-04-30 17:38:07 +02:00
|
|
|
|
|
|
|
}
|
2017-05-01 00:51:42 +02:00
|
|
|
|
|
|
|
private function get_api_key_sended()
|
|
|
|
{
|
2017-04-30 17:38:07 +02:00
|
|
|
//to do: test it on nginx
|
|
|
|
$headers = apache_request_headers();
|
2017-04-28 19:34:27 +02:00
|
|
|
if(isset($headers['x_dc_key'])){
|
|
|
|
return $headers['x_dc_key'];
|
|
|
|
}else{
|
|
|
|
return false;
|
|
|
|
}
|
2017-04-13 22:46:51 +02:00
|
|
|
}
|
2017-04-28 19:34:27 +02:00
|
|
|
|
2017-04-13 22:46:51 +02:00
|
|
|
}
|