first commit

This commit is contained in:
Roman Pyrih
2026-04-03 10:22:35 +02:00
commit 5de35e358d
8424 changed files with 2907254 additions and 0 deletions

View File

@@ -0,0 +1,536 @@
<?php
/**
* @package Duplicator
* @copyright (c) 2022, Snap Creek LLC
*/
use VendorDuplicator\Amk\JsonSerialize\JsonSerialize;
use Duplicator\Core\Models\AbstractEntityList;
use Duplicator\Core\Models\UpdateFromInputInterface;
use Duplicator\Installer\Package\ArchiveDescriptor;
use Duplicator\Libs\Snap\SnapUtil;
use Duplicator\Package\Create\BuildComponents;
use Duplicator\Package\Recovery\RecoveryStatus;
use Duplicator\Utils\Crypt\CryptBlowfish;
use Duplicator\Utils\Settings\ModelMigrateSettingsInterface;
class DUP_PRO_Package_Template_Entity extends AbstractEntityList implements UpdateFromInputInterface, ModelMigrateSettingsInterface
{
/** @var string */
public $name = '';
/** @var string */
public $notes = '';
//MULTISITE:Filter
/** @var int[] */
public $filter_sites = array();
//ARCHIVE:Files
/** @var bool */
public $archive_export_onlydb = false;
/** @var bool */
public $archive_filter_on = false;
/** @var string */
public $archive_filter_dirs = '';
/** @var string */
public $archive_filter_exts = '';
/** @var string */
public $archive_filter_files = '';
/** @var bool */
public $archive_filter_names = false;
/** @var string[] */
public $components = array();
//ARCHIVE:Database
/** @var bool */
public $database_filter_on = false; // Enable Table Filters
/** @var bool */
public $databasePrefixFilter = false; // If true exclude tables without prefix
/** @var bool */
public $databasePrefixSubFilter = false; // If true exclude unexisting subsite id tables
/** @var string */
public $database_filter_tables = ''; // List of filtered tables
/** @var string */
public $database_compatibility_modes = ''; // Older style sql compatibility
//INSTALLER
//Setup
/** @var int */
public $installer_opts_secure_on = 0; // Enable Password Protection
/** @var string */
public $installer_opts_secure_pass = ''; // Old password Protection password, deprecated
/** @var string */
public $installerPassowrd = ''; // Password Protection password
/** @var bool */
public $installer_opts_skip_scan = false; // Skip Scanner
//Basic DB
/** @var string */
public $installer_opts_db_host = ''; // MySQL Server Host
/** @var string */
public $installer_opts_db_name = ''; // Database
/** @var string */
public $installer_opts_db_user = ''; // User
//cPanel Login
/** @var bool */
public $installer_opts_cpnl_enable = false;
/** @var string */
public $installer_opts_cpnl_host = '';
/** @var string */
public $installer_opts_cpnl_user = '';
/** @var string */
public $installer_opts_cpnl_pass = '';
//cPanel DB
/** @var string */
public $installer_opts_cpnl_db_action = 'create';
/** @var string */
public $installer_opts_cpnl_db_host = '';
/** @var string */
public $installer_opts_cpnl_db_name = '';
/** @var string */
public $installer_opts_cpnl_db_user = '';
//Brand
/** @var int */
public $installer_opts_brand = -2;
/** @var bool */
public $is_default = false;
/** @var bool */
public $is_manual = false;
/**
* Class constructor
*/
public function __construct()
{
$this->name = __('New Template', 'duplicator-pro');
$this->components = BuildComponents::COMPONENTS_DEFAULT;
}
/**
* Entity type
*
* @return string
*/
public static function getType()
{
return 'DUP_PRO_Package_Template_Entity';
}
/**
* Will be called, automatically, when Serialize
*
* @return array<string, mixed>
*/
public function __serialize() // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.NewMagicMethods.__serializeFound
{
$data = JsonSerialize::serializeToData($this, JsonSerialize::JSON_SKIP_MAGIC_METHODS | JsonSerialize::JSON_SKIP_CLASS_NAME);
$data['installer_opts_secure_pass'] = '';
$data['installerPassowrd'] = CryptBlowfish::encrypt($this->installerPassowrd, null, true);
return $data;
}
/**
* Serialize
*
* Wakeup method.
*
* @return void
*/
public function __wakeup()
{
/*if ($obj->installer_opts_secure_on == ArchiveDescriptor::SECURE_MODE_ARC_ENCRYPT && !SettingsUtils::isArchiveEncryptionAvailable()) {
$obj->installer_opts_secure_on = ArchiveDescriptor::SECURE_MODE_INST_PWD;
}*/
if (strlen($this->installer_opts_secure_pass) > 0) {
$this->installerPassowrd = base64_decode($this->installer_opts_secure_pass);
} elseif (strlen($this->installerPassowrd) > 0) {
$this->installerPassowrd = CryptBlowfish::decrypt($this->installerPassowrd, null, true);
}
if (is_array($this->database_compatibility_modes)) {
// for old version compatibility
$this->database_compatibility_modes = implode(',', $this->database_compatibility_modes);
}
$this->installer_opts_secure_pass = '';
$this->archive_filter_dirs = (string) $this->archive_filter_dirs;
$this->archive_filter_files = (string) $this->archive_filter_files;
$this->archive_filter_exts = (string) $this->archive_filter_exts;
$this->archive_filter_on = filter_var($this->archive_filter_on, FILTER_VALIDATE_BOOLEAN);
$this->database_filter_on = filter_var($this->database_filter_on, FILTER_VALIDATE_BOOLEAN);
if (is_string($this->filter_sites)) {
$this->filter_sites = [];
}
}
/**
* To export data
*
* @return array<string, mixed>
*/
public function settingsExport()
{
return JsonSerialize::serializeToData($this, JsonSerialize::JSON_SKIP_MAGIC_METHODS | JsonSerialize::JSON_SKIP_CLASS_NAME);
}
/**
* Update object properties from import data
*
* @param array<string, mixed> $data data to import
* @param string $dataVersion version of data
* @param array<string, mixed> $extraData extra data, useful form id mapping etc.
*
* @return bool True if success, otherwise false
*/
public function settingsImport($data, $dataVersion, array $extraData = [])
{
$skipProps = ['id'];
$reflect = new ReflectionClass(self::class);
$props = $reflect->getProperties();
foreach ($props as $prop) {
if (in_array($prop->getName(), $skipProps)) {
continue;
}
if (!isset($data[$prop->getName()])) {
continue;
}
$prop->setAccessible(true);
$prop->setValue($this, $data[$prop->getName()]);
}
if (!isset($data['components'])) {
// Allow import of older templsates that did not have package components
if ($this->archive_export_onlydb) {
$this->components = [BuildComponents::COMP_DB];
} else {
$this->components = BuildComponents::COMPONENTS_DEFAULT;
}
}
return true;
}
/**
* Create default template
*
* @return void
*/
public static function create_default()
{
if (self::get_default_template() == null) {
$template = new self();
$template->name = __('Default', 'duplicator-pro');
$template->notes = __('The default template.', 'duplicator-pro');
$template->is_default = true;
$template->save();
DUP_PRO_Log::trace('Created default template');
} else {
// Update it
DUP_PRO_Log::trace('Default template already exists so not creating');
}
}
/**
* Create manual mode template
*
* @return void
*/
public static function create_manual()
{
if (self::get_manual_template() == null) {
$template = new self();
$template->name = __('[Manual Mode]', 'duplicator-pro');
$template->notes = '';
$template->is_manual = true;
// Copy over the old temporary template settings into this - required for legacy manual
$temp_package = DUP_PRO_Package::get_temporary_package(false);
if ($temp_package != null) {
DUP_PRO_Log::trace('SET TEMPLATE FROM TEMP PACKAGE pwd ' . $temp_package->Installer->passowrd);
$template->components = $temp_package->components;
$template->filter_sites = $temp_package->Multisite->FilterSites;
$template->archive_filter_on = $temp_package->Archive->FilterOn;
$template->archive_filter_dirs = $temp_package->Archive->FilterDirs;
$template->archive_filter_exts = $temp_package->Archive->FilterExts;
$template->archive_filter_files = $temp_package->Archive->FilterFiles;
$template->archive_filter_names = $temp_package->Archive->FilterNames;
$template->installer_opts_brand = $temp_package->Brand_ID;
$template->database_filter_on = $temp_package->Database->FilterOn;
$template->databasePrefixFilter = $temp_package->Database->prefixFilter;
$template->databasePrefixSubFilter = $temp_package->Database->prefixSubFilter;
$template->database_filter_tables = $temp_package->Database->FilterTables;
$template->database_compatibility_modes = $temp_package->Database->Compatible;
$template->installer_opts_db_host = $temp_package->Installer->OptsDBHost;
$template->installer_opts_db_name = $temp_package->Installer->OptsDBName;
$template->installer_opts_db_user = $temp_package->Installer->OptsDBUser;
$template->installer_opts_secure_on = $temp_package->Installer->OptsSecureOn;
$template->installerPassowrd = $temp_package->Installer->passowrd;
$template->installer_opts_skip_scan = $temp_package->Installer->OptsSkipScan;
$global = DUP_PRO_Global_Entity::getInstance();
$storageIds = [];
foreach ($temp_package->get_storages() as $storage) {
$storageIds[] = $storage->getId();
}
$global->setManualModeStorageIds($storageIds);
$global->save();
}
$template->save();
DUP_PRO_Log::trace('Created manual mode template');
} else {
// Update it
DUP_PRO_Log::trace('Manual mode template already exists so not creating');
}
}
/**
*
* @return bool
*/
public function isRecoveable()
{
$status = new RecoveryStatus($this);
return $status->isRecoveable();
}
/**
* Display HTML info
*
* @param bool $isList is list
*
* @return void
*/
public function recoveableHtmlInfo($isList = false)
{
$template = $this;
require DUPLICATOR____PATH . '/views/tools/templates/widget/recoveable-template-info.php';
}
/**
* Set data from query input
*
* @param int $type One of INPUT_GET, INPUT_POST, INPUT_COOKIE, INPUT_SERVER, or INPUT_ENV, SnapUtil::INPUT_REQUEST
*
* @return bool true on success or false on failure
*/
public function setFromInput($type)
{
$input = SnapUtil::getInputFromType($type);
$this->setFromArrayKey(
$input,
function ($key, $val) {
if (is_string($val)) {
$val = stripslashes($val);
}
return (is_scalar($val) ? SnapUtil::sanitizeNSChars($val) : $val);
}
);
$this->components = BuildComponents::getFromInput($input);
$this->database_filter_tables = isset($input['dbtables-list']) ? SnapUtil::sanitizeNSCharsNewlineTrim($input['dbtables-list']) : '';
if (isset($input['filter-paths'])) {
$filterPaths = SnapUtil::sanitizeNSChars($input['filter-paths']);
$this->archive_filter_dirs = DUP_PRO_Archive::parseDirectoryFilter($filterPaths);
$this->archive_filter_files = DUP_PRO_Archive::parseFileFilter($filterPaths);
} else {
$this->archive_filter_dirs = '';
$this->archive_filter_files = '';
}
if (isset($input['filter-exts'])) {
$post_filter_exts = SnapUtil::sanitizeNSCharsNewlineTrim($input['filter-exts']);
$this->archive_filter_exts = DUP_PRO_Archive::parseExtensionFilter($post_filter_exts);
} else {
$this->archive_filter_exts = '';
}
$this->filter_sites = !empty($input['_mu_exclude']) ? $input['_mu_exclude'] : [];
//Archive
$this->archive_filter_on = isset($input['filter-on']);
$this->database_filter_on = isset($input['dbfilter-on']);
$this->databasePrefixFilter = isset($input['db-prefix-filter']);
$this->databasePrefixSubFilter = isset($input['db-prefix-sub-filter']);
$this->archive_filter_names = isset($input['archive_filter_names']);
//Installer
$this->installer_opts_secure_on = filter_input(INPUT_POST, 'secure-on', FILTER_VALIDATE_INT);
switch ($this->installer_opts_secure_on) {
case ArchiveDescriptor::SECURE_MODE_NONE:
case ArchiveDescriptor::SECURE_MODE_INST_PWD:
case ArchiveDescriptor::SECURE_MODE_ARC_ENCRYPT:
break;
default:
throw new Exception(__('Select valid secure mode', 'duplicator-pro'));
}
$this->installer_opts_skip_scan = isset($input['_installer_opts_skip_scan']);
$this->installer_opts_cpnl_enable = isset($input['installer_opts_cpnl_enable']);
$this->installerPassowrd = SnapUtil::sanitizeNSCharsNewline(stripslashes($input['secure-pass']));
$this->notes = SnapUtil::sanitizeNSCharsNewlineTrim(stripslashes($input['notes']));
return true;
}
/**
* Copy template from id
*
* @param int<0, max> $templateId template id
*
* @return void
*/
public function copy_from_source_id($templateId)
{
if (($source = self::getById($templateId)) === false) {
throw new Exception('Can\'t get tempalte id' . $templateId);
}
$skipProps = [
'id',
'is_manual',
'is_default',
];
$reflect = new ReflectionClass($this);
$props = $reflect->getProperties();
foreach ($props as $prop) {
if (in_array($prop->getName(), $skipProps)) {
continue;
}
$prop->setAccessible(true);
$prop->setValue($this, $prop->getValue($source));
}
$source_template_name = $source->is_manual ? __("Active Build Settings", 'duplicator-pro') : $source->name;
$this->name = sprintf(__('%1$s - Copy', 'duplicator-pro'), $source_template_name);
}
/**
* Gets a list of core WordPress folders that have been filtered
*
* @return string[] Returns and array of folders paths
*/
public function getWordPressCoreFilteredFoldersList()
{
return array_intersect(explode(';', $this->archive_filter_dirs), DUP_PRO_U::getWPCoreDirs());
}
/**
* Is any of the WordPress core folders in the folder filter list
*
* @return bool Returns true if a WordPress core path is being filtered
*/
public function isWordPressCoreFolderFiltered()
{
return count($this->getWordPressCoreFilteredFoldersList()) > 0;
}
/**
* Get all entities of current type
*
* @param int<0, max> $page current page, if $pageSize is 0 o 1 $pase is the offset
* @param int<0, max> $pageSize page size, 0 return all entities
* @param callable $sortCallback sort function on items result
* @param callable $filterCallback filter on items result
* @param array{'col': string, 'mode': string} $orderby query ordder by
*
* @return static[]|false return entities list of false on failure
*/
public static function getAll(
$page = 0,
$pageSize = 0,
$sortCallback = null,
$filterCallback = null,
$orderby = [
'col' => 'id',
'mode' => 'ASC',
]
) {
if (is_null($sortCallback)) {
$sortCallback = function (self $a, self $b) {
if ($a->is_default) {
return -1;
} elseif ($b->is_default) {
return 1;
} else {
return strcasecmp($a->name, $b->name);
}
};
}
return parent::getAll($page, $pageSize, $sortCallback, $filterCallback, $orderby);
}
/**
* Return list template json encoded data for javascript
*
* @return string
*/
public static function getTemplatesFrontendListData()
{
$templates = self::getAll();
return JsonSerialize::serialize($templates, JsonSerialize::JSON_SKIP_MAGIC_METHODS | JsonSerialize::JSON_SKIP_CLASS_NAME);
}
/**
* Get all entities of current type
*
* @param int<0, max> $page current page, if $pageSize is 0 o 1 $pase is the offset
* @param int<0, max> $pageSize page size, 0 return all entities
*
* @return static[]|false return entities list of false on failure
*/
public static function getAllWithoutManualMode(
$page = 0,
$pageSize = 0
) {
$filterManualCallback = function (self $obj) {
return ($obj->is_manual === false);
};
return self::getAll($page, $pageSize, null, $filterManualCallback);
}
/**
* Get default template if exists
*
* @return null|self
*/
public static function get_default_template()
{
$templates = self::getAll();
foreach ($templates as $template) {
if ($template->is_default) {
return $template;
}
}
return null;
}
/**
* Return manual template entity if exists
*
* @return null|self
*/
public static function get_manual_template()
{
$templates = self::getAll();
foreach ($templates as $template) {
if ($template->is_manual) {
return $template;
}
}
return null;
}
}

