File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/src/Application/Commands/Notification/UpdateNotificationStatusCommandHandler.php
Back
<?php namespace AmeliaBooking\Application\Commands\Notification; use AmeliaBooking\Application\Commands\CommandHandler; use AmeliaBooking\Application\Commands\CommandResult; use AmeliaBooking\Application\Common\Exceptions\AccessDeniedException; use AmeliaBooking\Domain\Common\Exceptions\InvalidArgumentException; use AmeliaBooking\Domain\Entity\Entities; use AmeliaBooking\Domain\Entity\Notification\Notification; use AmeliaBooking\Domain\Factory\Notification\NotificationFactory; use AmeliaBooking\Infrastructure\Common\Exceptions\NotFoundException; use AmeliaBooking\Infrastructure\Common\Exceptions\QueryExecutionException; use AmeliaBooking\Infrastructure\Repository\Notification\NotificationRepository; /** * Class UpdateNotificationStatusCommandHandler * * @package AmeliaBooking\Application\Commands\Notification */ class UpdateNotificationStatusCommandHandler extends CommandHandler { public $mandatoryFields = [ 'status' ]; /** * @param UpdateNotificationStatusCommand $command * * @return CommandResult * @throws \Slim\Exception\ContainerValueNotFoundException * @throws AccessDeniedException * @throws InvalidArgumentException * @throws NotFoundException * @throws QueryExecutionException * @throws \Interop\Container\Exception\ContainerException */ public function handle(UpdateNotificationStatusCommand $command) { if (!$this->getContainer()->getPermissionsService()->currentUserCanWrite(Entities::NOTIFICATIONS)) { throw new AccessDeniedException('You are not allowed to update notification'); } $notificationId = (int)$command->getArg('id'); $result = new CommandResult(); $this->checkMandatoryFields($command); /** @var NotificationRepository $notificationRepo */ $notificationRepo = $this->container->get('domain.notification.repository'); if ($notificationRepo->updateFieldById($notificationId, $command->getField('status'), 'status')) { $result->setResult(CommandResult::RESULT_SUCCESS); $result->setMessage('Successfully updated notification.'); $result->setData(true); } return $result; } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings