HEX
Server: Apache
System: Linux az1-ss100.a2hosting.com 4.18.0-553.16.1.lve.1.el8.x86_64 #1 SMP Mon Sep 23 20:16:18 UTC 2024 x86_64
User: crypto73 (2057)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/crypto73/www/wp-content/plugins/wpematico/app/xml-importer.php
<?php
// don't load directly 
if ( !defined('ABSPATH') ) {
	header( 'Status: 403 Forbidden' );
	header( 'HTTP/1.1 403 Forbidden' );
	exit();
}

if (!class_exists('WPeMatico_XML_Importer')) :
class WPeMatico_XML_Importer {
	
	public static $xmlnodes = array();
	public static $xmlreturn = array();

    public static function hooks() {
        add_action('wp_ajax_wpematico_xml_check_data', array( __CLASS__, 'ajax_xml_check_data'));
        add_filter('wpematico_custom_simplepie', array(__CLASS__, 'process_fetching'), 9, 4);
        add_filter('wpematico_get_item_images', array(__CLASS__, 'featured_image'), 10, 5);
        
        $options = get_option( WPeMatico::OPTION_KEY );
        if ( ! empty( $options['enable_xml_upload'] ) ) {

            add_filter( 'post_mime_types', array(__CLASS__, 'modify_post_mime_types') );
            add_filter( 'mime_types', array(__CLASS__, 'add_mime_types') );

        }
        
        
    }
    
    public static function featured_image($current_item, $campaign, $item, $options_images) {
        if ($campaign['campaign_type'] == 'xml') {
            $fimg = $item->get_post_meta('image');
            if ( ! empty( $fimg ) ) {
                $current_item['images'][] = $fimg;
            }
        }
        return $current_item;
    }
    public static function modify_post_mime_types($post_mime_types) {
			$post_mime_types['application/xml'] = array(
				esc_html__('XMLs', 'wpematico'), 
				esc_html__('Manage XMLs', 'wpematico'), 
				/* translators: A counter. */
				_n_noop('XML <span class="count">(%s)</span>', 'XMLs <span class="count">(%s)</span>', 'wpematico')
			);
			
			return $post_mime_types;
		}

