koel/app/Services/Streamers/Streamer.php
2017-04-20 19:20:32 +08:00

37 lines
821 B
PHP

<?php
namespace App\Services\Streamers;
use App\Models\Song;
class Streamer
{
/**
* @var Song|string
*/
protected $song;
/**
* @var string
*/
protected $contentType;
/**
* BaseStreamer constructor.
*
* @param $song Song
*/
public function __construct(Song $song)
{
$this->song = $song;
abort_unless($this->song->s3_params || file_exists($this->song->path), 404);
// Hard code the content type instead of relying on PHP's fileinfo()
// or even Symfony's MIMETypeGuesser, since they appear to be wrong sometimes.
$this->contentType = 'audio/'.pathinfo($this->song->path, PATHINFO_EXTENSION);
// Turn off error reporting to make sure our stream isn't interfered.
@error_reporting(0);
}
}