Compare commits

..

10 commits

3 changed files with 104 additions and 63 deletions

3
Makefile Normal file
View file

@ -0,0 +1,3 @@
install:
@echo Installing into $(DESTDIR)
@cp *.php $(DESTDIR)

1
jsmpeg.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -1,31 +1,59 @@
<?php <?php
/* Aquinas v. 0.1 */
require "parsedown.php"; require "parsedown.php";
$tryuri = ltrim("$_SERVER[REQUEST_URI]", '/'); $tryuri = ltrim("$_SERVER[REQUEST_URI]", '/');
$tryuri = strtok($tryuri, "?"); $tryuri = strtok($tryuri, "?");
if (page_locked($tryuri)) {
load_page("404");
}
if (file_exists("site.json")) { $site = file_get_contents("site.json");
$site = json_decode(file_get_contents("site.json"), true); if (!$site) {
} else {
echo "Need a site.json file to work!"; echo "Need a site.json file to work!";
return false; return false;
} }
if (preg_match('/\.(?:jpg|png|webp|css|ico|js|ttf|woff|txt)/', $_SERVER["REQUEST_URI"])) { $site = json_decode($site, true);
return false;
if (page_locked($tryuri)) {
load_page("404");
} }
if ($tryuri == "router" || $tryuri == "parsedown") {
load_page("404");
}
$banned_ext = "php|json|md";
if (is_file($tryuri)) {
if (preg_match("/\.(?:$banned_ext)/", $tryuri))
load_page("404");
else
return false;
}
load_page($tryuri); load_page($tryuri);
/* HELPER FUNCTIONS START */ /* HELPER FUNCTIONS START */
/* Grab json from top */
$c = file_get_contents($parsef);
if ($c[0] == '{') {
$json = substr($c, 0, strpos($c, '}')+1);
$c = substr($c, strpos($c, '}')+1);
$obj = json_decode($json);
}
$parse = $pd->text($c);
function get_md_jsonhead($md) {
$c = file_get_contents($md);
if ($c[0] != '{') return false;
return substr($c, 0, strpos($c, '}')+1);
}
function get_path_content($path) { function get_path_content($path) {
$fs = scandir($path); $fs = scandir($path);
@ -34,12 +62,19 @@ function get_path_content($path) {
for ($i = 2; $i < count($fs); $i++) { for ($i = 2; $i < count($fs); $i++) {
$f = "$path/$fs[$i]"; $f = "$path/$fs[$i]";
if (!is_dir($f)) { if (!is_dir($f)) {
if (pathinfo($f, PATHINFO_EXTENSION) == "json") { $ext = substr($f, strrpos($f, '.')+1);
if ($ext == "json") {
$titles[] = ["c" => json_decode(file_get_contents($f), true), "link" => uri_from_file($f)]; $titles[] = ["c" => json_decode(file_get_contents($f), true), "link" => uri_from_file($f)];
} else if ($ext == "md") {
$json = get_md_jsonhead($f);
if ($json) {
$titles[] = ["c" => json_decode($json, true), "link" => uri_from_file($f)];
}
} }
} else { } else {
$fy = "$f/index.json"; $fy = "$f/index.json";
if (file_exists($fy) && !page_locked($fy)) $titles[] = ["c" => json_decode(file_get_contents($fy), true), "link" => uri_from_file($fy)]; if (is_file($fy) && !page_locked($fy)) $titles[] = ["c" => json_decode(file_get_contents($fy), true), "link" => uri_from_file($fy)];
} }
} }
@ -52,44 +87,34 @@ function uri_from_file($file) {
return substr($file, 0, -strlen($name)-1); return substr($file, 0, -strlen($name)-1);
} }
if (!strcmp(substr($file, strrpos($file, '.')+1), "json")) { return "/".substr($file, 0, strrpos($file, '.'));
return substr($file, 0, -5);
}
} }
function try_file($uri, $ext) {
$tryuri = ltrim($uri, '/');
$tryf = ltrim("$tryuri/index", '/');
if (is_file("$tryf.$ext")) return "$tryf.$ext";
else if (is_file("$tryuri.$ext")) return "$tryuri.$ext";
}
function load_page($tryuri) { function load_page($tryuri) {
global $site; global $site;
$mainphp = ""; $mainphp = "";
$prehp = "";
$jsonf = ""; $jsonf = "";
$parsef = ""; $parsef = "";
/* Looking for 3 things: a base, a content, and a template */ /* Looking for 3 things: a base, a content, and a template */
$tryf = "$tryuri/index"; $jsonf = try_file($tryuri, "json");
$tryf = ltrim($tryf, '/'); $mainphp = try_file($tryuri, "php");
$parsef = try_file($tryuri, "md");
$prehp = try_file($tryuri, "prehp");
if (file_exists("$tryf.json")) { if (empty($mainphp) && empty($jsonf) && empty($parsef) && empty($prehp)) {
$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";
}
if (file_exists("$tryf.md")) {
$parsef = "$tryf.md";
} else if (file_exists("$tryuri.md")) {
$parsef = "$tryuri.md";
}
if (empty($mainphp) && empty($jsonf) && empty($parsef)) {
load_page("404"); load_page("404");
return; return;
} }
@ -97,7 +122,7 @@ if (empty($mainphp) && empty($jsonf) && empty($parsef)) {
if (empty($mainphp)) { if (empty($mainphp)) {
while ($tryuri != "") { while ($tryuri != "") {
if (file_exists("$tryuri/temp.php")) { if (is_file("$tryuri/temp.php")) {
$mainphp = "$tryuri/temp.php"; $mainphp = "$tryuri/temp.php";
goto endmain; goto endmain;
} }
@ -118,12 +143,23 @@ $obj = json_decode($file);
if (!empty($parsef)) { if (!empty($parsef)) {
$pd = new Parsedown(); $pd = new Parsedown();
$parse = $pd->text(file_get_contents($parsef));
/* Grab json from top */
$c = file_get_contents($parsef);
if ($c[0] == '{') {
$json = substr($c, 0, strpos($c, '}')+1);
$c = substr($c, strpos($c, '}')+1);
$obj = json_decode($json);
}
$parse = $pd->text($c);
} }
$page['title'] = $obj->title ?? $site['title']; $page['title'] = $obj->title ?? $site['title'];
$page['desc'] = $obj->desc ?? $site['desc']; $page['desc'] = $obj->desc ?? $site['desc'];
if (!empty($prehp)) include $prehp;
include "base.php"; include "base.php";
$tt = microtime(true) - $_SERVER['REQUEST_TIME_FLOAT']; $tt = microtime(true) - $_SERVER['REQUEST_TIME_FLOAT'];
@ -150,7 +186,7 @@ return $write;
} }
function page_locked($page) { function page_locked($page) {
if (file_exists("$page.lock" )) if (is_file("$page.lock" ))
return true; return true;
while ($page != "" && is_dir($page)) { while ($page != "" && is_dir($page)) {
@ -174,52 +210,54 @@ function page_locked($page) {
function p_img($src, $opts, $ext) { function p_img($src, $opts, $ext) {
$src = ltrim($src, '/'); $src = ltrim($src, '/');
$p = pathinfo($src); $p = substr($src, 0, strrpos($src, '.'));
$o = str_replace([" ", "-"], "", $opts); $o = str_replace([" ", "-"], "", $opts);
if ($o == "") $o = "gen"; if ($o == "") $o = "gen";
return "/gen/$p[dirname]/$p[filename].$o.$ext"; 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 /* Given a source image and options, creates the appropriate images
* jpeg, webp, and avif for lossy, and png and lossless webp for lossless * jpeg, webp, and avif for lossy, and png and lossless webp for lossless
*/ */
function gen_images($src, $opts = "", $lossy=0) { function gen_images($src, $opts = "", $lossy=0) {
$ext = strtolower(substr($src, strrpos($src, '.')+1));
$psrc = ltrim($src, '/'); $psrc = ltrim($src, '/');
$path = pathinfo($psrc);
if ($lossy || in_array($path['extension'], ["jpg", "jpeg"])) { if ($lossy || in_array($ext, ["jpg", "jpeg"])) {
$je = ltrim(p_img($src, $opts, "jpg"), '/'); $je = ltrim(p_img($src, $opts, "jpg"), '/');
$jpath = pathinfo($je); if (is_file($je)) return;
$genp = $jpath['dirname'];
`mkdir -p $genp`; $gpath = substr($je, 0, strrpos($je, '/'));
`mkdir -p $gpath`;
`convert -quality 80 $opts $psrc $je`; `convert -quality 80 $opts $psrc $je`;
$we = ltrim(p_img($src, $opts, "webp"), '/'); $we = sub_ext($je, "webp");
if (!file_exists($we)) { `convert -quality 80 $opts $psrc $we`;
`convert -quality 80 $opts $psrc $we`;
}
$ae = ltrim(p_img($src, $opts, "avif"), '/'); $ae = sub_ext($je, "avif");
if (!file_exists($ae)) { `convert -quality 80 $opts $psrc $ae`;
`convert -quality 80 $opts $psrc $ae`;
}
return; return;
} }
if ($path['extension'] == "png") { if ($ext == "png") {
$we = ltrim(p_img($src, $opts, "webp"), '/'); $we = ltrim(p_img($src, $opts, "webp"), '/');
$wpath = pathinfo($we); if (is_file($we)) return;
$genp = $wpath['dirname'];
`mkdir -p $genp`;
if (!file_exists($we)) { $gpath = substr($we, 0, strrpos($we, '/'));
`convert -define webp:lossless=true $opts $psrc $we`; `mkdir -p $gpath`;
}
`convert -define webp:lossless=true $opts $psrc $we`;
return; return;
} }
@ -260,7 +298,7 @@ function make_img($src, $opts="", $lossy=0) {
function make_bkgd_img($src, $opts = "", $q=80) { function make_bkgd_img($src, $opts = "", $q=80) {
$p = img_src($src); $p = $src;
gen_images($p, $opts); gen_images($p, $opts);
@ -272,4 +310,3 @@ function make_bkgd_img($src, $opts = "", $q=80) {
?> ?>