coolify/routes/webhooks.php

268 lines
12 KiB
PHP
Raw Normal View History

2023-05-09 11:33:50 +02:00
<?php
2023-05-09 14:42:10 +02:00
use App\Models\Application;
2023-05-31 11:24:02 +02:00
use App\Models\ApplicationPreview;
2023-05-09 11:33:50 +02:00
use App\Models\PrivateKey;
use App\Models\GithubApp;
2023-07-13 15:07:42 +02:00
use App\Models\Webhook;
2023-07-13 22:03:27 +02:00
use App\Models\User;
use App\Models\Team;
use App\Models\Subscription;
2023-05-09 11:33:50 +02:00
use Illuminate\Support\Facades\Http;
use Illuminate\Support\Facades\Route;
2023-05-09 14:42:10 +02:00
use Illuminate\Support\Str;
use Visus\Cuid2\Cuid2;
2023-05-09 11:33:50 +02:00
Route::get('/source/github/redirect', function () {
try {
$code = request()->get('code');
$state = request()->get('state');
$github_app = GithubApp::where('uuid', $state)->firstOrFail();
$api_url = data_get($github_app, 'api_url');
$data = Http::withBody(null)->accept('application/vnd.github+json')->post("$api_url/app-manifests/$code/conversions")->throw()->json();
$id = data_get($data, 'id');
$slug = data_get($data, 'slug');
$client_id = data_get($data, 'client_id');
$client_secret = data_get($data, 'client_secret');
$private_key = data_get($data, 'pem');
$webhook_secret = data_get($data, 'webhook_secret');
$private_key = PrivateKey::create([
'name' => $slug,
'private_key' => $private_key,
2023-06-19 10:58:00 +02:00
'team_id' => $github_app->team_id,
'is_git_related' => true,
2023-05-09 11:33:50 +02:00
]);
2023-06-19 09:14:09 +02:00
$github_app->name = $slug;
2023-05-09 11:33:50 +02:00
$github_app->app_id = $id;
$github_app->client_id = $client_id;
$github_app->client_secret = $client_secret;
$github_app->webhook_secret = $webhook_secret;
$github_app->private_key_id = $private_key->id;
$github_app->save();
return redirect()->route('source.github.show', ['github_app_uuid' => $github_app->uuid]);
} catch (\Exception $e) {
2023-06-09 15:55:21 +02:00
return general_error_handler(err: $e);
2023-05-09 11:33:50 +02:00
}
});
Route::get('/source/github/install', function () {
try {
$installation_id = request()->get('installation_id');
$source = request()->get('source');
$setup_action = request()->get('setup_action');
$github_app = GithubApp::where('uuid', $source)->firstOrFail();
if ($setup_action === 'install') {
$github_app->installation_id = $installation_id;
$github_app->save();
}
return redirect()->route('source.github.show', ['github_app_uuid' => $github_app->uuid]);
} catch (\Exception $e) {
2023-06-09 15:55:21 +02:00
return general_error_handler(err: $e);
2023-05-09 11:33:50 +02:00
}
});
2023-05-09 14:42:10 +02:00
Route::post('/source/github/events', function () {
try {
$x_github_delivery = request()->header('X-GitHub-Delivery');
$x_github_event = Str::lower(request()->header('X-GitHub-Event'));
$x_github_hook_installation_target_id = request()->header('X-GitHub-Hook-Installation-Target-Id');
2023-06-13 15:37:55 +02:00
$x_hub_signature_256 = Str::after(request()->header('X-Hub-Signature-256'), 'sha256=');
2023-05-09 14:42:10 +02:00
$payload = request()->collect();
if ($x_github_event === 'ping') {
// Just pong
return response('pong');
}
if ($x_github_event === 'installation') {
// Installation handled by setup redirect url. Repositories queried on-demand.
return response('cool');
}
$github_app = GithubApp::where('app_id', $x_github_hook_installation_target_id)->firstOrFail();
2023-06-13 15:37:55 +02:00
$webhook_secret = data_get($github_app, 'webhook_secret');
$hmac = hash_hmac('sha256', request()->getContent(), $webhook_secret);
ray($hmac, $x_hub_signature_256)->blue();
if (config('app.env') !== 'local') {
if (!hash_equals($x_hub_signature_256, $hmac)) {
return response('not cool');
}
}
2023-05-09 14:42:10 +02:00
if ($x_github_event === 'push') {
$id = data_get($payload, 'repository.id');
$branch = data_get($payload, 'ref');
if (Str::isMatch('/refs\/heads\/*/', $branch)) {
$branch = Str::after($branch, 'refs/heads/');
}
2023-05-31 11:24:02 +02:00
ray('Webhook GitHub Push Event: ' . $id . ' with branch: ' . $branch);
2023-05-09 14:42:10 +02:00
}
if ($x_github_event === 'pull_request') {
2023-05-31 11:24:02 +02:00
$action = data_get($payload, 'action');
$id = data_get($payload, 'repository.id');
$pull_request_id = data_get($payload, 'number');
$pull_request_html_url = data_get($payload, 'pull_request.html_url');
$branch = data_get($payload, 'pull_request.head.ref');
$base_branch = data_get($payload, 'pull_request.base.ref');
ray('Webhook GitHub Pull Request Event: ' . $id . ' with branch: ' . $branch . ' and base branch: ' . $base_branch . ' and pull request id: ' . $pull_request_id);
2023-05-09 14:42:10 +02:00
}
if (!$id || !$branch) {
2023-05-31 11:24:02 +02:00
return response('Nothing to do. No id or branch found.');
}
2023-06-13 15:01:11 +02:00
$applications = Application::where('repository_project_id', $id)->whereRelation('source', 'is_public', false);
2023-05-31 11:24:02 +02:00
if ($x_github_event === 'push') {
$applications = $applications->where('git_branch', $branch)->get();
}
if ($x_github_event === 'pull_request') {
$applications = $applications->where('git_branch', $base_branch)->get();
}
if ($applications->isEmpty()) {
return response('Nothing to do. No applications found.');
2023-05-09 14:42:10 +02:00
}
foreach ($applications as $application) {
2023-05-31 11:24:02 +02:00
if ($x_github_event === 'push') {
if ($application->isDeployable()) {
ray('Deploying ' . $application->name . ' with branch ' . $branch);
$deployment_uuid = new Cuid2(7);
queue_application_deployment(
application_id: $application->id,
deployment_uuid: $deployment_uuid,
force_rebuild: false,
is_webhook: true
);
} else {
ray('Deployments disabled for ' . $application->name);
}
}
if ($x_github_event === 'pull_request') {
2023-06-13 11:45:33 +02:00
if ($action === 'opened' || $action === 'synchronize' || $action === 'reopened') {
2023-05-31 11:24:02 +02:00
if ($application->isPRDeployable()) {
$deployment_uuid = new Cuid2(7);
$found = ApplicationPreview::where('application_id', $application->id)->where('pull_request_id', $pull_request_id)->first();
if (!$found) {
ApplicationPreview::create([
'application_id' => $application->id,
'pull_request_id' => $pull_request_id,
'pull_request_html_url' => $pull_request_html_url
]);
}
queue_application_deployment(
application_id: $application->id,
pull_request_id: $pull_request_id,
deployment_uuid: $deployment_uuid,
force_rebuild: false,
is_webhook: true
);
ray('Deploying preview for ' . $application->name . ' with branch ' . $branch . ' and base branch ' . $base_branch . ' and pull request id ' . $pull_request_id);
return response('Preview Deployment queued.');
} else {
ray('Preview deployments disabled for ' . $application->name);
return response('Nothing to do. Preview Deployments disabled.');
}
}
if ($action === 'closed') {
$found = ApplicationPreview::where('application_id', $application->id)->where('pull_request_id', $pull_request_id)->first();
if ($found) {
$found->delete();
$container_name = generate_container_name($application->uuid, $pull_request_id);
ray('Stopping container: ' . $container_name);
remote_process(["docker rm -f $container_name"], $application->destination->server);
return response('Preview Deployment closed.');
}
2023-06-13 11:45:33 +02:00
return response('Nothing to do. No Preview Deployment found');
2023-05-31 11:24:02 +02:00
}
2023-05-10 11:43:49 +02:00
}
2023-05-09 14:42:10 +02:00
}
} catch (\Exception $e) {
2023-06-09 15:55:21 +02:00
return general_error_handler(err: $e);
2023-05-09 14:42:10 +02:00
}
});
2023-07-13 15:07:42 +02:00
2023-07-13 22:03:27 +02:00
if (isCloud()) {
2023-07-14 11:27:08 +02:00
Route::post('/payments/events', function () {
2023-07-13 22:03:27 +02:00
try {
2023-07-14 11:27:08 +02:00
2023-07-13 22:03:27 +02:00
$secret = config('coolify.lemon_squeezy_webhook_secret');
$payload = request()->collect();
$hash = hash_hmac('sha256', $payload, $secret);
$signature = request()->header('X-Signature');
2023-07-13 15:07:42 +02:00
2023-07-13 22:03:27 +02:00
if (!hash_equals($hash, $signature)) {
return response('Invalid signature.', 400);
}
2023-07-13 15:07:42 +02:00
2023-07-13 22:03:27 +02:00
$webhook = Webhook::create([
'type' => 'lemonsqueezy',
'payload' => $payload
]);
$event = data_get($payload, 'meta.event_name');
2023-07-14 11:27:08 +02:00
ray('Subscription event: ' . $event);
2023-07-13 22:03:27 +02:00
$email = data_get($payload, 'data.attributes.user_email');
$team_id = data_get($payload, 'meta.custom_data.team_id');
2023-07-14 11:27:08 +02:00
if (is_null($team_id) || empty($team_id)) {
throw new \Exception('No team_id found in webhook payload.');
}
2023-07-13 22:03:27 +02:00
$subscription_id = data_get($payload, 'data.id');
$order_id = data_get($payload, 'data.attributes.order_id');
$product_id = data_get($payload, 'data.attributes.product_id');
$variant_id = data_get($payload, 'data.attributes.variant_id');
$variant_name = data_get($payload, 'data.attributes.variant_name');
$customer_id = data_get($payload, 'data.attributes.customer_id');
$status = data_get($payload, 'data.attributes.status');
$trial_ends_at = data_get($payload, 'data.attributes.trial_ends_at');
$renews_at = data_get($payload, 'data.attributes.renews_at');
$ends_at = data_get($payload, 'data.attributes.ends_at');
$update_payment_method = data_get($payload, 'data.attributes.urls.update_payment_method');
$team = Team::find($team_id);
$found = $team->members->where('email', $email)->first();
if (!$found->isAdmin()) {
throw new \Exception("User {$email} is not an admin or owner of team {$team->id}.");
}
switch ($event) {
case 'subscription_created':
case 'subscription_updated':
case 'subscription_resumed':
case 'subscription_unpaused':
$subscription = Subscription::updateOrCreate([
'team_id' => $team_id,
], [
2023-07-14 11:27:08 +02:00
'lemon_subscription_id' => $subscription_id,
2023-07-13 22:03:27 +02:00
'lemon_customer_id' => $customer_id,
'lemon_order_id' => $order_id,
'lemon_product_id' => $product_id,
'lemon_variant_id' => $variant_id,
'lemon_status' => $status,
'lemon_variant_name' => $variant_name,
'lemon_trial_ends_at' => $trial_ends_at,
'lemon_renews_at' => $renews_at,
'lemon_ends_at' => $ends_at,
'lemon_update_payment_menthod_url' => $update_payment_method,
]);
break;
case 'subscription_cancelled':
case 'subscription_paused':
case 'subscription_expired':
$subscription = Subscription::where('team_id', $team_id)->where('lemon_order_id', $order_id)->first();
if ($subscription) {
$subscription->update([
'lemon_status' => $status,
'lemon_trial_ends_at' => $trial_ends_at,
'lemon_renews_at' => $renews_at,
'lemon_ends_at' => $ends_at,
'lemon_update_payment_menthod_url' => $update_payment_method,
]);
}
break;
}
$webhook->update([
'status' => 'success',
]);
} catch (\Exception $e) {
ray($e->getMessage());
$webhook->update([
'status' => 'failed',
'failure_reason' => $e->getMessage()
]);
} finally {
return response('OK');
2023-07-13 15:07:42 +02:00
}
2023-07-13 22:03:27 +02:00
});
2023-07-14 11:27:08 +02:00
}