koel/app/Http/Streamers/Streamer.php
2016-02-02 16:01:47 +08:00

39 lines
813 B
PHP

<?php
namespace App\Http\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;
if (!file_exists($this->song->path)) {
abort(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);
}
}