mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-03 19:24:59 +02:00
51 lines
1.4 KiB
PHP
51 lines
1.4 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repositories\Storage\Wiki;
|
|
|
|
use App\Constants\Config\AudioConstants;
|
|
use App\Models\Wiki\Audio;
|
|
use App\Repositories\Storage\StorageRepository;
|
|
use Closure;
|
|
use Illuminate\Support\Facades\Config;
|
|
use Illuminate\Support\Facades\File;
|
|
use League\Flysystem\StorageAttributes;
|
|
|
|
/**
|
|
* @extends StorageRepository<Audio>
|
|
*/
|
|
class AudioRepository extends StorageRepository
|
|
{
|
|
public function disk(): string
|
|
{
|
|
return Config::get(AudioConstants::DEFAULT_DISK_QUALIFIED);
|
|
}
|
|
|
|
/**
|
|
* Return the callback to filter filesystem contents.
|
|
*
|
|
* @return Closure(StorageAttributes): bool
|
|
*/
|
|
protected function filterCallback(): Closure
|
|
{
|
|
return fn (StorageAttributes $file): bool => $file->isFile() && File::extension($file->path()) === 'ogg';
|
|
}
|
|
|
|
/**
|
|
* Map filesystem files to model.
|
|
*
|
|
* @return Closure(StorageAttributes): Audio
|
|
*/
|
|
protected function mapCallback(): Closure
|
|
{
|
|
return fn (StorageAttributes $file): Audio => new Audio([
|
|
Audio::ATTRIBUTE_BASENAME => File::basename($file->path()),
|
|
Audio::ATTRIBUTE_FILENAME => File::name($file->path()),
|
|
Audio::ATTRIBUTE_MIMETYPE => File::mimeType($file->path()),
|
|
Audio::ATTRIBUTE_PATH => $file->path(),
|
|
Audio::ATTRIBUTE_SIZE => $file->offsetGet(StorageAttributes::ATTRIBUTE_FILE_SIZE),
|
|
]);
|
|
}
|
|
}
|