Ajax
2 years ago
BackgroundProcessing
2 years ago
Dto
2 years ago
Entity
2 years ago
Exceptions
2 years ago
Job
2 years ago
Request
2 years ago
Service
2 years ago
Storage
2 years ago
Task
2 years ago
AfterRestore.php
3 years ago
BackupDeleter.php
3 years ago
BackupDownload.php
3 years ago
BackupFileIndex.php
2 years ago
BackupProcessLock.php
3 years ago
BackupRepairer.php
3 years ago
BackupRetentionHandler.php
2 years ago
BackupScheduler.php
2 years ago
BackupServiceProvider.php
2 years ago
BackupValidator.php
2 years ago
WithBackupIdentifier.php
2 years ago
wpstgBackupHeader.txt
3 years ago
BackupServiceProvider.php
117 lines
| 1 | <?php |
| 2 | |
| 3 | namespace WPStaging\Backup; |
| 4 | |
| 5 | use WPStaging\Framework\DI\FeatureServiceProvider; |
| 6 | use WPStaging\Framework\Filesystem\Filesystem; |
| 7 | use WPStaging\Framework\Network\AjaxBackupDownloader; |
| 8 | use WPStaging\Framework\Queue\FileSeekableQueue; |
| 9 | use WPStaging\Framework\Queue\SeekableQueueInterface; |
| 10 | use WPStaging\Backup\Ajax\Backup\PrepareBackup; |
| 11 | use WPStaging\Backup\Ajax\Restore\LoginUrl; |
| 12 | use WPStaging\Backup\Ajax\Restore\PrepareRestore; |
| 13 | use WPStaging\Backup\Ajax\Restore\ReadBackupMetadata; |
| 14 | use WPStaging\Backup\Ajax\ScheduleList; |
| 15 | use WPStaging\Backup\Ajax\Cancel; |
| 16 | use WPStaging\Backup\Ajax\Backup; |
| 17 | use WPStaging\Backup\Ajax\Delete; |
| 18 | use WPStaging\Backup\Ajax\Edit; |
| 19 | use WPStaging\Backup\Ajax\Listing; |
| 20 | use WPStaging\Backup\Ajax\Restore; |
| 21 | use WPStaging\Backup\Ajax\FileInfo; |
| 22 | use WPStaging\Backup\Ajax\FileList; |
| 23 | use WPStaging\Backup\Ajax\Parts; |
| 24 | use WPStaging\Backup\Ajax\Status; |
| 25 | use WPStaging\Backup\Ajax\Upload; |
| 26 | use WPStaging\Backup\Request\Logs; |
| 27 | use WPStaging\Backup\Service\BackupAssets; |
| 28 | use WPStaging\Backup\Service\BackupsFinder; |
| 29 | use WPStaging\Backup\Service\Database\Importer\Insert\ExtendedInserterWithoutTransaction; |
| 30 | use WPStaging\Backup\Service\Database\Importer\Insert\QueryInserter; |
| 31 | use WPStaging\Backup\Task\AbstractTask; |
| 32 | use WPStaging\Backup\Ajax\BackupSpeedIndex; |
| 33 | |
| 34 | class BackupServiceProvider extends FeatureServiceProvider |
| 35 | { |
| 36 | public function createBackupsDirectory() |
| 37 | { |
| 38 | $backupsDirectory = $this->container->make(BackupsFinder::class)->getBackupsDirectory(); |
| 39 | $this->container->make(Filesystem::class)->mkdir($backupsDirectory, true); |
| 40 | } |
| 41 | |
| 42 | protected function registerClasses() |
| 43 | { |
| 44 | $this->container->bind(SeekableQueueInterface::class, function () { |
| 45 | return $this->container->make(FileSeekableQueue::class); |
| 46 | }); |
| 47 | |
| 48 | $this->container->when(AbstractTask::class) |
| 49 | ->needs(SeekableQueueInterface::class) |
| 50 | ->give(FileSeekableQueue::class); |
| 51 | |
| 52 | $this->container->make(BackupDownload::class)->listenDownload(); |
| 53 | |
| 54 | $this->hookDatabaseImporterQueryInserter(); |
| 55 | } |
| 56 | |
| 57 | protected function addHooks() |
| 58 | { |
| 59 | $this->enqueueAjaxListeners(); |
| 60 | |
| 61 | $this->enqueueBackupScripts(); |
| 62 | |
| 63 | add_action('wpstg_weekly_event', [$this, 'createBackupsDirectory'], 25, 0); |
| 64 | |
| 65 | add_action('wp_login', $this->container->callback(AfterRestore::class, 'loginAfterRestore'), 10, 0); |
| 66 | } |
| 67 | |
| 68 | protected function enqueueAjaxListeners() |
| 69 | { |
| 70 | add_action('wp_ajax_wpstg--backups--prepare-backup', $this->container->callback(PrepareBackup::class, 'ajaxPrepare')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 71 | add_action('wp_ajax_wpstg--backups--create', $this->container->callback(Backup::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 72 | |
| 73 | add_action('wp_ajax_wpstg--backups--prepare-restore', $this->container->callback(PrepareRestore::class, 'ajaxPrepare')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 74 | add_action('wp_ajax_wpstg--backups--restore', $this->container->callback(Restore::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 75 | |
| 76 | add_action('wp_ajax_wpstg--backups--read-backup-metadata', $this->container->callback(ReadBackupMetadata::class, 'ajaxPrepare')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 77 | |
| 78 | add_action('wp_ajax_wpstg--backups--listing', $this->container->callback(Listing::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 79 | add_action('wp_ajax_wpstg--backups--delete', $this->container->callback(Delete::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 80 | add_action('wp_ajax_wpstg--backups--cancel', $this->container->callback(Cancel::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 81 | add_action('wp_ajax_wpstg--backups--edit', $this->container->callback(Edit::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 82 | add_action('wp_ajax_wpstg--backups--parts', $this->container->callback(Parts::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 83 | add_action('wp_ajax_wpstg--backups--status', $this->container->callback(Status::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 84 | add_action('wp_ajax_wpstg--backups--restore--file-list', $this->container->callback(FileList::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 85 | add_action('wp_ajax_wpstg--backups--restore--file-info', $this->container->callback(FileInfo::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 86 | add_action('wp_ajax_wpstg--backups--restore--file-upload', $this->container->callback(Upload::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 87 | add_action('wp_ajax_wpstg--backups--uploads-delete-unfinished', $this->container->callback(Upload::class, 'ajaxDeleteIncompleteUploads')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 88 | add_action('wp_ajax_raw_wpstg--backups--login-url', $this->container->callback(LoginUrl::class, 'getLoginUrl')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 89 | add_action('wp_ajax_wpstg_calculate_backup_speed_index', $this->container->callback(BackupSpeedIndex::class, 'ajaxMaybeShowModal')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 90 | |
| 91 | // Nopriv |
| 92 | add_action('wp_ajax_nopriv_wpstg--backups--restore', $this->container->callback(Restore::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 93 | add_action('wp_ajax_nopriv_wpstg--backups--status', $this->container->callback(Status::class, 'render')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 94 | add_action('wp_ajax_nopriv_raw_wpstg--backups--login-url', $this->container->callback(LoginUrl::class, 'getLoginUrl')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 95 | |
| 96 | add_action('wpstg_create_cron_backup', $this->container->callback(BackupScheduler::class, 'createCronBackup'), 10, 1); |
| 97 | add_action('wp_ajax_wpstg--backups-dismiss-schedule', $this->container->callback(BackupScheduler::class, 'dismissSchedule'), 10, 1); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 98 | add_action('wp_ajax_wpstg--backups-fetch-schedules', $this->container->callback(ScheduleList::class, 'renderScheduleList'), 10, 1); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 99 | |
| 100 | add_action("admin_post_wpstg--backups--logs", $this->container->callback(Logs::class, 'download')); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 101 | |
| 102 | // Event that we can run on daily basis to repair any corrupted backup create cron jobs |
| 103 | add_action('wpstg_daily_event', $this->container->callback(BackupScheduler::class, 'reCreateCron'), 10, 0); |
| 104 | add_action('wp_ajax_wpstg-backups-download-url', $this->container->callback(AjaxBackupDownloader::class, 'ajaxDownloadBackupFromRemoteServer'), 10, 0); // phpcs:ignore WPStaging.Security.AuthorizationChecked |
| 105 | } |
| 106 | |
| 107 | protected function hookDatabaseImporterQueryInserter() |
| 108 | { |
| 109 | $this->container->bind(QueryInserter::class, ExtendedInserterWithoutTransaction::class); |
| 110 | } |
| 111 | |
| 112 | protected function enqueueBackupScripts() |
| 113 | { |
| 114 | add_action('wpstg_enqueue_backup_scripts', $this->container->callback(BackupAssets::class, 'register')); |
| 115 | } |
| 116 | } |
| 117 |