options = load_commented_json(APP_PATH . "/conf/options.json"); } public function get_options() { return $this->options; } public function get_setup() { $consts = get_defined_constants(true)['user']; $consts['PHP_VERSION'] = PHP_VERSION; return $consts; } public function to_url($path, $trailing_slash = true) { $rel_path = substr($path, strlen(ROOT_PATH)); $parts = explode("/", $rel_path); $encoded_parts = array(); foreach ($parts as $part) { if ($part) { $encoded_parts[] = rawurlencode($part); } } return normalize_path(ROOT_URL . implode("/", $encoded_parts), $trailing_slash); } public function to_path($url) { $rel_url = substr($url, strlen(ROOT_URL)); return normalize_path(ROOT_PATH . "/" . rawurldecode($rel_url)); } public function is_ignored($name) { // always ignore if ($name === "." || $name === "..") { return true; } foreach ($this->options["view"]["ignore"] as $re) { $re = App::$RE_DELIMITER . str_replace(App::$RE_DELIMITER, '\\' . App::$RE_DELIMITER, $re) . App::$RE_DELIMITER; if (preg_match($re, $name)) { return true; } } return false; } public function read_dir($path) { $names = array(); if (is_dir($path)) { if ($dir = opendir($path)) { while (($name = readdir($dir)) !== false) { if (!$this->is_ignored($name) && !$this->is_ignored($this->to_url($path) . $name)) { $names[] = $name; } } closedir($dir); } } return $names; } public function get_http_code($url) { $path = $this->to_path($url); if (!is_dir($path) || strpos($path, '../') || strpos($path, '/..') || $path == '..') { return 500; } foreach ($this->options["view"]["indexFiles"] as $if) { if (file_exists($path . "/" . $if)) { return 200; } } while ($path !== ROOT_PATH) { if (@is_dir($path . "/_h5ai/server")) { return 200; } $parent_path = normalize_path(dirname($path)); if ($parent_path === $path) { return 200; } $path = $parent_path; } return MAGIC_SEQUENCE; } public function get_items($url, $what) { $code = $this->get_http_code($url); if ($code !== MAGIC_SEQUENCE) { return array(); } $cache = array(); $folder = Item::get($this, $this->to_path($url), $cache); // add content of subfolders if ($what >= 2 && $folder !== null) { foreach ($folder->get_content($cache) as $item) { $item->get_content($cache); } $folder = $folder->get_parent($cache); } // add content of this folder and all parent folders while ($what >= 1 && $folder !== null) { $folder->get_content($cache); $folder = $folder->get_parent($cache); } uasort($cache, array("Item", "cmp")); $result = array(); foreach ($cache as $p => $item) { $result[] = $item->to_json_object(); } return $result; } public function get_fallback() { $cache = array(); $folder = Item::get($this, CURRENT_PATH, $cache); time_log("f2"); $items = $folder->get_content($cache); time_log("f3"); uasort($items, array("Item", "cmp")); $html = "
"; $html .= " | Name | "; $html .= "Last modified | "; $html .= "Size | "; $html .= "
---|---|---|---|
![]() | ";
$html .= "Parent Directory | "; $html .= ""; $html .= " | "; $html .= " |
![]() | ";
$html .= "" . basename($item->path) . " | "; $html .= "" . date("Y-m-d H:i", $item->date) . " | "; $html .= "" . ($item->size !== null ? intval($item->size / 1000) . " KB" : "" ) . " | "; $html .= "