View File

@@ -0,0 +1,870 @@
<?php
/**
* @package Duplicator
* @copyright (c) 2022, Snap Creek LLC
*/
use Duplicator\Addons\ProBase\License\License;
use Duplicator\Core\Models\AbstractEntityList;
use Duplicator\Core\Models\UpdateFromInputInterface;
use Duplicator\Libs\Snap\SnapLog;
use Duplicator\Libs\Snap\SnapUtil;
use Duplicator\Libs\Snap\SnapWP;
use Duplicator\Models\BrandEntity;
use Duplicator\Models\Storages\StoragesUtil;
use Duplicator\Models\SystemGlobalEntity;
use Duplicator\Utils\Settings\ModelMigrateSettingsInterface;
use VendorDuplicator\Amk\JsonSerialize\JsonSerialize;
use VendorDuplicator\Cron\CronExpression;
/**
* Schedule entity
*/
class DUP_PRO_Schedule_Entity extends AbstractEntityList implements UpdateFromInputInterface, ModelMigrateSettingsInterface
{
const RUN_STATUS_SUCCESS = 0;
const RUN_STATUS_FAILURE = 1;
const REPEAT_DAILY = 0;
const REPEAT_WEEKLY = 1;
const REPEAT_MONTHLY = 2;
const REPEAT_HOURLY = 3;
const DAY_MONDAY = 0b0000001;
const DAY_TUESDAY = 0b0000010;
const DAY_WEDNESDAY = 0b0000100;
const DAY_THURSDAY = 0b0001000;
const DAY_FRIDAY = 0b0010000;
const DAY_SATURDAY = 0b0100000;
const DAY_SUNDAY = 0b1000000;
/** @var string */
public $name = '';
/** @var int<-1, max> */
public $template_id = -1;
/** @var int<-1, max> */
public $start_ticks = 0;
/** @var int<0, 3> */
public $repeat_type = self::REPEAT_WEEKLY;
/** @var bool */
public $active = true;
/** @var int<-1, max> */
public $next_run_time = -1;
/** @var int<1, max> */
public $run_every = 1;
/** @var int<0, max> bitmask */
public $weekly_days = 0;
/** @var int<1, max> */
public $day_of_month = 1;
/** @var string */
public $cron_string = '';
/** @var int<-1, max> */
public $last_run_time = -1;
/** @var int<0, 1> */
public $last_run_status = self::RUN_STATUS_FAILURE;
/** @var int<0, max> */
public $times_run = 0;
/** @var int[] */
public $storage_ids = [];
/**
* Class contructor
*/
public function __construct()
{
$this->name = __('New Schedule', 'duplicator-pro');
$this->storage_ids = [StoragesUtil::getDefaultStorageId()];
}
/**
* Entity type
*
* @return string
*/
public static function getType()
{
return 'DUP_PRO_Schedule_Entity';
}
/**
* Delete schedule
*
* @return bool true on success or false on failure
*/
public function delete()
{
$id = $this->id;
do_action('duplicator_pro_before_schedule_delete', $this);
if (!parent::delete()) {
return false;
}
do_action('duplicator_pro_after_schedule_delete', $id);
return true;
}
/**
* Insert new schedule
*
* @return bool true on success or false on failure
*/
public function insert()
{
do_action('duplicator_pro_before_schedule_create', $this);
if (!parent::insert()) {
return false;
}
do_action('duplicator_pro_after_schedule_create', $this);
return true;
}
/**
* Set data from query input
*
* @param int $type One of INPUT_GET, INPUT_POST, INPUT_COOKIE, INPUT_SERVER, or INPUT_ENV, SnapUtil::INPUT_REQUEST
*
* @return bool true on success or false on failure
*/
public function setFromInput($type)
{
$input = SnapUtil::getInputFromType($type);
$this->setFromArrayKey(
$input,
function ($key, $val) {
if (is_string($val)) {
$val = stripslashes($val);
}
return (is_scalar($val) ? SnapUtil::sanitizeNSChars($val) : $val);
}
);
if (strlen($this->name) == 0) {
throw new Exception(__('Schedule name can\'t be empty', 'duplicator-pro'));
}
$this->template_id = intval($this->template_id);
if (DUP_PRO_Package_Template_Entity::getById($this->template_id) === false) {
throw new Exception(__('Invalid template id', 'duplicator-pro'));
}
$this->repeat_type = intval($this->repeat_type);
$this->day_of_month = intval($this->day_of_month);
switch ($this->repeat_type) {
case DUP_PRO_Schedule_Entity::REPEAT_HOURLY:
$this->run_every = intval($input['_run_every_hours']);
DUP_PRO_Log::trace("run every hours: " . $input['_run_every_hours']);
break;
case DUP_PRO_Schedule_Entity::REPEAT_DAILY:
$this->run_every = intval($input['_run_every_days']);
DUP_PRO_Log::trace("run every days: " . $input['_run_every_days']);
break;
case DUP_PRO_Schedule_Entity::REPEAT_MONTHLY:
$this->run_every = intval($input['_run_every_months']);
DUP_PRO_Log::trace("run every months: " . $input['_run_every_months']);
break;
case DUP_PRO_Schedule_Entity::REPEAT_WEEKLY:
$this->set_weekdays_from_request($input);
break;
}
if (isset($input['_storage_ids'])) {
$this->storage_ids = array_map('intval', $input['_storage_ids']);
} else {
$this->storage_ids = [StoragesUtil::getDefaultStorageId()];
}
$this->set_start_date_time($input['_start_time']);
$this->build_cron_string();
$this->next_run_time = $this->get_next_run_time();
// Checkboxes don't set post values when off so have to manually set these
$this->active = isset($input['_active']);
return true;
}
/**
* To export data
*
* @return array<string, mixed>
*/
public function settingsExport()
{
return JsonSerialize::serializeToData($this, JsonSerialize::JSON_SKIP_MAGIC_METHODS | JsonSerialize::JSON_SKIP_CLASS_NAME);
}
/**
* Update object properties from import data
*
* @param array<string, mixed> $data data to import
* @param string $dataVersion version of data
* @param array<string, mixed> $extraData extra data, useful form id mapping etc.
*
* @return bool True if success, otherwise false
*/
public function settingsImport($data, $dataVersion, array $extraData = [])
{
$storage_map = (isset($extraData['storage_map']) ? $extraData['storage_map'] : []);
$template_map = (isset($extraData['template_map']) ? $extraData['template_map'] : []);
$skipProps = [
'id',
'last_run_time',
'next_run_time',
'times_run',
];
$reflect = new ReflectionClass(self::class);
$props = $reflect->getProperties();
foreach ($props as $prop) {
if (in_array($prop->getName(), $skipProps)) {
continue;
}
if (!isset($data[$prop->getName()])) {
continue;
}
$prop->setAccessible(true);
$prop->setValue($this, $data[$prop->getName()]);
}
if (isset($template_map[$this->template_id])) {
$this->template_id = $template_map[$this->template_id];
}
for ($i = 0; $i < count($this->storage_ids); $i++) {
if (isset($storage_map[$this->storage_ids[$i]])) {
$this->storage_ids[$i] = $storage_map[$this->storage_ids[$i]];
}
}
return true;
}
/**
* If it should run, queue up a package then update the run time
*
* @return void
*/
public function process()
{
DUP_PRO_Log::trace("process");
$now = time();
if ($this->next_run_time == -1) {
return;
}
if ($this->active && ($this->next_run_time <= $now)) {
$exception = null;
try {
if (!License::can(License::CAPABILITY_SCHEDULE)) {
DUP_PRO_Log::trace("Can't process schedule " . $this->getId() . " because Duplicator isn't licensed");
return;
}
$next_run_time_string = DUP_PRO_DATE::getLocalTimeFromGMTTicks($this->next_run_time);
$now_string = DUP_PRO_DATE::getLocalTimeFromGMTTicks($this->next_run_time);
DUP_PRO_Log::trace("NEXT RUN IS NOW! $next_run_time_string <= $now_string so trying to queue package");
$this->insert_new_package();
$this->next_run_time = $this->get_next_run_time();
$this->save();
$next_run_time_string = DUP_PRO_DATE::getLocalTimeFromGMTTicks($this->next_run_time);
DUP_PRO_Log::trace("******PACKAGE JUST CREATED. UPDATED NEXT RUN TIME TO $next_run_time_string");
} catch (Exception $e) {
$exception = $e;
} catch (Error $e) {
$exception = $e;
}
if (!is_null($exception)) {
$msg = "Start schedule error " . $exception->getMessage() . "\n";
$msg .= SnapLog::getTextException($exception);
error_log($msg);
\DUP_PRO_Log::trace($msg);
$system_global = SystemGlobalEntity::getInstance();
$system_global->schedule_failed = true;
$system_global->save();
}
} else {
DUP_PRO_Log::trace("active and runtime=$this->next_run_time >= $now");
}
}
/**
* Copy schedule from id
*
* @param int $scheduleId template id
*
* @return void
*/
public function copy_from_source_id($scheduleId)
{
if (($source = self::getById($scheduleId)) === false) {
throw new Exception('Can\'t get tempalte id' . $scheduleId);
}
$skipProps = [
'id',
'last_run_time',
'next_run_time',
'times_run',
];
$reflect = new ReflectionClass($this);
$props = $reflect->getProperties();
foreach ($props as $prop) {
if (in_array($prop->getName(), $skipProps)) {
continue;
}
$prop->setAccessible(true);
$prop->setValue($this, $prop->getValue($source));
}
$this->name = sprintf(__('%1$s - Copy', 'duplicator-pro'), $source->name);
}
/**
* Create new packag from schedule, to run
*
* @param bool $run_now If true the package creation is started immediately, otherwise it is scheduled
*
* @return void
*/
public function insert_new_package($run_now = false)
{
$global = DUP_PRO_Global_Entity::getInstance();
DUP_PRO_Log::trace("NEW PACKAGE FROM SCHEDULE ID: " . $this->getId() . " Name: " . $this->name);
DUP_PRO_Log::trace("Archive build mode before calling insert new package, build mode:" . $global->getBuildMode());
if (($template = DUP_PRO_Package_Template_Entity::getById((int) $this->template_id)) === false) {
DUP_PRO_Log::traceError("No settings object exists for schedule {$this->name}!");
return;
}
$type = ($run_now ? DUP_PRO_PackageType::RUN_NOW : DUP_PRO_PackageType::SCHEDULED);
$package = new DUP_PRO_Package(
$type,
$this->generate_package_name(),
$this->storage_ids,
$template,
$this
);
DUP_PRO_Log::trace('NEW PACKAGE NAME ' . $package->Name);
//PACKAGE
$package->notes = sprintf(esc_html__('Created by schedule %1$s', 'duplicator-pro'), $this->name);
$system_global = SystemGlobalEntity::getInstance();
$system_global->clearFixes();
$system_global->package_check_ts = 0;
$system_global->save();
if ($package->save(false) == false) {
$msg = "Duplicator is unable to insert a package record into the database table from schedule {$this->name}.";
DUP_PRO_Log::trace($msg);
throw new Exception($msg);
}
DUP_PRO_Log::trace("archive build mode after calling insert new package ID = " . $package->ID . " build mode = " . $global->archive_build_mode);
}
/**
* Get schedule template object or false if don't exists
*
* @return false|DUP_PRO_Package_Template_Entity
*/
public function getTemplate()
{
if ($this->template_id > 0) {
$template = DUP_PRO_Package_Template_Entity::getById($this->template_id);
} else {
$template = null;
}
if (!$template instanceof DUP_PRO_Package_Template_Entity) {
return false;
}
return $template;
}
/**
* Display HTML info
*
* @param bool $isList if true display info for list
*
* @return void
*/
public function recoveableHtmlInfo($isList = false)
{
if (($template = $this->getTemplate()) === false) {
return;
}
$schedule = $this;
require DUPLICATOR____PATH . '/views/tools/templates/widget/recoveable-template-info.php';
}
/**
* Return package name
*
* @return string
*/
private function generate_package_name()
{
$ticks = time() + SnapWP::getGMTOffset();
//Remove specail_chars from final result
$sanitize_special_chars = array(
".",
"-",
"?",
"[",
"]",
"/",
"\\",
"=",
"<",
">",
":",
";",
",",
"'",
"\"",
"&",
"$",
"#",
"*",
"(",
")",
"|",
"~",
"`",
"!",
"{",
"}",
"%",
"+",
chr(0),
);
$scheduleName = SnapUtil::sanitizeNSCharsNewlineTabs($this->name);
$scheduleName = trim(str_replace($sanitize_special_chars, '', $scheduleName), '_');
DUP_PRO_Log::trace('SCHEDULE NAME ' . $scheduleName);
$blogName = sanitize_title(SnapUtil::sanitizeNSCharsNewlineTabs(get_bloginfo('name', 'display')));
$blogName = trim(str_replace($sanitize_special_chars, '', $blogName), '_');
DUP_PRO_Log::trace('BLOG NAME NAME ' . $blogName);
$name = date('Ymd_His', $ticks) . '_' . $scheduleName . '_' . $blogName;
return substr($name, 0, 40);
}
/**
* Update schedule next run time
*
* @return bool true on success or false on failure
*/
public function updateNextRuntime()
{
$newTime = $this->get_next_run_time();
if ($newTime == $this->next_run_time) {
return true;
}
$this->next_run_time = $newTime;
return $this->save();
}
/**
* Return the next run time in UTC
*
* @return int<-1, max>
*/
public function get_next_run_time()
{
if (!License::can(License::CAPABILITY_SCHEDULE)) {
return -1;
}
if (!$this->active) {
return -1;
}
$nextMinute = time() + 60; // We look ahead starting from next minute
$date = new DateTime();
$date->setTimestamp($nextMinute + SnapWP::getGMTOffset());//Add timezone specific offset
//Get next run time relative to $date
$nextRunTime = CronExpression::factory($this->cron_string)->getNextRunDate($date)->getTimestamp();
// Have to negate the offset and add. For instance for az time -7
// we want the next run time to be 7 ahead in UTC time
$nextRunTime -= SnapWP::getGMTOffset();
// Handling DST problem that happens when there is a change of DST between $nextMinute and $nextRunTime.
// The problem does not happen if manual offset is selected, because in that case there is no DST.
$timezoneString = SnapWP::getTimeZoneString();
if ($timezoneString) {
// User selected particular timezone (not manual offset), so the problem needs to be handled.
$DST_NextMinute = SnapWP::getDST($nextMinute);
$DST_NextRunTime = SnapWP::getDST($nextRunTime);
$DST_NextRunTime_HourBack = SnapWP::getDST($nextRunTime - 3600);
if ($DST_NextMinute && !$DST_NextRunTime) {
$nextRunTime += 3600; // Move one hour ahead because of DST change
} elseif (!$DST_NextMinute && $DST_NextRunTime && $DST_NextRunTime_HourBack) {
$nextRunTime -= 3600; // Move one hour back because of DST change
}
}
return $nextRunTime;
}
/**
* Set week days from input data
*
* @param array<string, mixed> $request input data
*
* @return void
*/
protected function set_weekdays_from_request($request)
{
$weekday = $request['weekday'];
if (in_array('mon', $weekday)) {
$this->weekly_days |= self::DAY_MONDAY;
} else {
$this->weekly_days &= ~self::DAY_MONDAY;
}
if (in_array('tue', $weekday)) {
$this->weekly_days |= self::DAY_TUESDAY;
} else {
$this->weekly_days &= ~self::DAY_TUESDAY;
}
if (in_array('wed', $weekday)) {
$this->weekly_days |= self::DAY_WEDNESDAY;
} else {
$this->weekly_days &= ~self::DAY_WEDNESDAY;
}
if (in_array('thu', $weekday)) {
$this->weekly_days |= self::DAY_THURSDAY;
} else {
$this->weekly_days &= ~self::DAY_THURSDAY;
}
if (in_array('fri', $weekday)) {
$this->weekly_days |= self::DAY_FRIDAY;
} else {
$this->weekly_days &= ~self::DAY_FRIDAY;
}
if (in_array('sat', $weekday)) {
$this->weekly_days |= self::DAY_SATURDAY;
} else {
$this->weekly_days &= ~self::DAY_SATURDAY;
}
if (in_array('sun', $weekday)) {
$this->weekly_days |= self::DAY_SUNDAY;
} else {
$this->weekly_days &= ~self::DAY_SUNDAY;
}
}
/**
* Check if day is set
*
* @param string $day_string day string
*
* @return bool
*/
public function is_day_set($day_string)
{
$day_bit = 0;
switch ($day_string) {
case 'mon':
$day_bit = self::DAY_MONDAY;
break;
case 'tue':
$day_bit = self::DAY_TUESDAY;
break;
case 'wed':
$day_bit = self::DAY_WEDNESDAY;
break;
case 'thu':
$day_bit = self::DAY_THURSDAY;
break;
case 'fri':
$day_bit = self::DAY_FRIDAY;
break;
case 'sat':
$day_bit = self::DAY_SATURDAY;
break;
case 'sun':
$day_bit = self::DAY_SUNDAY;
break;
}
return (($this->weekly_days & $day_bit) != 0);
}
/**
* Returns a list of all schedules associated with a storage
*
* @param int $storageID The storage id
*
* @return self[]
*/
public static function get_schedules_by_storage_id($storageID)
{
return array_filter(self::getAll(), function ($schedule) use ($storageID) {
return in_array($storageID, $schedule->storage_ids);
});
}
/**
* Runs the callback on all schedules
*
* @param callable $callback The callback function
*
* @return void
*/
public static function run_on_all($callback)
{
if (!is_callable($callback)) {
throw new Exception('No callback function passed');
}
foreach (self::getAll() as $schedule) {
call_user_func($callback, $schedule);
}
}
/**
* Get active schedule
*
* @return self[]
*/
public static function get_active()
{
$result = self::getAll(
0,
0,
null,
function (self $schedule) {
return $schedule->active;
}
);
return ($result ? $result : []);
}
/**
* Get stazrt time piece
*
* @param int $piece 0 = hour; 1 = minute;
*
* @return int
*/
public function get_start_time_piece($piece)
{
switch ($piece) {
case 0:
return (int) date('G', $this->start_ticks);
case 1:
return (int) date('i', $this->start_ticks);
default:
return -1;
}
}
/**
* Return next run date
*
* @return string
*/
public function get_next_run_time_string()
{
if ($this->next_run_time == -1) {
return __('Unscheduled', 'duplicator-pro');
} else {
$date_portion = SnapWP::getDateInWPTimezone(
get_option('date_format', 'n/j/y') . ' G:i',
$this->next_run_time
);
$repeat_portion = $this->get_repeat_text();
return "$date_portion - $repeat_portion";
}
}
/**
* Return last run date
*
* @return string
*/
public function get_last_ran_string()
{
if ($this->last_run_time == -1) {
return __('Never Ran', 'duplicator-pro');
} else {
$date_portion = SnapWP::getDateInWPTimezone(
get_option('date_format', 'n/j/y') . ' G:i',
$this->last_run_time
);
$status_portion = (($this->last_run_status == self::RUN_STATUS_SUCCESS) ? __('Success', 'duplicator-pro') : __('Failed', 'duplicator-pro'));
return "$date_portion - $status_portion";
}
}
/**
* Set start time from string date format
*
* @param int|string $startTime start time string HH:MM or int 0-23 for hour
* @param string $startDate date format
*
* @return int return start time
*/
public function set_start_date_time($startTime, $startDate = '2015/1/1')
{
if (is_numeric($startTime)) {
$startTime = sprintf('%02d:00', $startTime);
}
$this->start_ticks = (int) strtotime("$startDate $startTime");
DUP_PRO_Log::trace("start ticks = $this->start_ticks for $startTime $startDate");
return $this->start_ticks;
}
/**
* Get schedules entity by template id
*
* @param int $template_id template id
*
* @return self[]
*/
public static function get_by_template_id($template_id)
{
$schedules = self::getAll();
$filtered_schedules = array();
foreach ($schedules as $schedule) {
if ($schedule->template_id == $template_id) {
array_push($filtered_schedules, $schedule);
}
}
DUP_PRO_Log::trace("get by template id $template_id schedules = " . count($filtered_schedules));
return $filtered_schedules;
}
/**
* Return repeat text
*
* @return string
*/
public function get_repeat_text()
{
switch ($this->repeat_type) {
case self::REPEAT_DAILY:
return __('Daily', 'duplicator-pro');
case self::REPEAT_WEEKLY:
return __('Weekly', 'duplicator-pro');
case self::REPEAT_MONTHLY:
return __('Monthly', 'duplicator-pro');
case self::REPEAT_HOURLY:
return __('Hourly', 'duplicator-pro');
default:
return __('Unknown', 'duplicator-pro');
}
}
/**
* Build cron string
*
* @return void
*/
public function build_cron_string()
{
// Special cron string for debugging if name set to 'bobtest'
if ($this->name == 'bobtest') {
$this->cron_string = '*/5 * * * *';
} else {
$start_hour = $this->get_start_time_piece(0);
$start_min = $this->get_start_time_piece(1);
if ($this->run_every == 1) {
$run_every_string = '*';
} else {
$run_every_string = "*/$this->run_every";
}
// Generated cron patterns using http://www.cronmaker.com/
switch ($this->repeat_type) {
case self::REPEAT_HOURLY:
$this->cron_string = "$start_min $run_every_string * * *";
break;
case self::REPEAT_DAILY:
$this->cron_string = "$start_min $start_hour $run_every_string * *";
break;
case self::REPEAT_WEEKLY:
$day_of_week_string = $this->get_day_of_week_string();
$this->cron_string = "$start_min $start_hour * * $day_of_week_string";
DUP_PRO_Log::trace("day of week cron string: $this->cron_string");
break;
case self::REPEAT_MONTHLY:
$this->cron_string = "$start_min $start_hour $this->day_of_month $run_every_string *";
break;
}
}
DUP_PRO_Log::trace("cron string = $this->cron_string");
}
/**
* Return day of weeks list with commad separated
*
* @return string
*/
private function get_day_of_week_string()
{
$day_array = [];
DUP_PRO_Log::trace("weekly days=$this->weekly_days");
if (($this->weekly_days & self::DAY_MONDAY) != 0) {
$day_array[] = '1';
}
if (($this->weekly_days & self::DAY_TUESDAY) != 0) {
$day_array[] = '2';
}
if (($this->weekly_days & self::DAY_WEDNESDAY) != 0) {
$day_array[] = '3';
}
if (($this->weekly_days & self::DAY_THURSDAY) != 0) {
$day_array[] = '4';
}
if (($this->weekly_days & self::DAY_FRIDAY) != 0) {
array_push($day_array, '5');
}
if (($this->weekly_days & self::DAY_SATURDAY) != 0) {
$day_array[] = '6';
}
if (($this->weekly_days & self::DAY_SUNDAY) != 0) {
$day_array[] = '0';
}
return implode(',', $day_array);
}
}

View File

@@ -0,0 +1,161 @@
<?php
/**
* @package Duplicator
* @copyright (c) 2022, Snap Creek LLC
*/
use Duplicator\Core\Models\AbstractEntitySingleton;
use Duplicator\Core\Models\UpdateFromInputInterface;
use Duplicator\Libs\Snap\SnapUtil;
use Duplicator\Utils\Crypt\CryptBlowfish;
use Duplicator\Utils\Settings\ModelMigrateSettingsInterface;
use VendorDuplicator\Amk\JsonSerialize\JsonSerialize;
/**
* Secure Global Entity. Used to store settings requiring encryption.
*
* @todo remove this entity and put props on globals
*/
class DUP_PRO_Secure_Global_Entity extends AbstractEntitySingleton implements UpdateFromInputInterface, ModelMigrateSettingsInterface
{
/** @var string */
public $basic_auth_password = '';
/** @var string */
public $lkp = '';
/**
* Class contructor
*/
protected function __construct()
{
}
/**
* Entity type
*
* @return string
*/
public static function getType()
{
return 'DUP_PRO_Secure_Global_Entity';
}
/**
* Will be called, automatically, when Serialize
*
* @return array<string,mixed>
*/
public function __serialize() // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.NewMagicMethods.__serializeFound
{
$data = JsonSerialize::serializeToData($this, JsonSerialize::JSON_SKIP_MAGIC_METHODS | JsonSerialize::JSON_SKIP_CLASS_NAME);
if (strlen($this->basic_auth_password)) {
$data['basic_auth_password'] = CryptBlowfish::encrypt($this->basic_auth_password);
}
if (strlen($this->lkp)) {
$data['lkp'] = CryptBlowfish::encrypt($this->lkp);
}
return $data;
}
/**
* Serialize
*
* Wakeup method.
*
* @return void
*/
public function __wakeup()
{
$this->basic_auth_password = (string) $this->basic_auth_password; // for old versions
if (strlen($this->basic_auth_password)) {
$this->basic_auth_password = CryptBlowfish::decrypt($this->basic_auth_password);
}
$this->lkp = (string) $this->lkp; // for old versions
if (strlen($this->lkp)) {
$this->lkp = CryptBlowfish::decrypt($this->lkp);
}
}
/**
* Set data from query input
*
* @param int $type One of INPUT_GET, INPUT_POST, INPUT_COOKIE, INPUT_SERVER, or INPUT_ENV, SnapUtil::INPUT_REQUEST
*
* @return bool true on success or false on failure
*/
public function setFromInput($type)
{
$input = SnapUtil::getInputFromType($type);
$this->basic_auth_password = isset($input['basic_auth_password']) ? SnapUtil::sanitizeNSCharsNewlineTrim($input['basic_auth_password']) : '';
$this->basic_auth_password = stripslashes($this->basic_auth_password);
return true;
}
/**
* To export data
*
* @return array<string, mixed>
*/
public function settingsExport()
{
$skipProps = [
'id',
'lkp',
];
$data = JsonSerialize::serializeToData($this, JsonSerialize::JSON_SKIP_MAGIC_METHODS | JsonSerialize::JSON_SKIP_CLASS_NAME);
foreach ($skipProps as $prop) {
unset($data[$prop]);
}
return $data;
}
/**
* Update object properties from import data
*
* @param array<string, mixed> $data data to import
* @param string $dataVersion version of data
* @param array<string, mixed> $extraData extra data, useful form id mapping etc.
*
* @return bool True if success, otherwise false
*/
public function settingsImport($data, $dataVersion, array $extraData = [])
{
$skipProps = [
'id',
'lkp',
];
$reflect = new ReflectionClass(self::class);
$props = $reflect->getProperties();
foreach ($props as $prop) {
if (in_array($prop->getName(), $skipProps)) {
continue;
}
if (!isset($data[$prop->getName()])) {
continue;
}
$prop->setAccessible(true);
$prop->setValue($this, $data[$prop->getName()]);
}
return true;
}
/**
* Set data from import data
*
* @param object $global_data Global data
*
* @return void
*/
public function setFromImportData($global_data)
{
$this->basic_auth_password = $global_data->basic_auth_password;
// skip in import settings
//$this->lkp = $global_data->lkp;
}
}

