-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathconceptual.js
More file actions
218 lines (193 loc) · 7.53 KB
/
Copy pathconceptual.js
File metadata and controls
218 lines (193 loc) · 7.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/*
* Conceptual Analytics pixel.
*
* Mintlify loads every .js file in this directory on every docs page. The docs
* are served under www.kernel.sh/docs via a rewrite from the marketing site, so
* both the c15t consent cookie and the c15t API are same-origin here and the
* two halves of the site can share one consent decision.
*/
(function () {
var CONSENT_CATEGORY = "marketing";
var PIXEL_KEY =
"acfc03eea265bec68ec3dfb5bc9f1bf6cda7644ceed3260980286b6f0b4098a3";
var LOADER_SRC =
"https://plfalg.kernel.sh/analytics/loader-v1.js?key=" +
encodeURIComponent(PIXEL_KEY) +
"&v=1.1.0";
var JURISDICTION_URL = "/api/c15t/show-consent-banner";
var HANDOFF_PARAM = "ca_device_id";
var HANDOFF_DOMAIN = "onkernel.com";
// Calendly's opaque passthrough. A booking happens on their domain, so
// ca_device_id would never reach us; salesforce_uuid surfaces in the
// invitee.created webhook instead. The UTM slots carry real campaign data.
var CALENDLY_DOMAIN = "calendly.com";
var CALENDLY_PARAM = "salesforce_uuid";
// Honouring Do Not Track has to cover the whole integration, not just the
// vendor's events. respectDNT stops the pixel sending, but it doesn't stop
// getDeviceId() minting an identifier or the handoff carrying it to another
// domain, so nothing loads at all when the header is set.
function doNotTrackEnabled() {
return (
navigator.doNotTrack === "1" ||
navigator.msDoNotTrack === "1" ||
window.doNotTrack === "1"
);
}
function handoffParamFor(url) {
if (
url.hostname === HANDOFF_DOMAIN ||
url.hostname.endsWith("." + HANDOFF_DOMAIN)
) {
return HANDOFF_PARAM;
}
if (
url.hostname === CALENDLY_DOMAIN ||
url.hostname.endsWith("." + CALENDLY_DOMAIN)
) {
return CALENDLY_PARAM;
}
return null;
}
// A click rewrites the anchor in place, so a decorated href outlives it. A
// later decline stops new rewrites but leaves the identifier sitting in the
// DOM, so it has to be taken back out.
function undecorateLinks() {
var links = document.querySelectorAll("a[href]");
for (var i = 0; i < links.length; i++) {
try {
var url = new URL(links[i].href, window.location.href);
var param = handoffParamFor(url);
if (!param || !url.searchParams.has(param)) continue;
url.searchParams.delete(param);
links[i].href = url.toString();
} catch (e) {}
}
}
// true granted, false declined, null no decision recorded yet.
//
// c15t omits false values from its cookie rather than writing them, so a
// decline is the absence of the key. Any stored consent record therefore
// means a decision was made, and a missing category in one means no.
function storedConsent() {
try {
var cookie = document.cookie.match(/(?:^|;\s*)c15t=([^;]*)/);
if (cookie && cookie[1]) {
return cookie[1].indexOf("c." + CONSENT_CATEGORY + ":1") !== -1;
}
} catch (e) {}
try {
var raw = localStorage.getItem("c15t");
if (raw) {
var parsed = JSON.parse(raw);
if (parsed && parsed.consents) {
return parsed.consents[CONSENT_CATEGORY] === true;
}
}
} catch (e) {}
return null;
}
function load() {
if (window.ca) return;
// measure-v1.js reads __CA_CONFIG once at init, so it has to be set before
// the loader injects it. Both flags are off in the shipped pixel config.
//
// trackPageViews and trackUnload are what let the consent re-check below
// mean anything. Left on, the vendor emits a page view at init and installs
// scroll, click and form-submit listeners, all routed through its own
// internal track() rather than through ours — none of which we can gate.
// Off, the script emits nothing on its own and every event is one we sent.
//
// respectDNT takes effect: the pixel checks it before every event.
// anonymizeIP currently does not — the shipped script defines it and never
// reads it, and resolves the visitor's full address from the vendor's IP
// endpoint to send as client_ip regardless. It's set here so it applies if
// the vendor implements it; until then full-IP processing is what happens.
window.__CA_CONFIG = window.__CA_CONFIG || {};
window.__CA_CONFIG.respectDNT = true;
window.__CA_CONFIG.anonymizeIP = true;
window.__CA_CONFIG.trackPageViews = false;
window.__CA_CONFIG.trackUnload = false;
window.ca = function () {
(window.ca.q = window.ca.q || []).push(arguments);
};
var script = document.createElement("script");
script.async = true;
script.src = LOADER_SRC;
document.head.appendChild(script);
// The vendor's own page view is off, so the landing one is ours to send.
window.ca("track", "page_view");
}
// The pixel sends one page_view on init and has no router hooks, so docs
// navigation between pages is invisible unless we send it ourselves.
function trackNavigations() {
var lastPath = location.pathname + location.search;
function onNavigate() {
var path = location.pathname + location.search;
if (path === lastPath) return;
lastPath = path;
// Consent can be withdrawn on the marketing site while a docs page stays
// open. There's no consent UI here to react to, so every navigation
// re-reads the decision rather than trusting the one made at page load.
if (storedConsent() === false) {
undecorateLinks();
return;
}
if (window.ca) window.ca("track", "page_view");
}
["pushState", "replaceState"].forEach(function (method) {
var original = history[method];
history[method] = function () {
var result = original.apply(this, arguments);
onNavigate();
return result;
};
});
window.addEventListener("popstate", onNavigate);
}
// The device ID is stored per-domain, and the docs link to dashboard sign-up
// in several places, so without this the ad click that led to a signup is
// never credited. Hand ours over on the way out; the dashboard reads it back.
function handOffDeviceIdOnNavigation() {
document.addEventListener(
"click",
function (event) {
var link = event.target.closest && event.target.closest("a[href]");
if (!link || typeof window.ca.getDeviceId !== "function") return;
if (storedConsent() === false) {
undecorateLinks();
return;
}
var url = new URL(link.href, window.location.href);
var param = handoffParamFor(url);
if (!param) return;
url.searchParams.set(param, window.ca.getDeviceId());
link.href = url.toString();
},
{ capture: true }
);
}
function start() {
load();
trackNavigations();
handOffDeviceIdOnNavigation();
}
if (doNotTrackEnabled()) return;
var stored = storedConsent();
if (stored !== null) {
if (stored) start();
return;
}
// Nobody has decided yet, which is the normal case for a visitor whose first
// page is a docs page — the consent banner lives in the marketing site's app
// and never renders here. Apply the same rule c15t applies there: it only
// prompts in regulated jurisdictions and auto-grants everywhere else. Any
// failure leaves the pixel unloaded.
fetch(JURISDICTION_URL, { credentials: "same-origin" })
.then(function (response) {
return response.ok ? response.json() : null;
})
.then(function (data) {
if (data && data.showConsentBanner === false) start();
})
.catch(function () {});
})();