blob: cee7ebc43aab34fcb645cbe93dd86146d1750753 (
plain)
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
56
57
58
59
60
61
|
<?php
/**
* Rest endpoint.
* The API REST endpoint.
*
* @package Elgg
* @subpackage API
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author Curverider Ltd <info@elgg.com>
* @copyright Curverider Ltd 2008
* @link http://elgg.org/
*/
/**
* Start the Elgg engine
*/
require_once("../../engine/start.php");
global $CONFIG;
// Register the error handler
error_reporting(E_ALL);
set_error_handler('__php_api_error_handler');
// Register a default exception handler
set_exception_handler('__php_api_exception_handler');
// Check to see if the api is available
if ((isset($CONFIG->disable_api)) && ($CONFIG->disable_api == true))
throw new SecurityException(elgg_echo('SecurityException:APIAccessDenied'));
// Register some default PAM methods, plugins can add their own
register_pam_handler('pam_auth_session');
register_pam_handler('pam_auth_hmac');
register_pam_handler('pam_auth_usertoken', 'required'); // Either token present and valid OR method doesn't require one.
register_pam_handler('pam_auth_anonymous_method'); // Support anonymous functions
// Get parameter variables
$method = get_input('method');
$result = null;
// Authenticate session
if (pam_authenticate())
{
// Authenticated somehow, now execute.
$token = "";
$params = $CONFIG->input;// Use $CONFIG->input instead of $_REQUEST since this is called by the pagehandler
if (isset($params['auth_token'])) $token = $params['auth_token'];
$result = execute_method($method, $params, $token);
}
else
throw new SecurityException(elgg_echo('SecurityException:NoAuthMethods'));
// Finally output
if (!($result instanceof GenericResult))
throw new APIException(elgg_echo('APIException:ApiResultUnknown'));
// Output the result
page_draw($method, elgg_view("api/output", array("result" => $result)));
?>
|