mirror of
https://github.com/coollabsio/coolify.git
synced 2026-03-11 08:55:47 +00:00
Add runner execution observability and lifecycle hardening for self-hosted GitHub Actions runners, including: - scheduled artifact cleanup job for cached runner tarballs/templates - workflow_job in_progress handling to mark executions as running - safer cleanup failure handling and non-functional server fallback - persisted workflow job HTML URLs with execution "Open" links in UI - configurable runner group name sync (UI + provisioning + GitHub API) - webhook events persistence and auto-fix for missing required events - strict enum/status checks and related model cast/query improvements Also includes migrations and expanded feature/unit coverage for webhook, provisioning, cleanup, and runner group/event sync behaviors.
86 lines
2.9 KiB
PHP
86 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Models\GithubApp;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldBeEncrypted;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\Http;
|
|
|
|
class GithubAppPermissionJob implements ShouldBeEncrypted, ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
public $tries = 4;
|
|
|
|
public function backoff(): int
|
|
{
|
|
return isDev() ? 1 : 3;
|
|
}
|
|
|
|
public function __construct(public GithubApp $github_app) {}
|
|
|
|
public function handle()
|
|
{
|
|
try {
|
|
$github_access_token = generateGithubJwt($this->github_app);
|
|
|
|
$response = Http::withHeaders([
|
|
'Authorization' => "Bearer $github_access_token",
|
|
'Accept' => 'application/vnd.github+json',
|
|
])->get("{$this->github_app->api_url}/app");
|
|
|
|
if (! $response->successful()) {
|
|
throw new \RuntimeException('Failed to fetch GitHub app permissions: '.$response->body());
|
|
}
|
|
|
|
$response = $response->json();
|
|
$permissions = data_get($response, 'permissions');
|
|
|
|
$this->github_app->contents = data_get($permissions, 'contents');
|
|
$this->github_app->metadata = data_get($permissions, 'metadata');
|
|
$this->github_app->pull_requests = data_get($permissions, 'pull_requests');
|
|
$this->github_app->administration = data_get($permissions, 'administration');
|
|
$this->github_app->organization_self_hosted_runners = data_get($permissions, 'organization_self_hosted_runners');
|
|
$this->github_app->webhook_events = data_get($response, 'events', []);
|
|
|
|
$this->github_app->save();
|
|
|
|
$this->autoFixMissingEvents($github_access_token);
|
|
$this->github_app->makeVisible('client_secret')->makeVisible('webhook_secret');
|
|
|
|
} catch (\Throwable $e) {
|
|
send_internal_notification('GithubAppPermissionJob failed with: '.$e->getMessage());
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
private function autoFixMissingEvents(string $github_access_token): void
|
|
{
|
|
$missing = $this->github_app->missingWebhookEvents();
|
|
|
|
if (empty($missing)) {
|
|
return;
|
|
}
|
|
|
|
$updatedEvents = array_values(array_unique(
|
|
array_merge($this->github_app->webhook_events ?? [], $missing)
|
|
));
|
|
|
|
$response = Http::withHeaders([
|
|
'Authorization' => "Bearer $github_access_token",
|
|
'Accept' => 'application/vnd.github+json',
|
|
])->patch("{$this->github_app->api_url}/app", [
|
|
'events' => $updatedEvents,
|
|
]);
|
|
|
|
if ($response->successful()) {
|
|
$this->github_app->webhook_events = data_get($response->json(), 'events', $updatedEvents);
|
|
$this->github_app->save();
|
|
}
|
|
}
|
|
}
|