25 lines
635 B
PHP
25 lines
635 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Actions\Proxy;
|
||
|
|
||
|
use App\Enums\ActivityTypes;
|
||
|
use App\Enums\ProxyTypes;
|
||
|
use App\Models\Server;
|
||
|
use Spatie\Activitylog\Models\Activity;
|
||
|
use Symfony\Component\Yaml\Yaml;
|
||
|
|
||
|
class CheckProxySettingsInSync
|
||
|
{
|
||
|
public function __invoke(Server $server)
|
||
|
{
|
||
|
// @TODO What is the mechanism to make sure setting in sync?
|
||
|
$folder_name = match ($server->extra_attributes->proxy) {
|
||
|
ProxyTypes::TRAEFIK_V2->value => 'proxy',
|
||
|
};
|
||
|
|
||
|
return instantRemoteProcess([
|
||
|
'if [ -d "projects/'.$folder_name.'" ]; then echo "true"; else echo "false"; fi',
|
||
|
], $server);
|
||
|
}
|
||
|
}
|