41 lines
1,012 B
PHP
41 lines
1,012 B
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;
|
|
}
|
|
}
|