abstract-importer.php
3 months ago
class-ad-inserter.php
3 months ago
class-ads-wp-ads.php
3 months ago
class-amp-wp-ads.php
3 months ago
class-api-ads.php
1 year ago
class-google-sheet.php
5 months ago
class-manager.php
1 year ago
class-plugin-exporter.php
1 week ago
class-quick-adsense.php
1 year ago
class-tutorials.php
1 year ago
class-wp-quads.php
1 year ago
class-xml-encoder.php
1 year ago
class-xml-importer.php
5 days ago
class-manager.php
235 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Importers Manager. |
| 4 | * |
| 5 | * @package AdvancedAds |
| 6 | * @author Advanced Ads <info@wpadvancedads.com> |
| 7 | * @since 1.50.0 |
| 8 | */ |
| 9 | |
| 10 | namespace AdvancedAds\Importers; |
| 11 | |
| 12 | use WP_Error; |
| 13 | use AdvancedAds\Utilities\WordPress; |
| 14 | use AdvancedAds\Utilities\Conditional; |
| 15 | use AdvancedAds\Framework\Utilities\Params; |
| 16 | use AdvancedAds\Framework\Interfaces\Integration_Interface; |
| 17 | |
| 18 | defined( 'ABSPATH' ) || exit; |
| 19 | |
| 20 | /** |
| 21 | * Importers Manager. |
| 22 | */ |
| 23 | class Manager implements Integration_Interface { |
| 24 | |
| 25 | /** |
| 26 | * Importer history option key. |
| 27 | * |
| 28 | * @var string |
| 29 | */ |
| 30 | const HISTORY_OPTION_KEY = '_advads_importer_history'; |
| 31 | |
| 32 | /** |
| 33 | * Hold all registered importers |
| 34 | * |
| 35 | * @var array |
| 36 | */ |
| 37 | private $importers = []; |
| 38 | |
| 39 | /** |
| 40 | * Hold message to display on page |
| 41 | * |
| 42 | * @var string|WP_Error |
| 43 | */ |
| 44 | private $message = false; |
| 45 | |
| 46 | /** |
| 47 | * Hook into WordPress. |
| 48 | * |
| 49 | * @return void |
| 50 | */ |
| 51 | public function hooks(): void { |
| 52 | $this->register_importers(); |
| 53 | add_action( 'admin_init', [ $this, 'handle_action' ] ); |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * Get importers |
| 58 | * |
| 59 | * @return array |
| 60 | */ |
| 61 | public function get_importers(): array { |
| 62 | return $this->importers; |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Handle importing |
| 67 | * |
| 68 | * @return void |
| 69 | */ |
| 70 | public function handle_action(): void { |
| 71 | // Early bail!! |
| 72 | if ( ! Conditional::user_cap( 'advanced_ads_edit_ads' ) ) { |
| 73 | return; |
| 74 | } |
| 75 | |
| 76 | $action = WordPress::current_action(); |
| 77 | |
| 78 | if ( 'advads_import' === $action && check_admin_referer( 'advads_import' ) ) { |
| 79 | $importer = Params::post( 'importer' ); |
| 80 | $importer = $this->importers[ $importer ]; |
| 81 | $this->message = $importer->import(); |
| 82 | } |
| 83 | |
| 84 | if ( 'advads_export' === $action && check_admin_referer( 'advads_export' ) ) { |
| 85 | $exporter = new Plugin_Exporter(); |
| 86 | $this->message = $exporter->download_file(); |
| 87 | } |
| 88 | |
| 89 | if ( 'advads_import_delete' === $action && check_admin_referer( 'advads_import_delete' ) ) { |
| 90 | $this->rollback_import(); |
| 91 | } |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Rollback import |
| 96 | * |
| 97 | * @return void |
| 98 | */ |
| 99 | private function rollback_import(): void { |
| 100 | $session_key = Params::get( 'session_key' ); |
| 101 | $session_data = $this->delete_session_history( $session_key ); |
| 102 | if ( ! $session_data ) { |
| 103 | return; |
| 104 | } |
| 105 | |
| 106 | $importer = $this->get_importer( $session_data['importer_id'] ); |
| 107 | $importer->rollback( $session_key ); |
| 108 | |
| 109 | $this->message = __( 'History deleted successfully.', 'advanced-ads' ); |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * Register importers |
| 114 | * |
| 115 | * @return void |
| 116 | */ |
| 117 | private function register_importers(): void { |
| 118 | $this->register_importer( Tutorials::class ); |
| 119 | $this->register_importer( Google_Sheet::class ); |
| 120 | $this->register_importer( Ad_Inserter::class ); |
| 121 | $this->register_importer( Ads_WP_Ads::class ); |
| 122 | $this->register_importer( Amp_WP_Ads::class ); |
| 123 | $this->register_importer( Quick_Adsense::class ); |
| 124 | $this->register_importer( WP_Quads::class ); |
| 125 | $this->register_importer( XML_Importer::class ); |
| 126 | $this->register_importer( Api_Ads::class ); |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * Register custom type. |
| 131 | * |
| 132 | * @param string $classname Type class name. |
| 133 | * |
| 134 | * @return void |
| 135 | */ |
| 136 | public function register_importer( $classname ): void { |
| 137 | $importer = new $classname(); |
| 138 | |
| 139 | $this->importers[ $importer->get_id() ] = $importer; |
| 140 | } |
| 141 | |
| 142 | /** |
| 143 | * Get the registered importer |
| 144 | * |
| 145 | * @param string $id Importer to get. |
| 146 | * |
| 147 | * @return mixed|bool |
| 148 | */ |
| 149 | public function get_importer( $id ) { |
| 150 | return $this->importers[ $id ] ?? false; |
| 151 | } |
| 152 | |
| 153 | /** |
| 154 | * Display any message |
| 155 | * |
| 156 | * @return void |
| 157 | */ |
| 158 | public function display_message(): void { |
| 159 | // Early bail!! |
| 160 | if ( empty( $this->message ) ) { |
| 161 | return; |
| 162 | } |
| 163 | |
| 164 | if ( is_array( $this->message ) ) { |
| 165 | foreach ( $this->message as $message ) { |
| 166 | $type = $message[0] ?? 'success'; |
| 167 | $message = $message[1] ?? ''; |
| 168 | ?> |
| 169 | <div class="notice notice-<?php echo esc_attr( $type ); ?>"> |
| 170 | <p><?php echo $message; // phpcs:ignore ?></p> |
| 171 | </div> |
| 172 | <?php |
| 173 | } |
| 174 | |
| 175 | return; |
| 176 | } |
| 177 | |
| 178 | $type = 'success'; |
| 179 | $message = $this->message; |
| 180 | |
| 181 | if ( is_wp_error( $this->message ) ) { |
| 182 | $type = 'error'; |
| 183 | $message = $this->message->get_error_message(); |
| 184 | } |
| 185 | |
| 186 | ?> |
| 187 | <div class="notice notice-<?php echo $type; // phpcs:ignore ?>"> |
| 188 | <p><?php echo $message; // phpcs:ignore ?></p> |
| 189 | </div> |
| 190 | <?php |
| 191 | } |
| 192 | |
| 193 | /** |
| 194 | * Add row to session history |
| 195 | * |
| 196 | * @param string $importer_id Importer id. |
| 197 | * @param string $key Session key. |
| 198 | * @param int $count Ad and Placement created. |
| 199 | * |
| 200 | * @return void |
| 201 | */ |
| 202 | public function add_session_history( $importer_id, $key, $count ): void { |
| 203 | $history = get_option( self::HISTORY_OPTION_KEY, [] ); |
| 204 | |
| 205 | $history[ $key ] = [ |
| 206 | 'importer_id' => $importer_id, |
| 207 | 'session_key' => $key, |
| 208 | 'count' => $count, |
| 209 | 'created_at' => wp_date( 'U' ), |
| 210 | ]; |
| 211 | |
| 212 | update_option( self::HISTORY_OPTION_KEY, $history ); |
| 213 | } |
| 214 | |
| 215 | /** |
| 216 | * Delete row from session history |
| 217 | * |
| 218 | * @param string $key Session key. |
| 219 | * |
| 220 | * @return array|bool |
| 221 | */ |
| 222 | public function delete_session_history( $key ) { |
| 223 | $return = false; |
| 224 | $history = get_option( self::HISTORY_OPTION_KEY, [] ); |
| 225 | |
| 226 | if ( isset( $history[ $key ] ) ) { |
| 227 | $return = $history[ $key ]; |
| 228 | unset( $history[ $key ] ); |
| 229 | update_option( self::HISTORY_OPTION_KEY, $history ); |
| 230 | } |
| 231 | |
| 232 | return $return; |
| 233 | } |
| 234 | } |
| 235 |