PATH:
home
/
ediuae
/
petalwellnessspa.com
/
wp-content
/
plugins
/
simply-schedule-appointments
/
includes
<?php /** * Simply Schedule Appointments Error Notices. * * @since 6.3.1 * @package Simply_Schedule_Appointments */ /** * Simply Schedule Appointments Error Notices. * * @since 6.3.1 */ class SSA_Error_Notices { /** * Parent plugin class. * * @since 6.3.1 * * @var Simply_Schedule_Appointments */ protected $plugin = null; protected $scan_interval_transient_key = 'ssa/notices/error/scan_interval'; public array $error_notices_array; /** * Constructor. * * @since 6.3.1 * * @param Simply_Schedule_Appointments $plugin Main plugin object. */ public function __construct( $plugin ) { $this->plugin = $plugin; $this->hooks(); } /** * Initiate our hooks. * * @since 6.3.1 */ public function hooks() { } /** * General function to include custom checks for errors * * @return void */ public function scan_for_errors(){ $this->check_for_aiowps_6g_block_query(); $this->check_perfmatters_lazy_loading_settings(); $this->check_gcal_missing_refresh_token(); $this->confirm_ssa_gets_gcal_events(); } /** * Only call scan_for_errors every 12 hours * * @return void */ public function maybe_scan_for_errors() { $scan_interval = get_transient( $this->scan_interval_transient_key ); if( empty( $scan_interval ) ) { $this->scan_for_errors(); $expiration = 12 * HOUR_IN_SECONDS; set_transient( $this->scan_interval_transient_key, true, $expiration ); } } /** * Accepts the stored errors in db, loop over them and foreach run its callback function * The callback must be in this class * Check the callback field in the schema * * @param array $errors * @return array */ public function run_callbacks( $errors = array() ) { $schema = $this->get_schema(); foreach ( $errors as $key => $value ) { if( ! empty( $schema[ $key ]['callback'] ) && ! empty( $schema[ $key ]['id'] ) ) { $callback = $schema[ $key ]['callback']; $id = $key; $params = ( is_array( $value ) && ! empty( $value ) ) ? $value : array(); call_user_func( array( $this, $callback), [ 'id' => $id, 'params' => $params ]); } } // Return a fresh array of error notices since some may have been deleted after running the callbacks return $this->fetch_error_notices_ids(); } /** * Check for Perfmatters plugin if installed * Check for lazyload settings if enabled and promt the users to exclude 'ssa_booking_iframe' * * @return void */ public function check_perfmatters_lazy_loading_settings(){ // check if perfmatters deactivated if ( ! is_plugin_active( 'perfmatters/perfmatters.php' ) ) { $this->delete_error_notice('perfmatters_plugin_lazy_loading_enabled'); return; } global $perfmatters_settings_page; if ( empty( $perfmatters_settings_page ) ) { $this->delete_error_notice('perfmatters_plugin_lazy_loading_enabled'); return; } $perfmatters_options = get_option( 'perfmatters_options', array() ); if ( empty( $perfmatters_options ) ) { return; } // Means the lazy loading option is disabled if ( empty( $perfmatters_options['lazyload']['lazy_loading'] ) ) { $this->delete_error_notice('perfmatters_plugin_lazy_loading_enabled'); return; } // ssa_booking_iframe has been added successfully to lazy_loading_exclusions if( is_array( $perfmatters_options['lazyload']['lazy_loading_exclusions'] ) && in_array( 'ssa_booking_iframe', $perfmatters_options['lazyload']['lazy_loading_exclusions'] ) ) { $this->delete_error_notice('perfmatters_plugin_lazy_loading_enabled'); return; } $this->add_error_notice('perfmatters_plugin_lazy_loading_enabled'); } /** * Check if all-in-one-wp-security-and-firewall plugin is installed * If so, check in its settings -> 6G blacklist firewall rules -> Block query strings if enabled * Since this would prevent the reschedule action from working as expected * * @since 6.4.4 * * @return void */ public function check_for_aiowps_6g_block_query() { global $aiowps_firewall_config; if ( empty( $aiowps_firewall_config ) || ! is_object( $aiowps_firewall_config ) ) { $this->delete_error_notice('all_in_one_security_firewall_rules_block_query_strings'); return; } if ( ! method_exists( $aiowps_firewall_config, 'get_value' ) ) { return; } $blocked_query = (bool) $aiowps_firewall_config->get_value('aiowps_6g_block_query'); if( empty ( $blocked_query ) ) { $this->delete_error_notice('all_in_one_security_firewall_rules_block_query_strings'); return; } $this->add_error_notice('all_in_one_security_firewall_rules_block_query_strings'); } /** * Prepare and return the error notices based on what we have stored in db * * @since 6.3.1 * * @return array */ public function get_error_notices(){ $output = array(); $temporary_error_notices = $this->get_temporary_error_notices(); if( ! empty( $temporary_error_notices ) ){ array_push( $output, $temporary_error_notices ); } $this->maybe_scan_for_errors(); $stored_error_ids = $this->fetch_error_notices_ids(); if( empty( $stored_error_ids ) ) { return $output; } $stored_error_ids = $this->run_callbacks( $stored_error_ids ); $schema = $this->get_schema(); foreach ( $stored_error_ids as $key => $value ) { // Assert that the stored id has a match in the schema if( ! isset( $schema[ $key ] ) ) { $this->delete_error_notice( $key ); continue; } /** * Check if the error notice should be hidden * If the condition is not met, we skip this error notice from being sent to the frontend */ if( ! $this->is_display_condition_met( ['id' => $key, 'value' => $value], $schema ) ){ continue; } $notice = $schema[ $key ]; if( ! empty( $value['staff_id'] ) ) { $notice['staff_id'] = $value['staff_id']; $name = SSA_Staff_Model::get_staff_name_by_id( $value['staff_id'] ); $notice['message'] = $notice['message'] . ' - staff #' . $value['staff_id'] . ' (' . $name . ')'; } array_push( $output, $notice ); } return $output; } public function get_temporary_error_notices(){ // only on admin ssa page for now if( isset( $_GET['error'] ) && isset( $_GET['page'] ) && $_GET['page'] === "simply-schedule-appointments" ){ return array( 'id' => 'temporary_error_notice', 'type' => 'warning', 'message' => sanitize_text_field( $_GET['error'] ), ); } } /** * Check if the error notice should be hidden * * @since 6.3.1 * * @param string $error_id * @return bool */ public function is_display_condition_met( $params = [], $schema = array() ){ if( empty( $schema ) ){ $schema = $this->get_schema(); } if( ! isset( $schema[ $params['id'] ]['display_condition'] ) ){ return true; // No condition to check } $display_condition = $schema[ $params['id'] ]['display_condition']; $value = ( isset( $params['value']) && is_array( $params['value'] ) ) ? $params['value'] : array(); return call_user_func( array( $this, $display_condition), [ 'id' => $params['id'], 'value' => $value ]); } /** * Get error notices from db * * @since 6.3.1 * * @return array */ public function fetch_error_notices_ids(){ if( ! isset( $this->error_notices_array ) ){ $this->error_notices_array = get_option( 'ssa_error_notices', array() ); } return $this->error_notices_array; } public function has_errors_for_staff_id( $staff_id ) { $error_notices_ids = $this->fetch_error_notices_ids(); $staff_id = (int) $staff_id; $errors = array(); foreach ( $error_notices_ids as $error_id => $params ) { if ( ! empty( $params['staff_id'] ) && $staff_id === (int) $params['staff_id'] ) { $errors[ $error_id ] = $params; } } return $errors; } private function update_option( $error_notices_ids = array() ) { $this->error_notices_array = $error_notices_ids; return update_option( 'ssa_error_notices', $error_notices_ids ); } /** * Add a single error to ssa_error_notices array * * @since 6.3.1 * * @param string $error_id * @param array $params * @return int|void */ public function add_error_notice( $error_id = '', $params = array() ){ if( empty( $error_id ) ) { return; } // Assert that we have the error defined in the schema $schema = $this->get_schema(); if( ! isset( $schema[ $error_id ] ) ) { return; } $error_notices_ids = $this->fetch_error_notices_ids(); if ( ! isset( $error_notices_ids[ $error_id ] ) ) { $error_notices_ids[ $error_id ] = empty($params) ? true : $params; $this->update_option( $error_notices_ids ); // Email SSA admin to let them know that this error ocurred if ( 'google_calendar_get_events' === $error_id || 'google_calendar_get_events_for_staff' === $error_id ) { $settings = $this->plugin->settings->get(); $schema = $this->get_schema(); $staff_id = empty( $params['staff_id'] ) ? 0 : (int) $params['staff_id']; /** * Default title */ $title = __( 'SSA Calendar Disconnected', 'simply-schedule-appointments' ); $message = $schema['google_calendar_get_events']['message']; if ( ! empty( $staff_id ) && class_exists( 'SSA_Staff_Model' ) ) { $name = SSA_Staff_Model::get_staff_name_by_id( $staff_id ); $title = __( 'SSA Staff Calendar Disconnected', 'simply-schedule-appointments' ); $message = sprintf( __( 'SSA on <strong>%1$s</strong> failed to get Google Calendar events for <strong>%2$s</strong>. Please disconnect and reconnect Google Calendar in the settings and contact support if this error message persists.', 'simply-schedule-appointments' ), get_bloginfo( 'name' ), $name ); } $message .= "\n\nUpdate your settings: " . $this->plugin->wp_admin->url(); // Disabling the email until we have a better way to detect false positives // $this->plugin->notifications->ssa_wp_mail( // $settings['global']['admin_email'], // $title, // $message // ); } return true; } } /** * delete a single error from ssa_error_notices array * * @since 6.3.1 * * @param string $error_id * @return int|void */ public function delete_error_notice( $error_id = '' ){ if( empty( $error_id ) ) { return; } $error_notices_ids = $this->fetch_error_notices_ids(); if ( isset( $error_notices_ids[ $error_id ] ) ) { unset( $error_notices_ids[ $error_id ]); return $this->update_option( $error_notices_ids ); } } /** * Mega array of ssa warnings and errors * * id: name must be the same as the key name, used for adding and deleting * type: error | warning * priority: 1 high priority * message: the message to display in the banner * link: external link with https:// | local link /ssa/settings/google-calendar * link_message: the button/link text * * @var array */ public function get_schema(){ return array( 'google_calendar_sync_appointment_to_calendar' => array( 'id' => 'google_calendar_sync_appointment_to_calendar', 'type' => 'error', 'priority' => 1, 'message' => __( 'SSA failed to sync an appointment to Google Calendar. Please disconnect and reconnect Google Calendar in the settings and contact support if this error message persists.', 'simply-schedule-appointments' ), 'link' => '/ssa/settings/google-calendar', 'link_message' => __( 'Go to settings', 'simply-schedule-appointments' ), 'callback' => 'check_if_gcal_enabled' ), 'missing_gcal_refresh_token_globally' => array( 'id' => 'missing_gcal_refresh_token_globally', 'type' => 'error', 'priority' => 1, 'message' => __( 'Lost connection to Google Calendar. Please disconnect and reconnect Google Calendar in the settings and contact support if this error message persists.', 'simply-schedule-appointments' ), 'link' => '/ssa/settings/google-calendar', 'link_message' => __( 'Go to settings', 'simply-schedule-appointments' ), 'callback' => 'confirm_gcal_refresh_token_not_missing_globally' ), 'missing_gcal_refresh_token_for_staff' => array( 'id' => 'missing_gcal_refresh_token_for_staff', 'type' => 'error', 'priority' => 1, 'message' => __( 'One or more of your team members needs to reauthorize their Google Calendar. Please disconnect and reconnect their calendar in the team settings and contact support if this error message persists.', 'simply-schedule-appointments' ), 'link' => '/ssa/settings/staff/all', 'link_message' => __( 'Go to Team settings', 'simply-schedule-appointments' ), 'callback' => 'confirm_gcal_refresh_token_not_missing_for_team' ), 'google_calendar_get_calendars_by_staff' => array( 'id' => 'google_calendar_get_calendars_by_staff', 'type' => 'error', 'priority' => 1, 'message' => __( 'SSA failed to sync Calendars by staff. Please disconnect and reconnect Google Calendar in the settings and contact support if this error message persists.', 'simply-schedule-appointments' ), 'link' => '/ssa/settings/google-calendar', 'link_message' => __( 'Go to settings', 'simply-schedule-appointments' ), 'callback' => 'check_if_gcal_enabled', ), 'google_calendar_get_events' => array( 'id' => 'google_calendar_get_events', 'type' => 'error', 'priority' => 1, 'message' => __( 'SSA failed to get Google Calendar events. Please disconnect and reconnect Google Calendar in the settings and contact support if this error message persists.', 'simply-schedule-appointments' ), 'link' => '/ssa/settings/google-calendar', 'link_message' => __( 'Go to settings', 'simply-schedule-appointments' ), 'callback' => 'check_if_ssa_can_get_events' ), 'google_calendar_get_events_for_staff' => array( 'id' => 'google_calendar_get_events_for_staff', 'type' => 'error', 'priority' => 1, 'message' => __( 'SSA failed to get Google Calendar events for a staff member. Please disconnect and reconnect their Google Calendar in the Team settings and contact support if this error message persists.', 'simply-schedule-appointments' ), 'link' => '/ssa/settings/staff/all', 'link_message' => __( 'Go to settings', 'simply-schedule-appointments' ), 'callback' => 'check_if_ssa_can_get_events', 'display_condition' => 'check_if_same_staff_or_admin' ), 'google_calendar_authentication' => array( 'id' => 'google_calendar_authentication', 'type' => 'error', 'priority' => 1, 'message' => __( 'SSA was unable to connect to Google Calendar. Please disconnect and reconnect Google Calendar in the settings and contact support if this error message persists.', 'simply-schedule-appointments' ), 'link' => '/ssa/settings/google-calendar', 'link_message' => __( 'Go to settings', 'simply-schedule-appointments' ), 'callback' => 'check_if_gcal_enabled' ), 'all_in_one_security_firewall_rules_block_query_strings' => array( 'id' => 'all_in_one_security_firewall_rules_block_query_strings', 'type' => 'warning', 'priority' => 1, 'message' => __( 'Conflict with "All-In-One Security (AIOS)" plugin: AIOS "Block Query Strings" setting is currently enabled. This will prevent Simply Schedule Appointments from working as expected, including users being unable to reschedule their appointments. Please disable this feature in your settings.', 'simply-schedule-appointments' ), 'link' => esc_url( admin_url() ) . 'admin.php?page=aiowpsec_firewall&tab=tab3', 'link_message' => __( 'Go to AIOS settings', 'simply-schedule-appointments' ), 'callback' => 'check_for_aiowps_6g_block_query' ), 'perfmatters_plugin_lazy_loading_enabled' => array( 'id' => 'perfmatters_plugin_lazy_loading_enabled', 'type' => 'warning', 'priority' => 1, 'message' => __( 'Conflict with "Perfmatters" plugin: "Lazy Loading" setting is currently enabled. This will prevent Simply Schedule Appointments from working as expected. Please add "ssa_booking_iframe" into the "Exclude from Lazy Loading" field under the Lazy Loading tab.', 'simply-schedule-appointments' ), 'link' => esc_url( admin_url() ) . 'options-general.php?page=perfmatters#lazyload', 'link_message' => __( 'Go to Perfmatters Lazyload settings', 'simply-schedule-appointments' ), 'callback' => 'check_perfmatters_lazy_loading_settings' ), // commented out because it is not being used // 'twilio_low_balance' => array( // 'id' => 'twilio_low_balance', // 'type' => 'warning', // 'priority' => 10, // 'message' => __( 'This is a warning message for low Twilio balance This is a warning message for low Twilio balance This is a warning message for low Twilio balance', 'simply-schedule-appointments' ), // 'link' => 'https://simplyscheduleappointments.com/guides/', // 'link_message' => 'Go to simplyscheduleappointments.com', // 'callback' => 'check_for_twilio_if_enabled' // ), 'quick_connect_gcal_auth_mode_changed' => array( 'id' => 'quick_connect_gcal_auth_mode_changed', 'type' => 'warning', 'priority' => 10, 'message' => __( 'An admin changed the Google calendar authorization process. Kindly authorize SSA again', 'simply-schedule-appointments' ), 'link' => $this->plugin->wp_admin->url( '/ssa/settings/google-calendar' ), 'link_message' => 'Go to your calendar settings' ), 'quick_connect_gcal_activate_license' => array( 'id' => 'quick_connect_gcal_activate_license', 'type' => 'warning', 'priority' => 10, 'message' => __( 'SSA Quick Connect service was not able to match your license key to your current domain. Kindly activate the key on this domain', 'simply-schedule-appointments' ), 'link' => $this->plugin->wp_admin->url( '/ssa/settings/all' ), 'link_message' => 'Go to SSA settings', 'callback' => 'check_if_license_is_valid' ), 'quick_connect_gcal_renew_license' => array( 'id' => 'quick_connect_gcal_renew_license', 'type' => 'warning', 'priority' => 10, 'message' => __( 'SSA Quick Connect service was not able to validate your license key. Kindly renew your license or contact support', 'simply-schedule-appointments' ), 'link' => $this->plugin->wp_admin->url( '/ssa/settings/all' ), 'link_message' => 'Go to SSA settings', 'callback' => 'check_if_license_is_valid' ), 'quick_connect_gcal_re_authorize' => array( 'id' => 'quick_connect_gcal_re_authorize', 'type' => 'warning', 'priority' => 10, 'message' => __( 'Looks like SSA Quick Connect\'s access to your Google Calendar was revoked. Please connect your calendar again', 'simply-schedule-appointments' ), 'link' => $this->plugin->wp_admin->url( '/ssa/settings/google-calendar' ), 'link_message' => 'Go to your calendar settings', 'callback' => 'check_if_quick_connect_gcal_re_authorize_is_needed' ), 'quick_connect_gcal_backoff' => array( 'id' => 'quick_connect_gcal_backoff', 'type' => 'warning', 'priority' => 10, 'message' => __( 'SSA Quick Connect service is not responding, your Google Calendar may be out of sync', 'simply-schedule-appointments' ), 'link' => $this->plugin->wp_admin->url( '/ssa/support/help' ), 'link_message' => 'Contact our support', 'callback' => 'check_if_quick_connect_gcal_backoff_is_reset' ), 'stripe_invalid_webhook_secret' => array( 'id' => 'stripe_invalid_webhook_secret', 'type' => 'warning', 'priority' => 10, 'message' => __( 'Looks like your webhook secret value is setup incorrectly. Please make sure you copy the correct secret from your Stripe dashboard', 'simply-schedule-appointments' ), 'link' => 'https://dashboard.stripe.com/account/webhooks/', 'link_message' => 'Go to Stripe Webhook Settings', 'callback' => 'check_for_stripe_if_enabled' ), 'stripe_test_mode_active' => array( 'id' => 'stripe_test_mode_active', 'type' => 'warning', 'priority' => 10, 'message' => __( 'Stripe is in test mode! Remember to switch to live mode when ready to receive payments.' ), 'link' => '/ssa/settings/payments/stripe', 'link_message' => 'Go to Stripe Settings', 'callback' => 'confirm_stripe_live_mode_active' ) ); } public function confirm_stripe_live_mode_active( $params = array() ) { if (empty($params['id'])) { return; } $id = $params['id']; if( ! class_exists( 'SSA_Stripe' ) || ! $this->plugin->settings_installed->is_enabled( 'stripe' ) ) { $this->delete_error_notice( $id ); } $stripe_settings = $this->plugin->stripe_settings->get(); } public function check_for_stripe_if_enabled( $params = array() ) { if (empty($params['id'])) { return; } $id = $params['id']; if( ! class_exists( 'SSA_Stripe' ) || ! $this->plugin->settings_installed->is_enabled( 'stripe' ) ) { $this->delete_error_notice( $id ); } } // public function check_for_twilio_if_enabled( $id = '' ) { // if ( empty( $id ) ) { // return; // } // // TODO // } public function check_if_license_is_valid( $params = array() ) { if (empty($params['id'])) { return; } $id = $params['id']; $license_settings = $this->plugin->license->check(); if ( ! empty( $license_settings['license_status'] ) && 'valid' === $license_settings['license_status'] ) { $this->delete_error_notice( $id ); } } public function check_if_quick_connect_gcal_re_authorize_is_needed( $params = array() ) { if ( empty( $params['id'] ) ) { return; } if( ! class_exists( 'SSA_Google_Calendar' ) || ! $this->plugin->settings_installed->is_enabled( 'google_calendar' ) ) { return $this->delete_error_notice( $params['id'] ); } $google_calendar_settings = ssa()->google_calendar_settings->get(); if( ! empty( $google_calendar_settings['quick_connect_gcal_mode'] ) ){ // we delete the error notice inside get_quick_connect_access_token when relevant $this->plugin->google_calendar->get_quick_connect_access_token(); } else { return $this->delete_error_notice( $params['id'] ); } } public function check_if_quick_connect_gcal_backoff_is_reset( $params = array() ) { $id = empty( $params['id'] ) ? '' : $params['id']; if ( empty( $id ) ) { return; } $google_calendar_settings = ssa()->google_calendar_settings->get(); if( $google_calendar_settings["quick_connect_backoff"] === 0 ){ $this->delete_error_notice( $id ); } } /** * A callback to assert that Google Calendar is enabled * If it's not we delete the error passed as parameter since the error is no longer valid * * @param array $params * @return void */ public function check_if_gcal_enabled( $params = array() ) { if (empty($params['id'])) { return; } $id = $params['id']; if( ! class_exists( 'SSA_Google_Calendar' ) || ! $this->plugin->settings_installed->is_enabled( 'google_calendar' ) ) { $this->delete_error_notice( $id ); } } public function confirm_gcal_refresh_token_not_missing_globally( $params = array() ) { if (empty($params['id'])) { return; } $id = $params['id']; if( ! class_exists( 'SSA_Google_Calendar' ) || ! $this->plugin->settings_installed->is_enabled( 'google_calendar' ) ) { $this->delete_error_notice( $id ); } if( $this->plugin->google_calendar_settings->is_in_quick_connect_gcal_mode() ){ return $this->delete_error_notice( $id ); } $should_reconnect_main_calendar = $this->plugin->google_calendar_settings->is_main_calendar_refresh_token_lost(); if( empty( $should_reconnect_main_calendar ) ) { $this->delete_error_notice( $id ); } } public function confirm_gcal_refresh_token_not_missing_for_team( $params = array() ) { if (empty($params['id'])) { return; } $id = $params['id']; if( ! class_exists( 'SSA_Google_Calendar' ) || ! $this->plugin->settings_installed->is_enabled( 'google_calendar' ) ) { $this->delete_error_notice( $id ); } if( $this->plugin->google_calendar_settings->is_in_quick_connect_gcal_mode() ){ return $this->delete_error_notice( $id ); } if( ! class_exists( 'SSA_Staff' ) || ! ssa()->settings_installed->is_enabled( 'staff' ) ) { $this->delete_error_notice( $id ); } $lost_staff_calendar_refresh_tokens = $this->plugin->staff_model->count_lost_staff_gcal_refresh_tokens(); if( empty( $lost_staff_calendar_refresh_tokens ) ) { $this->delete_error_notice( $id ); } } public function check_gcal_missing_refresh_token() { if( ! class_exists( 'SSA_Google_Calendar' ) || ! $this->plugin->settings_installed->is_enabled( 'google_calendar' ) ) { return; } if( $this->plugin->google_calendar_settings->is_in_quick_connect_gcal_mode() ){ return; } $should_reconnect_main_calendar = $this->plugin->google_calendar_settings->is_main_calendar_refresh_token_lost(); if( ! empty( $should_reconnect_main_calendar ) ) { $this->add_error_notice('missing_gcal_refresh_token_globally'); } // Check staff if( ! class_exists( 'SSA_Staff' ) || ! ssa()->settings_installed->is_enabled( 'staff' ) ) { return; } $lost_staff_calendar_refresh_tokens = $this->plugin->staff_model->count_lost_staff_gcal_refresh_tokens(); if( ! empty( $lost_staff_calendar_refresh_tokens ) ) { $this->add_error_notice('missing_gcal_refresh_token_for_staff'); } } public function check_if_ssa_can_get_events( $params = array() ) { if (empty($params['id'])) { return; } $id = $params['id']; $staff_id = empty( $params['params']['staff_id'] ) ? 0 : (int) $params['params']['staff_id']; if( ! class_exists( 'SSA_Google_Calendar' ) || ! $this->plugin->settings_installed->is_enabled( 'google_calendar' ) ) { return $this->delete_error_notice( $id ); } // handles the case where some user disconnects, removing the access token, with the error notice still set if(0 === $staff_id){ $google_calendar_settings = $this->plugin->google_calendar_settings->get(); if( empty( $google_calendar_settings['access_token'] ) ) { return $this->delete_error_notice( $id ); } } else { $staff = $this->plugin->staff_model->get( $staff_id ); if( empty( $staff['google_access_token'] ) ) { return $this->delete_error_notice( $id ); } } $calendar_list = $this->plugin->google_calendar->get_calendar_list( $staff_id ); if ( ! empty( $calendar_list ) ) { $this->delete_error_notice( $id ); } } public function check_if_same_staff_or_admin( $params = array() ) { if ( ! isset( $params['value']['staff_id'] ) ) { return false; // We shouldn't actually end up here } if ( current_user_can( 'ssa_manage_staff' ) ) { return true; // This is the admin } $user_id = get_current_user_id(); if( empty( $user_id ) ) { return false; } $staff_id = $this->plugin->staff_model->get_staff_id_for_user_id( $user_id ); if( empty( $staff_id ) ) { return true; // this should be the admin } if ( (int) $params['value']['staff_id'] === (int) $staff_id ) { return true; } return false; } /** * Confirms SSA can get Google calendars for staff */ public function confirm_ssa_gets_gcal_events () { if( ! class_exists( 'SSA_Google_Calendar' ) || ! $this->plugin->settings_installed->is_enabled( 'google_calendar' ) ) { return; } try { $client = $this->plugin->google_calendar_client->service_init(0); $calendar_list = $client->get_calendar_list(); if ( empty( $calendar_list ) ) { $this->add_error_notice( 'google_calendar_get_events' ); } } catch (\Throwable $th) {} /** * Now check for the staff */ if( ! class_exists( 'SSA_Staff_Model' ) || ! $this->plugin->settings_installed->is_enabled( 'staff' ) ) { return; } $all_staff = $this->plugin->staff_model->query( array( 'number' => -1, 'status' => 'publish', ) ); foreach( $all_staff as $staff ){ if ( empty( $staff['google']['connected'] ) ) { continue; // The staff member was not connected in the first place } try { $client = $this->plugin->google_calendar_client->service_init($staff['id']); $calendar_list = $client->get_calendar_list(); if ( empty( $calendar_list ) ) { $this->add_error_notice( 'google_calendar_get_events_for_staff', [ "staff_id" => $staff['id'], ]); } } catch (\Throwable $th) {} } } }
[-] class-settings.php
[edit]
[-] class-hooks.php
[edit]
[-] class-availability-query.php
[edit]
[-] class-appointment-model.php
[edit]
[-] class-beaver-builder.php
[edit]
[-] class-web-meetings.php
[edit]
[-] class-availability-model.php
[edit]
[-] class-recipient-admin.php
[edit]
[-] class-recipient-customer.php
[edit]
[-] class-constants.php
[edit]
[-] class-async-action-model.php
[edit]
[-] class-support.php
[edit]
[-] class-google-calendar-client.php
[edit]
[+]
..
[-] class-capabilities.php
[edit]
[-] class-encryption.php
[edit]
[-] class-availability-cache-invalidation.php
[edit]
[-] class-calendar-events-settings.php
[edit]
[-] class-settings-global.php
[edit]
[-] class-translation.php
[edit]
[-] class-cli.php
[edit]
[-] class-missing.php
[edit]
[-] class-action-scheduler.php
[edit]
[-] class-templates-api.php
[edit]
[-] class-blackout-dates.php
[edit]
[-] class-calendar-events-object.php
[edit]
[-] class-divi.php
[edit]
[-] class-templates.php
[edit]
[-] class-wp-admin.php
[edit]
[-] class-appointment-factory.php
[edit]
[-] class-scheduling-max-per-day.php
[edit]
[-] class-notifications-api.php
[edit]
[-] class-shortcodes.php
[edit]
[-] class-validation.php
[edit]
[-] class-resource-group-object-factory.php
[edit]
[-] class-payment-object.php
[edit]
[-] class-locale.php
[edit]
[-] class-ics-exporter.php
[edit]
[-] class-filesystem.php
[edit]
[-] class-recipient-shared.php
[edit]
[-] class-availability-schedule.php
[edit]
[-] class-block-upcoming-appointments.php
[edit]
[-] class-elementor.php
[edit]
[-] class-appointment-meta-model.php
[edit]
[-] class-revision-meta-model.php
[edit]
[+]
divi
[-] class-notifications.php
[edit]
[-] class-upgrade.php
[edit]
[-] class-utils.php
[edit]
[-] class-availability-functions.php
[edit]
[-] class-external-calendar-api.php
[edit]
[-] class-csv-exporter.php
[edit]
[-] class-external-google-calendar-api.php
[edit]
[-] class-twig-extension.php
[edit]
[-] class-bootstrap.php
[edit]
[-] class-notices.php
[edit]
[-] class-availability-schedule-factory.php
[edit]
[-] class-blackout-dates-settings.php
[edit]
[-] class-support-status.php
[edit]
[-] class-block-booking.php
[edit]
[-] class-advanced-scheduling-availability.php
[edit]
[-] class-exception.php
[edit]
[-] class-styles-settings.php
[edit]
[-] class-forms.php
[edit]
[-] class-recipient-staff.php
[edit]
[+]
beaver-builder
[-] class-users.php
[edit]
[-] class-sequence-factory.php
[edit]
[+]
third-party
[-] class-locales.php
[edit]
[-] class-db-model.php
[edit]
[-] class-db.php
[edit]
[-] class-availability-default.php
[edit]
[-] class-staff-settings.php
[edit]
[-] class-notification-model.php
[edit]
[-] class-settings-installed.php
[edit]
[-] class-appointment-object.php
[edit]
[-] class-notices-api.php
[edit]
[-] class-translation-settings.php
[edit]
[-] class-support-status-api.php
[edit]
[-] class-notices-data.php
[edit]
[-] class-appointment-type-object.php
[edit]
[-] class-appointment-type-object-factory.php
[edit]
[-] class-availability-block-factory.php
[edit]
[-] class-recipient.php
[edit]
[-] class-revision-model.php
[edit]
[-] class-customers.php
[edit]
[-] class-settings-api.php
[edit]
[-] class-cache.php
[edit]
[-] class-availability-detective-case.php
[edit]
[-] class-styles.php
[edit]
[-] class-capacity-settings.php
[edit]
[-] class-gcal-exporter.php
[edit]
[-] class-advanced-scheduling-settings.php
[edit]
[-] class-appointment-type-model.php
[edit]
[-] class-notifications-settings.php
[edit]
[-] class-period.php
[edit]
[-] class-external-api.php
[edit]
[-] class-error-notices.php
[edit]
[-] class-availability-cache.php
[edit]
[-] class-developer-settings.php
[edit]
[-] class-dashboard-upcoming-appointments-widget.php
[edit]
[-] class-availability-external-model.php
[edit]
[-] class-availability-block.php
[edit]
[-] class-customer-information.php
[edit]
[+]
elementor
[-] class-appointment-type-label-model.php
[edit]
[-] class-embed-booking-app-api.php
[edit]
[+]
lib
[-] class-sequence.php
[edit]
[-] class-debug.php
[edit]
[-] class-appointment-types-db.php
[edit]