		public static function add_mime_types($mime_types) {
        $mime_types['xml'] = 'application/xml';
        return $mime_types;
    }
    public static function process_fetching($simplepie, $class, $feed, $kf) {
        $campaign = $class->campaign;
        if (is_array($campaign) && $campaign['campaign_type'] == 'xml') {
            
            if ( ! class_exists('WPeMatico_SimplePie')) {
                require_once(WPEMATICO_PLUGIN_DIR. 'app/lib/blank-simplepie.php');
            }
            
            $simplepie = new WPeMatico_SimplePie( $campaign['campaign_xml_feed_url'], 'WPeMatico XML Campaign Type', 'WPeMatico XML Campaign Type');
            
            
            $data_xml = apply_filters('wpematico_xml_file_fetch', '', $campaign);
            if( empty( $data_xml ) ) {
                $data_xml = WPeMatico::wpematico_get_contents( $campaign['campaign_xml_feed_url'], true );
            }


            $data_xml = apply_filters('wpematico_xml_data_before_parse', $data_xml, $campaign);
        

            if ( ! empty( $data_xml ) ) {
                $xml = @simplexml_load_string( $data_xml, 'SimpleXMLElement', LIBXML_NOCDATA );
                $simplepie->raw_data = $data_xml;

                $campaign_xml_node  = $campaign['campaign_xml_node'];
                $campaign_xml_node_parent  = $campaign['campaign_xml_node_parent'];


                $xpath_title                = ( !empty( $campaign_xml_node['post_title'] ) ? $campaign_xml_node['post_title'] : '' );
                $xpath_content              = ( !empty( $campaign_xml_node['post_content'] ) ? $campaign_xml_node['post_content'] : '' );
                $xpath_permalink            = ( !empty( $campaign_xml_node['post_permalink'] ) ? $campaign_xml_node['post_permalink'] : '' );
                $xpath_date                 = ( !empty( $campaign_xml_node['post_date'] ) ? $campaign_xml_node['post_date'] : '' );
                $xpath_image                = ( !empty( $campaign_xml_node['post_image'] ) ? $campaign_xml_node['post_image'] : '' );

                $xpath_parent_title         = ( !empty( $campaign_xml_node_parent['post_title'] ) ? $campaign_xml_node_parent['post_title'] : '' );
                $xpath_parent_content       = ( !empty( $campaign_xml_node_parent['post_content'] ) ? $campaign_xml_node_parent['post_content'] : '' );
                $xpath_parent_permalink     = ( !empty( $campaign_xml_node_parent['post_permalink'] ) ? $campaign_xml_node_parent['post_permalink'] : '' );
                $xpath_parent_date          = ( !empty( $campaign_xml_node_parent['post_date'] ) ? $campaign_xml_node_parent['post_date'] : '' );
                $xpath_parent_image         = ( !empty( $campaign_xml_node_parent['post_image'] ) ? $campaign_xml_node_parent['post_image'] : '' );


                if ( ! empty( $xpath_title ) ) {


                    $nodes_title            =  ( ! empty($xpath_parent_title) ? $xml->xpath( $xpath_parent_title ) : $xml->xpath( $xpath_title ) );
                    $nodes_content          =  ( ! empty($xpath_parent_content) ? $xml->xpath( $xpath_parent_content ) : ( ! empty( $xpath_content ) ? $xml->xpath( $xpath_content ) : array() )  );  
                    $nodes_permalink        =  ( ! empty($xpath_parent_permalink) ? $xml->xpath( $xpath_parent_permalink ) : ( ! empty( $xpath_permalink ) ? $xml->xpath( $xpath_permalink ) : array() )  );  
                    $nodes_date             =  ( ! empty($xpath_parent_date) ? $xml->xpath( $xpath_parent_date ) : ( ! empty( $xpath_date ) ? $xml->xpath( $xpath_date ) : array() )  );  
                    $nodes_image            =  ( ! empty($xpath_parent_image) ? $xml->xpath( $xpath_parent_image ) : ( ! empty( $xpath_image ) ? $xml->xpath( $xpath_image ) : array() )  );  

                   

                    foreach ($nodes_title as $key_node_title => $node_title) {
                        
                        

                        $new_title = '';
                        if ( ! empty($xpath_parent_title) ) {
                            $child_xpath_title      = str_replace($xpath_parent_title.'/', '', $xpath_title);
                            $child_nodes_title      = $node_title->xpath($child_xpath_title);
                            $new_title              = (string)array_shift($child_nodes_title);
                            if ( empty($new_title) ) {
                                $new_title          = '';
                            }
                        } else {
                            $new_title              = (string)$node_title;
                        }


                        
                        


                        $new_content = '';
                        if ( ! empty($xpath_parent_content) ) {
                            $child_xpath_content    = str_replace($xpath_parent_content.'/', '', $xpath_content);
                            $child_nodes_content    = $nodes_content[$key_node_title]->xpath($child_xpath_content);
                            $new_content            = (string)array_shift($child_nodes_content);
                            if ( empty($new_content) ) {
                                $new_content        = '';
                            }
                        } else {
                            $new_content            = (string)( ! empty( $nodes_content[$key_node_title] ) ? $nodes_content[$key_node_title] : '' );
                        }

                        $new_permalink = sanitize_title($new_title);
                        if ( ! empty($xpath_parent_permalink) ) {
                            $child_xpath_permalink  = str_replace($xpath_parent_permalink.'/', '', $xpath_permalink);
                            $child_nodes_permalink  = ( ! empty($nodes_permalink[$key_node_title]) ? $nodes_permalink[$key_node_title]->xpath($child_xpath_permalink) : array() );
                            $new_permalink          = (string)array_shift($child_nodes_permalink);
                            if ( empty($new_permalink) ) {
                                $new_permalink      = sanitize_title($new_title);
                            }
                        } else {
                            $new_permalink          = (string)( ! empty( $nodes_permalink[$key_node_title] ) ? $nodes_permalink[$key_node_title] : sanitize_title($new_title) );
                        }

                          
                        $new_date = '';
                        if ( ! empty($xpath_parent_date) ) {
                            $child_xpath_date       = str_replace($xpath_parent_date.'/', '', $xpath_date);
                            $child_nodes_date       = ( ! empty($nodes_date[$key_node_title]) ? $nodes_date[$key_node_title]->xpath($child_xpath_date) : array() ) ;
                            $new_date               = (string)array_shift($child_nodes_date);
                            if ( empty($new_date) ) {
                                $new_date           = '';
                            }
                        } else {
                            $new_date               = (string)( ! empty( $nodes_date[$key_node_title] ) ? $nodes_date[$key_node_title] : '' );
                        }  


                        

                        $new_image = '';
                        if ( ! empty($xpath_parent_image) ) {
                            $child_xpath_image      = str_replace($xpath_parent_image.'/', '', $xpath_image);
                            $child_nodes_image      = $nodes_image[$key_node_title]->xpath($child_xpath_image);
                            $new_image              = (string)array_shift($child_nodes_image);
                            if ( empty($new_image) ) {
                                $new_image          = '';
                            }
                        } else {
                            $new_image              = (string)( ! empty( $nodes_image[$key_node_title] ) ? $nodes_image[$key_node_title] : '' );
                        }

                        
                        
                        $new_simplepie_item = new WPeMatico_SimplePie_Item( $new_title, $new_content, $new_permalink, $new_date);
                        
                        $item_data = array();
                        if ( empty($xpath_parent_title) ) {
                            $parent_node_title = $node_title->xpath( 'parent::*');
                            $item_data = self::get_item_simplepie_data( ! empty($parent_node_title[0]) ? $parent_node_title[0] : $node_title, $xml);
                        } else {
                            $item_data = self::get_item_simplepie_data($node_title, $xml);
                        }
                        
                        $new_simplepie_item->data = $item_data;

                        $new_simplepie_item->set_post_meta('image', $new_image);
                        $new_simplepie_item->set_feed($simplepie);
                        $new_simplepie_item = apply_filters('wpematico_xml_simplepie_item_before_add', $new_simplepie_item, $key_node_title, $xml, $campaign);
                        $simplepie->addItem( $new_simplepie_item );
                   
                    }
                    

                }


            }
            return $simplepie;
        }
        return $simplepie;
    }

