Total Complexity | 116 |
Total Lines | 626 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
Complex classes like MediaRequestHandler often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use MediaRequestHandler, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
20 | class MediaRequestHandler extends RecordsRequestHandler |
||
21 | { |
||
22 | // RecordRequestHandler configuration |
||
23 | public static $recordClass = Media::class; |
||
24 | public $accountLevelRead = false; |
||
25 | public $accountLevelBrowse = 'User'; |
||
26 | public $accountLevelWrite = 'User'; |
||
27 | public $accountLevelAPI = false; |
||
28 | public $browseLimit = 100; |
||
29 | public $browseOrder = ['ID' => 'DESC']; |
||
30 | |||
31 | // MediaRequestHandler configuration |
||
32 | public $defaultPage = 'browse'; |
||
33 | public $defaultThumbnailWidth = 100; |
||
34 | public $defaultThumbnailHeight = 100; |
||
35 | public $uploadFileFieldName = 'mediaFile'; |
||
36 | public $responseMode = 'html'; |
||
37 | |||
38 | public $searchConditions = [ |
||
39 | 'Caption' => [ |
||
40 | 'qualifiers' => ['any','caption'] |
||
41 | ,'points' => 2 |
||
42 | ,'sql' => 'Caption LIKE "%%%s%%"', |
||
43 | ] |
||
44 | ,'CaptionLike' => [ |
||
45 | 'qualifiers' => ['caption-like'] |
||
46 | ,'points' => 2 |
||
47 | ,'sql' => 'Caption LIKE "%s"', |
||
48 | ] |
||
49 | ,'CaptionNot' => [ |
||
50 | 'qualifiers' => ['caption-not'] |
||
51 | ,'points' => 2 |
||
52 | ,'sql' => 'Caption NOT LIKE "%%%s%%"', |
||
53 | ] |
||
54 | ,'CaptionNotLike' => [ |
||
55 | 'qualifiers' => ['caption-not-like'] |
||
56 | ,'points' => 2 |
||
57 | ,'sql' => 'Caption NOT LIKE "%s"', |
||
58 | ], |
||
59 | ]; |
||
60 | |||
61 | public function handle(ServerRequestInterface $request): ResponseInterface |
||
62 | { |
||
63 | // handle json response mode |
||
64 | if ($this->peekPath() == 'json') { |
||
65 | $this->shiftPath(); |
||
66 | $this->responseBuilder = JsonBuilder::class; |
||
67 | } |
||
68 | |||
69 | // handle action |
||
70 | switch ($action = $this->shiftPath()) { |
||
71 | |||
72 | case 'upload': |
||
73 | { |
||
74 | return $this->handleUploadRequest(); |
||
75 | } |
||
76 | |||
77 | case 'open': |
||
78 | { |
||
79 | $mediaID = $this->shiftPath(); |
||
80 | |||
81 | return $this->handleMediaRequest($mediaID); |
||
82 | } |
||
83 | |||
84 | case 'download': |
||
85 | { |
||
86 | $mediaID = $this->shiftPath(); |
||
87 | $filename = urldecode($this->shiftPath()); |
||
88 | |||
89 | return $this->handleDownloadRequest($mediaID, $filename); |
||
90 | } |
||
91 | |||
92 | case 'info': |
||
93 | { |
||
94 | $mediaID = $this->shiftPath(); |
||
95 | |||
96 | return $this->handleInfoRequest($mediaID); |
||
97 | } |
||
98 | |||
99 | case 'caption': |
||
100 | { |
||
101 | $mediaID = $this->shiftPath(); |
||
102 | |||
103 | return $this->handleCaptionRequest($mediaID); |
||
104 | } |
||
105 | |||
106 | case 'delete': |
||
107 | { |
||
108 | $mediaID = $this->shiftPath(); |
||
109 | return $this->handleDeleteRequest($mediaID); |
||
110 | } |
||
111 | |||
112 | case 'thumbnail': |
||
113 | { |
||
114 | return $this->handleThumbnailRequest(); |
||
115 | } |
||
116 | |||
117 | case false: |
||
118 | case '': |
||
119 | case 'browse': |
||
120 | { |
||
121 | if ($_SERVER['REQUEST_METHOD'] == 'POST') { |
||
122 | return $this->handleUploadRequest(); |
||
123 | } |
||
124 | |||
125 | return $this->handleBrowseRequest(); |
||
126 | } |
||
127 | |||
128 | default: |
||
129 | { |
||
130 | if (ctype_digit($action)) { |
||
131 | return $this->handleMediaRequest($action); |
||
132 | } else { |
||
133 | return parent::handleRecordsRequest($action); |
||
134 | } |
||
135 | } |
||
136 | } |
||
137 | } |
||
138 | |||
139 | |||
140 | public function handleUploadRequest($options = []): ResponseInterface |
||
141 | { |
||
142 | $this->checkUploadAccess(); |
||
143 | |||
144 | if ($_SERVER['REQUEST_METHOD'] == 'POST') { |
||
145 | // init options |
||
146 | $options = array_merge([ |
||
147 | 'fieldName' => $this->uploadFileFieldName, |
||
148 | ], $options); |
||
149 | |||
150 | |||
151 | // check upload |
||
152 | if (empty($_FILES[$options['fieldName']])) { |
||
153 | return $this->throwUploadError('You did not select a file to upload'); |
||
154 | } |
||
155 | |||
156 | // handle upload errors |
||
157 | if ($_FILES[$options['fieldName']]['error'] != UPLOAD_ERR_OK) { |
||
158 | switch ($_FILES[$options['fieldName']]['error']) { |
||
159 | case UPLOAD_ERR_NO_FILE: |
||
160 | return $this->throwUploadError('You did not select a file to upload'); |
||
161 | |||
162 | case UPLOAD_ERR_INI_SIZE: |
||
163 | case UPLOAD_ERR_FORM_SIZE: |
||
164 | return $this->throwUploadError('Your file exceeds the maximum upload size. Please try again with a smaller file.'); |
||
165 | |||
166 | case UPLOAD_ERR_PARTIAL: |
||
167 | return $this->throwUploadError('Your file was only partially uploaded, please try again.'); |
||
168 | |||
169 | default: |
||
170 | return $this->throwUploadError('There was an unknown problem while processing your upload, please try again.'); |
||
171 | } |
||
172 | } |
||
173 | |||
174 | // init caption |
||
175 | if (!isset($options['Caption'])) { |
||
176 | if (!empty($_REQUEST['Caption'])) { |
||
177 | $options['Caption'] = $_REQUEST['Caption']; |
||
178 | } else { |
||
179 | $options['Caption'] = preg_replace('/\.[^.]+$/', '', $_FILES[$options['fieldName']]['name']); |
||
180 | } |
||
181 | } |
||
182 | |||
183 | // create media |
||
184 | try { |
||
185 | $Media = Media::createFromUpload($_FILES[$options['fieldName']]['tmp_name'], $options); |
||
186 | } catch (Exception $e) { |
||
187 | return $this->throwUploadError('The file you uploaded is not of a supported media format'); |
||
188 | } |
||
189 | } elseif ($_SERVER['REQUEST_METHOD'] == 'PUT') { |
||
190 | $put = fopen('php://input', 'r'); // open input stream |
||
191 | |||
192 | $tmp = tempnam('/tmp', 'dvr'); // use PHP to make a temporary file |
||
193 | $fp = fopen($tmp, 'w'); // open write stream to temp file |
||
194 | |||
195 | // write |
||
196 | while ($data = fread($put, 1024)) { |
||
|
|||
197 | fwrite($fp, $data); |
||
198 | } |
||
199 | |||
200 | // close handles |
||
201 | fclose($fp); |
||
202 | fclose($put); |
||
203 | |||
204 | // create media |
||
205 | try { |
||
206 | $Media = Media::createFromFile($tmp, $options); |
||
207 | } catch (Exception $e) { |
||
208 | return $this->throwUploadError('The file you uploaded is not of a supported media format'); |
||
209 | } |
||
210 | } else { |
||
211 | return $this->respond('upload'); |
||
212 | } |
||
213 | |||
214 | // assign tag |
||
215 | /*if (!empty($_REQUEST['Tag']) && ($Tag = Tag::getByHandle($_REQUEST['Tag']))) { |
||
216 | $Tag->assignItem('Media', $Media->ID); |
||
217 | }*/ |
||
218 | |||
219 | // assign context |
||
220 | if (!empty($_REQUEST['ContextClass']) && !empty($_REQUEST['ContextID'])) { |
||
221 | if (!is_subclass_of($_REQUEST['ContextClass'], ActiveRecord::class) |
||
222 | || !in_array($_REQUEST['ContextClass']::getStaticRootClass(), Media::$fields['ContextClass']['values']) |
||
223 | || !is_numeric($_REQUEST['ContextID'])) { |
||
224 | return $this->throwUploadError('Context is invalid'); |
||
225 | } elseif (!$Media->Context = $_REQUEST['ContextClass']::getByID($_REQUEST['ContextID'])) { |
||
226 | return $this->throwUploadError('Context class not found'); |
||
227 | } |
||
228 | |||
229 | $Media->save(); |
||
230 | } |
||
231 | |||
232 | return $this->respond('uploadComplete', [ |
||
233 | 'success' => (boolean)$Media |
||
234 | ,'data' => $Media |
||
235 | ,'TagID' => isset($Tag) ? $Tag->ID : null, |
||
236 | ]); |
||
237 | } |
||
238 | |||
239 | |||
240 | public function handleMediaRequest($mediaID): ResponseInterface |
||
241 | { |
||
242 | if (empty($mediaID) || !is_numeric($mediaID)) { |
||
243 | $this->throwError('Missing or invalid media_id'); |
||
244 | } |
||
245 | |||
246 | // get media |
||
247 | try { |
||
248 | $Media = Media::getById($mediaID); |
||
249 | } catch (Exception $e) { |
||
250 | return $this->throwUnauthorizedError(); |
||
251 | } |
||
252 | |||
253 | if (!$Media) { |
||
254 | $this->throwNotFoundError('Media ID #%u was not found', $mediaID); |
||
255 | } |
||
256 | |||
257 | if (!$this->checkReadAccess($Media)) { |
||
258 | return $this->throwNotFoundError(); |
||
259 | } |
||
260 | |||
261 | if (is_a($this->responseBuilder, JsonBuilder::class) || $_SERVER['HTTP_ACCEPT'] == 'application/json') { |
||
262 | return $this->respond([ |
||
263 | 'success' => true |
||
264 | ,'data' => $Media, |
||
265 | ]); |
||
266 | } else { |
||
267 | |||
268 | // determine variant |
||
269 | if ($variant = $this->shiftPath()) { |
||
270 | if (!$Media->isVariantAvailable($variant)) { |
||
271 | return $this->throwNotFoundError(); |
||
272 | } |
||
273 | } else { |
||
274 | $variant = 'original'; |
||
275 | } |
||
276 | |||
277 | // send caching headers |
||
278 | $expires = 60*60*24*365; |
||
279 | header("Cache-Control: public, max-age=$expires"); |
||
280 | header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time()+$expires)); |
||
281 | header('Pragma: public'); |
||
282 | |||
283 | // media are immutable for a given URL, so no need to actually check anything if the browser wants to revalidate its cache |
||
284 | if (!empty($_SERVER['HTTP_IF_NONE_MATCH']) || !empty($_SERVER['HTTP_IF_MODIFIED_SINCE'])) { |
||
285 | header('HTTP/1.0 304 Not Modified'); |
||
286 | exit(); |
||
287 | } |
||
288 | |||
289 | // initialize response |
||
290 | set_time_limit(0); |
||
291 | $filePath = $Media->getFilesystemPath($variant); |
||
292 | $fp = fopen($filePath, 'rb'); |
||
293 | $size = filesize($filePath); |
||
294 | $length = $size; |
||
295 | $start = 0; |
||
296 | $end = $size - 1; |
||
297 | |||
298 | header('Content-Type: '.$Media->getMIMEType($variant)); |
||
299 | header('ETag: media-'.$Media->ID.'-'.$variant); |
||
300 | header('Accept-Ranges: bytes'); |
||
301 | |||
302 | // interpret range requests |
||
303 | if (!empty($_SERVER['HTTP_RANGE'])) { |
||
304 | $chunkStart = $start; |
||
305 | $chunkEnd = $end; |
||
306 | |||
307 | list(, $range) = explode('=', $_SERVER['HTTP_RANGE'], 2); |
||
308 | |||
309 | if (strpos($range, ',') !== false) { |
||
310 | header('HTTP/1.1 416 Requested Range Not Satisfiable'); |
||
311 | header("Content-Range: bytes $start-$end/$size"); |
||
312 | exit(); |
||
313 | } |
||
314 | |||
315 | if ($range == '-') { |
||
316 | $chunkStart = $size - substr($range, 1); |
||
317 | } else { |
||
318 | $range = explode('-', $range); |
||
319 | $chunkStart = $range[0]; |
||
320 | $chunkEnd = (isset($range[1]) && is_numeric($range[1])) ? $range[1] : $size; |
||
321 | } |
||
322 | |||
323 | $chunkEnd = ($chunkEnd > $end) ? $end : $chunkEnd; |
||
324 | if ($chunkStart > $chunkEnd || $chunkStart > $size - 1 || $chunkEnd >= $size) { |
||
325 | header('HTTP/1.1 416 Requested Range Not Satisfiable'); |
||
326 | header("Content-Range: bytes $start-$end/$size"); |
||
327 | exit(); |
||
328 | } |
||
329 | |||
330 | $start = $chunkStart; |
||
331 | $end = $chunkEnd; |
||
332 | $length = $end - $start + 1; |
||
333 | |||
334 | fseek($fp, $start); |
||
335 | header('HTTP/1.1 206 Partial Content'); |
||
336 | } |
||
337 | |||
338 | // finish response |
||
339 | header("Content-Range: bytes $start-$end/$size"); |
||
340 | header("Content-Length: $length"); |
||
341 | |||
342 | $buffer = 1024 * 8; |
||
343 | while (!feof($fp) && ($p = ftell($fp)) <= $end) { |
||
344 | if ($p + $buffer > $end) { |
||
345 | $buffer = $end - $p + 1; |
||
346 | } |
||
347 | |||
348 | echo fread($fp, $buffer); |
||
349 | flush(); |
||
350 | } |
||
351 | |||
352 | fclose($fp); |
||
353 | } |
||
354 | } |
||
355 | |||
356 | public function handleInfoRequest($mediaID): ResponseInterface |
||
378 | } |
||
379 | |||
380 | public function handleDownloadRequest($media_id, $filename = false): ResponseInterface |
||
381 | { |
||
382 | if (empty($media_id) || !is_numeric($media_id)) { |
||
383 | $this->throwNotFoundError(); |
||
384 | } |
||
385 | |||
386 | // get media |
||
387 | try { |
||
388 | $Media = Media::getById($media_id); |
||
389 | } catch (Exception $e) { |
||
390 | return $this->throwUnauthorizedError(); |
||
391 | } |
||
392 | |||
393 | |||
394 | if (!$Media) { |
||
395 | $this->throwNotFoundError(); |
||
396 | } |
||
397 | |||
398 | if (!$this->checkReadAccess($Media)) { |
||
399 | return $this->throwUnauthorizedError(); |
||
400 | } |
||
401 | |||
402 | // determine filename |
||
403 | if (empty($filename)) { |
||
404 | $filename = $Media->Caption ? $Media->Caption : sprintf('%s_%u', $Media->ContextClass, $Media->ContextID); |
||
405 | } |
||
406 | |||
407 | if (strpos($filename, '.') === false) { |
||
408 | // add extension |
||
409 | $filename .= '.'.$Media->Extension; |
||
410 | } |
||
411 | |||
412 | header('Content-Type: '.$Media->MIMEType); |
||
413 | header('Content-Disposition: attachment; filename="'.str_replace('"', '', $filename).'"'); |
||
414 | header('Content-Length: '.filesize($Media->FilesystemPath)); |
||
415 | |||
416 | readfile($Media->FilesystemPath); |
||
417 | exit(); |
||
418 | } |
||
419 | |||
420 | public function handleCaptionRequest($media_id): ResponseInterface |
||
453 | ]); |
||
454 | } |
||
455 | |||
456 | public function handleDeleteRequest(ActiveRecord $Record): ResponseInterface |
||
457 | { |
||
458 | // require authentication |
||
459 | $GLOBALS['Session']->requireAccountLevel('Staff'); |
||
460 | |||
461 | if ($mediaID = $this->peekPath()) { |
||
462 | $mediaIDs = [$mediaID]; |
||
463 | } elseif (!empty($_REQUEST['mediaID'])) { |
||
464 | $mediaIDs = [$_REQUEST['mediaID']]; |
||
465 | } elseif (is_array($_REQUEST['media'])) { |
||
466 | $mediaIDs = $_REQUEST['media']; |
||
467 | } |
||
468 | |||
469 | $deleted = []; |
||
470 | foreach ($mediaIDs as $mediaID) { |
||
471 | if (!is_numeric($mediaID)) { |
||
472 | continue; |
||
473 | } |
||
474 | |||
475 | // get media |
||
476 | $Media = Media::getByID($mediaID); |
||
477 | |||
478 | if (!$Media) { |
||
479 | $this->throwNotFoundError(); |
||
480 | } |
||
481 | |||
482 | if ($Media->destroy()) { |
||
483 | $deleted[] = $Media; |
||
484 | } |
||
485 | } |
||
486 | |||
487 | return $this->respond('mediaDeleted', [ |
||
488 | 'success' => true |
||
489 | ,'data' => $deleted, |
||
490 | ]); |
||
491 | } |
||
492 | |||
493 | |||
494 | |||
495 | |||
496 | |||
497 | |||
498 | public function handleThumbnailRequest(Media $Media = null): ResponseInterface |
||
499 | { |
||
500 | // send caching headers |
||
501 | $expires = 60*60*24*365; |
||
502 | header("Cache-Control: public, max-age=$expires"); |
||
503 | header('Expires: '.gmdate('D, d M Y H:i:s \G\M\T', time()+$expires)); |
||
504 | header('Pragma: public'); |
||
505 | |||
506 | |||
507 | // thumbnails are immutable for a given URL, so no need to actually check anything if the browser wants to revalidate its cache |
||
508 | if (!empty($_SERVER['HTTP_IF_NONE_MATCH']) || !empty($_SERVER['HTTP_IF_MODIFIED_SINCE'])) { |
||
509 | header('HTTP/1.0 304 Not Modified'); |
||
510 | exit(); |
||
511 | } |
||
512 | |||
513 | |||
514 | // get media |
||
515 | if (!$Media) { |
||
516 | if (!$mediaID = $this->shiftPath()) { |
||
517 | return $this->throwNotFoundError(); |
||
518 | } elseif (!$Media = Media::getByID($mediaID)) { |
||
519 | return $this->throwNotFoundError(); |
||
520 | } |
||
521 | } |
||
522 | |||
523 | |||
524 | // get format |
||
525 | if (preg_match('/^(\d+)x(\d+)(x([0-9A-F]{6})?)?$/i', $this->peekPath(), $matches)) { |
||
526 | $this->shiftPath(); |
||
527 | $maxWidth = $matches[1]; |
||
528 | $maxHeight = $matches[2]; |
||
529 | $fillColor = !empty($matches[4]) ? $matches[4] : false; |
||
530 | } else { |
||
531 | $maxWidth = $this->defaultThumbnailWidth; |
||
532 | $maxHeight = $this->defaultThumbnailHeight; |
||
533 | $fillColor = false; |
||
534 | } |
||
535 | |||
536 | if ($this->peekPath() == 'cropped') { |
||
537 | $this->shiftPath(); |
||
538 | $cropped = true; |
||
539 | } else { |
||
540 | $cropped = false; |
||
541 | } |
||
542 | |||
543 | |||
544 | // get thumbnail media |
||
545 | try { |
||
546 | $thumbPath = $Media->getThumbnail($maxWidth, $maxHeight, $fillColor, $cropped); |
||
547 | } catch (Exception $e) { |
||
548 | return $this->throwNotFoundError(); |
||
549 | } |
||
550 | |||
551 | // emit |
||
552 | header("ETag: media-$Media->ID-$maxWidth-$maxHeight-$fillColor-$cropped"); |
||
553 | header("Content-Type: $Media->ThumbnailMIMEType"); |
||
554 | header('Content-Length: '.filesize($thumbPath)); |
||
555 | readfile($thumbPath); |
||
556 | exit(); |
||
557 | } |
||
558 | |||
559 | |||
560 | |||
561 | public function handleManageRequest(): ResponseInterface |
||
562 | { |
||
563 | // access control |
||
564 | $GLOBALS['Session']->requireAccountLevel('Staff'); |
||
565 | |||
566 | return $this->respond('manage'); |
||
567 | } |
||
568 | |||
569 | |||
570 | |||
571 | public function handleBrowseRequest($options = [], $conditions = [], $responseID = null, $responseData = []): ResponseInterface |
||
594 | } |
||
595 | |||
596 | |||
597 | |||
598 | public function handleMediaDeleteRequest(): ResponseInterface |
||
599 | { |
||
600 | // sanity check |
||
601 | if (empty($_REQUEST['media']) || !is_array($_REQUEST['media'])) { |
||
602 | $this->throwNotFoundError(); |
||
603 | } |
||
604 | |||
605 | // retrieve photos |
||
606 | $media_array = []; |
||
607 | foreach ($_REQUEST['media'] as $media_id) { |
||
608 | if (!is_numeric($media_id)) { |
||
609 | $this->throwNotFoundError(); |
||
610 | } |
||
611 | |||
612 | if ($Media = Media::getById($media_id)) { |
||
613 | $media_array[$Media->ID] = $Media; |
||
614 | |||
615 | if (!$this->checkWriteAccess($Media)) { |
||
616 | return $this->throwUnauthorizedError(); |
||
617 | } |
||
618 | } |
||
619 | } |
||
620 | |||
621 | // delete |
||
622 | $deleted = []; |
||
623 | foreach ($media_array as $media_id => $Media) { |
||
624 | if ($Media->delete()) { |
||
625 | $deleted[] = $media_id; |
||
626 | } |
||
627 | } |
||
628 | |||
629 | return $this->respond('mediaDeleted', [ |
||
630 | 'success' => true |
||
631 | ,'deleted' => $deleted, |
||
632 | ]); |
||
633 | } |
||
634 | |||
635 | public function checkUploadAccess() |
||
638 | } |
||
639 | |||
640 | public function throwUploadError($error): ResponseInterface |
||
641 | { |
||
642 | return $this->respond('error', [ |
||
643 | 'success' => false, |
||
646 | ], |
||
647 | ]); |
||
650 |