mirror of
https://github.com/unraid/webgui.git
synced 2026-01-13 13:09:58 -06:00
94 lines
2.8 KiB
PHP
94 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* jQuery File Tree PHP Connector
|
|
*
|
|
* Version 1.1.1
|
|
*
|
|
* @author - Cory S.N. LaViska A Beautiful Site (http://abeautifulsite.net/)
|
|
* @author - Dave Rogers - https://github.com/daverogers/jQueryFileTree
|
|
*
|
|
* History:
|
|
*
|
|
* 1.1.1 - SECURITY: forcing root to prevent users from determining system's file structure (per DaveBrad)
|
|
* 1.1.0 - adding multiSelect (checkbox) support (08/22/2014)
|
|
* 1.0.2 - fixes undefined 'dir' error - by itsyash (06/09/2014)
|
|
* 1.0.1 - updated to work with foreign characters in directory/file names (12 April 2008)
|
|
* 1.0.0 - released (24 March 2008)
|
|
*
|
|
* Output a list of files for jQuery File Tree
|
|
*/
|
|
|
|
/**
|
|
* filesystem root - USER needs to set this!
|
|
* -> prevents debug users from exploring system's directory structure
|
|
* ex: $root = $_SERVER['DOCUMENT_ROOT'];
|
|
*/
|
|
$root = '/';
|
|
if( !$root ) exit("ERROR: Root filesystem directory not set in jqueryFileTree.php");
|
|
|
|
$postDir = $root.(isset($_POST['dir']) ? $_POST['dir'] : '' );
|
|
|
|
if (substr($postDir, -1) != '/') {
|
|
$postDir .= '/';
|
|
}
|
|
$postDir = preg_replace("#[\/]+#", "/", $postDir);
|
|
|
|
$filters = (array)(isset($_POST['filter']) ? $_POST['filter'] : '');
|
|
$match = (isset($_POST['match']) ? $_POST['match'] : '.*');
|
|
|
|
// set checkbox if multiSelect set to true
|
|
$checkbox = ( isset($_POST['multiSelect']) && $_POST['multiSelect'] == 'true' ) ? "<input type='checkbox' />" : null;
|
|
|
|
$returnDir = $postDir;
|
|
|
|
echo "<ul class='jqueryFileTree'>";
|
|
|
|
// Parent dirs
|
|
if ($_POST['show_parent'] == "true" ) {
|
|
echo "<li class='directory collapsed'>{$checkbox}<a href='#' rel='" . htmlspecialchars(dirname($postDir), ENT_QUOTES) . "/'>..</a></li>";
|
|
}
|
|
|
|
if( file_exists($postDir) ) {
|
|
|
|
$files = scandir($postDir);
|
|
|
|
natcasesort($files);
|
|
|
|
if( count($files) > 2 ) { // The 2 accounts for . and ..
|
|
|
|
foreach( $files as $file ) {
|
|
if( file_exists($postDir . $file) && $file != '.' && $file != '..' ) {
|
|
if( is_dir($postDir . $file) ) {
|
|
$htmlRel = htmlspecialchars($returnDir . $file, ENT_QUOTES);
|
|
$htmlName = htmlspecialchars((strlen($file) > 33) ? substr($file,0,33).'...' : $file);
|
|
|
|
echo "<li class='directory collapsed'>{$checkbox}<a href='#' rel='" . $htmlRel . "/'>" . $htmlName . "</a></li>";
|
|
}
|
|
}
|
|
}
|
|
|
|
// All files
|
|
foreach( $files as $file ) {
|
|
if( file_exists($postDir . $file) && $file != '.' && $file != '..' ) {
|
|
if( !is_dir($postDir . $file) ) {
|
|
$htmlRel = htmlspecialchars($returnDir . $file, ENT_QUOTES);
|
|
$htmlName = htmlspecialchars($file);
|
|
$ext = strtolower(preg_replace('/^.*\./', '', $file));
|
|
|
|
foreach ($filters as $filter) {
|
|
if (empty($filter) | $ext==$filter) {
|
|
if (empty($match) || preg_match('/'.$match.'/', $file)) {
|
|
echo "<li class='file ext_{$ext}'>{$checkbox}<a href='#' rel='" . $htmlRel . "'>" . $htmlName . "</a></li>";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
echo "</ul>";
|
|
|
|
?>
|