function test_timetables_cache() { global $appointments; // Insert a worker $args = $this->factory->user->generate_args(); $user_id_1 = $this->factory->user->create_object($args); $args = $this->factory->user->generate_args(); $user_id_2 = $this->factory->user->create_object($args); $service_id = appointments_insert_service(array('name' => 'My Service')); $args = array('ID' => $user_id_1, 'price' => '19.7', 'services_provided' => array($service_id), 'dummy' => true); $result = appointments_insert_worker($args); $time = time(); $date = date('Y-m-01', $time); $capacity = appointments_get_capacity(); $date_start = strtotime("{$date} 00:00"); $key = $date_start . '-' . $capacity . '-0' . '-' . date('Ym', $appointments->local_time); // WORKERS // Trigger the timetables cache appointments_get_timetable($date_start, $capacity); $timetables_cache = get_transient('app_timetables'); $this->assertNotEmpty($timetables_cache[$key]); // Insert another worker $args = array('ID' => $user_id_2, 'price' => '19.7', 'services_provided' => array($service_id), 'dummy' => true); appointments_insert_worker($args); $timetables_cache = get_transient('app_timetables'); $this->assertEmpty($timetables_cache[$key]); // Trigger the timetables cache appointments_get_timetable($date_start, $capacity); $timetables_cache = get_transient('app_timetables'); $this->assertNotEmpty($timetables_cache[$key]); // Delete a worker appointments_delete_worker($user_id_2); $timetables_cache = get_transient('app_timetables'); $this->assertEmpty($timetables_cache[$key]); // Trigger the timetables cache appointments_get_timetable($date_start, $capacity); $timetables_cache = get_transient('app_timetables'); $this->assertNotEmpty($timetables_cache[$key]); // Update worker appointments_update_worker($user_id_1, array('price' => '10')); $timetables_cache = get_transient('app_timetables'); $this->assertEmpty($timetables_cache[$key]); // APPOINTMENTS // Trigger the timetables cache appointments_get_timetable($date_start, $capacity); $timetables_cache = get_transient('app_timetables'); $this->assertNotEmpty($timetables_cache[$key]); // Insert appointment $args = array('user' => $user_id_2, 'email' => '*****@*****.**', 'name' => 'Tester', 'phone' => '667788', 'address' => 'An address', 'city' => 'Madrid', 'service' => $service_id, 'worker' => $user_id_1, 'price' => '90', 'date' => 'December 18, 2024', 'time' => '07:30', 'note' => 'It\'s a note', 'status' => 'paid', 'location' => 5, 'gcal_updated' => '2015-12-01', 'gcal_ID' => 'test'); $app_id = appointments_insert_appointment($args); $timetables_cache = get_transient('app_timetables'); $this->assertEmpty($timetables_cache[$key]); // Trigger the timetables cache appointments_get_timetable($date_start, $capacity); $timetables_cache = get_transient('app_timetables'); $this->assertNotEmpty($timetables_cache[$key]); // Update Appointment appointments_update_appointment($app_id, array('address' => 'New address')); $timetables_cache = get_transient('app_timetables'); $this->assertEmpty($timetables_cache[$key]); // Trigger the timetables cache appointments_get_timetable($date_start, $capacity); $timetables_cache = get_transient('app_timetables'); $this->assertNotEmpty($timetables_cache[$key]); // Delete appointment appointments_delete_appointment($app_id); $timetables_cache = get_transient('app_timetables'); $this->assertEmpty($timetables_cache[$key]); // SERVICES // Insert a service // Trigger the timetables cache appointments_get_timetable($date_start, $capacity); $timetables_cache = get_transient('app_timetables'); $this->assertNotEmpty($timetables_cache[$key]); $service_id_2 = appointments_insert_service(array('name' => 'My Service 2')); $timetables_cache = get_transient('app_timetables'); $this->assertEmpty($timetables_cache[$key]); // Trigger the timetables cache appointments_get_timetable($date_start, $capacity); $timetables_cache = get_transient('app_timetables'); $this->assertNotEmpty($timetables_cache[$key]); // Update service appointments_update_service($service_id_2, array('name' => 'My Service updated')); $timetables_cache = get_transient('app_timetables'); $this->assertEmpty($timetables_cache[$key]); // Trigger the timetables cache appointments_get_timetable($date_start, $capacity); $timetables_cache = get_transient('app_timetables'); $this->assertNotEmpty($timetables_cache[$key]); // Delete service appointments_delete_service($service_id_2); $timetables_cache = get_transient('app_timetables'); $this->assertEmpty($timetables_cache[$key]); }
/** * @group cache */ function test_services_cache() { $args = $this->factory->post->generate_args(); $args['post_type'] = 'page'; $page_id = $this->factory->post->create_object($args); $args = array('name' => 'My Service 1'); $service_id = appointments_insert_service($args); $service = wp_cache_get($service_id, 'app_services'); $this->assertFalse($service); // This will set the cache appointments_get_service($service_id); $service = wp_cache_get($service_id, 'app_services'); $this->assertEquals($service->name, 'My Service 1'); appointments_delete_service($service_id); $service = wp_cache_get($service_id, 'app_services'); $this->assertFalse($service); $service_id = appointments_insert_service($args); appointments_get_service($service_id); appointments_update_service($service_id, array('name' => 'New name')); $service = wp_cache_get($service_id, 'app_services'); $this->assertFalse($service); $service_id = appointments_insert_service(array('name' => 'Service 1')); appointments_insert_service(array('name' => 'Service 2', 'page' => $page_id)); $services = appointments_get_services(); $this->assertCount(4, $services); $cache = wp_cache_get('app_get_services'); $this->assertCount(1, $cache); $services = appointments_get_services(array('page' => 8888)); $this->assertCount(0, $services); $cache = wp_cache_get('app_get_services'); $this->assertCount(1, $cache); $services = appointments_get_services(array('page' => $page_id)); $this->assertCount(1, $services); $cache = wp_cache_get('app_get_services'); $this->assertCount(2, $cache); $this->assertNotEmpty(wp_cache_get($service_id, 'app_services')); // If we insert another service, cache sould be cleared appointments_insert_service(array('name' => 'Service 3')); $this->assertFalse(wp_cache_get('app_get_services')); // If we select again, cache should be refreshed $services = appointments_get_services(); $this->assertCount(5, $services); $cache = wp_cache_get('app_get_services'); $this->assertCount(1, $cache); }
/** * Admin pages init stuff, save settings * */ function admin_init() { global $appointments; if (!session_id()) { @session_start(); } $page = add_menu_page('Appointments', __('Appointments', 'appointments'), App_Roles::get_capability('manage_options', App_Roles::CTX_PAGE_APPOINTMENTS), 'appointments', array(&$this, 'appointment_list'), 'dashicons-clock'); add_submenu_page('appointments', __('Transactions', 'appointments'), __('Transactions', 'appointments'), App_Roles::get_capability('manage_options', App_Roles::CTX_PAGE_TRANSACTIONS), "app_transactions", array(&$this, 'transactions')); add_submenu_page('appointments', __('Settings', 'appointments'), __('Settings', 'appointments'), App_Roles::get_capability('manage_options', App_Roles::CTX_PAGE_SETTINGS), "app_settings", array(&$this, 'settings')); add_submenu_page('appointments', __('Shortcodes', 'appointments'), __('Shortcodes', 'appointments'), App_Roles::get_capability('manage_options', App_Roles::CTX_PAGE_SHORTCODES), "app_shortcodes", array(&$this, 'shortcodes_page')); add_submenu_page('appointments', __('FAQ', 'appointments'), __('FAQ', 'appointments'), App_Roles::get_capability('manage_options', App_Roles::CTX_PAGE_FAQ), "app_faq", array(&$this, 'faq_page')); // Add datepicker to appointments page add_action("admin_print_scripts-{$page}", array(&$this, 'admin_scripts')); do_action('app-admin-admin_pages_added', $page); if (isset($_POST["action_app"]) && !wp_verify_nonce($_POST['app_nonce'], 'update_app_settings')) { add_action('admin_notices', array(&$this, 'warning')); return; } // Read Location, Service, Worker $appointments->get_lsw(); global $wpdb; if (isset($_POST["action_app"]) && 'save_general' == $_POST["action_app"]) { $appointments->options["min_time"] = $_POST["min_time"]; $appointments->options["additional_min_time"] = trim($_POST["additional_min_time"]); $appointments->options["admin_min_time"] = $_POST["admin_min_time"]; $appointments->options["app_lower_limit"] = trim($_POST["app_lower_limit"]); $appointments->options["app_limit"] = trim($_POST["app_limit"]); $appointments->options["clear_time"] = trim($_POST["clear_time"]); $appointments->options["spam_time"] = trim($_POST["spam_time"]); $appointments->options["auto_confirm"] = $_POST["auto_confirm"]; $appointments->options["allow_worker_wh"] = $_POST["allow_worker_wh"]; $appointments->options["allow_worker_confirm"] = $_POST["allow_worker_confirm"]; $appointments->options["allow_overwork"] = $_POST["allow_overwork"]; $appointments->options["allow_overwork_break"] = $_POST["allow_overwork_break"]; $appointments->options["dummy_assigned_to"] = !$appointments->is_dummy(@$_POST["dummy_assigned_to"]) ? @$_POST["dummy_assigned_to"] : 0; $appointments->options["login_required"] = $_POST["login_required"]; $appointments->options["accept_api_logins"] = isset($_POST["accept_api_logins"]); $appointments->options["facebook-no_init"] = isset($_POST["facebook-no_init"]); $appointments->options['facebook-app_id'] = trim($_POST['facebook-app_id']); $appointments->options['twitter-app_id'] = trim($_POST['twitter-app_id']); $appointments->options['twitter-app_secret'] = trim($_POST['twitter-app_secret']); $appointments->options['google-client_id'] = trim($_POST['google-client_id']); $appointments->options["app_page_type"] = $_POST["app_page_type"]; $appointments->options["show_legend"] = $_POST["show_legend"]; $appointments->options["color_set"] = $_POST["color_set"]; foreach ($appointments->get_classes() as $class => $name) { $appointments->options[$class . "_color"] = $_POST[$class . "_color"]; } $appointments->options["ask_name"] = isset($_POST["ask_name"]); $appointments->options["ask_email"] = isset($_POST["ask_email"]); $appointments->options["ask_phone"] = isset($_POST["ask_phone"]); $appointments->options["ask_phone"] = isset($_POST["ask_phone"]); $appointments->options["ask_address"] = isset($_POST["ask_address"]); $appointments->options["ask_city"] = isset($_POST["ask_city"]); $appointments->options["ask_note"] = isset($_POST["ask_note"]); $appointments->options["additional_css"] = trim(stripslashes_deep($_POST["additional_css"])); $appointments->options["payment_required"] = $_POST["payment_required"]; $appointments->options["percent_deposit"] = trim(str_replace('%', '', $_POST["percent_deposit"])); $appointments->options["fixed_deposit"] = trim(str_replace($appointments->options["currency"], '', $_POST["fixed_deposit"])); /* * Membership plugin is replaced by Membership2. Old options are * only saved when the depreacted Membership plugin is still active. */ if (class_exists('M_Membership')) { $appointments->options['members_no_payment'] = isset($_POST['members_no_payment']); // not used?? $appointments->options['members_discount'] = trim(str_replace('%', '', $_POST['members_discount'])); $appointments->options['members'] = maybe_serialize(@$_POST["members"]); } $appointments->options['currency'] = $_POST['currency']; $appointments->options['mode'] = $_POST['mode']; $appointments->options['merchant_email'] = trim($_POST['merchant_email']); $appointments->options['return'] = $_POST['return']; $appointments->options['allow_free_autoconfirm'] = !empty($_POST['allow_free_autoconfirm']); $appointments->options["send_confirmation"] = $_POST["send_confirmation"]; $appointments->options["send_notification"] = @$_POST["send_notification"]; $appointments->options["confirmation_subject"] = stripslashes_deep($_POST["confirmation_subject"]); $appointments->options["confirmation_message"] = stripslashes_deep($_POST["confirmation_message"]); $appointments->options["send_reminder"] = $_POST["send_reminder"]; $appointments->options["reminder_time"] = str_replace(" ", "", $_POST["reminder_time"]); $appointments->options["send_reminder_worker"] = $_POST["send_reminder_worker"]; $appointments->options["reminder_time_worker"] = str_replace(" ", "", $_POST["reminder_time_worker"]); $appointments->options["reminder_subject"] = stripslashes_deep($_POST["reminder_subject"]); $appointments->options["reminder_message"] = stripslashes_deep($_POST["reminder_message"]); $appointments->options["send_removal_notification"] = $_POST["send_removal_notification"]; $appointments->options["removal_notification_subject"] = stripslashes_deep($_POST["removal_notification_subject"]); $appointments->options["removal_notification_message"] = stripslashes_deep($_POST["removal_notification_message"]); $appointments->options["log_emails"] = $_POST["log_emails"]; $appointments->options['use_cache'] = $_POST['use_cache']; $appointments->options['disable_js_check_admin'] = isset($_POST['disable_js_check_admin']); $appointments->options['disable_js_check_frontend'] = isset($_POST['disable_js_check_frontend']); $appointments->options['use_mp'] = isset($_POST['use_mp']); $appointments->options["app_page_type_mp"] = @$_POST["app_page_type_mp"]; $appointments->options['allow_cancel'] = @$_POST['allow_cancel']; $appointments->options['cancel_page'] = @$_POST['cancel_page']; $appointments->options["records_per_page"] = (int) trim(@$_POST["records_per_page"]); $appointments->options = apply_filters('app-options-before_save', $appointments->options); $saved = false; if (update_option('appointments_options', $appointments->options)) { $saved = true; if ('yes' == $appointments->options['use_cache']) { add_action('admin_notices', array(&$appointments, 'saved_cleared')); } else { add_action('admin_notices', array(&$appointments, 'saved')); } } // Flush cache if (isset($_POST["force_flush"]) || $saved) { $appointments->flush_cache(); appointments_delete_timetables_cache(); if (isset($_POST["force_flush"])) { add_action('admin_notices', array(&$appointments, 'cleared')); } } if (isset($_POST['make_an_appointment']) || isset($_POST['make_an_appointment_product'])) { $this->_create_pages(); } // Redirecting when saving options if ($saved) { wp_redirect(add_query_arg('saved', 1)); die; } } $result = $updated = $inserted = false; // Save Working Hours if (isset($_POST["action_app"]) && 'save_working_hours' == $_POST["action_app"]) { $location = (int) $_POST['location']; foreach (array('closed', 'open') as $stat) { $query = $wpdb->prepare("SELECT COUNT(*) FROM {$appointments->wh_table} WHERE location=%d AND worker=%d AND status=%s", $location, $appointments->worker, $stat); $count = $wpdb->get_var($query); if ($count > 0) { $r = $wpdb->update($appointments->wh_table, array('hours' => serialize($_POST[$stat]), 'status' => $stat), array('location' => $location, 'worker' => $appointments->worker, 'status' => $stat), array('%s', '%s'), array('%d', '%d', '%s')); if ($r) { $result = true; } } else { $r = $wpdb->insert($appointments->wh_table, array('location' => $location, 'worker' => $appointments->worker, 'hours' => serialize($_POST[$stat]), 'status' => $stat), array('%d', '%d', '%s', '%s')); if ($r) { $result = true; } } if ($result) { add_action('admin_notices', array(&$appointments, 'saved')); } appointments_delete_work_breaks_cache($location, $appointments->worker); appointments_delete_timetables_cache(); } } // Save Exceptions if (isset($_POST["action_app"]) && 'save_exceptions' == $_POST["action_app"]) { $location = (int) $_POST['location']; foreach (array('closed', 'open') as $stat) { $count = $wpdb->get_var($wpdb->prepare("SELECT COUNT(*) FROM {$appointments->exceptions_table} WHERE location=%d AND worker=%d AND status=%s", $location, $appointments->worker, $stat)); if ($count > 0) { $r = $wpdb->update($appointments->exceptions_table, array('days' => $this->_sort($_POST[$stat]["exceptional_days"]), 'status' => $stat), array('location' => $location, 'worker' => $appointments->worker, 'status' => $stat), array('%s', '%s'), array('%d', '%d', '%s')); if ($r) { $result = true; } } else { $r = $wpdb->insert($appointments->exceptions_table, array('location' => $location, 'worker' => $appointments->worker, 'days' => $this->_sort($_POST[$stat]["exceptional_days"]), 'status' => $stat), array('%d', '%d', '%s', '%s')); if ($r) { $result = true; } } if ($result) { add_action('admin_notices', array(&$appointments, 'saved')); } appointments_delete_exceptions_cache($location, $appointments->worker); } } // Save Services if (isset($_POST["action_app"]) && 'save_services' == $_POST["action_app"] && is_array($_POST["services"])) { do_action('app-services-before_save'); foreach ($_POST["services"] as $ID => $service) { if ('' != trim($service["name"])) { // Update or insert? $_service = appointments_get_service($ID); if ($_service) { $args = array('name' => $service["name"], 'capacity' => (int) $service["capacity"], 'duration' => $service["duration"], 'price' => $service["price"], 'page' => $service["page"]); $result = appointments_update_service($ID, $args); } else { $args = array('ID' => $ID, 'name' => $service["name"], 'capacity' => (int) $service["capacity"], 'duration' => $service["duration"], 'price' => $service["price"], 'page' => $service["page"]); $result = appointments_insert_service($args); } do_action('app-services-service-updated', $ID); } else { // Entering an empty name means deleting of a service $r = appointments_delete_service($ID); if ($r) { $result = true; } } } if ($result) { add_action('admin_notices', array(&$appointments, 'saved')); } } // Save Workers if (isset($_POST["action_app"]) && 'save_workers' == $_POST["action_app"] && is_array($_POST["workers"])) { foreach ($_POST["workers"] as $worker_id => $worker) { $new_worker_id = absint($worker["user"]); $worker_id = absint($worker_id); $inserted = false; $updated = false; $result = false; $worker_exists = appointments_get_worker($worker_id); if ($worker_exists) { // Update if ($new_worker_id != $worker_id && !empty($worker["services_provided"])) { // We are trying to chage the user ID $count = appointments_get_worker($new_worker_id); // If the new ID already exist, do nothing if (!$count) { // Otherwise, change the ID $args = array('ID' => $new_worker_id, 'price' => $worker["price"], 'services_provided' => $worker["services_provided"], 'dummy' => isset($worker["dummy"]), 'page' => $worker['page']); $updated = appointments_update_worker($worker_id, $args); } } elseif ($new_worker_id == $worker_id && !empty($worker["services_provided"])) { // Do not change user ID but update $args = array('price' => $worker["price"], 'services_provided' => $worker["services_provided"], 'dummy' => isset($worker["dummy"]), 'page' => $worker['page']); $updated = appointments_update_worker($worker_id, $args); } elseif (empty($worker["services_provided"])) { $r = appointments_delete_worker($worker_id); if ($r) { $result = true; } } } elseif (!$worker_exists && !empty($worker["services_provided"])) { // Insert $args = array('ID' => $worker["user"], 'price' => $worker["price"], 'services_provided' => $worker["services_provided"], 'page' => $worker["page"], 'dummy' => isset($worker["dummy"])); $inserted = appointments_insert_worker($args); if ($inserted) { do_action('app-workers-worker-updated', $worker_id); } } } if ($result || $updated || $inserted) { add_action('admin_notices', array(&$appointments, 'saved')); } } // Delete removed app records if (isset($_POST["delete_removed"]) && 'delete_removed' == $_POST["delete_removed"] && isset($_POST["app"]) && is_array($_POST["app"])) { $result = 0; foreach ($_POST["app"] as $app_id) { $result = $result + appointments_delete_appointment($app_id); } if ($result) { global $current_user; $userdata = get_userdata($current_user->ID); add_action('admin_notices', array(&$appointments, 'deleted')); do_action('app_deleted', $_POST["app"]); $appointments->log(sprintf(__('Appointment(s) with id(s):%s deleted by user:%s', 'appointments'), implode(', ', $_POST["app"]), $userdata->user_login)); } } // Bulk status change if (isset($_POST["app_status_change"]) && $_POST["app_new_status"] && isset($_POST["app"]) && is_array($_POST["app"])) { $result = 0; $new_status = $_POST["app_new_status"]; foreach ($_POST["app"] as $app_id) { $result = $result + (int) appointments_update_appointment_status(absint($app_id), $new_status); } if ($result) { $userdata = get_userdata(get_current_user_id()); add_action('admin_notices', array(&$appointments, 'updated')); do_action('app_bulk_status_change', $_POST["app"]); $appointments->log(sprintf(__('Status of Appointment(s) with id(s):%s changed to %s by user:%s', 'appointments'), implode(', ', $_POST["app"]), $new_status, $userdata->user_login)); if (is_object($appointments->gcal_api)) { // If deleted, remove these from GCal too if ('removed' == $new_status) { foreach ($_POST["app"] as $app_id) { $appointments->gcal_api->delete($app_id); $appointments->send_removal_notification($app_id); } } else { if (is_object($appointments->gcal_api) && $appointments->gcal_api->is_syncable_status($new_status)) { foreach ($_POST["app"] as $app_id) { $appointments->gcal_api->update($app_id); // Also send out an email if (!empty($appointments->options["send_confirmation"]) && 'yes' == $appointments->options["send_confirmation"]) { appointments_send_confirmation($app_id); } } } } } } } // Determine if we shall flush cache if (isset($_POST["action_app"]) && ($result || $updated || $inserted) || isset($_POST["delete_removed"]) && 'delete_removed' == $_POST["delete_removed"] || isset($_POST["app_status_change"]) && $_POST["app_new_status"]) { // As it means any setting is saved, lets clear cache $appointments->flush_cache(); } }
function test_get_workers_by_service() { $args = $this->factory->user->generate_args(); $user_id_1 = $this->factory->user->create_object($args); $args = $this->factory->user->generate_args(); $user_id_2 = $this->factory->user->create_object($args); $service_id_1 = appointments_insert_service(array('name' => 'My Service')); $service_id_2 = appointments_insert_service(array('name' => 'My Service 2')); $args = array('ID' => $user_id_1, 'price' => '19.7', 'services_provided' => array($service_id_1), 'dummy' => true); appointments_insert_worker($args); $args = array('ID' => $user_id_2, 'price' => '19.7', 'services_provided' => array($service_id_1, $service_id_2), 'dummy' => true); appointments_insert_worker($args); $workers = appointments_get_workers_by_service($service_id_1); $this->assertCount(2, $workers); $workers = appointments_get_workers_by_service($service_id_2); $this->assertCount(1, $workers); }
function test_delete_appointment() { $worker_id = $this->factory->user->create_object($this->factory->user->generate_args()); $user_id = $this->factory->user->create_object($this->factory->user->generate_args()); $service_args = array('name' => 'My Service', 'duration' => 90); $service_id = appointments_insert_service($service_args); $worker_args = array('ID' => $worker_id, 'services_provided' => array($service_id)); appointments_insert_worker($worker_args); $args = array('user' => $user_id, 'email' => '*****@*****.**', 'name' => 'Tester', 'phone' => '667788', 'address' => 'An address', 'city' => 'Madrid', 'service' => $service_id, 'worker' => $worker_id, 'price' => '90', 'date' => 'December 18, 2024', 'time' => '07:30', 'note' => 'It\'s a note', 'status' => 'paid', 'location' => 5); $app_id = appointments_insert_appointment($args); $app = appointments_get_appointment($app_id); appointments_delete_appointment($app_id); $app = appointments_get_appointment($app_id); $this->assertFalse($app); }