This repository has been archived by the owner on Feb 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LocalFileResponse.php
75 lines (72 loc) · 2.68 KB
/
LocalFileResponse.php
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
//
// +---------------------------------------------------------------------+
// | CODE INC. SOURCE CODE |
// +---------------------------------------------------------------------+
// | Copyright (c) 2018 - Code Inc. SAS - All Rights Reserved. |
// | Visit https://www.codeinc.fr for more information about licensing. |
// +---------------------------------------------------------------------+
// | NOTICE: All information contained herein is, and remains the |
// | property of Code Inc. SAS. The intellectual and technical concepts |
// | contained herein are proprietary to Code Inc. SAS are protected by |
// | trade secret or copyright law. Dissemination of this information or |
// | reproduction of this material is strictly forbidden unless prior |
// | written permission is obtained from Code Inc. SAS. |
// +---------------------------------------------------------------------+
//
// Author: Joan Fabrégat <[email protected]>
// Date: 08/10/2018
// Project: Psr7Responses
//
declare(strict_types=1);
namespace CodeInc\Psr7Responses;
/**
* Class LocalFileResponse
*
* @package CodeInc\Psr7Responses
* @author Joan Fabrégat <[email protected]>
*/
class LocalFileResponse extends FileResponse
{
/**
* LocalFileResponse constructor.
*
* @param string $filePath
* @param int $code
* @param string $reasonPhrase
* @param null|string $fileName
* @param null|string $contentType
* @param int|null $contentLength
* @param bool $asAttachment
* @param array $headers
* @param string $version
* @throws \CodeInc\MediaTypes\Exceptions\MediaTypesException
*/
public function __construct(string $filePath, int $code = 200, string $reasonPhrase = '', ?string $fileName = null,
?string $contentType = null, ?int $contentLength = null, bool $asAttachment = true,
array $headers = [], string $version = '1.1')
{
// opening the local file
if (!is_file($filePath)) {
throw new \RuntimeException(
sprintf("The path \"%s\" is not a file or does not exist", $filePath)
);
}
if (($handler = fopen($filePath, "r")) === false) {
throw new \RuntimeException(
sprintf("Unable to open the file \"%s\" for reading", $filePath)
);
}
parent::__construct(
$fileName ?? basename($filePath),
$handler,
$code,
$reasonPhrase,
$contentType,
$contentLength ?? filesize($filePath),
$asAttachment,
$headers,
$version
);
}
}