@@ -32,11 +32,11 @@ discard block |
||
| 32 | 32 | use Wordlift\Post\Post_Adapter; |
| 33 | 33 | // If this file is called directly, abort. |
| 34 | 34 | if ( ! defined( 'WPINC' ) ) { |
| 35 | - die; |
|
| 35 | + die; |
|
| 36 | 36 | } |
| 37 | 37 | define( |
| 38 | - 'WORDLIFT_PLUGIN_FILE', |
|
| 39 | - __FILE__ |
|
| 38 | + 'WORDLIFT_PLUGIN_FILE', |
|
| 39 | + __FILE__ |
|
| 40 | 40 | ); |
| 41 | 41 | define( 'WORDLIFT_VERSION', '3.41.0-dev' ); |
| 42 | 42 | |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | * @since 3.33.6 |
| 51 | 51 | */ |
| 52 | 52 | if ( ! apply_filters( 'wl_is_enabled', true ) ) { |
| 53 | - return; |
|
| 53 | + return; |
|
| 54 | 54 | } |
| 55 | 55 | |
| 56 | 56 | require_once plugin_dir_path( __FILE__ ) . 'vendor/autoload.php'; |
@@ -79,33 +79,33 @@ discard block |
||
| 79 | 79 | */ |
| 80 | 80 | function activate_wordlift() { |
| 81 | 81 | |
| 82 | - $log = Wordlift_Log_Service::get_logger( 'activate_wordlift' ); |
|
| 82 | + $log = Wordlift_Log_Service::get_logger( 'activate_wordlift' ); |
|
| 83 | 83 | |
| 84 | - $log->info( 'Activating WordLift...' ); |
|
| 84 | + $log->info( 'Activating WordLift...' ); |
|
| 85 | 85 | |
| 86 | - require_once plugin_dir_path( __FILE__ ) . 'includes/class-wordlift-activator.php'; |
|
| 87 | - Wordlift_Activator::activate(); |
|
| 86 | + require_once plugin_dir_path( __FILE__ ) . 'includes/class-wordlift-activator.php'; |
|
| 87 | + Wordlift_Activator::activate(); |
|
| 88 | 88 | |
| 89 | - /** |
|
| 90 | - * Tell the {@link Wordlift_Http_Api} class that we're activating, to let it run activation tasks. |
|
| 91 | - * |
|
| 92 | - * @see https://github.com/insideout10/wordlift-plugin/issues/820 related issue. |
|
| 93 | - * @since 3.19.2 |
|
| 94 | - */ |
|
| 95 | - Wordlift_Http_Api::activate(); |
|
| 96 | - |
|
| 97 | - // Ensure the post type is registered before flushing the rewrite rules. |
|
| 98 | - Wordlift_Entity_Post_Type_Service::get_instance()->register(); |
|
| 99 | - flush_rewrite_rules(); |
|
| 100 | - /** |
|
| 101 | - * @since 3.27.7 |
|
| 102 | - * @see https://github.com/insideout10/wordlift-plugin/issues/1214 |
|
| 103 | - */ |
|
| 104 | - Top_Entities::activate(); |
|
| 89 | + /** |
|
| 90 | + * Tell the {@link Wordlift_Http_Api} class that we're activating, to let it run activation tasks. |
|
| 91 | + * |
|
| 92 | + * @see https://github.com/insideout10/wordlift-plugin/issues/820 related issue. |
|
| 93 | + * @since 3.19.2 |
|
| 94 | + */ |
|
| 95 | + Wordlift_Http_Api::activate(); |
|
| 96 | + |
|
| 97 | + // Ensure the post type is registered before flushing the rewrite rules. |
|
| 98 | + Wordlift_Entity_Post_Type_Service::get_instance()->register(); |
|
| 99 | + flush_rewrite_rules(); |
|
| 100 | + /** |
|
| 101 | + * @since 3.27.7 |
|
| 102 | + * @see https://github.com/insideout10/wordlift-plugin/issues/1214 |
|
| 103 | + */ |
|
| 104 | + Top_Entities::activate(); |
|
| 105 | 105 | |
| 106 | - if ( ! wp_next_scheduled( 'wl_daily_cron' ) ) { |
|
| 107 | - wp_schedule_event( time(), 'daily', 'wl_daily_cron' ); |
|
| 108 | - } |
|
| 106 | + if ( ! wp_next_scheduled( 'wl_daily_cron' ) ) { |
|
| 107 | + wp_schedule_event( time(), 'daily', 'wl_daily_cron' ); |
|
| 108 | + } |
|
| 109 | 109 | |
| 110 | 110 | } |
| 111 | 111 | |
@@ -115,23 +115,23 @@ discard block |
||
| 115 | 115 | */ |
| 116 | 116 | function deactivate_wordlift() { |
| 117 | 117 | |
| 118 | - require_once plugin_dir_path( __FILE__ ) . 'includes/class-wordlift-deactivator.php'; |
|
| 119 | - Wordlift_Deactivator::deactivate(); |
|
| 120 | - Wordlift_Http_Api::deactivate(); |
|
| 121 | - Ttl_Cache_Cleaner::deactivate(); |
|
| 122 | - /** |
|
| 123 | - * @since 3.27.7 |
|
| 124 | - * @see https://github.com/insideout10/wordlift-plugin/issues/1214 |
|
| 125 | - */ |
|
| 126 | - Top_Entities::deactivate(); |
|
| 127 | - /** |
|
| 128 | - * @since 3.27.8 |
|
| 129 | - * Remove notification flag on deactivation. |
|
| 130 | - */ |
|
| 131 | - Key_Validation_Notice::remove_notification_flag(); |
|
| 132 | - flush_rewrite_rules(); |
|
| 133 | - |
|
| 134 | - wp_clear_scheduled_hook( 'wl_daily_cron' ); |
|
| 118 | + require_once plugin_dir_path( __FILE__ ) . 'includes/class-wordlift-deactivator.php'; |
|
| 119 | + Wordlift_Deactivator::deactivate(); |
|
| 120 | + Wordlift_Http_Api::deactivate(); |
|
| 121 | + Ttl_Cache_Cleaner::deactivate(); |
|
| 122 | + /** |
|
| 123 | + * @since 3.27.7 |
|
| 124 | + * @see https://github.com/insideout10/wordlift-plugin/issues/1214 |
|
| 125 | + */ |
|
| 126 | + Top_Entities::deactivate(); |
|
| 127 | + /** |
|
| 128 | + * @since 3.27.8 |
|
| 129 | + * Remove notification flag on deactivation. |
|
| 130 | + */ |
|
| 131 | + Key_Validation_Notice::remove_notification_flag(); |
|
| 132 | + flush_rewrite_rules(); |
|
| 133 | + |
|
| 134 | + wp_clear_scheduled_hook( 'wl_daily_cron' ); |
|
| 135 | 135 | |
| 136 | 136 | } |
| 137 | 137 | |
@@ -154,84 +154,84 @@ discard block |
||
| 154 | 154 | * @since 1.0.0 |
| 155 | 155 | */ |
| 156 | 156 | function run_wordlift() { |
| 157 | - /** |
|
| 158 | - * Filter: wl_feature__enable__widgets. |
|
| 159 | - * |
|
| 160 | - * @param bool whether the widgets needed to be registered, defaults to true. |
|
| 161 | - * |
|
| 162 | - * @return bool |
|
| 163 | - * @since 3.27.6 |
|
| 164 | - */ |
|
| 165 | - if ( apply_filters( 'wl_feature__enable__widgets', true ) ) { |
|
| 166 | - add_action( 'widgets_init', 'wl_register_chord_widget' ); |
|
| 167 | - add_action( 'widgets_init', 'wl_register_geo_widget' ); |
|
| 168 | - add_action( 'widgets_init', 'wl_register_timeline_widget' ); |
|
| 169 | - } |
|
| 170 | - add_filter( 'widget_text', 'do_shortcode' ); |
|
| 171 | - |
|
| 172 | - /** |
|
| 173 | - * Filter: wl_feature__enable__analysis |
|
| 174 | - * |
|
| 175 | - * @param bool Whether to send api request to analysis or not |
|
| 176 | - * |
|
| 177 | - * @return bool |
|
| 178 | - * @since 3.27.6 |
|
| 179 | - */ |
|
| 180 | - if ( apply_filters( 'wl_feature__enable__analysis', true ) ) { |
|
| 181 | - add_action( 'wp_ajax_wl_analyze', 'wl_ajax_analyze_action' ); |
|
| 182 | - } else { |
|
| 183 | - add_action( 'wp_ajax_wl_analyze', 'wl_ajax_analyze_disabled_action' ); |
|
| 184 | - } |
|
| 185 | - |
|
| 186 | - $plugin = new Wordlift(); |
|
| 187 | - $plugin->run(); |
|
| 188 | - |
|
| 189 | - // Initialize the TTL Cache Cleaner. |
|
| 190 | - new Ttl_Cache_Cleaner(); |
|
| 191 | - |
|
| 192 | - // Load the new Post Adapter. |
|
| 193 | - new Post_Adapter(); |
|
| 194 | - |
|
| 195 | - // Load the API Data Hooks. |
|
| 196 | - new Api_Data_Hooks(); |
|
| 197 | - |
|
| 198 | - add_action( |
|
| 199 | - 'plugins_loaded', |
|
| 200 | - function () { |
|
| 201 | - // All features from registry should be initialized here. |
|
| 202 | - $features_registry = Features_Registry::get_instance(); |
|
| 203 | - $features_registry->initialize_all_features(); |
|
| 204 | - }, |
|
| 205 | - 5 |
|
| 206 | - ); |
|
| 207 | - |
|
| 208 | - add_action( |
|
| 209 | - 'plugins_loaded', |
|
| 210 | - // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
|
| 211 | - function () use ( $plugin ) { |
|
| 212 | - |
|
| 213 | - new Wordlift_Products_Navigator_Shortcode_REST(); |
|
| 214 | - |
|
| 215 | - // Register the Dataset module, requires `$api_service`. |
|
| 216 | - require_once plugin_dir_path( __FILE__ ) . 'wordlift/dataset/index.php'; |
|
| 217 | - require_once plugin_dir_path( __FILE__ ) . 'wordlift/shipping-data/index.php'; |
|
| 218 | - |
|
| 219 | - /* |
|
| 157 | + /** |
|
| 158 | + * Filter: wl_feature__enable__widgets. |
|
| 159 | + * |
|
| 160 | + * @param bool whether the widgets needed to be registered, defaults to true. |
|
| 161 | + * |
|
| 162 | + * @return bool |
|
| 163 | + * @since 3.27.6 |
|
| 164 | + */ |
|
| 165 | + if ( apply_filters( 'wl_feature__enable__widgets', true ) ) { |
|
| 166 | + add_action( 'widgets_init', 'wl_register_chord_widget' ); |
|
| 167 | + add_action( 'widgets_init', 'wl_register_geo_widget' ); |
|
| 168 | + add_action( 'widgets_init', 'wl_register_timeline_widget' ); |
|
| 169 | + } |
|
| 170 | + add_filter( 'widget_text', 'do_shortcode' ); |
|
| 171 | + |
|
| 172 | + /** |
|
| 173 | + * Filter: wl_feature__enable__analysis |
|
| 174 | + * |
|
| 175 | + * @param bool Whether to send api request to analysis or not |
|
| 176 | + * |
|
| 177 | + * @return bool |
|
| 178 | + * @since 3.27.6 |
|
| 179 | + */ |
|
| 180 | + if ( apply_filters( 'wl_feature__enable__analysis', true ) ) { |
|
| 181 | + add_action( 'wp_ajax_wl_analyze', 'wl_ajax_analyze_action' ); |
|
| 182 | + } else { |
|
| 183 | + add_action( 'wp_ajax_wl_analyze', 'wl_ajax_analyze_disabled_action' ); |
|
| 184 | + } |
|
| 185 | + |
|
| 186 | + $plugin = new Wordlift(); |
|
| 187 | + $plugin->run(); |
|
| 188 | + |
|
| 189 | + // Initialize the TTL Cache Cleaner. |
|
| 190 | + new Ttl_Cache_Cleaner(); |
|
| 191 | + |
|
| 192 | + // Load the new Post Adapter. |
|
| 193 | + new Post_Adapter(); |
|
| 194 | + |
|
| 195 | + // Load the API Data Hooks. |
|
| 196 | + new Api_Data_Hooks(); |
|
| 197 | + |
|
| 198 | + add_action( |
|
| 199 | + 'plugins_loaded', |
|
| 200 | + function () { |
|
| 201 | + // All features from registry should be initialized here. |
|
| 202 | + $features_registry = Features_Registry::get_instance(); |
|
| 203 | + $features_registry->initialize_all_features(); |
|
| 204 | + }, |
|
| 205 | + 5 |
|
| 206 | + ); |
|
| 207 | + |
|
| 208 | + add_action( |
|
| 209 | + 'plugins_loaded', |
|
| 210 | + // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
|
| 211 | + function () use ( $plugin ) { |
|
| 212 | + |
|
| 213 | + new Wordlift_Products_Navigator_Shortcode_REST(); |
|
| 214 | + |
|
| 215 | + // Register the Dataset module, requires `$api_service`. |
|
| 216 | + require_once plugin_dir_path( __FILE__ ) . 'wordlift/dataset/index.php'; |
|
| 217 | + require_once plugin_dir_path( __FILE__ ) . 'wordlift/shipping-data/index.php'; |
|
| 218 | + |
|
| 219 | + /* |
|
| 220 | 220 | * Require the Entity annotation cleanup module. |
| 221 | 221 | * |
| 222 | 222 | * @since 3.34.6 |
| 223 | 223 | */ |
| 224 | - require_once plugin_dir_path( __FILE__ ) . 'wordlift/cleanup/index.php'; |
|
| 224 | + require_once plugin_dir_path( __FILE__ ) . 'wordlift/cleanup/index.php'; |
|
| 225 | 225 | |
| 226 | - /* |
|
| 226 | + /* |
|
| 227 | 227 | * Import LOD entities. |
| 228 | 228 | * |
| 229 | 229 | * @since 3.35.0 |
| 230 | 230 | */ |
| 231 | - require_once plugin_dir_path( __FILE__ ) . 'wordlift/lod-import/index.php'; |
|
| 231 | + require_once plugin_dir_path( __FILE__ ) . 'wordlift/lod-import/index.php'; |
|
| 232 | 232 | |
| 233 | - } |
|
| 234 | - ); |
|
| 233 | + } |
|
| 234 | + ); |
|
| 235 | 235 | |
| 236 | 236 | } |
| 237 | 237 | |
@@ -245,45 +245,45 @@ discard block |
||
| 245 | 245 | */ |
| 246 | 246 | function wordlift_plugin_autoload_register() { |
| 247 | 247 | |
| 248 | - spl_autoload_register( |
|
| 249 | - function ( $class_name ) { |
|
| 248 | + spl_autoload_register( |
|
| 249 | + function ( $class_name ) { |
|
| 250 | 250 | |
| 251 | - // Bail out if these are not our classes. |
|
| 252 | - if ( 0 !== strpos( $class_name, 'Wordlift\\' ) ) { |
|
| 253 | - return false; |
|
| 254 | - } |
|
| 251 | + // Bail out if these are not our classes. |
|
| 252 | + if ( 0 !== strpos( $class_name, 'Wordlift\\' ) ) { |
|
| 253 | + return false; |
|
| 254 | + } |
|
| 255 | 255 | |
| 256 | - $class_name_lc = strtolower( str_replace( '_', '-', $class_name ) ); |
|
| 256 | + $class_name_lc = strtolower( str_replace( '_', '-', $class_name ) ); |
|
| 257 | 257 | |
| 258 | - preg_match( '|^(?:(.*)\\\\)?(.+?)$|', $class_name_lc, $matches ); |
|
| 258 | + preg_match( '|^(?:(.*)\\\\)?(.+?)$|', $class_name_lc, $matches ); |
|
| 259 | 259 | |
| 260 | - $path = str_replace( '\\', DIRECTORY_SEPARATOR, $matches[1] ); |
|
| 261 | - $file = 'class-' . $matches[2] . '.php'; |
|
| 260 | + $path = str_replace( '\\', DIRECTORY_SEPARATOR, $matches[1] ); |
|
| 261 | + $file = 'class-' . $matches[2] . '.php'; |
|
| 262 | 262 | |
| 263 | - $full_path = plugin_dir_path( __FILE__ ) . $path . DIRECTORY_SEPARATOR . $file; |
|
| 263 | + $full_path = plugin_dir_path( __FILE__ ) . $path . DIRECTORY_SEPARATOR . $file; |
|
| 264 | 264 | |
| 265 | - if ( ! file_exists( $full_path ) ) { |
|
| 266 | - return false; |
|
| 267 | - } |
|
| 265 | + if ( ! file_exists( $full_path ) ) { |
|
| 266 | + return false; |
|
| 267 | + } |
|
| 268 | 268 | |
| 269 | - require_once $full_path; |
|
| 269 | + require_once $full_path; |
|
| 270 | 270 | |
| 271 | - return true; |
|
| 272 | - } |
|
| 273 | - ); |
|
| 271 | + return true; |
|
| 272 | + } |
|
| 273 | + ); |
|
| 274 | 274 | |
| 275 | 275 | } |
| 276 | 276 | |
| 277 | 277 | function wl_block_categories( $categories ) { |
| 278 | - return array_merge( |
|
| 279 | - $categories, |
|
| 280 | - array( |
|
| 281 | - array( |
|
| 282 | - 'slug' => 'wordlift', |
|
| 283 | - 'title' => __( 'WordLift', 'wordlift' ), |
|
| 284 | - ), |
|
| 285 | - ) |
|
| 286 | - ); |
|
| 278 | + return array_merge( |
|
| 279 | + $categories, |
|
| 280 | + array( |
|
| 281 | + array( |
|
| 282 | + 'slug' => 'wordlift', |
|
| 283 | + 'title' => __( 'WordLift', 'wordlift' ), |
|
| 284 | + ), |
|
| 285 | + ) |
|
| 286 | + ); |
|
| 287 | 287 | } |
| 288 | 288 | |
| 289 | 289 | /** |
@@ -291,19 +291,19 @@ discard block |
||
| 291 | 291 | * this has to be removed when removing the legacy fields from the ui. |
| 292 | 292 | */ |
| 293 | 293 | function wl_enqueue_leaflet( $in_footer = false ) { |
| 294 | - // Leaflet. |
|
| 295 | - wp_enqueue_style( 'wl-leaflet', plugin_dir_url( __FILE__ ) . 'js/leaflet/leaflet.css', array(), '1.6.0' ); |
|
| 296 | - wp_enqueue_script( 'wl-leaflet', plugin_dir_url( __FILE__ ) . 'js/leaflet/leaflet.js', array(), '1.6.0', $in_footer ); |
|
| 294 | + // Leaflet. |
|
| 295 | + wp_enqueue_style( 'wl-leaflet', plugin_dir_url( __FILE__ ) . 'js/leaflet/leaflet.css', array(), '1.6.0' ); |
|
| 296 | + wp_enqueue_script( 'wl-leaflet', plugin_dir_url( __FILE__ ) . 'js/leaflet/leaflet.js', array(), '1.6.0', $in_footer ); |
|
| 297 | 297 | } |
| 298 | 298 | |
| 299 | 299 | add_filter( 'block_categories', 'wl_block_categories', 10 ); |
| 300 | 300 | |
| 301 | 301 | // Temporary fix for a typo in WooCommerce Extension. |
| 302 | 302 | add_filter( |
| 303 | - 'wl_feature__enable__dataset', |
|
| 304 | - function ( $value ) { |
|
| 305 | - return apply_filters( 'wl_features__enable__dataset', $value ); |
|
| 306 | - } |
|
| 303 | + 'wl_feature__enable__dataset', |
|
| 304 | + function ( $value ) { |
|
| 305 | + return apply_filters( 'wl_features__enable__dataset', $value ); |
|
| 306 | + } |
|
| 307 | 307 | ); |
| 308 | 308 | |
| 309 | 309 | require_once __DIR__ . '/modules/food-kg/load.php'; |
@@ -312,26 +312,26 @@ discard block |
||
| 312 | 312 | require_once __DIR__ . '/modules/include-exclude-push-config/load.php'; |
| 313 | 313 | |
| 314 | 314 | add_action( |
| 315 | - 'update_plugins_adthrive.wordlift.io', |
|
| 316 | - function ( $update, $plugin_data, $plugin_file ) { |
|
| 317 | - // Bail out if it's not our plugin. |
|
| 318 | - $update_uri = $plugin_data['UpdateURI']; |
|
| 319 | - if ( 'wordlift/wordlift.php' !== $plugin_file || ! isset( $update_uri ) ) { |
|
| 320 | - return $update; |
|
| 321 | - } |
|
| 322 | - |
|
| 323 | - $response = wp_remote_get( "$update_uri?nocache=" . time() ); |
|
| 324 | - |
|
| 325 | - if ( is_wp_error( $response ) ) { |
|
| 326 | - return $update; |
|
| 327 | - } |
|
| 328 | - |
|
| 329 | - try { |
|
| 330 | - return json_decode( wp_remote_retrieve_body( $response ) ); |
|
| 331 | - } catch ( Exception $e ) { |
|
| 332 | - return $update; |
|
| 333 | - } |
|
| 334 | - }, |
|
| 335 | - 10, |
|
| 336 | - 3 |
|
| 315 | + 'update_plugins_adthrive.wordlift.io', |
|
| 316 | + function ( $update, $plugin_data, $plugin_file ) { |
|
| 317 | + // Bail out if it's not our plugin. |
|
| 318 | + $update_uri = $plugin_data['UpdateURI']; |
|
| 319 | + if ( 'wordlift/wordlift.php' !== $plugin_file || ! isset( $update_uri ) ) { |
|
| 320 | + return $update; |
|
| 321 | + } |
|
| 322 | + |
|
| 323 | + $response = wp_remote_get( "$update_uri?nocache=" . time() ); |
|
| 324 | + |
|
| 325 | + if ( is_wp_error( $response ) ) { |
|
| 326 | + return $update; |
|
| 327 | + } |
|
| 328 | + |
|
| 329 | + try { |
|
| 330 | + return json_decode( wp_remote_retrieve_body( $response ) ); |
|
| 331 | + } catch ( Exception $e ) { |
|
| 332 | + return $update; |
|
| 333 | + } |
|
| 334 | + }, |
|
| 335 | + 10, |
|
| 336 | + 3 |
|
| 337 | 337 | ); |
@@ -4,29 +4,29 @@ |
||
| 4 | 4 | |
| 5 | 5 | class State { |
| 6 | 6 | |
| 7 | - private $args; |
|
| 8 | - private $has_next; |
|
| 7 | + private $args; |
|
| 8 | + private $has_next; |
|
| 9 | 9 | |
| 10 | - public function __construct( $has_next, $args ) { |
|
| 11 | - $this->has_next = $has_next; |
|
| 12 | - $this->args = $args; |
|
| 13 | - } |
|
| 10 | + public function __construct( $has_next, $args ) { |
|
| 11 | + $this->has_next = $has_next; |
|
| 12 | + $this->args = $args; |
|
| 13 | + } |
|
| 14 | 14 | |
| 15 | - public function has_next() { |
|
| 16 | - return $this->has_next; |
|
| 17 | - } |
|
| 15 | + public function has_next() { |
|
| 16 | + return $this->has_next; |
|
| 17 | + } |
|
| 18 | 18 | |
| 19 | - public function get_args() { |
|
| 20 | - return $this->args; |
|
| 21 | - } |
|
| 19 | + public function get_args() { |
|
| 20 | + return $this->args; |
|
| 21 | + } |
|
| 22 | 22 | |
| 23 | - public static function complete() { |
|
| 24 | - return new self( false, array() ); |
|
| 25 | - } |
|
| 23 | + public static function complete() { |
|
| 24 | + return new self( false, array() ); |
|
| 25 | + } |
|
| 26 | 26 | |
| 27 | - public static function items_in_queue( $args = array() ) { |
|
| 28 | - return new self( true, $args ); |
|
| 29 | - } |
|
| 27 | + public static function items_in_queue( $args = array() ) { |
|
| 28 | + return new self( true, $args ); |
|
| 29 | + } |
|
| 30 | 30 | |
| 31 | 31 | |
| 32 | 32 | } |
@@ -5,47 +5,47 @@ |
||
| 5 | 5 | abstract class Action_Scheduler_Background_Process { |
| 6 | 6 | |
| 7 | 7 | |
| 8 | - /** |
|
| 9 | - * @var string Hook name used for invoking the task method. |
|
| 10 | - */ |
|
| 11 | - private $hook; |
|
| 12 | - /** |
|
| 13 | - * @var string Group which would be used when |
|
| 14 | - */ |
|
| 15 | - private $group; |
|
| 16 | - |
|
| 17 | - |
|
| 18 | - public function __construct( $hook, $group ) { |
|
| 19 | - $this->hook = $hook; |
|
| 20 | - $this->group = $group; |
|
| 21 | - add_action( $this->hook, array( $this, 'task' ) ); |
|
| 22 | - } |
|
| 23 | - |
|
| 24 | - public function schedule( $args = array() ) { |
|
| 25 | - |
|
| 26 | - as_enqueue_async_action( $this->hook, $args, $this->group ); |
|
| 27 | - |
|
| 28 | - } |
|
| 29 | - |
|
| 30 | - public function unschedule() { |
|
| 31 | - as_unschedule_all_actions( $this->hook ); |
|
| 32 | - } |
|
| 33 | - |
|
| 34 | - public function task( $args = array() ) { |
|
| 35 | - $state = $this->do_task( $args ); |
|
| 36 | - if ( $state->has_next() ) { |
|
| 37 | - $this->schedule( $state->get_args() ); |
|
| 38 | - } |
|
| 39 | - } |
|
| 40 | - |
|
| 41 | - |
|
| 42 | - /** |
|
| 43 | - * @param $args |
|
| 44 | - * |
|
| 45 | - * @return State The state object provides necessary information about |
|
| 46 | - * whether to schedule next event or stop processing. |
|
| 47 | - */ |
|
| 48 | - abstract public function do_task( $args ); |
|
| 8 | + /** |
|
| 9 | + * @var string Hook name used for invoking the task method. |
|
| 10 | + */ |
|
| 11 | + private $hook; |
|
| 12 | + /** |
|
| 13 | + * @var string Group which would be used when |
|
| 14 | + */ |
|
| 15 | + private $group; |
|
| 16 | + |
|
| 17 | + |
|
| 18 | + public function __construct( $hook, $group ) { |
|
| 19 | + $this->hook = $hook; |
|
| 20 | + $this->group = $group; |
|
| 21 | + add_action( $this->hook, array( $this, 'task' ) ); |
|
| 22 | + } |
|
| 23 | + |
|
| 24 | + public function schedule( $args = array() ) { |
|
| 25 | + |
|
| 26 | + as_enqueue_async_action( $this->hook, $args, $this->group ); |
|
| 27 | + |
|
| 28 | + } |
|
| 29 | + |
|
| 30 | + public function unschedule() { |
|
| 31 | + as_unschedule_all_actions( $this->hook ); |
|
| 32 | + } |
|
| 33 | + |
|
| 34 | + public function task( $args = array() ) { |
|
| 35 | + $state = $this->do_task( $args ); |
|
| 36 | + if ( $state->has_next() ) { |
|
| 37 | + $this->schedule( $state->get_args() ); |
|
| 38 | + } |
|
| 39 | + } |
|
| 40 | + |
|
| 41 | + |
|
| 42 | + /** |
|
| 43 | + * @param $args |
|
| 44 | + * |
|
| 45 | + * @return State The state object provides necessary information about |
|
| 46 | + * whether to schedule next event or stop processing. |
|
| 47 | + */ |
|
| 48 | + abstract public function do_task( $args ); |
|
| 49 | 49 | |
| 50 | 50 | |
| 51 | 51 | } |
@@ -9,103 +9,103 @@ |
||
| 9 | 9 | |
| 10 | 10 | class Sync_Background_Process extends Action_Scheduler_Background_Process { |
| 11 | 11 | |
| 12 | - const STATE_STARTED = 'started'; |
|
| 13 | - const STATE_STOPPED = 'stopped'; |
|
| 14 | - |
|
| 15 | - const HOOK_NAME = 'wl_dataset__sync'; |
|
| 16 | - |
|
| 17 | - /** |
|
| 18 | - * @var Sync_Service |
|
| 19 | - */ |
|
| 20 | - private $sync_service; |
|
| 21 | - |
|
| 22 | - /** |
|
| 23 | - * @var Sync_Object_Adapter_Factory |
|
| 24 | - */ |
|
| 25 | - private $sync_object_adapter_factory; |
|
| 26 | - |
|
| 27 | - /** |
|
| 28 | - * @var Sync_Background_Process_State |
|
| 29 | - */ |
|
| 30 | - private $state; |
|
| 31 | - |
|
| 32 | - /** |
|
| 33 | - * Sync_Background_Process constructor. |
|
| 34 | - * |
|
| 35 | - * @param Sync_Service $sync_service A {@link Sync_Service} instance providing the supporting functions to this background process. |
|
| 36 | - * @param Sync_Object_Adapter_Factory $sync_object_adapter_factory |
|
| 37 | - */ |
|
| 38 | - public function __construct( $sync_service, $sync_object_adapter_factory ) { |
|
| 39 | - parent::__construct( self::HOOK_NAME, 'wordlift' ); |
|
| 40 | - $this->sync_service = $sync_service; |
|
| 41 | - $this->sync_object_adapter_factory = $sync_object_adapter_factory; |
|
| 42 | - |
|
| 43 | - // Set the current state. |
|
| 44 | - if ( self::STATE_STARTED === $this->get_state() ) { |
|
| 45 | - $this->state = new Sync_Background_Process_Started_State( $this, $this->sync_service, $this->sync_object_adapter_factory ); |
|
| 46 | - } else { |
|
| 47 | - $this->state = new Sync_Background_Process_Stopped_State( $this ); |
|
| 48 | - } |
|
| 49 | - } |
|
| 50 | - |
|
| 51 | - public function start() { |
|
| 52 | - $this->state->leave(); |
|
| 53 | - $this->state = new Sync_Background_Process_Started_State( $this, $this->sync_service, $this->sync_object_adapter_factory ); |
|
| 54 | - $this->state->enter(); |
|
| 55 | - $this->schedule(); |
|
| 56 | - } |
|
| 57 | - |
|
| 58 | - public function stop() { |
|
| 59 | - $this->state->leave(); |
|
| 60 | - $this->state = new Sync_Background_Process_Stopped_State( $this ); |
|
| 61 | - $this->state->enter(); |
|
| 62 | - } |
|
| 63 | - |
|
| 64 | - public function resume() { |
|
| 65 | - $this->schedule(); |
|
| 66 | - $this->state->resume(); |
|
| 67 | - } |
|
| 68 | - |
|
| 69 | - |
|
| 70 | - public function do_task( $args ) { |
|
| 71 | - |
|
| 72 | - // Action scheduler might have pending tasks which can call this method. |
|
| 73 | - // So we need to check if the task should run or not |
|
| 74 | - if ( self::STATE_STOPPED === $this->get_state() ) { |
|
| 75 | - return State::complete(); |
|
| 76 | - } |
|
| 77 | - |
|
| 78 | - $result = $this->state->task( $args ); |
|
| 79 | - if ( ! $result->has_next() ) { |
|
| 80 | - $this->stop(); |
|
| 81 | - } |
|
| 82 | - return $result; |
|
| 83 | - } |
|
| 84 | - |
|
| 85 | - /** |
|
| 86 | - * Get the current state. |
|
| 87 | - * |
|
| 88 | - * @return string Either self::STARTED_STATE or self::STOPPED_STATE (default). |
|
| 89 | - */ |
|
| 90 | - public function get_state() { |
|
| 91 | - return get_option( '_wl_sync_background_process_state', self::STATE_STOPPED ); |
|
| 92 | - } |
|
| 93 | - |
|
| 94 | - /** |
|
| 95 | - * Persist the current state. |
|
| 96 | - * |
|
| 97 | - * @param string $value |
|
| 98 | - * |
|
| 99 | - * @return bool |
|
| 100 | - */ |
|
| 101 | - public function set_state( $value ) { |
|
| 102 | - return null === $value |
|
| 103 | - ? delete_option( '_wl_sync_background_process_state' ) |
|
| 104 | - : update_option( '_wl_sync_background_process_state', $value, true ); |
|
| 105 | - } |
|
| 106 | - |
|
| 107 | - public function get_info() { |
|
| 108 | - return $this->state->get_info(); |
|
| 109 | - } |
|
| 12 | + const STATE_STARTED = 'started'; |
|
| 13 | + const STATE_STOPPED = 'stopped'; |
|
| 14 | + |
|
| 15 | + const HOOK_NAME = 'wl_dataset__sync'; |
|
| 16 | + |
|
| 17 | + /** |
|
| 18 | + * @var Sync_Service |
|
| 19 | + */ |
|
| 20 | + private $sync_service; |
|
| 21 | + |
|
| 22 | + /** |
|
| 23 | + * @var Sync_Object_Adapter_Factory |
|
| 24 | + */ |
|
| 25 | + private $sync_object_adapter_factory; |
|
| 26 | + |
|
| 27 | + /** |
|
| 28 | + * @var Sync_Background_Process_State |
|
| 29 | + */ |
|
| 30 | + private $state; |
|
| 31 | + |
|
| 32 | + /** |
|
| 33 | + * Sync_Background_Process constructor. |
|
| 34 | + * |
|
| 35 | + * @param Sync_Service $sync_service A {@link Sync_Service} instance providing the supporting functions to this background process. |
|
| 36 | + * @param Sync_Object_Adapter_Factory $sync_object_adapter_factory |
|
| 37 | + */ |
|
| 38 | + public function __construct( $sync_service, $sync_object_adapter_factory ) { |
|
| 39 | + parent::__construct( self::HOOK_NAME, 'wordlift' ); |
|
| 40 | + $this->sync_service = $sync_service; |
|
| 41 | + $this->sync_object_adapter_factory = $sync_object_adapter_factory; |
|
| 42 | + |
|
| 43 | + // Set the current state. |
|
| 44 | + if ( self::STATE_STARTED === $this->get_state() ) { |
|
| 45 | + $this->state = new Sync_Background_Process_Started_State( $this, $this->sync_service, $this->sync_object_adapter_factory ); |
|
| 46 | + } else { |
|
| 47 | + $this->state = new Sync_Background_Process_Stopped_State( $this ); |
|
| 48 | + } |
|
| 49 | + } |
|
| 50 | + |
|
| 51 | + public function start() { |
|
| 52 | + $this->state->leave(); |
|
| 53 | + $this->state = new Sync_Background_Process_Started_State( $this, $this->sync_service, $this->sync_object_adapter_factory ); |
|
| 54 | + $this->state->enter(); |
|
| 55 | + $this->schedule(); |
|
| 56 | + } |
|
| 57 | + |
|
| 58 | + public function stop() { |
|
| 59 | + $this->state->leave(); |
|
| 60 | + $this->state = new Sync_Background_Process_Stopped_State( $this ); |
|
| 61 | + $this->state->enter(); |
|
| 62 | + } |
|
| 63 | + |
|
| 64 | + public function resume() { |
|
| 65 | + $this->schedule(); |
|
| 66 | + $this->state->resume(); |
|
| 67 | + } |
|
| 68 | + |
|
| 69 | + |
|
| 70 | + public function do_task( $args ) { |
|
| 71 | + |
|
| 72 | + // Action scheduler might have pending tasks which can call this method. |
|
| 73 | + // So we need to check if the task should run or not |
|
| 74 | + if ( self::STATE_STOPPED === $this->get_state() ) { |
|
| 75 | + return State::complete(); |
|
| 76 | + } |
|
| 77 | + |
|
| 78 | + $result = $this->state->task( $args ); |
|
| 79 | + if ( ! $result->has_next() ) { |
|
| 80 | + $this->stop(); |
|
| 81 | + } |
|
| 82 | + return $result; |
|
| 83 | + } |
|
| 84 | + |
|
| 85 | + /** |
|
| 86 | + * Get the current state. |
|
| 87 | + * |
|
| 88 | + * @return string Either self::STARTED_STATE or self::STOPPED_STATE (default). |
|
| 89 | + */ |
|
| 90 | + public function get_state() { |
|
| 91 | + return get_option( '_wl_sync_background_process_state', self::STATE_STOPPED ); |
|
| 92 | + } |
|
| 93 | + |
|
| 94 | + /** |
|
| 95 | + * Persist the current state. |
|
| 96 | + * |
|
| 97 | + * @param string $value |
|
| 98 | + * |
|
| 99 | + * @return bool |
|
| 100 | + */ |
|
| 101 | + public function set_state( $value ) { |
|
| 102 | + return null === $value |
|
| 103 | + ? delete_option( '_wl_sync_background_process_state' ) |
|
| 104 | + : update_option( '_wl_sync_background_process_state', $value, true ); |
|
| 105 | + } |
|
| 106 | + |
|
| 107 | + public function get_info() { |
|
| 108 | + return $this->state->get_info(); |
|
| 109 | + } |
|
| 110 | 110 | |
| 111 | 111 | } |
@@ -6,31 +6,31 @@ |
||
| 6 | 6 | |
| 7 | 7 | class Sync_Background_Process_Stopped_State extends Abstract_Sync_Background_Process_State { |
| 8 | 8 | |
| 9 | - /** |
|
| 10 | - * @var Sync_Background_Process |
|
| 11 | - */ |
|
| 12 | - private $context; |
|
| 9 | + /** |
|
| 10 | + * @var Sync_Background_Process |
|
| 11 | + */ |
|
| 12 | + private $context; |
|
| 13 | 13 | |
| 14 | - public function __construct( $context ) { |
|
| 15 | - parent::__construct( Sync_Background_Process::STATE_STOPPED ); |
|
| 14 | + public function __construct( $context ) { |
|
| 15 | + parent::__construct( Sync_Background_Process::STATE_STOPPED ); |
|
| 16 | 16 | |
| 17 | - $this->context = $context; |
|
| 18 | - } |
|
| 17 | + $this->context = $context; |
|
| 18 | + } |
|
| 19 | 19 | |
| 20 | - public function enter() { |
|
| 21 | - $this->context->unschedule(); |
|
| 22 | - $this->context->set_state( Sync_Background_Process::STATE_STOPPED ); |
|
| 23 | - } |
|
| 20 | + public function enter() { |
|
| 21 | + $this->context->unschedule(); |
|
| 22 | + $this->context->set_state( Sync_Background_Process::STATE_STOPPED ); |
|
| 23 | + } |
|
| 24 | 24 | |
| 25 | - public function leave() { |
|
| 26 | - $this->context->set_state( null ); |
|
| 27 | - } |
|
| 25 | + public function leave() { |
|
| 26 | + $this->context->set_state( null ); |
|
| 27 | + } |
|
| 28 | 28 | |
| 29 | - // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
|
| 30 | - public function task( $item ) { |
|
| 29 | + // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
|
| 30 | + public function task( $item ) { |
|
| 31 | 31 | |
| 32 | 32 | |
| 33 | - return State::complete(); |
|
| 34 | - } |
|
| 33 | + return State::complete(); |
|
| 34 | + } |
|
| 35 | 35 | |
| 36 | 36 | } |
@@ -12,140 +12,140 @@ |
||
| 12 | 12 | |
| 13 | 13 | class Sync_Background_Process_Started_State extends Abstract_Sync_Background_Process_State { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * @var Sync_Background_Process |
|
| 17 | - */ |
|
| 18 | - private $context; |
|
| 19 | - |
|
| 20 | - /** |
|
| 21 | - * @var Sync_Service |
|
| 22 | - */ |
|
| 23 | - private $sync_service; |
|
| 24 | - |
|
| 25 | - /** |
|
| 26 | - * @var Sync_Background_Process_Stage[] |
|
| 27 | - */ |
|
| 28 | - private $stages; |
|
| 29 | - |
|
| 30 | - private $batch_size = 5; |
|
| 31 | - /** |
|
| 32 | - * @var bool |
|
| 33 | - */ |
|
| 34 | - private $reset; |
|
| 35 | - |
|
| 36 | - /** |
|
| 37 | - * Sync_Background_Process_Started_State constructor. |
|
| 38 | - * |
|
| 39 | - * @param Sync_Background_Process $context |
|
| 40 | - * @param Sync_Service $sync_service |
|
| 41 | - * @param Sync_Object_Adapter_Factory $sync_object_adapter_factory |
|
| 42 | - * @param bool $reset Whether to reset the counters |
|
| 43 | - */ |
|
| 44 | - // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
|
| 45 | - public function __construct( $context, $sync_service, $sync_object_adapter_factory, $reset = true ) { |
|
| 46 | - parent::__construct( Sync_Background_Process::STATE_STARTED ); |
|
| 47 | - |
|
| 48 | - $this->context = $context; |
|
| 49 | - $this->sync_service = $sync_service; |
|
| 50 | - |
|
| 51 | - $this->stages = array( |
|
| 52 | - new Sync_Background_Process_Posts_Stage( $sync_object_adapter_factory ), |
|
| 53 | - new Sync_Background_Process_Terms_Stage( $sync_object_adapter_factory ), |
|
| 54 | - new Sync_Background_Process_Users_Stage( $sync_object_adapter_factory ), |
|
| 55 | - ); |
|
| 56 | - } |
|
| 57 | - |
|
| 58 | - public function enter() { |
|
| 59 | - // Delete the KG contents. |
|
| 60 | - $this->sync_service->delete_all(); |
|
| 61 | - |
|
| 62 | - // Clear caches. |
|
| 63 | - do_action( 'wl_ttl_cache_cleaner__flush' ); |
|
| 64 | - |
|
| 65 | - $counts = array_map( |
|
| 66 | - function ( $item ) { |
|
| 67 | - return $item->count(); |
|
| 68 | - }, |
|
| 69 | - $this->stages |
|
| 70 | - ); |
|
| 71 | - |
|
| 72 | - update_option( '_wl_sync_background_process_count', $counts, true ); |
|
| 73 | - update_option( '_wl_sync_background_process_stage', 0, true ); |
|
| 74 | - update_option( '_wl_sync_background_process_offset', 0, true ); |
|
| 75 | - update_option( '_wl_sync_background_process_started', time(), true ); |
|
| 76 | - update_option( '_wl_sync_background_process_updated', time(), true ); |
|
| 77 | - |
|
| 78 | - $this->context->set_state( Sync_Background_Process::STATE_STARTED ); |
|
| 79 | - |
|
| 80 | - $this->resume(); |
|
| 81 | - } |
|
| 82 | - |
|
| 83 | - public function resume() { |
|
| 84 | - $this->context->schedule(); |
|
| 85 | - } |
|
| 86 | - |
|
| 87 | - public function leave() { |
|
| 88 | - $this->context->set_state( null ); |
|
| 89 | - } |
|
| 90 | - |
|
| 91 | - /** |
|
| 92 | - * @param $args |
|
| 93 | - * |
|
| 94 | - * @return State |
|
| 95 | - */ |
|
| 96 | - // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
|
| 97 | - public function task( $args ) { |
|
| 98 | - $offset = get_option( '_wl_sync_background_process_offset' ); |
|
| 99 | - $stage = get_option( '_wl_sync_background_process_stage' ); |
|
| 100 | - $counts = get_option( '_wl_sync_background_process_count' ); |
|
| 101 | - $batch_size = min( $counts[ $stage ] - $offset, $this->batch_size ); |
|
| 102 | - |
|
| 103 | - add_filter( 'wl_api_service__request', array( $this, 'api_service__request' ) ); |
|
| 104 | - try { |
|
| 105 | - $object_adapters = $this->stages[ $stage ]->get_sync_object_adapters( $offset, $batch_size ); |
|
| 106 | - $this->sync_service->sync_many( $object_adapters, true ); |
|
| 107 | - // phpcs:ignore Generic.CodeAnalysis.EmptyStatement.DetectedCatch |
|
| 108 | - } catch ( \Exception $e ) { |
|
| 109 | - // ignored. |
|
| 110 | - } |
|
| 111 | - remove_filter( 'wl_api_service__request', array( $this, 'api_service__request' ) ); |
|
| 112 | - |
|
| 113 | - update_option( '_wl_sync_background_process_updated', time(), true ); |
|
| 114 | - |
|
| 115 | - // Increase the offset. |
|
| 116 | - if ( ( $offset + $batch_size ) < $counts[ $stage ] ) { |
|
| 117 | - update_option( '_wl_sync_background_process_offset', $offset + $batch_size, true ); |
|
| 118 | - |
|
| 119 | - return State::items_in_queue(); |
|
| 120 | - } |
|
| 121 | - |
|
| 122 | - // Increase the stage. |
|
| 123 | - if ( ( $stage + 1 ) < count( $this->stages ) ) { |
|
| 124 | - update_option( '_wl_sync_background_process_stage', $stage + 1, true ); |
|
| 125 | - update_option( '_wl_sync_background_process_offset', 0, true ); |
|
| 126 | - |
|
| 127 | - return State::items_in_queue(); |
|
| 128 | - } |
|
| 129 | - |
|
| 130 | - |
|
| 131 | - |
|
| 132 | - return State::complete(); |
|
| 133 | - } |
|
| 134 | - |
|
| 135 | - /** |
|
| 136 | - * Hook to provide a request to update the status on the server. |
|
| 137 | - * |
|
| 138 | - * @param array $args |
|
| 139 | - * |
|
| 140 | - * @return mixed |
|
| 141 | - */ |
|
| 142 | - public function api_service__request( $args ) { |
|
| 143 | - |
|
| 144 | - $state_header_value = str_replace( "\n", '', wp_json_encode( $this->context->get_info() ) ); |
|
| 145 | - |
|
| 146 | - $args['headers']['X-Wordlift-Dataset-Sync-State-V1'] = $state_header_value; |
|
| 147 | - |
|
| 148 | - return $args; |
|
| 149 | - } |
|
| 15 | + /** |
|
| 16 | + * @var Sync_Background_Process |
|
| 17 | + */ |
|
| 18 | + private $context; |
|
| 19 | + |
|
| 20 | + /** |
|
| 21 | + * @var Sync_Service |
|
| 22 | + */ |
|
| 23 | + private $sync_service; |
|
| 24 | + |
|
| 25 | + /** |
|
| 26 | + * @var Sync_Background_Process_Stage[] |
|
| 27 | + */ |
|
| 28 | + private $stages; |
|
| 29 | + |
|
| 30 | + private $batch_size = 5; |
|
| 31 | + /** |
|
| 32 | + * @var bool |
|
| 33 | + */ |
|
| 34 | + private $reset; |
|
| 35 | + |
|
| 36 | + /** |
|
| 37 | + * Sync_Background_Process_Started_State constructor. |
|
| 38 | + * |
|
| 39 | + * @param Sync_Background_Process $context |
|
| 40 | + * @param Sync_Service $sync_service |
|
| 41 | + * @param Sync_Object_Adapter_Factory $sync_object_adapter_factory |
|
| 42 | + * @param bool $reset Whether to reset the counters |
|
| 43 | + */ |
|
| 44 | + // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
|
| 45 | + public function __construct( $context, $sync_service, $sync_object_adapter_factory, $reset = true ) { |
|
| 46 | + parent::__construct( Sync_Background_Process::STATE_STARTED ); |
|
| 47 | + |
|
| 48 | + $this->context = $context; |
|
| 49 | + $this->sync_service = $sync_service; |
|
| 50 | + |
|
| 51 | + $this->stages = array( |
|
| 52 | + new Sync_Background_Process_Posts_Stage( $sync_object_adapter_factory ), |
|
| 53 | + new Sync_Background_Process_Terms_Stage( $sync_object_adapter_factory ), |
|
| 54 | + new Sync_Background_Process_Users_Stage( $sync_object_adapter_factory ), |
|
| 55 | + ); |
|
| 56 | + } |
|
| 57 | + |
|
| 58 | + public function enter() { |
|
| 59 | + // Delete the KG contents. |
|
| 60 | + $this->sync_service->delete_all(); |
|
| 61 | + |
|
| 62 | + // Clear caches. |
|
| 63 | + do_action( 'wl_ttl_cache_cleaner__flush' ); |
|
| 64 | + |
|
| 65 | + $counts = array_map( |
|
| 66 | + function ( $item ) { |
|
| 67 | + return $item->count(); |
|
| 68 | + }, |
|
| 69 | + $this->stages |
|
| 70 | + ); |
|
| 71 | + |
|
| 72 | + update_option( '_wl_sync_background_process_count', $counts, true ); |
|
| 73 | + update_option( '_wl_sync_background_process_stage', 0, true ); |
|
| 74 | + update_option( '_wl_sync_background_process_offset', 0, true ); |
|
| 75 | + update_option( '_wl_sync_background_process_started', time(), true ); |
|
| 76 | + update_option( '_wl_sync_background_process_updated', time(), true ); |
|
| 77 | + |
|
| 78 | + $this->context->set_state( Sync_Background_Process::STATE_STARTED ); |
|
| 79 | + |
|
| 80 | + $this->resume(); |
|
| 81 | + } |
|
| 82 | + |
|
| 83 | + public function resume() { |
|
| 84 | + $this->context->schedule(); |
|
| 85 | + } |
|
| 86 | + |
|
| 87 | + public function leave() { |
|
| 88 | + $this->context->set_state( null ); |
|
| 89 | + } |
|
| 90 | + |
|
| 91 | + /** |
|
| 92 | + * @param $args |
|
| 93 | + * |
|
| 94 | + * @return State |
|
| 95 | + */ |
|
| 96 | + // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
|
| 97 | + public function task( $args ) { |
|
| 98 | + $offset = get_option( '_wl_sync_background_process_offset' ); |
|
| 99 | + $stage = get_option( '_wl_sync_background_process_stage' ); |
|
| 100 | + $counts = get_option( '_wl_sync_background_process_count' ); |
|
| 101 | + $batch_size = min( $counts[ $stage ] - $offset, $this->batch_size ); |
|
| 102 | + |
|
| 103 | + add_filter( 'wl_api_service__request', array( $this, 'api_service__request' ) ); |
|
| 104 | + try { |
|
| 105 | + $object_adapters = $this->stages[ $stage ]->get_sync_object_adapters( $offset, $batch_size ); |
|
| 106 | + $this->sync_service->sync_many( $object_adapters, true ); |
|
| 107 | + // phpcs:ignore Generic.CodeAnalysis.EmptyStatement.DetectedCatch |
|
| 108 | + } catch ( \Exception $e ) { |
|
| 109 | + // ignored. |
|
| 110 | + } |
|
| 111 | + remove_filter( 'wl_api_service__request', array( $this, 'api_service__request' ) ); |
|
| 112 | + |
|
| 113 | + update_option( '_wl_sync_background_process_updated', time(), true ); |
|
| 114 | + |
|
| 115 | + // Increase the offset. |
|
| 116 | + if ( ( $offset + $batch_size ) < $counts[ $stage ] ) { |
|
| 117 | + update_option( '_wl_sync_background_process_offset', $offset + $batch_size, true ); |
|
| 118 | + |
|
| 119 | + return State::items_in_queue(); |
|
| 120 | + } |
|
| 121 | + |
|
| 122 | + // Increase the stage. |
|
| 123 | + if ( ( $stage + 1 ) < count( $this->stages ) ) { |
|
| 124 | + update_option( '_wl_sync_background_process_stage', $stage + 1, true ); |
|
| 125 | + update_option( '_wl_sync_background_process_offset', 0, true ); |
|
| 126 | + |
|
| 127 | + return State::items_in_queue(); |
|
| 128 | + } |
|
| 129 | + |
|
| 130 | + |
|
| 131 | + |
|
| 132 | + return State::complete(); |
|
| 133 | + } |
|
| 134 | + |
|
| 135 | + /** |
|
| 136 | + * Hook to provide a request to update the status on the server. |
|
| 137 | + * |
|
| 138 | + * @param array $args |
|
| 139 | + * |
|
| 140 | + * @return mixed |
|
| 141 | + */ |
|
| 142 | + public function api_service__request( $args ) { |
|
| 143 | + |
|
| 144 | + $state_header_value = str_replace( "\n", '', wp_json_encode( $this->context->get_info() ) ); |
|
| 145 | + |
|
| 146 | + $args['headers']['X-Wordlift-Dataset-Sync-State-V1'] = $state_header_value; |
|
| 147 | + |
|
| 148 | + return $args; |
|
| 149 | + } |
|
| 150 | 150 | |
| 151 | 151 | } |
@@ -15,38 +15,38 @@ |
||
| 15 | 15 | use Wordlift\Jsonld\Jsonld_Service; |
| 16 | 16 | |
| 17 | 17 | if ( ! defined( 'ABSPATH' ) ) { |
| 18 | - exit; |
|
| 18 | + exit; |
|
| 19 | 19 | } |
| 20 | 20 | |
| 21 | 21 | // Register the Dataset JSON Endpoint. |
| 22 | 22 | // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
| 23 | 23 | if ( apply_filters( 'wl_feature__enable__dataset-ng', false ) ) { |
| 24 | 24 | |
| 25 | - $sync_object_adapter_factory = new Sync_Object_Adapter_Factory(); |
|
| 26 | - $sync_service = new Sync_Service( Default_Api_Service::get_instance(), $sync_object_adapter_factory, Jsonld_Service::get_instance(), Wordlift_Entity_Service::get_instance() ); |
|
| 27 | - new Sync_Post_Hooks( $sync_service, $sync_object_adapter_factory ); |
|
| 28 | - new Sync_User_Hooks( $sync_service ); |
|
| 29 | - |
|
| 30 | - // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
|
| 31 | - if ( apply_filters( 'wl_feature__enable__no-vocabulary-terms', false ) ) { |
|
| 32 | - new Sync_Term_Hooks( $sync_service, $sync_object_adapter_factory ); |
|
| 33 | - } |
|
| 34 | - /** |
|
| 35 | - * @since 3.28.0 |
|
| 36 | - * @see https://github.com/insideout10/wordlift-plugin/issues/1186 |
|
| 37 | - */ |
|
| 38 | - new Sync_Hooks_Entity_Relation( Wordlift_Entity_Service::get_instance() ); |
|
| 39 | - |
|
| 40 | - // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
|
| 41 | - if ( apply_filters( 'wl_feature__enable__wordpress-ontology', false ) ) { |
|
| 42 | - new Sync_Hooks_Wordpress_Ontology(); |
|
| 43 | - } |
|
| 44 | - |
|
| 45 | - // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
|
| 46 | - if ( apply_filters( 'wl_feature__enable__sync-background', false ) ) { |
|
| 47 | - // Set up the sync background process. |
|
| 48 | - $sync_background_process = new Sync_Background_Process( $sync_service, $sync_object_adapter_factory ); |
|
| 49 | - new Sync_Background_Process_Wpjson_Endpoint( $sync_background_process ); |
|
| 50 | - new Sync_Page(); |
|
| 51 | - } |
|
| 25 | + $sync_object_adapter_factory = new Sync_Object_Adapter_Factory(); |
|
| 26 | + $sync_service = new Sync_Service( Default_Api_Service::get_instance(), $sync_object_adapter_factory, Jsonld_Service::get_instance(), Wordlift_Entity_Service::get_instance() ); |
|
| 27 | + new Sync_Post_Hooks( $sync_service, $sync_object_adapter_factory ); |
|
| 28 | + new Sync_User_Hooks( $sync_service ); |
|
| 29 | + |
|
| 30 | + // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
|
| 31 | + if ( apply_filters( 'wl_feature__enable__no-vocabulary-terms', false ) ) { |
|
| 32 | + new Sync_Term_Hooks( $sync_service, $sync_object_adapter_factory ); |
|
| 33 | + } |
|
| 34 | + /** |
|
| 35 | + * @since 3.28.0 |
|
| 36 | + * @see https://github.com/insideout10/wordlift-plugin/issues/1186 |
|
| 37 | + */ |
|
| 38 | + new Sync_Hooks_Entity_Relation( Wordlift_Entity_Service::get_instance() ); |
|
| 39 | + |
|
| 40 | + // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
|
| 41 | + if ( apply_filters( 'wl_feature__enable__wordpress-ontology', false ) ) { |
|
| 42 | + new Sync_Hooks_Wordpress_Ontology(); |
|
| 43 | + } |
|
| 44 | + |
|
| 45 | + // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
|
| 46 | + if ( apply_filters( 'wl_feature__enable__sync-background', false ) ) { |
|
| 47 | + // Set up the sync background process. |
|
| 48 | + $sync_background_process = new Sync_Background_Process( $sync_service, $sync_object_adapter_factory ); |
|
| 49 | + new Sync_Background_Process_Wpjson_Endpoint( $sync_background_process ); |
|
| 50 | + new Sync_Page(); |
|
| 51 | + } |
|
| 52 | 52 | } |