. */ namespace Poniverse\Ponyfm\Mail; use Carbon\Carbon; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; use Poniverse\Ponyfm\Models\Activity; use Poniverse\Ponyfm\Models\Email; abstract class BaseNotification extends Mailable { use Queueable, SerializesModels; /** @var Email */ protected $emailRecord; /** @var \Poniverse\Ponyfm\Models\Notification */ protected $notificationRecord; /** @var \Poniverse\Ponyfm\Models\Activity */ protected $activityRecord; /** @var \Poniverse\Ponyfm\Models\User */ protected $initiatingUser; /** * Create a new message instance. * * @param Email $email */ public function __construct(Email $email) { $this->emailRecord = $email; $this->notificationRecord = $email->notification; $this->activityRecord = $email->notification->activity; $this->initiatingUser = $email->notification->activity->initiatingUser; } /** * Factory method that instantiates the appropriate {@link BaseNotification} * subclass for the given activity type and {@link Email} record. * * @param Activity $activity * @param Email $email * @return BaseNotification */ static public function factory(Activity $activity, Email $email): BaseNotification { switch ($activity->activity_type) { case Activity::TYPE_NEWS: break; case Activity::TYPE_PUBLISHED_TRACK: return new NewTrack($email); case Activity::TYPE_PUBLISHED_ALBUM: break; case Activity::TYPE_PUBLISHED_PLAYLIST: return new NewPlaylist($email); case Activity::TYPE_NEW_FOLLOWER: return new NewFollower($email); case Activity::TYPE_NEW_COMMENT: return new NewComment($email); case Activity::TYPE_CONTENT_FAVOURITED: return new ContentFavourited($email); default: break; } throw new \InvalidArgumentException("Email notifications for activity type {$activity->activity_type} are not implemented!"); } /** * Build the message. * * @return $this */ abstract public function build(); /** * Generates an unsubscribe URL unique to the user. * * @return string */ protected function generateUnsubscribeUrl() { return route('email:unsubscribe', ['subscriptionKey' => $this->emailRecord->getSubscription()->id]); } /** * Generates a trackable URL to the content item this email is about. * * @return string */ protected function generateNotificationUrl() { return route('email:click', ['emailKey' => $this->emailRecord->id]); } /** * Helper method to eliminate duplication between different types of * notifications. Use it inside the build() method on this class's children. * * Note that data common to all notification types is merged into the * template variable array. * * @param string $templateName * @param string $subject * @param array $extraVariables * @return $this */ protected function renderEmail(string $templateName, string $subject, array $extraVariables) { return $this ->subject($subject) ->view("emails.html.notifications.{$templateName}") ->text("emails.plaintext.notifications.{$templateName}") ->with(array_merge($extraVariables, [ 'notificationUrl' => $this->generateNotificationUrl(), 'unsubscribeUrl' => $this->generateUnsubscribeUrl(), 'thumbnailUrl' => $this->activityRecord->thumbnail_url, 'recipientName' => $this->emailRecord->getUser()->display_name, 'accountSettingsUrl' => $this->emailRecord->getUser()->getSettingsUrl(), 'replyEmailAddress' => config('mail.from.address'), 'currentYear' => Carbon::now()->year, ])); } }