    public static function get_item_simplepie_data($item_node, $xml, $item_data = array()) {
 
        if ( empty( $item_data ) ) {

            $item_data = array();
            $item_data['data'] = '';
            $item_data['attribs'] = array();
            $item_data['child'] = array();

        }
        
        
        $namespaces = array_merge( array(null),  $xml->getDocNamespaces(true));

        foreach ($namespaces as $kns => $namespace) :
            
            $ns_url = ( !empty($namespace) ? $namespace : '');
            
            if ( empty( $item_data['child'][$ns_url] ) ) {
                $item_data['child'][$ns_url] = array();
            }
            
            $children_nodes = $item_node->children($namespace);

            if ( ! empty( $children_nodes ) ) {

                foreach( $children_nodes as $key => $value ) :
                    $curr_name = $value->getName();
                    if ( empty( $item_data['child'][$ns_url][$curr_name] ) ) {
                        $item_data['child'][$ns_url][$curr_name] = array();
                    }
                    $new_tag_data = array();
                    $new_tag_data['data'] = (string)$value;
                    $new_tag_data['attribs'] = self::get_item_attributes_data($value, $namespaces);
                    $new_tag_data['child'] = array(); 

                    $new_tag_data = self::get_item_simplepie_data($value, $xml, $new_tag_data);
                    
                    $item_data['child'][$ns_url][$curr_name][] = $new_tag_data;

                        
                endforeach;
            }
        endforeach;

        return $item_data;
    }
    public static function get_item_attributes_data($item_node, $namespaces) {
        $attributes = array();
        foreach ($namespaces as $kns => $namespace) :
            $ns_url = ( empty($namespace) ? $namespace : '');
            if ( empty( $attributes[$ns_url] ) ) {
                $attributes[$ns_url] = array();
            }
            foreach( $item_node->attributes($namespace) as $key => $value ) :
                $attributes[$ns_url][$key] = (string)$value;
            endforeach;
        endforeach;
        return $attributes;
    }
	public static function metabox( $post ) {
		global $post, $campaign_data, $helptip;
		$campaign_xml_feed_url = $campaign_data['campaign_xml_feed_url'];
        $campaign_xml_node = $campaign_data['campaign_xml_node'];
        
		?>
		<label for="campaign_xml_feed_url"><?php esc_html_e('URL of XML', 'wpematico' ); ?></label>
        <input type="text" class="regular-text" id="campaign_xml_feed_url" value="<?php echo esc_attr($campaign_xml_feed_url); ?>" name="campaign_xml_feed_url">
        <?php do_action('wpematico_xml_main_inputs'); ?>
		<div class="xml-campaign-check-data-container">
			<br>
            <button class="button" type="button" id="xml-campaign-check-data-btn"><?php esc_html_e('Check data', 'wpematico' ); ?></button>
        </div>

        <div id="xml-campaign-input-nodes-container" <?php echo ( empty($campaign_xml_node) ? 'style="display:none;"' : ''); ?>>
            <?php if ( ! empty( $campaign_xml_node ) ) {
                self::get_xml_input_nodes($campaign_data);
            }
            ?>


        </div>   
        <?php
	}

