mirror of
https://github.com/lrsjng/h5ai.git
synced 2025-05-25 12:34:47 -04:00
50 lines
No EOL
1.1 KiB
PHP
50 lines
No EOL
1.1 KiB
PHP
<?php
|
|
|
|
function normalize_path($path, $trailing_slash = false) {
|
|
|
|
$path = preg_replace("#\\+|/+#", "/", $path);
|
|
return preg_match("#^(\w:)?/$#", $path) ? $path : (rtrim($path, "/") . ($trailing_slash ? "/" : ""));
|
|
}
|
|
|
|
function normalized_require_once($lib) {
|
|
|
|
require_once(normalize_path(dirname(__FILE__) . "/inc/${lib}.php", false));
|
|
}
|
|
|
|
normalized_require_once("util");
|
|
normalized_require_once("setup");
|
|
normalized_require_once("class-api");
|
|
normalized_require_once("class-app");
|
|
normalized_require_once("class-archive");
|
|
normalized_require_once("class-item");
|
|
normalized_require_once("class-thumb");
|
|
|
|
time_log(" 0");
|
|
setup();
|
|
time_log(" 1");
|
|
|
|
$app = new App();
|
|
|
|
// time_log(" 2");
|
|
// err_log('setup', $app->get_setup());
|
|
time_log(" 3");
|
|
|
|
|
|
if (has_request_param("action")) {
|
|
|
|
header("Content-type: application/json;charset=utf-8");
|
|
time_log("a1");
|
|
$api = new Api($app);
|
|
time_log("a2");
|
|
$api->apply();
|
|
|
|
} else {
|
|
|
|
header("Content-type: text/html;charset=utf-8");
|
|
time_log("i1");
|
|
define("FALLBACK", $app->get_fallback());
|
|
time_log("i2");
|
|
normalized_require_once("page");
|
|
}
|
|
|
|
?>
|