PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 1.2.20
Booking for Appointments and Events Calendar – Amelia v1.2.20
2.4.3 2.4.2 2.4.1 2.4 trunk 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.27 1.2.28 1.2.29 1.2.3 1.2.30 1.2.31 1.2.32 1.2.33 1.2.34 1.2.35 1.2.36 1.2.37 1.2.38 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.0.1 2.0.2 2.1 2.1.1 2.1.2 2.1.3 2.2 2.2.1 2.3
ameliabooking / src / Application / Commands / Booking / Appointment / CancelBookingRemotelyCommandHandler.php
ameliabooking / src / Application / Commands / Booking / Appointment Last commit date
AddAppointmentCommand.php 7 years ago AddAppointmentCommandHandler.php 1 year ago AddBookingCommand.php 7 years ago AddBookingCommandHandler.php 1 year ago ApproveBookingRemotelyCommand.php 2 years ago ApproveBookingRemotelyCommandHandler.php 1 year ago CancelBookingCommand.php 7 years ago CancelBookingCommandHandler.php 2 years ago CancelBookingRemotelyCommand.php 7 years ago CancelBookingRemotelyCommandHandler.php 2 years ago DeleteAppointmentCommand.php 7 years ago DeleteAppointmentCommandHandler.php 2 years ago DeleteBookingCommand.php 4 years ago DeleteBookingCommandHandler.php 2 years ago GetAppointmentCommand.php 7 years ago GetAppointmentCommandHandler.php 1 year ago GetAppointmentsCommand.php 7 years ago GetAppointmentsCommandHandler.php 1 year ago GetIcsCommand.php 5 years ago GetIcsCommandHandler.php 4 years ago GetPackageAppointmentsCommand.php 1 year ago GetPackageAppointmentsCommandHandler.php 1 year ago GetTimeSlotsCommand.php 7 years ago GetTimeSlotsCommandHandler.php 1 year ago ReassignBookingCommand.php 5 years ago ReassignBookingCommandHandler.php 1 year ago RejectBookingRemotelyCommand.php 2 years ago RejectBookingRemotelyCommandHandler.php 1 year ago SuccessfulBookingCommand.php 7 years ago SuccessfulBookingCommandHandler.php 1 year ago UpdateAppointmentCommand.php 7 years ago UpdateAppointmentCommandHandler.php 1 year ago UpdateAppointmentStatusCommand.php 7 years ago UpdateAppointmentStatusCommandHandler.php 1 year ago UpdateAppointmentTimeCommand.php 7 years ago UpdateAppointmentTimeCommandHandler.php 1 year ago UpdateBookingStatusCommand.php 1 year ago UpdateBookingStatusCommandHandler.php 1 year ago
CancelBookingRemotelyCommandHandler.php
139 lines
1 <?php
2
3 namespace AmeliaBooking\Application\Commands\Booking\Appointment;
4
5 use AmeliaBooking\Application\Commands\CommandHandler;
6 use AmeliaBooking\Application\Commands\CommandResult;
7 use AmeliaBooking\Application\Common\Exceptions\AccessDeniedException;
8 use AmeliaBooking\Application\Services\User\CustomerApplicationService;
9 use AmeliaBooking\Domain\Common\Exceptions\BookingCancellationException;
10 use AmeliaBooking\Domain\Entity\Booking\Appointment\CustomerBooking;
11 use AmeliaBooking\Domain\Entity\Entities;
12 use AmeliaBooking\Domain\Entity\User\AbstractUser;
13 use AmeliaBooking\Domain\Services\Reservation\ReservationServiceInterface;
14 use AmeliaBooking\Domain\Services\Settings\SettingsService;
15 use AmeliaBooking\Domain\Common\Exceptions\InvalidArgumentException;
16 use AmeliaBooking\Domain\ValueObjects\String\BookingStatus;
17 use AmeliaBooking\Domain\ValueObjects\String\Token;
18 use AmeliaBooking\Infrastructure\Common\Exceptions\NotFoundException;
19 use AmeliaBooking\Infrastructure\Common\Exceptions\QueryExecutionException;
20 use AmeliaBooking\Infrastructure\Repository\Booking\Appointment\CustomerBookingRepository;
21 use AmeliaBooking\Infrastructure\WP\Translations\BackendStrings;
22 use Slim\Exception\ContainerException;
23 use Slim\Exception\ContainerValueNotFoundException;
24 use UnexpectedValueException;
25
26 /**
27 * Class CancelBookingRemotelyCommandHandler
28 *
29 * @package AmeliaBooking\Application\Commands\Booking\Appointment
30 */
31 class CancelBookingRemotelyCommandHandler extends CommandHandler
32 {
33 /**
34 * @var array
35 */
36 public $mandatoryFields = [
37 'token',
38 ];
39
40 /**
41 * @param CancelBookingRemotelyCommand $command
42 *
43 * @return CommandResult
44 * @throws UnexpectedValueException
45 * @throws ContainerException
46 * @throws \InvalidArgumentException
47 * @throws ContainerValueNotFoundException
48 * @throws QueryExecutionException
49 * @throws InvalidArgumentException
50 * @throws AccessDeniedException
51 * @throws \Interop\Container\Exception\ContainerException
52 * @throws NotFoundException
53 */
54 public function handle(CancelBookingRemotelyCommand $command)
55 {
56 $this->checkMandatoryFields($command);
57
58 $result = new CommandResult();
59
60 $type = $command->getField('type') ?: Entities::APPOINTMENT;
61
62 /** @var CustomerApplicationService $customerAS */
63 $customerAS = $this->container->get('application.user.customer.service');
64 /** @var CustomerBookingRepository $bookingRepository */
65 $bookingRepository = $this->container->get('domain.booking.customerBooking.repository');
66
67 /** @var AbstractUser $user */
68 $user = $this->container->get('logged.in.user');
69
70 /** @var CustomerBooking $booking */
71 $booking = $bookingRepository->getById((int)$command->getArg('id'));
72
73 if (!$booking) {
74 $result->setData(['message' => "Booking doesn't exists"]);
75 return $result;
76 }
77
78 $token = $bookingRepository->getToken((int)$command->getArg('id'));
79
80 if (empty($token['token'])) {
81 throw new AccessDeniedException('You are not allowed to update booking status');
82 }
83
84 $booking->setToken(new Token($token['token']));
85
86 if (!$customerAS->isCustomerBooking($booking, $user, $command->getField('token'))) {
87 throw new AccessDeniedException('You are not allowed to update booking status');
88 }
89
90 /** @var ReservationServiceInterface $reservationService */
91 $reservationService = $this->container->get('application.reservation.service')->get($type);
92
93 /** @var SettingsService $settingsService */
94 $settingsService = $this->container->get('domain.settings.service');
95
96 $status = BookingStatus::CANCELED;
97
98 do_action('amelia_before_booking_canceled', $booking ? $booking->toArray() : null);
99
100 try {
101 $bookingData = $reservationService->updateStatus($booking, $status);
102
103 $result->setResult(CommandResult::RESULT_SUCCESS);
104 $result->setMessage('Successfully updated booking status');
105 $result->setData(
106 array_merge(
107 $bookingData,
108 [
109 'type' => $type,
110 'status' => $status,
111 'message' => BackendStrings::getAppointmentStrings()['appointment_status_changed'] . strtolower(BackendStrings::getCommonStrings()[$status])
112 ]
113 )
114 );
115 } catch (BookingCancellationException $e) {
116 $result->setResult(CommandResult::RESULT_ERROR);
117 }
118
119 $notificationSettings = $settingsService->getCategorySettings('notifications');
120
121 if (!empty($command->getField('fromForm'))) {
122 $result->setData(['fromForm' => true]);
123 return $result;
124 }
125
126 if ($notificationSettings['cancelSuccessUrl'] && $result->getResult() === CommandResult::RESULT_SUCCESS) {
127 $result->setUrl($notificationSettings['cancelSuccessUrl']);
128
129 do_action('amelia_after_booking_canceled', $booking ? $booking->toArray() : null);
130 } elseif ($notificationSettings['cancelErrorUrl'] && $result->getResult() === CommandResult::RESULT_ERROR) {
131 $result->setUrl($notificationSettings['cancelErrorUrl']);
132 } else {
133 $result->setUrl('/');
134 }
135
136 return $result;
137 }
138 }
139