mirror of
https://github.com/koel/koel
synced 2024-12-19 00:53:05 +00:00
20 lines
507 B
PHP
20 lines
507 B
PHP
<?php
|
|
|
|
namespace App\Services\Streamer\Adapters;
|
|
|
|
use App\Models\Song;
|
|
use App\Services\SongStorages\DropboxStorage;
|
|
use Illuminate\Http\RedirectResponse;
|
|
use Illuminate\Routing\Redirector;
|
|
|
|
class DropboxStreamerAdapter implements StreamerAdapter
|
|
{
|
|
public function __construct(private readonly DropboxStorage $storage)
|
|
{
|
|
}
|
|
|
|
public function stream(Song $song, array $config = []): Redirector|RedirectResponse
|
|
{
|
|
return redirect($this->storage->getSongPresignedUrl($song));
|
|
}
|
|
}
|