acf-helper.php
2 months ago
ajax-helper.php
2 months ago
device-detector.php
2 months ago
pa-nav-menu-walker.php
2 months ago
papro-promotion.php
1 day ago
query-helper.php
2 days ago
widget-class-map.php
2 months ago
widget-name-map.php
2 months ago
ajax-helper.php
424 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Controls Helper |
| 4 | * |
| 5 | * Handles element feedback functionality. |
| 6 | */ |
| 7 | |
| 8 | namespace PremiumAddons\Includes\Helpers; |
| 9 | |
| 10 | use PremiumAddons\Includes\Helper_Functions; |
| 11 | use PremiumAddons\Includes\Helpers\Query_Helper; |
| 12 | use PremiumAddons\Includes\Premium_Template_Tags; |
| 13 | |
| 14 | if ( ! defined( 'ABSPATH' ) ) { |
| 15 | exit; // Exit if accessed directly. |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * Controls Helper Trait |
| 20 | * |
| 21 | * @since 4.11.58 |
| 22 | */ |
| 23 | trait AJAX_Helper { |
| 24 | |
| 25 | public function register_ajax_hooks() { |
| 26 | |
| 27 | // Custom Controls AJAX Handlers. |
| 28 | add_action( 'wp_ajax_premium_update_filter', array( $this, 'get_posts_list' ) ); |
| 29 | add_action( 'wp_ajax_premium_update_tax', array( $this, 'get_related_tax' ) ); |
| 30 | add_action( 'wp_ajax_pa_acf_options', array( $this, 'get_acf_options' ) ); |
| 31 | |
| 32 | // Template Content AJAX Handlers. |
| 33 | add_action( 'wp_ajax_get_elementor_template_content', array( $this, 'get_template_content' ) ); |
| 34 | add_action( 'wp_ajax_nopriv_get_elementor_template_content', array( $this, 'get_template_content' ) ); |
| 35 | |
| 36 | // Social Feed AJAX Handlers. |
| 37 | add_action( 'wp_ajax_get_pinterest_token', array( $this, 'get_pinterest_token' ) ); |
| 38 | add_action( 'wp_ajax_get_pinterest_boards', array( $this, 'get_pinterest_boards' ) ); |
| 39 | add_action( 'wp_ajax_get_tiktok_token', array( $this, 'get_tiktok_token' ) ); |
| 40 | |
| 41 | // Send Feedback AJAX Handler. |
| 42 | add_action( 'wp_ajax_pa_send_element_feedback', array( $this, 'send' ) ); |
| 43 | |
| 44 | // Get Posts Query AJAX Handler. |
| 45 | add_action( 'wp_ajax_pa_get_posts', array( $this, 'get_posts_query' ) ); |
| 46 | add_action( 'wp_ajax_nopriv_pa_get_posts', array( $this, 'get_posts_query' ) ); |
| 47 | |
| 48 | // Search Results AJAX Handler. |
| 49 | add_action( 'wp_ajax_premium_get_search_results', array( $this, 'get_search_results' ) ); |
| 50 | add_action( 'wp_ajax_nopriv_premium_get_search_results', array( $this, 'get_search_results' ) ); |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * Get posts list |
| 55 | * |
| 56 | * Get posts list array |
| 57 | * |
| 58 | * @since 4.2.8 |
| 59 | * @access public |
| 60 | */ |
| 61 | public function get_posts_list() { |
| 62 | |
| 63 | check_ajax_referer( 'pa-blog-widget-nonce', 'nonce' ); |
| 64 | |
| 65 | $post_type = isset( $_POST['post_type'] ) ? wp_unslash( $_POST['post_type'] ) : ''; |
| 66 | |
| 67 | $post_type = array_map( 'sanitize_text_field', $post_type ); |
| 68 | |
| 69 | if ( empty( $post_type ) ) { |
| 70 | wp_send_json_error( __( 'Empty Post Type.', 'premium-addons-for-elementor' ) ); |
| 71 | } |
| 72 | |
| 73 | $args = array( |
| 74 | 'post_type' => $post_type, |
| 75 | 'posts_per_page' => -1, |
| 76 | 'update_post_term_cache' => false, |
| 77 | 'update_post_meta_cache' => false, |
| 78 | ); |
| 79 | |
| 80 | // Exclude the premium-grid and loop-items templates for 'elementor_library' source. |
| 81 | if ( in_array( 'elementor_library', $post_type, true ) ) { |
| 82 | $args['meta_query'] = array( |
| 83 | array( |
| 84 | 'key' => '_elementor_template_type', |
| 85 | 'value' => array( 'premium-grid', 'loop-item' ), |
| 86 | 'compare' => 'NOT IN', |
| 87 | ), |
| 88 | ); |
| 89 | } |
| 90 | |
| 91 | $list = get_posts( $args ); |
| 92 | |
| 93 | $options = array(); |
| 94 | |
| 95 | if ( ! empty( $list ) && ! is_wp_error( $list ) ) { |
| 96 | |
| 97 | foreach ( $list as $post ) { |
| 98 | $key = in_array( 'elementor_library', $post_type, true ) ? $post->post_title : $post->ID; |
| 99 | $options[ $key ] = $post->post_title; |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | wp_send_json_success( wp_json_encode( $options ) ); |
| 104 | } |
| 105 | |
| 106 | /** |
| 107 | * Get related taxonomy list |
| 108 | * |
| 109 | * Get related taxonomy list array |
| 110 | * |
| 111 | * @since 4.3.1 |
| 112 | * @access public |
| 113 | */ |
| 114 | public function get_related_tax() { |
| 115 | |
| 116 | check_ajax_referer( 'pa-blog-widget-nonce', 'nonce' ); |
| 117 | |
| 118 | $post_type = isset( $_POST['post_type'] ) ? sanitize_text_field( wp_unslash( $_POST['post_type'] ) ) : ''; |
| 119 | |
| 120 | if ( empty( $post_type ) ) { |
| 121 | wp_send_json_error( __( 'Empty Post Type.', 'premium-addons-for-elementor' ) ); |
| 122 | } |
| 123 | |
| 124 | $taxonomy = Query_Helper::get_taxnomies( $post_type ); |
| 125 | |
| 126 | $related_tax = array(); |
| 127 | |
| 128 | if ( ! empty( $taxonomy ) ) { |
| 129 | |
| 130 | foreach ( $taxonomy as $index => $tax ) { |
| 131 | $related_tax[ $index ] = $tax->label; |
| 132 | } |
| 133 | } |
| 134 | |
| 135 | wp_send_json_success( wp_json_encode( $related_tax ) ); |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Get Acf Options. |
| 140 | * |
| 141 | * Get options using AJAX. |
| 142 | * |
| 143 | * @since 4.4.8 |
| 144 | * @access public |
| 145 | */ |
| 146 | public function get_acf_options() { |
| 147 | |
| 148 | check_ajax_referer( 'pa-blog-widget-nonce', 'nonce' ); |
| 149 | |
| 150 | if ( ! current_user_can( 'manage_options' ) ) { |
| 151 | wp_send_json_error( 'Insufficient user permission' ); |
| 152 | } |
| 153 | |
| 154 | $query_options = isset( $_POST['query_options'] ) && is_array( $_POST['query_options'] ) |
| 155 | ? array_map( 'sanitize_text_field', wp_unslash( $_POST['query_options'] ) ) |
| 156 | : array(); |
| 157 | |
| 158 | $query = new \WP_Query( |
| 159 | array( |
| 160 | 'post_type' => 'acf-field', |
| 161 | 'posts_per_page' => -1, |
| 162 | ) |
| 163 | ); |
| 164 | |
| 165 | $results = ACF_Helper::format_acf_query_result( $query->posts, $query_options ); |
| 166 | |
| 167 | wp_send_json_success( wp_json_encode( $results ) ); |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * Get Template Content |
| 172 | * |
| 173 | * Get Elementor template HTML content. |
| 174 | * |
| 175 | * @since 3.2.6 |
| 176 | * @access public |
| 177 | */ |
| 178 | public function get_template_content() { |
| 179 | |
| 180 | $template = isset( $_GET['templateID'] ) ? sanitize_text_field( wp_unslash( $_GET['templateID'] ) ) : ''; |
| 181 | $is_ID = isset( $_GET['is_id'] ) ? filter_var( $_GET['is_id'], FILTER_VALIDATE_BOOLEAN ) : false; |
| 182 | |
| 183 | if ( empty( $template ) ) { |
| 184 | wp_send_json_error( 'Empty Template ID' ); |
| 185 | } |
| 186 | |
| 187 | // Get the post object to check status and author |
| 188 | $post = get_post( $template ); |
| 189 | |
| 190 | if ( ! $post ) { |
| 191 | wp_send_json_error( 'Invalid Template ID' ); |
| 192 | } |
| 193 | |
| 194 | // Check if post is published or user has permission to view |
| 195 | if ( 'publish' !== $post->post_status ) { |
| 196 | $current_user_id = get_current_user_id(); |
| 197 | $is_author = ( $current_user_id === (int) $post->post_author ); |
| 198 | $is_admin = current_user_can( 'manage_options' ); |
| 199 | |
| 200 | if ( ! $is_admin && ! $is_author ) { |
| 201 | wp_send_json_error( 'Permission denied' ); |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | $template_content = Helper_Functions::render_elementor_template( $template, $is_ID ); |
| 206 | |
| 207 | if ( empty( $template_content ) || ! isset( $template_content ) ) { |
| 208 | wp_send_json_error( 'Empty Content' ); |
| 209 | } |
| 210 | |
| 211 | $data = array( |
| 212 | 'template_content' => $template_content, |
| 213 | ); |
| 214 | |
| 215 | wp_send_json_success( $data ); |
| 216 | } |
| 217 | |
| 218 | /** |
| 219 | * Get Pinterest account token for Pinterest Feed widget |
| 220 | * |
| 221 | * @since 4.10.2 |
| 222 | * @access public |
| 223 | * |
| 224 | * @return void |
| 225 | */ |
| 226 | public function get_pinterest_token() { |
| 227 | |
| 228 | check_ajax_referer( 'pa-editor', 'security' ); |
| 229 | |
| 230 | $api_url = 'https://appfb.premiumaddons.com/wp-json/fbapp/v2/pinterest'; |
| 231 | |
| 232 | $response = wp_remote_get( |
| 233 | $api_url, |
| 234 | array( |
| 235 | 'timeout' => 15, |
| 236 | 'sslverify' => true, |
| 237 | ) |
| 238 | ); |
| 239 | |
| 240 | $body = wp_remote_retrieve_body( $response ); |
| 241 | $body = json_decode( $body, true ); |
| 242 | |
| 243 | wp_send_json_success( $body ); |
| 244 | } |
| 245 | |
| 246 | /** |
| 247 | * Get Pinterest account token for Pinterest Feed widget |
| 248 | * |
| 249 | * @since 4.10.2 |
| 250 | * @access public |
| 251 | * |
| 252 | * @return void |
| 253 | */ |
| 254 | public function get_pinterest_boards() { |
| 255 | |
| 256 | check_ajax_referer( 'pa-blog-widget-nonce', 'nonce' ); |
| 257 | |
| 258 | if ( ! isset( $_GET['token'] ) ) { |
| 259 | wp_send_json_error(); |
| 260 | } |
| 261 | |
| 262 | $token = sanitize_text_field( wp_unslash( $_GET['token'] ) ); |
| 263 | |
| 264 | $transient_name = 'pa_pinterest_boards_' . substr( $token, 0, 15 ); |
| 265 | |
| 266 | $body = get_transient( $transient_name ); |
| 267 | |
| 268 | if ( false === $body ) { |
| 269 | |
| 270 | $api_url = 'https://api.pinterest.com/v5/boards?page_size=60'; |
| 271 | |
| 272 | $response = wp_remote_get( |
| 273 | $api_url, |
| 274 | array( |
| 275 | 'headers' => array( |
| 276 | 'Authorization' => 'Bearer ' . $token, |
| 277 | ), |
| 278 | ) |
| 279 | ); |
| 280 | |
| 281 | $body = wp_remote_retrieve_body( $response ); |
| 282 | $body = json_decode( $body, true ); |
| 283 | |
| 284 | set_transient( $transient_name, $body, 30 * MINUTE_IN_SECONDS ); |
| 285 | |
| 286 | } |
| 287 | |
| 288 | $boards = array(); |
| 289 | |
| 290 | foreach ( $body['items'] as $index => $board ) { |
| 291 | $boards[ $board['id'] ] = $board['name']; |
| 292 | } |
| 293 | |
| 294 | wp_send_json_success( wp_json_encode( $boards ) ); |
| 295 | } |
| 296 | |
| 297 | /** |
| 298 | * Get Pinterest account token for Pinterest Feed widget |
| 299 | * |
| 300 | * @since 4.10.2 |
| 301 | * @access public |
| 302 | * |
| 303 | * @return void |
| 304 | */ |
| 305 | public function get_tiktok_token() { |
| 306 | |
| 307 | check_ajax_referer( 'pa-editor', 'security' ); |
| 308 | |
| 309 | $api_url = 'https://appfb.premiumaddons.com/wp-json/fbapp/v2/tiktok'; |
| 310 | |
| 311 | $response = wp_remote_get( |
| 312 | $api_url, |
| 313 | array( |
| 314 | 'timeout' => 15, |
| 315 | 'sslverify' => false, |
| 316 | ) |
| 317 | ); |
| 318 | |
| 319 | $body = wp_remote_retrieve_body( $response ); |
| 320 | $body = json_decode( $body, true ); |
| 321 | |
| 322 | wp_send_json_success( $body ); |
| 323 | } |
| 324 | |
| 325 | /** |
| 326 | * Send Element Feedback |
| 327 | * |
| 328 | * Send element feedback via AJAX. |
| 329 | * |
| 330 | * @since 4.11.58 |
| 331 | * @access public |
| 332 | * |
| 333 | * @return void |
| 334 | */ |
| 335 | public function send() { |
| 336 | |
| 337 | check_ajax_referer( 'pa-editor', 'security' ); |
| 338 | |
| 339 | $user_msg = isset( $_POST['user_message'] ) ? sanitize_text_field( wp_unslash( $_POST['user_message'] ) ) : ''; |
| 340 | |
| 341 | if ( empty( $user_msg ) ) { |
| 342 | wp_send_json_error( array( 'message' => esc_html__( 'Message cannot be empty.', 'premium-addons-for-elementor' ) ) ); |
| 343 | } |
| 344 | |
| 345 | $user = wp_get_current_user(); |
| 346 | |
| 347 | $email = $user->user_email; |
| 348 | |
| 349 | if ( empty( $email ) ) { |
| 350 | wp_send_json_error( array( 'message' => esc_html__( 'User email not found.', 'premium-addons-for-elementor' ) ) ); |
| 351 | } |
| 352 | |
| 353 | $element = isset( $_POST['element_name'] ) ? sanitize_text_field( wp_unslash( $_POST['element_name'] ) ) : ''; |
| 354 | |
| 355 | $body = array( |
| 356 | 'email' => $email, |
| 357 | 'element' => $element, |
| 358 | 'message' => $user_msg, |
| 359 | ); |
| 360 | |
| 361 | $api_url = 'https://feedbackpa.leap13.com/wp-json/element-feedback/v2/add'; |
| 362 | |
| 363 | $response = wp_safe_remote_request( |
| 364 | $api_url, |
| 365 | array( |
| 366 | 'headers' => array( |
| 367 | 'Content-Type' => 'application/json', |
| 368 | ), |
| 369 | 'body' => wp_json_encode( $body ), |
| 370 | 'timeout' => 20, |
| 371 | 'method' => 'POST', |
| 372 | 'httpversion' => '1.1', |
| 373 | ) |
| 374 | ); |
| 375 | |
| 376 | if ( is_wp_error( $response ) ) { |
| 377 | wp_send_json_error( 'REQUEST ERR' ); |
| 378 | |
| 379 | } |
| 380 | |
| 381 | if ( ! isset( $response['response'] ) || ! is_array( $response['response'] ) ) { |
| 382 | wp_send_json_error( 'REQUEST UNKNOWN' ); |
| 383 | |
| 384 | } |
| 385 | |
| 386 | if ( ! isset( $response['body'] ) ) { |
| 387 | wp_send_json_error( 'REQUEST PAYLOAD EMPTY' ); |
| 388 | |
| 389 | } |
| 390 | |
| 391 | wp_send_json_success( ( $response['body'] ) ); |
| 392 | } |
| 393 | |
| 394 | /** |
| 395 | * Get Posts Query |
| 396 | * |
| 397 | * Get posts query via AJAX. |
| 398 | * |
| 399 | * @since 4.11.58 |
| 400 | * @access public |
| 401 | * |
| 402 | * @return void |
| 403 | */ |
| 404 | public function get_posts_query() { |
| 405 | $myinstance = new Premium_Template_Tags(); |
| 406 | $myinstance->get_posts_query(); |
| 407 | } |
| 408 | |
| 409 | /** |
| 410 | * Get Search Results |
| 411 | * |
| 412 | * Get search results via AJAX. |
| 413 | * |
| 414 | * @since 4.11.61 |
| 415 | * @access public |
| 416 | * |
| 417 | * @return void |
| 418 | */ |
| 419 | public function get_search_results() { |
| 420 | $myinstance = new Premium_Template_Tags(); |
| 421 | $myinstance->get_search_results(); |
| 422 | } |
| 423 | } |
| 424 |