aboutsummaryrefslogtreecommitdiff
path: root/endpoints
diff options
context:
space:
mode:
Diffstat (limited to 'endpoints')
-rw-r--r--endpoints/rest.php60
1 files changed, 0 insertions, 60 deletions
diff --git a/endpoints/rest.php b/endpoints/rest.php
deleted file mode 100644
index 321d730c1..000000000
--- a/endpoints/rest.php
+++ /dev/null
@@ -1,60 +0,0 @@
-<?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 Marcus Povey <marcus@dushka.co.uk>
- * @copyright Curverider Ltd 2008
- * @link http://elgg.org/
- */
-
- // Include required files
- require_once('../engine/start.php');
- global $CONFIG;
-
- $CONFIG->debug = true;
- $CONFIG->site_id = 2;
- $CONFIG->cache_path = "/tmp/cache/";
-
- // 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 ConfigurationException("Sorry, API access has been disabled by the administrator.");
-
- // Register some default PAM methods, plugins can add their own
- register_api_pam_handler('pam_auth_session');
- register_api_pam_handler('pam_auth_hmac');
-
- // Get parameter variables
- $format = get_input('format', 'php');
- $method = get_input('method');
- $result = null;
-
- // Authenticate session
- if (api_pam_authenticate())
- {
- // Authenticated somehow, now execute.
- $token = "";
- $params = $_REQUEST;
- if (isset($params['auth_token'])) $token = $params['auth_token'];
-
- $result = execute_method($method, $params, $token);
- }
-
- // Finally output
- if (!($result instanceof GenericResult))
- throw new APIException("API Result is of an unknown type, this should never happen.");
-
- // Output the result
- echo output_result($result, $format);
-
-?> \ No newline at end of file