icons = [
'DEFAULT' => ['file.svg', 'File'],
'UP' => ['corner-left-up.svg', 'Up'],
'DIR' => ['folder-fill.svg', 'Directory'],
'IMG' => ['image.svg', '[IMG]'],
'TXT' => ['file-text.svg', '[TXT]'],
'CMP' => ['file.svg', '[CMP]'],
'BIN' => ['file.svg', '[BIN]'],
'VID' => ['video.svg', '[VID]'],
'SND' => ['music.svg', '[SND]'],
];
$this->definedSuffix = [];
$this->addMapping(['gif', 'png', 'jpg', 'jpeg', 'webp', 'tif', 'tiff', 'bmp', 'svg', 'raw'],
'IMG');
$this->addMapping(['txt', 'md5', 'c', 'cpp', 'cc', 'h', 'sh', 'html', 'htm', 'shtml', 'php', 'phtml', 'css', 'js'],
'TXT');
$this->addMapping(['gz', 'tgz', 'zip', 'Z', 'z'], 'CMP');
$this->addMapping(['bin', 'exe'], 'BIN');
$this->addMapping(['mpg', 'avi', 'mpeg', 'ram', 'wmv'], 'VID');
$this->addMapping(['mp3', 'mp2', 'ogg', 'wav', 'wma', 'aac', 'mp4', 'rm'], 'SND');
}
private function addMapping($suffixArray, $iconTag)
{
if (!isset($this->icons[$iconTag])) { // should not happen, unrecognized tag
$iconTag = 'DEFAULT';
}
foreach ($suffixArray as $suffix) {
$this->definedSuffix[$suffix] = $iconTag;
}
}
private static function getMap()
{
if (self::$instance == null) {
self::$instance = new self();
}
return self::$instance;
}
public static function getFileIconTag($file)
{
$map = self::getMap();
$pos = strrpos($file, '.');
if ($pos !== false) {
$suffix = substr($file, $pos + 1);
if ($suffix !== false) {
if (isset($map->definedSuffix[$suffix])) {
return $map->definedSuffix[$suffix];
}
}
}
return 'DEFAULT';
}
public static function img($iconTag)
{
$me = self::getMap();
return '';
}
}
// END of customization section
class FileStat
{
protected $name;
protected $size;
protected $mtime;
protected $isdir;
protected $iconTag;
protected $restricted = false;
public function __construct($path, $filename)
{
$this->name = $filename;
if ($path == '..') {
$this->size = -2;
$this->iconTag = 'UP';
$this->mtime = 0;
return;
}
$s = @stat($path . $filename);
if ($s == false) {
$this->restricted = true;
return;
}
$this->mtime = $s[9];
if (($s[2] & 040000) > 0) {
$this->isdir = true;
$this->size = -1;
$this->iconTag = 'DIR';
} else {
$this->isdir = false;
$this->size = $s[7];
$this->iconTag = IconMap::getFileIconTag($filename);
}
}
public function isRestricted()
{
// due to openbase_dir, file is outside of DOCROOT
return $this->restricted;
}
public function isDir()
{
return $this->isdir;
}
public function getUrl($base)
{
$encoded = $base . rawurlencode($this->name);
if ($this->isdir) {
$encoded .= '/';
}
return $encoded;
}
public function getIconTag()
{
return $this->iconTag;
}
public function sortName()
{
// case insensitive compare
$name = htmlspecialchars(strtolower($this->name), ENT_QUOTES | ENT_SUBSTITUTE);
return $this->isdir ? '*' . $name : $name; // to make directories list on top
}
public function dispName()
{
$name = $this->name;
if (strlen($name) > UserSettings::$NAME_WIDTH) {
$name = substr($name, 0, UserSettings::$NAME_WIDTH - 3) . '...';
}
return htmlspecialchars($name, ENT_QUOTES | ENT_SUBSTITUTE);
}
public function dispTime()
{
return ($this->mtime > 0) ? date(UserSettings::$TIME_FORMAT, $this->mtime) : '';
}
public function sortTime()
{
if ($this->isdir) {
// to make dir sorted together, deduct 50 years
return ($this->mtime - 1576800000);
}
return $this->mtime;
}
public function dispSize()
{
if ($this->iconTag == 'UP') { // parent dir
return '';
}
if ($this->isdir) {
return '-';
}
return sprintf("%7ldk", ($this->size + 1023) / 1024);
}
public function sortSize()
{
return $this->size;
}
public static function cmpNA($a, $b)
{
return strcasecmp($a->name, $b->name);
}
public static function cmpND($a, $b)
{
return - self::cmpNA($a, $b);
}
public static function cmpSA($a, $b)
{
$ret = $a->size - $b->size;
if ($ret == 0) {
// if same size, compare by name ascending
return self::cmpNA($a, $b);
}
return $ret;
}
public static function cmpSD($a, $b)
{
return - self::cmpSA($a, $b);
}
public static function cmpMA($a, $b)
{
return $a->mtime - $b->mtime;
}
public static function cmpMD($a, $b)
{
return - self::cmpMA($a, $b);
}
}
class Directory
{
private $list;
private $path;
private $len;
public function __construct($path)
{
$this->path = $path;
$handle = opendir($path);
if ($handle === false) {
return;
}
clearstatcache();
$this->list = [];
while (false !== ($file = readdir($handle))) {
if (!UserSettings::shouldExclude($file)) {
$fs = new FileStat($path, $file);
if (!$fs->isRestricted()) {
$this->list[] = $fs;
}
}
}
closedir($handle);
$this->len = count($this->list);
}
public function cannotLoad()
{
return ($this->list === null);
}
public function getListCount()
{
return $this->len;
}
public function sortList($order)
{
usort($this->list, ['\\LiteSpeedAutoIndex\\FileStat', "cmp$order"]);
}
public function populateList(&$dirs, &$files)
{
$files = [];
foreach ($this->list as $fileStat) {
if ($fileStat->isDir()) {
$dirs[] = $fileStat;
} else {
$files[] = $fileStat;
}
}
}
}
class Index
{
protected $dir;
protected $uri;
protected $path;
protected $isFancy;
protected $sort;
public function printPage()
{
$this->init();
$this->printHeader();
$this->printContent();
$this->printFooter();
}
protected function init()
{
if (empty($_SERVER['LS_AI_PATH'])) {
$this->exit403('[ERROR] Auto Index script can not be accessed directly!');
}
$this->path = $_SERVER['LS_AI_PATH'];
ini_set('open_basedir', $_SERVER['DOCUMENT_ROOT']);
$this->dir = new Directory($this->path);
if ($this->dir->cannotLoad()) {
$this->exit403('