    public static function ajax_xml_check_data() {
        $nonce = '';
        if (isset($_REQUEST['nonce'])) {
            $nonce = sanitize_text_field($_REQUEST['nonce']);
        }
        
        if (!wp_verify_nonce($nonce, 'wpematico-xml-check-data-nonce')) {
            wp_die('Security check'); 
        }

        $xml_url = ( !empty( $_REQUEST['xml_feed'] ) ? $_REQUEST['xml_feed'] : '' ); 

        if ( empty( $xml_url ) ) {
             wp_die('<div id="message" class="error notice notice-error is-dismissible"><p>' . esc_html__('Error: Empty feed URL.', 'wpematico') . '</p><button type="button" class="notice-dismiss"><span class="screen-reader-text">Dismiss this notice.</span></button></div>' ); 
        }
        $campaign_data = array(
            'campaign_xml_feed_url'     => $xml_url,
            'campaign_xml_node'         => array(),
            'campaign_xml_node_parent'  => array(),
        );
        $campaign_data = apply_filters('wpematico_xml_campaign_data_ajax', $campaign_data, $_REQUEST);
        self::get_xml_input_nodes( $campaign_data );
        die();
    }

    public static function get_xml_input_nodes($campaign_data) {
        global $helptip;
        if ( empty($helptip) ) {
            if ( ! defined('WPEMATICO_AJAX') ) {
                define('WPEMATICO_AJAX', true);
            }
            require( WPEMATICO_PLUGIN_DIR . '/app/campaign_help.php' );
        }
        $campaign_xml_feed_url = $campaign_data['campaign_xml_feed_url'];
        $campaign_xml_node = $campaign_data['campaign_xml_node'];
        $campaign_xml_node_parent = $campaign_data['campaign_xml_node_parent'];
        
        $fetch_feed_params = array(
            'url'           => $campaign_xml_feed_url,
            'stupidly_fast' => true,
            'max'           => 0,
            'order_by_date' => false,
            'force_feed'    => false,
            'disable_simplepie_notice' => true,
        );

        $fetch_feed_params = apply_filters('wpematico_xml_fetch_feed_params', $fetch_feed_params, 0, $campaign_data);
        $simplepie =  WPeMatico::fetchFeed($fetch_feed_params);
		
        
		$simplepie_error = $simplepie->error();
        $xml_is_not_allowed = apply_filters('wpematico_xml_is_not_allowed', empty( $simplepie_error ), $campaign_data );
        if( $xml_is_not_allowed ) {
             //wp_die(esc_html__('The file is a RSS feed that must use <strong>Feed Fetcher</strong> campaign type instead of XML.', 'wpematico')); 
            echo '<div id="message" class="error notice notice-error is-dismissible"><p>' . esc_html__('The file is a RSS feed that must use "Feed Fetcher" campaign type instead of XML.', 'wpematico') . '</p><button type="button" class="notice-dismiss"><span class="screen-reader-text">Dismiss this notice.</span></button></div>'; 
            if ( wp_doing_ajax() ) {
                die();
            }
            return;
        }

        $data_xml = apply_filters('wpematico_xml_file_fetch', '', $campaign_data);
        if ($data_xml == 'wpematico_campaign_xml_error') {
            return;
        }
        
        if( empty( $data_xml ) ) {
            if ( ! empty( $campaign_xml_feed_url ) ) {
                $data_xml = WPeMatico::wpematico_get_contents( $campaign_xml_feed_url, true );
            }
            
        }

        if ( empty( $data_xml ) ) {
            echo '<div id="message" class="error notice notice-error is-dismissible"><p>' . esc_html__('The XML file has no data or is empty.', 'wpematico') . '</p><button type="button" class="notice-dismiss"><span class="screen-reader-text">Dismiss this notice.</span></button></div>'; 
            if ( wp_doing_ajax() ) {
                die();
            }
            return;
        }
        

        $data_xml = apply_filters('wpematico_xml_data_before_parse', $data_xml, $campaign_data);
        


        if ( ! empty( $data_xml ) ) {
            $xml = @simplexml_load_string( $data_xml, 'SimpleXMLElement', LIBXML_NOCDATA  );
            self::recurse_xml($xml);
        }
        
        ?>
        <br>
        <table class="table_check_data_xml">
            <tr>
                <td><strong><?php esc_html_e('Properties', 'wpematico' ); ?></strong></td>
                <td><strong><?php esc_html_e('Elements of XML', 'wpematico' ); echo '<span class="dashicons dashicons-warning help_tip" title-heltip="'.esc_attr($helptip['Elements of XML']).'"  title="'. esc_attr($helptip['Elements of XML']).'"></span>'; ?></strong></td>
                <td><strong><?php esc_html_e('Parent Element', 'wpematico' ); echo '<span class="dashicons dashicons-warning help_tip" title-heltip="'.esc_attr($helptip['Parent Element']).'"  title="'. esc_attr($helptip['Parent Element']).'"></span>'; ?></strong></td>
                
            </tr>
            <tr>
                <td><?php esc_html_e('Post title', 'wpematico' ); ?></td>
                <td><?php self::get_select_node_html('post_title', ( !empty( $campaign_xml_node['post_title'] ) ? $campaign_xml_node['post_title'] : '' )  ); ?></td>
                <td><?php self::get_select_node_html('post_title', ( !empty( $campaign_xml_node_parent['post_title'] ) ? $campaign_xml_node_parent['post_title'] : '' ),  'campaign_xml_node_parent', false  ); ?></td>
            </tr>
            <tr>
                <td><?php esc_html_e('Post content', 'wpematico' ); ?></td>
                <td><?php self::get_select_node_html('post_content', ( !empty( $campaign_xml_node['post_content'] ) ? $campaign_xml_node['post_content'] : '' )  ); ?></td>
                <td><?php self::get_select_node_html('post_content', ( !empty( $campaign_xml_node_parent['post_content'] ) ? $campaign_xml_node_parent['post_content'] : '' ),  'campaign_xml_node_parent', false  ); ?></td>
               
            </tr>

            <tr>
                <td><?php esc_html_e('Post permalink', 'wpematico' ); ?></td>
                <td><?php self::get_select_node_html('post_permalink', ( !empty( $campaign_xml_node['post_permalink'] ) ? $campaign_xml_node['post_permalink'] : '' )  ); ?></td>
                <td><?php self::get_select_node_html('post_permalink', ( !empty( $campaign_xml_node_parent['post_permalink'] ) ? $campaign_xml_node_parent['post_permalink'] : '' ),  'campaign_xml_node_parent', false  ); ?></td>
            </tr>

            <tr>
                <td><?php esc_html_e('Post date', 'wpematico' ); ?></td>
                <td><?php self::get_select_node_html('post_date', ( !empty( $campaign_xml_node['post_date'] ) ? $campaign_xml_node['post_date'] : '' )  ); ?></td>
                <td><?php self::get_select_node_html('post_date', ( !empty( $campaign_xml_node_parent['post_date'] ) ? $campaign_xml_node_parent['post_date'] : '' ),  'campaign_xml_node_parent', false  ); ?></td>
            </tr>

            <tr>
                <td><?php esc_html_e('Post image', 'wpematico' ); ?></td>
                <td><?php self::get_select_node_html('post_image', ( !empty( $campaign_xml_node['post_image'] ) ? $campaign_xml_node['post_image'] : '' )  ); ?></td>
                <td><?php self::get_select_node_html('post_image', ( !empty( $campaign_xml_node_parent['post_image'] ) ? $campaign_xml_node_parent['post_image'] : '' ),  'campaign_xml_node_parent', false  ); ?></td>
            </tr>
            <?php do_action('wpematico_xml_input_nodes_print', $campaign_data); ?>
            
        </table>
        <?php
    }

    public static function get_select_node_html($input, $value, $input_name = 'campaign_xml_node', $use_atributes = true) {
        ?>
        <select name="<?php esc_attr_e($input_name); ?>[<?php esc_attr_e($input); ?>]" id="<?php esc_attr_e($input_name); ?><?php esc_attr_e($input); ?>" class="<?php esc_attr_e($input_name); ?>">
            <option value=""><?php esc_html_e('Select a XML node.', 'wpematico' ); ?></option>
            <?php
            $first_node_select = "";
            foreach ( self::$xmlnodes as $nodekey => $nodecount ) : ?>
                <?php if ( $first_node_select == '' ) : $first_node_select = $nodecount['key']; endif; ?>
                <option value="<?php esc_attr_e($nodecount['key']); ?>" <?php selected($nodecount['key'], $value, true); ?> >
                    <?php esc_html_e($nodecount['name'].' ('.$nodecount['count'].') '.$nodecount['key'].''); ?>
                </option>

            <?php
                if ( $use_atributes ) :   
                    foreach ( self::$xmlnodes[$nodekey]['attributes'] as $atr_key => $attr ) : 
                ?>
                        <option value="<?php esc_attr_e($nodecount['key']. '/@'. $atr_key); ?>" <?php selected($nodecount['key'] . '/@'. $atr_key, $value, true); ?> >
                            <?php esc_html_e('- ' . $nodecount['name'].' ('.$nodecount['count'].') '.$nodecount['key']. '/@'. $atr_key); ?>
                        </option>
            <?php
                    endforeach;
                endif;
            endforeach;
            ?>
        </select>
        <?php
    }

	private static function recurse_xml( $xml , $parent = "" ) {
        $child_count = 0;
        $namespaces = array_merge( array(null),  $xml->getDocNamespaces(true));
        foreach ($namespaces as $kns => $namespace) :
            
        $children_nodes = $xml->children($namespace);
        if ( ! empty( $children_nodes ) ) {

            foreach( $children_nodes as $key => $value ) :
                $child_count++;

                    $name = ( empty($namespace) ? $value->getName() : $kns . ":" . $value->getName() );
                    
                    $name_key = ( empty($namespace) ?  (string)$key : $kns . ":" . (string)$key );
                    $current_key = ( empty($parent) ?  (string)$name_key : $parent . "/" . (string)$name_key );
                    $count = ( isset( self::$xmlnodes[$current_key]['count'] )  ? self::$xmlnodes[$current_key]['count'] + 1  : 1); 
                    
                    self::$xmlnodes[$current_key] = array(
                        'count'         =>  $count,
                        'name'          =>  $name,
                        'attributes'    =>  $value->attributes(),
                        'key'           =>  $current_key,
                    );
                    
                
                // No childern, aka "leaf node".
                if( self::recurse_xml( $value , $current_key ) == 0 ) {
                    self::$xmlreturn[] = array(
                        'key'           =>  $parent . "/" . (string)$key,
                        'attributes'    =>  $value->attributes(),
                        'value'         =>  maybe_unserialize( htmlspecialchars( $value ) )
                    );
                }
            endforeach;

        }
        endforeach;
        return $child_count;
    }


}
endif;
WPeMatico_XML_Importer::hooks();

?>