| 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.3/wp-content/plugins/wp-statistics/src/Abstracts/ |
Upload File : |
<?php
namespace WP_Statistics\Abstracts;
use WP_Statistics\Utils\Query;
use WP_Statistics\Components\DateRange;
use WP_Statistics\Models\HistoricalModel;
use WP_STATISTICS\Option;
abstract class BaseModel
{
/**
* Instance of HistoricalModel for historical page view data
*
* @var HistoricalModel
*/
protected $historicalModel;
/**
* Initialize the BaseModel class.
*
* Creates a new instance of HistoricalModel if one hasn't been set yet.
* This ensures we have access to historical data throughout the model.
*/
public function __construct()
{
if (empty($this->historicalModel)) {
$this->historicalModel = new HistoricalModel();
}
}
/**
* @param $args
* @param $defaults
* @return mixed|null
*/
protected function parseArgs($args, $defaults = [])
{
$args = wp_parse_args($args, $defaults);
$args = $this->parseQueryParamArg($args);
$args = $this->parseResourceTypeArg($args);
$args = $this->parseDateArg($args);
$args = $this->parseUtmParams($args);
$args = $this->parsePerPage($args);
return apply_filters('wp_statistics_data_{child-method-name}_args', $args);
}
/**
* Escape any underscores in UTM params with a backslash
* This is necessary because WordPress's LIKE operator uses underscores as a wildcard
* @param array $args
* @return array
*/
private function parseUtmParams($args)
{
if (!empty($args['utm_source'])) {
$args['utm_source'] = str_replace('_', '\_', $args['utm_source']);
}
if (!empty($args['utm_medium'])) {
$args['utm_medium'] = str_replace('_', '\_', $args['utm_medium']);
}
if (!empty($args['utm_campaign'])) {
$args['utm_campaign'] = str_replace('_', '\_', $args['utm_campaign']);
}
return $args;
}
/**
* Parse resource type argument to make sure it contains valid post types and properly formatted
*
* @param array $args
*
* @return array
*/
private function parseResourceTypeArg($args)
{
if (!empty($args['resource_type'])) {
// Make sure resource_type is an array
if (is_string($args['resource_type'])) {
$args['resource_type'] = [$args['resource_type']];
}
foreach ($args['resource_type'] as $key => $value) {
// If it's a taxonomy.
if (taxonomy_exists($value)) {
if (!in_array($value, ['category', 'post_tag'])) {
$args['resource_type'][$key] = "tax_{$value}";
}
}
// If it's a post type.
if (post_type_exists($value)) {
// If it's a custom post type, add 'post_type' prefix
if (!in_array($value, ['post', 'page', 'product', 'attachment'])) {
$args['resource_type'][$key] = "post_type_$value";
}
// If the array contains page post type, add home as well
if (!in_array('home', $args['resource_type']) && $value === 'page') {
$args['resource_type'][] = 'home';
}
}
}
}
return $args;
}
/**
* Parses the query_param argument.
*
* @return array The parsed arguments.
*/
private function parseQueryParamArg($args)
{
if (!empty($args['query_param'])) {
if (is_numeric($args['query_param'])) {
$uri = Query::select('uri')
->from('pages')
->where('page_id', '=', $args['query_param'])
->getVar();
} else if (is_string($args['query_param'])) {
$uri = $args['query_param'];
}
$args['query_param'] = !empty($uri) ? $uri : '';
}
return $args;
}
private function parseDateArg($args)
{
if (empty($args['date']) && empty($args['ignore_date'])) {
$args['date'] = DateRange::get();
}
return $args;
}
private function parsePerPage($args)
{
// On export, ignore default per_page and get data based on the advanced reporting option
if (!empty($args['export'])) {
$args['page'] = 1;
$args['per_page'] = Option::getByAddon('table_csv_export_row_limit', 'advanced_reporting', 100);
}
return $args;
}
}