repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Storage/Show.php
app/Livewire/Storage/Show.php
<?php namespace App\Livewire\Storage; use App\Models\S3Storage; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Component; class Show extends Component { use AuthorizesRequests; public $storage = null; public function mount() { $this->storage = S3Storage::ownedByCurre...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Storage/Create.php
app/Livewire/Storage/Create.php
<?php namespace App\Livewire\Storage; use App\Models\S3Storage; use App\Support\ValidationPatterns; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Illuminate\Support\Uri; use Livewire\Component; class Create extends Component { use AuthorizesRequests; public string $name; public string $...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Storage/Form.php
app/Livewire/Storage/Form.php
<?php namespace App\Livewire\Storage; use App\Models\S3Storage; use App\Support\ValidationPatterns; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Illuminate\Support\Facades\DB; use Livewire\Component; class Form extends Component { use AuthorizesRequests; public S3Storage $storage; // E...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Storage/Index.php
app/Livewire/Storage/Index.php
<?php namespace App\Livewire\Storage; use App\Models\S3Storage; use Livewire\Component; class Index extends Component { public $s3; public function mount() { $this->s3 = S3Storage::ownedByCurrentTeam()->get(); } public function render() { return view('livewire.storage.index'...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Terminal/Index.php
app/Livewire/Terminal/Index.php
<?php namespace App\Livewire\Terminal; use App\Models\Server; use Livewire\Attributes\On; use Livewire\Component; class Index extends Component { public $selected_uuid = 'default'; public $servers = []; public $containers = []; public bool $isLoadingContainers = true; public function mount() ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Source/Github/Change.php
app/Livewire/Source/Github/Change.php
<?php namespace App\Livewire\Source\Github; use App\Jobs\GithubAppPermissionJob; use App\Models\GithubApp; use App\Models\PrivateKey; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Illuminate\Support\Facades\Http; use Lcobucci\JWT\Configuration; use Lcobucci\JWT\Signer\Key\InMemory; use Lcobucci\JWT\Si...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Source/Github/Create.php
app/Livewire/Source/Github/Create.php
<?php namespace App\Livewire\Source\Github; use App\Models\GithubApp; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Component; class Create extends Component { use AuthorizesRequests; public string $name; public ?string $organization = null; public string $api_url = 'https...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Swarm.php
app/Livewire/Server/Swarm.php
<?php namespace App\Livewire\Server; use App\Models\Server; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Component; class Swarm extends Component { use AuthorizesRequests; public Server $server; public array $parameters = []; public bool $isSwarmManager; public bool ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Charts.php
app/Livewire/Server/Charts.php
<?php namespace App\Livewire\Server; use App\Models\Server; use Livewire\Component; class Charts extends Component { public Server $server; public $chartId = 'server'; public $data; public $categories; public int $interval = 5; public bool $poll = true; public function mount(string ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Proxy.php
app/Livewire/Server/Proxy.php
<?php namespace App\Livewire\Server; use App\Actions\Proxy\GetProxyConfiguration; use App\Actions\Proxy\SaveProxyConfiguration; use App\Enums\ProxyTypes; use App\Models\Server; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Component; class Proxy extends Component { use AuthorizesRequests...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Navbar.php
app/Livewire/Server/Navbar.php
<?php namespace App\Livewire\Server; use App\Actions\Proxy\CheckProxy; use App\Actions\Proxy\StartProxy; use App\Actions\Proxy\StopProxy; use App\Enums\ProxyTypes; use App\Jobs\RestartProxyJob; use App\Models\Server; use App\Services\ProxyDashboardCacheService; use Illuminate\Foundation\Auth\Access\AuthorizesRequests...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/ValidateAndInstall.php
app/Livewire/Server/ValidateAndInstall.php
<?php namespace App\Livewire\Server; use App\Actions\Proxy\CheckProxy; use App\Actions\Proxy\StartProxy; use App\Events\ServerValidated; use App\Models\Server; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Component; class ValidateAndInstall extends Component { use AuthorizesRequests; ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Advanced.php
app/Livewire/Server/Advanced.php
<?php namespace App\Livewire\Server; use App\Models\Server; use Livewire\Attributes\Validate; use Livewire\Component; class Advanced extends Component { public Server $server; public array $parameters = []; #[Validate(['string'])] public string $serverDiskUsageCheckFrequency = '0 23 * * *'; #[...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Resources.php
app/Livewire/Server/Resources.php
<?php namespace App\Livewire\Server; use App\Models\Server; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Component; class Resources extends Component { use AuthorizesRequests; public ?Server $server = null; public $parameters = []; public array $unmanagedContainers = []; ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/DockerCleanup.php
app/Livewire/Server/DockerCleanup.php
<?php namespace App\Livewire\Server; use App\Jobs\DockerCleanupJob; use App\Models\Server; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Attributes\Validate; use Livewire\Component; class DockerCleanup extends Component { use AuthorizesRequests; public Server $server; public ar...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Show.php
app/Livewire/Server/Show.php
<?php namespace App\Livewire\Server; use App\Actions\Server\StartSentinel; use App\Actions\Server\StopSentinel; use App\Events\ServerReachabilityChanged; use App\Models\CloudProviderToken; use App\Models\Server; use App\Services\HetznerService; use App\Support\ValidationPatterns; use Illuminate\Foundation\Auth\Access...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Sentinel.php
app/Livewire/Server/Sentinel.php
<?php namespace App\Livewire\Server; use App\Actions\Server\StartSentinel; use App\Actions\Server\StopSentinel; use App\Models\Server; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Attributes\Validate; use Livewire\Component; class Sentinel extends Component { use AuthorizesRequests; ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Create.php
app/Livewire/Server/Create.php
<?php namespace App\Livewire\Server; use App\Models\CloudProviderToken; use App\Models\PrivateKey; use App\Models\Team; use Livewire\Component; class Create extends Component { public $private_keys = []; public bool $limit_reached = false; public bool $has_hetzner_tokens = false; public function m...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/LogDrains.php
app/Livewire/Server/LogDrains.php
<?php namespace App\Livewire\Server; use App\Actions\Server\StartLogDrain; use App\Actions\Server\StopLogDrain; use App\Models\Server; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Attributes\Validate; use Livewire\Component; class LogDrains extends Component { use AuthorizesRequests; ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/DockerCleanupExecutions.php
app/Livewire/Server/DockerCleanupExecutions.php
<?php namespace App\Livewire\Server; use App\Models\DockerCleanupExecution; use App\Models\Server; use Illuminate\Support\Collection; use Livewire\Component; class DockerCleanupExecutions extends Component { public Server $server; public Collection $executions; public ?int $selectedKey = null; pub...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Destinations.php
app/Livewire/Server/Destinations.php
<?php namespace App\Livewire\Server; use App\Jobs\ConnectProxyToNetworksJob; use App\Models\Server; use App\Models\StandaloneDocker; use App\Models\SwarmDocker; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Illuminate\Support\Collection; use Livewire\Component; class Destinations extends Component { ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Delete.php
app/Livewire/Server/Delete.php
<?php namespace App\Livewire\Server; use App\Actions\Server\DeleteServer; use App\Models\Server; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Component; class Delete extends Component { use AuthorizesRequests; public Server $server; public bool $delete_from_hetzner = false; ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/CloudflareTunnel.php
app/Livewire/Server/CloudflareTunnel.php
<?php namespace App\Livewire\Server; use App\Actions\Server\ConfigureCloudflared; use App\Models\Server; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Attributes\Validate; use Livewire\Component; class CloudflareTunnel extends Component { use AuthorizesRequests; public Server $serve...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Index.php
app/Livewire/Server/Index.php
<?php namespace App\Livewire\Server; use App\Models\Server; use Illuminate\Database\Eloquent\Collection; use Livewire\Component; class Index extends Component { public ?Collection $servers = null; public function mount() { $this->servers = Server::ownedByCurrentTeamCached(); } public fu...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/New/ByIp.php
app/Livewire/Server/New/ByIp.php
<?php namespace App\Livewire\Server\New; use App\Enums\ProxyTypes; use App\Models\Server; use App\Models\Team; use App\Support\ValidationPatterns; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Attributes\Locked; use Livewire\Component; class ByIp extends Component { use AuthorizesRequest...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/New/ByHetzner.php
app/Livewire/Server/New/ByHetzner.php
<?php namespace App\Livewire\Server\New; use App\Enums\ProxyTypes; use App\Models\CloudInitScript; use App\Models\CloudProviderToken; use App\Models\PrivateKey; use App\Models\Server; use App\Models\Team; use App\Rules\ValidHostname; use App\Services\HetznerService; use Illuminate\Foundation\Auth\Access\AuthorizesReq...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/PrivateKey/Show.php
app/Livewire/Server/PrivateKey/Show.php
<?php namespace App\Livewire\Server\PrivateKey; use App\Models\PrivateKey; use App\Models\Server; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Illuminate\Support\Facades\DB; use Livewire\Component; class Show extends Component { use AuthorizesRequests; public Server $server; public $pr...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/CloudProviderToken/Show.php
app/Livewire/Server/CloudProviderToken/Show.php
<?php namespace App\Livewire\Server\CloudProviderToken; use App\Models\CloudProviderToken; use App\Models\Server; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Component; class Show extends Component { use AuthorizesRequests; public Server $server; public $cloudProviderTokens =...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/CaCertificate/Show.php
app/Livewire/Server/CaCertificate/Show.php
<?php namespace App\Livewire\Server\CaCertificate; use App\Helpers\SslHelper; use App\Jobs\RegenerateSslCertJob; use App\Models\Server; use App\Models\SslCertificate; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Illuminate\Support\Carbon; use Livewire\Attributes\Locked; use Livewire\Component; class...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Security/TerminalAccess.php
app/Livewire/Server/Security/TerminalAccess.php
<?php namespace App\Livewire\Server\Security; use App\Models\Server; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Attributes\Validate; use Livewire\Component; class TerminalAccess extends Component { use AuthorizesRequests; public Server $server; public array $parameters = [];...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Security/Patches.php
app/Livewire/Server/Security/Patches.php
<?php namespace App\Livewire\Server\Security; use App\Actions\Server\CheckUpdates; use App\Actions\Server\UpdatePackage; use App\Events\ServerPackageUpdated; use App\Models\Server; use App\Notifications\Server\ServerPatchCheck; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Component; class P...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Proxy/Logs.php
app/Livewire/Server/Proxy/Logs.php
<?php namespace App\Livewire\Server\Proxy; use App\Models\Server; use Livewire\Component; class Logs extends Component { public ?Server $server = null; public $parameters = []; public function mount() { $this->parameters = get_route_parameters(); try { $this->server = Se...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Proxy/DynamicConfigurationNavbar.php
app/Livewire/Server/Proxy/DynamicConfigurationNavbar.php
<?php namespace App\Livewire\Server\Proxy; use App\Models\Server; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Component; class DynamicConfigurationNavbar extends Component { use AuthorizesRequests; public $server_id; public Server $server; public $fileName = ''; pub...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Proxy/NewDynamicConfiguration.php
app/Livewire/Server/Proxy/NewDynamicConfiguration.php
<?php namespace App\Livewire\Server\Proxy; use App\Enums\ProxyTypes; use App\Models\Server; use App\Rules\ValidProxyConfigFilename; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Component; use Symfony\Component\Yaml\Yaml; class NewDynamicConfiguration extends Component { use AuthorizesRe...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Proxy/Show.php
app/Livewire/Server/Proxy/Show.php
<?php namespace App\Livewire\Server\Proxy; use App\Models\Server; use Livewire\Component; class Show extends Component { public ?Server $server = null; public $parameters = []; public function mount() { $this->parameters = get_route_parameters(); try { $this->server = Se...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Server/Proxy/DynamicConfigurations.php
app/Livewire/Server/Proxy/DynamicConfigurations.php
<?php namespace App\Livewire\Server\Proxy; use App\Models\Server; use Illuminate\Support\Collection; use Livewire\Component; class DynamicConfigurations extends Component { public ?Server $server = null; public $parameters = []; public Collection $contents; public function getListeners() { ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Notifications/Discord.php
app/Livewire/Notifications/Discord.php
<?php namespace App\Livewire\Notifications; use App\Models\DiscordNotificationSettings; use App\Models\Team; use App\Notifications\Test; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Attributes\Validate; use Livewire\Component; class Discord extends Component { use AuthorizesRequests; ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Notifications/Pushover.php
app/Livewire/Notifications/Pushover.php
<?php namespace App\Livewire\Notifications; use App\Models\PushoverNotificationSettings; use App\Models\Team; use App\Notifications\Test; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Attributes\Locked; use Livewire\Attributes\Validate; use Livewire\Component; class Pushover extends Componen...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Notifications/Email.php
app/Livewire/Notifications/Email.php
<?php namespace App\Livewire\Notifications; use App\Models\EmailNotificationSettings; use App\Models\Team; use App\Notifications\Test; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Illuminate\Support\Facades\RateLimiter; use Livewire\Attributes\Locked; use Livewire\Attributes\Validate; use Livewire\Co...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Notifications/Webhook.php
app/Livewire/Notifications/Webhook.php
<?php namespace App\Livewire\Notifications; use App\Models\Team; use App\Models\WebhookNotificationSettings; use App\Notifications\Test; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Attributes\Validate; use Livewire\Component; class Webhook extends Component { use AuthorizesRequests; ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Notifications/Slack.php
app/Livewire/Notifications/Slack.php
<?php namespace App\Livewire\Notifications; use App\Models\SlackNotificationSettings; use App\Models\Team; use App\Notifications\Test; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Attributes\Locked; use Livewire\Attributes\Validate; use Livewire\Component; class Slack extends Component { ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Notifications/Telegram.php
app/Livewire/Notifications/Telegram.php
<?php namespace App\Livewire\Notifications; use App\Models\Team; use App\Models\TelegramNotificationSettings; use App\Notifications\Test; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Attributes\Locked; use Livewire\Attributes\Validate; use Livewire\Component; class Telegram extends Componen...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Boarding/Index.php
app/Livewire/Boarding/Index.php
<?php namespace App\Livewire\Boarding; use App\Enums\ProxyTypes; use App\Models\PrivateKey; use App\Models\Project; use App\Models\Server; use App\Models\Team; use App\Services\ConfigurationRepository; use Illuminate\Support\Collection; use Livewire\Component; use Visus\Cuid2\Cuid2; class Index extends Component { ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/SharedVariables/Index.php
app/Livewire/SharedVariables/Index.php
<?php namespace App\Livewire\SharedVariables; use Livewire\Component; class Index extends Component { public function render() { return view('livewire.shared-variables.index'); } }
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/SharedVariables/Project/Show.php
app/Livewire/SharedVariables/Project/Show.php
<?php namespace App\Livewire\SharedVariables\Project; use App\Models\Project; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Illuminate\Support\Facades\DB; use Livewire\Component; class Show extends Component { use AuthorizesRequests; public Project $project; public string $view = 'norma...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/SharedVariables/Project/Index.php
app/Livewire/SharedVariables/Project/Index.php
<?php namespace App\Livewire\SharedVariables\Project; use App\Models\Project; use Illuminate\Support\Collection; use Livewire\Component; class Index extends Component { public Collection $projects; public function mount() { $this->projects = Project::ownedByCurrentTeamCached(); } public...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/SharedVariables/Team/Index.php
app/Livewire/SharedVariables/Team/Index.php
<?php namespace App\Livewire\SharedVariables\Team; use App\Models\Team; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Illuminate\Support\Facades\DB; use Livewire\Component; class Index extends Component { use AuthorizesRequests; public Team $team; public string $view = 'normal'; pu...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/SharedVariables/Environment/Show.php
app/Livewire/SharedVariables/Environment/Show.php
<?php namespace App\Livewire\SharedVariables\Environment; use App\Models\Application; use App\Models\Project; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Illuminate\Support\Facades\DB; use Livewire\Component; class Show extends Component { use AuthorizesRequests; public Project $project; ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/SharedVariables/Environment/Index.php
app/Livewire/SharedVariables/Environment/Index.php
<?php namespace App\Livewire\SharedVariables\Environment; use App\Models\Project; use Illuminate\Support\Collection; use Livewire\Component; class Index extends Component { public Collection $projects; public function mount() { $this->projects = Project::ownedByCurrentTeamCached(); } pu...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Destination/Show.php
app/Livewire/Destination/Show.php
<?php namespace App\Livewire\Destination; use App\Models\Server; use App\Models\StandaloneDocker; use App\Models\SwarmDocker; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Attributes\Locked; use Livewire\Attributes\Validate; use Livewire\Component; class Show extends Component { use Auth...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Destination/Index.php
app/Livewire/Destination/Index.php
<?php namespace App\Livewire\Destination; use App\Models\Server; use Livewire\Attributes\Locked; use Livewire\Component; class Index extends Component { #[Locked] public $servers; public function mount() { $this->servers = Server::isUsable()->get(); } public function render() { ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Destination/New/Docker.php
app/Livewire/Destination/New/Docker.php
<?php namespace App\Livewire\Destination\New; use App\Models\Server; use App\Models\StandaloneDocker; use App\Models\SwarmDocker; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Attributes\Locked; use Livewire\Attributes\Validate; use Livewire\Component; use Visus\Cuid2\Cuid2; class Docker ext...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Security/ApiTokens.php
app/Livewire/Security/ApiTokens.php
<?php namespace App\Livewire\Security; use App\Models\InstanceSettings; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Laravel\Sanctum\PersonalAccessToken; use Livewire\Component; class ApiTokens extends Component { use AuthorizesRequests; public ?string $description = null; public $toke...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Security/CloudInitScripts.php
app/Livewire/Security/CloudInitScripts.php
<?php namespace App\Livewire\Security; use App\Models\CloudInitScript; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Component; class CloudInitScripts extends Component { use AuthorizesRequests; public $scripts; public function mount() { $this->authorize('viewAny', ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Security/CloudInitScriptForm.php
app/Livewire/Security/CloudInitScriptForm.php
<?php namespace App\Livewire\Security; use App\Models\CloudInitScript; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Component; class CloudInitScriptForm extends Component { use AuthorizesRequests; public bool $modal_mode = true; public ?int $scriptId = null; public string...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Security/CloudTokens.php
app/Livewire/Security/CloudTokens.php
<?php namespace App\Livewire\Security; use Livewire\Component; class CloudTokens extends Component { public function render() { return view('livewire.security.cloud-tokens'); } }
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Security/CloudProviderTokenForm.php
app/Livewire/Security/CloudProviderTokenForm.php
<?php namespace App\Livewire\Security; use App\Models\CloudProviderToken; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Illuminate\Support\Facades\Http; use Livewire\Component; class CloudProviderTokenForm extends Component { use AuthorizesRequests; public bool $modal_mode = false; publ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Security/CloudProviderTokens.php
app/Livewire/Security/CloudProviderTokens.php
<?php namespace App\Livewire\Security; use App\Models\CloudProviderToken; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Component; class CloudProviderTokens extends Component { use AuthorizesRequests; public $tokens; public function mount() { $this->authorize('viewA...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Security/PrivateKey/Show.php
app/Livewire/Security/PrivateKey/Show.php
<?php namespace App\Livewire\Security\PrivateKey; use App\Models\PrivateKey; use App\Support\ValidationPatterns; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Component; class Show extends Component { use AuthorizesRequests; public PrivateKey $private_key; // Explicit propertie...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Security/PrivateKey/Create.php
app/Livewire/Security/PrivateKey/Create.php
<?php namespace App\Livewire\Security\PrivateKey; use App\Models\PrivateKey; use App\Support\ValidationPatterns; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Component; class Create extends Component { use AuthorizesRequests; public string $name = ''; public string $value = ''...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Security/PrivateKey/Index.php
app/Livewire/Security/PrivateKey/Index.php
<?php namespace App\Livewire\Security\PrivateKey; use App\Models\PrivateKey; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Livewire\Component; class Index extends Component { use AuthorizesRequests; public function render() { $privateKeys = PrivateKey::ownedByCurrentTeam(['name',...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Profile/Index.php
app/Livewire/Profile/Index.php
<?php namespace App\Livewire\Profile; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Hash; use Illuminate\Support\Facades\RateLimiter; use Illuminate\Validation\Rules\Password; use Livewire\Attributes\Validate; use Livewire\Component; class Index extends Component { public int $userId; ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Settings/Advanced.php
app/Livewire/Settings/Advanced.php
<?php namespace App\Livewire\Settings; use App\Models\InstanceSettings; use App\Models\Server; use App\Rules\ValidIpOrCidr; use Livewire\Attributes\Validate; use Livewire\Component; class Advanced extends Component { #[Validate('required')] public Server $server; public InstanceSettings $settings; ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Settings/Updates.php
app/Livewire/Settings/Updates.php
<?php namespace App\Livewire\Settings; use App\Jobs\CheckForUpdatesJob; use App\Models\InstanceSettings; use App\Models\Server; use Livewire\Attributes\Validate; use Livewire\Component; class Updates extends Component { public InstanceSettings $settings; public Server $server; #[Validate('string')] ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Livewire/Settings/Index.php
app/Livewire/Settings/Index.php
<?php namespace App\Livewire\Settings; use App\Models\InstanceSettings; use App\Models\Server; use Livewire\Attributes\Computed; use Livewire\Attributes\Validate; use Livewire\Component; class Index extends Component { public InstanceSettings $settings; public Server $server; #[Validate('nullable|strin...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Exceptions/ProcessException.php
app/Exceptions/ProcessException.php
<?php namespace App\Exceptions; use Exception; class ProcessException extends Exception {}
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Exceptions/RateLimitException.php
app/Exceptions/RateLimitException.php
<?php namespace App\Exceptions; use Exception; class RateLimitException extends Exception { public function __construct( string $message = 'Rate limit exceeded.', public readonly ?int $retryAfter = null ) { parent::__construct($message); } }
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Exceptions/Handler.php
app/Exceptions/Handler.php
<?php namespace App\Exceptions; use App\Models\InstanceSettings; use App\Models\User; use Illuminate\Auth\AuthenticationException; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; use RuntimeException; use Sentry\Laravel\Integration; use Sentry\State\Scope; use Throwable; class Handler extends Excep...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Exceptions/DeploymentException.php
app/Exceptions/DeploymentException.php
<?php namespace App\Exceptions; use Exception; /** * Exception for expected deployment failures caused by user/application errors. * These are not Coolify bugs and should not be logged to laravel.log. * Examples: Nixpacks detection failures, missing Dockerfiles, invalid configs, etc. */ class DeploymentException...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Exceptions/NonReportableException.php
app/Exceptions/NonReportableException.php
<?php namespace App\Exceptions; use Exception; /** * Exception that should not be reported to Sentry or other error tracking services. * Use this for known, expected errors that don't require external tracking. */ class NonReportableException extends Exception { /** * Create a new non-reportable exceptio...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Helpers/SslHelper.php
app/Helpers/SslHelper.php
<?php namespace App\Helpers; use App\Models\Server; use App\Models\SslCertificate; use Carbon\CarbonImmutable; class SslHelper { private const DEFAULT_ORGANIZATION_NAME = 'Coolify'; private const DEFAULT_COUNTRY_NAME = 'XX'; private const DEFAULT_STATE_NAME = 'Default'; public static function gene...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Helpers/SshRetryHandler.php
app/Helpers/SshRetryHandler.php
<?php namespace App\Helpers; use App\Traits\SshRetryable; /** * Helper class to use SshRetryable trait in non-class contexts */ class SshRetryHandler { use SshRetryable; /** * Static method to get a singleton instance */ public static function instance(): self { static $instance ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Helpers/SshMultiplexingHelper.php
app/Helpers/SshMultiplexingHelper.php
<?php namespace App\Helpers; use App\Models\PrivateKey; use App\Models\Server; use Illuminate\Support\Facades\Cache; use Illuminate\Support\Facades\Hash; use Illuminate\Support\Facades\Log; use Illuminate\Support\Facades\Process; class SshMultiplexingHelper { public static function serverSshConfiguration(Server ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Kernel.php
app/Http/Kernel.php
<?php namespace App\Http; use Illuminate\Foundation\Http\Kernel as HttpKernel; class Kernel extends HttpKernel { /** * The application's global HTTP middleware stack. * * These middleware are run during every request to your application. * * @var array<int, class-string|string> */ ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/OauthController.php
app/Http/Controllers/OauthController.php
<?php namespace App\Http\Controllers; use App\Models\User; use Illuminate\Support\Facades\Auth; use Symfony\Component\HttpKernel\Exception\HttpException; class OauthController extends Controller { public function redirect(string $provider) { $socialite_provider = get_socialite_provider($provider); ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Controller.php
app/Http/Controllers/Controller.php
<?php namespace App\Http\Controllers; use App\Events\TestEvent; use App\Models\TeamInvitation; use App\Models\User; use App\Providers\RouteServiceProvider; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Illuminate\Foundation\Auth\EmailVerificationRequest; use Illuminate\Foundation\Validation\ValidatesR...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/UploadController.php
app/Http/Controllers/UploadController.php
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use Illuminate\Http\UploadedFile; use Illuminate\Routing\Controller as BaseController; use Pion\Laravel\ChunkUpload\Exceptions\UploadMissingFileException; use Pion\Laravel\ChunkUpload\Handler\HandlerFactory; use Pion\Laravel\ChunkUpload\Receiver\FileR...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Webhook/Gitea.php
app/Http/Controllers/Webhook/Gitea.php
<?php namespace App\Http\Controllers\Webhook; use App\Actions\Application\CleanupPreviewDeployment; use App\Http\Controllers\Controller; use App\Models\Application; use App\Models\ApplicationPreview; use Exception; use Illuminate\Http\Request; use Illuminate\Support\Str; use Visus\Cuid2\Cuid2; class Gitea extends Co...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Webhook/Bitbucket.php
app/Http/Controllers/Webhook/Bitbucket.php
<?php namespace App\Http\Controllers\Webhook; use App\Actions\Application\CleanupPreviewDeployment; use App\Http\Controllers\Controller; use App\Models\Application; use App\Models\ApplicationPreview; use Exception; use Illuminate\Http\Request; use Visus\Cuid2\Cuid2; class Bitbucket extends Controller { public fu...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Webhook/Stripe.php
app/Http/Controllers/Webhook/Stripe.php
<?php namespace App\Http\Controllers\Webhook; use App\Http\Controllers\Controller; use App\Jobs\StripeProcessJob; use Exception; use Illuminate\Http\Request; class Stripe extends Controller { public function events(Request $request) { try { $webhookSecret = config('subscription.stripe_web...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Webhook/Gitlab.php
app/Http/Controllers/Webhook/Gitlab.php
<?php namespace App\Http\Controllers\Webhook; use App\Actions\Application\CleanupPreviewDeployment; use App\Http\Controllers\Controller; use App\Models\Application; use App\Models\ApplicationPreview; use Exception; use Illuminate\Http\Request; use Illuminate\Support\Str; use Visus\Cuid2\Cuid2; class Gitlab extends C...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Webhook/Github.php
app/Http/Controllers/Webhook/Github.php
<?php namespace App\Http\Controllers\Webhook; use App\Actions\Application\CleanupPreviewDeployment; use App\Enums\ProcessStatus; use App\Http\Controllers\Controller; use App\Jobs\ApplicationPullRequestUpdateJob; use App\Jobs\GithubAppPermissionJob; use App\Models\Application; use App\Models\ApplicationPreview; use Ap...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Api/ResourcesController.php
app/Http/Controllers/Api/ResourcesController.php
<?php namespace App\Http\Controllers\Api; use App\Http\Controllers\Controller; use App\Models\Project; use Illuminate\Http\Request; use OpenApi\Attributes as OA; class ResourcesController extends Controller { #[OA\Get( summary: 'List', description: 'Get all resources.', path: '/resources'...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Api/HetznerController.php
app/Http/Controllers/Api/HetznerController.php
<?php namespace App\Http\Controllers\Api; use App\Enums\ProxyTypes; use App\Exceptions\RateLimitException; use App\Http\Controllers\Controller; use App\Models\CloudProviderToken; use App\Models\PrivateKey; use App\Models\Server; use App\Models\Team; use App\Rules\ValidCloudInitYaml; use App\Rules\ValidHostname; use A...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Api/DeployController.php
app/Http/Controllers/Api/DeployController.php
<?php namespace App\Http\Controllers\Api; use App\Actions\Database\StartDatabase; use App\Actions\Service\StartService; use App\Http\Controllers\Controller; use App\Models\Application; use App\Models\ApplicationDeploymentQueue; use App\Models\Server; use App\Models\Service; use App\Models\Tag; use Illuminate\Http\Req...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Api/ApplicationsController.php
app/Http/Controllers/Api/ApplicationsController.php
<?php namespace App\Http\Controllers\Api; use App\Actions\Application\LoadComposeFile; use App\Actions\Application\StopApplication; use App\Actions\Service\StartService; use App\Enums\BuildPackTypes; use App\Http\Controllers\Controller; use App\Jobs\DeleteResourceJob; use App\Models\Application; use App\Models\Enviro...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
true
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Api/OtherController.php
app/Http/Controllers/Api/OtherController.php
<?php namespace App\Http\Controllers\Api; use App\Http\Controllers\Controller; use Illuminate\Http\Request; use Illuminate\Support\Facades\Http; use OpenApi\Attributes as OA; class OtherController extends Controller { #[OA\Get( summary: 'Version', description: 'Get Coolify version.', path...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Api/DatabasesController.php
app/Http/Controllers/Api/DatabasesController.php
<?php namespace App\Http\Controllers\Api; use App\Actions\Database\RestartDatabase; use App\Actions\Database\StartDatabase; use App\Actions\Database\StartDatabaseProxy; use App\Actions\Database\StopDatabase; use App\Actions\Database\StopDatabaseProxy; use App\Enums\NewDatabaseTypes; use App\Http\Controllers\Controlle...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
true
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Api/CloudProviderTokensController.php
app/Http/Controllers/Api/CloudProviderTokensController.php
<?php namespace App\Http\Controllers\Api; use App\Http\Controllers\Controller; use App\Models\CloudProviderToken; use Illuminate\Http\Request; use Illuminate\Support\Facades\Http; use Illuminate\Support\Facades\Log; use OpenApi\Attributes as OA; class CloudProviderTokensController extends Controller { private fu...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Api/TeamController.php
app/Http/Controllers/Api/TeamController.php
<?php namespace App\Http\Controllers\Api; use App\Http\Controllers\Controller; use Illuminate\Http\Request; use OpenApi\Attributes as OA; class TeamController extends Controller { private function removeSensitiveData($team) { $team->makeHidden([ 'custom_server_limit', 'pivot',...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Api/ProjectController.php
app/Http/Controllers/Api/ProjectController.php
<?php namespace App\Http\Controllers\Api; use App\Http\Controllers\Controller; use App\Models\Project; use App\Support\ValidationPatterns; use Illuminate\Http\Request; use Illuminate\Support\Facades\Validator; use OpenApi\Attributes as OA; class ProjectController extends Controller { #[OA\Get( summary: '...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Api/GithubController.php
app/Http/Controllers/Api/GithubController.php
<?php namespace App\Http\Controllers\Api; use App\Http\Controllers\Controller; use App\Models\GithubApp; use App\Models\PrivateKey; use Illuminate\Http\Request; use Illuminate\Support\Facades\Http; use Illuminate\Support\Str; use OpenApi\Attributes as OA; class GithubController extends Controller { private funct...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Api/SecurityController.php
app/Http/Controllers/Api/SecurityController.php
<?php namespace App\Http\Controllers\Api; use App\Http\Controllers\Controller; use App\Models\PrivateKey; use Illuminate\Http\Request; use OpenApi\Attributes as OA; class SecurityController extends Controller { private function removeSensitiveData($team) { if (request()->attributes->get('can_read_sen...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Api/OpenApi.php
app/Http/Controllers/Api/OpenApi.php
<?php namespace App\Http\Controllers\Api; use OpenApi\Attributes as OA; #[OA\Info(title: 'Coolify', version: '0.1')] #[OA\Server(url: 'https://app.coolify.io/api/v1', description: 'Coolify Cloud API. Change the host to your own instance if you are self-hosting.')] #[OA\SecurityScheme( type: 'http', scheme: '...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Api/ServersController.php
app/Http/Controllers/Api/ServersController.php
<?php namespace App\Http\Controllers\Api; use App\Actions\Server\DeleteServer; use App\Actions\Server\ValidateServer; use App\Enums\ProxyStatus; use App\Enums\ProxyTypes; use App\Http\Controllers\Controller; use App\Models\Application; use App\Models\PrivateKey; use App\Models\Project; use App\Models\Server as Models...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Controllers/Api/ServicesController.php
app/Http/Controllers/Api/ServicesController.php
<?php namespace App\Http\Controllers\Api; use App\Actions\Service\RestartService; use App\Actions\Service\StartService; use App\Actions\Service\StopService; use App\Http\Controllers\Controller; use App\Jobs\DeleteResourceJob; use App\Models\EnvironmentVariable; use App\Models\Project; use App\Models\Server; use App\M...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
true
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Middleware/ApiAllowed.php
app/Http/Middleware/ApiAllowed.php
<?php namespace App\Http\Middleware; use Closure; use Illuminate\Http\Request; use Symfony\Component\HttpFoundation\Response; class ApiAllowed { public function handle(Request $request, Closure $next): Response { if (isCloud()) { return $next($request); } $settings = insta...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Middleware/ApiSensitiveData.php
app/Http/Middleware/ApiSensitiveData.php
<?php namespace App\Http\Middleware; use Closure; use Illuminate\Http\Request; class ApiSensitiveData { public function handle(Request $request, Closure $next) { $token = $request->user()->currentAccessToken(); // Allow access to sensitive data if token has root or read:sensitive permission ...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Middleware/DecideWhatToDoWithUser.php
app/Http/Middleware/DecideWhatToDoWithUser.php
<?php namespace App\Http\Middleware; use App\Providers\RouteServiceProvider; use Closure; use Illuminate\Http\Request; use Illuminate\Support\Str; use Symfony\Component\HttpFoundation\Response; class DecideWhatToDoWithUser { public function handle(Request $request, Closure $next): Response { if (auth...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false
coollabsio/coolify
https://github.com/coollabsio/coolify/blob/f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53/app/Http/Middleware/Authenticate.php
app/Http/Middleware/Authenticate.php
<?php namespace App\Http\Middleware; use Illuminate\Auth\Middleware\Authenticate as Middleware; use Illuminate\Http\Request; class Authenticate extends Middleware { /** * Get the path the user should be redirected to when they are not authenticated. */ protected function redirectTo(Request $request...
php
Apache-2.0
f6a59fa2dce9a7cf92b59dbb9fc575c8612aaa53
2026-01-04T15:02:34.115123Z
false