Inheritance: extends BaseItemEvent
Example #1
0
 /**
  * 記事にコメントがついた時のメール通知
  *
  * @param CommentEvent  $event
  */
 public function onGetComment(CommentEvent $event)
 {
     $item = $this->itemService->getByOpenItemId($event->getId());
     $recipient = $this->userService->getById($item->user_id);
     $sender = $this->userService->getById($event->getUserId());
     if ($this->userRoleService->isRetire($recipient->id)) {
         return false;
     }
     if ($this->areUsersSame($recipient, $sender)) {
         return false;
     } elseif (!$this->notificationIsEnabled('comment', $recipient->id)) {
         return false;
     }
     $data = $this->getDataForMail($item, $recipient, $sender);
     $data['comment'] = $event->getComment();
     $this->mail->send('emails.action.comment', $data, function ($m) use($recipient, $sender) {
         $m->to($recipient->email)->subject($sender->username . 'さんからコメントがつきました - Owl');
     });
 }
Example #2
0
 public function testShouldReturnComment()
 {
     $expectedComment = 'comment';
     $event = new CommentEvent('itemId', 'userId', $expectedComment);
     $this->assertEquals($expectedComment, $event->getComment());
 }