File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/src/Application/Commands/User/Provider/GetProvidersCommandHandler.php
Back
<?php namespace AmeliaBooking\Application\Commands\User\Provider; use AmeliaBooking\Application\Commands\CommandHandler; use AmeliaBooking\Application\Commands\CommandResult; use AmeliaBooking\Application\Common\Exceptions\AccessDeniedException; use AmeliaBooking\Application\Services\User\ProviderApplicationService; use AmeliaBooking\Domain\Common\Exceptions\InvalidArgumentException; use AmeliaBooking\Domain\Entity\Entities; use AmeliaBooking\Domain\Collection\AbstractCollection; use AmeliaBooking\Domain\Entity\User\AbstractUser; use AmeliaBooking\Domain\Services\Settings\SettingsService; use AmeliaBooking\Infrastructure\Common\Exceptions\QueryExecutionException; use AmeliaBooking\Infrastructure\Repository\User\ProviderRepository; use Interop\Container\Exception\ContainerException; use Slim\Exception\ContainerValueNotFoundException; /** * Class GetProvidersCommandHandler * * @package AmeliaBooking\Application\Commands\User\Provider */ class GetProvidersCommandHandler extends CommandHandler { /** * @param GetProvidersCommand $command * * @return CommandResult * @throws ContainerValueNotFoundException * @throws QueryExecutionException * @throws ContainerException * @throws AccessDeniedException * @throws InvalidArgumentException */ public function handle(GetProvidersCommand $command) { if (!$this->getContainer()->getPermissionsService()->currentUserCanRead(Entities::EMPLOYEES)) { throw new AccessDeniedException('You are not allowed to read employees.'); } $result = new CommandResult(); /** @var ProviderRepository $providerRepository */ $providerRepository = $this->container->get('domain.users.providers.repository'); /** @var ProviderApplicationService $providerService */ $providerService = $this->container->get('application.user.provider.service'); /** @var SettingsService $settingsService */ $settingsService = $this->container->get('domain.settings.service'); $itemsPerPage = $settingsService->getSetting('general', 'itemsPerPage'); $companyDaysOff = $settingsService->getCategorySettings('daysOff'); $params = $command->getField('params'); if (!$this->getContainer()->getPermissionsService()->currentUserCanReadOthers(Entities::EMPLOYEES)) { /** @var AbstractUser $currentUser */ $currentUser = $this->container->get('logged.in.user'); $params['providers'][] = $currentUser->getId()->getValue(); } $providers = $providerRepository->getFiltered($params, $itemsPerPage); if (!$providers instanceof AbstractCollection) { $result->setResult(CommandResult::RESULT_ERROR); $result->setMessage('Could not get users'); return $result; } $result->setResult(CommandResult::RESULT_SUCCESS); $result->setMessage('Successfully retrieved users.'); $providers = $providers->toArray(); $companyDayOff = $providerService->checkIfTodayIsCompanyDayOff($companyDaysOff); $providers = $providerService->manageProvidersActivity($providers, $companyDayOff); $result->setData([ Entities::USERS => $providers, 'countFiltered' => (int)$providerRepository->getCount($command->getField('params')), 'countTotal' => (int)$providerRepository->getCount([]), ]); return $result; } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings