| @@ -1,13 +1,14 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | namespace RadiusTheme\SB\Controllers\Admin\Ajax; |
| 4 | 4 | |
| 5 | -use Elementor\Core\Files\Uploads_Manager; | |
| 6 | 5 | use Elementor\Plugin; |
| 7 | 6 | use Elementor\TemplateLibrary\Source_Base; |
| 8 | 7 | use RadiusTheme\SB\Helpers\BuilderFns; |
| 8 | +use RadiusTheme\SB\Helpers\Cache; | |
| 9 | 9 | use RadiusTheme\SB\Helpers\Fns; |
| 10 | +use RadiusTheme\SB\Models\TemplateSettings; | |
| 10 | 11 | use RadiusTheme\SB\Traits\SingletonTrait; |
| 11 | 12 | |
| 12 | 13 | // Do not allow directly accessing this file. |
| 13 | 14 | if ( ! defined( 'ABSPATH' ) ) { |
| @@ -66,20 +67,20 @@ | ||
| 66 | 67 | * |
| 67 | 68 | * @return void |
| 68 | 69 | */ |
| 69 | 70 | public function response() { |
| 70 | - $page_type = isset( $_POST['page_type'] ) ? sanitize_text_field( wp_unslash( $_POST['page_type'] ) ) : null; //rtsb_tb_template_type - it represent to template type | |
| 71 | + Cache::clear_transient_cache(); | |
| 72 | + $page_type = isset( $_POST['page_type'] ) ? sanitize_text_field( wp_unslash( $_POST['page_type'] ) ) : null; // rtsb_tb_template_type - it represent to template type | |
| 71 | 73 | $page_id = isset( $_POST['page_id'] ) ? absint( wp_unslash( $_POST['page_id'] ) ) : null; |
| 72 | 74 | $page_name = isset( $_POST['page_name'] ) ? sanitize_text_field( wp_unslash( $_POST['page_name'] ) ) : null; |
| 73 | 75 | $hasPro = isset( $_POST['hasPro'] ) ? sanitize_text_field( wp_unslash( $_POST['hasPro'] ) ) : null; |
| 74 | 76 | $edit_with = isset( $_POST['template_edit_with'] ) ? sanitize_text_field( wp_unslash( $_POST['template_edit_with'] ) ) : null; |
| 75 | 77 | $default_template = isset( $_POST['default_template'] ) ? sanitize_text_field( wp_unslash( $_POST['default_template'] ) ) : null; |
| 76 | - $import_layout = isset( $_POST['import_default_layout'] ) ? sanitize_text_field( $_POST['import_default_layout'] ) : null; | |
| 78 | + $import_layout = isset( $_POST['import_default_layout'] ) ? sanitize_text_field( $_POST['import_default_layout'] ) : null; //phpcs:ignore WordPress.Security.ValidatedSanitizedInput.MissingUnslash | |
| 77 | 79 | $product_id = isset( $_POST['preview_product_id'] ) ? absint( $_POST['preview_product_id'] ) : null; |
| 78 | - | |
| 79 | 80 | $url = '#'; |
| 80 | 81 | |
| 81 | - if ( ! Fns::verify_nonce() || ! $page_type ) { | |
| 82 | + if ( ! wp_verify_nonce( Fns::get_nonce(), rtsb()->nonceText ) || ! $page_type ) { | |
| 82 | 83 | $return = [ |
| 83 | 84 | 'success' => false, |
| 84 | 85 | 'post_id' => $page_id, |
| 85 | 86 | ]; |
| @@ -85,29 +86,41 @@ | ||
| 85 | 86 | ]; |
| 86 | 87 | wp_send_json( $return ); |
| 87 | 88 | |
| 88 | 89 | } |
| 90 | + if ( ! current_user_can( 'manage_options' ) ) { | |
| 91 | + $return = [ | |
| 92 | + 'success' => false, | |
| 93 | + 'post_id' => $page_id, | |
| 94 | + ]; | |
| 95 | + wp_send_json( $return ); | |
| 96 | + } | |
| 89 | 97 | |
| 90 | - add_filter( 'pre_option_elementor_unfiltered_files_upload', function () { | |
| 91 | - return '1'; | |
| 92 | - }, 99 ); | |
| 98 | + add_filter( | |
| 99 | + 'pre_option_elementor_unfiltered_files_upload', | |
| 100 | + function () { | |
| 101 | + return '1'; | |
| 102 | + }, | |
| 103 | + 99 | |
| 104 | + ); | |
| 93 | 105 | |
| 94 | 106 | Plugin::$instance->files_manager->clear_cache(); |
| 95 | 107 | add_filter( 'rtsb_import_status', '__return_true' ); |
| 96 | 108 | |
| 97 | - $status = $_REQUEST['status'] ?? ''; | |
| 109 | + $status = sanitize_text_field( wp_unslash( $_REQUEST['status'] ?? '' ) ); | |
| 98 | 110 | $post_args = [ 'timeout' => 120 ]; |
| 99 | 111 | $post_args['body'] = [ |
| 100 | 112 | 'status' => $status, |
| 101 | 113 | 'layout_id' => $import_layout, |
| 102 | - 'has_pro' => $hasPro | |
| 114 | + 'has_pro' => $hasPro, | |
| 103 | 115 | ]; |
| 104 | 116 | $layoutRequest = wp_remote_post( rtsb()->BASE_API, $post_args ); |
| 105 | 117 | |
| 106 | - if ( is_wp_error( $layoutRequest ) ) { | |
| 107 | - wp_send_json_error( [ 'messages' => $layoutRequest->get_error_messages() ] ); | |
| 118 | + $layoutJson = []; | |
| 119 | + if ( ! is_wp_error( $layoutRequest ) && ! empty( $layoutRequest['body'] ) ) { | |
| 120 | + $layoutJson = json_decode( $layoutRequest['body'], true ); | |
| 108 | 121 | } |
| 109 | - $layoutJson = json_decode( $layoutRequest['body'], true ); | |
| 122 | + | |
| 110 | 123 | $option_name = BuilderFns::option_name( $page_type ); |
| 111 | 124 | |
| 112 | 125 | $post_data = [ |
| 113 | 126 | 'ID' => $page_id, |
| @@ -138,22 +151,28 @@ | ||
| 138 | 151 | } |
| 139 | 152 | |
| 140 | 153 | $edit_by = ''; |
| 141 | 154 | if ( $page_id ) { |
| 155 | + $edit_by = Fns::page_edit_with( $page_id ); | |
| 156 | + $template_for = sanitize_text_field( wp_unslash( $_POST['product_page_for'] ?? '' ) ); | |
| 157 | + $selected_category = array_unique( isset( $_POST['selected_category'] ) && is_array( $_POST['selected_category'] ) ? array_map( 'sanitize_text_field', $_POST['selected_category'] ) : [] ); //phpcs:ignore WordPress.Security.ValidatedSanitizedInput.MissingUnslash | |
| 142 | 158 | if ( 'product' == $page_type ) { |
| 143 | 159 | update_post_meta( $page_id, BuilderFns::$product_template_meta, $product_id ); |
| 160 | + update_post_meta( $page_id, '_is_product_page_template_for', $template_for ); | |
| 144 | 161 | } |
| 145 | - $edit_by = Fns::page_edit_with( $page_id ); | |
| 146 | - $category_archive = array_unique( isset( $_POST['category_archive'] ) && is_array( $_POST['category_archive'] ) ? array_map( 'sanitize_text_field', $_POST['category_archive'] ) : [] ); | |
| 147 | - $the_products = array_unique( isset( $_POST['the_products'] ) && is_array( $_POST['the_products'] ) ? array_map( 'absint', $_POST['the_products'] ) : [] ); | |
| 148 | - if ( ! count( $the_products ) && ! count( $category_archive ) ) { | |
| 162 | + | |
| 163 | + $has_default = TemplateSettings::instance()->get_option( $option_name ); | |
| 164 | + if ( ( 'product' === $page_type && 'all_products' !== $template_for ) || ( 'archive' === $page_type && count( $selected_category ) ) ) { | |
| 165 | + if ( ! $has_default ) { | |
| 166 | + TemplateSettings::instance()->set_option( $option_name, '' ); | |
| 167 | + } | |
| 168 | + } else { | |
| 149 | 169 | if ( 'default_template' === $default_template ) { |
| 150 | - update_option( $option_name, $page_id ); | |
| 170 | + TemplateSettings::instance()->set_option( $option_name, $page_id ); | |
| 151 | 171 | } else { |
| 152 | - $has_default = get_option( $option_name ); | |
| 153 | - if ( ! $has_default ) { | |
| 154 | - update_option( $option_name, '' ); | |
| 155 | - } | |
| 172 | + //if ( ! $has_default ) { | |
| 173 | + TemplateSettings::instance()->set_option( $option_name, '' ); | |
| 174 | + // } | |
| 156 | 175 | } |
| 157 | 176 | } |
| 158 | 177 | |
| 159 | 178 | $action = 'edit'; |
| @@ -170,9 +189,9 @@ | ||
| 170 | 189 | |
| 171 | 190 | if ( ! empty( $layoutJson['data'] ) ) { |
| 172 | 191 | $data = json_decode( $layoutJson['data'], true ); |
| 173 | 192 | $content = $this->process_export_import_content( $data, 'on_import' ); |
| 174 | - $content = json_encode( $content ); | |
| 193 | + $content = wp_json_encode( $content ); | |
| 175 | 194 | update_post_meta( $page_id, '_elementor_data', $content ); |
| 176 | 195 | update_post_meta( $page_id, '_rtsb_import_id', $import_layout ); |
| 177 | 196 | } |
| 178 | 197 | } |
| @@ -186,9 +205,13 @@ | ||
| 186 | 205 | 'new_page' => $new_page, |
| 187 | 206 | |
| 188 | 207 | ]; |
| 189 | 208 | if ( $edit_by ) { |
| 190 | - $return['edit_btn_text'] = esc_html__( sprintf( 'Edit with %s', $edit_by ), 'shopbuilder' ); | |
| 209 | + $return['edit_btn_text'] = sprintf( | |
| 210 | + /* translators: %s: Edit */ | |
| 211 | + esc_html__( 'Edit with %s', 'shopbuilder' ), | |
| 212 | + esc_html( $edit_by ) | |
| 213 | + ); | |
| 191 | 214 | } |
| 192 | 215 | wp_send_json( $return ); |
| 193 | 216 | wp_die(); |
| 194 | 217 | } |