From 347b09527e5d812cd1ed67d6faa4ce0cba259b09 Mon Sep 17 00:00:00 2001 From: icewing Date: Fri, 25 Apr 2008 11:40:46 +0000 Subject: Marcus Povey * git-svn-id: https://code.elgg.org/elgg/trunk@526 36083f99-b078-4883-b0ff-0f9b5a30f544 --- action.php | 22 -------- engine/lib/api.php | 104 +++--------------------------------- engine/lib/elgglib.php | 2 +- views/default/api/output.php | 46 ++++++++++++++++ views/json/api/output.php | 19 +++++++ views/json/pageshells/pageshell.php | 15 ++++++ views/php/api/output.php | 19 +++++++ views/php/pageshells/pageshell.php | 15 ++++++ views/xml/api/output.php | 19 +++++++ views/xml/pageshells/pageshell.php | 16 ++++++ 10 files changed, 156 insertions(+), 121 deletions(-) delete mode 100644 action.php create mode 100644 views/default/api/output.php create mode 100644 views/json/api/output.php create mode 100644 views/json/pageshells/pageshell.php create mode 100644 views/php/api/output.php create mode 100644 views/php/pageshells/pageshell.php create mode 100644 views/xml/api/output.php create mode 100644 views/xml/pageshells/pageshell.php diff --git a/action.php b/action.php deleted file mode 100644 index 4e6569242..000000000 --- a/action.php +++ /dev/null @@ -1,22 +0,0 @@ - \ No newline at end of file diff --git a/engine/lib/api.php b/engine/lib/api.php index 14e875a77..6ce5bd29c 100644 --- a/engine/lib/api.php +++ b/engine/lib/api.php @@ -20,7 +20,7 @@ * @package Elgg * @subpackage Core */ - abstract class GenericResult implements Exportable + abstract class GenericResult { /** * The status of the result. @@ -85,7 +85,7 @@ */ public function export() { - global $ERRORS, $CONFIG, $PAM_HANDLER_MSG; + global $ERRORS, $CONFIG, $_PAM_HANDLERS_MSG; $result = new stdClass; @@ -680,97 +680,6 @@ return false; } - // Output functions /////////////////////////////////////////////////////////////////////// - - $API_OUTPUT_FUNCTIONS = array(); - - /** - * Register an API output handler. - * This function is used by the system and the plugins to register an output encoding method for - * returning API results. - * - * @param string $form The format string, eg 'xml' or 'php' - * @param string $function The function, which must be in the format function_name(stdClass $result) and return a string. - * @return bool - */ - function register_api_outputhandler($form, $function) - { - global $API_OUTPUT_FUNCTIONS; - - if ( ($form!="") && ($function!="")) - { - $API_OUTPUT_FUNCTIONS[$form] = $function; - - return true; - } - - return false; - } - - /** - * Output the result, with the given fault. - * - * @param GenericResult $result Result object. - * @param string $format The format - * @return string - */ - function output_result(GenericResult $result, $format) - { - global $API_OUTPUT_FUNCTIONS; - - if ( - (array_key_exists($format, $API_OUTPUT_FUNCTIONS)) && - (is_callable($API_OUTPUT_FUNCTIONS[$format])) - ) - return $API_OUTPUT_FUNCTIONS[$format]($result->export()); - - // We got here, so no output format was found. Output an error - $result = print_r($result->export(), true); - - return <<< END - -Something went wrong... - -

API Output Error

-

Something went badly wrong while outputting the result of your request in '$format' format. The result and any errors are displayed in - raw text below.

