|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Bone\Mvc\Controller; |
|
4
|
|
|
|
|
5
|
|
|
use League\Route\Http\Exception\NotFoundException; |
|
6
|
|
|
use InvalidArgumentException; |
|
7
|
|
|
use Psr\Http\Message\ResponseInterface; |
|
8
|
|
|
use Psr\Http\Message\ServerRequestInterface; |
|
9
|
|
|
use Zend\Diactoros\Response; |
|
10
|
|
|
use Zend\Diactoros\Stream; |
|
11
|
|
|
|
|
12
|
|
|
class DownloadController |
|
13
|
|
|
{ |
|
14
|
|
|
/** @var string $uploadsDirectory */ |
|
15
|
|
|
private $uploadsDirectory; |
|
16
|
|
|
|
|
17
|
9 |
|
public function __construct(string $uploadsDirectory) |
|
18
|
|
|
{ |
|
19
|
9 |
|
if (!is_dir($uploadsDirectory)) { |
|
20
|
9 |
|
throw new InvalidArgumentException('Directory not found'); |
|
21
|
|
|
} |
|
22
|
|
|
|
|
23
|
|
|
$this->uploadsDirectory = $uploadsDirectory; |
|
24
|
|
|
} |
|
25
|
|
|
|
|
26
|
|
|
/** |
|
27
|
|
|
* @param ServerRequestInterface $request |
|
28
|
|
|
* @param array $args |
|
29
|
|
|
* @return ResponseInterface |
|
30
|
|
|
*/ |
|
31
|
|
|
public function downloadAction(ServerRequestInterface $request, array $args): ResponseInterface |
|
|
|
|
|
|
32
|
|
|
{ |
|
33
|
|
|
$file = $request->getQueryParams()['file']; |
|
34
|
|
|
$path = $this->uploadsDirectory . $file; |
|
35
|
|
|
|
|
36
|
|
|
if (!file_exists($path)) { |
|
37
|
|
|
throw new Exception($path . ' not found.', 404); |
|
38
|
|
|
} |
|
39
|
|
|
|
|
40
|
|
|
// magic_mime module installed? |
|
41
|
|
|
if (function_exists('mime_content_type')) { |
|
42
|
|
|
$mimeType = mime_content_type($path); |
|
43
|
|
|
} else if (function_exists('finfo_file')) { // or fileinfo module installed? |
|
44
|
|
|
$finfo = finfo_open(FILEINFO_MIME); // return mime type |
|
45
|
|
|
$mimeType = finfo_file($finfo, $path); |
|
46
|
|
|
finfo_close($finfo); |
|
47
|
|
|
} |
|
48
|
|
|
|
|
49
|
|
|
$contents = file_get_contents($path); |
|
50
|
|
|
$stream = new Stream('php://memory', 'r+'); |
|
51
|
|
|
$stream->write($contents); |
|
52
|
|
|
$response = new Response(); |
|
53
|
|
|
$response = $response->withBody($stream); |
|
54
|
|
|
$response = $response->withHeader('Content-Type', $mimeType); |
|
|
|
|
|
|
55
|
|
|
|
|
56
|
|
|
return $response; |
|
57
|
|
|
} |
|
58
|
|
|
} |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.