Add PrivacyEnhanced mode for YouTube to the GDPR Policy
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 21 May 2018 12:02:30 +0000 (14:02 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 21 May 2018 14:49:00 +0000 (16:49 +0200)
See #4616

config/privacy/privacyConfig.go
config/privacy/privacyConfig_test.go
hugolib/config_test.go
tpl/tplimpl/embedded/templates.autogen.go
tpl/tplimpl/embedded/templates/shortcodes/youtube.html

index 0241b5704562516a2ed730dd4321b68c47de7275..64bbe71bb069769c1a00d2d725a7667598cd341f 100644 (file)
@@ -72,8 +72,12 @@ type Vimeo struct {
 
 // YouTube holds the privacy configuration settingsrelated to the YouTube shortcode.
 type YouTube struct {
-       Service  `mapstructure:",squash"`
-       NoCookie bool
+       Service `mapstructure:",squash"`
+
+       // When you turn on privacy-enhanced mode,
+       // YouTube won’t store information about visitors on your website
+       // unless they play the video.
+       PrivacyEnhanced bool
 }
 
 func DecodeConfig(cfg config.Provider) (pc Config, err error) {
index f8e2ebbd163fb9ca6f04b742af2a92b4e901fce4..bca53f1676fd9e54926ebbdb9cfbaaf8c7469366 100644 (file)
@@ -44,7 +44,7 @@ disable = true
 disable = true
 [privacy.youtube]
 disable = true
-noCookie = true
+privacyEnhanced = true
 `
        cfg, err := config.FromConfigString(tomlConfig, "toml")
        assert.NoError(err)
@@ -61,7 +61,7 @@ noCookie = true
        assert.True(pc.Tweet.Disable)
        assert.True(pc.Vimeo.Disable)
 
-       assert.True(pc.YouTube.NoCookie)
+       assert.True(pc.YouTube.PrivacyEnhanced)
        assert.True(pc.YouTube.Disable)
 }
 
@@ -74,7 +74,7 @@ someOtherValue = "foo"
 
 [Privacy]
 [Privacy.YouTube]
-NoCOOKIE = true
+PrivacyENhanced = true
 `
        cfg, err := config.FromConfigString(tomlConfig, "toml")
        assert.NoError(err)
@@ -82,7 +82,7 @@ NoCOOKIE = true
        pc, err := DecodeConfig(cfg)
        assert.NoError(err)
        assert.NotNil(pc)
-       assert.True(pc.YouTube.NoCookie)
+       assert.True(pc.YouTube.PrivacyEnhanced)
 }
 
 func TestDecodeConfigDefault(t *testing.T) {
@@ -91,5 +91,5 @@ func TestDecodeConfigDefault(t *testing.T) {
        pc, err := DecodeConfig(viper.New())
        assert.NoError(err)
        assert.NotNil(pc)
-       assert.False(pc.YouTube.NoCookie)
+       assert.False(pc.YouTube.PrivacyEnhanced)
 }
index 8bf7ea8b336679b6ef636dc00ba6c3add942491b..f6306dec172f89f80d9851676b77d5f02519d7e6 100644 (file)
@@ -377,13 +377,13 @@ someOtherValue = "foo"
 
 [privacy]
 [privacy.youtube]
-noCookie = true
+privacyEnhanced = true
 `
 
        b := newTestSitesBuilder(t)
        b.WithConfigFile("toml", tomlConfig)
        b.Build(BuildCfg{SkipRender: true})
 
-       assert.True(b.H.Sites[0].Info.PrivacyConfig.YouTube.NoCookie)
+       assert.True(b.H.Sites[0].Info.PrivacyConfig.YouTube.PrivacyEnhanced)
 
 }
index 71a1fd14fbdc5abe3756db71bf5f592c315d4f3d..7ba6a30438a5bf3b2973a9525f5a1c4d4033d1cf 100644 (file)
@@ -287,13 +287,14 @@ if (!doNotTrack) {
 {{- end -}}`},
        {`shortcodes/youtube.html`, `{{- $pc := .Page.Site.PrivacyConfig.YouTube -}}
 {{- if not $pc.Disable -}}
+{{ $ytHost := cond $pc.PrivacyEnhanced  "www.youtube-nocookie.com" "www.youtube.com" }}
 {{ if .IsNamedParams }}
 <div {{ if .Get "class" }}class="{{ .Get "class" }}"{{ else }}style="position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden;"{{ end }}>
-  <iframe src="//www.youtube.com/embed/{{ .Get "id" }}?{{ with .Get "autoplay" }}{{ if eq . "true" }}autoplay=1{{ end }}{{ end }}"
+  <iframe src="//{{ $ytHost }}/embed/{{ .Get "id" }}?{{ with .Get "autoplay" }}{{ if eq . "true" }}autoplay=1{{ end }}{{ end }}"
   {{ if not (.Get "class") }}style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" {{ end }}allowfullscreen frameborder="0" title="YouTube Video"></iframe>
 </div>{{ else }}
 <div {{ if len .Params | eq 2 }}class="{{ .Get 1 }}"{{ else }}style="position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden;"{{ end }}>
-  <iframe src="//www.youtube.com/embed/{{ .Get 0 }}" {{ if len .Params | eq 1 }}style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" {{ end }}allowfullscreen frameborder="0" title="YouTube Video"></iframe>
+  <iframe src="//{{ $ytHost }}/embed/{{ .Get 0 }}" {{ if len .Params | eq 1 }}style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" {{ end }}allowfullscreen frameborder="0" title="YouTube Video"></iframe>
  </div>
 {{ end }}
 {{- end -}}`},
index 2bdcb7441461e70a587d86689a186b6270b888b7..3a3ff4241a926d1ccb22328882d2496ffe6baebe 100755 (executable)
@@ -1,12 +1,13 @@
 {{- $pc := .Page.Site.PrivacyConfig.YouTube -}}
 {{- if not $pc.Disable -}}
+{{ $ytHost := cond $pc.PrivacyEnhanced  "www.youtube-nocookie.com" "www.youtube.com" }}
 {{ if .IsNamedParams }}
 <div {{ if .Get "class" }}class="{{ .Get "class" }}"{{ else }}style="position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden;"{{ end }}>
-  <iframe src="//www.youtube.com/embed/{{ .Get "id" }}?{{ with .Get "autoplay" }}{{ if eq . "true" }}autoplay=1{{ end }}{{ end }}"
+  <iframe src="//{{ $ytHost }}/embed/{{ .Get "id" }}?{{ with .Get "autoplay" }}{{ if eq . "true" }}autoplay=1{{ end }}{{ end }}"
   {{ if not (.Get "class") }}style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" {{ end }}allowfullscreen frameborder="0" title="YouTube Video"></iframe>
 </div>{{ else }}
 <div {{ if len .Params | eq 2 }}class="{{ .Get 1 }}"{{ else }}style="position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden;"{{ end }}>
-  <iframe src="//www.youtube.com/embed/{{ .Get 0 }}" {{ if len .Params | eq 1 }}style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" {{ end }}allowfullscreen frameborder="0" title="YouTube Video"></iframe>
+  <iframe src="//{{ $ytHost }}/embed/{{ .Get 0 }}" {{ if len .Params | eq 1 }}style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" {{ end }}allowfullscreen frameborder="0" title="YouTube Video"></iframe>
  </div>
 {{ end }}
 {{- end -}}
\ No newline at end of file