-
-$result
-
- - -END; - } - - - function xml_result_handler(stdClass $result) - { - header("Content-Type: text/xml"); - return serialise_object_to_xml($result, "elgg"); - } - - function php_result_handler(stdClass $result) - { - return serialize($result); - } - - function json_result_handler(stdClass $result) - { - return json_encode($result); - } - - function csv_result_handler(stdClass $result) - { - throw new NotImplementedException("CSV View currently not implemented"); - } - - // Register some format handlers - register_api_outputhandler('xml', 'xml_result_handler'); - register_api_outputhandler('php', 'php_result_handler'); - register_api_outputhandler('json', 'json_result_handler'); - register_api_outputhandler('csv', 'csv_result_handler'); - - // Error handler functions //////////////////////////////////////////////////////////////// /** Define a global array of errors */ @@ -825,13 +734,12 @@ END; error_log("*** FATAL EXCEPTION (API) *** : " . $exception); - echo output_result( - ErrorResult::getInstance( + page_draw($exception->getMessage(), elgg_view("api/output", + array('result' => ErrorResult::getInstance( $exception->getMessage(), $exception->getCode() == 0 ? ErrorResult::$RESULT_FAIL : $exception->getCode(), - $exception), - - get_input('format','php') // Attempt to get the requested format if passed. + $exception) + )) ); } diff --git a/engine/lib/elgglib.php b/engine/lib/elgglib.php index 6edc41fbd..10a2ebb25 100644 --- a/engine/lib/elgglib.php +++ b/engine/lib/elgglib.php @@ -777,7 +777,7 @@ * @param array $vars An array that points to the active symbol table at the point that the error occurred */ function __elgg_php_error_handler($errno, $errmsg, $filename, $linenum, $vars) - { + { $error = date("Y-m-d H:i:s (T)") . ": \"" . $errmsg . "\" in file " . $filename . " (line " . $linenum . ")"; switch ($errno) { diff --git a/views/default/api/output.php b/views/default/api/output.php new file mode 100644 index 000000000..70246e181 --- /dev/null +++ b/views/default/api/output.php @@ -0,0 +1,46 @@ +export(); + +?> +
+ + + + message!="") { ?> + + + result) { ?> + + + + + pam) { ?> + + + + runtime_errors) { ?> + + +
Status: + status}) ****"; + ?> +
Message: message; ?>
Result:
result); ?>
PAM:
pam); ?>
Runtime:
runtime_errors); ?>
+
\ No newline at end of file diff --git a/views/json/api/output.php b/views/json/api/output.php new file mode 100644 index 000000000..84e0d1ec3 --- /dev/null +++ b/views/json/api/output.php @@ -0,0 +1,19 @@ +export(); + + echo json_encode($export); +?> \ No newline at end of file diff --git a/views/json/pageshells/pageshell.php b/views/json/pageshells/pageshell.php new file mode 100644 index 000000000..5c01e030b --- /dev/null +++ b/views/json/pageshells/pageshell.php @@ -0,0 +1,15 @@ + \ No newline at end of file diff --git a/views/php/api/output.php b/views/php/api/output.php new file mode 100644 index 000000000..6d1edcb05 --- /dev/null +++ b/views/php/api/output.php @@ -0,0 +1,19 @@ +export(); + + echo serialize($export); +?> \ No newline at end of file diff --git a/views/php/pageshells/pageshell.php b/views/php/pageshells/pageshell.php new file mode 100644 index 000000000..30747720f --- /dev/null +++ b/views/php/pageshells/pageshell.php @@ -0,0 +1,15 @@ + \ No newline at end of file diff --git a/views/xml/api/output.php b/views/xml/api/output.php new file mode 100644 index 000000000..aa385c9e3 --- /dev/null +++ b/views/xml/api/output.php @@ -0,0 +1,19 @@ +export(); + + echo serialise_object_to_xml($export, "elgg"); +?> \ No newline at end of file diff --git a/views/xml/pageshells/pageshell.php b/views/xml/pageshells/pageshell.php new file mode 100644 index 000000000..f5c7a4ce0 --- /dev/null +++ b/views/xml/pageshells/pageshell.php @@ -0,0 +1,16 @@ + \ No newline at end of file -- cgit v1.2.3