mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
37 lines
821 B
PHP
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);
|
|
}
|
|
}
|