blob: fbdb04b02df521b1435e9e333ef847b3a11989b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?php
/*
* Copyright 2013 Pierre Schmitz <pierre@archlinux.de>
*
* Licensed under AGPLv3
* (see COPYING for full license text)
*
*/
class Ddownload_lighttpd extends Ddownload_Driver {
public function serveFile($file, $filename, $type)
{
$CI =& get_instance();
$upload_path = $CI->config->item('upload_path');
if (strpos($file, $upload_path) !== 0) {
throw new \exceptions\ApiException("libraries/ddownload/lighttpd/invalid-file-path", 'Invalid file path');
}
header('Content-disposition: inline; filename="'.$filename."\"\n");
header('Content-Type: '.$type."\n");
header('X-Sendfile: '.$file."\n");
}
}
|