setId(new Id($data['id'])); } if (isset($data['internalNotes'])) { $appointment->setInternalNotes(new Description($data['internalNotes'])); } if (isset($data['status'])) { $appointment->setStatus(new BookingStatus($data['status'])); } if (isset($data['provider'])) { $appointment->setProvider(UserFactory::create($data['provider'])); } if (isset($data['service'])) { $appointment->setService(ServiceFactory::create($data['service'])); } if (isset($data['googleCalendarEventId'])) { $appointment->setGoogleCalendarEventId(new Token($data['googleCalendarEventId'])); } $bookings = new Collection(); if (isset($data['bookings'])) { foreach ((array)$data['bookings'] as $key => $value) { $bookings->addItem( CustomerBookingFactory::create($value), $key ); } } $appointment->setBookings($bookings); return $appointment; } /** * @param array $rows * * @return Collection * @throws InvalidArgumentException */ public static function createCollection($rows) { $appointments = []; foreach ($rows as $row) { $appointmentId = $row['appointment_id']; $bookingId = $row['booking_id']; $bookingExtraId = isset($row['bookingExtra_id']) ? $row['bookingExtra_id'] : null; $paymentId = isset($row['payment_id']) ? $row['payment_id'] : null; $couponId = isset($row['coupon_id']) ? $row['coupon_id'] : null; $customerId = isset($row['customer_id']) ? $row['customer_id'] : null; $providerId = isset($row['provider_id']) ? $row['provider_id'] : null; $serviceId = isset($row['service_id']) ? $row['service_id'] : null; if (!array_key_exists($appointmentId, $appointments)) { $appointments[$appointmentId] = [ 'id' => $appointmentId, 'bookingStart' => DateTimeService::getCustomDateTimeFromUtc( $row['appointment_bookingStart'] ), 'bookingEnd' => DateTimeService::getCustomDateTimeFromUtc( $row['appointment_bookingEnd'] ), 'notifyParticipants' => isset($row['appointment_notifyParticipants']) ? $row['appointment_notifyParticipants'] : null, 'serviceId' => $row['appointment_serviceId'], 'providerId' => $row['appointment_providerId'], 'internalNotes' => isset($row['appointment_internalNotes']) ? $row['appointment_internalNotes'] : null, 'status' => $row['appointment_status'], 'googleCalendarEventId' => $row['appointment_google_calendar_event_id'], ]; } if ($bookingId && !isset($appointments[$appointmentId]['bookings'][$bookingId])) { $appointments[$appointmentId]['bookings'][$bookingId] = [ 'id' => $bookingId, 'appointmentId' => $appointmentId, 'customerId' => $row['booking_customerId'], 'status' => $row['booking_status'], 'price' => $row['booking_price'], 'persons' => $row['booking_persons'], 'customFields' => isset($row['booking_customFields']) ? $row['booking_customFields'] : null, 'info' => isset($row['booking_info']) ? $row['booking_info'] : null, 'utcOffset' => isset($row['booking_utcOffset']) ? $row['booking_utcOffset'] : null ]; } if ($bookingId && $bookingExtraId) { $appointments[$appointmentId]['bookings'][$bookingId]['extras'][$bookingExtraId] = [ 'id' => $bookingExtraId, 'customerBookingId' => $bookingId, 'extraId' => $row['bookingExtra_extraId'], 'quantity' => $row['bookingExtra_quantity'], 'price' => $row['bookingExtra_price'], ]; } if ($bookingId && $paymentId) { $appointments[$appointmentId]['bookings'][$bookingId]['payments'][$paymentId] = [ 'id' => $paymentId, 'customerBookingId' => $bookingId, 'status' => $row['payment_status'], 'dateTime' => DateTimeService::getCustomDateTimeFromUtc($row['payment_dateTime']), 'gateway' => $row['payment_gateway'], 'gatewayTitle' => $row['payment_gatewayTitle'], 'amount' => $row['payment_amount'], 'data' => $row['payment_data'], ]; } if ($bookingId && $couponId) { $appointments[$appointmentId]['bookings'][$bookingId]['coupon']['id'] = $couponId; $appointments[$appointmentId]['bookings'][$bookingId]['coupon']['code'] = $row['coupon_code']; $appointments[$appointmentId]['bookings'][$bookingId]['coupon']['discount'] = $row['coupon_discount']; $appointments[$appointmentId]['bookings'][$bookingId]['coupon']['deduction'] = $row['coupon_deduction']; $appointments[$appointmentId]['bookings'][$bookingId]['coupon']['limit'] = $row['coupon_limit']; $appointments[$appointmentId]['bookings'][$bookingId]['coupon']['status'] = $row['coupon_status']; } if ($bookingId && $customerId) { $appointments[$appointmentId]['bookings'][$bookingId]['customer'] = [ 'id' => $customerId, 'firstName' => $row['customer_firstName'], 'lastName' => $row['customer_lastName'], 'email' => $row['customer_email'], 'note' => $row['customer_note'], 'phone' => $row['customer_phone'], 'gender' => $row['customer_gender'], 'type' => 'customer', ]; } if ($bookingId && $providerId) { $appointments[$appointmentId]['provider'] = [ 'id' => $providerId, 'firstName' => $row['provider_firstName'], 'lastName' => $row['provider_lastName'], 'email' => $row['provider_email'], 'note' => $row['provider_note'], 'phone' => $row['provider_phone'], 'gender' => $row['provider_gender'], 'type' => 'provider', ]; } if ($serviceId) { $appointments[$appointmentId]['service']['id'] = $row['service_id']; $appointments[$appointmentId]['service']['name'] = $row['service_name']; $appointments[$appointmentId]['service']['description'] = $row['service_description']; $appointments[$appointmentId]['service']['color'] = $row['service_color']; $appointments[$appointmentId]['service']['price'] = $row['service_price']; $appointments[$appointmentId]['service']['status'] = $row['service_status']; $appointments[$appointmentId]['service']['categoryId'] = $row['service_categoryId']; $appointments[$appointmentId]['service']['minCapacity'] = $row['service_minCapacity']; $appointments[$appointmentId]['service']['maxCapacity'] = $row['service_maxCapacity']; $appointments[$appointmentId]['service']['duration'] = $row['service_duration']; $appointments[$appointmentId]['service']['timeBefore'] = isset($row['service_timeBefore']) ? $row['service_timeBefore'] : null; $appointments[$appointmentId]['service']['timeAfter'] = isset($row['service_timeAfter']) ? $row['service_timeAfter'] : null; } } $collection = new Collection(); foreach ($appointments as $key => $value) { $collection->addItem( self::create($value), $key ); } return $collection; } }