user = $user; $this->entityManager = $entityManager; $this->userChecker = $userChecker; $this->serviceFactory = $serviceFactory; $this->aclManager = $aclManager; } public function process(Entity $entity, NotificatorParams $params): void { if (!in_array($entity->get('status'), ['Archived', 'Sent', 'Being Imported'])) { return; } if ($params->getOption('isJustSent')) { $previousUserIdList = []; } else { $previousUserIdList = $entity->getFetched('usersIds'); if (!is_array($previousUserIdList)) { $previousUserIdList = []; } } $dateSent = $entity->get('dateSent'); if (!$dateSent) { return; } $dt = null; try { $dt = new DateTime($dateSent); } catch (Exception $e) {} if (!$dt) { return; } if ($dt->diff(new DateTime())->days > self::DAYS_THRESHOLD) { return; } $emailUserIdList = $entity->get('usersIds'); if (is_null($emailUserIdList) || !is_array($emailUserIdList)) { return; } $userIdList = []; foreach ($emailUserIdList as $userId) { if ( !in_array($userId, $userIdList) && !in_array($userId, $previousUserIdList) && $userId != $this->user->id ) { $userIdList[] = $userId; } } $data = [ 'emailId' => $entity->id, 'emailName' => $entity->get('name'), ]; if (!$entity->has('from')) { $this->entityManager->getRepository('Email')->loadFromField($entity); } if (!$entity->has('to')) { $this->entityManager->getRepository('Email')->loadToField($entity); } $person = null; $from = $entity->get('from'); if ($from) { $person = $this->entityManager ->getRepository('EmailAddress') ->getEntityByAddress($from, null, ['User', 'Contact', 'Lead']); if ($person) { $data['personEntityType'] = $person->getEntityType(); $data['personEntityName'] = $person->get('name'); $data['personEntityId'] = $person->id; } } $userIdFrom = null; if ($person && $person->getEntityType() == 'User') { $userIdFrom = $person->id; } if (empty($data['personEntityId'])) { $data['fromString'] = EmailService::parseFromName($entity->get('fromString')); if (empty($data['fromString']) && $from) { $data['fromString'] = $from; } } $parent = null; if ($entity->get('parentId') && $entity->get('parentType')) { $parent = $this->entityManager->getEntity($entity->get('parentType'), $entity->get('parentId')); } $account = null; if ($entity->get('accountId')) { $account = $this->entityManager->getEntity('Account', $entity->get('accountId')); } foreach ($userIdList as $userId) { if (!$userId) { continue; } if ($userIdFrom === $userId) { continue; } if ($entity->getLinkMultipleColumn('users', 'inTrash', $userId)) { continue; } if (!$this->userChecker->checkAssignment('Email', $userId)) { continue; } if ( $params->getOption('isBeingImported') || $params->getOption('isJustSent') ) { $folderId = $entity->getLinkMultipleColumn('users', 'folderId', $userId); if ($folderId) { if ( $this->entityManager ->getRepository('EmailFolder') ->where([ 'id' => $folderId, 'skipNotifications' => true, ]) ->count() ) { continue; } } } $user = $this->entityManager->getEntity('User', $userId); if (!$user) { continue; } if ($user->isPortal()) { continue; } if (!$this->aclManager->checkScope($user, 'Email')) { continue; } if ( $entity->get('status') == 'Archived' || $params->getOption('isBeingImported') ) { if ($parent) { if ($this->getStreamService()->checkIsFollowed($parent, $userId)) { continue; } } if ($account) { if ($this->getStreamService()->checkIsFollowed($account, $userId)) { continue; } } } if ( $this->entityManager ->getRepository('Notification') ->where([ 'type' => 'EmailReceived', 'userId' => $userId, 'relatedId' => $entity->id, 'relatedType' => 'Email', ]) ->select(['id']) ->findOne() ) { continue; } $notification = $this->entityManager->getEntity('Notification'); $notification->set([ 'type' => 'EmailReceived', 'userId' => $userId, 'data' => $data, 'relatedId' => $entity->getId(), 'relatedType' => 'Email', ]); $this->entityManager->saveEntity($notification); } } private function getStreamService(): StreamService { if (empty($this->streamService)) { $this->streamService = $this->serviceFactory->create('Stream'); } return $this->streamService; } }