| Server IP : 38.190.208.107 / Your IP : 216.73.217.46 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.9/wp-content/plugins/duplicator/src/Core/Upgrade/ |
Upload File : |
<?php
/**
* @package Duplicator
* @copyright (c) 2022, Snap Creek LLC
*/
namespace Duplicator\Core\Upgrade;
use DUP_Settings;
use Duplicator\Utils\Email\EmailSummary;
use Duplicator\Libs\Snap\SnapIO;
use DUP_Log;
use Exception;
/**
* Utility class managing actions when the plugin is updated
*/
class UpgradeFunctions
{
const LAST_VERSION_EMAIL_SUMMARY_WRONG_KEY = '1.5.6.1';
const FIRST_VERSION_NEW_STORAGE_POSITION = '1.3.35';
const FIRST_VERSION_FOLDER_MIGRATION = '1.5.14';
const FIRST_VERSION_WITH_LOGS_SUBFOLDER = '1.5.14-beta1';
/**
* This function is executed when the plugin is activated and
* every time the version saved in the wp_options is different from the plugin version both in upgrade and downgrade.
*
* @param false|string $currentVersion current Duplicator version, false if is first installation
* @param string $newVersion new Duplicator Version
*
* @return void
*/
public static function performUpgrade($currentVersion, $newVersion): void
{
self::updateStoragePostition($currentVersion);
self::emailSummaryOptKeyUpdate($currentVersion);
self::migrateStorageFolders($currentVersion, $newVersion);
self::migrateLogsToSubfolder($currentVersion);
}
/**
* Update email summary option key seperator from '-' to '_'
*
* @param false|string $currentVersion current Duplicator version, false if is first installation
*
* @return void
*/
private static function emailSummaryOptKeyUpdate($currentVersion): void
{
if ($currentVersion == false || version_compare($currentVersion, self::LAST_VERSION_EMAIL_SUMMARY_WRONG_KEY, '>')) {
return;
}
if (($data = get_option(EmailSummary::INFO_OPT_OLD_KEY)) !== false) {
update_option(EmailSummary::INFO_OPT_KEY, $data);
delete_option(EmailSummary::INFO_OPT_OLD_KEY);
}
}
/**
* Update storage position option
*
* @param false|string $currentVersion current Duplicator version, false if is first installation
*
* @return void
*/
private static function updateStoragePostition($currentVersion): void
{
//PRE 1.3.35
//Do not update to new wp-content storage till after
if ($currentVersion !== false && version_compare($currentVersion, self::FIRST_VERSION_NEW_STORAGE_POSITION, '<')) {
DUP_Settings::Set('storage_position', DUP_Settings::STORAGE_POSITION_LEGACY);
}
}
/**
* Migrate storage folders from legacy to new location
*
* @param false|string $currentVersion current Duplicator version, false if first install
*
* @return void
*/
private static function migrateStorageFolders($currentVersion): void
{
// Skip on fresh installs or if already past migration version
if ($currentVersion === false || version_compare($currentVersion, self::FIRST_VERSION_FOLDER_MIGRATION, '>=')) {
return;
}
// If storage position is already set to new, do not migrate
if (DUP_Settings::Get('storage_position') === DUP_Settings::STORAGE_POSITION_WP_CONTENT) {
return;
}
// Force using wp-content storage position
DUP_Settings::setStoragePosition(DUP_Settings::STORAGE_POSITION_WP_CONTENT);
DUP_Settings::Save();
}
/**
* Migrate existing log files from root directory to logs subfolder
*
* @param false|string $currentVersion current Duplicator version, false if is first installation
*
* @return void
*/
private static function migrateLogsToSubfolder($currentVersion): void
{
if ($currentVersion === false || version_compare($currentVersion, self::FIRST_VERSION_WITH_LOGS_SUBFOLDER, '>=')) {
return;
}
try {
DUP_Log::Trace("MIGRATION: Moving log files to logs subfolder");
// Ensure logs directory exists
if (!file_exists(DUP_Settings::getSsdirLogsPath())) {
SnapIO::dirWriteCheckOrMkdir(DUP_Settings::getSsdirLogsPath(), 'u+rwx');
}
// Use SnapIO::regexGlob for more robust file discovery
$logFiles = SnapIO::regexGlob(DUP_Settings::getSsdirPath(), [
'regexFile' => [
'/.*\.log$/',
'/.*\.log1$/',
],
'regexFolder' => false,
'recursive' => false,
]);
$migratedCount = 0;
foreach ($logFiles as $oldPath) {
$filename = basename($oldPath);
$newPath = DUP_Settings::getSsdirLogsPath() . '/' . $filename;
if (SnapIO::rename($oldPath, $newPath)) {
$migratedCount++;
}
}
DUP_Log::Trace("MIGRATION: Moved {$migratedCount} log files to logs subfolder - old location is now clean");
} catch (Exception $e) {
DUP_Log::Trace("MIGRATION: Error moving log files: " . $e->getMessage());
}
}
}