Skip to content

Commit b04fba4

Browse files
committed
Fix incorrect array for mixpanel data, fix reference to user primary key
1 parent 5c8eea4 commit b04fba4

File tree

3 files changed

+21
-15
lines changed

3 files changed

+21
-15
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ 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.7] - 25 Oct 2015
15+
### Fixed
16+
- improper tracking of user details, which caused users' names to be blank and a `0 Object [object]` field to be tracked
17+
erroneously.
18+
- fixed tracking to not depend on `$user->id` when referencing the primary key, but pulling it dynamically instead.
19+
1420
## [0.4.6] - 25 Sep 2015
1521
### Fixed
1622
- documentation references to old Mixpanel class.

src/Listeners/LaravelMixpanelEventHandler.php

+8-7
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function onUserLoginAttempt(array $event)
3737
if ($user
3838
&& ! $this->guard->getProvider()->validateCredentials($user, ['email' => $email, 'password' => $password])
3939
) {
40-
$this->mixPanel->identify($user->id);
40+
$this->mixPanel->identify($user->getKey());
4141
$this->mixPanel->track('Session', ['Status' => 'Login Failed']);
4242
}
4343
}
@@ -57,7 +57,7 @@ public function onUserLogin(Model $user)
5757
$firstName = implode(' ', $nameParts);
5858
}
5959

60-
$data[] = [
60+
$data = [
6161
'$first_name' => $firstName,
6262
'$last_name' => $lastName,
6363
'$email' => $user->email,
@@ -69,9 +69,9 @@ public function onUserLogin(Model $user)
6969

7070
array_filter($data);
7171

72-
$this->mixPanel->identify($user->id);
72+
$this->mixPanel->identify($user->getKey());
7373
$request = App::make(Request::class);
74-
$this->mixPanel->people->set($user->id, $data, $request->ip());
74+
$this->mixPanel->people->set($user->getKey(), $data, $request->ip());
7575
$this->mixPanel->track('Session', ['Status' => 'Logged In']);
7676
}
7777

@@ -81,7 +81,7 @@ public function onUserLogin(Model $user)
8181
public function onUserLogout(Model $user = null)
8282
{
8383
if ($user) {
84-
$this->mixPanel->identify($user->id);
84+
$this->mixPanel->identify($user->getKey());
8585
}
8686

8787
$this->mixPanel->track('Session', ['Status' => 'Logged Out']);
@@ -94,8 +94,8 @@ public function onViewLoad($route)
9494
$request = App::make(Request::class);
9595

9696
if (Auth::check()) {
97-
$this->mixPanel->identify(Auth::user()->id);
98-
$this->mixPanel->people->set(Auth::user()->id, [], $request->ip());
97+
$this->mixPanel->identify(Auth::user()->getKey());
98+
$this->mixPanel->people->set(Auth::user()->getKey(), [], $request->ip());
9999
}
100100

101101
if (is_array($routeAction) && array_key_exists('as', $routeAction)) {
@@ -104,6 +104,7 @@ public function onViewLoad($route)
104104

105105
$data['Url'] = $request->getUri();
106106
$data['Referrer'] = $request->header('referer');
107+
array_filter($data);
107108

108109
$this->mixPanel->track('Page View', $data);
109110
}

src/Listeners/LaravelMixpanelUserObserver.php

+7-8
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function created(Model $user)
3333
$firstName = implode(' ', $nameParts);
3434
}
3535

36-
$data[] = [
36+
$data = [
3737
'$first_name' => $firstName,
3838
'$last_name' => $lastName,
3939
];
@@ -45,7 +45,7 @@ public function created(Model $user)
4545
array_filter($data);
4646

4747
$request = App::make(Request::class);
48-
$this->mixPanel->people->set($user->id, $data, $request->ip());
48+
$this->mixPanel->people->set($user->getKey(), $data, $request->ip());
4949
$this->mixPanel->track('User', ['Status' => 'Registered']);
5050
}
5151

@@ -54,8 +54,7 @@ public function created(Model $user)
5454
*/
5555
public function saving(Model $user)
5656
{
57-
$this->mixPanel->identify($user->id);
58-
$data = [];
57+
$this->mixPanel->identify($user->getKey());
5958
$firstName = $user->first_name ?: '';
6059
$lastName = $user->last_name ?: '';
6160

@@ -66,7 +65,7 @@ public function saving(Model $user)
6665
$firstName = implode(' ', $nameParts);
6766
}
6867

69-
$data[] = [
68+
$data = [
7069
'$first_name' => $firstName,
7170
'$last_name' => $lastName,
7271
'$email' => $user->email,
@@ -80,7 +79,7 @@ public function saving(Model $user)
8079

8180
if (count($data)) {
8281
$request = App::make(Request::class);
83-
$this->mixPanel->people->set($user->id, $data, $request->ip());
82+
$this->mixPanel->people->set($user->getKey(), $data, $request->ip());
8483
}
8584
}
8685

@@ -89,7 +88,7 @@ public function saving(Model $user)
8988
*/
9089
public function deleting(Model $user)
9190
{
92-
$this->mixPanel->identify($user->id);
91+
$this->mixPanel->identify($user->getKey());
9392
$this->mixPanel->track('User', ['Status' => 'Deactivated']);
9493
}
9594

@@ -98,7 +97,7 @@ public function deleting(Model $user)
9897
*/
9998
public function restored(Model $user)
10099
{
101-
$this->mixPanel->identify($user->id);
100+
$this->mixPanel->identify($user->getKey());
102101
$this->mixPanel->track('User', ['Status' => 'Reactivated']);
103102
}
104103
}

0 commit comments

Comments
 (0)