This commit is contained in:
Dusk 2022-01-27 00:25:24 +01:00
commit 4a9d236698
3 changed files with 92 additions and 0 deletions

2
.gitignore vendored Executable file
View File

@ -0,0 +1,2 @@
content/*
favicon.*

4
README.md Executable file
View File

@ -0,0 +1,4 @@
# NeoKino-PHP
## What is this
PHP script that allows the navigation of folders and shows files within the "./content" folder.
It is styled with a custom css that you may edit. It is also in catalan, which you may also change.

86
index.php Executable file
View File

@ -0,0 +1,86 @@
<!DOCTYPE html>
<html lang="ca">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Dusk Kino</title>
<link rel="icon" type="image/png" href="./favicon.apng" sizes="32x32">
</head>
<body>
<?php
// Debug
//var_dump($_SERVER);
// Debug
$not_found_error = '<h1>File not found, error 404</h1>';
$basedir = 'content';
$request_uri = $_SERVER['REQUEST_URI'];
$path = $basedir . $request_uri;
$files_in_folder = scandir($path);
// Debug
//var_dump($files_in_folder);
// Debug
function link_from_file(string $filename, string $name = null, string $css_class = null ) : string {
// Check if css_class is null
$css_class = $css_class ? "class=\"$css_class\"" : '';
// Check if name is null
$name = $name ?: basename($filename);
return sprintf('<a href=%s %s>%s</a>', $filename, $css_class, $name);
}
function filter_files_dir($files_array, string $path) : array {
$ret_array = ['dir' => [], 'file' => []];
foreach($files_array as $file) {
if(is_dir($path . $file)) {
// Append dir to array
$ret_array['dir'][] = $file;
}
else {
// Append file to array
$ret_array['file'][] = $file;
}
}
return $ret_array;
}
if(!$files_in_folder) {
echo($not_found_error);
die();
}
$resource_array = filter_files_dir($files_in_folder, $path);
// Show folder links
{
foreach($resource_array['dir'] as $dir) {
if(substr($dir, 0, 1) == '.') {
continue;
}
echo(link_from_file($request_uri . $dir));
echo('<br/>');
}
echo('<hr/>');
}
//Show file links
{
foreach($resource_array['file'] as $file) {
if(substr($file, 0, 1) == '.') {
continue;
}
echo(link_from_file($request_uri . $file));
echo('<br/>');
}
echo('<hr/>');
}
?>
</body>
</html>