coolify/app/Console/Commands/SyncBunny.php

90 lines
3.5 KiB
PHP
Raw Normal View History

2023-04-28 13:50:27 +02:00
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use Illuminate\Http\Client\PendingRequest;
use Illuminate\Support\Facades\Http;
use Illuminate\Http\Client\Pool;
2023-04-28 15:22:36 +02:00
class SyncBunny extends Command
2023-04-28 13:50:27 +02:00
{
/**
* The name and signature of the console command.
*
* @var string
*/
2023-04-28 15:22:36 +02:00
protected $signature = 'sync:bunny';
2023-04-28 13:50:27 +02:00
/**
* The console command description.
*
* @var string
*/
2023-04-28 15:22:36 +02:00
protected $description = 'Sync files to BunnyCDN';
2023-04-28 13:50:27 +02:00
/**
* Execute the console command.
*/
public function handle()
{
2023-06-06 09:22:48 +02:00
$bunny_cdn = "https://cdn.coollabs.io";
$bunny_cdn_path = "coolify";
$bunny_cdn_storage_name = "coolcdn";
2023-04-28 13:50:27 +02:00
$parent_dir = realpath(dirname(__FILE__) . '/../../..');
$compose_file = "docker-compose.yml";
$compose_file_prod = "docker-compose.prod.yml";
2023-05-10 09:56:12 +02:00
$install_script = "install.sh";
2023-04-28 13:50:27 +02:00
$upgrade_script = "upgrade.sh";
$production_env = ".env.production";
2023-05-11 15:28:34 +02:00
$versions = "versions.json";
2023-04-28 13:50:27 +02:00
PendingRequest::macro('storage', function ($file) {
$headers = [
'AccessKey' => env('BUNNY_STORAGE_API_KEY'),
'Accept' => 'application/json',
'Content-Type' => 'application/octet-stream'
];
$fileStream = fopen($file, "r");
$file = fread($fileStream, filesize($file));
return PendingRequest::baseUrl('https://storage.bunnycdn.com')->withHeaders($headers)->withBody($file)->throw();
});
2023-05-10 09:56:12 +02:00
PendingRequest::macro('purge', function ($url) {
$headers = [
'AccessKey' => env('BUNNY_API_KEY'),
'Accept' => 'application/json',
];
2023-06-06 09:22:48 +02:00
ray('Purging: ' . $url);
return PendingRequest::withHeaders($headers)->get('https://api.bunny.net/purge', [
"url" => $url,
"async" => false
]);
2023-05-10 09:56:12 +02:00
});
2023-04-28 13:50:27 +02:00
try {
Http::pool(fn (Pool $pool) => [
$pool->storage(file: "$parent_dir/$compose_file")->put("/$bunny_cdn_storage_name/$bunny_cdn_path/$compose_file"),
$pool->storage(file: "$parent_dir/$compose_file_prod")->put("/$bunny_cdn_storage_name/$bunny_cdn_path/$compose_file_prod"),
$pool->storage(file: "$parent_dir/$production_env")->put("/$bunny_cdn_storage_name/$bunny_cdn_path/$production_env"),
2023-05-03 09:57:06 +02:00
$pool->storage(file: "$parent_dir/scripts/$upgrade_script")->put("/$bunny_cdn_storage_name/$bunny_cdn_path/$upgrade_script"),
2023-05-10 09:56:12 +02:00
$pool->storage(file: "$parent_dir/scripts/$install_script")->put("/$bunny_cdn_storage_name/$bunny_cdn_path/$install_script"),
2023-06-06 09:22:48 +02:00
$pool->storage(file: "$parent_dir/$versions")->put("/$bunny_cdn_storage_name/$bunny_cdn_path/$versions"),
]);
ray("{$bunny_cdn}/{$bunny_cdn_path}");
Http::pool(fn (Pool $pool) => [
$pool->purge("$bunny_cdn/$bunny_cdn_path/$compose_file"),
$pool->purge("$bunny_cdn/$bunny_cdn_path/$compose_file_prod"),
$pool->purge("$bunny_cdn/$bunny_cdn_path/$production_env"),
$pool->purge("$bunny_cdn/$bunny_cdn_path/$upgrade_script"),
$pool->purge("$bunny_cdn/$bunny_cdn_path/$install_script"),
2023-06-06 09:47:03 +02:00
$pool->purge("$bunny_cdn/$bunny_cdn_path/$versions"),
2023-04-28 13:50:27 +02:00
]);
2023-05-10 09:56:12 +02:00
echo "All files uploaded & purged...\n";
2023-04-28 13:50:27 +02:00
} catch (\Exception $e) {
echo $e->getMessage();
}
}
}