403Webshell
Server IP : 172.67.158.161  /  Your IP : 13.58.161.216
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/root/proc/thread-self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/vendor/woocommerce/action-scheduler/classes/migration/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/proc/thread-self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/vendor/woocommerce/action-scheduler/classes/migration/ActionMigrator.php
<?php
namespace Action_Scheduler\Migration;
if (!defined('ABSPATH')) exit;
class ActionMigrator {
 private $source;
 private $destination;
 private $log_migrator;
 public function __construct( \ActionScheduler_Store $source_store, \ActionScheduler_Store $destination_store, LogMigrator $log_migrator ) {
 $this->source = $source_store;
 $this->destination = $destination_store;
 $this->log_migrator = $log_migrator;
 }
 public function migrate( $source_action_id ) {
 try {
 $action = $this->source->fetch_action( $source_action_id );
 $status = $this->source->get_status( $source_action_id );
 } catch ( \Exception $e ) {
 $action = null;
 $status = '';
 }
 if ( is_null( $action ) || empty( $status ) || ! $action->get_schedule()->get_date() ) {
 // null action or empty status means the fetch operation failed or the action didn't exist
 // null schedule means it's missing vital data
 // delete it and move on
 try {
 $this->source->delete_action( $source_action_id );
 } catch ( \Exception $e ) {
 // nothing to do, it didn't exist in the first place
 }
 do_action( 'action_scheduler/no_action_to_migrate', $source_action_id, $this->source, $this->destination );
 return 0;
 }
 try {
 // Make sure the last attempt date is set correctly for completed and failed actions
 $last_attempt_date = ( $status !== \ActionScheduler_Store::STATUS_PENDING ) ? $this->source->get_date( $source_action_id ) : null;
 $destination_action_id = $this->destination->save_action( $action, null, $last_attempt_date );
 } catch ( \Exception $e ) {
 do_action( 'action_scheduler/migrate_action_failed', $source_action_id, $this->source, $this->destination );
 return 0; // could not save the action in the new store
 }
 try {
 switch ( $status ) {
 case \ActionScheduler_Store::STATUS_FAILED :
 $this->destination->mark_failure( $destination_action_id );
 break;
 case \ActionScheduler_Store::STATUS_CANCELED :
 $this->destination->cancel_action( $destination_action_id );
 break;
 }
 $this->log_migrator->migrate( $source_action_id, $destination_action_id );
 $this->source->delete_action( $source_action_id );
 $test_action = $this->source->fetch_action( $source_action_id );
 if ( ! is_a( $test_action, 'ActionScheduler_NullAction' ) ) {
 throw new \RuntimeException( sprintf( __( 'Unable to remove source migrated action %s', 'action-scheduler' ), $source_action_id ) );
 }
 do_action( 'action_scheduler/migrated_action', $source_action_id, $destination_action_id, $this->source, $this->destination );
 return $destination_action_id;
 } catch ( \Exception $e ) {
 // could not delete from the old store
 $this->source->mark_migrated( $source_action_id );
 do_action( 'action_scheduler/migrate_action_incomplete', $source_action_id, $destination_action_id, $this->source, $this->destination );
 do_action( 'action_scheduler/migrated_action', $source_action_id, $destination_action_id, $this->source, $this->destination );
 return $destination_action_id;
 }
 }
}

Youez - 2016 - github.com/yon3zu
LinuXploit