koel/app/Services/Streamers/S3Streamer.php
2018-08-22 19:59:14 +02:00

16 lines
408 B
PHP

<?php
namespace App\Services\Streamers;
class S3Streamer extends Streamer implements ObjectStorageStreamerInterface
{
/**
* 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());
}
}