63b2601e67
Changed mime type map to deal with the reality that certain file types have multiple extensions and/or multiple mime types, as well as constants supporting all of the data. Created new functions using the updated mime type map to resolve mime types and extensions. Updated various items around the project that determine mime/extension to take advantage of the new functions.
45 lines
1.5 KiB
PHP
45 lines
1.5 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
class StaticFiles extends Extension
|
|
{
|
|
public function onPageRequest(PageRequestEvent $event)
|
|
{
|
|
global $config, $page;
|
|
// hax.
|
|
if ($page->mode == PageMode::PAGE && (!isset($page->blocks) || $this->count_main($page->blocks) == 0)) {
|
|
$h_pagename = html_escape(implode('/', $event->args));
|
|
$f_pagename = preg_replace("/[^a-z_\-\.]+/", "_", $h_pagename);
|
|
$theme_name = $config->get_string(SetupConfig::THEME, "default");
|
|
|
|
$theme_file = "themes/$theme_name/static/$f_pagename";
|
|
$static_file = "ext/static_files/static/$f_pagename";
|
|
|
|
if (file_exists($theme_file) || file_exists($static_file)) {
|
|
$filename = file_exists($theme_file) ? $theme_file : $static_file;
|
|
|
|
$page->add_http_header("Cache-control: public, max-age=600");
|
|
$page->add_http_header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 600) . ' GMT');
|
|
$page->set_mode(PageMode::DATA);
|
|
$page->set_data(file_get_contents($filename));
|
|
|
|
$page->set_type(get_mime($filename));
|
|
}
|
|
}
|
|
}
|
|
|
|
private function count_main($blocks)
|
|
{
|
|
$n = 0;
|
|
foreach ($blocks as $block) {
|
|
if ($block->section == "main" && $block->is_content) {
|
|
$n++;
|
|
} // more hax.
|
|
}
|
|
return $n;
|
|
}
|
|
|
|
public function get_priority(): int
|
|
{
|
|
return 98;
|
|
} // before 404
|
|
}
|