Skip to content

Commit a1deb38

Browse files
committed
Improve headers and fix redirect for analytics iframe
1 parent dfa27e0 commit a1deb38

File tree

3 files changed

+24
-23
lines changed

3 files changed

+24
-23
lines changed

netlify.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ HUGO_ENV = "staging"
1919
HUGO_PARAMS_segmentWriteKey = "DZ49RYXkFEV0pY6DG4i0RyxyobSovIlU"
2020

2121
[[headers]]
22-
for = "/get_anonymous_id"
22+
for = "/get_anonymous_id/"
2323
[headers.values]
24-
Content-Security-Policy = "frame-ancestors https://staging-cloud.qdrant.io https://cloud.qdrant.io;"
25-
X-Frame-Options = "ALLOW-FROM https://staging-cloud.qdrant.io https://cloud.qdrant.io"
24+
Content-Security-Policy = "frame-ancestors https://development-cloud.qdrant.io https://staging-cloud.qdrant.io https://cloud.qdrant.io"
25+
X-Frame-Options = "ALLOW-FROM https://development-cloud.qdrant.io https://staging-cloud.qdrant.io https://cloud.qdrant.io"
2626

2727

2828
[[headers]]

qdrant-landing/config.toml

+7
Original file line numberDiff line numberDiff line change
@@ -118,3 +118,10 @@ disableKinds = ["taxonomy", "term"]
118118
[services]
119119
[services.googleAnalytics]
120120
id = 'G-NZYW2651NE'
121+
122+
[server]
123+
[server.headers]
124+
for = '/get_anonymous_id/**'
125+
[[server.headers.values]]
126+
Content-Security-Policy = 'frame-ancestors https://localhost:3000'
127+
X-Frame-Options = 'ALLOW-FROM https://localhost:3000'
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
<!doctype html>
22
<html lang="en">
33
<head>
4-
<meta name="robots" content="noindex, nofollow">
5-
4+
<meta name="robots" content="noindex, nofollow" />
65
<script>
76
const writeKey = "{{ .Site.Params.segmentWriteKey }}";
87
const isProduction = "{{ hugo.IsProduction }}" === "true";
9-
10-
if(!isProduction) { // not production ∴ no cdn
8+
if (!isProduction) { // not production ∴ no cdn
119
!function(){
1210
var i="analytics",analytics=window[i]=window[i]||[];if(!analytics.initialize)if(analytics.invoked)window.console&&console.error&&console.error("Segment snippet included twice.");else{analytics.invoked=!0;analytics.methods=["trackSubmit","trackClick","trackLink","trackForm","pageview","identify","reset","group","track","ready","alias","debug","page","screen","once","off","on","addSourceMiddleware","addIntegrationMiddleware","setAnonymousId","addDestinationMiddleware","register"];analytics.factory=function(e){return function(){if(window[i].initialized)return window[i][e].apply(window[i],arguments);var n=Array.prototype.slice.call(arguments);if(["track","screen","alias","group","page","identify"].indexOf(e)>-1){var c=document.querySelector("link[rel='canonical']");n.push({__t:"bpc",c:c&&c.getAttribute("href")||void 0,p:location.pathname,u:location.href,s:location.search,t:document.title,r:document.referrer})}n.unshift(e);analytics.push(n);return analytics}};for(var n=0;n<analytics.methods.length;n++){var key=analytics.methods[n];analytics[key]=analytics.factory(key)}analytics.load=function(key,n){var t=document.createElement("script");t.type="text/javascript";t.async=!0;t.setAttribute("data-global-segment-analytics-key",i);t.src="https://cdn.segment.com/analytics.js/v1/" + key + "/analytics.min.js";var r=document.getElementsByTagName("script")[0];r.parentNode.insertBefore(t,r);analytics._loadOptions=n};analytics._writeKey=writeKey;;analytics.SNIPPET_VERSION="5.2.0";
1311
analytics.load(writeKey);
@@ -22,22 +20,18 @@
2220
analytics.load(writeKey);
2321
}}();
2422
}
25-
26-
window.onload = function() {
27-
window.addEventListener('message', (cloudUIEvent) => {
28-
analytics.ready(() => {
29-
const isQdrantOrigin = ['https://cloud.qdrant.io', 'https://staging-cloud.qdrant.io'].includes(cloudUIEvent.origin);
30-
const isLocal = !isProduction && cloudUIEvent.origin === 'https://localhost:3000';
31-
const originPass = isQdrantOrigin || isLocal;
32-
33-
if (originPass && cloudUIEvent.data === 'getAnonymousId') {
34-
const anonymousId = analytics.user().anonymousId();
35-
cloudUIEvent.source.postMessage({ anonymousId }, cloudUIEvent.origin);
36-
}
37-
});
38-
});
39-
};
4023
</script>
4124
</head>
42-
<body></body>
25+
<body>
26+
<script>
27+
window.addEventListener('message', (event) => {
28+
analytics.ready(() => {
29+
if (event.data === 'getAnonymousId') {
30+
const anonymousId = analytics.user().anonymousId();
31+
event.source.postMessage(anonymousId, event.origin);
32+
}
33+
});
34+
});
35+
</script>
36+
</body>
4337
</html>

0 commit comments

Comments
 (0)