wiki.techinc.nl/includes/AjaxDispatcher.php

92 lines
1.7 KiB
PHP
Raw Normal View History

<?php
if( !defined( 'MEDIAWIKI' ) )
die( 1 );
if ( ! $wgUseAjax ) {
die( 1 );
}
require_once( 'AjaxFunctions.php' );
class AjaxDispatcher {
var $mode;
var $func_name;
var $args;
2007-01-20 13:34:31 +00:00
function __construct() {
wfProfileIn( __METHOD__ );
$this->mode = "";
if (! empty($_GET["rs"])) {
$this->mode = "get";
}
if (!empty($_POST["rs"])) {
$this->mode = "post";
}
if ($this->mode == "get") {
$this->func_name = isset( $_GET["rs"] ) ? $_GET["rs"] : '';
if (! empty($_GET["rsargs"])) {
$this->args = $_GET["rsargs"];
} else {
$this->args = array();
}
} else {
$this->func_name = isset( $_POST["rs"] ) ? $_POST["rs"] : '';
if (! empty($_POST["rsargs"])) {
$this->args = $_POST["rsargs"];
} else {
$this->args = array();
}
}
wfProfileOut( __METHOD__ );
}
function performAction() {
global $wgAjaxExportList, $wgOut;
2007-01-09 20:25:28 +00:00
if ( empty( $this->mode ) ) {
return;
}
wfProfileIn( __METHOD__ );
if (! in_array( $this->func_name, $wgAjaxExportList ) ) {
wfHttpError( 400, 'Bad Request',
"unknown function " . (string) $this->func_name );
} else {
try {
$result = call_user_func_array($this->func_name, $this->args);
2007-01-09 20:25:28 +00:00
if ( $result === false || $result === NULL ) {
wfHttpError( 500, 'Internal Error',
"{$this->func_name} returned no data" );
}
else {
if ( is_string( $result ) ) {
$result= new AjaxResponse( $result );
}
2007-01-09 20:25:28 +00:00
$result->sendHeaders();
$result->printText();
}
} catch (Exception $e) {
if (!headers_sent()) {
wfHttpError( 500, 'Internal Error',
$e->getMessage() );
} else {
print $e->getMessage();
}
}
}
2007-01-09 20:25:28 +00:00
wfProfileOut( __METHOD__ );
$wgOut = null;
}
}
?>