-
-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathFileUpload.php
More file actions
203 lines (161 loc) · 3.96 KB
/
FileUpload.php
File metadata and controls
203 lines (161 loc) · 3.96 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<?php
/**
* This file is part of the Nette Framework (https://nette.org)
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
*/
declare(strict_types=1);
namespace Nette\Http;
use Nette;
/**
* Provides access to individual files that have been uploaded by a client.
*
* @property-read string $name
* @property-read string $sanitizedName
* @property-read string|null $contentType
* @property-read int $size
* @property-read string $temporaryFile
* @property-read int $error
* @property-read bool $ok
* @property-read string|null $contents
*/
final class FileUpload
{
use Nette\SmartObject;
public const IMAGE_MIME_TYPES = ['image/gif', 'image/png', 'image/jpeg', 'image/webp'];
/** @var string */
private $name;
/** @var string|null|false */
private $type;
/** @var int */
private $size;
/** @var string */
private $tmpName;
/** @var int */
private $error;
public function __construct(?array $value)
{
foreach (['name', 'size', 'tmp_name', 'error'] as $key) {
if (!isset($value[$key]) || !is_scalar($value[$key])) {
$this->error = UPLOAD_ERR_NO_FILE;
return; // or throw exception?
}
}
$this->name = $value['name'];
$this->size = $value['size'];
$this->tmpName = $value['tmp_name'];
$this->error = $value['error'];
}
/**
* Returns the file name.
*/
public function getName(): string
{
return $this->name;
}
/**
* Returns the sanitized file name.
*/
public function getSanitizedName(): string
{
return trim(str_replace('-.', '.', Nette\Utils\Strings::webalize($this->name, '.', false)), '.-');
}
/**
* Returns the MIME content type of an uploaded file.
*/
public function getContentType(): ?string
{
if ($this->isOk() && $this->type === null) {
$this->type = finfo_file(finfo_open(FILEINFO_MIME_TYPE), $this->tmpName);
}
return $this->type ?: null;
}
/**
* Returns the size of an uploaded file.
*/
public function getSize(): int
{
return $this->size;
}
/**
* Returns the path to an uploaded file.
*/
public function getTemporaryFile(): string
{
return $this->tmpName;
}
/**
* Returns the path to an uploaded file.
*/
public function __toString(): string
{
return $this->tmpName;
}
/**
* Returns the error code. {@link http://php.net/manual/en/features.file-upload.errors.php}
*/
public function getError(): int
{
return $this->error;
}
/**
* Is there any error?
*/
public function isOk(): bool
{
return $this->error === UPLOAD_ERR_OK;
}
public function hasFile(): bool
{
return $this->error !== UPLOAD_ERR_NO_FILE;
}
/**
* Move uploaded file to new location.
* @return static
*/
public function move(string $dest)
{
$dir = dirname($dest);
Nette\Utils\FileSystem::createDir($dir);
@unlink($dest); // @ - file may not exists
Nette\Utils\Callback::invokeSafe(
is_uploaded_file($this->tmpName) ? 'move_uploaded_file' : 'rename',
[$this->tmpName, $dest],
function (string $message) use ($dest): void {
throw new Nette\InvalidStateException("Unable to move uploaded file '$this->tmpName' to '$dest'. $message");
}
);
@chmod($dest, 0666); // @ - possible low permission to chmod
$this->tmpName = $dest;
return $this;
}
/**
* Is uploaded file GIF, PNG or JPEG?
*/
public function isImage(): bool
{
return in_array($this->getContentType(), self::IMAGE_MIME_TYPES, true);
}
/**
* Returns the image.
* @throws Nette\Utils\ImageException
*/
public function toImage(): Nette\Utils\Image
{
return Nette\Utils\Image::fromFile($this->tmpName);
}
/**
* Returns the dimensions of an uploaded image as array.
*/
public function getImageSize(): ?array
{
return $this->isOk() ? @getimagesize($this->tmpName) : null; // @ - files smaller than 12 bytes causes read error
}
/**
* Get file contents.
*/
public function getContents(): ?string
{
// future implementation can try to work around safe_mode and open_basedir limitations
return $this->isOk() ? file_get_contents($this->tmpName) : null;
}
}