PluginProbe ʕ •ᴥ•ʔ
Independent Analytics – WordPress Analytics Plugin / 2.13.6
Independent Analytics – WordPress Analytics Plugin v2.13.6
2.15.5 2.15.4 2.15.3 2.15.2 2.15.1 2.15.0 2.14.10 trunk 1.1 1.10 1.10.1 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.17.1 1.17.2 1.17.3 1.17.4 1.18 1.18.1 1.19.0 1.19.1 1.2 1.20.0 1.21.0 1.22.0 1.22.1 1.23.0 1.23.1 1.24.0 1.24.1 1.25.0 1.25.1 1.26.0 1.27.0 1.28.0 1.28.1 1.28.2 1.28.3 1.29.0 1.3 1.30.0 1.30.1 1.4 1.5 1.6 1.7 1.8 1.9 2.0.0 2.0.1 2.1.4 2.1.5 2.1.6 2.10.0 2.10.1 2.10.2 2.10.3 2.10.4 2.11.0 2.11.1 2.11.10 2.11.2 2.11.3 2.11.4 2.11.5 2.11.6 2.11.7 2.11.8 2.11.9 2.12.0 2.12.1 2.12.2 2.13.1 2.13.2 2.13.5 2.13.6 2.14.0 2.14.1 2.14.2 2.14.4 2.14.6 2.14.7 2.14.8 2.14.9 2.2.0 2.2.1 2.3.1 2.3.2 2.4.2 2.4.3 2.5.0 2.5.1 2.6.0 2.6.1 2.6.2 2.6.3 2.6.4 2.7.0 2.7.1 2.7.2 2.7.3 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 2.9.2 2.9.3 2.9.4 2.9.5 2.9.6 2.9.7
independent-analytics / IAWP / Dashboard_Options.php
independent-analytics / IAWP Last commit date
AJAX 8 months ago Admin_Page 10 months ago Click_Tracking 9 months ago ColumnOptions 10 months ago Cron 10 months ago Custom_WordPress_Columns 9 months ago Data_Pruning 9 months ago Date_Picker 1 year ago Date_Range 1 year ago Ecommerce 9 months ago Email_Reports 10 months ago Examiner 1 year ago Form_Submissions 8 months ago Integrations 9 months ago Interval 1 year ago Menu_Bar_Stats 1 year ago Migrations 9 months ago Models 9 months ago Overview 9 months ago Public_API 10 months ago Rows 9 months ago Statistics 8 months ago Tables 10 months ago Utils 9 months ago Views 10 months ago WooCommerceOrderMetaBox 10 months ago Appearance.php 1 year ago Campaign_Builder.php 1 year ago Capability_Manager.php 1 year ago Chart.php 10 months ago Chart_Data.php 1 year ago Click_Tracking.php 1 year ago Cron_Job.php 10 months ago Cron_Manager.php 10 months ago Current_Traffic_Finder.php 1 year ago Dashboard_Options.php 10 months ago Dashboard_Widget.php 2 years ago Database.php 10 months ago Database_Manager.php 1 year ago Empty_Report_Option.php 2 years ago Env.php 1 year ago Examiner_Config.php 1 year ago Filters.php 10 months ago Geo_Database_Health_Check_Job.php 10 months ago Geo_Database_Manager.php 10 months ago Geoposition.php 1 year ago Icon_Directory.php 2 years ago Icon_Directory_Factory.php 2 years ago Illuminate_Builder.php 1 year ago Independent_Analytics.php 9 months ago Interrupt.php 1 year ago Known_Referrers.php 10 months ago MainWP.php 1 year ago Map.php 10 months ago Map_Data.php 1 year ago Migration_Fixer_Job.php 9 months ago Patch.php 1 year ago Payload_Validator.php 10 months ago Plugin_Conflict_Detector.php 10 months ago Plugin_Group.php 9 months ago Plugin_Group_Option.php 2 years ago Query.php 1 year ago Query_Taps.php 9 months ago Quick_Stats.php 1 year ago REST_API.php 10 months ago Real_Time.php 10 months ago Report.php 1 year ago Report_Finder.php 1 year ago Report_Options_Parser.php 10 months ago Resource_Identifier.php 10 months ago Settings.php 1 year ago Sort_Configuration.php 10 months ago Tables.php 9 months ago Track_Resource_Changes.php 1 year ago View_Counter.php 1 year ago Views_Over_Time_Finder.php 1 year ago WP_Option_Cache_Bust.php 2 years ago
Dashboard_Options.php
233 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 $relative_range_id = $this->report->relative_range_id ?? null;
162 if (!$this->has_exact_range() && $relative_range_id === null) {
163 return 'LAST_THIRTY';
164 } elseif ($this->has_exact_range()) {
165 return null;
166 } elseif (Relative_Date_Range::is_valid_range($relative_range_id) === \false) {
167 return 'LAST_THIRTY';
168 }
169 return $relative_range_id;
170 }
171 public function maybe_redirect() : void
172 {
173 if (\IAWP\Env::get_page() !== 'independent-analytics') {
174 return;
175 }
176 if (isset($_GET['examiner'])) {
177 return;
178 }
179 if (empty($_GET['report']) && empty($_GET['tab'])) {
180 $favorite_report = \IAWP\Report_Finder::new()->get_favorited_report();
181 if (\is_null($favorite_report)) {
182 return;
183 }
184 \wp_safe_redirect($favorite_report->url());
185 exit;
186 }
187 if (!empty($_GET['report']) && \is_null($this->report)) {
188 \wp_safe_redirect(\IAWPSCOPED\iawp_dashboard_url(['tab' => \IAWP\Env::get_tab()]));
189 exit;
190 }
191 if (!\is_null($this->report) && \IAWP\Env::get_tab() !== $this->report->type) {
192 \wp_safe_redirect(\IAWPSCOPED\iawp_dashboard_url(['tab' => $this->report->type, 'report' => $this->report->report_id]));
193 exit;
194 }
195 }
196 public function is_sidebar_collapsed() : bool
197 {
198 $is_sidebar_collapsed = \get_user_meta(\get_current_user_id(), 'iawp_is_sidebar_collapsed', \true) === '1';
199 return $is_sidebar_collapsed;
200 }
201 public function is_examiner() : bool
202 {
203 if (!\IAWPSCOPED\iawp_is_pro()) {
204 return \false;
205 }
206 return \array_key_exists('examiner', $_GET);
207 }
208 private function has_exact_range() : bool
209 {
210 return !\is_null($this->report->exact_start ?? null) && !\is_null($this->report->exact_end ?? null);
211 }
212 private function get_report() : ?object
213 {
214 if ($this->is_examiner()) {
215 return $this->build_examiner_report();
216 }
217 $id = \filter_input(\INPUT_GET, 'report', \FILTER_VALIDATE_INT);
218 if (\is_int($id)) {
219 return $this->fetch_saved_report($id);
220 }
221 return null;
222 }
223 private function build_examiner_report() : object
224 {
225 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')];
226 }
227 private function fetch_saved_report(int $id) : ?object
228 {
229 $reports_table = \IAWP\Query::get_table_name(\IAWP\Query::REPORTS);
230 return \IAWP\Illuminate_Builder::new()->from($reports_table)->where('report_id', '=', $id)->first();
231 }
232 }
233