%PDF- %PDF-
Direktori : /home/eirtvhdf/cloudsslamllc.com/wp-content/plugins/mstore-api/ |
Current File : //home/eirtvhdf/cloudsslamllc.com/wp-content/plugins/mstore-api/mstore-api.php |
<?php /** * Plugin Name: MStore API * Plugin URI: https://github.com/inspireui/mstore-api * Description: The MStore API Plugin which is used for the MStore and FluxStore Mobile App * Version: 3.4.6 * Author: InspireUI * Author URI: https://inspireui.com * * Text Domain: MStore-Api */ defined('ABSPATH') or wp_die('No script kiddies please!'); // use MStoreCheckout\Templates\MDetect; include plugin_dir_path(__FILE__) . "templates/class-mobile-detect.php"; include plugin_dir_path(__FILE__) . "templates/class-rename-generate.php"; include_once plugin_dir_path(__FILE__) . "controllers/flutter-user.php"; include_once plugin_dir_path(__FILE__) . "controllers/flutter-home.php"; include_once plugin_dir_path(__FILE__) . "controllers/flutter-booking.php"; include_once plugin_dir_path(__FILE__) . "controllers/flutter-vendor-admin.php"; include_once plugin_dir_path(__FILE__) . "controllers/flutter-woo.php"; include_once plugin_dir_path(__FILE__) . "controllers/flutter-delivery.php"; include_once plugin_dir_path(__FILE__) . "functions/index.php"; include_once plugin_dir_path(__FILE__) . "functions/utils.php"; include_once plugin_dir_path(__FILE__) . "controllers/flutter-tera-wallet.php"; class MstoreCheckOut { public $version = '3.4.6'; public function __construct() { define('MSTORE_CHECKOUT_VERSION', $this->version); define('MSTORE_PLUGIN_FILE', __FILE__); include_once(ABSPATH . 'wp-admin/includes/plugin.php'); if (is_plugin_active('woocommerce/woocommerce.php') == false) { return 0; } add_action('woocommerce_init', 'woocommerce_mstore_init'); function woocommerce_mstore_init() { include_once plugin_dir_path(__FILE__) . "controllers/flutter-order.php"; include_once plugin_dir_path(__FILE__) . "controllers/flutter-multi-vendor.php"; include_once plugin_dir_path(__FILE__) . "controllers/flutter-vendor.php"; include_once plugin_dir_path(__FILE__) . "controllers/helpers/delivery-wcfm-helper.php"; include_once plugin_dir_path(__FILE__) . "controllers/helpers/delivery-wcfm-helper.php"; include_once plugin_dir_path(__FILE__) . "controllers/helpers/vendor-admin-woo-helper.php"; include_once plugin_dir_path(__FILE__) . "controllers/helpers/vendor-admin-wcfm-helper.php"; include_once plugin_dir_path(__FILE__) . "controllers/helpers/vendor-admin-dokan-helper.php"; } $order = filter_has_var(INPUT_GET, 'code') && strlen(filter_input(INPUT_GET, 'code')) > 0 ? true : false; if ($order) { add_filter('woocommerce_is_checkout', '__return_true'); } add_action('wp_print_scripts', array($this, 'handle_received_order_page')); //add meta box shipping location in order detail add_action('add_meta_boxes', 'mv_add_meta_boxes'); if (!function_exists('mv_add_meta_boxes')) { function mv_add_meta_boxes() { add_meta_box('mv_other_fields', __('Shipping Location', 'woocommerce'), 'mv_add_other_fields_for_packaging', 'shop_order', 'side', 'core'); } } // Adding Meta field in the meta container admin shop_order pages if (!function_exists('mv_add_other_fields_for_packaging')) { function mv_add_other_fields_for_packaging() { global $post; $note = $post->post_excerpt; $items = explode("\n", $note); if (strpos($items[0], "URL:") !== false) { $url = str_replace("URL:", "", $items[0]); echo esc_html('<iframe width="600" height="500" src="' . esc_url($url) . '"></iframe>'); } } } register_activation_hook(__FILE__, array($this, 'create_custom_mstore_table')); /** * Prepare data before checkout by webview */ add_action('template_redirect', 'prepare_checkout'); /** * Register js file to theme */ function mstore_frontend_script() { wp_enqueue_script('my_script', plugins_url('assets/js/mstore-inspireui.js', MSTORE_PLUGIN_FILE), array('jquery'), '1.0.0', true); wp_localize_script('my_script', 'MyAjax', array('ajaxurl' => admin_url('admin-ajax.php'))); } add_action('wp_enqueue_scripts', 'mstore_frontend_script'); // Setup Ajax action hook add_action('wp_ajax_mstore_delete_json_file', array($this, 'mstore_delete_json_file')); add_action('wp_ajax_mstore_update_limit_product', array($this, 'mstore_update_limit_product')); add_action('wp_ajax_mstore_update_firebase_server_key', array($this, 'mstore_update_firebase_server_key')); add_action('wp_ajax_mstore_update_new_order_title', array($this, 'mstore_update_new_order_title')); add_action('wp_ajax_mstore_update_new_order_message', array($this, 'mstore_update_new_order_message')); add_action('wp_ajax_mstore_update_status_order_title', array($this, 'mstore_update_status_order_title')); add_action('wp_ajax_mstore_update_status_order_message', array($this, 'mstore_update_status_order_message')); // listen changed order status to notify add_action('woocommerce_order_status_changed', array($this, 'track_order_status_changed'), 9, 4); add_action('woocommerce_checkout_update_order_meta', array($this, 'track_new_order')); add_action('woocommerce_rest_insert_shop_order_object', array($this, 'track_api_new_order'), 10, 4); $path = get_template_directory() . "/templates"; if (!file_exists($path)) { mkdir($path, 0777, true); } if (file_exists($path)) { $templatePath = plugin_dir_path(__FILE__) . "templates/mstore-api-template.php"; if (!copy($templatePath, $path . "/mstore-api-template.php")) { return 0; } } } function mstore_delete_json_file(){ $id = sanitize_text_field($_REQUEST['id']); $nonce = sanitize_text_field($_REQUEST['nonce']); FlutterUtils::delete_config_file($id, $nonce); } function mstore_update_limit_product() { $limit = sanitize_text_field($_REQUEST['limit']); if (is_numeric($limit)) { update_option("mstore_limit_product", intval($limit)); } } function mstore_update_firebase_server_key() { $serverKey = sanitize_text_field($_REQUEST['serverKey']); update_option("mstore_firebase_server_key", $serverKey); } function mstore_update_new_order_title() { $title = sanitize_text_field($_REQUEST['title']); update_option("mstore_new_order_title", $title); } function mstore_update_new_order_message() { $message = sanitize_text_field($_REQUEST['message']); update_option("mstore_new_order_message", $message); } function mstore_update_status_order_title() { $title = sanitize_text_field($_REQUEST['title']); update_option("mstore_status_order_title", $title); } function mstore_update_status_order_message() { $message = sanitize_text_field($_REQUEST['message']); update_option("mstore_status_order_message", $message); } function track_order_status_changed($id, $previous_status, $next_status) { trackOrderStatusChanged($id, $previous_status, $next_status); } function track_new_order($order_id) { trackNewOrder($order_id); } function track_api_new_order($object) { trackNewOrder($object->id); } public function handle_received_order_page() { // default return true for getting checkout library working if (is_order_received_page()) { $detect = new MDetect; if ($detect->isMobile()) { wp_register_style('mstore-order-custom-style', plugins_url('assets/css/mstore-order-style.css', MSTORE_PLUGIN_FILE)); wp_enqueue_style('mstore-order-custom-style'); } } } function create_custom_mstore_table() { global $wpdb; // include upgrade-functions for maybe_create_table; if (!function_exists('maybe_create_table')) { require_once ABSPATH . 'wp-admin/includes/upgrade.php'; } $charset_collate = $wpdb->get_charset_collate(); $table_name = $wpdb->prefix . 'mstore_checkout'; $sql = "CREATE TABLE $table_name ( id mediumint(9) NOT NULL AUTO_INCREMENT, `code` tinytext NOT NULL, `order` text NOT NULL, PRIMARY KEY (id) ) $charset_collate;"; $success = maybe_create_table($table_name, $sql); } } $mstoreCheckOut = new MstoreCheckOut(); // use JO\Module\Templater\Templater; include plugin_dir_path(__FILE__) . "templates/class-templater.php"; add_action('plugins_loaded', 'load_mstore_templater'); function load_mstore_templater() { // add our new custom templates $my_templater = new Templater( array( // YOUR_PLUGIN_DIR or plugin_dir_path(__FILE__) 'plugin_directory' => plugin_dir_path(__FILE__), // should end with _ > prefix_ 'plugin_prefix' => 'plugin_prefix_', // templates directory inside your plugin 'plugin_template_directory' => 'templates', ) ); $my_templater->add( array( 'page' => array( 'mstore-api-template.php' => 'Page Custom Template', ), ) )->register(); } //custom rest api function mstore_users_routes() { $controller = new FlutterUserController(); $controller->register_routes(); } add_action('rest_api_init', 'mstore_users_routes'); add_action('rest_api_init', 'mstore_check_payment_routes'); function mstore_check_payment_routes() { register_rest_route('order', '/verify', array( 'methods' => 'GET', 'callback' => 'mstore_check_payment', 'permission_callback' => function () { return true; }, ) ); } function mstore_check_payment() { return true; } // Add menu Setting add_action('admin_menu', 'mstore_plugin_setup_menu'); function mstore_plugin_setup_menu() { add_menu_page('MStore Api', 'MStore Api', 'manage_options', 'mstore-plugin', 'mstore_init'); } function mstore_init() { load_template(dirname(__FILE__) . '/templates/mstore-api-admin-page.php'); } add_filter('woocommerce_rest_prepare_product_variation_object', 'custom_woocommerce_rest_prepare_product_variation_object', 20, 3); add_filter('woocommerce_rest_prepare_product_object', 'custom_change_product_response', 20, 3); function custom_change_product_response($response, $object, $request) { return customProductResponse($response, $object, $request); } function custom_woocommerce_rest_prepare_product_variation_object($response, $object, $request) { global $woocommerce_wpml; $is_purchased = false; if (isset($request['user_id'])) { $user_id = $request['user_id']; $user_data = get_userdata($user_id); $user_email = $user_data->user_email; $is_purchased = wc_customer_bought_product($user_email, $user_id, $response->data['id']); } $response->data['is_purchased'] = $is_purchased; if (!empty($woocommerce_wpml->multi_currency) && !empty($woocommerce_wpml->settings['currencies_order'])) { $price = $response->data['price']; foreach ($woocommerce_wpml->settings['currency_options'] as $key => $currency) { $rate = (float)$currency["rate"]; $response->data['multi-currency-prices'][$key]['price'] = $rate == 0 ? $price : sprintf("%.2f", $price * $rate); } } return $response; } // Prepare data before checkout by webview function prepare_checkout() { if (isset($_GET['mobile']) && isset($_GET['code'])) { $code = sanitize_text_field($_GET['code']); global $wpdb; $table_name = $wpdb->prefix . "mstore_checkout"; $item = $wpdb->get_row("SELECT * FROM $table_name WHERE code = '$code'"); if ($item) { $data = json_decode(urldecode(base64_decode($item->order)), true); } else { return var_dump("Can't not get the order"); } $shipping = isset($data['shipping']) ? $data['shipping'] : NULL; $billing = isset($data['billing']) ? $data['billing'] : $shipping; if (isset($data['token'])) { // Validate the cookie token $userId = wp_validate_auth_cookie($data['token'], 'logged_in'); if (isset($billing)) { update_user_meta($userId, 'billing_first_name', $billing["first_name"]); update_user_meta($userId, 'billing_last_name', $billing["last_name"]); update_user_meta($userId, 'billing_company', $billing["company"]); update_user_meta($userId, 'billing_address_1', $billing["address_1"]); update_user_meta($userId, 'billing_address_2', $billing["address_2"]); update_user_meta($userId, 'billing_city', $billing["city"]); update_user_meta($userId, 'billing_state', $billing["state"]); update_user_meta($userId, 'billing_postcode', $billing["postcode"]); update_user_meta($userId, 'billing_country', $billing["country"]); update_user_meta($userId, 'billing_email', $billing["email"]); update_user_meta($userId, 'billing_phone', $billing["phone"]); update_user_meta($userId, 'shipping_first_name', $billing["first_name"]); update_user_meta($userId, 'shipping_last_name', $billing["last_name"]); update_user_meta($userId, 'shipping_company', $billing["company"]); update_user_meta($userId, 'shipping_address_1', $billing["address_1"]); update_user_meta($userId, 'shipping_address_2', $billing["address_2"]); update_user_meta($userId, 'shipping_city', $billing["city"]); update_user_meta($userId, 'shipping_state', $billing["state"]); update_user_meta($userId, 'shipping_postcode', $billing["postcode"]); update_user_meta($userId, 'shipping_country', $billing["country"]); update_user_meta($userId, 'shipping_email', $billing["email"]); update_user_meta($userId, 'shipping_phone', $billing["phone"]); } else { $billing = []; $shipping = []; $billing["first_name"] = get_user_meta($userId, 'billing_first_name', true); $billing["last_name"] = get_user_meta($userId, 'billing_last_name', true); $billing["company"] = get_user_meta($userId, 'billing_company', true); $billing["address_1"] = get_user_meta($userId, 'billing_address_1', true); $billing["address_2"] = get_user_meta($userId, 'billing_address_2', true); $billing["city"] = get_user_meta($userId, 'billing_city', true); $billing["state"] = get_user_meta($userId, 'billing_state', true); $billing["postcode"] = get_user_meta($userId, 'billing_postcode', true); $billing["country"] = get_user_meta($userId, 'billing_country', true); $billing["email"] = get_user_meta($userId, 'billing_email', true); $billing["phone"] = get_user_meta($userId, 'billing_phone', true); $shipping["first_name"] = get_user_meta($userId, 'shipping_first_name', true); $shipping["last_name"] = get_user_meta($userId, 'shipping_last_name', true); $shipping["company"] = get_user_meta($userId, 'shipping_company', true); $shipping["address_1"] = get_user_meta($userId, 'shipping_address_1', true); $shipping["address_2"] = get_user_meta($userId, 'shipping_address_2', true); $shipping["city"] = get_user_meta($userId, 'shipping_city', true); $shipping["state"] = get_user_meta($userId, 'shipping_state', true); $shipping["postcode"] = get_user_meta($userId, 'shipping_postcode', true); $shipping["country"] = get_user_meta($userId, 'shipping_country', true); $shipping["email"] = get_user_meta($userId, 'shipping_email', true); $shipping["phone"] = get_user_meta($userId, 'shipping_phone', true); if (isset($billing["first_name"]) && !isset($shipping["first_name"])) { $shipping = $billing; } if (!isset($billing["first_name"]) && isset($shipping["first_name"])) { $billing = $shipping; } } // Check user and authentication $user = get_userdata($userId); if ($user && (!is_user_logged_in() || get_current_user_id() != $userId)) { wp_set_current_user($userId, $user->user_login); wp_set_auth_cookie($userId); header("Refresh:0"); } } else { if (is_user_logged_in()) { wp_logout(); wp_set_current_user(0); header("Refresh:0"); } } global $woocommerce; WC()->session->set('refresh_totals', true); WC()->cart->empty_cart(); $products = $data['line_items']; foreach ($products as $product) { $productId = absint($product['product_id']); $quantity = $product['quantity']; $variationId = isset($product['variation_id']) ? $product['variation_id'] : ""; $attributes = []; if (isset($product["meta_data"])) { foreach ($product["meta_data"] as $item) { $attributes[strtolower($item["key"])] = $item["value"]; } } // Check the product variation if (!empty($variationId)) { $productVariable = new WC_Product_Variable($productId); $listVariations = $productVariable->get_available_variations(); foreach ($listVariations as $vartiation => $value) { if ($variationId == $value['variation_id']) { $attributes = array_merge($value['attributes'], $attributes); $woocommerce->cart->add_to_cart($productId, $quantity, $variationId, $attributes); } } } else { parseMetaDataForBookingProduct($product); $woocommerce->cart->add_to_cart($productId, $quantity, 0, $attributes); } } if (isset($shipping)) { $woocommerce->customer->set_shipping_first_name($shipping["first_name"]); $woocommerce->customer->set_shipping_last_name($shipping["last_name"]); $woocommerce->customer->set_shipping_company($shipping["company"]); $woocommerce->customer->set_shipping_address_1($shipping["address_1"]); $woocommerce->customer->set_shipping_address_2($shipping["address_2"]); $woocommerce->customer->set_shipping_city($shipping["city"]); $woocommerce->customer->set_shipping_state($shipping["state"]); $woocommerce->customer->set_shipping_postcode($shipping["postcode"]); $woocommerce->customer->set_shipping_country($shipping["country"]); } if (isset($billing)) { $woocommerce->customer->set_billing_first_name($billing["first_name"]); $woocommerce->customer->set_billing_last_name($billing["last_name"]); $woocommerce->customer->set_billing_company($billing["company"]); $woocommerce->customer->set_billing_address_1($billing["address_1"]); $woocommerce->customer->set_billing_address_2($billing["address_2"]); $woocommerce->customer->set_billing_city($billing["city"]); $woocommerce->customer->set_billing_state($billing["state"]); $woocommerce->customer->set_billing_postcode($billing["postcode"]); $woocommerce->customer->set_billing_country($billing["country"]); $woocommerce->customer->set_billing_email($billing["email"]); $woocommerce->customer->set_billing_phone($billing["phone"]); } if (!empty($data['coupon_lines'])) { $coupons = $data['coupon_lines']; foreach ($coupons as $coupon) { $woocommerce->cart->add_discount($coupon['code']); } } if (!empty($data['shipping_lines'])) { $shippingLines = $data['shipping_lines']; $shippingMethod = $shippingLines[0]['method_id']; WC()->session->set('chosen_shipping_methods', array($shippingMethod)); } if (!empty($data['payment_method'])) { WC()->session->set('chosen_payment_method', $data['payment_method']); } if (isset($data['customer_note']) && !empty($data['customer_note'])) { $_POST["order_comments"] = sanitize_text_field($data['customer_note']); $checkout_fields = WC()->checkout->__get("checkout_fields"); $checkout_fields["order"] = ["order_comments" => ["type" => "textarea", "class" => [], "label" => "Order notes", "placeholder" => "Notes about your order, e.g. special notes for delivery."]]; WC()->checkout->__set("checkout_fields", $checkout_fields); } } if (isset($_GET['cookie'])) { $cookie = urldecode(base64_decode(sanitize_text_field($_GET['cookie']))); $userId = wp_validate_auth_cookie($cookie, 'logged_in'); if ($userId !== false) { $user = get_userdata($userId); if ($user !== false) { wp_set_current_user($userId, $user->user_login); wp_set_auth_cookie($userId); if (isset($_GET['vendor_admin'])) { global $wp; $request = $wp->request; wp_redirect(esc_url_raw(home_url("/" . $request))); die; } } } } } // Add product image to order add_filter('woocommerce_rest_prepare_shop_order_object', 'custom_woocommerce_rest_prepare_shop_order_object', 10, 1); function custom_woocommerce_rest_prepare_shop_order_object($response) { if (empty($response->data) || empty($response->data['line_items'])) { return $response; } $api = new WC_REST_Products_Controller(); $req = new WP_REST_Request('GET'); $line_items = []; foreach ($response->data['line_items'] as $item) { $product_id = $item['product_id']; $req->set_query_params(["id" => $product_id]); $res = $api->get_item($req); if (is_wp_error($res)) { $item["product_data"] = null; } else { $item["product_data"] = $res->get_data(); } $line_items[] = $item; } $response->data['line_items'] = $line_items; return $response; } function mstore_register_order_refund_requested_order_status() { register_post_status('wc-refund-req', array( 'label' => esc_attr__('Refund Requested'), 'public' => true, 'show_in_admin_status_list' => true, 'show_in_admin_all_list' => true, 'exclude_from_search' => false, 'label_count' => _n_noop('Refund requested <span class="count">(%s)</span>', 'Refund requested <span class="count">(%s)</span>') )); } add_action('init', 'mstore_register_order_refund_requested_order_status'); function add_custom_order_statuses($order_statuses) { // Create new status array. $new_order_statuses = array(); // Loop though statuses. foreach ($order_statuses as $key => $status) { // Add status to our new statuses. $new_order_statuses[$key] = $status; // Add our custom statuses. if ('wc-processing' === $key) { $new_order_statuses['wc-refund-req'] = esc_attr__('Refund Requested'); } } return $new_order_statuses; } add_filter('wc_order_statuses', 'add_custom_order_statuses'); function custom_status_bulk_edit($actions) { // Add order status changes. $actions['mark_refund-req'] = __('Change status to refund requested'); return $actions; } add_filter('bulk_actions-edit-shop_order', 'custom_status_bulk_edit', 20, 1);