AJAX
2 years ago
Date_Range
2 years ago
Interval
3 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
3 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_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
3 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
3 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
272 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWP_SCOPED\IAWP; |
| 4 | |
| 5 | use IAWP_SCOPED\IAWP\Models\Page; |
| 6 | use IAWP_SCOPED\IAWP\Models\Visitor; |
| 7 | use IAWP_SCOPED\IAWP\Utils\Device; |
| 8 | use IAWP_SCOPED\IAWP\Utils\String_Util; |
| 9 | use IAWP_SCOPED\IAWP\Utils\URL; |
| 10 | class View |
| 11 | { |
| 12 | private $payload; |
| 13 | private $referrer_url; |
| 14 | private $visitor; |
| 15 | private $campaign_fields; |
| 16 | private $viewed_at; |
| 17 | private $resource; |
| 18 | private $session; |
| 19 | /** |
| 20 | * @param array $payload |
| 21 | * @param string|null $referrer_url |
| 22 | * @param Visitor $visitor |
| 23 | * @param array $campaign_fields |
| 24 | * @param \DateTime|null $viewed_at |
| 25 | */ |
| 26 | public function __construct(array $payload, ?string $referrer_url, Visitor $visitor, array $campaign_fields, ?\DateTime $viewed_at = null) |
| 27 | { |
| 28 | $this->payload = $payload; |
| 29 | $this->referrer_url = \is_null($referrer_url) ? '' : \trim($referrer_url); |
| 30 | $this->visitor = $visitor; |
| 31 | $this->campaign_fields = $campaign_fields; |
| 32 | $this->viewed_at = $viewed_at instanceof \DateTime ? $viewed_at : new \DateTime(); |
| 33 | $this->resource = $this->fetch_or_create_resource(); |
| 34 | $this->session = $this->fetch_or_create_session(); |
| 35 | $view_id = $this->create_view(); |
| 36 | $this->link_with_previous_view($view_id); |
| 37 | $this->set_session_total_views(); |
| 38 | $this->set_sessions_initial_view($view_id); |
| 39 | $this->set_sessions_final_view($view_id); |
| 40 | } |
| 41 | /** |
| 42 | * @return int ID of newly created session |
| 43 | */ |
| 44 | public function create_session() : int |
| 45 | { |
| 46 | $sessions_table = Query::get_table_name(Query::SESSIONS); |
| 47 | return 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()]); |
| 48 | } |
| 49 | /** |
| 50 | * Fetch the last view, if any. |
| 51 | * |
| 52 | * @return int|null |
| 53 | */ |
| 54 | public function fetch_last_viewed_resource() : ?int |
| 55 | { |
| 56 | global $wpdb; |
| 57 | $views_table = Query::get_table_name(Query::VIEWS); |
| 58 | $session = Query::query('sessions/get_current_session', ['visitor_id' => $this->visitor->id()])->row(); |
| 59 | if (\is_null($session)) { |
| 60 | return null; |
| 61 | } |
| 62 | $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)); |
| 63 | if (\is_null($view)) { |
| 64 | return null; |
| 65 | } |
| 66 | return $view->resource_id; |
| 67 | } |
| 68 | public function fetch_or_create_country() : ?int |
| 69 | { |
| 70 | if (!$this->visitor->geoposition()->valid_location()) { |
| 71 | return null; |
| 72 | } |
| 73 | Query::query('create_country', ['country_code' => $this->visitor->geoposition()->country_code(), 'country' => $this->visitor->geoposition()->country(), 'continent' => $this->visitor->geoposition()->continent()]); |
| 74 | $country = Query::query('get_country', ['country_code' => $this->visitor->geoposition()->country_code(), 'country' => $this->visitor->geoposition()->country(), 'continent' => $this->visitor->geoposition()->continent()])->row(); |
| 75 | if (\is_null($country)) { |
| 76 | return null; |
| 77 | } |
| 78 | return $country->country_id; |
| 79 | } |
| 80 | public function fetch_or_create_city() : ?int |
| 81 | { |
| 82 | if (!$this->visitor->geoposition()->valid_location()) { |
| 83 | return null; |
| 84 | } |
| 85 | $country_id = $this->fetch_or_create_country(); |
| 86 | $cities_table = Query::get_table_name(Query::CITIES); |
| 87 | $city_id = 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'); |
| 88 | if (!\is_null($city_id)) { |
| 89 | return $city_id; |
| 90 | } |
| 91 | Illuminate_Builder::get_builder()->from($cities_table)->insertOrIgnore(['country_id' => $country_id, 'subdivision' => $this->visitor->geoposition()->subdivision(), 'city' => $this->visitor->geoposition()->city()]); |
| 92 | return 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'); |
| 93 | } |
| 94 | private function viewed_at() : string |
| 95 | { |
| 96 | return $this->viewed_at->format('Y-m-d\\TH:i:s'); |
| 97 | } |
| 98 | private function link_with_previous_view($view_id) : void |
| 99 | { |
| 100 | global $wpdb; |
| 101 | $views_tables = Query::get_table_name(Query::VIEWS); |
| 102 | $session = Query::query('sessions/get_session', ['session_id' => $this->session])->row(); |
| 103 | if (\is_null($session)) { |
| 104 | return; |
| 105 | } |
| 106 | $final_view_id = $session->final_view_id; |
| 107 | $initial_view_id = $session->initial_view_id; |
| 108 | if (!\is_null($final_view_id)) { |
| 109 | $wpdb->update($views_tables, ['next_view_id' => $view_id, 'next_viewed_at' => $this->viewed_at()], ['id' => $final_view_id]); |
| 110 | } elseif (!\is_null($initial_view_id)) { |
| 111 | $wpdb->update($views_tables, ['next_view_id' => $view_id, 'next_viewed_at' => $this->viewed_at()], ['id' => $initial_view_id]); |
| 112 | } |
| 113 | } |
| 114 | private function set_session_total_views() |
| 115 | { |
| 116 | global $wpdb; |
| 117 | $sessions_table = Query::get_table_name(Query::SESSIONS); |
| 118 | $views_table = Query::get_table_name(Query::VIEWS); |
| 119 | $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)); |
| 120 | } |
| 121 | private function set_sessions_initial_view(int $view_id) |
| 122 | { |
| 123 | global $wpdb; |
| 124 | $sessions_table = Query::get_table_name(Query::SESSIONS); |
| 125 | $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)); |
| 126 | } |
| 127 | private function set_sessions_final_view(int $view_id) |
| 128 | { |
| 129 | global $wpdb; |
| 130 | $sessions_table = Query::get_table_name(Query::SESSIONS); |
| 131 | $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)); |
| 132 | } |
| 133 | private function create_view() : ?int |
| 134 | { |
| 135 | return Query::query('create_view', ['resource_id' => $this->resource->id(), 'viewed_at' => $this->viewed_at(), 'page' => $this->payload['page'], 'session_id' => $this->session])->last_inserted_id(); |
| 136 | } |
| 137 | private function fetch_resource() |
| 138 | { |
| 139 | global $wpdb; |
| 140 | $resources_table = Query::get_table_name(Query::RESOURCES); |
| 141 | $query = ''; |
| 142 | $payload_copy = \array_merge($this->payload); |
| 143 | unset($payload_copy['page']); |
| 144 | switch ($payload_copy['resource']) { |
| 145 | case 'singular': |
| 146 | $query = $wpdb->prepare("SELECT * FROM {$resources_table} WHERE resource = %s AND singular_id = %d", $payload_copy['resource'], $payload_copy['singular_id']); |
| 147 | break; |
| 148 | case 'author_archive': |
| 149 | $query = $wpdb->prepare("SELECT * FROM {$resources_table} WHERE resource = %s AND author_id = %d", $payload_copy['resource'], $payload_copy['author_id']); |
| 150 | break; |
| 151 | case 'date_archive': |
| 152 | $query = $wpdb->prepare("SELECT * FROM {$resources_table} WHERE resource = %s AND date_archive = %s", $payload_copy['resource'], $payload_copy['date_archive']); |
| 153 | break; |
| 154 | case 'post_type_archive': |
| 155 | $query = $wpdb->prepare("SELECT * FROM {$resources_table} WHERE resource = %s AND post_type = %s", $payload_copy['resource'], $payload_copy['post_type']); |
| 156 | break; |
| 157 | case 'term_archive': |
| 158 | $query = $wpdb->prepare("SELECT * FROM {$resources_table} WHERE resource = %s AND term_id = %s", $payload_copy['resource'], $payload_copy['term_id']); |
| 159 | break; |
| 160 | case 'search': |
| 161 | $query = $wpdb->prepare("SELECT * FROM {$resources_table} WHERE resource = %s AND search_query = %s", $payload_copy['resource'], $payload_copy['search_query']); |
| 162 | break; |
| 163 | case 'home': |
| 164 | $query = $wpdb->prepare("SELECT * FROM {$resources_table} WHERE resource = %s ", $payload_copy['resource']); |
| 165 | break; |
| 166 | case '404': |
| 167 | $query = $wpdb->prepare("SELECT * FROM {$resources_table} WHERE resource = %s AND not_found_url = %s", $payload_copy['resource'], $payload_copy['not_found_url']); |
| 168 | break; |
| 169 | } |
| 170 | $resource = $wpdb->get_row($query); |
| 171 | if (\is_null($resource)) { |
| 172 | return null; |
| 173 | } |
| 174 | return $resource; |
| 175 | } |
| 176 | private function fetch_or_create_resource() : Page |
| 177 | { |
| 178 | global $wpdb; |
| 179 | $resources_table = Query::get_table_name(Query::RESOURCES); |
| 180 | $resource = $this->fetch_resource(); |
| 181 | if (\is_null($resource)) { |
| 182 | $payload_copy = \array_merge($this->payload); |
| 183 | unset($payload_copy['page']); |
| 184 | $wpdb->insert($resources_table, $payload_copy); |
| 185 | $resource = $this->fetch_resource(); |
| 186 | } |
| 187 | $page = Page::from_row($resource); |
| 188 | $page->update_cache(); |
| 189 | return $page; |
| 190 | } |
| 191 | /** |
| 192 | * @return int|null ID of the session that should be used for this view |
| 193 | */ |
| 194 | private function fetch_or_create_session() : ?int |
| 195 | { |
| 196 | $session = Query::query('sessions/get_current_session', ['visitor_id' => $this->visitor->id()])->row(); |
| 197 | if (\is_null($session)) { |
| 198 | return $this->create_session(); |
| 199 | } |
| 200 | $same_referrer = $this->fetch_or_create_referrer() === $session->referrer_id; |
| 201 | $same_resource = \intval($this->fetch_resource()->id) === $this->fetch_last_viewed_resource(); |
| 202 | $same_as_previous_view = $same_referrer && $same_resource; |
| 203 | // The goal here is to prevent a page refresh from creating another session |
| 204 | if (!$this->is_internal_referrer($this->referrer_url) && !$same_as_previous_view) { |
| 205 | return $this->create_session(); |
| 206 | } |
| 207 | return $session->session_id; |
| 208 | } |
| 209 | /** |
| 210 | * @param string|null $referrer_url |
| 211 | * |
| 212 | * @return bool |
| 213 | */ |
| 214 | private function is_internal_referrer(?string $referrer_url) : bool |
| 215 | { |
| 216 | return !empty($referrer_url) && String_Util::str_starts_with(\strtolower($referrer_url), \strtolower(\site_url())); |
| 217 | } |
| 218 | private function fetch_referrer(array $referrer) : int |
| 219 | { |
| 220 | $referrers_table = Query::get_table_name(Query::REFERRERS); |
| 221 | $id = Illuminate_Builder::get_builder()->select('id')->from($referrers_table)->where('domain', '=', $referrer['domain'])->value('id'); |
| 222 | if (\is_null($id)) { |
| 223 | $id = Illuminate_Builder::get_builder()->from($referrers_table)->insertGetId(['domain' => $referrer['domain'], 'type' => $referrer['type'], 'referrer' => $referrer['referrer']]); |
| 224 | } |
| 225 | return $id; |
| 226 | } |
| 227 | private function fetch_or_create_referrer() : int |
| 228 | { |
| 229 | $url = new URL($this->referrer_url); |
| 230 | if (!$url->is_valid_url() || $this->is_internal_referrer($this->referrer_url)) { |
| 231 | return $this->fetch_referrer(['domain' => '', 'type' => 'Direct', 'referrer' => 'Direct']); |
| 232 | } elseif (!\is_null(Known_Referrers::get_group_for($url->get_domain()))) { |
| 233 | $group = Known_Referrers::get_group_for($url->get_domain()); |
| 234 | return $this->fetch_referrer(['domain' => $group['domain'], 'type' => $group['type'], 'referrer' => $group['name']]); |
| 235 | } else { |
| 236 | return $this->fetch_referrer(['domain' => $url->get_domain(), 'type' => 'Referrer', 'referrer' => $this->strip_www($url->get_domain())]); |
| 237 | } |
| 238 | } |
| 239 | private function strip_www(string $string) : string |
| 240 | { |
| 241 | if (\strpos($string, "www.") !== 0) { |
| 242 | return $string; |
| 243 | } |
| 244 | return \substr($string, 4); |
| 245 | } |
| 246 | private function get_campaign() : ?int |
| 247 | { |
| 248 | global $wpdb; |
| 249 | $required_fields = ['utm_source', 'utm_medium', 'utm_campaign']; |
| 250 | $valid = \true; |
| 251 | foreach ($required_fields as $field) { |
| 252 | if (!isset($this->campaign_fields[$field])) { |
| 253 | $valid = \false; |
| 254 | } |
| 255 | } |
| 256 | if (!$valid) { |
| 257 | return null; |
| 258 | } |
| 259 | $campaigns_table = Query::get_table_name(Query::CAMPAIGNS); |
| 260 | $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)); |
| 261 | if (!\is_null($campaign)) { |
| 262 | return $campaign->campaign_id; |
| 263 | } |
| 264 | $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']]); |
| 265 | $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)); |
| 266 | if (!\is_null($campaign)) { |
| 267 | return $campaign->campaign_id; |
| 268 | } |
| 269 | return null; |
| 270 | } |
| 271 | } |
| 272 |