1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2025-01-19 09:27:24 +01:00
vichan/404.php

61 lines
1.6 KiB
PHP
Raw Normal View History

2014-09-24 16:41:23 -07:00
<?php
2014-11-21 04:05:20 -08:00
require_once "inc/functions.php";
header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
2014-09-24 16:41:23 -07:00
$dir = "static/404/";
2014-09-24 16:41:23 -07:00
if (!is_dir($dir))
mkdir($dir);
2014-09-25 15:40:43 -07:00
if ($config['cache']['enabled']) {
$files = cache::get('notfound_files');
}
if (!isset($files) or !$files) {
$files = array_diff(scandir($dir), array('..', '.'));
if ($config['cache']['enabled']) {
cache::set('notfound_files', $files);
}
}
if (count($files) == 0) {
$errorimage = false;
} else {
$errorimage = $files[array_rand($files)];
}
2014-09-24 16:41:23 -07:00
2014-12-31 22:28:00 -08:00
if (preg_match('!'.$config['board_regex'].'/'.$config['dir']['res'].'\d+\.html!u', $_SERVER['REQUEST_URI'])) {
$return_link = '<a href="../index.html">[ Return ]</a>';
} else {
$return_link = '';
}
$ad = Element("ad_top.html", array());
2014-09-24 16:41:23 -07:00
$page = <<<EOT
<div style="text-align:center">$ad</div>
<div class="ban">
<p style="text-align:center"><img src="/static/404/{$errorimage}" style="width:100%"></p>
2014-12-31 22:28:00 -08:00
<p style="text-align:center"><a href="/index.html">[ Home ]</a>{$return_link}</p>
</div>
2014-09-28 11:39:41 +09:00
<script type="text/javascript">
if (localStorage.favorites) {
var faves = JSON.parse(localStorage.favorites);
$.each(faves, function(k, v) {
if ((window.location.pathname === '/' + v + '/') || (window.location.pathname === '/' + v)) {
faves.splice(k, 1);
2014-09-28 11:39:41 +09:00
localStorage.favorites = JSON.stringify(faves);
2014-09-28 11:47:36 +09:00
alert('As /' + v + '/ no longer exists, it has been removed from your favorites.');
2014-09-28 11:39:41 +09:00
}
})
}
</script>
2014-09-24 16:41:23 -07:00
EOT;
echo Element("page.html", array("config" => $config, "body" => $errorimage ? $page : "", "title" => "404 Not Found"));