mirror of
https://github.com/koel/koel
synced 2024-11-24 13:13:05 +00:00
18 lines
449 B
PHP
18 lines
449 B
PHP
<?php
|
|
|
|
namespace App\Services\Streamers;
|
|
|
|
class XSendFileStreamer extends Streamer implements StreamerInterface
|
|
{
|
|
/**
|
|
* 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;
|
|
}
|
|
}
|