mirror of
https://github.com/unraid/webgui.git
synced 2026-01-01 06:59:56 -06:00
157 lines
5.1 KiB
PHP
Executable File
157 lines
5.1 KiB
PHP
Executable File
<?PHP
|
|
/* Copyright 2005-2023, Lime Technology
|
|
* Copyright 2012-2023, Bergware International.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version 2,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*/
|
|
?>
|
|
<?
|
|
require_once "$docroot/webGui/include/MarkdownExtra.inc.php";
|
|
require_once "$docroot/webGui/include/Wrappers.php";
|
|
|
|
function get_ini_key($key,$default) {
|
|
$x = strpos($key, '[');
|
|
$var = $x>0 ? substr($key,1,$x-1) : substr($key,1);
|
|
global $$var;
|
|
try {
|
|
eval("\$var=$key;");
|
|
} catch (Throwable $e) {
|
|
return $default;
|
|
}
|
|
return $var ?: $default;
|
|
}
|
|
|
|
function get_file_key($file,$default) {
|
|
[$key, $default] = my_explode('=',$default);
|
|
$var = @parse_ini_file($file);
|
|
return $var[$key] ?? $default;
|
|
}
|
|
|
|
function build_pages($pattern) {
|
|
global $site;
|
|
foreach (glob($pattern,GLOB_NOSORT) as $entry) {
|
|
[$header, $content] = my_explode("\n---\n",file_get_contents($entry));
|
|
$page = @parse_ini_string($header);
|
|
if (!$page) {my_logger("Invalid .page format: $entry"); continue;}
|
|
$page['file'] = $entry;
|
|
$page['root'] = dirname($entry);
|
|
$page['name'] = basename($entry, '.page');
|
|
$page['text'] = $content;
|
|
$site[$page['name']] = $page;
|
|
}
|
|
}
|
|
|
|
function page_enabled(&$page)
|
|
{
|
|
global $docroot,$var,$disks,$devs,$users,$shares,$sec,$sec_nfs,$name,$display,$pool_devices;
|
|
$enabled = $evalSuccess = true;
|
|
if (isset($page['Cond'])) {
|
|
$evalContent= "\$enabled={$page['Cond']};";
|
|
$evalFile = $page['file'];
|
|
include "$docroot/webGui/include/DefaultPageLayout/evalContent.php";
|
|
}
|
|
return ($enabled && $evalSuccess);
|
|
}
|
|
|
|
function find_pages($item) {
|
|
global $site;
|
|
$pages = [];
|
|
foreach ($site as $page) {
|
|
if (empty($page['Menu'])) continue;
|
|
$menu = strtok($page['Menu'], ' ');
|
|
switch ($menu[0]) {
|
|
case '$': $menu = get_ini_key($menu,strtok(' ')); break;
|
|
case '/': $menu = get_file_key($menu,strtok(' ')); break;
|
|
}
|
|
while ($menu !== false) {
|
|
[$menu,$rank] = my_explode(':',$menu);
|
|
if ($menu == $item) {
|
|
if (page_enabled($page)) $pages["$rank{$page['name']}"] = $page;
|
|
break;
|
|
}
|
|
$menu = strtok(' ');
|
|
}
|
|
}
|
|
ksort($pages,SORT_NATURAL);
|
|
return $pages;
|
|
}
|
|
|
|
function tab_title($title,$path,$tag) {
|
|
global $docroot,$pools;
|
|
$title=htmlspecialchars(html_entity_decode($title));
|
|
$names = implode('|',array_merge(['disk','parity'],$pools));
|
|
if (preg_match("/^($names)/",$title)) {
|
|
$device = strtok($title,' ');
|
|
$title = str_replace($device,_(my_disk($device),3),$title);
|
|
}
|
|
$title = _(parse_text($title));
|
|
$wrapperClasses = 'left inline-flex flex-row items-center gap-1';
|
|
if (!$tag || substr($tag,-4)=='.png') {
|
|
$file = "$path/icons/".($tag ?: strtolower(str_replace(' ','',$title)).".png");
|
|
if (file_exists("$docroot/$file")) {
|
|
return "<span class='$wrapperClasses'><img src='/$file' class='icon' style='max-width: 18px; max-height: 18px; width: auto; height: auto; object-fit: contain;'>$title</span>";
|
|
} else {
|
|
return "<span class='$wrapperClasses'><i class='fa fa-th title'></i>$title</span>";
|
|
}
|
|
} elseif (substr($tag,0,5)=='icon-') {
|
|
return "<span class='$wrapperClasses'><i class='$tag title'></i>$title</span>";
|
|
} else {
|
|
if (substr($tag,0,3)!='fa-') $tag = "fa-$tag";
|
|
return "<span class='$wrapperClasses'><i class='fa $tag title'></i>$title</span>";
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Generate CSS for sidebar icons
|
|
*
|
|
* @param array $tasks Array of task pages
|
|
* @param array $buttons Array of button pages
|
|
* @return string CSS for sidebar icons
|
|
*/
|
|
function generate_sidebar_icon_css($tasks, $buttons) {
|
|
$css = '';
|
|
|
|
// Generate CSS for task icons
|
|
foreach ($tasks as $button) {
|
|
if (isset($button['Code'])) {
|
|
$css .= ".nav-item a[href='/{$button['name']}']:before{content:'\\{$button['Code']}'}\n";
|
|
}
|
|
}
|
|
|
|
// Add lock button icon
|
|
$css .= ".nav-item.LockButton a:before{content:'\\e955'}\n";
|
|
|
|
// Generate CSS for utility button icons
|
|
foreach ($buttons as $button) {
|
|
if (isset($button['Code'])) {
|
|
$css .= ".nav-item.{$button['name']} a:before{content:'\\{$button['Code']}'}\n";
|
|
}
|
|
}
|
|
|
|
return $css;
|
|
}
|
|
|
|
function includePageStylesheets($page) {
|
|
global $docroot, $theme;
|
|
$css = "/{$page['root']}/sheets/{$page['name']}";
|
|
$css_stock = "$css.css";
|
|
$css_theme = "$css-$theme.css"; // @todo add syslog for deprecation notice
|
|
if (is_file($docroot.$css_stock)) echo '<link type="text/css" rel="stylesheet" href="',autov($css_stock),'">',"\n";
|
|
if (is_file($docroot.$css_theme)) echo '<link type="text/css" rel="stylesheet" href="',autov($css_theme),'">',"\n";
|
|
}
|
|
|
|
function annotate($text) {
|
|
echo "\n<!--\n",str_repeat("#",strlen($text)),"\n$text\n",str_repeat("#",strlen($text)),"\n-->\n";
|
|
}
|
|
|
|
// hack to embed function output in a quoted string (e.g., in a page Title)
|
|
// see: http://stackoverflow.com/questions/6219972/why-embedding-functions-inside-of-strings-is-different-than-variables
|
|
function _func($x) {return $x;}
|
|
$func = '_func';
|
|
?>
|