<?php 
/**
 * Newsletter class
 *
 * @author   Magazine3
 * @category Admin
 * @path     admin_section/newsletter
 * @Version 1.0
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) exit;

class SASWP_Newsletter_Popup {
        
        public function __construct () {
		
                add_filter( 'saswp_localize_filter',array($this,'saswp_add_localize_footer_data'),10,2);
                add_action('wp_ajax_saswp_subscribe_to_news_letter', array($this, 'saswp_subscribe_to_news_letter'));
        }
        
        public function saswp_subscribe_to_news_letter() {

                if( ! current_user_can( saswp_current_user_can()) ) {
                    die( '-1' );    
                }
                if ( ! isset( $_POST['saswp_security_nonce'] ) ){
                    return; 
                }
                if ( !wp_verify_nonce( $_POST['saswp_security_nonce'], 'saswp_ajax_check_nonce' ) ){
                   return;  
                }
                                
	        $name    = isset($_POST['name'])?sanitize_text_field($_POST['name']):'';
                $email   = isset($_POST['email'])?sanitize_text_field($_POST['email']):'';
                $website = isset($_POST['website'])?sanitize_text_field($_POST['website']):'';
                
                if($email){
                        
                    $api_url = 'http://magazine3.company/wp-json/api/central/email/subscribe';

		    $api_params = array(
		        'name'    => $name,
		        'email'   => $email,
		        'website' => $website,
		        'type'    => 'schema'
                    );                    
		    wp_remote_post( $api_url, array( 'timeout' => 15, 'sslverify' => false, 'body' => $api_params ) );                    

                }else{
                        echo esc_html__( 'Email id required', 'schema-and-structured-data-for-wp' );                        
                }                        

                wp_die();
        }
	        
        public function saswp_add_localize_footer_data( $object, $object_name ) {
            
        $dismissed = explode ( ',', get_user_meta ( wp_get_current_user()->ID, 'dismissed_wp_pointers', true ) );
        $do_tour   = !in_array ( 'saswp_subscribe_pointer', $dismissed );
        
        if ( $do_tour ) {
                wp_enqueue_style ( 'wp-pointer' );
                wp_enqueue_script ( 'wp-pointer' );						
	}
                        
        if ( $object_name == 'saswp_localize_data' ) {
                        
                global $current_user;                
		$tour     = array();
                // phpcs:ignore WordPress.Security.NonceVerification.Recommended -- Reason: We are not processing form information but only loading it inside the admin_enqueue_scripts.
                $tab      = isset( $_GET['tab'] ) ? sanitize_text_field( $_GET['tab'] ) : '';
                
                if ( ! array_key_exists( $tab, $tour ) ) {
			                                           			            	
                        $object['do_tour']            = $do_tour;        
                        $object['get_home_url']       = get_home_url();                
                        $object['current_user_email'] = $current_user->user_email;                
                        $object['current_user_name']  = $current_user->display_name;        
			$object['displayID']          = '#menu-posts-saswp';                        
                        $object['button1']            = esc_html__( 'No Thanks', 'schema-and-structured-data-for-wp' );
                        $object['button2']            = false;
                        $object['function_name']      = '';                        
		}
		                                                                                                                                                    
        }
        return $object;
         
    }
       
}
$SASWP_Newsletter_Popup = new SASWP_Newsletter_Popup();