mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
57 lines
1.5 KiB
PHP
57 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Actions\Storage\Admin\Dump;
|
|
|
|
use App\Concerns\Repositories\Admin\ReconcilesDumpRepositories;
|
|
use App\Models\Aggregate\LikeAggregate;
|
|
use App\Models\User\Encode;
|
|
use App\Models\User\Like;
|
|
use App\Models\User\Notification;
|
|
use App\Models\User\Report;
|
|
use App\Models\User\Report\ReportStep;
|
|
use Illuminate\Support\Facades\Date;
|
|
use Illuminate\Support\Facades\Storage;
|
|
use Illuminate\Support\Str;
|
|
|
|
class DumpUserAction extends DumpAction
|
|
{
|
|
use ReconcilesDumpRepositories;
|
|
|
|
final public const FILENAME_PREFIX = 'animethemes-db-dump-user-';
|
|
|
|
/**
|
|
* The list of tables to include in the dump.
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function allowedTables(): array
|
|
{
|
|
return [
|
|
Encode::TABLE,
|
|
Like::TABLE,
|
|
LikeAggregate::TABLE,
|
|
Notification::TABLE,
|
|
Report::TABLE,
|
|
ReportStep::TABLE,
|
|
];
|
|
}
|
|
|
|
/**
|
|
* The temporary path for the database dump.
|
|
* Note: The dumper library does not support writing to disk, so we have to write to the local filesystem first.
|
|
* Pattern: "animethemes-db-dump-user-{milliseconds from epoch}.sql".
|
|
*/
|
|
protected function getDumpFile(): string
|
|
{
|
|
$filesystem = Storage::disk('local');
|
|
|
|
return Str::of($filesystem->path(''))
|
|
->append(DumpUserAction::FILENAME_PREFIX)
|
|
->append(strval(Date::now()->valueOf()))
|
|
->append('.sql')
|
|
->__toString();
|
|
}
|
|
}
|