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

18 lines
455 B
PHP

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