mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-22 19:22:19 +00:00
130 lines
4.0 KiB
PHP
Executable File
130 lines
4.0 KiB
PHP
Executable File
<?php
|
|
|
|
namespace App\Actions\Site;
|
|
|
|
use App\Enums\SiteStatus;
|
|
use App\Exceptions\RepositoryNotFound;
|
|
use App\Exceptions\RepositoryPermissionDenied;
|
|
use App\Exceptions\SourceControlIsNotConnected;
|
|
use App\Facades\Notifier;
|
|
use App\Models\Server;
|
|
use App\Models\Site;
|
|
use App\Notifications\SiteInstallationFailed;
|
|
use App\Notifications\SiteInstallationSucceed;
|
|
use App\ValidationRules\DomainRule;
|
|
use Exception;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Illuminate\Validation\Rule;
|
|
use Illuminate\Validation\ValidationException;
|
|
|
|
class CreateSite
|
|
{
|
|
public function create(Server $server, array $input): Site
|
|
{
|
|
DB::beginTransaction();
|
|
try {
|
|
$site = new Site([
|
|
'server_id' => $server->id,
|
|
'type' => $input['type'],
|
|
'domain' => $input['domain'],
|
|
'aliases' => $input['aliases'] ?? [],
|
|
'path' => '/home/'.$server->getSshUser().'/'.$input['domain'],
|
|
'status' => SiteStatus::INSTALLING,
|
|
]);
|
|
|
|
// fields based on the type
|
|
$site->fill($site->type()->createFields($input));
|
|
|
|
// check has access to repository
|
|
try {
|
|
if ($site->sourceControl) {
|
|
$site->sourceControl?->getRepo($site->repository);
|
|
}
|
|
} catch (SourceControlIsNotConnected) {
|
|
throw ValidationException::withMessages([
|
|
'source_control' => 'Source control is not connected',
|
|
]);
|
|
} catch (RepositoryPermissionDenied) {
|
|
throw ValidationException::withMessages([
|
|
'repository' => 'You do not have permission to access this repository',
|
|
]);
|
|
} catch (RepositoryNotFound) {
|
|
throw ValidationException::withMessages([
|
|
'repository' => 'Repository not found',
|
|
]);
|
|
}
|
|
|
|
// set type data
|
|
$site->type_data = $site->type()->data($input);
|
|
|
|
// save
|
|
$site->save();
|
|
|
|
// create default deployment script
|
|
$site->deploymentScript()->create([
|
|
'name' => 'default',
|
|
'content' => '',
|
|
]);
|
|
|
|
// install site
|
|
dispatch(function () use ($site) {
|
|
$site->type()->install();
|
|
$site->update([
|
|
'status' => SiteStatus::READY,
|
|
'progress' => 100,
|
|
]);
|
|
Notifier::send($site, new SiteInstallationSucceed($site));
|
|
})->catch(function () use ($site) {
|
|
$site->status = SiteStatus::INSTALLATION_FAILED;
|
|
$site->save();
|
|
Notifier::send($site, new SiteInstallationFailed($site));
|
|
})->onConnection('ssh');
|
|
|
|
DB::commit();
|
|
|
|
return $site;
|
|
} catch (Exception $e) {
|
|
DB::rollBack();
|
|
throw ValidationException::withMessages([
|
|
'type' => $e->getMessage(),
|
|
]);
|
|
}
|
|
}
|
|
|
|
public static function rules(Server $server, array $input): array
|
|
{
|
|
$rules = [
|
|
'type' => [
|
|
'required',
|
|
Rule::in(config('core.site_types')),
|
|
],
|
|
'domain' => [
|
|
'required',
|
|
new DomainRule,
|
|
Rule::unique('sites', 'domain')->where(function ($query) use ($server) {
|
|
return $query->where('server_id', $server->id);
|
|
}),
|
|
],
|
|
'aliases.*' => [
|
|
new DomainRule,
|
|
],
|
|
];
|
|
|
|
return array_merge($rules, self::typeRules($server, $input));
|
|
}
|
|
|
|
private static function typeRules(Server $server, array $input): array
|
|
{
|
|
if (! isset($input['type']) || ! in_array($input['type'], config('core.site_types'))) {
|
|
return [];
|
|
}
|
|
|
|
$site = new Site([
|
|
'server_id' => $server->id,
|
|
'type' => $input['type']]
|
|
);
|
|
|
|
return $site->type()->createRules($input);
|
|
}
|
|
}
|