HEX
Server: LiteSpeed
System: Linux venus 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
User: axxoncom (1007)
PHP: 8.3.19
Disabled: exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
Upload Files
File: /home/axxoncom/public_html/wp-content/plugins/wp-statistics/src/Abstracts/BaseModel.php
<?php

namespace WP_Statistics\Abstracts;

use WP_Statistics\Utils\Query;
use WP_Statistics\Components\DateRange;
use WP_STATISTICS\Helper;
use WP_Statistics\Models\HistoricalModel;

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);

        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;
    }
}