Files
newznab-tmux-NNTmux/misc/update/tmux/run.php
T
2025-10-30 22:36:05 +01:00

154 lines
6.4 KiB
PHP

<?php
require_once dirname(__DIR__, 3).DIRECTORY_SEPARATOR.'bootstrap/autoload.php';
use App\Models\Collection;
use App\Models\Settings;
use Blacklight\ColorCLI;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Process;
$tmuxPath = base_path().'/misc/update/tmux/';
$import = Settings::settingValue('import') ?? 0;
$tmux_session = Settings::settingValue('tmux_session') ?? 0;
$seq = Settings::settingValue('sequential') ?? 0;
$delaytime = Settings::settingValue('delaytime');
$delaytime = $delaytime ? (int) $delaytime : 2;
$colorCli = new ColorCLI;
Process::run('clear');
// reset collections dateadded to now if dateadded > delay time check
$colorCli->header('Resetting collections that have expired to this moment. This could take some time if many collections need to be reset');
DB::transaction(function () use ($delaytime) {
Collection::query()->where('dateadded', '<', now()->subHours($delaytime))->update(['dateadded' => now()]);
}, 10);
function command_exist($cmd): bool
{
$returnVal = Process::run("which $cmd 2>/dev/null");
return $returnVal->seeInOutput($cmd);
}
// check for apps
$apps = ['time', 'tmux', 'nice', 'tee'];
foreach ($apps as &$value) {
if (! command_exist($value)) {
$colorCli->error('Tmux scripts require '.$value.' but its not installed. Aborting.');
exit();
}
}
unset($value);
function start_apps($tmux_session): void
{
$htop = Settings::settingValue('htop');
$vnstat = Settings::settingValue('vnstat');
$vnstat_args = Settings::settingValue('vnstat_args');
$tcptrack = Settings::settingValue('tcptrack');
$tcptrack_args = Settings::settingValue('tcptrack_args');
$nmon = Settings::settingValue('nmon');
$bwmng = Settings::settingValue('bwmng');
$mytop = Settings::settingValue('mytop');
$redis = Settings::settingValue('redis');
$showprocesslist = Settings::settingValue('showprocesslist');
$processupdate = Settings::settingValue('processupdate');
$console_bash = Settings::settingValue('console');
if ((int) $htop === 1 && command_exist('htop')) {
Process::run("tmux new-window -t $tmux_session -n htop 'printf \"\033]2;htop\033\" && htop'");
}
if ((int) $nmon === 1 && command_exist('nmon')) {
Process::run("tmux new-window -t $tmux_session -n nmon 'printf \"\033]2;nmon\033\" && nmon -t'");
}
if ((int) $vnstat === 1 && command_exist('vnstat')) {
Process::run("tmux new-window -t $tmux_session -n vnstat 'printf \"\033]2;vnstat\033\" && watch -n10 \"vnstat {$vnstat_args}\"'");
}
if ((int) $tcptrack === 1 && command_exist('tcptrack')) {
Process::run("tmux new-window -t $tmux_session -n tcptrack 'printf \"\033]2;tcptrack\033\" && tcptrack {$tcptrack_args}'");
}
if ((int) $bwmng === 1 && command_exist('bwm-ng')) {
Process::run("tmux new-window -t $tmux_session -n bwm-ng 'printf \"\033]2;bwm-ng\033\" && bwm-ng'");
}
if ((int) $mytop === 1 && command_exist('mytop')) {
Process::run("tmux new-window -t $tmux_session -n mytop 'printf \"\033]2;mytop\033\" && mytop -u'");
}
if ((int) $redis === 1 && command_exist('redis-cli')) {
Process::run("tmux new-window -t $tmux_session -n redis-stat 'printf \"\033]2;redis-stat\033\" && redis-stat --verbose --server=63790'");
}
if ((int) $showprocesslist === 1) {
Process::run("tmux new-window -t $tmux_session -n showprocesslist 'printf \"\033]2;showprocesslist\033\" && watch -n .5 \"mysql -e \\\"SELECT time, state, info FROM information_schema.processlist WHERE command != \\\\\\\"Sleep\\\\\\\" AND time >= $processupdate ORDER BY time DESC \\\G\\\"\"'");
}
if ((int) $console_bash === 1) {
Process::run("tmux new-window -t $tmux_session -n bash 'printf \"\033]2;Bash\033\" && bash -i'");
}
}
function window_utilities($tmux_session)
{
Process::run("tmux new-window -t $tmux_session -n utils 'printf \"\033]2;fixReleaseNames\033\"'");
Process::run("tmux selectp -t $tmux_session:1.0; tmux splitw -t $tmux_session:1 -h -l 50% 'printf \"\033]2;removeCrapReleases\033\"'");
}
function window_stripped_utilities($tmux_session)
{
Process::run("tmux selectp -t $tmux_session:1.0; tmux splitw -t $tmux_session:1 -h -l 50% 'printf \"\033]2;postprocessing_amazon\033\"'");
}
function window_ircscraper($tmux_session)
{
Process::run("tmux new-window -t $tmux_session -n IRCScraper 'printf \"\033]2;scrapeIRC\033\"'");
}
function window_post($tmux_session)
{
Process::run("tmux new-window -t $tmux_session -n post 'printf \"\033]2;postprocessing_additional\033\"'");
Process::run("tmux splitw -t $tmux_session:2 -v -l 67% 'printf \"\033]2;postprocessing_non_amazon\033\"'");
Process::run("tmux splitw -t $tmux_session:2 -v -l 50% 'printf \"\033]2;postprocessing_amazon\033\"'");
}
function attach($tmuxPath, $tmux_session): void
{
Process::run("tmux respawnp -t $tmux_session:0.0 'php ".$tmuxPath."monitor.php'");
Process::run("tmux select-window -t $tmux_session:0; tmux attach-session -d -t $tmux_session");
}
// create tmux session
$tmuxConfig = $tmuxPath.'tmux.conf';
if ((int) $seq === 1) {
Process::run("cd {$tmuxPath}; tmux -f $tmuxConfig new-session -d -s $tmux_session -n Monitor 'printf \"\033]2;\"Monitor\"\033\"'");
Process::run("tmux selectp -t $tmux_session:0.0; tmux splitw -t $tmux_session:0 -h -l 67% 'printf \"\033]2;update_releases\033\"'");
window_utilities($tmux_session);
window_post($tmux_session);
} elseif ((int) $seq === 2) {
Process::run("cd {$tmuxPath}; tmux -f $tmuxConfig new-session -d -s $tmux_session -n Monitor 'printf \"\033]2;\"Monitor\"\033\"'");
Process::run("tmux selectp -t $tmux_session:0.0; tmux splitw -t $tmux_session:0 -h -l 67% 'printf \"\033]2;sequential\033\"'");
window_stripped_utilities($tmux_session);
} else {
Process::run("cd {$tmuxPath}; tmux -f $tmuxConfig new-session -d -s $tmux_session -n Monitor 'printf \"\033]2;Monitor\033\"'");
Process::run("tmux selectp -t $tmux_session:0.0; tmux splitw -t $tmux_session:0 -h -l 67% 'printf \"\033]2;update_binaries\033\"'");
Process::run("tmux selectp -t $tmux_session:0.2; tmux splitw -t $tmux_session:0 -v -l 67% 'printf \"\033]2;backfill\033\"'");
Process::run("tmux splitw -t $tmux_session -v -l 50% 'printf \"\033]2;update_releases\033\"'");
window_utilities($tmux_session);
window_post($tmux_session);
}
window_ircscraper($tmux_session);
start_apps($tmux_session);
attach($tmuxPath, $tmux_session);