Skip to content

Commit aeb50d3

Browse files
committed
Trim unknown from tracking
1 parent fa1df28 commit aeb50d3

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,17 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1111
(This is already detected in subscription update.)
1212
- Filter any incoming webhook events that are in test mode.
1313

14-
## [0.4.9] - 28 OCt 2015
14+
## [0.4.10 - 0.4.11] - 28 OCt 2015
15+
### Added
16+
- tracking of robots, if a browser isn't detected, and it is confirmed as a robot.
17+
1518
### Changed
1619
- reverted from using getAttribute(), as it is redundant.
1720
- refactored `track()` method to track: Url, Operating System, Hardware, Browser, Referring Domain, IP (For GeoLocation)
1821

22+
### Removed
23+
- any "unknown" values from being passed.
24+
1925
## [0.4.7 - 0.4.8] - 25 Oct 2015
2026
### Changed
2127
- referenced to user model properties to use `getAttribute()` instead of referencing them directly.

src/LaravelMixpanel.php

+10-6
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,14 @@ public function track($event, $properties = [])
4040
$browserInfo = new Browser();
4141
$osInfo = new Os();
4242
$deviceInfo = new Device();
43-
$osVersion = $osInfo->getName() . ' ' . $osInfo->getVersion();
44-
$hardware = $deviceInfo->getName() . ' ' . $deviceInfo->getVersion();
43+
$browserVersion = trim(str_replace('unknown', '', $browserInfo->getName() . ' ' . $browserInfo->getVersion()));
44+
$osVersion = trim(str_replace('unknown', '', $osInfo->getName() . ' ' . $osInfo->getVersion()));
45+
$hardwareVersion = trim(str_replace('unknown', '', $deviceInfo->getName() . ' ' . $deviceInfo->getVersion()));
4546
$data = [
4647
'Url' => $this->request->getUri(),
4748
'Operating System' => $osVersion,
48-
'Hardware' => $hardware,
49-
'$browser' => $browserInfo->getName() . ' ' . $browserInfo->getVersion(),
49+
'Hardware' => $hardwareVersion,
50+
'$browser' => $browserVersion,
5051
'Referrer' => $this->request->header('referer'),
5152
'$referring_domain' => ($this->request->header('referer')
5253
? parse_url($this->request->header('referer'))['host']
@@ -55,8 +56,11 @@ public function track($event, $properties = [])
5556
];
5657
array_filter($data);
5758
array_filter($properties);
58-
$properties = $data + $properties;
5959

60-
parent::track($event, $properties);
60+
if ((! array_key_exists('$browser', $data)) && $browserInfo->isRobot()) {
61+
$data['$browser'] = 'Robot';
62+
}
63+
64+
parent::track($event, $data + $properties);
6165
}
6266
}

0 commit comments

Comments
 (0)