File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/src/Application/Commands/Bookable/Service/AddServiceCommandHandler.php
Back
<?php /** * @copyright © TMS-Plugins. All rights reserved. * @licence See LICENCE.md for license details. */ namespace AmeliaBooking\Application\Commands\Bookable\Service; use AmeliaBooking\Application\Commands\CommandHandler; use AmeliaBooking\Application\Commands\CommandResult; use AmeliaBooking\Application\Common\Exceptions\AccessDeniedException; use AmeliaBooking\Application\Services\Bookable\BookableApplicationService; use AmeliaBooking\Application\Services\Gallery\GalleryApplicationService; use AmeliaBooking\Domain\Collection\Collection; use AmeliaBooking\Domain\Common\Exceptions\InvalidArgumentException; use AmeliaBooking\Domain\Entity\Bookable\Service\Category; use AmeliaBooking\Domain\Entity\Bookable\Service\Service; use AmeliaBooking\Domain\Entity\Entities; use AmeliaBooking\Domain\Factory\Bookable\Service\ServiceFactory; use AmeliaBooking\Domain\ValueObjects\Number\Integer\Id; use AmeliaBooking\Infrastructure\Common\Exceptions\QueryExecutionException; use AmeliaBooking\Infrastructure\Repository\Bookable\Service\CategoryRepository; use AmeliaBooking\Infrastructure\Repository\Bookable\Service\ServiceRepository; use AmeliaBooking\Infrastructure\Repository\User\ProviderRepository; /** * Class AddServiceCommandHandler * * @package AmeliaBooking\Application\Commands\Bookable\Service */ class AddServiceCommandHandler extends CommandHandler { /** @var array */ public $mandatoryFields = [ 'categoryId', 'duration', 'maxCapacity', 'minCapacity', 'name', 'price', 'providers' ]; /** * @param AddServiceCommand $command * * @return CommandResult * @throws \Slim\Exception\ContainerValueNotFoundException * @throws InvalidArgumentException * @throws QueryExecutionException * @throws AccessDeniedException * @throws \Interop\Container\Exception\ContainerException * @throws \AmeliaBooking\Infrastructure\Common\Exceptions\NotFoundException */ public function handle(AddServiceCommand $command) { if (!$this->getContainer()->getPermissionsService()->currentUserCanWrite(Entities::SERVICES)) { throw new AccessDeniedException('You are not allowed to add service.'); } $result = new CommandResult(); $this->checkMandatoryFields($command); /** @var Service $service */ $service = ServiceFactory::create($command->getFields()); if (!$service instanceof Service) { $result->setResult(CommandResult::RESULT_ERROR); $result->setMessage('Could not create service.'); return $result; } /** @var ServiceRepository $serviceRepository */ $serviceRepository = $this->container->get('domain.bookable.service.repository'); /** @var BookableApplicationService $bookableService */ $bookableService = $this->container->get('application.bookable.service'); /** @var GalleryApplicationService $galleryService */ $galleryService = $this->container->get('application.gallery.service'); /** @var ProviderRepository $providerRepository */ $providerRepository = $this->container->get('domain.users.providers.repository'); /** @var CategoryRepository $categoryRepository */ $categoryRepository = $this->container->get('domain.bookable.category.repository'); $serviceRepository->beginTransaction(); /** @var Category $category */ $category = $categoryRepository->getById($service->getCategoryId()->getValue()); if (!$category || !($serviceId = $serviceRepository->add($service))) { $serviceRepository->rollback(); $result->setResult(CommandResult::RESULT_ERROR); $result->setMessage('Could not create service.'); return $result; } $service->setId(new Id($serviceId)); /** @var Collection $providers */ $providers = $command->getField('providers') ? $providerRepository->getFiltered(['providers' => $command->getField('providers')], 0) : new Collection(); $bookableService->manageProvidersForServiceAdd($service, $providers); $bookableService->manageExtrasForServiceAdd($service); $galleryService->manageGalleryForEntityAdd($service->getGallery(), $serviceId); $serviceRepository->commit(); $result->setResult(CommandResult::RESULT_SUCCESS); $result->setMessage('Successfully added new service.'); $result->setData( [ Entities::SERVICE => $service->toArray(), ] ); return $result; } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings