PluginProbe ʕ •ᴥ•ʔ
WP STAGING – WordPress Backup, Restore, Migration & Clone / 3.8.4
WP STAGING – WordPress Backup, Restore, Migration & Clone v3.8.4
4.9.3 4.9.2 4.9.1 4.9.0 4.8.1 trunk 3.0.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.10.0 3.2.0 3.3.1 3.3.2 3.3.3 3.4.1 3.4.3 3.5.0 3.6.0 3.7.1 3.8.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.8.7 3.9.0 3.9.1 3.9.2 3.9.3 3.9.4 4.0.0 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.2.0 4.2.1 4.3.0 4.3.1 4.3.2 4.4.0 4.5.0 4.6.0 4.7.0 4.7.1 4.7.2 4.7.3 4.8.0
wp-staging / Backup / BackupServiceProvider.php
wp-staging / Backup Last commit date
Ajax 1 year ago BackgroundProcessing 1 year ago Dto 1 year ago Entity 1 year ago Exceptions 1 year ago Interfaces 1 year ago Job 1 year ago Request 2 years ago Service 1 year ago Storage 2 years ago Task 1 year ago AfterRestore.php 1 year ago BackupDeleter.php 1 year ago BackupDownload.php 1 year ago BackupFileIndex.php 1 year ago BackupHeader.php 1 year ago BackupRepairer.php 1 year ago BackupRetentionHandler.php 2 years ago BackupScheduler.php 1 year ago BackupServiceProvider.php 1 year ago BackupValidator.php 1 year ago FileHeader.php 1 year ago FileHeaderAttribute.php 2 years ago WithBackupIdentifier.php 1 year ago
BackupServiceProvider.php
118 lines
1 <?php
2
3 namespace WPStaging\Backup;
4
5 use WPStaging\Backup\Ajax\Backup;
6 use WPStaging\Backup\Ajax\Cancel;
7 use WPStaging\Backup\Ajax\Delete;
8 use WPStaging\Backup\Ajax\Edit;
9 use WPStaging\Backup\Ajax\FileInfo;
10 use WPStaging\Backup\Ajax\FileList;
11 use WPStaging\Backup\Ajax\Listing;
12 use WPStaging\Backup\Ajax\Parts;
13 use WPStaging\Backup\Ajax\Restore;
14 use WPStaging\Backup\Ajax\ScheduleList;
15 use WPStaging\Backup\Ajax\Status;
16 use WPStaging\Backup\Ajax\Upload;
17 use WPStaging\Backup\Ajax\Backup\PrepareBackup;
18 use WPStaging\Backup\Ajax\Restore\LoginUrl;
19 use WPStaging\Backup\Ajax\Restore\PrepareRestore;
20 use WPStaging\Backup\Ajax\Restore\ReadBackupMetadata;
21 use WPStaging\Backup\Request\Logs;
22 use WPStaging\Backup\Service\BackupAssets;
23 use WPStaging\Backup\Service\BackupsFinder;
24 use WPStaging\Backup\Service\Database\Importer\Insert\ExtendedInserterWithoutTransaction;
25 use WPStaging\Backup\Service\Database\Importer\Insert\QueryInserter;
26 use WPStaging\Backup\Ajax\BackupSpeedIndex;
27 use WPStaging\Framework\DI\FeatureServiceProvider;
28 use WPStaging\Framework\Filesystem\Filesystem;
29 use WPStaging\Framework\Job\Task\AbstractTask;
30 use WPStaging\Framework\Network\AjaxBackupDownloader;
31 use WPStaging\Framework\Queue\FileSeekableQueue;
32 use WPStaging\Framework\Queue\SeekableQueueInterface;
33
34 class BackupServiceProvider extends FeatureServiceProvider
35 {
36 /** @var string */
37 const BACKUP_SCRIPTS_ENQUEUE_ACTION = 'wpstg.backup.enqueue_scripts';
38
39 public function createBackupsDirectory()
40 {
41 $backupsDirectory = $this->container->make(BackupsFinder::class)->getBackupsDirectory();
42 $this->container->make(Filesystem::class)->mkdir($backupsDirectory, true);
43 }
44
45 protected function registerClasses()
46 {
47 $this->container->bind(SeekableQueueInterface::class, function () {
48 return $this->container->make(FileSeekableQueue::class);
49 });
50
51 $this->container->when(AbstractTask::class)
52 ->needs(SeekableQueueInterface::class)
53 ->give(FileSeekableQueue::class);
54
55 $this->hookDatabaseImporterQueryInserter();
56 }
57
58 protected function addHooks()
59 {
60 $this->enqueueAjaxListeners();
61
62 $this->enqueueBackupScripts();
63
64 add_action('wpstg_weekly_event', [$this, 'createBackupsDirectory'], 25, 0);
65
66 add_action('wp_login', $this->container->callback(AfterRestore::class, 'loginAfterRestore'), 10, 0);
67 }
68
69 protected function enqueueAjaxListeners()
70 {
71 add_action('wp_ajax_wpstg--backups--prepare-backup', $this->container->callback(PrepareBackup::class, 'ajaxPrepare')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
72 add_action('wp_ajax_wpstg--backups--create', $this->container->callback(Backup::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
73
74 add_action('wp_ajax_wpstg--backups--prepare-restore', $this->container->callback(PrepareRestore::class, 'ajaxPrepare')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
75 add_action('wp_ajax_wpstg--backups--restore', $this->container->callback(Restore::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
76
77 add_action('wp_ajax_wpstg--backups--read-backup-metadata', $this->container->callback(ReadBackupMetadata::class, 'ajaxPrepare')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
78
79 add_action('wp_ajax_wpstg--backups--listing', $this->container->callback(Listing::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
80 add_action('wp_ajax_wpstg--backups--delete', $this->container->callback(Delete::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
81 add_action('wp_ajax_wpstg--backups--cancel', $this->container->callback(Cancel::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
82 add_action('wp_ajax_wpstg--backups--edit', $this->container->callback(Edit::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
83 add_action('wp_ajax_wpstg--backups--parts', $this->container->callback(Parts::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
84 add_action('wp_ajax_wpstg--backups--status', $this->container->callback(Status::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
85 add_action('wp_ajax_wpstg--backups--restore--file-list', $this->container->callback(FileList::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
86 add_action('wp_ajax_wpstg--backups--restore--file-info', $this->container->callback(FileInfo::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
87 add_action('wp_ajax_wpstg--backups--restore--file-upload', $this->container->callback(Upload::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
88 add_action('wp_ajax_wpstg--backups--uploads-delete-unfinished', $this->container->callback(Upload::class, 'ajaxDeleteIncompleteUploads')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
89 add_action('wp_ajax_raw_wpstg--backups--login-url', $this->container->callback(LoginUrl::class, 'getLoginUrl')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
90 add_action('wp_ajax_wpstg_calculate_backup_speed_index', $this->container->callback(BackupSpeedIndex::class, 'ajaxMaybeShowModal')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
91
92 // Nopriv
93 add_action('wp_ajax_nopriv_wpstg--backups--restore', $this->container->callback(Restore::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
94 add_action('wp_ajax_nopriv_wpstg--backups--status', $this->container->callback(Status::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
95 add_action('wp_ajax_nopriv_raw_wpstg--backups--login-url', $this->container->callback(LoginUrl::class, 'getLoginUrl')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
96
97 add_action('wpstg_create_cron_backup', $this->container->callback(BackupScheduler::class, 'createCronBackup'), 10, 1);
98 add_action('wp_ajax_wpstg--backups-dismiss-schedule', $this->container->callback(BackupScheduler::class, 'dismissSchedule'), 10, 1); // phpcs:ignore WPStaging.Security.AuthorizationChecked
99 add_action('wp_ajax_wpstg--backups-fetch-schedules', $this->container->callback(ScheduleList::class, 'renderScheduleList'), 10, 1); // phpcs:ignore WPStaging.Security.AuthorizationChecked
100
101 add_action("admin_post_wpstg--backups--logs", $this->container->callback(Logs::class, 'download')); // phpcs:ignore WPStaging.Security.AuthorizationChecked
102
103 // Event that we can run on daily basis to repair any corrupted backup create cron jobs
104 add_action('wpstg_daily_event', $this->container->callback(BackupScheduler::class, 'reCreateCron'), 10, 0);
105 add_action('wp_ajax_wpstg-backups-download-url', $this->container->callback(AjaxBackupDownloader::class, 'ajaxDownloadBackupFromRemoteServer'), 10, 0); // phpcs:ignore WPStaging.Security.AuthorizationChecked
106 }
107
108 protected function hookDatabaseImporterQueryInserter()
109 {
110 $this->container->bind(QueryInserter::class, ExtendedInserterWithoutTransaction::class);
111 }
112
113 protected function enqueueBackupScripts()
114 {
115 add_action(self::BACKUP_SCRIPTS_ENQUEUE_ACTION, $this->container->callback(BackupAssets::class, 'register')); // phpcs:ignore
116 }
117 }
118