PluginProbe ʕ •ᴥ•ʔ
Booking for Appointments and Events Calendar – Amelia / 1.2.31
Booking for Appointments and Events Calendar – Amelia v1.2.31
2.4.5 2.4.4 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 / CancelBookingCommandHandler.php
ameliabooking / src / Application / Commands / Booking / Appointment Last commit date
AddAppointmentCommand.php 1 year ago AddAppointmentCommandHandler.php 1 year ago AddBookingCommand.php 1 year ago AddBookingCommandHandler.php 1 year ago ApproveBookingRemotelyCommand.php 1 year ago ApproveBookingRemotelyCommandHandler.php 1 year ago CancelBookingCommand.php 1 year ago CancelBookingCommandHandler.php 1 year ago CancelBookingRemotelyCommand.php 1 year ago CancelBookingRemotelyCommandHandler.php 2 years ago DeleteAppointmentCommand.php 1 year ago DeleteAppointmentCommandHandler.php 1 year ago DeleteBookingCommand.php 1 year ago DeleteBookingCommandHandler.php 1 year ago GetAppointmentCommand.php 7 years ago GetAppointmentCommandHandler.php 1 year ago GetAppointmentsCommand.php 1 year ago GetAppointmentsCommandHandler.php 1 year ago GetIcsCommand.php 1 year ago GetIcsCommandHandler.php 4 years ago GetPackageAppointmentsCommand.php 1 year ago GetPackageAppointmentsCommandHandler.php 1 year ago GetTimeSlotsCommand.php 1 year ago GetTimeSlotsCommandHandler.php 1 year ago ReassignBookingCommand.php 1 year ago ReassignBookingCommandHandler.php 1 year ago RejectBookingRemotelyCommand.php 1 year ago RejectBookingRemotelyCommandHandler.php 1 year ago SuccessfulBookingCommand.php 1 year ago SuccessfulBookingCommandHandler.php 1 year ago UpdateAppointmentCommand.php 1 year ago UpdateAppointmentCommandHandler.php 1 year ago UpdateAppointmentStatusCommand.php 1 year ago UpdateAppointmentStatusCommandHandler.php 1 year ago UpdateAppointmentTimeCommand.php 1 year ago UpdateAppointmentTimeCommandHandler.php 1 year ago UpdateBookingStatusCommand.php 1 year ago UpdateBookingStatusCommandHandler.php 1 year ago
CancelBookingCommandHandler.php
120 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\Application\Services\User\UserApplicationService;
10 use AmeliaBooking\Domain\Common\Exceptions\AuthorizationException;
11 use AmeliaBooking\Domain\Common\Exceptions\BookingCancellationException;
12 use AmeliaBooking\Domain\Common\Exceptions\InvalidArgumentException;
13 use AmeliaBooking\Domain\Entity\Booking\Appointment\CustomerBooking;
14 use AmeliaBooking\Domain\Entity\Entities;
15 use AmeliaBooking\Domain\Entity\User\AbstractUser;
16 use AmeliaBooking\Domain\Services\Reservation\ReservationServiceInterface;
17 use AmeliaBooking\Domain\ValueObjects\String\BookingStatus;
18 use AmeliaBooking\Domain\ValueObjects\String\Token;
19 use AmeliaBooking\Infrastructure\Common\Exceptions\NotFoundException;
20 use AmeliaBooking\Infrastructure\Common\Exceptions\QueryExecutionException;
21 use AmeliaBooking\Infrastructure\Repository\Booking\Appointment\CustomerBookingRepository;
22 use AmeliaBooking\Infrastructure\WP\Translations\BackendStrings;
23 use Interop\Container\Exception\ContainerException;
24
25 /**
26 * Class CancelBookingCommandHandler
27 *
28 * @package AmeliaBooking\Application\Commands\Booking\Appointment
29 */
30 class CancelBookingCommandHandler extends CommandHandler
31 {
32 /**
33 * @param CancelBookingCommand $command
34 *
35 * @return CommandResult
36 *
37 * @throws AccessDeniedException
38 * @throws InvalidArgumentException
39 * @throws NotFoundException
40 * @throws QueryExecutionException
41 * @throws ContainerException
42 */
43 public function handle(CancelBookingCommand $command)
44 {
45 $result = new CommandResult();
46
47 $type = $command->getField('type') ?: Entities::APPOINTMENT;
48
49 /** @var ReservationServiceInterface $reservationService */
50 $reservationService = $this->container->get('application.reservation.service')->get($type);
51 /** @var CustomerBookingRepository $bookingRepository */
52 $bookingRepository = $this->container->get('domain.booking.customerBooking.repository');
53
54 try {
55 /** @var AbstractUser $user */
56 $user = $command->getUserApplicationService()->authorization(
57 $command->getPage() === 'cabinet' ? $command->getToken() : null,
58 $command->getCabinetType()
59 );
60 } catch (AuthorizationException $e) {
61 $result->setResult(CommandResult::RESULT_ERROR);
62 $result->setData(
63 [
64 'reauthorize' => true
65 ]
66 );
67
68 return $result;
69 }
70
71 /** @var CustomerBooking $booking */
72 $booking = $bookingRepository->getById((int)$command->getArg('id'));
73
74 $token = $bookingRepository->getToken((int)$command->getArg('id'));
75
76 if (!empty($token['token'])) {
77 $booking->setToken(new Token($token['token']));
78 }
79
80 if (!$command->getUserApplicationService()->isCustomerBooking($booking, $user, null)) {
81 throw new AccessDeniedException('You are not allowed to update booking status');
82 }
83
84 do_action('amelia_before_booking_canceled', $booking ? $booking->toArray() : null);
85
86 try {
87 $bookingData = $reservationService->updateStatus($booking, BookingStatus::CANCELED);
88 } catch (BookingCancellationException $e) {
89 $result->setResult(CommandResult::RESULT_ERROR);
90 $result->setMessage('You are not allowed to update booking status');
91 $result->setData(
92 [
93 'cancelBookingUnavailable' => true
94 ]
95 );
96
97 return $result;
98 }
99
100 $result->setResult(CommandResult::RESULT_SUCCESS);
101 $result->setMessage('Successfully updated booking status');
102 $result->setData(
103 array_merge(
104 $bookingData,
105 [
106 'type' => $type,
107 'status' => BookingStatus::CANCELED,
108 'message' =>
109 BackendStrings::getAppointmentStrings()['appointment_status_changed'] .
110 strtolower(BackendStrings::getCommonStrings()[BookingStatus::CANCELED])
111 ]
112 )
113 );
114
115 do_action('amelia_after_booking_canceled', $bookingData);
116
117 return $result;
118 }
119 }
120