koel/app/Services/Streamers/XSendFileStreamer.php

19 lines
449 B
PHP
Raw Normal View History

2015-12-13 04:42:28 +00:00
<?php
2017-04-20 11:20:32 +00:00
namespace App\Services\Streamers;
2015-12-13 04:42:28 +00:00
2016-02-02 08:01:47 +00:00
class XSendFileStreamer extends Streamer implements StreamerInterface
2015-12-13 04:42:28 +00:00
{
/**
* 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;
}
}