. */ namespace SP\Providers\Notification; use DI\Container; use DI\DependencyException; use DI\NotFoundException; use Exception; use SP\Core\Events\Event; use SP\Core\Events\EventReceiver; use SP\DataModel\NotificationData; use SP\Providers\EventsTrait; use SP\Providers\Provider; use SP\Services\Notification\NotificationService; use SplSubject; /** * Class NotificationHandler * * @package SP\Providers\Notification */ final class NotificationHandler extends Provider implements EventReceiver { use EventsTrait; const EVENTS = [ 'request.account', 'show.account.link' ]; /** * @var NotificationService */ private $notificationService; /** * @var string */ private $events; /** * Devuelve los eventos que implementa el observador * * @return array */ public function getEvents(): array { return self::EVENTS; } /** * Devuelve los eventos que implementa el observador en formato cadena * * @return string */ public function getEventsString(): string { return $this->events; } /** * Receive update from subject * * @link http://php.net/manual/en/splobserver.update.php * * @param SplSubject $subject

* The SplSubject notifying the observer of an update. *

* * @return void * @since 5.1.0 */ public function update(SplSubject $subject) { $this->updateEvent('update', new Event($subject)); } /** * Evento de actualización * * @param string $eventType Nombre del evento * @param Event $event Objeto del evento */ public function updateEvent(string $eventType, Event $event) { switch ($eventType) { case 'request.account': $this->requestAccountNotification($event); break; case 'show.account.link': $this->showAccountLinkNotification($event); break; } } /** * @param Event $event */ private function requestAccountNotification(Event $event) { $eventMessage = $event->getEventMessage(); $data = $eventMessage->getExtra(); foreach ($data['userId'] as $userId) { $notificationData = new NotificationData(); $notificationData->setType(__('Request')); $notificationData->setComponent(__('Accounts')); $notificationData->setUserId($userId); $notificationData->setDescription($eventMessage, true); $this->notify($notificationData); } } /** * @param NotificationData $notificationData */ private function notify(NotificationData $notificationData) { try { $this->notificationService->create($notificationData); } catch (Exception $e) { processException($e); } } /** * @param Event $event */ private function showAccountLinkNotification(Event $event) { $eventMessage = $event->getEventMessage(); $data = $eventMessage->getExtra(); if ($data['notify'][0] === true) { $notificationData = new NotificationData(); $notificationData->setType(__('Notification')); $notificationData->setComponent(__('Accounts')); $notificationData->setUserId($data['userId'][0]); $notificationData->setDescription($eventMessage, true); $this->notify($notificationData); } } /** * @param Container $dic * * @throws DependencyException * @throws NotFoundException */ protected function initialize(Container $dic) { $this->notificationService = $dic->get(NotificationService::class); $this->events = $this->parseEventsToRegex(self::EVENTS); } }