2024-02-02 10:50:28 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
|
|
|
|
use App\Actions\Database\StartMariadb;
|
|
|
|
use App\Actions\Database\StartMongodb;
|
|
|
|
use App\Actions\Database\StartMysql;
|
|
|
|
use App\Actions\Database\StartPostgresql;
|
|
|
|
use App\Actions\Database\StartRedis;
|
|
|
|
use App\Actions\Service\StartService;
|
|
|
|
use App\Http\Controllers\Controller;
|
2024-03-07 11:27:23 +00:00
|
|
|
use App\Models\ApplicationDeploymentQueue;
|
|
|
|
use App\Models\Server;
|
2024-02-02 10:50:28 +00:00
|
|
|
use App\Models\Tag;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Visus\Cuid2\Cuid2;
|
|
|
|
|
2024-02-27 07:03:42 +00:00
|
|
|
class Deploy extends Controller
|
2024-02-02 10:50:28 +00:00
|
|
|
{
|
2024-03-07 11:27:23 +00:00
|
|
|
public function deployments(Request $request) {
|
|
|
|
$teamId = get_team_id_from_token();
|
|
|
|
if (is_null($teamId)) {
|
|
|
|
return invalid_token();
|
|
|
|
}
|
|
|
|
$servers = Server::whereTeamId($teamId)->get();
|
|
|
|
$deployments_per_server = ApplicationDeploymentQueue::whereIn("status", ["in_progress", "queued"])->whereIn("server_id", $servers->pluck("id"))->get([
|
|
|
|
"id",
|
|
|
|
"application_id",
|
|
|
|
"application_name",
|
|
|
|
"deployment_url",
|
|
|
|
"pull_request_id",
|
|
|
|
"server_name",
|
|
|
|
"server_id",
|
|
|
|
"status"
|
|
|
|
])->sortBy('id')->toArray();
|
|
|
|
return response()->json($deployments_per_server, 200);
|
|
|
|
}
|
2024-02-02 10:50:28 +00:00
|
|
|
public function deploy(Request $request)
|
|
|
|
{
|
2024-02-16 20:56:38 +00:00
|
|
|
$teamId = get_team_id_from_token();
|
2024-02-02 10:50:28 +00:00
|
|
|
$uuids = $request->query->get('uuid');
|
|
|
|
$tags = $request->query->get('tag');
|
|
|
|
$force = $request->query->get('force') ?? false;
|
|
|
|
|
|
|
|
if ($uuids && $tags) {
|
|
|
|
return response()->json(['error' => 'You can only use uuid or tag, not both.', 'docs' => 'https://coolify.io/docs/api/deploy-webhook'], 400);
|
|
|
|
}
|
|
|
|
if (is_null($teamId)) {
|
2024-03-07 11:27:23 +00:00
|
|
|
return invalid_token();
|
2024-02-02 10:50:28 +00:00
|
|
|
}
|
|
|
|
if ($tags) {
|
|
|
|
return $this->by_tags($tags, $teamId, $force);
|
|
|
|
} else if ($uuids) {
|
|
|
|
return $this->by_uuids($uuids, $teamId, $force);
|
|
|
|
}
|
|
|
|
return response()->json(['error' => 'You must provide uuid or tag.', 'docs' => 'https://coolify.io/docs/api/deploy-webhook'], 400);
|
|
|
|
}
|
|
|
|
private function by_uuids(string $uuid, int $teamId, bool $force = false)
|
|
|
|
{
|
|
|
|
$uuids = explode(',', $uuid);
|
|
|
|
$uuids = collect(array_filter($uuids));
|
|
|
|
|
|
|
|
if (count($uuids) === 0) {
|
|
|
|
return response()->json(['error' => 'No UUIDs provided.', 'docs' => 'https://coolify.io/docs/api/deploy-webhook'], 400);
|
|
|
|
}
|
|
|
|
$message = collect([]);
|
2024-03-07 11:22:18 +00:00
|
|
|
$deployments = collect();
|
|
|
|
$payload = collect();
|
2024-02-02 10:50:28 +00:00
|
|
|
foreach ($uuids as $uuid) {
|
|
|
|
$resource = getResourceByUuid($uuid, $teamId);
|
|
|
|
if ($resource) {
|
2024-03-07 11:22:18 +00:00
|
|
|
['message' => $return_message, 'deployment_uuid' => $deployment_uuid] = $this->deploy_resource($resource, $force);
|
|
|
|
if ($deployment_uuid) {
|
|
|
|
$deployments->push(['resource_uuid' => $uuid, 'deployment_uuid' => $deployment_uuid->toString()]);
|
|
|
|
}
|
2024-02-02 10:50:28 +00:00
|
|
|
$message = $message->merge($return_message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($message->count() > 0) {
|
2024-03-07 11:22:18 +00:00
|
|
|
$payload->put('message', $message->toArray());
|
|
|
|
if ($deployments->count() > 0) {
|
|
|
|
$payload->put('details', $deployments->toArray());
|
|
|
|
}
|
|
|
|
return response()->json($payload->toArray(), 200);
|
2024-02-02 10:50:28 +00:00
|
|
|
}
|
|
|
|
return response()->json(['error' => "No resources found.", 'docs' => 'https://coolify.io/docs/api/deploy-webhook'], 404);
|
|
|
|
}
|
|
|
|
public function by_tags(string $tags, int $team_id, bool $force = false)
|
|
|
|
{
|
|
|
|
$tags = explode(',', $tags);
|
|
|
|
$tags = collect(array_filter($tags));
|
|
|
|
|
|
|
|
if (count($tags) === 0) {
|
|
|
|
return response()->json(['error' => 'No TAGs provided.', 'docs' => 'https://coolify.io/docs/api/deploy-webhook'], 400);
|
|
|
|
}
|
|
|
|
$message = collect([]);
|
2024-03-07 11:22:18 +00:00
|
|
|
$deployments = collect();
|
|
|
|
$payload = collect();
|
2024-02-02 10:50:28 +00:00
|
|
|
foreach ($tags as $tag) {
|
|
|
|
$found_tag = Tag::where(['name' => $tag, 'team_id' => $team_id])->first();
|
|
|
|
if (!$found_tag) {
|
2024-03-07 11:35:38 +00:00
|
|
|
// $message->push("Tag {$tag} not found.");
|
2024-02-02 10:50:28 +00:00
|
|
|
continue;
|
|
|
|
}
|
2024-02-06 06:21:06 +00:00
|
|
|
$applications = $found_tag->applications()->get();
|
|
|
|
$services = $found_tag->services()->get();
|
2024-02-03 11:39:07 +00:00
|
|
|
if ($applications->count() === 0 && $services->count() === 0) {
|
2024-02-02 10:50:28 +00:00
|
|
|
$message->push("No resources found for tag {$tag}.");
|
|
|
|
continue;
|
|
|
|
}
|
2024-02-03 11:39:07 +00:00
|
|
|
foreach ($applications as $resource) {
|
2024-03-07 11:22:18 +00:00
|
|
|
['message' => $return_message, 'deployment_uuid' => $deployment_uuid] = $this->deploy_resource($resource, $force);
|
|
|
|
if ($deployment_uuid) {
|
|
|
|
$deployments->push(['resource_uuid' => $resource->uuid, 'deployment_uuid' => $deployment_uuid->toString()]);
|
|
|
|
}
|
2024-02-03 11:39:07 +00:00
|
|
|
$message = $message->merge($return_message);
|
|
|
|
}
|
|
|
|
foreach ($services as $resource) {
|
2024-03-07 11:22:18 +00:00
|
|
|
['message' => $return_message] = $this->deploy_resource($resource, $force);
|
2024-02-02 10:50:28 +00:00
|
|
|
$message = $message->merge($return_message);
|
|
|
|
}
|
|
|
|
}
|
2024-03-07 11:35:38 +00:00
|
|
|
ray($message);
|
2024-02-02 10:50:28 +00:00
|
|
|
if ($message->count() > 0) {
|
2024-03-07 11:22:18 +00:00
|
|
|
$payload->put('message', $message->toArray());
|
|
|
|
if ($deployments->count() > 0) {
|
|
|
|
$payload->put('details', $deployments->toArray());
|
|
|
|
}
|
|
|
|
return response()->json($payload->toArray(), 200);
|
2024-02-02 10:50:28 +00:00
|
|
|
}
|
|
|
|
|
2024-03-07 11:35:38 +00:00
|
|
|
return response()->json(['error' => "No resources found with this tag.", 'docs' => 'https://coolify.io/docs/api/deploy-webhook'], 404);
|
2024-02-02 10:50:28 +00:00
|
|
|
}
|
2024-03-07 11:22:18 +00:00
|
|
|
public function deploy_resource($resource, bool $force = false): array
|
2024-02-02 10:50:28 +00:00
|
|
|
{
|
|
|
|
$message = collect([]);
|
2024-02-06 06:19:11 +00:00
|
|
|
if (gettype($resource) !== 'object') {
|
|
|
|
return $message->push("Resource ($resource) not found.");
|
|
|
|
}
|
2024-02-06 06:12:09 +00:00
|
|
|
$type = $resource?->getMorphClass();
|
2024-02-02 10:50:28 +00:00
|
|
|
if ($type === 'App\Models\Application') {
|
2024-03-07 11:22:18 +00:00
|
|
|
$deployment_uuid = new Cuid2(7);
|
2024-02-02 10:50:28 +00:00
|
|
|
queue_application_deployment(
|
|
|
|
application: $resource,
|
2024-03-07 11:22:18 +00:00
|
|
|
deployment_uuid: $deployment_uuid,
|
2024-02-02 10:50:28 +00:00
|
|
|
force_rebuild: $force,
|
|
|
|
);
|
|
|
|
$message->push("Application {$resource->name} deployment queued.");
|
|
|
|
} else if ($type === 'App\Models\StandalonePostgresql') {
|
|
|
|
if (str($resource->status)->startsWith('running')) {
|
|
|
|
$message->push("Database {$resource->name} already running.");
|
|
|
|
}
|
|
|
|
StartPostgresql::run($resource);
|
|
|
|
$resource->update([
|
|
|
|
'started_at' => now(),
|
|
|
|
]);
|
|
|
|
$message->push("Database {$resource->name} started.");
|
|
|
|
} else if ($type === 'App\Models\StandaloneRedis') {
|
|
|
|
if (str($resource->status)->startsWith('running')) {
|
|
|
|
$message->push("Database {$resource->name} already running.");
|
|
|
|
}
|
|
|
|
StartRedis::run($resource);
|
|
|
|
$resource->update([
|
|
|
|
'started_at' => now(),
|
|
|
|
]);
|
|
|
|
$message->push("Database {$resource->name} started.");
|
|
|
|
} else if ($type === 'App\Models\StandaloneMongodb') {
|
|
|
|
if (str($resource->status)->startsWith('running')) {
|
|
|
|
$message->push("Database {$resource->name} already running.");
|
|
|
|
}
|
|
|
|
StartMongodb::run($resource);
|
|
|
|
$resource->update([
|
|
|
|
'started_at' => now(),
|
|
|
|
]);
|
|
|
|
$message->push("Database {$resource->name} started.");
|
|
|
|
} else if ($type === 'App\Models\StandaloneMysql') {
|
|
|
|
if (str($resource->status)->startsWith('running')) {
|
|
|
|
$message->push("Database {$resource->name} already running.");
|
|
|
|
}
|
|
|
|
StartMysql::run($resource);
|
|
|
|
$resource->update([
|
|
|
|
'started_at' => now(),
|
|
|
|
]);
|
|
|
|
$message->push("Database {$resource->name} started.");
|
|
|
|
} else if ($type === 'App\Models\StandaloneMariadb') {
|
|
|
|
if (str($resource->status)->startsWith('running')) {
|
|
|
|
$message->push("Database {$resource->name} already running.");
|
|
|
|
}
|
|
|
|
StartMariadb::run($resource);
|
|
|
|
$resource->update([
|
|
|
|
'started_at' => now(),
|
|
|
|
]);
|
|
|
|
$message->push("Database {$resource->name} started.");
|
|
|
|
} else if ($type === 'App\Models\Service') {
|
|
|
|
StartService::run($resource);
|
|
|
|
$message->push("Service {$resource->name} started. It could take a while, be patient.");
|
|
|
|
}
|
2024-03-07 11:22:18 +00:00
|
|
|
return ['message' => $message, 'deployment_uuid' => $deployment_uuid];
|
2024-02-02 10:50:28 +00:00
|
|
|
}
|
|
|
|
}
|