2020-06-07 19:04:43 +03:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
namespace openvk\Web\Util\Shell;
|
|
|
|
|
|
|
|
class Shell
|
|
|
|
{
|
|
|
|
static function shellAvailable(): bool
|
|
|
|
{
|
|
|
|
if(ini_get("safe_mode"))
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
$functions = array_map(function($x) {
|
|
|
|
return trim($x);
|
|
|
|
}, explode(" ", ini_get("disable_functions")));
|
|
|
|
return !in_array("system", $functions);
|
|
|
|
}
|
|
|
|
|
|
|
|
static function commandAvailable(string $name): bool
|
|
|
|
{
|
2021-10-15 12:34:59 +03:00
|
|
|
if(!Shell::shellAvailable())
|
|
|
|
throw new Exceptions\ShellUnavailableException;
|
2020-06-07 19:04:43 +03:00
|
|
|
|
|
|
|
return !is_null(`command -v $name`);
|
|
|
|
}
|
|
|
|
|
|
|
|
static function __callStatic(string $name, array $arguments): object
|
|
|
|
{
|
2021-10-15 12:34:59 +03:00
|
|
|
if(!Shell::commandAvailable($name))
|
|
|
|
throw new Exceptions\UnknownCommandException($name);
|
2020-06-07 19:04:43 +03:00
|
|
|
|
|
|
|
$command = implode(" ", array_merge([$name], $arguments));
|
|
|
|
|
|
|
|
return new class($command)
|
|
|
|
{
|
|
|
|
private $command;
|
|
|
|
|
|
|
|
function __construct(string $cmd)
|
|
|
|
{
|
|
|
|
$this->command = $cmd;
|
|
|
|
}
|
|
|
|
|
2021-10-15 12:34:59 +03:00
|
|
|
function execute(?int &$result = nullptr): string
|
2020-06-07 19:04:43 +03:00
|
|
|
{
|
2021-10-15 12:34:59 +03:00
|
|
|
$stdout = [];
|
|
|
|
exec($this->command, $stdout, $result);
|
|
|
|
|
|
|
|
return implode(PHP_EOL, $stdout);
|
2020-06-07 19:04:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function start(): string
|
|
|
|
{
|
2021-10-15 12:34:59 +03:00
|
|
|
system("nohup " . $this->command . " > /dev/null 2>/dev/null &");
|
2020-06-07 19:04:43 +03:00
|
|
|
|
|
|
|
return $this->command;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|