aquinas/router.php

277 lines
5.7 KiB
PHP

<?php
require "parsedown.php";
$tryuri = ltrim("$_SERVER[REQUEST_URI]", '/');
$tryuri = strtok($tryuri, "?");
if (page_locked($tryuri)) {
load_page("404");
}
$site = file_get_contents("site.json");
if (!$site) {
echo "Need a site.json file to work!";
return false;
}
$site = json_decode($site, true);
if (preg_match('/\.(?:jpg|png|webp|css|ico|js|ttf|woff|txt)/', $_SERVER["REQUEST_URI"])) {
return false;
}
load_page($tryuri);
/* HELPER FUNCTIONS START */
function get_path_content($path) {
$fs = scandir($path);
$titles;
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";
if (is_file($fy) && !page_locked($fy)) $titles[] = ["c" => json_decode(file_get_contents($fy), true), "link" => uri_from_file($fy)];
}
}
return $titles;
}
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);
}
}
function load_page($tryuri) {
global $site;
$mainphp = "";
$jsonf = "";
$parsef = "";
/* Looking for 3 things: a base, a content, and a template */
$tryf = "$tryuri/index";
$tryf = ltrim($tryf, '/');
if (is_file("$tryf.json")) {
$jsonf = "$tryf.json";
} else if (is_file("$tryuri.json")) {
$jsonf = "$tryuri.json";
}
if (is_file("$tryf.php")) {
$mainphp = "$tryf.php";
}
else if (is_file("$tryuri.php")) {
$mainphp = "$tryuri.php";
}
if (is_file("$tryf.md")) {
$parsef = "$tryf.md";
} else if (is_file("$tryuri.md")) {
$parsef = "$tryuri.md";
}
if (empty($mainphp) && empty($jsonf) && empty($parsef)) {
load_page("404");
return;
}
if (empty($mainphp)) {
while ($tryuri != "") {
if (is_file("$tryuri/temp.php")) {
$mainphp = "$tryuri/temp.php";
goto endmain;
}
$tryuri = substr($tryuri, 0, strrpos($tryuri, '/'));
}
$mainphp = "temp.php";
}
endmain:
if (!empty($jsonf)) {
$file = file_get_contents($jsonf);
$obj = json_decode($file);
}
if (!empty($parsef)) {
$pd = new Parsedown();
$parse = $pd->text(file_get_contents($parsef));
}
$page['title'] = $obj->title ?? $site['title'];
$page['desc'] = $obj->desc ?? $site['desc'];
include "base.php";
$tt = microtime(true) - $_SERVER['REQUEST_TIME_FLOAT'];
echo <<<END
<script>
console.log("Generated page in " + $tt.toFixed(5) + " seconds.");
</script>
END;
die();
}
function img_src($src, $root = "" ) {
if (empty($root)) $root = $_SERVER['REQUEST_URI'];
if ($root == "/") $root = "";
if (substr($root, -1) == '/') $root = substr($root, 0, -1);
if ($src[0] != '/') {
$write = "$root/$src";
} else $write = $src;
return $write;
}
function page_locked($page) {
if (is_file("$page.lock" ))
return true;
while ($page != "" && is_dir($page)) {
$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;
}
function p_img($src, $opts, $ext) {
$src = ltrim($src, '/');
$p = substr($src, 0, strrpos($src, '.'));
$o = str_replace([" ", "-"], "", $opts);
if ($o == "") $o = "gen";
return "/gen/$p.$o.$ext";
}
function sub_ext($src, $ext) {
$stem = substr($src, 0, strrpos($src, '.'));
return "$stem.$ext";
}
/* Given a source image and options, creates the appropriate images
* jpeg, webp, and avif for lossy, and png and lossless webp for lossless
*/
function gen_images($src, $opts = "", $lossy=0) {
$ext = substr($src, strrpos($src, '.')+1);
if ($lossy || in_array($ext, ["jpg", "jpeg"])) {
$je = ltrim(p_img($src, $opts, "jpg"), '/');
if (is_file($je)) return;
$gpath = substr($je, 0, strrpos($je, '/'));
`mkdir -p $gpath`;
`convert -quality 80 $opts $psrc $je`;
$we = sub_ext($je, "webp");
`convert -quality 80 $opts $psrc $we`;
$ae = sub_ext($je, "avif");
`convert -quality 80 $opts $psrc $ae`;
return;
}
if ($ext == "png") {
$we = ltrim(p_img($src, $opts, "webp"), '/');
if (is_file($we)) return;
$gpath = substr($we, 0, strrpos($we, '/'));
`mkdir -p $gpath`;
`convert -define webp:lossless=true $opts $psrc $we`;
return;
}
}
/* If lossy is true, makes lossless images lossy; does nothing for already lossy images */
function make_img($src, $opts="", $lossy=0) {
$p = img_src($src);
gen_images($p, $opts, $lossy);
if (!$lossy && pathinfo($p)['extension'] == "png") {
$pe = $p;
$we = p_img($p, $opts, "webp");
echo <<<END
<picture>
<source srcset="$we" type="image/webp" />
<source srcset="$pe" type="image/png" />
<img src="$pe" />
</picture>
END;
} else {
$we = p_img($p, $opts, "webp");
$je = p_img($p, $opts, "jpg");
echo <<<END
<picture>
<source srcset="$we" type="image/webp" />
<source srcset="$je" type="image/jpeg" />
<img src="$je" />
</picture>
END;
}
}
function make_bkgd_img($src, $opts = "", $q=80) {
$p = img_src($src);
gen_images($p, $opts);
$we = p_img($p, $opts, "webp");
$je = p_img($p, $opts, "jpg");
return "background-image: url($je); background-image: -webkit-image-set(url($we) 1x, url($je) 1x)";
}
?>