export.php
208 lines
| 1 | <?php |
| 2 | class Advanced_Ads_Export { |
| 3 | /** |
| 4 | * @var Advanced_Ads_Export |
| 5 | */ |
| 6 | private static $instance; |
| 7 | |
| 8 | /** |
| 9 | * status messages |
| 10 | */ |
| 11 | private $messages = array(); |
| 12 | |
| 13 | private function __construct() { |
| 14 | |
| 15 | $page_hook = 'admin_page_advanced-ads-import-export'; |
| 16 | // execute before headers are sent |
| 17 | add_action( 'load-' . $page_hook, array( $this, 'download_export_file' ) ); |
| 18 | } |
| 19 | |
| 20 | /** |
| 21 | * Return an instance of this class. |
| 22 | */ |
| 23 | public static function get_instance() { |
| 24 | if ( null == self::$instance ) { |
| 25 | self::$instance = new self; |
| 26 | } |
| 27 | return self::$instance; |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * Handle form submissions |
| 32 | */ |
| 33 | public function download_export_file() { |
| 34 | $action = Advanced_Ads_Admin::get_instance()->current_action(); |
| 35 | |
| 36 | if ( $action === 'export' ) { |
| 37 | if ( ! current_user_can( Advanced_Ads_Plugin::user_cap( 'advanced_ads_manage_options') ) ) { |
| 38 | return; |
| 39 | } |
| 40 | |
| 41 | check_admin_referer( 'advads-export' ); |
| 42 | |
| 43 | if ( isset( $_POST['content'] ) ) { |
| 44 | $this->process( $_POST['content'] ); |
| 45 | } |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | /** |
| 50 | * Generate XML file |
| 51 | */ |
| 52 | private function process( array $content ) { |
| 53 | global $wpdb; |
| 54 | |
| 55 | @set_time_limit( 0 ); |
| 56 | @ini_set( 'memory_limit', apply_filters( 'admin_memory_limit', WP_MAX_MEMORY_LIMIT ) ); |
| 57 | |
| 58 | $export = array(); |
| 59 | $advads_ad_groups = get_option( 'advads-ad-groups', array() ); |
| 60 | |
| 61 | if ( in_array( 'ads', $content ) ) { |
| 62 | $advads_ad_weights = get_option( 'advads-ad-weights', array() ); |
| 63 | |
| 64 | $ads = array(); |
| 65 | $export_fields = implode( ', ', array( |
| 66 | 'ID', |
| 67 | 'post_date', |
| 68 | 'post_date_gmt', |
| 69 | 'post_content', |
| 70 | 'post_title', |
| 71 | 'post_password', |
| 72 | 'post_name', |
| 73 | 'post_status', |
| 74 | 'post_modified', |
| 75 | 'post_modified_gmt', |
| 76 | 'guid' |
| 77 | ) ); |
| 78 | |
| 79 | $posts = $wpdb->get_results( $wpdb->prepare( "SELECT $export_fields FROM {$wpdb->posts} where post_type = '%s' and post_status not in ('trash', 'auto-draft')", Advanced_Ads::POST_TYPE_SLUG ), ARRAY_A ); |
| 80 | |
| 81 | foreach ( $posts as $k => $post ) { |
| 82 | if ( ! empty( $post['post_content'] ) ) { |
| 83 | // wrap images in <advads_import_img></advads_import_img> tags |
| 84 | $search = '/' . preg_quote( home_url(), '/' ) . '(\S+?)\.(jpg|jpeg|gif|png)/i'; |
| 85 | $post['post_content'] = preg_replace( $search, '<advads_import_img>\\0</advads_import_img>', $post['post_content'] ); |
| 86 | } |
| 87 | |
| 88 | $ads[$k] = $post; |
| 89 | |
| 90 | if ( in_array( 'groups', $content ) ) { |
| 91 | $terms = wp_get_object_terms( $post['ID'], 'advanced_ads_groups' ); |
| 92 | |
| 93 | foreach ( (array) $terms as $term ) { |
| 94 | $group_info = array( |
| 95 | 'term_id' => $term->term_id, |
| 96 | 'slug' => $term->slug, |
| 97 | 'name' => $term->name, |
| 98 | ); |
| 99 | |
| 100 | if ( isset( $advads_ad_groups[ $term->term_id ] ) ) { |
| 101 | $group_info += $advads_ad_groups[ $term->term_id ]; |
| 102 | } |
| 103 | |
| 104 | if ( isset( $advads_ad_weights[ $term->term_id ][ $post['ID'] ] ) ) { |
| 105 | $group_info['weight'] = $advads_ad_weights[ $term->term_id ][ $post['ID'] ]; |
| 106 | } |
| 107 | |
| 108 | $ads[ $k ]['groups'][] = $group_info; |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | $postmeta = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM {$wpdb->postmeta} WHERE post_id = %d", absint( $post['ID'] ) ) ); |
| 113 | |
| 114 | foreach ( $postmeta as $meta ) { |
| 115 | if ( $meta->meta_key === '_edit_lock' ) { |
| 116 | continue; |
| 117 | } |
| 118 | if ( $meta->meta_key === Advanced_Ads_Ad::$options_meta_field ) { |
| 119 | $ad_options = maybe_unserialize( $meta->meta_value ); |
| 120 | if ( isset( $ad_options['output']['image_id'] ) ) { |
| 121 | $image_id = absint( $ad_options['output']['image_id'] ); |
| 122 | if ( $atached_img = wp_get_attachment_url( $image_id) ) { |
| 123 | $ads[ $k ]['attached_img_url'] = $atached_img; |
| 124 | } |
| 125 | } |
| 126 | $ads[ $k ]['meta_input'][ $meta->meta_key ] = $ad_options; |
| 127 | } else { |
| 128 | $ads[ $k ]['meta_input'] [$meta->meta_key ] = $meta->meta_value; |
| 129 | } |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | if ( $ads ) { |
| 134 | $export['ads'] = $ads; |
| 135 | } |
| 136 | } |
| 137 | |
| 138 | if ( in_array( 'groups', $content ) ) { |
| 139 | $terms = Advanced_Ads::get_instance()->get_model()->get_ad_groups(); |
| 140 | foreach ( $terms as $term ) { |
| 141 | $group_info = array( |
| 142 | 'term_id' => $term->term_id, |
| 143 | 'slug' => $term->slug, |
| 144 | 'name' => $term->name, |
| 145 | ); |
| 146 | |
| 147 | if ( isset( $advads_ad_groups[ $term->term_id ] ) ) { |
| 148 | $group_info += $advads_ad_groups[ $term->term_id ]; |
| 149 | } |
| 150 | |
| 151 | $export['groups'][] = $group_info; |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | if ( in_array( 'placements', $content ) ) { |
| 156 | $placements = Advanced_Ads::get_instance()->get_model()->get_ad_placements_array(); |
| 157 | |
| 158 | // prevent nodes starting with number |
| 159 | foreach ( $placements as $key => &$placement ) { |
| 160 | $placement['key'] = $key; |
| 161 | } |
| 162 | |
| 163 | $export['placements'] = array_values( $placements ); |
| 164 | } |
| 165 | |
| 166 | if ( in_array( 'options', $content ) ) { |
| 167 | $export['options'] = apply_filters( 'advanced-ads-export-options', array ( |
| 168 | ADVADS_SLUG => Advanced_Ads::get_instance()->options(), |
| 169 | ADVADS_SLUG . '-internal' => Advanced_Ads::get_instance()->internal_options(), |
| 170 | ) ); |
| 171 | } |
| 172 | |
| 173 | do_action_ref_array( 'advanced-ads-export', array( $content, &$export ) ); |
| 174 | |
| 175 | if ( $export ) { |
| 176 | if ( defined( 'IMPORT_DEBUG' ) && IMPORT_DEBUG ) { |
| 177 | error_log( print_r( 'Array to decode', true ) ); |
| 178 | error_log( print_r( $export, true) ); |
| 179 | } |
| 180 | |
| 181 | $filename = 'advanced-ads-' . date( 'Y-m-d' ) . '.xml'; |
| 182 | |
| 183 | try { |
| 184 | $encoded = Advanced_Ads_XmlEncoder::get_instance()->encode( $export, array( 'encoding' => get_option( 'blog_charset' ) ) ); |
| 185 | |
| 186 | header( 'Content-Description: File Transfer' ); |
| 187 | header( 'Content-Disposition: attachment; filename=' . $filename ); |
| 188 | header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true ); |
| 189 | echo $encoded; |
| 190 | |
| 191 | if ( defined( 'IMPORT_DEBUG' ) && IMPORT_DEBUG ) { |
| 192 | error_log( print_r( $encoded, true ) ); |
| 193 | $decoded = Advanced_Ads_XmlEncoder::get_instance()->decode( $encoded ); |
| 194 | error_log( 'result ' . var_export( $export === $decoded , true ) ); |
| 195 | } |
| 196 | |
| 197 | exit(); |
| 198 | |
| 199 | } catch ( Exception $e ) { |
| 200 | $this->messages[] = array( 'error', $e->getMessage() ); |
| 201 | } |
| 202 | } |
| 203 | } |
| 204 | |
| 205 | public function get_messages(){ |
| 206 | return $this->messages; |
| 207 | } |
| 208 | } |