feat(*): refactor dynamic vs. static structure and distinctions; make additional elements dynamic
This commit is contained in:
parent
7a0b808f24
commit
eaab389cb9
136 changed files with 984 additions and 960 deletions
26
src/includes/dynamic/fetchers/movie.php.liquid
Normal file
26
src/includes/dynamic/fetchers/movie.php.liquid
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
|
||||
require_once __DIR__ . '/../../bootstrap.php';
|
||||
|
||||
use App\Classes\MovieFetcher;
|
||||
|
||||
$requestUri = $_SERVER["REQUEST_URI"];
|
||||
$url = trim(parse_url($requestUri, PHP_URL_PATH), "/");
|
||||
|
||||
if (!preg_match('/^watching\/movies\/[\w-]+$/', $url)) redirectTo404();
|
||||
|
||||
$fetcher = new MovieFetcher();
|
||||
$movie = $fetcher->fetch($url);
|
||||
|
||||
if (!$movie) redirectTo404();
|
||||
|
||||
$movie["description_html"] = parseMarkdown($movie["description"]);
|
||||
$movie["globals"] = $fetcher->getGlobals();
|
||||
$page = $movie;
|
||||
$globals = $page["globals"];
|
||||
|
||||
extract(setupPageMetadata($page, $requestUri));
|
||||
header("Cache-Control: public, max-age=3600");
|
||||
header("Expires: " . gmdate("D, d M Y H:i:s", time() + 3600) . " GMT");
|
||||
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue