koel/app/Http/Streamers/XSendFileStreamer.php
2015-12-27 20:29:03 +07:00

25 lines
564 B
PHP

<?php
namespace App\Http\Streamers;
use App\Models\Song;
class XSendFileStreamer extends BaseStreamer implements StreamerInterface
{
public function __construct(Song $song)
{
parent::__construct($song);
}
/**
* Stream the current song using Apache's x_sendfile module.
*/
public function stream()
{
header("X-Sendfile: {$this->song->path}");
header("Content-Type: {$this->contentType}");
header('Content-Disposition: inline; filename="'.basename($this->song->path).'"');
exit;
}
}