mirror of
https://github.com/vichan-devel/vichan.git
synced 2024-11-25 16:00:22 +01:00
50 lines
1.1 KiB
PHP
50 lines
1.1 KiB
PHP
<?php
|
|
|
|
include "inc/functions.php";
|
|
|
|
$dir = "static/404/";
|
|
|
|
if (!is_dir($dir))
|
|
mkdir($dir);
|
|
|
|
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)];
|
|
}
|
|
|
|
$page = <<<EOT
|
|
<div class="ban">
|
|
<p style="text-align:center"><img src="/static/404/{$errorimage}" style="width:100%"></p>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
if (localStorage.favorites) {
|
|
var faves = JSON.parse(localStorage.favorites);
|
|
|
|
$.each(faves, function(k, v) {
|
|
if (window.location.pathname === '/' + v + '/') {
|
|
faves.pop(v);
|
|
localStorage.favorites = JSON.stringify(faves);
|
|
|
|
alert('As /' + v + '/ no longer exists, it has been removed from your favorites.');
|
|
}
|
|
})
|
|
}
|
|
</script>
|
|
EOT;
|
|
|
|
echo Element("page.html", array("config" => $config, "body" => $errorimage ? $page : "", "title" => "404 Not Found"));
|