| Total Complexity | 64 |
| Total Lines | 583 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
Complex classes like Download 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 Download, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 32 | class Download |
||
| 33 | { |
||
| 34 | protected $string_attach = ''; |
||
| 35 | protected $id_attach = 0; |
||
| 36 | protected $file_path = null; |
||
| 37 | protected $data = []; |
||
| 38 | protected $db = null; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Starts up the download process |
||
| 42 | * |
||
| 43 | * @param string $id_attach String version of the attachment id |
||
| 44 | */ |
||
| 45 | public function __construct($id_attach) |
||
| 46 | { |
||
| 47 | $this->string_attach = $id_attach; |
||
| 48 | // Non-temporary attachments shall have integer ids |
||
| 49 | if (!$this->isTemporary()) |
||
| 50 | { |
||
| 51 | $this->id_attach = (int) $id; |
||
|
|
|||
| 52 | } |
||
| 53 | $this->db = database(); |
||
| 54 | } |
||
| 55 | |||
| 56 | /** |
||
| 57 | * Temporary attachments have special names, so need slightly special handling |
||
| 58 | */ |
||
| 59 | public function isTemporary() |
||
| 60 | { |
||
| 61 | // Temporary attachment, special case... |
||
| 62 | return strpos($this->string_attach, 'post_tmp_' . User::$info->id . '_') !== false; |
||
| 63 | } |
||
| 64 | |||
| 65 | /** |
||
| 66 | * Fetches data from the db and determine if the attachment actually exists |
||
| 67 | * |
||
| 68 | * @param null|string $text |
||
| 69 | * @param null|int $id_topic |
||
| 70 | * @throws \ElkArte\Exceptions\Exception |
||
| 71 | */ |
||
| 72 | public function validate($type, $id_topic = null) |
||
| 73 | { |
||
| 74 | if (empty($this->id_attach)) |
||
| 75 | { |
||
| 76 | return false; |
||
| 77 | } |
||
| 78 | |||
| 79 | if ($this->isTemporary()) |
||
| 80 | { |
||
| 81 | return $this->validateTemporary(); |
||
| 82 | } |
||
| 83 | |||
| 84 | if ($type === Attachment::DL_TYPE_AVATAR) |
||
| 85 | { |
||
| 86 | $data = $this->getAvatar(); |
||
| 87 | } |
||
| 88 | else |
||
| 89 | { |
||
| 90 | if ($type === Attachment::DL_TYPE_THUMB) |
||
| 91 | { |
||
| 92 | $data = $this->getThumbFromTopic($id_topic); |
||
| 93 | if (empty($data['filename'])) |
||
| 94 | { |
||
| 95 | $data = array_merge($data, $this->rebuildData($id_topic)); |
||
| 96 | } |
||
| 97 | } |
||
| 98 | else |
||
| 99 | { |
||
| 100 | $data = $this->getFromTopic($id_topic); |
||
| 101 | } |
||
| 102 | } |
||
| 103 | $this->data = $data; |
||
| 104 | |||
| 105 | $this->data['id_folder'] = $data['id_folder'] ?? ''; |
||
| 106 | $this->data['real_filename'] = $data['filename'] ?? ''; |
||
| 107 | $this->data['file_hash'] = $data['file_hash'] ?? ''; |
||
| 108 | $this->data['file_ext'] = $data['fileext'] ?? ''; |
||
| 109 | $this->data['id_attach'] = $data['id_attach'] ?? ''; |
||
| 110 | $this->data['attachment_type'] = $data['attachment_type'] ?? ''; |
||
| 111 | $this->data['mime_type'] = $data['mime_type'] ?? ''; |
||
| 112 | $this->data['is_approved'] = $data['approved'] ?? ''; |
||
| 113 | $this->data['id_member'] = $data['id_member'] ?? ''; |
||
| 114 | |||
| 115 | return !empty($this->data['real_filename']); |
||
| 116 | } |
||
| 117 | |||
| 118 | /** |
||
| 119 | * Same as validate, but for temporary attachments |
||
| 120 | */ |
||
| 121 | protected function validateTemporary() |
||
| 122 | { |
||
| 123 | global $modSettings; |
||
| 124 | |||
| 125 | $tmp_attachments = new TemporaryAttachmentsList(); |
||
| 126 | $attachmentsDir = new AttachmentsDirectory($modSettings, $this->db); |
||
| 127 | |||
| 128 | try |
||
| 129 | { |
||
| 130 | $this->data = $tmp_attachments->getTempAttachById($this->_req->query->attach, $attachmentsDir, User::$info->id); |
||
| 131 | $this->data['file_ext'] = pathinfo($this->data['name'], PATHINFO_EXTENSION); |
||
| 132 | $this->file_path = $this->data['tmp_name']; |
||
| 133 | $this->data['id_attach'] = $this->data['attachid']; |
||
| 134 | $this->data['real_filename'] = $this->data['name']; |
||
| 135 | $this->data['mime_type'] = $this->data['type']; |
||
| 136 | } |
||
| 137 | catch (\Exception $e) |
||
| 138 | { |
||
| 139 | throw new Exception($e->getMessage(), false); |
||
| 140 | } |
||
| 141 | |||
| 142 | $this->data['resize'] = true; |
||
| 143 | |||
| 144 | // Return mime type ala mimetype extension |
||
| 145 | if (substr(getMimeType($this->file_path), 0, 5) !== 'image') |
||
| 146 | { |
||
| 147 | $checkMime = returnMimeThumb($file_ext); |
||
| 148 | $mime_type = 'image/png'; |
||
| 149 | $this->data['resize'] = false; |
||
| 150 | $this->file_path = $checkMime; |
||
| 151 | } |
||
| 152 | |||
| 153 | return !empty($this->data['real_filename']); |
||
| 154 | } |
||
| 155 | |||
| 156 | /** |
||
| 157 | * Reads and returns the data of the image |
||
| 158 | * |
||
| 159 | * @param bool $inline |
||
| 160 | * @param bool $use_compression |
||
| 161 | */ |
||
| 162 | public function send($inline, $use_compression) |
||
| 163 | { |
||
| 164 | if (empty($this->id_attach) || empty($this->data['real_filename'])) |
||
| 165 | { |
||
| 166 | return $this->noAttach(); |
||
| 167 | } |
||
| 168 | |||
| 169 | if ($this->file_path === null) |
||
| 170 | { |
||
| 171 | $this->file_path = getAttachmentFilename($this->data['real_filename'], $this->id_attach, $this->data['id_folder'], false, $this->data['file_hash']); |
||
| 172 | } |
||
| 173 | |||
| 174 | $eTag = '"' . substr($this->id_attach . $this->data['real_filename'] . @filemtime($this->file_path), 0, 64) . '"'; |
||
| 175 | $disposition = $inline ? 'inline' : 'attachment'; |
||
| 176 | $do_cache = !($inline === false && getValidMimeImageType($this->data['file_ext']) !== ''); |
||
| 177 | |||
| 178 | // Make sure the mime type warrants an inline display. |
||
| 179 | if ($inline && !empty($this->data['mime_type']) && strpos($this->data['mime_type'], 'image/') !== 0) |
||
| 180 | { |
||
| 181 | $this->data['mime_type'] = ''; |
||
| 182 | } |
||
| 183 | // Does this have a mime type? |
||
| 184 | elseif (empty($this->data['mime_type']) || $inline === false && getValidMimeImageType($this->data['file_ext']) !== '') |
||
| 185 | { |
||
| 186 | $this->data['mime_type'] = ''; |
||
| 187 | } |
||
| 188 | $this->prepare_headers($this->file_path, $eTag, $this->data['mime_type'], $disposition, $this->data['real_filename'], $do_cache); |
||
| 189 | |||
| 190 | if (!empty($this->data['resize'])) |
||
| 191 | { |
||
| 192 | // Create a thumbnail image |
||
| 193 | $image = new Image($this->file_path); |
||
| 194 | |||
| 195 | $this->file_path = $this->file_path . '_thumb'; |
||
| 196 | $image->createThumbnail(100, 100, $this->file_path, '',false); |
||
| 197 | } |
||
| 198 | |||
| 199 | return $this->send_file($use_compression && $this->isCompressible()); |
||
| 200 | } |
||
| 201 | |||
| 202 | /** |
||
| 203 | * Is the atachment is approved or not |
||
| 204 | */ |
||
| 205 | public function isApproved() |
||
| 206 | { |
||
| 207 | return !empty($this->data['is_approved']); |
||
| 208 | } |
||
| 209 | |||
| 210 | /** |
||
| 211 | * If the user requesting the attachment is its owner |
||
| 212 | */ |
||
| 213 | public function isOwner() |
||
| 214 | { |
||
| 215 | return (int) $this->data['id_member'] !== 0 && User::$info->id === (int) $this->data['id_member']; |
||
| 216 | } |
||
| 217 | |||
| 218 | /** |
||
| 219 | * If the attachment is an avatar |
||
| 220 | */ |
||
| 221 | public function isAvatar() |
||
| 222 | { |
||
| 223 | return $this->data['attachment_type'] == Attachment::DB_TYPE_AVATAR; |
||
| 224 | } |
||
| 225 | |||
| 226 | /** |
||
| 227 | * Generates a language image based on text for display, outputs image and exits |
||
| 228 | * |
||
| 229 | * @param null|string $text |
||
| 230 | * @throws \ElkArte\Exceptions\Exception |
||
| 231 | */ |
||
| 232 | public function noAttach($text = null) |
||
| 233 | { |
||
| 234 | global $txt; |
||
| 235 | |||
| 236 | if ($text === null) |
||
| 237 | { |
||
| 238 | Txt::load('Errors'); |
||
| 239 | $text = $txt['attachment_not_found']; |
||
| 240 | } |
||
| 241 | |||
| 242 | try |
||
| 243 | { |
||
| 244 | $img = new TextImage($text); |
||
| 245 | $img = $img->generate(200); |
||
| 246 | } |
||
| 247 | catch (\Exception $e) |
||
| 248 | { |
||
| 249 | throw new Exception('no_access', false); |
||
| 250 | } |
||
| 251 | |||
| 252 | $this->prepare_headers('no_image', 'no_image', 'image/png', 'inline', 'no_image.png', true, false); |
||
| 253 | |||
| 254 | Headers::instance()->sendHeaders(); |
||
| 255 | |||
| 256 | return $img; |
||
| 257 | } |
||
| 258 | |||
| 259 | /** |
||
| 260 | * Increase download counter for id_attach. |
||
| 261 | * |
||
| 262 | * What it does: |
||
| 263 | * |
||
| 264 | * - Does not check if it's a thumbnail. |
||
| 265 | * |
||
| 266 | * @param int $id_attach |
||
| 267 | * @package Attachments |
||
| 268 | */ |
||
| 269 | public function increaseDownloadCounter() |
||
| 270 | { |
||
| 271 | if (empty($this->id_attach) || $this->isAvatar()) |
||
| 272 | { |
||
| 273 | return; |
||
| 274 | } |
||
| 275 | |||
| 276 | $this->db->fetchQuery(' |
||
| 277 | UPDATE {db_prefix}attachments |
||
| 278 | SET downloads = downloads + 1 |
||
| 279 | WHERE id_attach = {int:id_attach}', |
||
| 280 | array( |
||
| 281 | 'id_attach' => $this->id_attach, |
||
| 282 | ) |
||
| 283 | ); |
||
| 284 | } |
||
| 285 | |||
| 286 | /** |
||
| 287 | * Sends the requested file to the user. If the file is compressible e.g. |
||
| 288 | * has a mine type of text/??? may compress the file prior to sending. |
||
| 289 | */ |
||
| 290 | protected function send_file($use_compression) |
||
| 291 | { |
||
| 292 | $headers = Headers::instance(); |
||
| 293 | $body = file_get_contents($this->file_path); |
||
| 294 | |||
| 295 | // If we can/should compress this file |
||
| 296 | if ($use_compression && strlen($body) > 250) |
||
| 297 | { |
||
| 298 | $body = gzencode($body, 2); |
||
| 299 | $headers |
||
| 300 | ->header('Content-Encoding', 'gzip') |
||
| 301 | ->header('Vary', 'Accept-Encoding'); |
||
| 302 | } |
||
| 303 | |||
| 304 | // Someone is getting a present |
||
| 305 | $headers->header('Content-Length', strlen($body)); |
||
| 306 | $headers->send(); |
||
| 307 | return $body; |
||
| 308 | } |
||
| 309 | |||
| 310 | /** |
||
| 311 | * If the mime type benefits from compression e.g. text/xyz and gzencode is |
||
| 312 | * available and the user agent accepts gzip, then return true, else false |
||
| 313 | * |
||
| 314 | * @return bool if we should compress the file |
||
| 315 | */ |
||
| 316 | protected function isCompressible() |
||
| 320 | } |
||
| 321 | |||
| 322 | /** |
||
| 323 | * Takes care of sending out the most common headers. |
||
| 324 | * |
||
| 325 | * @param string $filename Full path+file name of the file in the filesystem |
||
| 326 | * @param string $eTag ETag cache validator |
||
| 327 | * @param string $mime_type The mime-type of the file |
||
| 328 | * @param string $disposition The value of the Content-Disposition header |
||
| 329 | * @param string $real_filename The original name of the file |
||
| 330 | * @param bool $do_cache If send the a max-age header or not |
||
| 331 | * @param bool $check_filename When false, any check on $filename is skipped |
||
| 332 | */ |
||
| 333 | protected function prepare_headers($filename, $eTag, $mime_type, $disposition, $real_filename, $do_cache, $check_filename = true) |
||
| 334 | { |
||
| 335 | global $txt; |
||
| 336 | |||
| 337 | $headers = Headers::instance(); |
||
| 338 | $request = HttpReq::instance(); |
||
| 339 | |||
| 340 | // No point in a nicer message, because this is supposed to be an attachment anyway... |
||
| 341 | if ($check_filename && !file_exists($filename)) |
||
| 342 | { |
||
| 343 | Txt::load('Errors'); |
||
| 344 | |||
| 345 | $protocol = preg_match('~HTTP/1\.[01]~i', $request->server->SERVER_PROTOCOL) ? $request->server->SERVER_PROTOCOL : 'HTTP/1.0'; |
||
| 346 | $headers |
||
| 347 | ->removeHeader('all') |
||
| 348 | ->headerSpecial($protocol . ' 404 Not Found') |
||
| 349 | ->sendHeaders(); |
||
| 350 | |||
| 351 | // We need to die like this *before* we send any anti-caching headers as below. |
||
| 352 | die('404 - ' . $txt['attachment_not_found']); |
||
| 353 | } |
||
| 354 | |||
| 355 | // If it hasn't been modified since the last time this attachment was retrieved, there's no need to display it again. |
||
| 356 | if (!empty($request->server->HTTP_IF_MODIFIED_SINCE)) |
||
| 357 | { |
||
| 358 | list ($modified_since) = explode(';', $request->server->HTTP_IF_MODIFIED_SINCE); |
||
| 359 | if (!$check_filename || strtotime($modified_since) >= filemtime($filename)) |
||
| 360 | { |
||
| 361 | @ob_end_clean(); |
||
| 362 | |||
| 363 | // Answer the question - no, it hasn't been modified ;). |
||
| 364 | $headers |
||
| 365 | ->removeHeader('all') |
||
| 366 | ->headerSpecial('HTTP/1.1 304 Not Modified') |
||
| 367 | ->sendHeaders(); |
||
| 368 | exit; |
||
| 369 | } |
||
| 370 | } |
||
| 371 | |||
| 372 | // Check whether the ETag was sent back, and cache based on that... |
||
| 373 | if (!empty($request->server->HTTP_IF_NONE_MATCH) && strpos($request->server->HTTP_IF_NONE_MATCH, $eTag) !== false) |
||
| 374 | { |
||
| 375 | @ob_end_clean(); |
||
| 376 | |||
| 377 | $headers |
||
| 378 | ->removeHeader('all') |
||
| 379 | ->headerSpecial('HTTP/1.1 304 Not Modified') |
||
| 380 | ->sendHeaders(); |
||
| 381 | exit; |
||
| 382 | } |
||
| 383 | |||
| 384 | // Send the attachment headers. |
||
| 385 | $headers |
||
| 386 | ->header('Expires', gmdate('D, d M Y H:i:s', time() + 525600 * 60) . ' GMT') |
||
| 387 | ->header('Last-Modified', gmdate('D, d M Y H:i:s', $check_filename ? filemtime($filename) : time() - 525600 * 60) . ' GMT') |
||
| 388 | ->header('Accept-Ranges', 'bytes') |
||
| 389 | ->header('Connection', 'close') |
||
| 390 | ->header('ETag', $eTag); |
||
| 391 | |||
| 392 | // Different browsers like different standards... |
||
| 393 | $headers->setAttachmentFileParams($mime_type, $real_filename, $disposition); |
||
| 394 | |||
| 395 | // If this has an "image extension" - but isn't actually an image - then ensure it isn't cached cause of silly IE. |
||
| 396 | if ($do_cache) |
||
| 397 | { |
||
| 398 | $headers |
||
| 399 | ->header('Cache-Control', 'max-age=' . (525600 * 60) . ', private'); |
||
| 400 | } |
||
| 401 | else |
||
| 402 | { |
||
| 403 | $headers |
||
| 404 | ->header('Pragma', 'no-cache') |
||
| 405 | ->header('Cache-Control', 'no-cache'); |
||
| 406 | } |
||
| 407 | |||
| 408 | // Try to buy some time... |
||
| 409 | detectServer()->setTimeLimit(600); |
||
| 410 | } |
||
| 411 | |||
| 412 | /** |
||
| 413 | * Some magic in case data are not available immediately |
||
| 414 | */ |
||
| 415 | protected function rebuildData($id_topic) |
||
| 416 | { |
||
| 417 | global $modSettings; |
||
| 418 | |||
| 419 | $full_attach = $this->getFromTopic($id_topic); |
||
| 420 | $attachment = [ |
||
| 421 | 'filename' => !empty($full_attach['filename']) ? $full_attach['filename'] : '', |
||
| 422 | 'id_attach' => 0, |
||
| 423 | 'attachment_type' => 0, |
||
| 424 | 'approved' => $full_attach['approved'], |
||
| 425 | 'id_member' => $full_attach['id_member'] |
||
| 426 | ]; |
||
| 427 | |||
| 428 | // If it is a known extension, show a mimetype extension image |
||
| 429 | $check = returnMimeThumb(!empty($full_attach['fileext']) ? $full_attach['fileext'] : 'default'); |
||
| 430 | if ($check !== false) |
||
| 431 | { |
||
| 432 | $attachment['fileext'] = 'png'; |
||
| 433 | $attachment['mime_type'] = 'image/png'; |
||
| 434 | $this->file_path = $check; |
||
| 435 | } |
||
| 436 | else |
||
| 437 | { |
||
| 438 | $attachmentsDir = new AttachmentsDirectory($modSettings, $this->db); |
||
| 439 | $this->file_path = $attachmentsDir->getCurrent() . '/' . $attachment['filename']; |
||
| 440 | } |
||
| 441 | |||
| 442 | if (substr(getMimeType($this->file_path), 0, 5) !== 'image') |
||
| 443 | { |
||
| 444 | $attachment['fileext'] = 'png'; |
||
| 445 | $attachment['mime_type'] = 'image/png'; |
||
| 446 | $this->file_path = $settings['theme_dir'] . '/images/mime_images/default.png'; |
||
| 447 | } |
||
| 448 | return $attachment; |
||
| 449 | } |
||
| 450 | |||
| 451 | /** |
||
| 452 | * Get the avatar with the specified ID. |
||
| 453 | * |
||
| 454 | * What it does: |
||
| 455 | * |
||
| 456 | * - It gets avatar data (folder, name of the file, filehash, etc) |
||
| 457 | * from the database. |
||
| 458 | * - Must return the same array keys as getAttachmentFromTopic() |
||
| 459 | * |
||
| 460 | * @return array |
||
| 461 | * @package Attachments |
||
| 462 | */ |
||
| 463 | protected function getAvatar() |
||
| 464 | { |
||
| 465 | // Use our cache when possible |
||
| 466 | $cache = array(); |
||
| 467 | if (Cache::instance()->getVar($cache, 'getAvatar_id-' . $this->id_attach)) |
||
| 468 | { |
||
| 469 | return $cache; |
||
| 470 | } |
||
| 471 | |||
| 472 | $avatarData = array(); |
||
| 473 | $this->db->fetchQuery(' |
||
| 474 | SELECT |
||
| 475 | id_folder, filename, file_hash, fileext, id_attach, attachment_type, |
||
| 476 | mime_type, approved, id_member |
||
| 477 | FROM {db_prefix}attachments |
||
| 478 | WHERE id_attach = {int:id_attach} |
||
| 479 | AND id_member > {int:blank_id_member} |
||
| 480 | LIMIT 1', |
||
| 481 | array( |
||
| 482 | 'id_attach' => $this->id_attach, |
||
| 483 | 'blank_id_member' => 0, |
||
| 484 | ) |
||
| 485 | )->fetch_callback( |
||
| 486 | function ($row) use (&$avatarData) { |
||
| 487 | $avatarData = $row; |
||
| 488 | } |
||
| 489 | ); |
||
| 490 | |||
| 491 | Cache::instance()->put('getAvatar_id-' . $this->id_attach, $avatarData, 900); |
||
| 492 | |||
| 493 | return $avatarData; |
||
| 494 | } |
||
| 495 | |||
| 496 | /** |
||
| 497 | * Get the specified attachment. |
||
| 498 | * |
||
| 499 | * What it does: |
||
| 500 | * |
||
| 501 | * - This includes a check of the topic |
||
| 502 | * - it only returns the attachment if it's indeed attached to a message in the topic given as parameter, and |
||
| 503 | * query_see_board... |
||
| 504 | * - Must return the same array keys as getAvatar() and getAttachmentThumbFromTopic() |
||
| 505 | * |
||
| 506 | * @param int $id_topic |
||
| 507 | * |
||
| 508 | * @return array |
||
| 509 | * @package Attachments |
||
| 510 | */ |
||
| 511 | protected function getFromTopic($id_topic) |
||
| 536 | } |
||
| 537 | |||
| 538 | /** |
||
| 539 | * Get the thumbnail of specified attachment. |
||
| 540 | * |
||
| 541 | * What it does: |
||
| 542 | * |
||
| 543 | * - This includes a check of the topic |
||
| 544 | * - it only returns the attachment if it's indeed attached to a message in the topic given as parameter, and |
||
| 545 | * query_see_board... |
||
| 546 | * - Must return the same array keys as getAvatar() & getAttachmentFromTopic |
||
| 547 | * |
||
| 548 | * @param int $id_topic |
||
| 549 | * |
||
| 550 | * @return array |
||
| 551 | * @package Attachments |
||
| 552 | */ |
||
| 553 | function getThumbFromTopic($id_topic) |
||
| 615 | } |
||
| 616 | } |