2025-09-09 10:52:19 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Actions\Proxy;
|
|
|
|
|
|
|
|
|
|
use App\Models\Server;
|
|
|
|
|
use App\Services\ProxyDashboardCacheService;
|
2026-03-11 13:11:31 +00:00
|
|
|
use Illuminate\Support\Facades\Log;
|
2025-09-09 10:52:19 +00:00
|
|
|
use Lorisleiva\Actions\Concerns\AsAction;
|
|
|
|
|
|
|
|
|
|
class GetProxyConfiguration
|
|
|
|
|
{
|
|
|
|
|
use AsAction;
|
|
|
|
|
|
|
|
|
|
public function handle(Server $server, bool $forceRegenerate = false): string
|
|
|
|
|
{
|
|
|
|
|
$proxyType = $server->proxyType();
|
|
|
|
|
if ($proxyType === 'NONE') {
|
|
|
|
|
return 'OK';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$proxy_configuration = null;
|
|
|
|
|
|
|
|
|
|
if (! $forceRegenerate) {
|
2026-03-11 13:11:31 +00:00
|
|
|
// Primary source: database
|
|
|
|
|
$proxy_configuration = $server->proxy->get('last_saved_proxy_configuration');
|
|
|
|
|
|
|
|
|
|
// Backfill: existing servers may not have DB config yet — read from disk once
|
|
|
|
|
if (empty(trim($proxy_configuration ?? ''))) {
|
|
|
|
|
$proxy_configuration = $this->backfillFromDisk($server);
|
|
|
|
|
}
|
2025-09-09 10:52:19 +00:00
|
|
|
}
|
|
|
|
|
|
2026-03-11 13:11:31 +00:00
|
|
|
// Generate default configuration as last resort
|
2025-09-09 10:52:19 +00:00
|
|
|
if ($forceRegenerate || empty(trim($proxy_configuration ?? ''))) {
|
2025-10-07 09:11:13 +00:00
|
|
|
$custom_commands = [];
|
|
|
|
|
if (! empty(trim($proxy_configuration ?? ''))) {
|
|
|
|
|
$custom_commands = extractCustomProxyCommands($server, $proxy_configuration);
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-11 13:11:31 +00:00
|
|
|
Log::warning('Proxy configuration regenerated to defaults', [
|
|
|
|
|
'server_id' => $server->id,
|
|
|
|
|
'server_name' => $server->name,
|
|
|
|
|
'reason' => $forceRegenerate ? 'force_regenerate' : 'config_not_found',
|
|
|
|
|
]);
|
|
|
|
|
|
2025-10-07 09:11:13 +00:00
|
|
|
$proxy_configuration = str(generateDefaultProxyConfiguration($server, $custom_commands))->trim()->value();
|
2025-09-09 10:52:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (empty($proxy_configuration)) {
|
|
|
|
|
throw new \Exception('Could not get or generate proxy configuration');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProxyDashboardCacheService::isTraefikDashboardAvailableFromConfiguration($server, $proxy_configuration);
|
|
|
|
|
|
|
|
|
|
return $proxy_configuration;
|
|
|
|
|
}
|
2026-03-11 13:11:31 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Backfill: read config from disk for servers that predate DB storage.
|
|
|
|
|
* Stores the result in the database so future reads skip SSH entirely.
|
|
|
|
|
*/
|
|
|
|
|
private function backfillFromDisk(Server $server): ?string
|
|
|
|
|
{
|
|
|
|
|
$proxy_path = $server->proxyPath();
|
|
|
|
|
$result = instant_remote_process([
|
|
|
|
|
"mkdir -p $proxy_path",
|
|
|
|
|
"cat $proxy_path/docker-compose.yml 2>/dev/null",
|
|
|
|
|
], $server, false);
|
|
|
|
|
|
|
|
|
|
if (! empty(trim($result ?? ''))) {
|
|
|
|
|
$server->proxy->last_saved_proxy_configuration = $result;
|
|
|
|
|
$server->save();
|
|
|
|
|
|
|
|
|
|
Log::info('Proxy config backfilled to database from disk', [
|
|
|
|
|
'server_id' => $server->id,
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2025-09-09 10:52:19 +00:00
|
|
|
}
|