Add no-cookie variants of the Google Analytics templates
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 25 May 2018 12:52:06 +0000 (14:52 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 25 May 2018 13:56:10 +0000 (15:56 +0200)
The current full set of options for GA is now:

```toml
[privacy]
[privacy.googleAnalytics]
disable = false
respectDoNotTrack = true
anonymizeIP = true
useSessionStorage = true
```

Fixes #4775

config/privacy/privacyConfig.go
config/privacy/privacyConfig_test.go
tpl/tplimpl/embedded/templates.autogen.go
tpl/tplimpl/embedded/templates/google_analytics.html
tpl/tplimpl/embedded/templates/google_analytics_async.html

index 6dad54e72733e5468bc4c632d74e59eded8d13b5..e7bb1e25cbc015c2253b6a38c5034ef5047ffb42 100644 (file)
@@ -45,6 +45,9 @@ type Disqus struct {
 type GoogleAnalytics struct {
        Service `mapstructure:",squash"`
 
+       // Enabling this will disable the use of Cookies and use Session Storage to Store the GA Client ID.
+       UseSessionStorage bool
+
        // Enabling this will make the GA templates respect the
        // "Do Not Track" HTTP header. See  https://www.paulfurley.com/google-analytics-dnt/.
        RespectDoNotTrack bool
index 7e736ce96a394e918d2fd3e39f85c5b282f01417..72ffb546700cf2277f17116759d9e454cd2448d8 100644 (file)
@@ -35,6 +35,7 @@ disable = true
 disable = true
 respectDoNotTrack = true
 anonymizeIP = true
+useSessionStorage = true
 [privacy.instagram]
 disable = true
 simple = true
@@ -61,6 +62,7 @@ simple = true
        assert.True(pc.GoogleAnalytics.Disable)
        assert.True(pc.GoogleAnalytics.RespectDoNotTrack)
        assert.True(pc.GoogleAnalytics.AnonymizeIP)
+       assert.True(pc.GoogleAnalytics.UseSessionStorage)
        assert.True(pc.Instagram.Disable)
        assert.True(pc.Instagram.Simple)
        assert.True(pc.SpeakerDeck.Disable)
index df44102ea65acf71d8c3803eed9f904b59e2b4f8..db35f789a677174b4d246b8fde71d4f680e6ef36 100644 (file)
@@ -109,7 +109,20 @@ if (!doNotTrack) {
        (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
        m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
        })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
+       {{- if $pc.UseSessionStorage }}
+       if (window.sessionStorage) {
+               var GA_SESSION_STORAGE_KEY = 'ga:clientId';
+               ga('create', '{{ . }}', {
+           'storage': 'none',
+           'clientId': sessionStorage.getItem(GA_SESSION_STORAGE_KEY)
+          });
+          ga(function(tracker) {
+           sessionStorage.setItem(GA_SESSION_STORAGE_KEY, tracker.get('clientId'));
+          });
+   }
+       {{ else }}
        ga('create', '{{ . }}', 'auto');
+       {{ end -}}
        ga('send', 'pageview');
        {{ if $pc.AnonymizeIP }}ga('set', 'anonymizeIp', true);{{ end -}}
 }
@@ -132,7 +145,20 @@ var doNotTrack = (dnt == "1" || dnt == "yes");
 {{ template "__ga_js_set_doNotTrack" $ }}
 if (!doNotTrack) {
        window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
+       {{- if $pc.UseSessionStorage }}
+       if (window.sessionStorage) {
+               var GA_SESSION_STORAGE_KEY = 'ga:clientId';
+               ga('create', '{{ . }}', {
+           'storage': 'none',
+           'clientId': sessionStorage.getItem(GA_SESSION_STORAGE_KEY)
+          });
+          ga(function(tracker) {
+           sessionStorage.setItem(GA_SESSION_STORAGE_KEY, tracker.get('clientId'));
+          });
+   }
+       {{ else }}
        ga('create', '{{ . }}', 'auto');
+       {{ end -}}
        ga('send', 'pageview');
        {{ if $pc.AnonymizeIP }}ga('set', 'anonymizeIp', true);{{ end -}}
 }
index 611c1c7261da10a4fafe79da24580be2f038ed93..429672a7e27a886d14b3a081defc7fbf44b08d32 100755 (executable)
@@ -8,7 +8,20 @@ if (!doNotTrack) {
        (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
        m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
        })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
+       {{- if $pc.UseSessionStorage }}
+       if (window.sessionStorage) {
+               var GA_SESSION_STORAGE_KEY = 'ga:clientId';
+               ga('create', '{{ . }}', {
+           'storage': 'none',
+           'clientId': sessionStorage.getItem(GA_SESSION_STORAGE_KEY)
+          });
+          ga(function(tracker) {
+           sessionStorage.setItem(GA_SESSION_STORAGE_KEY, tracker.get('clientId'));
+          });
+   }
+       {{ else }}
        ga('create', '{{ . }}', 'auto');
+       {{ end -}}
        ga('send', 'pageview');
        {{ if $pc.AnonymizeIP }}ga('set', 'anonymizeIp', true);{{ end -}}
 }
index 18e18a16897544d581664a9921e4795a2ee06ee1..8fb746e0be24211b339d53a1a431819b73398fea 100755 (executable)
@@ -5,7 +5,20 @@
 {{ template "__ga_js_set_doNotTrack" $ }}
 if (!doNotTrack) {
        window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
+       {{- if $pc.UseSessionStorage }}
+       if (window.sessionStorage) {
+               var GA_SESSION_STORAGE_KEY = 'ga:clientId';
+               ga('create', '{{ . }}', {
+           'storage': 'none',
+           'clientId': sessionStorage.getItem(GA_SESSION_STORAGE_KEY)
+          });
+          ga(function(tracker) {
+           sessionStorage.setItem(GA_SESSION_STORAGE_KEY, tracker.get('clientId'));
+          });
+   }
+       {{ else }}
        ga('create', '{{ . }}', 'auto');
+       {{ end -}}
        ga('send', 'pageview');
        {{ if $pc.AnonymizeIP }}ga('set', 'anonymizeIp', true);{{ end -}}
 }