-
Notifications
You must be signed in to change notification settings - Fork 10
Add consent-gated Conceptual Analytics pixel to dev docs #550
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
andrewleesteele
wants to merge
2
commits into
main
Choose a base branch
from
hypeship/conceptual-analytics-pixel
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+110
−0
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,110 @@ | ||
| /* | ||
| * 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"; | ||
|
|
||
| // true granted, false declined, null no decision recorded yet. | ||
| function storedConsent() { | ||
| try { | ||
| var cookie = document.cookie.match(/(?:^|;\s*)c15t=([^;]*)/); | ||
| if (cookie && cookie[1]) { | ||
| if (cookie[1].indexOf("c." + CONSENT_CATEGORY + ":1") !== -1) return true; | ||
| if (cookie[1].indexOf("c." + CONSENT_CATEGORY + ":0") !== -1) return false; | ||
| } | ||
| } catch (e) {} | ||
|
|
||
| try { | ||
| var raw = localStorage.getItem("c15t"); | ||
| if (raw) { | ||
| var parsed = JSON.parse(raw); | ||
| var consents = parsed && parsed.consents; | ||
| if (consents && typeof consents[CONSENT_CATEGORY] === "boolean") { | ||
| return consents[CONSENT_CATEGORY]; | ||
| } | ||
| } | ||
| } 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. | ||
| window.__CA_CONFIG = window.__CA_CONFIG || {}; | ||
| window.__CA_CONFIG.respectDNT = true; | ||
| window.__CA_CONFIG.anonymizeIP = true; | ||
|
|
||
| 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 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; | ||
| 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); | ||
| } | ||
|
|
||
| function start() { | ||
| load(); | ||
| trackNavigations(); | ||
| } | ||
|
|
||
| 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 () {}); | ||
| })(); | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Declined consent treated as undecided
Medium Severity
storedConsentonly treatsc.marketing:1orc.marketing:0(and an explicit JSON boolean) as a recorded choice. c15t omits false keys from the compactc15tcookie, so a stored decline looks like a missing decision. The jurisdiction fallback then loads the pixel wherevershowConsentBanneris false, including visitors who already opted out.Additional Locations (1)
conceptual.js#L106-L107Reviewed by Cursor Bugbot for commit 05231c2. Configure here.