Add lister

This commit is contained in:
Jacob 2023-09-16 16:15:48 +02:00
parent e16d2b31ef
commit 719c5a62d2
4 changed files with 381 additions and 5 deletions

View File

@ -1,3 +1,5 @@
RewriteEngine On
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /(.*)index\.php($|\ |\?)
RewriteRule ^ /%1 [R=301,L]
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /(.*)lister\.php($|\ |\?)
RewriteRule ^ /%1 [R=301,L]

View File

@ -148,11 +148,8 @@ function main() {
print "\t\t\t\t<p>Then simply <code>pacman -Syu</code> to sync the repositories. Then you can install any of my packages in the same way you install official packages.</p>\n";
print "\t\t<h2>How do I use this site?</h2>\n";
print "\t\t\t<p>You can search for packages using the input box in the navbar. Then you can select a package to view details about it. You can press 'Home' in the navbar to go back to this page, or 'All' to display all available packages.</p>\n";
print "\t\t<h2>FAQ</h2>\n";
print "\t\t\t<ul class=\"faq\">\n";
print "\t\t\t\t<li>What distros does this support?\n";
print "\t\t\t\t<li>speedie-aur has only been tested on upstream Arch Linux, but should work on almost if not all Arch based GNU/Linux distributions.</li></li>\n";
print "\t\t\t</ul>\n";
print "\t\t<h2>Directory listing</h2>\n";
print "\t\t\t<p>See <a href=\"ls.php\">this page</a> for more information.</p>\n";
} else if ($request == "view" && $query != '') {
$packageCount = 0;
$packageVersions = array();

233
packages/lister.php Normal file
View File

@ -0,0 +1,233 @@
<?php
// MINIXED is a minimal but nice-looking PHP directory indexer.
// https://github.com/lorenzos/Minixed
// Licensed under the MIT license.
$browseDirectories = true; // Navigate into sub-folders
$title = 'Index of {{path}}';
$subtitle = '{{files}} objects in this folder, {{size}} total'; // Empty to disable
$breadcrumbs = false; // Make links in {{path}}
$showParent = false; // Display a (parent directory) link
$showDirectories = true;
$showDirectoriesFirst = true; // Lists directories first when sorting by name
$showHiddenFiles = true; // Display files starting with "." too
$alignment = 'left'; // You can use 'left' or 'center'
$showIcons = false;
$dateFormat = 'd/m/y H:i'; // Used in date() function
$sizeDecimals = 1;
$robots = 'noindex, nofollow'; // Avoid robots by default
$showFooter = true; // Display the "Powered by" footer
$openIndex = $browseDirectories && true; // Open index files present in the current directory if $browseDirectories is enabled
$browseDefault = null; // Start on a different "default" directory if $browseDirectories is enabled
$ignore = array("index.php", "lister.php", ".git", "viewer", "lister", "lister.css", ".htaccess"); // Names of files and folders to not list (case-sensitive)
$_self = basename($_SERVER['PHP_SELF']);
$_path = str_replace('\\', '/', dirname($_SERVER['PHP_SELF']));
$_total = 0;
$_total_size = 0;
$_browse = null;
if ($browseDirectories) {
if (!empty($browseDefault) && !isset($_GET['b'])) $_GET['b'] = $browseDefault;
$_GET['b'] = trim(str_replace('\\', '/', (string)@$_GET['b']), '/ ');
$_GET['b'] = str_replace(array('/..', '../'), '', (string)@$_GET['b']); // Avoid going up into filesystem
if (!empty($_GET['b']) && $_GET['b'] != '..' && is_dir($_GET['b'])) {
$browseIgnored = false;
foreach (explode('/', $_GET['b']) as $browseName) {
if (!empty($ignore) && is_array($ignore) && in_array($browseName, $ignore)) {
$browseIgnored = true;
break;
}
}
if (!$browseIgnored) $_browse = $_GET['b']; // Avoid browsing ignored folder names
}
}
// Index open
if (!empty($_browse) && $openIndex) {
$_index = null;
if (file_exists($_browse . "/index.htm")) $_index = "/index.htm";
if (file_exists($_browse . "/index.html")) $_index = "/index.html";
if (file_exists($_browse . "/index.php")) $_index = "/index.php";
if (!empty($_index)) {
header('Location: ' . $_browse . $_index);
exit();
}
}
// Encoded images generator
if (!empty($_GET['i'])) {
header('Content-type: image/png');
switch ($_GET['i']) {
case 'asc': exit(base64_decode('iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAFUlEQVQImWNgoBT8x4JxKsBpAhUAAPUACPhuMItPAAAAAElFTkSuQmCC'));
case 'desc': exit(base64_decode('iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAF0lEQVQImWNgoBb4j0/iPzYF/7FgCgAADegI+OMeBfsAAAAASUVORK5CYII='));
case 'directory': exit(base64_decode('iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAASklEQVQYlYWPwQ3AMAgDb3Tv5AHdR5OqTaBB8gM4bAGApACPRr/XuujA+vqVcAI3swDYjqRSH7B9oHI8grbTgWN+g3+xq0k6TegCNtdPnJDsj8sAAAAASUVORK5CYII='));
case 'file': exit(base64_decode('iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAPklEQVQYlcXQsQ0AIAhE0b//GgzDWGdjDCJoKck13CsIALi7gJxyVmFmyrsXLHEHD7zBmBbezvoJm4cL0OwYouM4O3J+UDYAAAAASUVORK5CYII='));
}
}
// I'm not sure this function is really needed...
function ls($path, $show_folders = false, $show_hidden = false) {
global $_self, $_total, $_total_size, $ignore;
$ls = array();
$ls_d = array();
if (($dh = @opendir($path)) === false) return $ls;
if (substr($path, -1) != '/') $path .= '/';
while (($file = readdir($dh)) !== false) {
if ($file == $_self) continue;
if ($file == '.' || $file == '..') continue;
if (!$show_hidden) if (substr($file, 0, 1) == '.') continue;
if (!empty($ignore) && is_array($ignore) && in_array($file, $ignore)) continue;
$isdir = is_dir($path . $file);
if (!$show_folders && $isdir) continue;
$item = array('name' => $file, 'isdir' => $isdir, 'size' => $isdir ? 0 : filesize($path . $file), 'time' => filemtime($path . $file));
if ($isdir) $ls_d[] = $item; else $ls[] = $item;
$_total++;
$_total_size += $item['size'];
}
return array_merge($ls_d, $ls);
}
// Get the list of files
$items = ls('.' . (empty($_browse) ? '' : '/' . $_browse), $showDirectories, $showHiddenFiles);
// Sort it
function sortByName($a, $b) { global $showDirectoriesFirst; return ($a['isdir'] == $b['isdir'] || !$showDirectoriesFirst ? strtolower($a['name']) > strtolower($b['name']) : $a['isdir'] < $b['isdir']) ? 1 : -1; }
function sortBySize($a, $b) { return ($a['isdir'] == $b['isdir'] ? $a['size'] > $b['size'] : $a['isdir'] < $b['isdir']) ? 1 : -1; }
function sortByTime($a, $b) { return ($a['time'] > $b['time']) ? 1 : -1; }
switch (@$_GET['s']) {
case 'size': $_sort = 'size'; usort($items, 'sortBySize'); break;
case 'time': $_sort = 'time'; usort($items, 'sortByTime'); break;
default : $_sort = 'name'; usort($items, 'sortByName'); break;
}
// Reverse?
$_sort_reverse = (@$_GET['r'] == '1');
if ($_sort_reverse) $items = array_reverse($items);
// Add parent
if ($showParent && $_path != '/' && empty($_browse)) array_unshift($items, array(
'name' => '..',
'isparent' => true,
'isdir' => true,
'size' => 0,
'time' => 0
));
// Add parent in case of browsing a sub-folder
if (!empty($_browse)) array_unshift($items, array(
'name' => '..',
'isparent' => false,
'isdir' => true,
'size' => 0,
'time' => 0
));
// 37.6 MB is better than 39487001
function humanizeFilesize($val, $round = 0) {
$unit = array('','K','M','G','T','P','E','Z','Y');
do { $val /= 1024; array_shift($unit); } while ($val >= 1000);
return sprintf('%.'.intval($round).'f', $val) . ' ' . array_shift($unit) . 'B';
}
// Titles parser
function getTitleHTML($title, $breadcrumbs = false) {
global $_path, $_browse, $_total, $_total_size, $sizeDecimals;
$title = htmlentities(str_replace(array('{{files}}', '{{size}}'), array($_total, humanizeFilesize($_total_size, $sizeDecimals)), $title));
$path = htmlentities($_path);
if ($breadcrumbs) $path = sprintf('<a href="%s">%s</a>', htmlentities(buildLink(array('b' => ''))), $path);
if (!empty($_browse)) {
if ($_path != '/') $path .= '/';
$browseArray = explode('/', trim($_browse, '/'));
foreach ($browseArray as $i => $part) {
if ($breadcrumbs) {
$path .= sprintf('<a href="%s">%s</a>', htmlentities(buildLink(array('b' => implode('/', array_slice($browseArray, 0, $i + 1))))), htmlentities($part));
} else {
$path .= htmlentities($part);
}
if (count($browseArray) > ($i + 1)) $path .= '/';
}
}
return str_replace('{{path}}', $path, $title);
}
// Link builder
function buildLink($changes) {
global $_self;
$params = $_GET;
foreach ($changes as $k => $v) if (is_null($v)) unset($params[$k]); else $params[$k] = $v;
foreach ($params as $k => $v) $params[$k] = urlencode($k) . '=' . urlencode($v);
return empty($params) ? $_self : $_self . '?' . implode('&', $params);
}
?>
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo getTitleHTML($title) ?></title>
<link rel="stylesheet" href="/lister/lister.css">
</head>
<body <?php if ($alignment == 'left') echo 'id="left"' ?>>
<div id="wrapper">
<h1><?php echo getTitleHTML($title, $breadcrumbs) ?></h1>
<h2><?php echo getTitleHTML($subtitle, $breadcrumbs) ?></h2>
<ul id="header">
<li>
<a href="<?php echo buildLink(array('s' => 'size', 'r' => (!$_sort_reverse && $_sort == 'size') ? '1' : null)) ?>" class="size <?php if ($_sort == 'size') echo $_sort_reverse ? 'desc' : 'asc' ?>"><span>Size</span></a>
<a href="<?php echo buildLink(array('s' => 'time', 'r' => (!$_sort_reverse && $_sort == 'time') ? '1' : null)) ?>" class="date <?php if ($_sort == 'time') echo $_sort_reverse ? 'desc' : 'asc' ?>"><span>Last modified</span></a>
<a href="<?php echo buildLink(array('s' => null , 'r' => (!$_sort_reverse && $_sort == 'name') ? '1' : null)) ?>" class="name <?php if ($_sort == 'name') echo $_sort_reverse ? 'desc' : 'asc' ?>"><span>Name</span></a>
</li>
</ul>
<ul>
<?php foreach ($items as $item): ?>
<li class="item">
<span class="size"><?php echo $item['isdir'] ? '' : humanizeFilesize($item['size'], $sizeDecimals) ?></span>
<span class="date"><?php echo (@$item['isparent'] || empty($item['time'])) ? '' : date($dateFormat, $item['time']) ?></span>
<?php
if ($item['isdir'] && $browseDirectories && !@$item['isparent']) {
if ($item['name'] == '..') {
$itemURL = buildLink(array('b' => substr($_browse, 0, strrpos($_browse, '/'))));
} else {
$itemURL = buildLink(array('b' => (empty($_browse) ? '' : (string)$_browse . '/') . $item['name']));
}
} else {
$itemURL = (empty($_browse) ? '' : str_replace(['%2F', '%2f'], '/', rawurlencode((string)$_browse)) . '/') . rawurlencode($item['name']);
}
?>
<a href="<?php echo htmlentities($itemURL) ?>" class="name <?php if ($showIcons) echo $item['isdir'] ? 'directory' : 'file' ?>"><?php echo htmlentities($item['name']) . ($item['isdir'] ? ' /' : '') ?></a>
</li>
<?php endforeach; ?>
</ul>
<?php if ($showFooter): ?>
<p id="footer">
Lister is a fork of <a href="https://github.com/lorenzos/Minixed">MINIXED</a>, which is licensed under the <a href="https://raw.githubusercontent.com/lorenzos/Minixed/master/LICENSE">MIT</a> license.
</p>
<?php endif; ?>
</div>
</body>
</html>

144
packages/lister/lister.css Normal file
View File

@ -0,0 +1,144 @@
* {
margin: 0;
padding: 0;
border: none;
}
body {
text-align: center;
font-family: monospace;
font-size: 16px;
color: #ffffff;
background-color: #212121;
}
body#left {
text-align: left;
}
h1 {
font-size: 20px;
padding: 0 10px;
text-align: center;
margin: 5px 5 5;
background-color: #363636;
position: sticky;
top: 0;
font-weight: bold;
}
h2 {
font-size: 16px;
padding: 0 10px;
margin: 10px 0 0;
color: #ccccff;
font-weight: normal;
}
a {
color: #89bfff;
text-decoration: none;
}
a:hover {
color: #89bfff;
text-decoration: underline;
}
ul li {
display: block;
list-style-type: none;
overflow: hidden;
padding: 10px;
}
ul li:hover {
background-color: #222222;
}
ul li .date, ul li .size {
font-size: 16px;
display: block;
color: #ccccff;
}
ul#header li {
font-size: 16px;
font-weight: bold;
border-bottom: 1px solid #cccccc;
}
ul#header li:hover {
background-color: transparent;
}
ul#header li * {
color: #777777;
font-size: 16px;
}
ul#header li a:hover {
color: #ffffff;
}
ul#header li .asc span, ul#header li .desc span {
padding-right: 15px;
background-position: right center;
background-repeat: no-repeat;
color: #ffffff;
}
ul#header li .asc span {
background-image: url('<?php echo $_self ?>?i=asc');
}
ul#header li .desc span {
background-image: url('<?php echo $_self ?>?i=desc');
}
ul li.item {
border-top: 1px solid #f3f3f3;
}
ul li.item:first-child {
border-top: none;
}
ul li.item .name {
font-weight: bold;
}
ul li.item .directory, ul li.item .file {
padding-left: 20px;
background-position: left center;
background-repeat: no-repeat;
}
ul li.item .directory {
background-image: url('<?php echo $_self ?>?i=directory');
}
ul li.item .file {
background-image: url('<?php echo $_self ?>?i=file');
}
#footer {
color: #cccccc;
font-size: 20px;
margin-top: 40px;
margin-bottom: 20px;
padding: 0 30px;
text-align: center;
}
#links {
color: #89bfff;
font-weight: bold;
text-decoration: none;
transition: 0.1s;
text-align: center;
}
#footer a:hover {
color: #ccccff;
}