-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrest.php.dist
executable file
·55 lines (48 loc) · 1.72 KB
/
rest.php.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
header('Content-Type: application/json; charset=utf-8');
// initialization script
require_once 'init.php';
class AdiantiRestServer
{
public static function run($request)
{
$input = json_decode(file_get_contents("php://input"), true);
$request = array_merge($request, (array) $input);
$class = isset($request['class']) ? $request['class'] : '';
$method = isset($request['method']) ? $request['method'] : '';
$response = NULL;
// aqui implementar mecanismo de controle !!
if (get_parent_class($class) !== 'Adianti\Service\AdiantiRecordService')
{
http_response_code(401);
return json_encode( array('status' => 'error',
'data' => _t('Permission denied')));
}
try
{
$response = AdiantiCoreApplication::execute($class, $method, $request, 'rest');
if (is_array($response))
{
array_walk_recursive($response, ['AdiantiStringConversion', 'assureUnicode']);
}
return json_encode( array('status' => 'success', 'data' => $response));
}
catch (Exception $e)
{
if(200 === http_response_code())
{
http_response_code(500);
}
return json_encode( array('status' => 'error', 'data' => $e->getMessage()));
}
catch (Error $e)
{
if(200 === http_response_code())
{
http_response_code(500);
}
return json_encode( array('status' => 'error', 'data' => $e->getMessage()));
}
}
}
print AdiantiRestServer::run($_REQUEST);