tinytinyrss/public.php

73 lines
2.1 KiB
PHP
Raw Permalink Normal View History

<?php
2021-02-22 15:38:46 +01:00
set_include_path(__DIR__ ."/include" . PATH_SEPARATOR .
get_include_path());
2011-12-12 21:20:53 +01:00
2013-04-17 13:36:34 +02:00
require_once "autoload.php";
2011-12-13 11:49:11 +01:00
require_once "sessions.php";
require_once "functions.php";
Config::sanity_check();
startup_gettext();
2013-04-17 14:23:15 +02:00
if (!init_plugins()) return;
2011-12-13 11:49:11 +01:00
$span = OpenTelemetry\API\Trace\Span::getCurrent();
$method = (string)clean($_REQUEST["op"]);
// 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 10:27:34 +02:00
$override = PluginHost::getInstance()->lookup_handler("public", $method);
if ($override) {
$handler = $override;
} else {
$handler = new Handler_Public($_REQUEST);
}
if (strpos($method, "_") === 0) {
user_error("Refusing to invoke method $method which starts with underscore.", E_USER_WARNING);
header("Content-Type: text/json");
print Errors::to_json(Errors::E_UNAUTHORIZED);
$span->setAttribute('error', Errors::E_UNAUTHORIZED);
return;
}
if (implements_interface($handler, "IHandler") && $handler->before($method)) {
$span->addEvent("construct/$method");
2011-12-13 12:40:42 +01:00
if ($method && method_exists($handler, $method)) {
$reflection = new ReflectionMethod($handler, $method);
if ($reflection->getNumberOfRequiredParameters() == 0) {
$span->addEvent("invoke/$method");
$handler->$method();
} else {
user_error("Refusing to invoke method $method which has required parameters.", E_USER_WARNING);
header("Content-Type: text/json");
print Errors::to_json(Errors::E_UNAUTHORIZED);
$span->setAttribute('error', Errors::E_UNAUTHORIZED);
}
2011-12-13 12:40:42 +01:00
} else if (method_exists($handler, 'index')) {
$span->addEvent("index");
2011-12-13 12:40:42 +01:00
$handler->index();
2011-12-13 11:49:11 +01:00
}
$span->addEvent("after/$method");
2011-12-13 12:40:42 +01:00
$handler->after();
return;
}
2011-12-13 11:49:11 +01:00
header("Content-Type: text/plain");
print Errors::to_json(Errors::E_UNKNOWN_METHOD);
$span->setAttribute('error', Errors::E_UNKNOWN_METHOD);