mirror of
https://github.com/suk-ws/ph-Bookshelf.git
synced 2025-01-19 07:22:26 +08:00
78 lines
2.3 KiB
PHP
78 lines
2.3 KiB
PHP
<?php
|
|
|
|
require "./constant.php";
|
|
require "./vendor/autoload.php";
|
|
|
|
use SukWs\Bookshelf\Data\PageMeta;
|
|
use SukWs\Bookshelf\Data\SiteConfig\RobotsPolicy;
|
|
use SukWs\Bookshelf\Data\SiteMeta;
|
|
use SukWs\Bookshelf\Utils\PageParse;
|
|
use SukWs\Bookshelf\Web\Main;
|
|
|
|
try {
|
|
|
|
SiteMeta::load();
|
|
|
|
// 格式化所给链接,并将链接转化为路径字符串数组
|
|
$req = array_key_exists('p', $_GET) ? $_GET['p'] : "";
|
|
if (strlen($req) > 0 && $req[strlen($req) - 1] === '/')
|
|
$tmp = substr($req, 0, -1);
|
|
$uri = explode("/", $req, 2);
|
|
|
|
// 为 robots.txt 进行特别支持
|
|
if (sizeof($uri) == 1 && $uri[0] == "robots.txt") {
|
|
|
|
$policy = SiteMeta::getRobotsPolicy();
|
|
|
|
switch ($policy) {
|
|
case RobotsPolicy::allow:
|
|
exit(file_get_contents("./assets/robots.allow"));
|
|
case RobotsPolicy::deny:
|
|
exit(file_get_contents("./assets/robots.deny"));
|
|
case RobotsPolicy::file:
|
|
exit(file_get_contents("./data/robots.txt"));
|
|
case RobotsPolicy::raw:
|
|
exit(SiteMeta::getConfigurationLevelShelf("site.robots"));
|
|
}
|
|
|
|
} else if (PageMeta::init($uri)) {
|
|
|
|
require "./template/header.php";
|
|
|
|
require "./template/nav.php";
|
|
|
|
Main::main(PageMeta::$page_data);
|
|
|
|
require "./template/footer.php";
|
|
|
|
} else {
|
|
|
|
// 页面寻找失败,寻找资源文件
|
|
|
|
if ( // 搜索全局资源文件夹的指定文件
|
|
is_file($resLoc = "./data/%assets/$req")
|
|
) {} else if ( // 搜索原始路径上的文件
|
|
is_file($resLoc = "./data/$req")
|
|
) {} else if ( // 搜索可能存在的书籍资源文件夹中的指定文件
|
|
sizeof($uri) > 1 && ($resBook = (SiteMeta::getBookshelf()->getBook($uri[0]))) != null &&
|
|
is_file($resLoc = "./data/{$resBook->getId()}/%assets/$uri[1]")
|
|
) {} else if ( // 上面的 %root 兼容
|
|
sizeof($uri) > 1 && ($resBook = $uri[0]) == "%root" &&
|
|
is_file($resLoc = "./data/$resBook/%assets/$uri[1]")
|
|
) {} else if ( // 搜索以root书为根目录的原始路径上的文件
|
|
is_file($resLoc = "./data/%root/$req")
|
|
) {} else if ( // 搜索root书中的书籍资源文件夹中的文件
|
|
is_file($resLoc = "./data/%root/%assets/$req")
|
|
) {} else {
|
|
throw new Exception("cannot find file " . $req); // 找不到资源文件
|
|
}
|
|
PageParse::outputBinaryFile($resLoc);
|
|
|
|
}
|
|
|
|
} catch (Exception $e) {
|
|
|
|
echo "<h1>ERROR</h1><p>" . $e->getMessage() . "</p>";
|
|
|
|
}
|