2011-11-15 07:40:57 +00:00
|
|
|
<?php
|
2021-02-22 14:38:46 +00:00
|
|
|
set_include_path(__DIR__ ."/include" . PATH_SEPARATOR .
|
2012-12-09 09:41:22 +00:00
|
|
|
get_include_path());
|
2011-12-12 20:20:53 +00:00
|
|
|
|
2013-04-17 11:36:34 +00:00
|
|
|
require_once "autoload.php";
|
2011-12-13 10:49:11 +00:00
|
|
|
require_once "sessions.php";
|
2013-01-04 21:28:07 +00:00
|
|
|
require_once "functions.php";
|
2021-03-01 07:20:21 +00:00
|
|
|
|
|
|
|
Config::sanity_check();
|
2011-11-15 07:40:57 +00:00
|
|
|
|
|
|
|
startup_gettext();
|
|
|
|
|
2013-02-27 18:20:14 +00:00
|
|
|
$script_started = microtime(true);
|
2011-11-15 07:40:57 +00:00
|
|
|
|
2013-04-17 12:23:15 +00:00
|
|
|
if (!init_plugins()) return;
|
2011-12-13 10:49:11 +00:00
|
|
|
|
2021-02-15 13:34:44 +00:00
|
|
|
$method = (string)clean($_REQUEST["op"]);
|
2011-11-15 07:40:57 +00:00
|
|
|
|
2021-02-17 06:59:14 +00:00
|
|
|
// shortcut syntax for public (exposed) methods (?op=plugin--pmethod&...params)
|
|
|
|
if (strpos($method, PluginHost::PUBLIC_METHOD_DELIMITER) !== false) {
|
|
|
|
list ($plugin, $pmethod) = explode(PluginHost::PUBLIC_METHOD_DELIMITER, $method, 2);
|
|
|
|
|
|
|
|
// TODO: better implementation that won't modify $_REQUEST
|
|
|
|
$_REQUEST["plugin"] = $plugin;
|
|
|
|
$_REQUEST["pmethod"] = $pmethod;
|
|
|
|
|
|
|
|
$method = "pluginhandler";
|
|
|
|
}
|
|
|
|
|
2013-04-18 08:27:34 +00:00
|
|
|
$override = PluginHost::getInstance()->lookup_handler("public", $method);
|
2011-11-15 07:40:57 +00:00
|
|
|
|
2012-12-23 19:05:51 +00:00
|
|
|
if ($override) {
|
|
|
|
$handler = $override;
|
|
|
|
} else {
|
2013-04-18 19:19:14 +00:00
|
|
|
$handler = new Handler_Public($_REQUEST);
|
2012-12-23 19:05:51 +00:00
|
|
|
}
|
|
|
|
|
2021-02-15 13:34:44 +00:00
|
|
|
if (strpos($method, "_") === 0) {
|
|
|
|
user_error("Refusing to invoke method $method which starts with underscore.", E_USER_WARNING);
|
|
|
|
header("Content-Type: text/json");
|
2021-02-23 19:26:07 +00:00
|
|
|
print Errors::to_json(Errors::E_UNAUTHORIZED);
|
2021-02-15 13:34:44 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-12-23 19:05:51 +00:00
|
|
|
if (implements_interface($handler, "IHandler") && $handler->before($method)) {
|
2011-12-13 11:40:42 +00:00
|
|
|
if ($method && method_exists($handler, $method)) {
|
2020-09-22 06:34:39 +00:00
|
|
|
$reflection = new ReflectionMethod($handler, $method);
|
|
|
|
|
|
|
|
if ($reflection->getNumberOfRequiredParameters() == 0) {
|
|
|
|
$handler->$method();
|
|
|
|
} else {
|
2021-02-15 13:34:44 +00:00
|
|
|
user_error("Refusing to invoke method $method which has required parameters.", E_USER_WARNING);
|
2020-09-22 06:34:39 +00:00
|
|
|
header("Content-Type: text/json");
|
2021-02-23 19:26:07 +00:00
|
|
|
print Errors::to_json(Errors::E_UNAUTHORIZED);
|
2020-09-22 06:34:39 +00:00
|
|
|
}
|
2011-12-13 11:40:42 +00:00
|
|
|
} else if (method_exists($handler, 'index')) {
|
|
|
|
$handler->index();
|
2011-12-13 10:49:11 +00:00
|
|
|
}
|
2011-12-13 11:40:42 +00:00
|
|
|
$handler->after();
|
|
|
|
return;
|
2011-11-15 07:40:57 +00:00
|
|
|
}
|
|
|
|
|
2011-12-13 10:49:11 +00:00
|
|
|
header("Content-Type: text/plain");
|
2021-02-23 19:26:07 +00:00
|
|
|
print Errors::to_json(Errors::E_UNKNOWN_METHOD);
|
2011-11-15 07:40:57 +00:00
|
|
|
?>
|