AJAX
5 months ago
Admin_Page
5 months ago
Click_Tracking
5 months ago
ColumnOptions
6 months ago
Cron
9 months ago
Custom_WordPress_Columns
8 months ago
Data_Pruning
5 months ago
Date_Picker
5 months ago
Date_Range
5 months ago
Ecommerce
5 months ago
Email_Reports
5 months ago
Examiner
11 months ago
Favicon
5 months ago
Form_Submissions
5 months ago
Integrations
6 months ago
Interval
1 year ago
Journey
5 months ago
Migrations
5 months ago
Models
5 months ago
Overview
5 months ago
Public_API
5 months ago
Rows
5 months ago
Statistics
5 months ago
Tables
5 months ago
Utils
5 months ago
Views
5 months ago
WooCommerceOrderMetaBox
5 months ago
Admin_Bar_Stats.php
5 months ago
Appearance.php
1 year ago
Campaign_Builder.php
5 months ago
Capability_Manager.php
1 year ago
Chart.php
9 months ago
Chart_Data.php
1 year ago
Click_Tracking.php
1 year ago
Cron_Job.php
5 months ago
Cron_Manager.php
5 months ago
Current_Traffic_Finder.php
1 year ago
Dashboard_Options.php
6 months ago
Dashboard_Widget.php
2 years ago
Database.php
8 months ago
Database_Manager.php
5 months ago
Empty_Report_Option.php
2 years ago
Env.php
6 months ago
Examiner_Config.php
11 months ago
FetchFaviconsJob.php
5 months ago
Filters.php
5 months ago
Geo_Database_Health_Check_Job.php
9 months ago
Geo_Database_Manager.php
6 months ago
Geoposition.php
1 year ago
Icon_Directory.php
6 months ago
Icon_Directory_Factory.php
2 years ago
Illuminate_Builder.php
10 months ago
Independent_Analytics.php
5 months ago
Interrupt.php
1 year ago
Known_Referrers.php
6 months ago
MainWP.php
1 year ago
Map.php
9 months ago
Map_Data.php
1 year ago
Migration_Fixer_Job.php
5 months ago
Patch.php
1 year ago
Payload_Validator.php
9 months ago
Plugin_Conflict_Detector.php
6 months ago
Plugin_Group.php
6 months ago
Plugin_Group_Option.php
2 years ago
Query.php
1 year ago
Query_Taps.php
5 months ago
Quick_Stats.php
11 months ago
REST_API.php
6 months ago
Real_Time.php
5 months ago
Report.php
1 year ago
Report_Finder.php
6 months ago
Report_Options_Parser.php
9 months ago
Resource_Identifier.php
9 months ago
Settings.php
6 months ago
Sort_Configuration.php
9 months ago
Tables.php
8 months ago
Track_Resource_Changes.php
1 year ago
View_Counter.php
6 months ago
Views_Over_Time_Finder.php
1 year ago
VisitorSaltRefreshInterval.php
6 months ago
WP_Option_Cache_Bust.php
2 years ago
Dashboard_Options.php
239 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP; |
| 4 | |
| 5 | use DateTime; |
| 6 | use IAWP\Date_Range\Date_Range; |
| 7 | use IAWP\Date_Range\Exact_Date_Range; |
| 8 | use IAWP\Date_Range\Relative_Date_Range; |
| 9 | use IAWP\Rows\Filter; |
| 10 | use IAWP\Statistics\Intervals\Interval; |
| 11 | use IAWP\Statistics\Intervals\Intervals; |
| 12 | use IAWP\Utils\Request; |
| 13 | use IAWP\Utils\Singleton; |
| 14 | use IAWP\Utils\Timezone; |
| 15 | use IAWPSCOPED\Illuminate\Support\Collection; |
| 16 | use Throwable; |
| 17 | /** |
| 18 | * Dashboards support various options via the search query string portion of the URL. |
| 19 | * |
| 20 | * The Dashboard_Options class give you an interface for fetching any set values or falling back |
| 21 | * to a default value as needed. |
| 22 | * @internal |
| 23 | */ |
| 24 | class Dashboard_Options |
| 25 | { |
| 26 | use Singleton; |
| 27 | private $report; |
| 28 | private static $default_visible_quick_stats = ['visitors', 'views', 'sessions', 'average_session_duration', 'bounce_rate', 'views_per_session', 'wc_orders', 'wc_net_sales']; |
| 29 | private function __construct() |
| 30 | { |
| 31 | $this->report = $this->get_report(); |
| 32 | } |
| 33 | public function report_name() : ?string |
| 34 | { |
| 35 | if (\is_null($this->report->name ?? null)) { |
| 36 | return 'Report'; |
| 37 | } |
| 38 | return $this->report->name; |
| 39 | } |
| 40 | public function visible_columns() : ?array |
| 41 | { |
| 42 | if (Request::get_post_array('columns')) { |
| 43 | return Request::get_post_array('columns'); |
| 44 | } |
| 45 | if (\is_null($this->report) || \is_null($this->report->columns)) { |
| 46 | return null; |
| 47 | } |
| 48 | return \json_decode($this->report->columns, \true); |
| 49 | } |
| 50 | public function visible_quick_stats() : array |
| 51 | { |
| 52 | if (Request::get_post_array('quick_stats')) { |
| 53 | return Request::get_post_array('quick_stats'); |
| 54 | } |
| 55 | $decoded_value = \json_decode($this->report->quick_stats ?? 'null', \true); |
| 56 | if (\is_array($decoded_value)) { |
| 57 | return $decoded_value; |
| 58 | } |
| 59 | if (\IAWP\Env::get_tab() === 'clicks') { |
| 60 | return ['clicks']; |
| 61 | } |
| 62 | return self::$default_visible_quick_stats; |
| 63 | } |
| 64 | public function primary_chart_metric_id() : string |
| 65 | { |
| 66 | if (Request::get_post_string('primary_chart_metric_id')) { |
| 67 | return Request::get_post_string('primary_chart_metric_id'); |
| 68 | } |
| 69 | if (\is_null($this->report->primary_chart_metric_id ?? null)) { |
| 70 | return 'visitors'; |
| 71 | } |
| 72 | return $this->report->primary_chart_metric_id; |
| 73 | } |
| 74 | public function secondary_chart_metric_id() : ?string |
| 75 | { |
| 76 | if (Request::get_post_string('secondary_chart_metric_id')) { |
| 77 | return Request::get_post_string('secondary_chart_metric_id'); |
| 78 | } |
| 79 | if (\is_null($this->report->secondary_chart_metric_id ?? null)) { |
| 80 | return 'views'; |
| 81 | } |
| 82 | return $this->report->secondary_chart_metric_id; |
| 83 | } |
| 84 | public function filters() : array |
| 85 | { |
| 86 | if (\is_null($this->report) || \is_null($this->report->filters)) { |
| 87 | return []; |
| 88 | } |
| 89 | $table_class = \IAWP\Env::get_table($this->report->type); |
| 90 | $table = new $table_class($this->report->group_name ?? null); |
| 91 | $filters = \json_decode($this->report->filters, \true); |
| 92 | if ($filters === null) { |
| 93 | return []; |
| 94 | } |
| 95 | return $table->sanitize_filters($filters); |
| 96 | } |
| 97 | public function raw_filters() : array |
| 98 | { |
| 99 | return Collection::make($this->filters())->map(function (Filter $filter) { |
| 100 | return $filter->as_associative_array(); |
| 101 | })->all(); |
| 102 | } |
| 103 | public function filter_logic() : string |
| 104 | { |
| 105 | return $this->report->filter_logic ?? 'and'; |
| 106 | } |
| 107 | public function sort_column() : ?string |
| 108 | { |
| 109 | return $this->report->sort_column ?? null; |
| 110 | } |
| 111 | public function sort_direction() : ?string |
| 112 | { |
| 113 | return $this->report->sort_direction ?? null; |
| 114 | } |
| 115 | public function group() : ?string |
| 116 | { |
| 117 | return $this->report->group_name ?? null; |
| 118 | } |
| 119 | public function chart_interval() : ?Interval |
| 120 | { |
| 121 | if (\is_null($this->report->chart_interval ?? null)) { |
| 122 | return Intervals::default_for($this->get_date_range()->number_of_days()); |
| 123 | } |
| 124 | return Intervals::find_by_id($this->report->chart_interval); |
| 125 | } |
| 126 | /** |
| 127 | * @return Date_Range |
| 128 | */ |
| 129 | public function get_date_range() : Date_Range |
| 130 | { |
| 131 | if ($this->has_exact_range()) { |
| 132 | try { |
| 133 | $start = new DateTime($this->start(), Timezone::site_timezone()); |
| 134 | $end = new DateTime($this->end(), Timezone::site_timezone()); |
| 135 | return new Exact_Date_Range($start, $end); |
| 136 | } catch (Throwable $e) { |
| 137 | // Do nothing and fall back to default relative date range |
| 138 | } |
| 139 | } |
| 140 | return new Relative_Date_Range($this->relative_range_id()); |
| 141 | } |
| 142 | public function start() : ?string |
| 143 | { |
| 144 | if (!$this->has_exact_range()) { |
| 145 | return null; |
| 146 | } |
| 147 | return $this->report->exact_start; |
| 148 | } |
| 149 | public function end() : ?string |
| 150 | { |
| 151 | if (!$this->has_exact_range()) { |
| 152 | return null; |
| 153 | } |
| 154 | return $this->report->exact_end; |
| 155 | } |
| 156 | /** |
| 157 | * Prefer exact range to relative range if both are provided |
| 158 | */ |
| 159 | public function relative_range_id() : ?string |
| 160 | { |
| 161 | if ($this->has_exact_range()) { |
| 162 | return null; |
| 163 | } |
| 164 | $relative_range_id = $this->report->relative_range_id ?? null; |
| 165 | $default = 'LAST_THIRTY'; |
| 166 | if (\IAWP\Env::get_tab() === 'journeys') { |
| 167 | $default = 'TODAY'; |
| 168 | } |
| 169 | if ($relative_range_id === null) { |
| 170 | return $default; |
| 171 | } |
| 172 | if (Relative_Date_Range::is_valid_range($relative_range_id) === \false) { |
| 173 | return $default; |
| 174 | } |
| 175 | return $relative_range_id; |
| 176 | } |
| 177 | public function maybe_redirect() : void |
| 178 | { |
| 179 | if (\IAWP\Env::get_page() !== 'independent-analytics') { |
| 180 | return; |
| 181 | } |
| 182 | if (isset($_GET['examiner'])) { |
| 183 | return; |
| 184 | } |
| 185 | if (empty($_GET['report']) && empty($_GET['tab'])) { |
| 186 | $favorite_report = \IAWP\Report_Finder::new()->get_favorited_report(); |
| 187 | if (\is_null($favorite_report)) { |
| 188 | return; |
| 189 | } |
| 190 | \wp_safe_redirect($favorite_report->url()); |
| 191 | exit; |
| 192 | } |
| 193 | if (!empty($_GET['report']) && \is_null($this->report)) { |
| 194 | \wp_safe_redirect(\IAWPSCOPED\iawp_dashboard_url(['tab' => \IAWP\Env::get_tab()])); |
| 195 | exit; |
| 196 | } |
| 197 | if (!\is_null($this->report) && \IAWP\Env::get_tab() !== $this->report->type) { |
| 198 | \wp_safe_redirect(\IAWPSCOPED\iawp_dashboard_url(['tab' => $this->report->type, 'report' => $this->report->report_id])); |
| 199 | exit; |
| 200 | } |
| 201 | } |
| 202 | public function is_sidebar_collapsed() : bool |
| 203 | { |
| 204 | $is_sidebar_collapsed = \get_user_meta(\get_current_user_id(), 'iawp_is_sidebar_collapsed', \true) === '1'; |
| 205 | return $is_sidebar_collapsed; |
| 206 | } |
| 207 | public function is_examiner() : bool |
| 208 | { |
| 209 | if (!\IAWPSCOPED\iawp_is_pro()) { |
| 210 | return \false; |
| 211 | } |
| 212 | return \array_key_exists('examiner', $_GET); |
| 213 | } |
| 214 | private function has_exact_range() : bool |
| 215 | { |
| 216 | return !\is_null($this->report->exact_start ?? null) && !\is_null($this->report->exact_end ?? null); |
| 217 | } |
| 218 | private function get_report() : ?object |
| 219 | { |
| 220 | if ($this->is_examiner()) { |
| 221 | return $this->build_examiner_report(); |
| 222 | } |
| 223 | $id = \filter_input(\INPUT_GET, 'report', \FILTER_VALIDATE_INT); |
| 224 | if (\is_int($id)) { |
| 225 | return $this->fetch_saved_report($id); |
| 226 | } |
| 227 | return null; |
| 228 | } |
| 229 | private function build_examiner_report() : object |
| 230 | { |
| 231 | return (object) ['exact_start' => Request::query('exact_start'), 'exact_end' => Request::query('exact_end'), 'relative_range_id' => Request::query('relative_range_id'), 'quick_stats' => \json_encode(Request::query_array('quick_stats')), 'primary_chart_metric_id' => Request::query('primary_chart_metric_id'), 'secondary_chart_metric_id' => Request::query('secondary_chart_metric_id'), 'chart_interval' => Request::query('chart_interval'), 'group_name' => Request::query('group'), 'filters' => null, 'columns' => null, 'type' => Request::query('tab')]; |
| 232 | } |
| 233 | private function fetch_saved_report(int $id) : ?object |
| 234 | { |
| 235 | $reports_table = \IAWP\Query::get_table_name(\IAWP\Query::REPORTS); |
| 236 | return \IAWP\Illuminate_Builder::new()->from($reports_table)->where('report_id', '=', $id)->first(); |
| 237 | } |
| 238 | } |
| 239 |