コード例 #1
0
 /**
  * Save appointment form (for both create and edit).
  */
 public function executeSaveAppointmentForm()
 {
     /**
      * @var WPDB $wpdb
      */
     global $wpdb;
     $response = array('status' => 'error');
     $start_date = date('Y-m-d H:i:s', strtotime($this->getParameter('start_date')));
     $end_date = date('Y-m-d H:i:s', strtotime($this->getParameter('end_date')));
     $staff_id = $this->getParameter('staff_id');
     $service_id = $this->getParameter('service_id', null);
     $appointment_id = $this->getParameter('id', 0);
     $customers = json_decode($this->getParameter('customers', '[]'));
     $notes = $this->getParameter('notes', '');
     $staff_service = new AB_StaffService();
     $staff_service->loadByStaffAndService($staff_id, $service_id);
     // Check for errors.
     if (!$this->dateIntervalIsAvailableForAppointment($start_date, $end_date, $staff_id, $appointment_id)) {
         $response['errors'] = array('date_interval_not_available' => true);
     }
     if (count($customers) > $staff_service->get('capacity')) {
         $response['errors']['overflow_capacity'] = true;
         $response['errors']['overflow_capacity_message'] = __('Number of customers should be not more than ', 'ab') . $staff_service->get('capacity');
     }
     // If no errors then try to save the appointment.
     if (!isset($response['errors'])) {
         $appointment = new AB_Appointment();
         if ($appointment_id) {
             // edit
             $appointment->load($appointment_id);
         }
         $appointment->set('start_date', $start_date);
         $appointment->set('end_date', $end_date);
         $appointment->set('staff_id', $staff_id);
         $appointment->set('service_id', $service_id);
         if ($appointment->save() !== false) {
             // save customers
             $current_customers = $appointment->getCustomers();
             foreach (array_diff(array_keys($current_customers), $customers) as $el) {
                 $wpdb->delete('ab_customer_appointment', array('appointment_id' => $appointment->get('id'), 'customer_id' => $el));
             }
             foreach (array_diff($customers, array_keys($current_customers)) as $el) {
                 $customer_appointment = new AB_Customer_Appointment();
                 $customer_appointment->set('appointment_id', $appointment->get('id'));
                 $customer_appointment->set('customer_id', $el);
                 while (true) {
                     $token = md5(uniqid(time(), true));
                     $result = $wpdb->get_row($wpdb->prepare('SELECT * FROM `ab_customer_appointment` WHERE token = %s', $token));
                     if (!$result) {
                         break;
                     }
                 }
                 $customer_appointment->set('token', $token);
                 $customer_appointment->save();
             }
             $startDate = new DateTime($appointment->get('start_date'));
             $endDate = new DateTime($appointment->get('end_date'));
             $staff = new AB_Staff();
             $staff->load($staff_id);
             $service = new AB_Service();
             $service->load($service_id);
             $response['status'] = 'ok';
             $desc = array();
             $appointment_additional_info = $wpdb->get_row($wpdb->prepare('SELECT
                   ss.capacity AS max_capacity,
                   COUNT( ca.id ) AS current_capacity,
                   ca.customer_id,
                   ca.notes,
                   ca.id AS ca_id
               FROM ab_appointment a
               LEFT JOIN ab_customer_appointment ca ON ca.appointment_id = a.id
               LEFT JOIN ab_staff_service ss ON ss.staff_id = a.staff_id AND ss.service_id = a.service_id
               WHERE a.id = %d', $appointment->get('id')));
             if ($appointment_additional_info->max_capacity == 1) {
                 // save notes
                 $customer_appointment = new AB_Customer_Appointment();
                 $customer_appointment->load($appointment_additional_info->ca_id);
                 $customer_appointment->set('notes', $notes);
                 $customer_appointment->save();
                 $customer = new AB_Customer();
                 $customer->load($appointment_additional_info->customer_id);
                 foreach (array('name', 'phone', 'email') as $data_entry) {
                     $entry_value = $customer->get($data_entry);
                     if ($entry_value) {
                         $desc[] = '<div class="wc-employee">' . esc_html($entry_value) . '</div>';
                     }
                 }
                 $desc[] = '<div class="wc-notes">' . nl2br(esc_html($notes ?: $appointment_additional_info->notes)) . '</div>';
             } else {
                 // save notes
                 $customer_appointment = new AB_Customer_Appointment();
                 $customer_appointment->load($appointment_additional_info->ca_id);
                 $customer_appointment->set('notes', null);
                 $customer_appointment->save();
                 $desc[] = '<div class="wc-notes">Signed up ' . $appointment_additional_info->current_capacity . '</div>';
                 $desc[] = '<div class="wc-notes">Capacity ' . $appointment_additional_info->max_capacity . '</div>';
             }
             $response['data'] = array('id' => (int) $appointment->get('id'), 'start' => $startDate->format('m/d/Y H:i'), 'end' => $endDate->format('m/d/Y H:i'), 'desc' => implode('', $desc), 'title' => $service->get('title') ? $service->get('title') : __('Untitled', 'ab'), 'color' => $service->get('color'), 'userId' => (int) $appointment->get('staff_id'));
             // refresh data
             $current_customers = $appointment->getCustomers();
             if ($this->getParameter('email_notification') === 'true') {
                 // Send email notification to client with appointment info
                 $client_notification = $wpdb->get_row('SELECT * FROM ab_notifications WHERE slug = "client_info" AND active = 1');
                 // Send email notification to service provider with appointment info
                 $staff_notification = $wpdb->get_row('SELECT * FROM ab_notifications WHERE slug = "provider_info" AND active = 1');
                 foreach ($current_customers as $customer) {
                     if ($client_notification) {
                         $replacement = new AB_NotificationReplacement();
                         $replacement->setClientName($customer->name);
                         $replacement->setClientPhone($customer->phone);
                         $replacement->setClientEmail($customer->email);
                         //                            $replacement->setClientNotes( nl2br( esc_html( $notes ) ) );
                         $replacement->setAppointmentTime($appointment->get('start_date'));
                         $replacement->setServiceName($service->get('title') ? $service->get('title') : __('Untitled', 'ab'));
                         $replacement->setServicePrice($staff_service->get('price'));
                         $replacement->setAppointmentToken($customer->token);
                         $replacement->setStaffName($staff->get('full_name'));
                         $message = wpautop($replacement->replace($client_notification->message));
                         $subject = $replacement->replaceSubject($client_notification->subject);
                         wp_mail($customer->email, $subject, $message, AB_CommonUtils::getEmailHeaderFrom());
                     }
                     if ($staff_notification) {
                         $replacement = new AB_NotificationReplacement();
                         $replacement->setClientName($customer->name);
                         $replacement->setClientPhone($customer->phone);
                         $replacement->setClientEmail($customer->email);
                         //                            $replacement->setClientNotes( nl2br( esc_html( $notes ) ) );
                         $replacement->setAppointmentTime($appointment->get('start_date'));
                         $replacement->setServiceName($service->get('title') ? $service->get('title') : __('Untitled', 'ab'));
                         $replacement->setServicePrice($staff_service->get('price'));
                         $replacement->setAppointmentToken($customer->token);
                         $replacement->setStaffName($staff->get('full_name'));
                         $message = wpautop($replacement->replace($staff_notification->message));
                         $subject = $replacement->replaceSubject($staff_notification->subject);
                         // Send copy to administrators
                         if ($staff_notification->copy) {
                             $admin_emails = AB_CommonUtils::getAdminEmails();
                             if (!empty($admin_emails)) {
                                 wp_mail($admin_emails, $subject, $message, AB_CommonUtils::getEmailHeaderFrom());
                             }
                         }
                         wp_mail($staff->get('email'), $subject, $message, AB_CommonUtils::getEmailHeaderFrom());
                     }
                 }
             }
         } else {
             $response['errors'] = array('unknown' => true);
         }
     }
     exit(json_encode($response));
 }
コード例 #2
0
 /**
  * Cancel Appointment using token.
  */
 public function executeCancelAppointment()
 {
     $customer_appointment = new AB_Customer_Appointment();
     if ($customer_appointment->loadByToken($this->getParameter('token'))) {
         $customer_appointment->delete();
         // Delete appointment, if there aren't customers
         $current_capacity = $this->getWpdb()->get_var($this->getWpdb()->prepare('SELECT count(*) from `ab_customer_appointment` WHERE appointment_id = %d', $customer_appointment->get('appointment_id')));
         if (!$current_capacity) {
             $appointment = new AB_Appointment();
             $appointment->load($customer_appointment->get('appointment_id'));
             $appointment->delete();
         }
         if (get_option('ab_settings_cancel_page_url')) {
             exit(wp_redirect(get_option('ab_settings_cancel_page_url')));
         }
     }
     exit(wp_redirect(home_url()));
 }
コード例 #3
0
 /**
  * @return AB_Appointment
  */
 public function save()
 {
     /** @var wpdb $wpdb */
     global $wpdb;
     // #11094: if customer with such name & e-mail exists, append new booking to him, otherwise - create new customer
     $customer_exists = $wpdb->get_row($wpdb->prepare('SELECT * FROM ab_customer WHERE name = %s AND email = %s', $this->name, $this->email));
     $customer = new AB_Customer();
     if ($customer_exists) {
         $customer->set('id', $customer_exists->id);
         $customer->set('name', $customer_exists->name);
         $customer->set('email', $customer_exists->email);
         $customer->set('phone', $customer_exists->phone);
     } else {
         $customer->set('name', $this->name);
         $customer->set('email', $this->email);
         $customer->set('phone', $this->phone);
         $customer->save();
     }
     $this->customer_id = $customer->get('id');
     $service = new AB_Service();
     $service->load($this->service_id);
     $category = new AB_Category();
     $category->load($service->get('category_id'));
     /**
      * Get appointment, with same params.
      * If it is -> create connection to this appointment,
      * otherwise create appointment and connect customer to new appointment
      */
     $booking = $wpdb->get_row($wpdb->prepare("SELECT * from ab_appointment a WHERE a.staff_id = %d and a.service_id = %d and a.start_date = %s LIMIT 1;", $this->getStaffId(), $this->service_id, $this->booked_datetime));
     $appointment = new AB_Appointment();
     if ($booking) {
         $appointment->load($booking->id);
     } else {
         $appointment->set('staff_id', $this->getStaffId());
         $appointment->set('service_id', $this->service_id);
         $appointment->set('start_date', date('Y-m-d H:i:s', strtotime($this->booked_datetime)));
         $endDate = new DateTime($this->booked_datetime);
         $di = "+ {$service->get('duration')} sec";
         $endDate->modify($di);
         $appointment->set('end_date', $endDate->format('Y-m-d H:i:s'));
         $appointment->save();
     }
     $customer_appointment = new AB_Customer_Appointment();
     $customer_appointment->set('appointment_id', $appointment->get('id'));
     $customer_appointment->set('customer_id', $customer->get('id'));
     $customer_appointment->set('token', md5($this->form_id));
     $customer_appointment->set('notes', $this->notes);
     $customer_appointment->save();
     $staff = new AB_Staff();
     $staff->load($this->getStaffId());
     return $appointment;
 }