140 lines
4.1 KiB
PHP
140 lines
4.1 KiB
PHP
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Domains\Attachable\Services\AttachmentService;
|
|
use App\Domains\Tenant\Models\Tenant;
|
|
use App\Domains\Tenant\Services\TenantService;
|
|
use Illuminate\Database\Seeder;
|
|
use Illuminate\Http\UploadedFile;
|
|
use RuntimeException;
|
|
use Throwable;
|
|
|
|
class TenantSeeder extends Seeder
|
|
{
|
|
private const SOCIAL_MEDIA = [
|
|
[
|
|
'code' => 'instagram',
|
|
'url' => 'https://www.instagram.com/sonderargentina/',
|
|
'orden' => 0,
|
|
],
|
|
[
|
|
'code' => 'facebook',
|
|
'url' => 'https://www.facebook.com/SonderArgentina/',
|
|
'orden' => 1,
|
|
],
|
|
[
|
|
'code' => 'linkedin',
|
|
'url' => 'https://www.linkedin.com/company/35664983/',
|
|
'orden' => 2,
|
|
],
|
|
[
|
|
'code' => 'whatsapp',
|
|
'url' => 'https://wa.me/5493412602222',
|
|
'orden' => 3,
|
|
],
|
|
];
|
|
|
|
public function __construct(protected TenantService $tenantService) {}
|
|
|
|
public function run(): void
|
|
{
|
|
$this->deleteTenant('sonder');
|
|
|
|
Tenant::query()
|
|
->where('dominio', 'localhost')
|
|
->delete();
|
|
|
|
$this->tenantService->create([
|
|
'codigo' => 'sonder',
|
|
'nombre' => 'Sonder',
|
|
'dominio' => 'localhost',
|
|
'primary_color' => '#6376F3',
|
|
'secondary_color' => '#A0A0A0',
|
|
'danger_color' => '#FF8888',
|
|
'success_color' => '#198754',
|
|
'header_bg_color' => '#ffffff',
|
|
'footer_bg_color' => '#313131',
|
|
'header_logo' => $this->uploadedImage('images/sonder_header.png', 'sonder_header.png'),
|
|
'footer_logo' => $this->uploadedImage('images/sonder_footer.png', 'sonder_footer.png'),
|
|
'social_media' => self::SOCIAL_MEDIA,
|
|
]);
|
|
|
|
$this->deleteTenant('fiesta_futbol_infantil');
|
|
|
|
$fiestaDomain = 'fiesta-futbol-infantil.localhost';
|
|
Tenant::query()
|
|
->where('dominio', $fiestaDomain)
|
|
->delete();
|
|
|
|
$this->tenantService->create([
|
|
'codigo' => 'fiesta_futbol_infantil',
|
|
'nombre' => 'Fiesta Fútbol Infantil',
|
|
'dominio' => $fiestaDomain,
|
|
'primary_color' => '#00973F',
|
|
'secondary_color' => '#A0A0A0',
|
|
'danger_color' => '#FF8888',
|
|
'success_color' => '#198754',
|
|
'header_bg_color' => '#ffffff',
|
|
'footer_bg_color' => '#015327',
|
|
'header_logo' => $this->uploadedImage(
|
|
'images/futbol_infantil_header.png',
|
|
'futbol_infantil_header.png',
|
|
),
|
|
'footer_logo' => $this->uploadedImage(
|
|
'images/futbol_infantil_footer.png',
|
|
'futbol_infantil_footer.png',
|
|
),
|
|
'social_media' => self::SOCIAL_MEDIA,
|
|
]);
|
|
}
|
|
|
|
private function deleteTenant(string $codigo): void
|
|
{
|
|
$tenant = Tenant::query()
|
|
->where('codigo', $codigo)
|
|
->first();
|
|
|
|
if ($tenant === null) {
|
|
return;
|
|
}
|
|
|
|
$attachmentService = app(AttachmentService::class);
|
|
|
|
if ($tenant->headerLogo) {
|
|
try {
|
|
$attachmentService->delete($tenant->headerLogo);
|
|
} catch (Throwable) {
|
|
// Ignore cleanup errors while recreating demo data.
|
|
}
|
|
}
|
|
|
|
if ($tenant->footerLogo && $tenant->footer_logo_id !== $tenant->header_logo_id) {
|
|
try {
|
|
$attachmentService->delete($tenant->footerLogo);
|
|
} catch (Throwable) {
|
|
// Ignore cleanup errors while recreating demo data.
|
|
}
|
|
}
|
|
|
|
$tenant->delete();
|
|
}
|
|
|
|
private function uploadedImage(string $relativePath, string $filename): UploadedFile
|
|
{
|
|
$path = public_path($relativePath);
|
|
|
|
if (! file_exists($path)) {
|
|
throw new RuntimeException("Image not found at path: {$path}");
|
|
}
|
|
|
|
return new UploadedFile(
|
|
$path,
|
|
$filename,
|
|
'image/png',
|
|
null,
|
|
true,
|
|
);
|
|
}
|
|
}
|