aquinas/router.php

223 lines
4.5 KiB
PHP
Raw Normal View History

2022-08-02 07:48:43 -05:00
<?php
2022-11-04 03:44:50 -05:00
2022-11-02 18:12:43 -05:00
require "parsedown.php";
2022-08-02 07:48:43 -05:00
2022-11-04 03:44:50 -05:00
$tryuri = ltrim("$_SERVER[REQUEST_URI]", '/');
$tryuri = strtok($tryuri, "?");
2022-11-04 17:55:34 -05:00
if (page_locked($tryuri)) {
load_page("404");
2022-11-04 03:44:50 -05:00
}
2022-11-03 12:55:29 -05:00
2022-11-02 18:12:43 -05:00
if (file_exists("site.json")) {
$site = json_decode(file_get_contents("site.json"), true);
2022-11-07 13:01:35 -06:00
} else {
echo "Need a site.json file to work!";
return false;
2022-11-02 18:12:43 -05:00
}
if (preg_match('/\.(?:jpg|png|webp|css|ico|js|ttf|woff|txt)/', $_SERVER["REQUEST_URI"])) {
2022-11-02 18:12:43 -05:00
return false;
}
2022-11-04 03:44:50 -05:00
2022-11-02 18:12:43 -05:00
load_page($tryuri);
/* HELPER FUNCTIONS START */
2022-08-02 07:48:43 -05:00
2022-11-02 18:12:43 -05:00
function get_path_content($path) {
$fs = scandir($path);
$titles;
2022-08-02 07:48:43 -05:00
2022-11-02 18:12:43 -05:00
for ($i = 2; $i < count($fs); $i++) {
$f = "$path/$fs[$i]";
if (!is_dir($f)) {
if (pathinfo($f, PATHINFO_EXTENSION) == "json") {
$titles[] = ["c" => json_decode(file_get_contents($f), true), "link" => uri_from_file($f)];
}
} else {
$fy = "$f/index.json";
2022-11-04 17:55:34 -05:00
if (file_exists($fy) && !page_locked($fy)) $titles[] = ["c" => json_decode(file_get_contents($fy), true), "link" => uri_from_file($fy)];
2022-11-02 18:12:43 -05:00
}
}
2022-08-02 07:48:43 -05:00
2022-11-02 18:12:43 -05:00
return $titles;
2022-08-02 07:48:43 -05:00
}
2022-11-02 18:12:43 -05:00
function uri_from_file($file) {
$name = substr($file, strrpos($file, '/')+1);
if ($name == "index.json") {
return substr($file, 0, -strlen($name)-1);
}
if (!strcmp(substr($file, strrpos($file, '.')+1), "json")) {
return substr($file, 0, -5);
}
}
2022-08-02 07:48:43 -05:00
2022-11-02 18:12:43 -05:00
function load_page($tryuri) {
global $site;
2022-08-02 07:48:43 -05:00
$mainphp = "";
2022-11-02 18:12:43 -05:00
$jsonf = "";
$parsef = "";
2022-08-02 07:48:43 -05:00
2022-11-02 18:12:43 -05:00
/* Looking for 3 things: a base, a content, and a template */
$tryf = "$tryuri/index";
$tryf = ltrim($tryf, '/');
if (file_exists("$tryf.json")) {
$jsonf = "$tryf.json";
} else if (file_exists("$tryuri.json")) {
$jsonf = "$tryuri.json";
}
if (file_exists("$tryf.php")) {
$mainphp = "$tryf.php";
}
else if (file_exists("$tryuri.php")) {
$mainphp = "$tryuri.php";
2022-08-02 07:48:43 -05:00
}
2022-11-02 18:12:43 -05:00
if (file_exists("$tryf.md")) {
$parsef = "$tryf.md";
} else if (file_exists("$tryuri.md")) {
$parsef = "$tryuri.md";
}
2022-08-02 07:48:43 -05:00
2022-11-02 18:12:43 -05:00
if (empty($mainphp) && empty($jsonf) && empty($parsef)) {
load_page("404");
return;
}
2022-08-02 07:48:43 -05:00
2022-11-02 18:12:43 -05:00
if (empty($mainphp)) {
2022-08-02 07:48:43 -05:00
2022-11-02 18:12:43 -05:00
while ($tryuri != "") {
if (file_exists("$tryuri/temp.php")) {
$mainphp = "$tryuri/temp.php";
goto endmain;
}
2022-08-02 07:48:43 -05:00
2022-11-02 18:12:43 -05:00
$tryuri = substr($tryuri, 0, strrpos($tryuri, '/'));
2022-08-02 07:48:43 -05:00
}
2022-11-02 18:12:43 -05:00
$mainphp = "temp.php";
}
2022-08-02 07:48:43 -05:00
2022-11-02 18:12:43 -05:00
endmain:
2022-08-02 07:48:43 -05:00
2022-11-02 18:12:43 -05:00
if (!empty($jsonf)) {
2022-08-02 07:48:43 -05:00
$file = file_get_contents($jsonf);
$obj = json_decode($file);
2022-11-02 18:12:43 -05:00
}
if (!empty($parsef)) {
$pd = new Parsedown();
$parse = $pd->text(file_get_contents($parsef));
}
2022-11-07 13:01:35 -06:00
$page['title'] = $obj->title ?? $site['title'];
$page['desc'] = $obj->desc ?? $site['desc'];
2022-08-02 07:48:43 -05:00
include "base.php";
2022-11-04 03:59:34 -05:00
$tt = microtime(true) - $_SERVER['REQUEST_TIME_FLOAT'];
echo <<<END
<script>
console.log("Generated page in " + $tt.toFixed(5) + " seconds.");
</script>
END;
die();
2022-11-02 18:12:43 -05:00
}
function img_src($src, $root = "" ) {
if (empty($root)) $root = $_SERVER['REQUEST_URI'];
2022-11-07 16:07:29 -06:00
if ($root == "/") $root = "";
if (substr($root, -1) == '/') $root = substr($root, 0, -1);
2022-11-02 18:12:43 -05:00
if ($src[0] != '/') {
$write = "$root/$src";
} else $write = $src;
return $write;
}
2022-11-04 17:55:34 -05:00
function page_locked($page) {
if (file_exists("$page.lock" ))
return true;
2022-11-05 18:06:34 -05:00
while ($page != "" && is_dir($page)) {
2022-11-04 17:55:34 -05:00
$files = scandir($page);
if (!$files)
goto CONT;
for ($i = 2; $i < count($files); $i++) {
if ($files[$i] == "lock") {
return true;
}
}
CONT:
$page = substr($page, 0, strrpos($page, '/'));
}
return false;
}
2022-11-04 03:59:34 -05:00
2022-11-07 16:07:29 -06:00
function gen_images($src) {
$path = pathinfo($src);
if (in_array($path['extension'], ["jpg", "jpeg"])) {
$pwebp = "$path[dirname]/$path[filename].webp";
$pe = ltrim($src, '/');
$we = ltrim($pwebp, '/');
if (!file_exists($we)) {
exec("convert -quality 80 $pe $we");
}
}
}
function make_img($src, $q=80) {
$p = img_src($src);
gen_images($p);
$path = pathinfo($p);
$pwebp = "$path[dirname]/$path[filename].webp";
echo <<<END
<picture>
<source srcset="$pwebp" type="image/webp" width=100%/>
<source srcset="$p" type="image/jpeg" width=100% />
<img src="$p" width=100% />
</picture>
END;
}
function make_bkgd_img($src, $q=80) {
$p = img_src($src);
gen_images($p);
$path = pathinfo($p);
$pwebp = "$path[dirname]/$path[filename].webp";
$pe = ltrim($pwebp, '/');
$we = ltrim($p, '/');
return "background-image: url($pe); background-image: -webkit-image-set(url($pwebp) 1x, url($p) 1x)";
2022-11-07 16:07:29 -06:00
}
2022-11-02 18:12:43 -05:00
?>
2022-08-02 07:48:43 -05:00