koel/app/Http/Streamers/S3Streamer.php
2016-08-03 18:42:11 +08:00

16 lines
391 B
PHP

<?php
namespace App\Http\Streamers;
class S3Streamer extends Streamer implements StreamerInterface
{
/**
* Stream the current song through S3.
* Actually, we only redirect to the S3 object's location.
*/
public function stream()
{
// Get and redirect to the actual presigned-url
return redirect($this->song->getObjectStoragePublicUrl());
}
}