PhyrePanel/web/app/ShellApi.php
Bozhidar Slaveykov 1d703c311f update
2024-04-01 18:00:03 +03:00

41 lines
1 KiB
PHP

<?php
namespace App;
class ShellApi
{
public static function exec($command, $argsArray = [])
{
$args = '';
if (!empty($argsArray)) {
foreach ($argsArray as $arg) {
$args .= escapeshellarg($arg) . ' ';
}
}
$fullCommand = $command . ' ' . $args;
// Run the command as sudo "/usr/bin/sudo "
$execOutput = shell_exec("/usr/bin/sudo " . $fullCommand);
$execOutput = str_replace(PHP_EOL, '', $execOutput);
return $execOutput;
}
public static function callBin($command, $argsArray = [])
{
$args = '';
if (!empty($argsArray)) {
foreach ($argsArray as $arg) {
$args .= escapeshellarg($arg) . ' ';
}
}
$fullCommand = escapeshellarg('/usr/local/phyre/bin/' . $command . '.sh') . ' ' . $args;
$commandAsSudo = '/usr/bin/sudo ' . $fullCommand;
$execOutput = shell_exec($commandAsSudo);
return $execOutput;
}
}