PluginProbe ʕ •ᴥ•ʔ
Independent Analytics – WordPress Analytics Plugin / 2.4.2
Independent Analytics – WordPress Analytics Plugin v2.4.2
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 / View.php
independent-analytics / IAWP Last commit date
AJAX 2 years ago Admin_Page 2 years ago Custom_WordPress_Columns 2 years ago Date_Range 2 years ago Filter_Lists 2 years ago Interval 2 years ago Menu_Bar_Stats 2 years ago Migrations 2 years ago Models 2 years ago Public_API 2 years ago Rows 2 years ago Statistics 2 years ago Tables 2 years ago Utils 2 years ago Campaign_Builder.php 2 years ago Capability_Manager.php 2 years ago Chart.php 2 years ago Chart_Geo.php 2 years ago Cron_Manager.php 2 years ago Current_Traffic_Finder.php 2 years ago Dashboard_Options.php 2 years ago Dashboard_Widget.php 2 years ago Database.php 2 years ago Database_Manager.php 2 years ago Email_Chart.php 2 years ago Email_Reports.php 2 years ago Empty_Report_Option.php 2 years ago Env.php 2 years ago Filters.php 2 years ago Geo_Database_Background_Job.php 2 years ago Geo_Database_Manager.php 2 years ago Geoposition.php 2 years ago Icon_Directory.php 2 years ago Icon_Directory_Factory.php 2 years ago Illuminate_Builder.php 2 years ago Independent_Analytics.php 2 years ago Interrupt.php 2 years ago Known_Referrers.php 2 years ago Plugin_Conflict_Detector.php 2 years ago Query.php 2 years ago Quick_Stats.php 2 years ago REST_API.php 2 years ago Real_Time.php 2 years ago Report.php 2 years ago Report_Finder.php 2 years ago Report_Options_Parser.php 2 years ago Resource_Identifier.php 2 years ago Settings.php 2 years ago Sort_Configuration.php 2 years ago Track_Resource_Changes.php 2 years ago View.php 2 years ago View_Counter.php 2 years ago Visitors_Over_Time_Finder.php 2 years ago WP_Option_Cache_Bust.php 2 years ago WooCommerce_Order.php 2 years ago WooCommerce_Referrer_Meta_Box.php 2 years ago
View.php
300 lines
1 <?php
2
3 namespace IAWP;
4
5 use IAWP\Custom_WordPress_Columns\Views_Column;
6 use IAWP\Models\Page;
7 use IAWP\Models\Visitor;
8 use IAWP\Utils\Device;
9 use IAWP\Utils\String_Util;
10 use IAWP\Utils\URL;
11 use IAWPSCOPED\Illuminate\Database\Query\JoinClause;
12 /** @internal */
13 class View
14 {
15 private $payload;
16 private $referrer_url;
17 private $visitor;
18 private $campaign_fields;
19 private $viewed_at;
20 private $resource;
21 private $session;
22 /**
23 * @param array $payload
24 * @param string|null $referrer_url
25 * @param Visitor $visitor
26 * @param array $campaign_fields
27 * @param \DateTime|null $viewed_at
28 */
29 public function __construct(array $payload, ?string $referrer_url, Visitor $visitor, array $campaign_fields, ?\DateTime $viewed_at = null)
30 {
31 $this->payload = $payload;
32 $this->referrer_url = \is_null($referrer_url) ? '' : \trim($referrer_url);
33 $this->visitor = $visitor;
34 $this->campaign_fields = $campaign_fields;
35 $this->viewed_at = $viewed_at instanceof \DateTime ? $viewed_at : new \DateTime();
36 $this->resource = $this->fetch_or_create_resource();
37 $this->session = $this->fetch_or_create_session();
38 $view_id = $this->create_view();
39 $this->link_with_previous_view($view_id);
40 $this->set_session_total_views();
41 $this->set_sessions_initial_view($view_id);
42 $this->set_sessions_final_view($view_id);
43 $this->update_postmeta($this->resource);
44 }
45 /**
46 * @return int ID of newly created session
47 */
48 public function create_session() : int
49 {
50 $sessions_table = \IAWP\Query::get_table_name(\IAWP\Query::SESSIONS);
51 return \IAWP\Illuminate_Builder::get_builder()->from($sessions_table)->insertGetId(['visitor_id' => $this->visitor->id(), 'referrer_id' => $this->fetch_or_create_referrer(), 'country_id' => $this->fetch_or_create_country(), 'city_id' => $this->fetch_or_create_city(), 'campaign_id' => $this->get_campaign(), 'device_type_id' => Device::getInstance()->type_id(), 'device_os_id' => Device::getInstance()->os_id(), 'device_browser_id' => Device::getInstance()->browser_id(), 'created_at' => $this->viewed_at()]);
52 }
53 public function fetch_or_create_country() : ?int
54 {
55 if (!$this->visitor->geoposition()->valid_location()) {
56 return null;
57 }
58 $countries_table = \IAWP\Query::get_table_name(\IAWP\Query::COUNTRIES);
59 $country_id = \IAWP\Illuminate_Builder::get_builder()->from($countries_table)->where('country_code', '=', $this->visitor->geoposition()->country_code())->where('country', '=', $this->visitor->geoposition()->country())->where('continent', '=', $this->visitor->geoposition()->continent())->value('country_id');
60 if (!\is_null($country_id)) {
61 return $country_id;
62 }
63 \IAWP\Illuminate_Builder::get_builder()->from($countries_table)->insertOrIgnore(['country_code' => $this->visitor->geoposition()->country_code(), 'country' => $this->visitor->geoposition()->country(), 'continent' => $this->visitor->geoposition()->continent()]);
64 return \IAWP\Illuminate_Builder::get_builder()->from($countries_table)->where('country_code', '=', $this->visitor->geoposition()->country_code())->where('country', '=', $this->visitor->geoposition()->country())->where('continent', '=', $this->visitor->geoposition()->continent())->value('country_id');
65 }
66 public function fetch_or_create_city() : ?int
67 {
68 if (!$this->visitor->geoposition()->valid_location()) {
69 return null;
70 }
71 $country_id = $this->fetch_or_create_country();
72 $cities_table = \IAWP\Query::get_table_name(\IAWP\Query::CITIES);
73 $city_id = \IAWP\Illuminate_Builder::get_builder()->from($cities_table)->where('country_id', $country_id)->where('subdivision', '=', $this->visitor->geoposition()->subdivision())->where('city', '=', $this->visitor->geoposition()->city())->value('city_id');
74 if (!\is_null($city_id)) {
75 return $city_id;
76 }
77 \IAWP\Illuminate_Builder::get_builder()->from($cities_table)->insertOrIgnore(['country_id' => $country_id, 'subdivision' => $this->visitor->geoposition()->subdivision(), 'city' => $this->visitor->geoposition()->city()]);
78 return \IAWP\Illuminate_Builder::get_builder()->from($cities_table)->where('country_id', $country_id)->where('subdivision', '=', $this->visitor->geoposition()->subdivision())->where('city', '=', $this->visitor->geoposition()->city())->value('city_id');
79 }
80 /**
81 * Fetch the last view, if any.
82 *
83 * @return int|null
84 */
85 private function fetch_last_viewed_resource() : ?int
86 {
87 global $wpdb;
88 $views_table = \IAWP\Query::get_table_name(\IAWP\Query::VIEWS);
89 $session = $this->get_current_session();
90 if (\is_null($session)) {
91 return null;
92 }
93 $view = $wpdb->get_row($wpdb->prepare("\n SELECT * FROM {$views_table} WHERE session_id = %d ORDER BY viewed_at DESC LIMIT 1\n ", $session->session_id));
94 if (\is_null($view)) {
95 return null;
96 }
97 return $view->resource_id;
98 }
99 private function viewed_at() : string
100 {
101 return $this->viewed_at->format('Y-m-d\\TH:i:s');
102 }
103 private function link_with_previous_view($view_id) : void
104 {
105 global $wpdb;
106 $views_tables = \IAWP\Query::get_table_name(\IAWP\Query::VIEWS);
107 $sessions_tables = \IAWP\Query::get_table_name(\IAWP\Query::SESSIONS);
108 $session = \IAWP\Illuminate_Builder::get_builder()->from($sessions_tables)->where('session_id', '=', $this->session)->first();
109 if (\is_null($session)) {
110 return;
111 }
112 $final_view_id = $session->final_view_id;
113 $initial_view_id = $session->initial_view_id;
114 if (!\is_null($final_view_id)) {
115 $wpdb->update($views_tables, ['next_view_id' => $view_id, 'next_viewed_at' => $this->viewed_at()], ['id' => $final_view_id]);
116 } elseif (!\is_null($initial_view_id)) {
117 $wpdb->update($views_tables, ['next_view_id' => $view_id, 'next_viewed_at' => $this->viewed_at()], ['id' => $initial_view_id]);
118 }
119 }
120 private function set_session_total_views()
121 {
122 global $wpdb;
123 $sessions_table = \IAWP\Query::get_table_name(\IAWP\Query::SESSIONS);
124 $views_table = \IAWP\Query::get_table_name(\IAWP\Query::VIEWS);
125 $wpdb->query($wpdb->prepare("\n UPDATE {$sessions_table} AS sessions\n LEFT JOIN (\n SELECT\n session_id,\n COUNT(*) AS view_count\n FROM\n {$views_table} AS views\n WHERE\n views.session_id = %d\n GROUP BY\n session_id) AS view_counts ON sessions.session_id = view_counts.session_id\n SET\n sessions.total_views = COALESCE(view_counts.view_count, 0)\n WHERE sessions.session_id = %d\n ", $this->session, $this->session));
126 }
127 private function set_sessions_initial_view(int $view_id)
128 {
129 global $wpdb;
130 $sessions_table = \IAWP\Query::get_table_name(\IAWP\Query::SESSIONS);
131 $wpdb->query($wpdb->prepare("UPDATE {$sessions_table} SET initial_view_id = %d WHERE session_id = %d AND initial_view_id IS NULL", $view_id, $this->session));
132 }
133 private function set_sessions_final_view(int $view_id)
134 {
135 global $wpdb;
136 $sessions_table = \IAWP\Query::get_table_name(\IAWP\Query::SESSIONS);
137 $wpdb->query($wpdb->prepare("\n UPDATE {$sessions_table} AS sessions\n SET\n sessions.final_view_id = %d,\n sessions.ended_at = %s\n WHERE sessions.session_id = %d AND sessions.initial_view_id IS NOT NULL AND sessions.initial_view_id != %d\n ", $view_id, $this->viewed_at(), $this->session, $view_id));
138 }
139 private function create_view() : int
140 {
141 $views_table = \IAWP\Query::get_table_name(\IAWP\Query::VIEWS);
142 return \IAWP\Illuminate_Builder::get_builder()->from($views_table)->insertGetId(['resource_id' => $this->resource->id(), 'viewed_at' => $this->viewed_at(), 'page' => $this->payload['page'], 'session_id' => $this->session]);
143 }
144 private function fetch_resource()
145 {
146 global $wpdb;
147 $resources_table = \IAWP\Query::get_table_name(\IAWP\Query::RESOURCES);
148 $query = '';
149 $payload_copy = \array_merge($this->payload);
150 unset($payload_copy['page']);
151 switch ($payload_copy['resource']) {
152 case 'singular':
153 $query = $wpdb->prepare("SELECT * FROM {$resources_table} WHERE resource = %s AND singular_id = %d", $payload_copy['resource'], $payload_copy['singular_id']);
154 break;
155 case 'author_archive':
156 $query = $wpdb->prepare("SELECT * FROM {$resources_table} WHERE resource = %s AND author_id = %d", $payload_copy['resource'], $payload_copy['author_id']);
157 break;
158 case 'date_archive':
159 $query = $wpdb->prepare("SELECT * FROM {$resources_table} WHERE resource = %s AND date_archive = %s", $payload_copy['resource'], $payload_copy['date_archive']);
160 break;
161 case 'post_type_archive':
162 $query = $wpdb->prepare("SELECT * FROM {$resources_table} WHERE resource = %s AND post_type = %s", $payload_copy['resource'], $payload_copy['post_type']);
163 break;
164 case 'term_archive':
165 $query = $wpdb->prepare("SELECT * FROM {$resources_table} WHERE resource = %s AND term_id = %s", $payload_copy['resource'], $payload_copy['term_id']);
166 break;
167 case 'search':
168 $query = $wpdb->prepare("SELECT * FROM {$resources_table} WHERE resource = %s AND search_query = %s", $payload_copy['resource'], $payload_copy['search_query']);
169 break;
170 case 'home':
171 $query = $wpdb->prepare("SELECT * FROM {$resources_table} WHERE resource = %s ", $payload_copy['resource']);
172 break;
173 case '404':
174 $query = $wpdb->prepare("SELECT * FROM {$resources_table} WHERE resource = %s AND not_found_url = %s", $payload_copy['resource'], $payload_copy['not_found_url']);
175 break;
176 case 'virtual_page':
177 $query = $wpdb->prepare("SELECT * FROM {$resources_table} WHERE resource = %s AND virtual_page_id = %s", $payload_copy['resource'], $payload_copy['virtual_page_id']);
178 break;
179 }
180 $resource = $wpdb->get_row($query);
181 if (\is_null($resource)) {
182 return null;
183 }
184 return $resource;
185 }
186 private function fetch_or_create_resource() : Page
187 {
188 global $wpdb;
189 $resources_table = \IAWP\Query::get_table_name(\IAWP\Query::RESOURCES);
190 $resource = $this->fetch_resource();
191 if (\is_null($resource)) {
192 $payload_copy = \array_merge($this->payload);
193 unset($payload_copy['page']);
194 $wpdb->insert($resources_table, $payload_copy);
195 $resource = $this->fetch_resource();
196 }
197 $page = Page::from_row($resource);
198 $page->update_cache();
199 return $page;
200 }
201 /**
202 * @return int|null ID of the session that should be used for this view
203 */
204 private function fetch_or_create_session() : ?int
205 {
206 $session = $this->get_current_session();
207 if (\is_null($session)) {
208 return $this->create_session();
209 }
210 $is_same_referrer = $this->fetch_or_create_referrer() === $session->referrer_id;
211 $is_same_resource = \intval($this->fetch_resource()->id) === $this->fetch_last_viewed_resource();
212 $same_as_previous_view = $is_same_referrer && $is_same_resource;
213 // The goal here is to prevent a page refresh from creating another session
214 if (!$this->is_internal_referrer($this->referrer_url) && !$same_as_previous_view) {
215 return $this->create_session();
216 }
217 return $session->session_id;
218 }
219 /**
220 * @param string|null $referrer_url
221 *
222 * @return bool
223 */
224 private function is_internal_referrer(?string $referrer_url) : bool
225 {
226 return !empty($referrer_url) && String_Util::str_starts_with(\strtolower($referrer_url), \strtolower(\site_url()));
227 }
228 private function fetch_referrer(array $referrer) : int
229 {
230 $referrers_table = \IAWP\Query::get_table_name(\IAWP\Query::REFERRERS);
231 $id = \IAWP\Illuminate_Builder::get_builder()->select('id')->from($referrers_table)->where('domain', '=', $referrer['domain'])->value('id');
232 if (\is_null($id)) {
233 $id = \IAWP\Illuminate_Builder::get_builder()->from($referrers_table)->insertGetId(['domain' => $referrer['domain'], 'type' => $referrer['type'], 'referrer' => $referrer['referrer']]);
234 }
235 return $id;
236 }
237 private function fetch_or_create_referrer() : int
238 {
239 $url = new URL($this->referrer_url);
240 if (!$url->is_valid_url() || $this->is_internal_referrer($this->referrer_url)) {
241 return $this->fetch_referrer(['domain' => '', 'type' => 'Direct', 'referrer' => 'Direct']);
242 } elseif (!\is_null(\IAWP\Known_Referrers::get_group_for($url->get_domain()))) {
243 $group = \IAWP\Known_Referrers::get_group_for($url->get_domain());
244 return $this->fetch_referrer(['domain' => $group['domain'], 'type' => $group['type'], 'referrer' => $group['name']]);
245 } else {
246 return $this->fetch_referrer(['domain' => $url->get_domain(), 'type' => 'Referrer', 'referrer' => $this->strip_www($url->get_domain())]);
247 }
248 }
249 private function strip_www(string $string) : string
250 {
251 if (\strpos($string, "www.") !== 0) {
252 return $string;
253 }
254 return \substr($string, 4);
255 }
256 private function get_campaign() : ?int
257 {
258 global $wpdb;
259 $required_fields = ['utm_source', 'utm_medium', 'utm_campaign'];
260 $valid = \true;
261 foreach ($required_fields as $field) {
262 if (!isset($this->campaign_fields[$field])) {
263 $valid = \false;
264 }
265 }
266 if (!$valid) {
267 return null;
268 }
269 $campaigns_table = \IAWP\Query::get_table_name(\IAWP\Query::CAMPAIGNS);
270 $campaign = $wpdb->get_row($wpdb->prepare("SELECT * FROM {$campaigns_table} WHERE landing_page_title = %s AND utm_source = %s AND utm_medium = %s AND utm_campaign = %s AND (utm_term = %s OR (%d = 0 AND utm_term IS NULL)) AND (utm_content = %s OR (%d = 0 AND utm_content IS NULL))", $this->resource->title(), $this->campaign_fields['utm_source'], $this->campaign_fields['utm_medium'], $this->campaign_fields['utm_campaign'], $this->campaign_fields['utm_term'], isset($this->campaign_fields['utm_term']) ? 1 : 0, $this->campaign_fields['utm_content'], isset($this->campaign_fields['utm_content']) ? 1 : 0));
271 if (!\is_null($campaign)) {
272 return $campaign->campaign_id;
273 }
274 $wpdb->insert($campaigns_table, ['landing_page_title' => $this->resource->title(), 'utm_source' => $this->campaign_fields['utm_source'], 'utm_medium' => $this->campaign_fields['utm_medium'], 'utm_campaign' => $this->campaign_fields['utm_campaign'], 'utm_term' => $this->campaign_fields['utm_term'], 'utm_content' => $this->campaign_fields['utm_content']]);
275 $campaign = $wpdb->get_row($wpdb->prepare("SELECT * FROM {$campaigns_table} WHERE landing_page_title = %s AND utm_source = %s AND utm_medium = %s AND utm_campaign = %s AND (utm_term = %s OR (%d = 0 AND utm_term IS NULL)) AND (utm_content = %s OR (%d = 0 AND utm_content IS NULL))", $this->resource->title(), $this->campaign_fields['utm_source'], $this->campaign_fields['utm_medium'], $this->campaign_fields['utm_campaign'], $this->campaign_fields['utm_term'], isset($this->campaign_fields['utm_term']) ? 1 : 0, $this->campaign_fields['utm_content'], isset($this->campaign_fields['utm_content']) ? 1 : 0));
276 if (!\is_null($campaign)) {
277 return $campaign->campaign_id;
278 }
279 return null;
280 }
281 private function get_current_session()
282 {
283 $sessions_table = \IAWP\Query::get_table_name(\IAWP\Query::SESSIONS);
284 return \IAWP\Illuminate_Builder::get_builder()->from($sessions_table)->where('visitor_id', '=', $this->visitor->id())->whereRaw('created_at > DATE_SUB(UTC_TIMESTAMP(), INTERVAL 30 MINUTE)')->orderBy('created_at', 'desc')->first();
285 }
286 private function update_postmeta(Page $resource) : void
287 {
288 $post_id = $resource->get_post_id();
289 if ($post_id === null) {
290 return;
291 }
292 $views_table = \IAWP\Query::get_table_name(\IAWP\Query::VIEWS);
293 $resources_table = \IAWP\Query::get_table_name(\IAWP\Query::RESOURCES);
294 $total_views = \IAWP\Illuminate_Builder::get_builder()->selectRaw('COUNT(*) AS views')->from("{$resources_table} as resources")->join("{$views_table} AS views", function (JoinClause $join) {
295 $join->on('resources.id', '=', 'views.resource_id');
296 })->where('singular_id', '=', $post_id)->value('views');
297 \update_post_meta($post_id, Views_Column::$meta_key, $total_views);
298 }
299 }
300