View File

@@ -0,0 +1,200 @@
<?php
/**
* Storage entity layer
*/
defined('ABSPATH') || defined('DUPXABSPATH') || exit;
use Duplicator\Core\Models\AbstractEntityList;
use Duplicator\Utils\Crypt\CryptBlowfish;
use VendorDuplicator\Amk\JsonSerialize\JsonSerialize;
/**
* @copyright 2016 Snap Creek LLC
*/
abstract class DUP_PRO_Storage_Entity extends AbstractEntityList
{
const PROPERTIES_TO_ENCRYPT = [
'dropbox_access_token',
'dropbox_v2_access_token',
'dropbox_access_token_secret',
'gdrive_access_token_set_json',
'gdrive_refresh_token',
's3_access_key',
's3_secret_key',
'ftp_username',
'ftp_password',
'ftp_storage_folder',
'sftp_username',
'sftp_password',
'sftp_private_key',
'sftp_private_key_password',
'sftp_storage_folder',
'onedrive_user_id',
'onedrive_access_token',
'onedrive_refresh_token',
];
/** @todo Legacy values to remove when storages will'be fully migrated */
/** @var string */
protected $local_storage_folder = '';
/** @var int */
protected $local_max_files = 10;
/** @var bool */
protected $local_filter_protection = true;
/** @var bool */
protected $purge_package_record = true;
// DROPBOX FIELDS
/** @var string */
protected $dropbox_access_token = '';
/** @var string */
protected $dropbox_access_token_secret = '';
/** @var string */
protected $dropbox_v2_access_token = '';
//to use different name for OAuth 2 token
/** @var string */
protected $dropbox_storage_folder = '';
/** @var int */
protected $dropbox_max_files = 10;
/** @var int */
protected $dropbox_authorization_state = 0;
//ONEDRIVE FIELDS
/** @var string */
protected $onedrive_endpoint_url = '';
/** @var string */
protected $onedrive_resource_id = '';
/** @var string */
protected $onedrive_access_token = '';
/** @var string */
protected $onedrive_refresh_token = '';
/** @var int */
protected $onedrive_token_obtained = 0;
/** @var string */
protected $onedrive_user_id = '';
/** @var string */
protected $onedrive_storage_folder = '';
/** @var int */
protected $onedrive_max_files = 10;
/** @var string */
protected $onedrive_storage_folder_id = '';
/** @var int */
protected $onedrive_authorization_state = 0;
/** @var string */
protected $onedrive_storage_folder_web_url = '';
// FTP FIELDS
/** @var string */
protected $ftp_server = '';
/** @var int */
protected $ftp_port = 21;
/** @var string */
protected $ftp_username = '';
/** @var string */
protected $ftp_password = '';
/** @var bool */
protected $ftp_use_curl = false;
/** @var string */
protected $ftp_storage_folder = '';
/** @var int */
protected $ftp_max_files = 10;
/** @var int */
protected $ftp_timeout_in_secs = 15;
/** @var bool */
protected $ftp_ssl = false;
/** @var bool */
protected $ftp_passive_mode = false;
// SFTP FIELDS
/** @var string */
protected $sftp_server = '';
/** @var int */
protected $sftp_port = 22;
/** @var string */
protected $sftp_username = '';
/** @var string */
protected $sftp_password = '';
/** @var string */
protected $sftp_private_key = '';
/** @var string */
protected $sftp_private_key_password = '';
/** @var string */
protected $sftp_storage_folder = '';
/** @var int */
protected $sftp_timeout_in_secs = 15;
/** @var int */
protected $sftp_max_files = 10;
/** @var bool */
protected $sftp_disable_chunking_mode = false;
// GOOGLE DRIVE FIELDS
/** @var string */
protected $gdrive_access_token_set_json = '';
/** @var string */
protected $gdrive_refresh_token = '';
/** @var string */
protected $gdrive_storage_folder = '';
/** @var int */
protected $gdrive_max_files = 10;
/** @var int */
protected $gdrive_authorization_state = 0;
/** @var int */
protected $gdrive_client_number = -1;
// S3 FIELDS
/** @var string */
protected $s3_access_key = '';
/** @var string */
protected $s3_bucket = '';
/** @var int */
protected $s3_max_files = 10;
/** @var string */
protected $s3_provider = 'amazon';
/** @var string */
protected $s3_region = '';
/** @var string */
protected $s3_endpoint = '';
/** @var string */
protected $s3_secret_key = '';
/** @var string */
protected $s3_storage_class = 'STANDARD';
/** @var string */
protected $s3_storage_folder = '';
/** @var bool */
protected $s3_ACL_full_control = true;
/**
* Will be called, automatically, when Serialize
*
* @return array<string, mixed>
*/
public function __serialize() // phpcs:ignore PHPCompatibility.FunctionNameRestrictions.NewMagicMethods.__serializeFound
{
$data = JsonSerialize::serializeToData($this, JsonSerialize::JSON_SKIP_MAGIC_METHODS | JsonSerialize::JSON_SKIP_CLASS_NAME);
if (DUP_PRO_Global_Entity::getInstance()->crypt) {
foreach (self::PROPERTIES_TO_ENCRYPT as $prop) {
if (!empty($data[$prop])) {
$data[$prop] = CryptBlowfish::encrypt($data[$prop]);
}
}
}
return $data;
}
/**
* Serialize
*
* Wakeup method.
*
* @return void
*/
public function __wakeup()
{
if (DUP_PRO_Global_Entity::getInstance()->crypt) {
foreach (self::PROPERTIES_TO_ENCRYPT as $prop) {
if (!empty($this->{$prop})) {
$this->{$prop} = CryptBlowfish::decrypt($this->{$prop});
}
}
}
}
}

View File

@@ -0,0 +1,3 @@
<?php
//silent