| 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/Utils/UsageStatistics/ |
Upload File : |
<?php
namespace Duplicator\Utils\UsageStatistics;
use DUP_Log;
use DUP_Package;
use DUP_PackageStatus;
use DUP_Settings;
use Duplicator\Utils\CronUtils;
/**
* StatsBootstrap
*/
class StatsBootstrap
{
const USAGE_TRACKING_CRON_HOOK = 'duplicator_usage_tracking_cron';
/**
* Init WordPress hooks
*
* @return void
*/
public static function init()
{
add_action('duplicator_after_activation', array(__CLASS__, 'activationAction'));
add_action('duplicator_after_deactivation', array(__CLASS__, 'deactivationAction'));
add_action('duplicator_package_after_set_status', array(__CLASS__, 'addPackageBuild'), 10, 2);
add_action('duplicator_after_scan_report', array(__CLASS__, 'addSiteSizes'), 10, 2);
add_action('duplicator_usage_tracking_cron', array(__CLASS__, 'sendPluginStatCron'));
}
/**
* Activation action
*
* @return void
*/
public static function activationAction()
{
// Set cron
if (!wp_next_scheduled(self::USAGE_TRACKING_CRON_HOOK)) {
$randomTracking = wp_rand(0, WEEK_IN_SECONDS);
$timeToStart = strtotime('next sunday') + $randomTracking;
wp_schedule_event($timeToStart, CronUtils::INTERVAL_WEEKLY, self::USAGE_TRACKING_CRON_HOOK);
}
if (PluginData::getInstance()->getStatus() !== PluginData::PLUGIN_STATUS_ACTIVE) {
PluginData::getInstance()->setStatus(PluginData::PLUGIN_STATUS_ACTIVE);
CommStats::pluginSend();
}
}
/**
* Deactivation action
*
* @return void
*/
public static function deactivationAction()
{
// Unschedule custom cron event for cleanup if it's scheduled
if (wp_next_scheduled(self::USAGE_TRACKING_CRON_HOOK)) {
$timestamp = wp_next_scheduled(self::USAGE_TRACKING_CRON_HOOK);
wp_unschedule_event($timestamp, self::USAGE_TRACKING_CRON_HOOK);
}
PluginData::getInstance()->setStatus(PluginData::PLUGIN_STATUS_INACTIVE);
CommStats::pluginSend();
}
/**
* Add package build,
* don't use PluginData::getInstance()->addPackageBuild() directly in hook to avoid useless init
*
* @param DUP_Package $package Package
* @param int $status Status DUP_PRO_PackageStatus Enum
*
* @return void
*/
public static function addPackageBuild(DUP_Package $package, $status)
{
if ($status >= DUP_PackageStatus::CREATED && $status < DUP_PackageStatus::COMPLETE) {
return;
}
PluginData::getInstance()->addPackageBuild($package);
}
/**
* Add site size statistics
*
* @param DUP_Package $package Package
* @param array<string, mixed> $report Scan report
*
* @return void
*/
public static function addSiteSizes(DUP_Package $package, $report)
{
if ($package->Archive->ExportOnlyDB) {
return;
}
PluginData::getInstance()->setSiteSize(
$report['ARC']['USize'],
$report['ARC']['UFullCount'],
$report['DB']['RawSize'],
$report['DB']['TableCount']
);
}
/**
* Is tracking allowed
*
* @return bool
*/
public static function isTrackingAllowed()
{
if (DUPLICATOR_USTATS_DISALLOW) { // @phpstan-ignore-line
return false;
}
return DUP_Settings::Get('usage_tracking', false);
}
/**
* Send plugin statistics
*
* @return void
*/
public static function sendPluginStatCron()
{
if (!self::isTrackingAllowed()) {
return;
}
DUP_Log::trace("CRON: Sending plugin statistics");
CommStats::pluginSend();
}
}