Deploy Ladill Merchant / deploy (push) Successful in 29s
Customers can connect their own domain to a merchant page (storefront/event): add a domain, point an A record (apex + www) to the app server, click Verify — DNS is checked, then Ladill Domains' central SSL service issues + installs the Let's Encrypt cert and calls back to flip it live. The custom domain then serves the mapped page (host resolution on /). Feature-gated: only active when a Domains SSL API key is set, so this deploy is inert until wired. - custom_domains table + CustomDomain model - CustomDomainService (DNS verify, request cert), DomainsSslClient, DnsResolver - settings UI panel, signed SSL callback receiver, host resolution on / - feature tests (DNS verify/fail, signed callback, ownership) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
53 lines
1.6 KiB
PHP
53 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Services\CustomDomain;
|
|
|
|
use Illuminate\Support\Facades\Http;
|
|
use Illuminate\Support\Facades\Log;
|
|
|
|
/**
|
|
* Thin client for Ladill Domains' central SSL API. Requests/queries certificates
|
|
* for a custom domain on the shared app server (target = app).
|
|
*/
|
|
class DomainsSslClient
|
|
{
|
|
public function configured(): bool
|
|
{
|
|
return (string) config('customdomain.ssl_api_key', '') !== '';
|
|
}
|
|
|
|
/**
|
|
* Ask Domains to issue + install a certificate for $host, calling back when done.
|
|
*/
|
|
public function requestCertificate(string $host, bool $includeWww, string $callbackUrl): bool
|
|
{
|
|
if (! $this->configured()) {
|
|
return false;
|
|
}
|
|
|
|
try {
|
|
$res = Http::withToken((string) config('customdomain.ssl_api_key'))
|
|
->acceptJson()->timeout(20)
|
|
->post(config('customdomain.ssl_api_url').'/ssl/certificates', [
|
|
'host' => $host,
|
|
'target' => 'app',
|
|
'include_www' => $includeWww,
|
|
'callback_url' => $callbackUrl,
|
|
'metadata' => ['nginx_include' => config('customdomain.nginx_include')],
|
|
]);
|
|
|
|
if ($res->failed()) {
|
|
Log::warning('DomainsSslClient: request failed', ['host' => $host, 'status' => $res->status()]);
|
|
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
} catch (\Throwable $e) {
|
|
Log::warning('DomainsSslClient: request error', ['host' => $host, 'error' => $e->getMessage()]);
|
|
|
|
return false;
|
|
}
|
|
}
|
|
}
|