2024-06-21 14:46:13 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Api;
|
|
|
|
|
|
|
|
use App\Actions\Application\StopApplication;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
use App\Models\Application;
|
|
|
|
use App\Models\Project;
|
|
|
|
use Illuminate\Http\Request;
|
2024-06-25 13:05:51 +00:00
|
|
|
use Illuminate\Support\Facades\Validator;
|
2024-06-21 14:46:13 +00:00
|
|
|
use Visus\Cuid2\Cuid2;
|
|
|
|
|
|
|
|
class Applications extends Controller
|
|
|
|
{
|
|
|
|
public function applications(Request $request)
|
|
|
|
{
|
|
|
|
$teamId = get_team_id_from_token();
|
|
|
|
if (is_null($teamId)) {
|
|
|
|
return invalid_token();
|
|
|
|
}
|
|
|
|
$projects = Project::where('team_id', $teamId)->get();
|
|
|
|
$applications = collect();
|
|
|
|
$applications->push($projects->pluck('applications')->flatten());
|
|
|
|
$applications = $applications->flatten();
|
|
|
|
|
|
|
|
return response()->json($applications);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function application_by_uuid(Request $request)
|
|
|
|
{
|
|
|
|
$teamId = get_team_id_from_token();
|
|
|
|
if (is_null($teamId)) {
|
|
|
|
return invalid_token();
|
|
|
|
}
|
|
|
|
$uuid = $request->route('uuid');
|
|
|
|
if (! $uuid) {
|
|
|
|
return response()->json(['error' => 'UUID is required.'], 400);
|
|
|
|
}
|
|
|
|
$application = Application::where('uuid', $uuid)->first();
|
|
|
|
if (! $application) {
|
|
|
|
return response()->json(['error' => 'Application not found.'], 404);
|
|
|
|
}
|
|
|
|
|
|
|
|
return response()->json($application);
|
|
|
|
}
|
|
|
|
|
2024-06-21 19:35:02 +00:00
|
|
|
public function update_by_uuid(Request $request)
|
|
|
|
{
|
2024-06-25 13:05:51 +00:00
|
|
|
ray()->clearAll();
|
2024-06-21 19:35:02 +00:00
|
|
|
$teamId = get_team_id_from_token();
|
|
|
|
if (is_null($teamId)) {
|
|
|
|
return invalid_token();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($request->collect()->count() == 0) {
|
|
|
|
return response()->json([
|
|
|
|
'message' => 'No data provided.',
|
|
|
|
], 400);
|
|
|
|
}
|
|
|
|
$application = Application::where('uuid', $request->uuid)->first();
|
|
|
|
|
|
|
|
if (! $application) {
|
|
|
|
return response()->json([
|
|
|
|
'success' => false,
|
|
|
|
'message' => 'Application not found',
|
|
|
|
], 404);
|
|
|
|
}
|
2024-06-25 13:05:51 +00:00
|
|
|
$allowedFields = ['name', 'domains'];
|
|
|
|
$validator = Validator::make($request->all(), [
|
|
|
|
'name' => 'string|max:255',
|
|
|
|
'domains' => 'string',
|
|
|
|
]);
|
|
|
|
$extraFields = array_diff(array_keys($request->all()), $allowedFields);
|
|
|
|
if ($validator->fails() || ! empty($extraFields)) {
|
|
|
|
$errors = $validator->errors();
|
|
|
|
if (! empty($extraFields)) {
|
|
|
|
foreach ($extraFields as $field) {
|
|
|
|
$errors->add($field, 'This field is not allowed.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return response()->json([
|
|
|
|
'message' => 'Validation failed',
|
|
|
|
'errors' => $errors,
|
|
|
|
], 422);
|
|
|
|
}
|
2024-06-21 19:35:02 +00:00
|
|
|
|
2024-06-25 13:05:51 +00:00
|
|
|
if ($request->has('domains')) {
|
|
|
|
$fqdn = $request->domains;
|
|
|
|
$fqdn = str($fqdn)->replaceEnd(',', '')->trim();
|
|
|
|
$fqdn = str($fqdn)->replaceStart(',', '')->trim();
|
|
|
|
$errors = [];
|
|
|
|
$fqdn = str($fqdn)->trim()->explode(',')->map(function ($domain) use (&$errors) {
|
|
|
|
if (filter_var($domain, FILTER_VALIDATE_URL) === false) {
|
|
|
|
$errors[] = 'Invalid domain: '.$domain;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return str($domain)->trim()->lower();
|
|
|
|
});
|
|
|
|
if (count($errors) > 0) {
|
|
|
|
return response()->json([
|
|
|
|
'message' => 'Validation failed',
|
|
|
|
'errors' => $errors,
|
|
|
|
], 422);
|
|
|
|
}
|
|
|
|
$fqdn = $fqdn->unique()->implode(',');
|
|
|
|
$application->fqdn = $fqdn;
|
|
|
|
$customLabels = str(implode('|coolify|', generateLabelsApplication($application)))->replace('|coolify|', "\n");
|
|
|
|
$application->custom_labels = base64_encode($customLabels);
|
|
|
|
$request->offsetUnset('domains');
|
|
|
|
}
|
|
|
|
$application->fill($request->all());
|
|
|
|
$application->save();
|
2024-06-21 19:35:02 +00:00
|
|
|
|
|
|
|
return response()->json([
|
|
|
|
'message' => 'Application updated successfully.',
|
2024-06-25 13:05:51 +00:00
|
|
|
'application' => $application,
|
2024-06-21 19:35:02 +00:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2024-06-21 14:46:13 +00:00
|
|
|
public function action_deploy(Request $request)
|
|
|
|
{
|
|
|
|
$teamId = get_team_id_from_token();
|
|
|
|
if (is_null($teamId)) {
|
|
|
|
return invalid_token();
|
|
|
|
}
|
|
|
|
$force = $request->query->get('force') ?? false;
|
|
|
|
$instant_deploy = $request->query->get('instant_deploy') ?? false;
|
|
|
|
$uuid = $request->route('uuid');
|
|
|
|
if (! $uuid) {
|
|
|
|
return response()->json(['error' => 'UUID is required.'], 400);
|
|
|
|
}
|
|
|
|
$application = Application::where('uuid', $uuid)->first();
|
|
|
|
if (! $application) {
|
|
|
|
return response()->json(['error' => 'Application not found.'], 404);
|
|
|
|
}
|
|
|
|
|
|
|
|
$deployment_uuid = new Cuid2(7);
|
|
|
|
|
|
|
|
queue_application_deployment(
|
|
|
|
application: $application,
|
|
|
|
deployment_uuid: $deployment_uuid,
|
|
|
|
force_rebuild: $force,
|
|
|
|
is_api: true,
|
|
|
|
no_questions_asked: $instant_deploy
|
|
|
|
);
|
|
|
|
|
|
|
|
return response()->json(
|
|
|
|
[
|
|
|
|
'message' => 'Deployment request queued.',
|
|
|
|
'deployment_uuid' => $deployment_uuid->toString(),
|
|
|
|
'deployment_api_url' => base_url().'/api/v1/deployment/'.$deployment_uuid->toString(),
|
|
|
|
],
|
|
|
|
200
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function action_stop(Request $request)
|
|
|
|
{
|
|
|
|
$teamId = get_team_id_from_token();
|
|
|
|
if (is_null($teamId)) {
|
|
|
|
return invalid_token();
|
|
|
|
}
|
|
|
|
$uuid = $request->route('uuid');
|
2024-06-21 19:35:02 +00:00
|
|
|
$sync = $request->query->get('sync') ?? false;
|
2024-06-21 14:46:13 +00:00
|
|
|
if (! $uuid) {
|
|
|
|
return response()->json(['error' => 'UUID is required.'], 400);
|
|
|
|
}
|
|
|
|
$application = Application::where('uuid', $uuid)->first();
|
|
|
|
if (! $application) {
|
|
|
|
return response()->json(['error' => 'Application not found.'], 404);
|
|
|
|
}
|
2024-06-21 19:35:02 +00:00
|
|
|
if ($sync) {
|
|
|
|
StopApplication::run($application);
|
2024-06-21 14:46:13 +00:00
|
|
|
|
2024-06-21 19:35:02 +00:00
|
|
|
return response()->json(['message' => 'Stopped the application.'], 200);
|
|
|
|
} else {
|
|
|
|
StopApplication::dispatch($application);
|
|
|
|
|
|
|
|
return response()->json(['message' => 'Stopping request queued.'], 200);
|
|
|
|
}
|
2024-06-21 14:46:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function action_restart(Request $request)
|
|
|
|
{
|
|
|
|
$teamId = get_team_id_from_token();
|
|
|
|
if (is_null($teamId)) {
|
|
|
|
return invalid_token();
|
|
|
|
}
|
|
|
|
$uuid = $request->route('uuid');
|
|
|
|
if (! $uuid) {
|
|
|
|
return response()->json(['error' => 'UUID is required.'], 400);
|
|
|
|
}
|
|
|
|
$application = Application::where('uuid', $uuid)->first();
|
|
|
|
if (! $application) {
|
|
|
|
return response()->json(['error' => 'Application not found.'], 404);
|
|
|
|
}
|
|
|
|
|
|
|
|
$deployment_uuid = new Cuid2(7);
|
|
|
|
|
|
|
|
queue_application_deployment(
|
|
|
|
application: $application,
|
|
|
|
deployment_uuid: $deployment_uuid,
|
|
|
|
restart_only: true,
|
|
|
|
is_api: true,
|
|
|
|
);
|
|
|
|
|
|
|
|
return response()->json(
|
|
|
|
[
|
|
|
|
'message' => 'Restart request queued.',
|
|
|
|
'deployment_uuid' => $deployment_uuid->toString(),
|
|
|
|
'deployment_api_url' => base_url().'/api/v1/deployment/'.$deployment_uuid->toString(),
|
|
|
|
],
|
|
|
|
200
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|