| Total Complexity | 67 |
| Total Lines | 570 |
| Duplicated Lines | 0 % |
| Changes | 9 | ||
| Bugs | 0 | Features | 0 |
Complex classes like Mail 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 Mail, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 20 | class Mail extends GmailConnection |
||
| 21 | { |
||
| 22 | |||
| 23 | use HasDecodableBody, |
||
| 24 | Modifiable, |
||
| 25 | HasParts, |
||
| 26 | Replyable { |
||
| 27 | Replyable::__construct as private __rConstruct; |
||
| 28 | Modifiable::__construct as private __mConstruct; |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var |
||
| 33 | */ |
||
| 34 | public $id; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @var |
||
| 38 | */ |
||
| 39 | public $internalDate; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @var |
||
| 43 | */ |
||
| 44 | public $labels; |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @var |
||
| 48 | */ |
||
| 49 | public $size; |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @var |
||
| 53 | */ |
||
| 54 | public $threadId; |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @var \Google_Service_Gmail_MessagePart |
||
| 58 | */ |
||
| 59 | public $payload; |
||
| 60 | |||
| 61 | public $parts; |
||
| 62 | |||
| 63 | /** |
||
| 64 | * @var Google_Service_Gmail |
||
| 65 | */ |
||
| 66 | public $service; |
||
| 67 | |||
| 68 | /** |
||
| 69 | * SingleMessage constructor. |
||
| 70 | * |
||
| 71 | * @param \Google_Service_Gmail_Message $message |
||
| 72 | * @param bool $preload |
||
| 73 | * @param int $userId |
||
| 74 | */ |
||
| 75 | public function __construct(\Google_Service_Gmail_Message $message = null, $preload = false, $userId = null) |
||
| 76 | { |
||
| 77 | $this->service = new Google_Service_Gmail($this); |
||
| 78 | |||
| 79 | $this->__rConstruct(); |
||
| 80 | $this->__mConstruct(); |
||
| 81 | parent::__construct(config(), $userId); |
||
| 82 | |||
| 83 | if (!is_null($message)) { |
||
| 84 | if ($preload) { |
||
| 85 | $message = $this->service->users_messages->get('me', $message->getId()); |
||
| 86 | } |
||
| 87 | |||
| 88 | $this->setMessage($message); |
||
| 89 | |||
| 90 | if ($preload) { |
||
| 91 | $this->setMetadata(); |
||
| 92 | } |
||
| 93 | } |
||
| 94 | } |
||
| 95 | |||
| 96 | /** |
||
| 97 | * Sets data from mail |
||
| 98 | * |
||
| 99 | * @param \Google_Service_Gmail_Message $message |
||
| 100 | */ |
||
| 101 | protected function setMessage(\Google_Service_Gmail_Message $message) |
||
| 102 | { |
||
| 103 | $this->id = $message->getId(); |
||
| 104 | $this->internalDate = $message->getInternalDate(); |
||
| 105 | $this->labels = $message->getLabelIds(); |
||
| 106 | $this->size = $message->getSizeEstimate(); |
||
| 107 | $this->threadId = $message->getThreadId(); |
||
| 108 | $this->payload = $message->getPayload(); |
||
| 109 | if ($this->payload) { |
||
| 110 | $this->parts = collect($this->payload->getParts()); |
||
| 111 | } |
||
| 112 | } |
||
| 113 | |||
| 114 | /** |
||
| 115 | * Sets the metadata from Mail when preloaded |
||
| 116 | */ |
||
| 117 | protected function setMetadata() |
||
| 118 | { |
||
| 119 | $this->to = $this->getTo(); |
||
| 120 | $from = $this->getFrom(); |
||
| 121 | $this->from = isset($from['email']) ? $from['email'] : null; |
||
| 122 | $this->nameFrom = isset($from['email']) ? $from['email'] : null; |
||
| 123 | |||
| 124 | $this->subject = $this->getSubject(); |
||
| 125 | } |
||
| 126 | |||
| 127 | /** |
||
| 128 | * Return a UNIX version of the date |
||
| 129 | * |
||
| 130 | * @return int UNIX date |
||
| 131 | */ |
||
| 132 | public function getInternalDate() |
||
| 135 | } |
||
| 136 | |||
| 137 | /** |
||
| 138 | * Returns the labels of the email |
||
| 139 | * Example: INBOX, STARRED, UNREAD |
||
| 140 | * |
||
| 141 | * @return array |
||
| 142 | */ |
||
| 143 | public function getLabels() |
||
| 144 | { |
||
| 145 | return $this->labels; |
||
| 146 | } |
||
| 147 | |||
| 148 | /** |
||
| 149 | * Returns approximate size of the email |
||
| 150 | * |
||
| 151 | * @return mixed |
||
| 152 | */ |
||
| 153 | public function getSize() |
||
| 154 | { |
||
| 155 | return $this->size; |
||
| 156 | } |
||
| 157 | |||
| 158 | /** |
||
| 159 | * Returns thread ID of the email |
||
| 160 | * |
||
| 161 | * @return string |
||
| 162 | */ |
||
| 163 | public function getThreadId() |
||
| 164 | { |
||
| 165 | return $this->threadId; |
||
| 166 | } |
||
| 167 | |||
| 168 | /** |
||
| 169 | * Returns all the headers of the email |
||
| 170 | * |
||
| 171 | * @return Collection |
||
| 172 | */ |
||
| 173 | public function getHeaders() |
||
| 174 | { |
||
| 175 | return $this->buildHeaders($this->payload->getHeaders()); |
||
| 176 | } |
||
| 177 | |||
| 178 | /** |
||
| 179 | * Returns the subject of the email |
||
| 180 | * |
||
| 181 | * @return string |
||
| 182 | */ |
||
| 183 | public function getSubject() |
||
| 186 | } |
||
| 187 | |||
| 188 | /** |
||
| 189 | * Returns the subject of the email |
||
| 190 | * |
||
| 191 | * @return array|string |
||
| 192 | */ |
||
| 193 | public function getReplyTo() |
||
| 198 | } |
||
| 199 | |||
| 200 | /** |
||
| 201 | * Returns array of name and email of each recipient |
||
| 202 | * |
||
| 203 | * @param string|null $email |
||
| 204 | * @return array |
||
| 205 | */ |
||
| 206 | public function getFrom($email = null) |
||
| 217 | ]; |
||
| 218 | } |
||
| 219 | |||
| 220 | /** |
||
| 221 | * Returns email of sender |
||
| 222 | * |
||
| 223 | * @return string|null |
||
| 224 | */ |
||
| 225 | public function getFromEmail() |
||
| 236 | } |
||
| 237 | |||
| 238 | /** |
||
| 239 | * Returns name of the sender |
||
| 240 | * |
||
| 241 | * @return string|null |
||
| 242 | */ |
||
| 243 | public function getFromName() |
||
| 244 | { |
||
| 245 | $from = $this->getHeader('From'); |
||
| 246 | |||
| 247 | $name = preg_replace('/ <(.*)>/', '', $from); |
||
| 248 | |||
| 249 | return $name; |
||
| 250 | } |
||
| 251 | |||
| 252 | /** |
||
| 253 | * Returns array list of recipients |
||
| 254 | * |
||
| 255 | * @return array |
||
| 256 | */ |
||
| 257 | public function getTo() |
||
| 262 | } |
||
| 263 | |||
| 264 | /** |
||
| 265 | * Returns array list of cc recipients |
||
| 266 | * |
||
| 267 | * @return array |
||
| 268 | */ |
||
| 269 | public function getCc() |
||
| 270 | { |
||
| 271 | $allCc = $this->getHeader('Cc'); |
||
| 272 | |||
| 273 | return $this->formatEmailList($allCc); |
||
| 274 | } |
||
| 275 | |||
| 276 | /** |
||
| 277 | * Returns array list of bcc recipients |
||
| 278 | * |
||
| 279 | * @return array |
||
| 280 | */ |
||
| 281 | public function getBcc() |
||
| 282 | { |
||
| 283 | $allBcc = $this->getHeader('Bcc'); |
||
| 284 | |||
| 285 | return $this->formatEmailList($allBcc); |
||
| 286 | } |
||
| 287 | |||
| 288 | /** |
||
| 289 | * Returns an array of emails from an string in RFC 822 format |
||
| 290 | * |
||
| 291 | * @param string $emails email list in RFC 822 format |
||
| 292 | * |
||
| 293 | * @return array |
||
| 294 | */ |
||
| 295 | public function formatEmailList($emails) |
||
| 296 | { |
||
| 297 | $all = []; |
||
| 298 | $explodedEmails = explode(',', $emails); |
||
| 299 | |||
| 300 | foreach ($explodedEmails as $email) { |
||
| 301 | |||
| 302 | $item = []; |
||
| 303 | |||
| 304 | preg_match('/<(.*)>/', $email, $matches); |
||
| 305 | |||
| 306 | $item['email'] = str_replace(' ', '', isset($matches[1]) ? $matches[1] : $email); |
||
| 307 | |||
| 308 | $name = preg_replace('/ <(.*)>/', '', $email); |
||
| 309 | |||
| 310 | if (starts_with($name, ' ')) { |
||
| 311 | $name = substr($name, 1); |
||
| 312 | } |
||
| 313 | |||
| 314 | $item['name'] = str_replace("\"", '', $name ?: null); |
||
| 315 | |||
| 316 | $all[] = $item; |
||
| 317 | |||
| 318 | } |
||
| 319 | |||
| 320 | return $all; |
||
| 321 | } |
||
| 322 | |||
| 323 | /** |
||
| 324 | * Returns the original date that the email was sent |
||
| 325 | * |
||
| 326 | * @return Carbon |
||
| 327 | */ |
||
| 328 | public function getDate() |
||
| 329 | { |
||
| 330 | return Carbon::parse($this->getHeader('Date')); |
||
| 331 | } |
||
| 332 | |||
| 333 | /** |
||
| 334 | * Returns email of the original recipient |
||
| 335 | * |
||
| 336 | * @return string |
||
| 337 | */ |
||
| 338 | public function getDeliveredTo() |
||
| 339 | { |
||
| 340 | return $this->getHeader('Delivered-To'); |
||
| 341 | } |
||
| 342 | |||
| 343 | /** |
||
| 344 | * Base64 version of the body |
||
| 345 | * |
||
| 346 | * @return string |
||
| 347 | */ |
||
| 348 | public function getRawPlainTextBody() |
||
| 349 | { |
||
| 350 | return $this->getPlainTextBody(true); |
||
| 351 | } |
||
| 352 | |||
| 353 | /** |
||
| 354 | * @param bool $raw |
||
| 355 | * |
||
| 356 | * @return string |
||
| 357 | */ |
||
| 358 | public function getPlainTextBody($raw = false) |
||
| 363 | } |
||
| 364 | |||
| 365 | /** |
||
| 366 | * Returns a specific body part from an email |
||
| 367 | * |
||
| 368 | * @param string $type |
||
| 369 | * |
||
| 370 | * @return null|string |
||
| 371 | * @throws \Exception |
||
| 372 | */ |
||
| 373 | public function getBody($type = 'text/plain') |
||
| 374 | { |
||
| 375 | $parts = $this->getAllParts($this->parts); |
||
| 376 | |||
| 377 | try { |
||
| 378 | if (!$parts->isEmpty()) { |
||
| 379 | foreach ($parts as $part) { |
||
| 380 | if ($part->mimeType == $type) { |
||
| 381 | return $part->body->data; |
||
| 382 | //if there are no parts in payload, try to get data from body->data |
||
| 383 | } elseif ($this->payload->body->data) { |
||
| 384 | return $this->payload->body->data; |
||
| 385 | } |
||
| 386 | } |
||
| 387 | } else { |
||
| 388 | return $this->payload->body->data; |
||
| 389 | } |
||
| 390 | } catch (\Exception $exception) { |
||
| 391 | throw new \Exception("Preload or load the single message before getting the body."); |
||
| 392 | } |
||
| 393 | |||
| 394 | return null; |
||
| 395 | } |
||
| 396 | |||
| 397 | /** |
||
| 398 | * True if message has at least one attachment. |
||
| 399 | * |
||
| 400 | * @return boolean |
||
| 401 | */ |
||
| 402 | public function hasAttachments() |
||
| 403 | { |
||
| 404 | $parts = $this->getAllParts($this->parts); |
||
| 405 | $has = false; |
||
| 406 | |||
| 407 | /** @var Google_Service_Gmail_MessagePart $part */ |
||
| 408 | foreach ($parts as $part) { |
||
| 409 | if (!empty($part->body->attachmentId) && $part->getFilename() != null && strlen($part->getFilename()) > 0) { |
||
| 410 | $has = true; |
||
| 411 | break; |
||
| 412 | } |
||
| 413 | } |
||
| 414 | |||
| 415 | return $has; |
||
| 416 | } |
||
| 417 | |||
| 418 | /** |
||
| 419 | * Number of attachments of the message. |
||
| 420 | * |
||
| 421 | * @return int |
||
| 422 | */ |
||
| 423 | public function countAttachments() |
||
| 424 | { |
||
| 425 | $numberOfAttachments = 0; |
||
| 426 | $parts = $this->getAllParts($this->parts); |
||
| 427 | |||
| 428 | foreach ($parts as $part) { |
||
| 429 | if (!empty($part->body->attachmentId)) { |
||
| 430 | $numberOfAttachments++; |
||
| 431 | } |
||
| 432 | } |
||
| 433 | |||
| 434 | return $numberOfAttachments; |
||
| 435 | } |
||
| 436 | |||
| 437 | /** |
||
| 438 | * Decodes the body from gmail to make it readable |
||
| 439 | * |
||
| 440 | * @param $content |
||
| 441 | * @return bool|string |
||
| 442 | */ |
||
| 443 | public function getDecodedBody($content) |
||
| 444 | { |
||
| 445 | $content = str_replace('_', '/', str_replace('-', '+', $content)); |
||
| 446 | |||
| 447 | return base64_decode($content); |
||
| 448 | } |
||
| 449 | |||
| 450 | /** |
||
| 451 | * @return string base64 version of the body |
||
| 452 | */ |
||
| 453 | public function getRawHtmlBody() |
||
| 454 | { |
||
| 455 | return $this->getHtmlBody(true); |
||
| 456 | } |
||
| 457 | |||
| 458 | /** |
||
| 459 | * Gets the HTML body |
||
| 460 | * |
||
| 461 | * @param bool $raw |
||
| 462 | * |
||
| 463 | * @return string |
||
| 464 | */ |
||
| 465 | public function getHtmlBody($raw = false) |
||
| 466 | { |
||
| 467 | $content = $this->getBody('text/html'); |
||
| 468 | |||
| 469 | return $raw ? $content : $this->getDecodedBody($content); |
||
| 470 | } |
||
| 471 | |||
| 472 | /** |
||
| 473 | * Get a collection of attachments with full information |
||
| 474 | * |
||
| 475 | * @return Collection |
||
| 476 | * @throws \Exception |
||
| 477 | */ |
||
| 478 | public function getAttachmentsWithData() |
||
| 479 | { |
||
| 480 | return $this->getAttachments(true); |
||
| 481 | } |
||
| 482 | |||
| 483 | /** |
||
| 484 | * Returns a collection of attachments |
||
| 485 | * |
||
| 486 | * @param bool $preload Preload only the attachment's 'data'. |
||
| 487 | * But does not load the other attachment info like filename, mimetype, etc.. |
||
| 488 | * |
||
| 489 | * @return Collection |
||
| 490 | * @throws \Exception |
||
| 491 | */ |
||
| 492 | public function getAttachments($preload = false) |
||
| 493 | { |
||
| 494 | $attachments = new Collection(); |
||
| 495 | $parts = $this->getAllParts($this->parts); |
||
| 496 | |||
| 497 | foreach ($parts as $part) { |
||
| 498 | if (!empty($part->body->attachmentId)) { |
||
| 499 | $attachment = (new Attachment($part->body->attachmentId, $part)); |
||
| 500 | |||
| 501 | if ($preload) { |
||
| 502 | $attachment = $attachment->getData(); |
||
| 503 | } |
||
| 504 | |||
| 505 | $attachments->push($attachment); |
||
| 506 | } |
||
| 507 | } |
||
| 508 | |||
| 509 | return $attachments; |
||
| 510 | } |
||
| 511 | |||
| 512 | /** |
||
| 513 | * Returns ID of the email |
||
| 514 | * |
||
| 515 | * @return string |
||
| 516 | */ |
||
| 517 | public function getId() |
||
| 518 | { |
||
| 519 | return $this->id; |
||
| 520 | } |
||
| 521 | |||
| 522 | /** |
||
| 523 | * Gets the user email from the config file |
||
| 524 | * |
||
| 525 | * @return mixed|null |
||
| 526 | */ |
||
| 527 | public function getUser() |
||
| 528 | { |
||
| 529 | return $this->config('email'); |
||
| 530 | } |
||
| 531 | |||
| 532 | /** |
||
| 533 | * Get's the gmail information from the Mail |
||
| 534 | * |
||
| 535 | * @return Mail |
||
| 536 | */ |
||
| 537 | public function load() |
||
| 542 | } |
||
| 543 | |||
| 544 | /** |
||
| 545 | * Sets the access token in case we wanna use a different token |
||
| 546 | * |
||
| 547 | * @param string $token |
||
| 548 | * |
||
| 549 | * @return Mail |
||
| 550 | */ |
||
| 551 | public function using($token) |
||
| 552 | { |
||
| 553 | $this->setToken($token); |
||
| 554 | |||
| 555 | return $this; |
||
| 556 | } |
||
| 557 | |||
| 558 | /** |
||
| 559 | * checks if message has at least one part without iterating through all parts |
||
| 560 | * |
||
| 561 | * @return bool |
||
| 562 | */ |
||
| 563 | public function hasParts() |
||
| 564 | { |
||
| 565 | return !!$this->iterateParts($this->parts, $returnOnFirstFound = true); |
||
| 566 | } |
||
| 567 | |||
| 568 | /** |
||
| 569 | * Gets all the headers from an email and returns a collections |
||
| 570 | * |
||
| 571 | * @param $emailHeaders |
||
| 572 | * @return Collection |
||
| 573 | */ |
||
| 574 | private function buildHeaders($emailHeaders) |
||
| 590 | } |
||
| 591 | } |
||
| 592 |