* feat: capture ad click IDs for Meta/Google/LinkedIn/TikTok/Reddit/Pinterest attribution Adds gclid, fbclid, li_fat_id, ttclid, rdt_cid, and epik columns to users, captured the same way UTM parameters already are (query string -> session -> persisted on signup, surviving the OAuth redirect round-trip via the new PreservesClickIds trait). Forwards them as first-touch ($set_once) PostHog person properties in SyncUser, so PostHog's native ad-platform destinations (Meta Ads Conversions API, Google Ads Conversions, LinkedIn Ads, TikTok Ads, Reddit Ads, Pinterest) have first-party click IDs to match conversions back to the originating ad click. * refactor: unify PreservesUtmParameters and PreservesClickIds into one trait Both traits captured a set of query-string keys into the session and retrieved them at signup, with identical extract/store/retrieve logic and every call site always using both together — the split added no real separation, just duplicated the same mechanism twice. PreservesAttributionParameters replaces both with a single ATTRIBUTION_KEYS list and one session key. Adding a future ad network's click ID is now one line in that list instead of a second trait. * refactor: split UTM_KEYS and CLICK_ID_KEYS into separate constants Same single trait, single session key, single extract/store/retrieve mechanism — just two named arrays instead of one merged list, so it's clear at a glance which key belongs to which category. * fix: don't truncate ad click IDs to 255 chars, only UTM parameters Ad platforms explicitly warn against assuming a fixed max length for click IDs (Google: gclid has already grown from 26 to 100+ chars, and their docs say never truncate or validate against a fixed length). Truncating would silently corrupt the value into something that no longer matches the real click ID, which is worse than not capturing it at all. Widens the click-id columns from string (VARCHAR 255) to text — safe to edit the migration in place since it hasn't shipped to production yet. UTM parameters still get truncated to 255, since those are ours (our own campaign URLs) and the column stays VARCHAR(255). * refactor: use Laravel collection/Str helpers, forward UTMs to PostHog too - extractAttributionParameters now reads through collect()/Str::limit() instead of raw array_filter/array_map/mb_substr; storeAttributionParameters drops its now-redundant emptiness check since retrieveAttributionParameters already treats "absent" and "present-but-empty" the same via pull()'s default. - SyncUser forwards utm_source/medium/campaign/term/content alongside the click ids as first-touch ($set_once) PostHog person properties. UTMs were never sent to PostHog before this, on any prior code — now that PostHog is the source of truth for ad-platform attribution, it should have the full picture, not just click ids. - Adds the missing GitHub-existing-user click-id session test, mirroring the Google one (parity with the existing UTM coverage). * fix: 3 issues found by review — empty-string leak, duplicated key list, comment style - extractAttributionParameters no longer keeps an empty-string value (e.g. ?utm_source=&gclid=, which some ad/email templates always append even for unfilled slots). The refactor to collect()/Str::limit() a few commits back dropped the outer array_filter() that used to strip these, so they were slipping into User::create() as '' instead of staying null. Restored via a trailing ->filter() on the merged result, and extended the same protection to click ids (which never had it, even before that refactor). - New App\Support\AttributionKeys centralizes the UTM_KEYS/CLICK_ID_KEYS lists that PreservesAttributionParameters and SyncUser each maintained independently. SyncUser previously hand-listed the same 11 field names as a second array with no shared source of truth — a future ad network added to the trait would silently never reach PostHog unless someone remembered to update this second copy too. - Removed the // comment block from the click-id migration explaining the text-column rationale — CLAUDE.md's PHP rules reserve inline comments for exceptionally complex logic; the rationale already lives in the commit message that introduced it.
321 lines
9.5 KiB
PHP
321 lines
9.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Models\User;
|
|
use Laravel\Socialite\Facades\Socialite;
|
|
use Laravel\Socialite\Two\User as SocialiteUser;
|
|
|
|
beforeEach(fn () => config()->set('trypost.self_hosted', false));
|
|
|
|
test('email registration saves utm parameters from the register page query string', function () {
|
|
$utms = [
|
|
'utm_source' => 'peerlist',
|
|
'utm_medium' => 'social',
|
|
'utm_campaign' => 'spring-launch',
|
|
'utm_term' => 'social-platform',
|
|
'utm_content' => 'cta-button',
|
|
];
|
|
|
|
$this->get(route('register', $utms));
|
|
|
|
$this->post(route('register.store'), [
|
|
'name' => 'UTM User',
|
|
'email' => 'utm@example.com',
|
|
'password' => 'Password123!',
|
|
])
|
|
->assertRedirect(route('register.success', $utms, absolute: false));
|
|
|
|
$this->assertDatabaseHas('users', [
|
|
'email' => 'utm@example.com',
|
|
...$utms,
|
|
]);
|
|
});
|
|
|
|
test('email registration without utm parameters saves null utm columns and redirects without query string', function () {
|
|
$this->post(route('register.store'), [
|
|
'name' => 'No UTM User',
|
|
'email' => 'no-utm@example.com',
|
|
'password' => 'Password123!',
|
|
])
|
|
->assertRedirect(route('register.success', absolute: false));
|
|
|
|
$this->assertDatabaseHas('users', [
|
|
'email' => 'no-utm@example.com',
|
|
'utm_source' => null,
|
|
'utm_medium' => null,
|
|
'utm_campaign' => null,
|
|
'utm_term' => null,
|
|
'utm_content' => null,
|
|
]);
|
|
});
|
|
|
|
test('email registration strips non-utm query params from the success redirect', function () {
|
|
$this->get(route('register', [
|
|
'utm_source' => 'peerlist',
|
|
'foo' => 'bar',
|
|
'ref' => '123',
|
|
]));
|
|
|
|
$this->post(route('register.store'), [
|
|
'name' => 'Strip Test',
|
|
'email' => 'strip@example.com',
|
|
'password' => 'Password123!',
|
|
])
|
|
->assertRedirect(route('register.success', ['utm_source' => 'peerlist'], absolute: false));
|
|
});
|
|
|
|
test('google registration saves utm parameters captured before the oauth round-trip', function () {
|
|
$utms = [
|
|
'utm_source' => 'twitter',
|
|
'utm_medium' => 'paid',
|
|
'utm_campaign' => 'q1-growth',
|
|
];
|
|
|
|
$this->get(route('auth.google.redirect', $utms));
|
|
|
|
$socialiteUser = new SocialiteUser;
|
|
$socialiteUser->id = 'g-utm';
|
|
$socialiteUser->name = 'Google UTM';
|
|
$socialiteUser->email = 'google-utm@example.com';
|
|
|
|
Socialite::shouldReceive('driver')
|
|
->with('google-auth')
|
|
->andReturn($driver = Mockery::mock());
|
|
|
|
$driver->shouldReceive('user')
|
|
->andReturn($socialiteUser);
|
|
|
|
$this->get(route('auth.google.callback'))
|
|
->assertRedirect(route('register.success', $utms, absolute: false));
|
|
|
|
$this->assertDatabaseHas('users', [
|
|
'email' => 'google-utm@example.com',
|
|
...$utms,
|
|
'utm_term' => null,
|
|
'utm_content' => null,
|
|
]);
|
|
});
|
|
|
|
test('utm parameters captured on the register page survive a google oauth round-trip', function () {
|
|
$utms = ['utm_source' => 'newsletter', 'utm_medium' => 'email'];
|
|
|
|
$this->get(route('register', $utms));
|
|
|
|
$socialiteUser = new SocialiteUser;
|
|
$socialiteUser->id = 'g-cross';
|
|
$socialiteUser->name = 'Cross Flow';
|
|
$socialiteUser->email = 'cross-flow@example.com';
|
|
|
|
Socialite::shouldReceive('driver')
|
|
->with('google-auth')
|
|
->andReturn($driver = Mockery::mock());
|
|
|
|
$driver->shouldReceive('user')
|
|
->andReturn($socialiteUser);
|
|
|
|
$this->get(route('auth.google.callback'))
|
|
->assertRedirect(route('register.success', $utms, absolute: false));
|
|
|
|
$this->assertDatabaseHas('users', [
|
|
'email' => 'cross-flow@example.com',
|
|
...$utms,
|
|
]);
|
|
});
|
|
|
|
test('existing google user login consumes the utm session so utms do not leak to a later signup', function () {
|
|
User::factory()->create([
|
|
'email' => 'existing@example.com',
|
|
'google_id' => 'g-existing',
|
|
]);
|
|
|
|
$this->get(route('auth.google.redirect', ['utm_source' => 'twitter']));
|
|
|
|
$socialiteUser = new SocialiteUser;
|
|
$socialiteUser->id = 'g-existing';
|
|
$socialiteUser->name = 'Existing User';
|
|
$socialiteUser->email = 'existing@example.com';
|
|
|
|
Socialite::shouldReceive('driver')
|
|
->with('google-auth')
|
|
->andReturn($driver = Mockery::mock());
|
|
|
|
$driver->shouldReceive('user')
|
|
->andReturn($socialiteUser);
|
|
|
|
$this->get(route('auth.google.callback'))
|
|
->assertRedirect(route('app.home'));
|
|
|
|
expect(session()->get('attribution_parameters'))->toBeNull();
|
|
});
|
|
|
|
test('invitation registration does not include utm parameters in its redirect', function () {
|
|
$this->get(route('register', ['utm_source' => 'email']));
|
|
|
|
$this->post(route('register.store'), [
|
|
'name' => 'Invited User',
|
|
'email' => 'invited@example.com',
|
|
'password' => 'Password123!',
|
|
'redirect' => '/invites/some-token',
|
|
])
|
|
->assertRedirect('/invites/some-token');
|
|
});
|
|
|
|
test('utm values longer than 255 characters are truncated before being stored', function () {
|
|
$longValue = str_repeat('a', 300);
|
|
|
|
$this->get(route('register', ['utm_source' => $longValue]));
|
|
|
|
$this->post(route('register.store'), [
|
|
'name' => 'Long UTM User',
|
|
'email' => 'long-utm@example.com',
|
|
'password' => 'Password123!',
|
|
]);
|
|
|
|
$user = User::where('email', 'long-utm@example.com')->first();
|
|
|
|
expect(mb_strlen($user->utm_source))->toBe(255);
|
|
});
|
|
|
|
test('email registration captures the requesting ip address', function () {
|
|
$this->post(route('register.store'), [
|
|
'name' => 'IP User',
|
|
'email' => 'ip@example.com',
|
|
'password' => 'Password123!',
|
|
]);
|
|
|
|
$user = User::where('email', 'ip@example.com')->first();
|
|
|
|
expect($user->registration_ip)->not->toBeNull();
|
|
});
|
|
|
|
test('google registration captures the requesting ip address', function () {
|
|
$socialiteUser = new SocialiteUser;
|
|
$socialiteUser->id = 'g-ip';
|
|
$socialiteUser->name = 'Google IP';
|
|
$socialiteUser->email = 'google-ip@example.com';
|
|
|
|
Socialite::shouldReceive('driver')
|
|
->with('google-auth')
|
|
->andReturn($driver = Mockery::mock());
|
|
|
|
$driver->shouldReceive('user')
|
|
->andReturn($socialiteUser);
|
|
|
|
$this->get(route('auth.google.callback'));
|
|
|
|
$user = User::where('email', 'google-ip@example.com')->first();
|
|
|
|
expect($user->registration_ip)->not->toBeNull();
|
|
});
|
|
|
|
test('github registration saves utm parameters captured before the oauth round-trip', function () {
|
|
$utms = [
|
|
'utm_source' => 'hackernews',
|
|
'utm_medium' => 'organic',
|
|
'utm_campaign' => 'launch-week',
|
|
];
|
|
|
|
$this->get(route('auth.github.redirect', $utms));
|
|
|
|
$socialiteUser = new SocialiteUser;
|
|
$socialiteUser->id = 'gh-utm';
|
|
$socialiteUser->name = 'GitHub UTM';
|
|
$socialiteUser->email = 'github-utm@example.com';
|
|
|
|
Socialite::shouldReceive('driver')
|
|
->with('github')
|
|
->andReturn($driver = Mockery::mock());
|
|
|
|
$driver->shouldReceive('scopes')
|
|
->andReturnSelf();
|
|
|
|
$driver->shouldReceive('user')
|
|
->andReturn($socialiteUser);
|
|
|
|
$this->get(route('auth.github.callback'))
|
|
->assertRedirect(route('register.success', $utms, absolute: false));
|
|
|
|
$this->assertDatabaseHas('users', [
|
|
'email' => 'github-utm@example.com',
|
|
...$utms,
|
|
'utm_term' => null,
|
|
'utm_content' => null,
|
|
]);
|
|
});
|
|
|
|
test('github registration captures the requesting ip address', function () {
|
|
$socialiteUser = new SocialiteUser;
|
|
$socialiteUser->id = 'gh-ip';
|
|
$socialiteUser->name = 'GitHub IP';
|
|
$socialiteUser->email = 'github-ip@example.com';
|
|
|
|
Socialite::shouldReceive('driver')
|
|
->with('github')
|
|
->andReturn($driver = Mockery::mock());
|
|
|
|
$driver->shouldReceive('scopes')
|
|
->andReturnSelf();
|
|
|
|
$driver->shouldReceive('user')
|
|
->andReturn($socialiteUser);
|
|
|
|
$this->get(route('auth.github.callback'));
|
|
|
|
$user = User::where('email', 'github-ip@example.com')->first();
|
|
|
|
expect($user->registration_ip)->not->toBeNull();
|
|
expect($user->github_id)->toBe('gh-ip');
|
|
});
|
|
|
|
test('github registration without email redirects to login with error', function () {
|
|
$socialiteUser = new SocialiteUser;
|
|
$socialiteUser->id = 'gh-no-email';
|
|
$socialiteUser->name = 'No Email';
|
|
$socialiteUser->email = null;
|
|
|
|
Socialite::shouldReceive('driver')
|
|
->with('github')
|
|
->andReturn($driver = Mockery::mock());
|
|
|
|
$driver->shouldReceive('scopes')
|
|
->andReturnSelf();
|
|
|
|
$driver->shouldReceive('user')
|
|
->andReturn($socialiteUser);
|
|
|
|
$this->get(route('auth.github.callback'))
|
|
->assertRedirect(route('login'))
|
|
->assertSessionHasErrors('email');
|
|
|
|
$this->assertGuest();
|
|
});
|
|
|
|
test('existing github user login consumes the utm session and skips signup success', function () {
|
|
User::factory()->create([
|
|
'email' => 'existing-gh@example.com',
|
|
'github_id' => 'gh-existing',
|
|
]);
|
|
|
|
$this->get(route('auth.github.redirect', ['utm_source' => 'hackernews']));
|
|
|
|
$socialiteUser = new SocialiteUser;
|
|
$socialiteUser->id = 'gh-existing';
|
|
$socialiteUser->name = 'Existing GitHub';
|
|
$socialiteUser->email = 'existing-gh@example.com';
|
|
|
|
Socialite::shouldReceive('driver')
|
|
->with('github')
|
|
->andReturn($driver = Mockery::mock());
|
|
|
|
$driver->shouldReceive('scopes')
|
|
->andReturnSelf();
|
|
|
|
$driver->shouldReceive('user')
|
|
->andReturn($socialiteUser);
|
|
|
|
$this->get(route('auth.github.callback'))
|
|
->assertRedirect(route('app.home'));
|
|
|
|
expect(session()->get('attribution_parameters'))->toBeNull();
|
|
});
|