mirror of
https://github.com/unraid/webgui.git
synced 2026-02-26 12:18:56 -06:00
repo reorg
This commit is contained in:
103
emhttp/plugins/dynamix/include/OpenTerminal.php
Normal file
103
emhttp/plugins/dynamix/include/OpenTerminal.php
Normal file
@@ -0,0 +1,103 @@
|
||||
<?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.
|
||||
*/
|
||||
?>
|
||||
<?
|
||||
$docroot = $docroot ?? $_SERVER['DOCUMENT_ROOT'] ?: '/usr/local/emhttp';
|
||||
|
||||
// add translations
|
||||
$_SERVER['REQUEST_URI'] = '';
|
||||
require_once "$docroot/webGui/include/Translations.php";
|
||||
require_once "$docroot/webGui/include/Secure.php";
|
||||
require_once "$docroot/webGui/include/Wrappers.php";
|
||||
|
||||
// Get the webGui configuration preferences
|
||||
extract(parse_plugin_cfg('dynamix',true));
|
||||
|
||||
$rows = 90;
|
||||
$wait = "read -N 1 -p '\n\e[92m** "._('Press ANY KEY to close this window')." ** \e[0m'";
|
||||
$run = "$docroot/webGui/scripts/run_cmd";
|
||||
|
||||
// set tty window font size
|
||||
if (!empty($display['tty'])) exec("sed -ri 's/fontSize=[0-9]+/fontSize={$display['tty']}/' /etc/default/ttyd");
|
||||
|
||||
function wait($name,$cmd) {
|
||||
global $run,$wait;
|
||||
$exec = "/var/tmp/$name.run.sh";
|
||||
file_put_contents($exec,"#!/bin/bash\n$run $cmd\n$wait\n");
|
||||
chmod($exec,0755);
|
||||
return $exec;
|
||||
}
|
||||
function command($path,$file) {
|
||||
global $run,$wait,$rows;
|
||||
return (file_exists($file) && substr($file,0,strlen($path))==$path) ? "$run tail -f -n $rows '$file'" : $wait;
|
||||
}
|
||||
switch ($_GET['tag']) {
|
||||
case 'ttyd':
|
||||
// check if ttyd already running
|
||||
$sock = "/var/run/ttyd.sock";
|
||||
exec("pgrep -f '$sock'", $ttyd_pid, $retval);
|
||||
if ($retval == 0) {
|
||||
// check if there are any child processes, ie, curently open tty windows
|
||||
exec("pgrep -P ".$ttyd_pid[0], $output, $retval);
|
||||
// no child processes, restart ttyd to pick up possible font size change
|
||||
if ($retval != 0) exec("kill ".$ttyd_pid[0]);
|
||||
}
|
||||
if ($retval != 0) exec("ttyd-exec -i '$sock' bash --login");
|
||||
break;
|
||||
case 'syslog':
|
||||
// read syslog file
|
||||
$path = '/var/log/';
|
||||
$file = realpath($path.$_GET['name']);
|
||||
$sock = "/var/run/syslog.sock";
|
||||
exec("ttyd-exec -s9 -om1 -i '$sock' ".command($path,$file));
|
||||
break;
|
||||
case 'disklog':
|
||||
// read disk log info (main page)
|
||||
$name = unbundle($_GET['name']);
|
||||
$sock = "/var/tmp/$name.sock";
|
||||
$ata = exec("ls -n '/sys/block/$name'|grep -Pom1 'ata\d+'");
|
||||
$dev = $ata ? $name.'|'.$ata.'[.:]' : $name;
|
||||
exec("ttyd-exec -s9 -om1 -i '$sock' ".wait($name,"grep -P \"'$dev'\" '/var/log/syslog*'"));
|
||||
break;
|
||||
case 'log':
|
||||
// read vm log file
|
||||
$path = '/var/log/';
|
||||
$name = unbundle($_GET['name']);
|
||||
$file = realpath($path.$_GET['more']);
|
||||
$sock = "/var/tmp/$name.sock";
|
||||
exec("ttyd-exec -s9 -om1 -i '$sock' ".command($path,$file));
|
||||
break;
|
||||
case 'docker':
|
||||
$name = unbundle($_GET['name']);
|
||||
$more = unbundle($_GET['more']) ?: 'sh';
|
||||
if ($more=='.log') {
|
||||
// read docker container log
|
||||
$sock = "/var/tmp/$name.log.sock";
|
||||
if (empty(exec("docker ps --filter=name='$name' --format={{.Names}}")))
|
||||
$docker = wait($name,"docker logs -n $rows '$name'"); // container stopped
|
||||
else
|
||||
$docker = "$run docker logs -f -n $rows '$name'"; // container started
|
||||
exec("ttyd-exec -s9 -om1 -i '$sock' $docker");
|
||||
} else {
|
||||
// docker console command
|
||||
$sock = "/var/tmp/$name.sock";
|
||||
exec("ttyd-exec -s9 -om1 -i '$sock' docker exec -it '$name' $more");
|
||||
}
|
||||
break;
|
||||
case 'lxc':
|
||||
$name = unbundle($_GET['name']);
|
||||
$more = unbundle($_GET['more']);
|
||||
$sock = "/var/tmp/$name.sock";
|
||||
exec("ttyd-exec -s9 -om1 -i '$sock' lxc-attach '$name' $more");
|
||||
break;
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user