tinytinyrss/public.php

53 lines
1.2 KiB
PHP
Raw Normal View History

<?php
set_include_path(dirname(__FILE__) ."/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";
require_once "sanity_check.php";
require_once "config.php";
require_once "db.php";
require_once "db-prefs.php";
startup_gettext();
$script_started = microtime(true);
2013-04-17 14:23:15 +02:00
if (!init_plugins()) return;
2011-12-13 11:49:11 +01:00
2012-03-20 11:45:43 +01:00
if (ENABLE_GZIP_OUTPUT && function_exists("ob_gzhandler")) {
2011-12-13 11:49:11 +01:00
ob_start("ob_gzhandler");
}
2011-12-13 11:49:11 +01:00
$method = $_REQUEST["op"];
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 (implements_interface($handler, "IHandler") && $handler->before($method)) {
2011-12-13 12:40:42 +01:00
if ($method && method_exists($handler, $method)) {
$reflection = new ReflectionMethod($handler, $method);
if ($reflection->getNumberOfRequiredParameters() == 0) {
$handler->$method();
} else {
header("Content-Type: text/json");
print error_json(6);
}
2011-12-13 12:40:42 +01:00
} else if (method_exists($handler, 'index')) {
$handler->index();
2011-12-13 11:49:11 +01:00
}
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 error_json(13);
?>