-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUploadResult.php
266 lines (239 loc) · 5.1 KB
/
UploadResult.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
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
<?php
namespace Shoperti\Uploader;
/**
* The UploadResult class.
*
* @author Arturo Rodríguez <arturo@shoperti.com>
*/
class UploadResult
{
/**
* Indicates if the file was successfully stored.
*
* @var bool
*/
protected $isUploaded;
/**
* The sent file.
*
* @var \Symfony\Component\HttpFoundation\File\UploadedFile
*/
protected $uploadedFile;
/**
* The uploaded file url.
*
* @var string
*/
protected $url;
/**
* The file name.
*
* @var string
*/
protected $name;
/**
* The original file name.
*
* @var string
*/
protected $originalName;
/**
* The file mime-type.
*
* @var string
*/
protected $mimeType;
/**
* The file size.
*
* @var int
*/
protected $size;
/**
* The storage disk.
*
* @var string
*/
protected $disk;
/**
* The file location.
*
* @var string
*/
protected $subpath;
/**
* File-relative attributes.
*
* @var array
*/
protected $attributes;
/**
* May contain an upload exception.
*
* @var \Exception
*/
protected $exception;
/**
* Creates a new UploadResult object.
*
* @param bool $isUploaded
* @param \Symfony\Component\HttpFoundation\File\UploadedFile $uploadedFile
* @param string $disk
* @param string $name
* @param string|null $url
* @param string $subpath
* @param array $attributes
* @param \Exception|null $exception
*/
public function __construct(
$isUploaded,
$uploadedFile,
$disk,
$name,
$url,
$subpath,
$attributes,
$exception = null
) {
$this->isUploaded = $isUploaded;
$this->uploadedFile = $uploadedFile;
$this->originalName = $uploadedFile->getClientOriginalName();
$this->mimeType = $uploadedFile->getMimeType();
$this->size = $uploadedFile->getSize();
$this->name = $name;
$this->disk = $disk;
$this->url = $url;
$this->subpath = $subpath;
$this->attributes = $attributes;
$this->exception = $exception;
}
/**
* Gets the indication of if the file was successfully stored.
*
* @return bool
*/
public function getIsUploaded()
{
return $this->isUploaded;
}
/**
* Gets the uploaded file.
*
* @return mixed|\Symfony\Component\HttpFoundation\File\UploadedFile
*/
public function getUploadedFile()
{
return $this->uploadedFile;
}
/**
* Gets the uploaded file url.
*
* @return string|null
*/
public function getUrl()
{
return $this->url;
}
/**
* Gets the assigned file name.
*
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Gets the original name of the uploaded file.
*
* @return string
*/
public function getOriginalName()
{
return $this->originalName;
}
/**
* Gets the uploaded file mime-type.
*
* @return string
*/
public function getMimeType()
{
return $this->mimeType;
}
/**
* Gets the uploaded file size.
*
* @return int
*/
public function getSize()
{
return $this->size;
}
/**
* Gets the storage disk.
*
* @return string
*/
public function getDisk()
{
return $this->disk;
}
/**
* Gets the file location subpath.
*
* @return string
*/
public function getSubpath()
{
return $this->subpath;
}
/**
* Gets the file-relative attributes.
*
* @return array
*/
public function getAttributes()
{
return $this->attributes;
}
/**
* Gets any thrown exception while trying to upload the file.
*
* @return null|\Exception
*/
public function getException()
{
return $this->exception;
}
/**
* Gets the file width if file has that property.
*
* @return int
*/
public function getWidth()
{
return $this->getAttribute('width');
}
/**
* Gets the file width if file has that property.
*
* @return int
*/
public function getHeight()
{
return $this->getAttribute('height');
}
/**
* Gets the value of a file-relative attribute if it's defined.
*
* @param string $attribute
* @param mixed|null $default
*
* @return int|string|mixed
*/
public function getAttribute($attribute, $default = null)
{
return isset($this->attributes[$attribute]) ? $this->attributes[$attribute] : $default;
}
}