]> git.maquefel.me Git - brevno-suite/hugo/commitdiff
tpl/tplimpl: Deprecate twitter shortcode in favor of x shortcode
authorJoe Mooring <joe.mooring@veriphor.com>
Sun, 5 Jan 2025 13:31:58 +0000 (05:31 -0800)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 16 Jan 2025 09:33:34 +0000 (10:33 +0100)
Closes #13214

12 files changed:
config/allconfig/allconfig.go
config/privacy/privacyConfig.go
config/privacy/privacyConfig_test.go
config/services/servicesConfig.go
config/services/servicesConfig_test.go
hugolib/testhelpers_test.go
tpl/tplimpl/embedded/templates/shortcodes/twitter.html
tpl/tplimpl/embedded/templates/shortcodes/twitter_simple.html
tpl/tplimpl/embedded/templates/shortcodes/x.html [new file with mode: 0644]
tpl/tplimpl/embedded/templates/shortcodes/x_simple.html [new file with mode: 0644]
tpl/tplimpl/template.go
tpl/tplimpl/tplimpl_integration_test.go

index ceb6304802656a2aea4196159b6ea4e5afa89d3c..96d10b3bdd76358b01995961d390b33b0d0fd312 100644 (file)
@@ -402,6 +402,28 @@ func (c *Config) CompileConfig(logger loggers.Logger) error {
                c.Pagination.Path = c.PaginatePath
        }
 
+       // Legacy privacy values.
+       if c.Privacy.Twitter.Disable {
+               hugo.Deprecate("site config key privacy.twitter.disable", "Use privacy.x.disable instead.", "v0.141.0")
+               c.Privacy.X.Disable = c.Privacy.Twitter.Disable
+       }
+
+       if c.Privacy.Twitter.EnableDNT {
+               hugo.Deprecate("site config key privacy.twitter.enableDNT", "Use privacy.x.enableDNT instead.", "v0.141.0")
+               c.Privacy.X.EnableDNT = c.Privacy.Twitter.EnableDNT
+       }
+
+       if c.Privacy.Twitter.Simple {
+               hugo.Deprecate("site config key privacy.twitter.simple", "Use privacy.x.simple instead.", "v0.141.0")
+               c.Privacy.X.Simple = c.Privacy.Twitter.Simple
+       }
+
+       // Legacy services values.
+       if c.Services.Twitter.DisableInlineCSS {
+               hugo.Deprecate("site config key services.twitter.disableInlineCSS", "Use services.x.disableInlineCSS instead.", "v0.141.0")
+               c.Services.X.DisableInlineCSS = c.Services.Twitter.DisableInlineCSS
+       }
+
        c.C = &ConfigCompiled{
                Timeout:             timeout,
                BaseURL:             baseURL,
index 8880b1036d6865ff4a6777f4672481a8dde9be5a..900f73540b6a15fdb88c0f969756f5090760734e 100644 (file)
@@ -30,9 +30,10 @@ type Config struct {
        Disqus          Disqus
        GoogleAnalytics GoogleAnalytics
        Instagram       Instagram
-       Twitter         Twitter
+       Twitter         Twitter // deprecated in favor of X in v0.141.0
        Vimeo           Vimeo
        YouTube         YouTube
+       X               X
 }
 
 // Disqus holds the privacy configuration settings related to the Disqus template.
@@ -58,7 +59,8 @@ type Instagram struct {
        Simple bool
 }
 
-// Twitter holds the privacy configuration settingsrelated to the Twitter shortcode.
+// Twitter holds the privacy configuration settings related to the Twitter shortcode.
+// Deprecated in favor of X in v0.141.0.
 type Twitter struct {
        Service `mapstructure:",squash"`
 
@@ -70,7 +72,7 @@ type Twitter struct {
        Simple bool
 }
 
-// Vimeo holds the privacy configuration settingsrelated to the Vimeo shortcode.
+// Vimeo holds the privacy configuration settings related to the Vimeo shortcode.
 type Vimeo struct {
        Service `mapstructure:",squash"`
 
@@ -84,7 +86,7 @@ type Vimeo struct {
        Simple bool
 }
 
-// YouTube holds the privacy configuration settingsrelated to the YouTube shortcode.
+// YouTube holds the privacy configuration settings related to the YouTube shortcode.
 type YouTube struct {
        Service `mapstructure:",squash"`
 
@@ -94,6 +96,20 @@ type YouTube struct {
        PrivacyEnhanced bool
 }
 
+// X holds the privacy configuration settings related to the X shortcode.
+type X struct {
+       Service `mapstructure:",squash"`
+
+       // When set to true, the X post and its embedded page on your site are not
+       // used for purposes that include personalized suggestions and personalized
+       // ads.
+       EnableDNT bool
+
+       // If simple mode is enabled, a static and no-JS version of the X post will
+       // be built.
+       Simple bool
+}
+
 // DecodeConfig creates a privacy Config from a given Hugo configuration.
 func DecodeConfig(cfg config.Provider) (pc Config, err error) {
        if !cfg.IsSet(privacyConfigKey) {
index bff627f48e10c7d37594599a49af6512e7111b55..6cde91165ef782aaaa261ead3c01b57d7f031f54 100644 (file)
@@ -40,6 +40,10 @@ simple = true
 disable = true
 enableDNT = true
 simple = true
+[privacy.x]
+disable = true
+enableDNT = true
+simple = true
 [privacy.vimeo]
 disable = true
 enableDNT = true
@@ -61,7 +65,8 @@ simple = true
                pc.GoogleAnalytics.RespectDoNotTrack, pc.Instagram.Disable,
                pc.Instagram.Simple, pc.Twitter.Disable, pc.Twitter.EnableDNT,
                pc.Twitter.Simple, pc.Vimeo.Disable, pc.Vimeo.EnableDNT, pc.Vimeo.Simple,
-               pc.YouTube.PrivacyEnhanced, pc.YouTube.Disable,
+               pc.YouTube.PrivacyEnhanced, pc.YouTube.Disable, pc.X.Disable, pc.X.EnableDNT,
+               pc.X.Simple,
        }
 
        c.Assert(got, qt.All(qt.Equals), true)
index 1b4317e92f578e952ec5baaf003ff2d5feb8e38d..f302244d4aa923eb08995b3b3e60893bfb2b6545 100644 (file)
@@ -31,7 +31,8 @@ type Config struct {
        Disqus          Disqus
        GoogleAnalytics GoogleAnalytics
        Instagram       Instagram
-       Twitter         Twitter
+       Twitter         Twitter // deprecated in favor of X in v0.141.0
+       X               X
        RSS             RSS
 }
 
@@ -61,6 +62,7 @@ type Instagram struct {
 }
 
 // Twitter holds the functional configuration settings related to the Twitter shortcodes.
+// Deprecated in favor of X in v0.141.0.
 type Twitter struct {
        // The Simple variant of Twitter is decorated with a basic set of inline styles.
        // This means that if you want to provide your own CSS, you want
@@ -68,6 +70,14 @@ type Twitter struct {
        DisableInlineCSS bool
 }
 
+// X holds the functional configuration settings related to the X shortcodes.
+type X struct {
+       // The Simple variant of X is decorated with a basic set of inline styles.
+       // This means that if you want to provide your own CSS, you want
+       // to disable the inline CSS provided by Hugo.
+       DisableInlineCSS bool
+}
+
 // RSS holds the functional configuration settings related to the RSS feeds.
 type RSS struct {
        // Limit the number of pages.
index 12b042a5a97039592ca9c18646c81f1afde111d2..952a7fe1c7b660f76f24963923c8ec180fbc119f 100644 (file)
@@ -36,6 +36,8 @@ id = "ga_id"
 disableInlineCSS = true
 [services.twitter]
 disableInlineCSS = true
+[services.x]
+disableInlineCSS = true
 `
        cfg, err := config.FromConfigString(tomlConfig, "toml")
        c.Assert(err, qt.IsNil)
index 5c4e07498ea610f7e715ee06750ecfa58f71dcac..9fdb63238484c321d116e6a58f070c3b539d0962 100644 (file)
@@ -262,6 +262,8 @@ respectDoNotTrack = true
 simple = true
 [privacy.twitter]
 enableDNT = true
+[privacy.x]
+enableDNT = true
 [privacy.vimeo]
 disable = false
 [privacy.youtube]
index b88cf7ce0ea7122a102194803d94a3af2682e25f..7a4adea5d34fcd8b543bfdbc3cde392bddbb3560 100644 (file)
@@ -1,3 +1,4 @@
+{{- warnf "The \"twitter\", \"tweet\", and \"twitter_simple\" shortcodes were deprecated in v0.142.0 and will be removed in a future release. Please use the \"x\" shortcode instead." }}
 {{- $pc := .Page.Site.Config.Privacy.Twitter -}}
 {{- if not $pc.Disable -}}
   {{- if $pc.Simple -}}
index 0fc8613b9387c7a813e4b4e63ee3c600f11e1dd1..7251f64e31fcc5bf058d7092e3b8e6cf36ab0bc2 100644 (file)
@@ -1,34 +1,37 @@
-{{- $pc := .Page.Site.Config.Privacy.Twitter -}}
-{{- $sc := .Page.Site.Config.Services.Twitter -}}
-{{- if not $pc.Disable -}}
+{{- warnf "The \"twitter\", \"tweet\", and \"twitter_simple\" shortcodes were deprecated in v0.142.0 and will be removed in a future release. Please use the \"x\" shortcode instead." }}
+{{- if not site.Config.Privacy.Twitter.Disable -}}
   {{- $id := or (.Get "id") "" -}}
   {{- $user := or (.Get "user") "" -}}
   {{- if and $id $user -}}
-    {{- template "render-simple-tweet" (dict "id" $id "user" $user "dnt" $pc.EnableDNT "name" .Name "position" .Position) -}}
+    {{- template "render-simple-tweet" (dict "id" $id "user" $user "ctx" .) -}}
   {{- else -}}
     {{- errorf "The %q shortcode requires two named parameters: user and id. See %s" .Name .Position -}}
   {{- end -}}
 {{- end -}}
 
 {{- define "render-simple-tweet" -}}
+  {{- $dnt := site.Config.Privacy.Twitter.EnableDNT }}
   {{- $url := printf "https://twitter.com/%v/status/%v" .user .id -}}
-  {{- $query := querify "url" $url "dnt" .dnt "omit_script" true -}}
+  {{- $query := querify "url" $url "dnt" $dnt "omit_script" true -}}
   {{- $request := printf "https://publish.twitter.com/oembed?%s" $query -}}
   {{- with try (resources.GetRemote $request) -}}
     {{- with .Err -}}
       {{- errorf "%s" . -}}
     {{- else with .Value -}}
+      {{- if not site.Config.Services.Twitter.DisableInlineCSS }}
+        {{- template "__h_simple_twitter_css" (dict "ctx" $.ctx) }}
+      {{- end }}
       {{- (. | transform.Unmarshal).html | safeHTML -}}
     {{- else -}}
-      {{- warnidf "shortcode-twitter-simple-getremote" "The %q shortcode was unable to retrieve the remote data. See %s" .name .position -}}
+      {{- warnidf "shortcode-twitter-simple-getremote" "The %q shortcode was unable to retrieve the remote data. See %s" .ctx.Name .ctx.Position -}}
     {{- end -}}
   {{- end -}}
 {{- end -}}
 
 {{- define "__h_simple_twitter_css" -}}
-  {{- if not (.Page.Scratch.Get "__h_simple_twitter_css") -}}
+  {{- if not (.ctx.Page.Store.Get "__h_simple_twitter_css") -}}
     {{/* Only include once */}}
-    {{- .Page.Scratch.Set "__h_simple_twitter_css" true -}}
+    {{- .ctx.Page.Store.Set "__h_simple_twitter_css" true -}}
     <style type="text/css">
       .twitter-tweet {
         font:
diff --git a/tpl/tplimpl/embedded/templates/shortcodes/x.html b/tpl/tplimpl/embedded/templates/shortcodes/x.html
new file mode 100644 (file)
index 0000000..78c0ac0
--- /dev/null
@@ -0,0 +1,29 @@
+{{- $pc := .Page.Site.Config.Privacy.X -}}
+{{- if not $pc.Disable -}}
+  {{- if $pc.Simple -}}
+    {{- template "_internal/shortcodes/x_simple.html" . -}}
+  {{- else -}}
+    {{- $id := or (.Get "id") "" -}}
+    {{- $user := or (.Get "user") "" -}}
+    {{- if and $id $user -}}
+      {{- template "render-x" (dict "id" $id "user" $user "dnt" $pc.EnableDNT "name" .Name "position" .Position) -}}
+    {{- else -}}
+      {{- errorf "The %q shortcode requires two named parameters: user and id. See %s" .Name .Position -}}
+    {{- end -}}
+  {{- end -}}
+{{- end -}}
+
+{{- define "render-x" -}}
+  {{- $url := printf "https://x.com/%v/status/%v" .user .id -}}
+  {{- $query := querify "url" $url "dnt" .dnt -}}
+  {{- $request := printf "https://publish.x.com/oembed?%s" $query -}}
+  {{- with try (resources.GetRemote $request) -}}
+    {{- with .Err -}}
+      {{- errorf "%s" . -}}
+    {{- else with .Value -}}
+      {{- (. | transform.Unmarshal).html | safeHTML -}}
+    {{- else -}}
+    {{- warnidf "shortcode-x-getremote" "The %q shortcode was unable to retrieve the remote data. See %s" .name .position -}}
+    {{- end -}}
+  {{- end -}}
+{{- end -}}
diff --git a/tpl/tplimpl/embedded/templates/shortcodes/x_simple.html b/tpl/tplimpl/embedded/templates/shortcodes/x_simple.html
new file mode 100644 (file)
index 0000000..661ed77
--- /dev/null
@@ -0,0 +1,60 @@
+{{- if not site.Config.Privacy.X.Disable -}}
+  {{- $id := or (.Get "id") "" -}}
+  {{- $user := or (.Get "user") "" -}}
+  {{- if and $id $user -}}
+    {{- template "render-simple-x" (dict "id" $id "user" $user "ctx" .) -}}
+  {{- else -}}
+    {{- errorf "The %q shortcode requires two named parameters: user and id. See %s" .Name .Position -}}
+  {{- end -}}
+{{- end -}}
+
+{{- define "render-simple-x" -}}
+  {{- $dnt := site.Config.Privacy.X.EnableDNT }}
+  {{- $url := printf "https://x.com/%v/status/%v" .user .id -}}
+  {{- $query := querify "url" $url "dnt" $dnt "omit_script" true -}}
+  {{- $request := printf "https://publish.x.com/oembed?%s" $query -}}
+  {{- with try (resources.GetRemote $request) -}}
+    {{- with .Err -}}
+      {{- errorf "%s" . -}}
+    {{- else with .Value -}}
+      {{- if not site.Config.Services.X.DisableInlineCSS }}
+        {{- template "__h_simple_x_css" (dict "ctx" $.ctx) }}
+      {{- end }}
+      {{- (. | transform.Unmarshal).html | safeHTML -}}
+    {{- else -}}
+      {{- warnidf "shortcode-x-simple-getremote" "The %q shortcode was unable to retrieve the remote data. See %s" .ctx.Name .ctx.Position -}}
+    {{- end -}}
+  {{- end -}}
+{{- end -}}
+
+{{- define "__h_simple_x_css" -}}
+  {{- if not (.ctx.Page.Store.Get "__h_simple_x_css") -}}
+    {{/* Only include once */}}
+    {{- .ctx.Page.Store.Set "__h_simple_x_css" true -}}
+    <style type="text/css">
+      .twitter-tweet {
+        font:
+          14px/1.45 -apple-system,
+          BlinkMacSystemFont,
+          "Segoe UI",
+          Roboto,
+          Oxygen-Sans,
+          Ubuntu,
+          Cantarell,
+          "Helvetica Neue",
+          sans-serif;
+        border-left: 4px solid #2b7bb9;
+        padding-left: 1.5em;
+        color: #555;
+      }
+      .twitter-tweet a {
+        color: #2b7bb9;
+        text-decoration: none;
+      }
+      blockquote.twitter-tweet a:hover,
+      blockquote.twitter-tweet a:focus {
+        text-decoration: underline;
+      }
+    </style>
+  {{- end -}}
+{{- end -}}
index 0a593593b88e0a5eb908fc95ec4a44db0c6ca589..0ea7117a3acc6e02743445a42ea57dab80435134 100644 (file)
@@ -66,6 +66,8 @@ const (
 // We need this to identify position in templates with base templates applied.
 var identifiersRe = regexp.MustCompile(`at \<(.*?)(\.{3})?\>:`)
 
+// The tweet and twitter shortcodes were deprecated in favor of the x shortcode
+// in v0.141.0. We can remove these aliases in v0.155.0 or later.
 var embeddedTemplatesAliases = map[string][]string{
        "shortcodes/twitter.html": {"shortcodes/tweet.html"},
 }
index 8088a0551c101ee92a5e834aecebe4c973447517..6ccf27f80e95380f8f65a0ddbd402e43860d995e 100644 (file)
@@ -734,3 +734,154 @@ https://gohugo.io"
                `<img src="/qr_472aab57ec7a6e3d.png" width="132" height="132">`,
        )
 }
+
+// Issue 13214
+// We deprecated the twitter, tweet (alias of twitter), and twitter_simple
+// shortcodes in v0.141.0, replacing them with x and x_simple.
+func TestXShortcodes(t *testing.T) {
+       t.Parallel()
+
+       files := `
+-- hugo.toml --
+disableKinds = ['home','rss','section','sitemap','taxonomy','term']
+#CONFIG
+-- content/p1.md --
+---
+title: p1
+---
+{{< x user="SanDiegoZoo" id="1453110110599868418" >}}
+-- content/p2.md --
+---
+title: p2
+---
+{{< twitter user="SanDiegoZoo" id="1453110110599868418" >}}
+-- content/p3.md --
+---
+title: p3
+---
+{{< tweet user="SanDiegoZoo" id="1453110110599868418" >}}
+-- content/p4.md --
+---
+title: p4
+---
+{{< x_simple user="SanDiegoZoo" id="1453110110599868418" >}}
+-- content/p5.md --
+---
+title: p5
+---
+{{< twitter_simple user="SanDiegoZoo" id="1453110110599868418" >}}
+-- layouts/_default/single.html --
+{{ .Content | strings.TrimSpace | safeHTML }}
+--
+`
+
+       b := hugolib.Test(t, files)
+
+       // Test x, twitter, and tweet shortcodes
+       want := `<blockquote class="twitter-tweet"><p lang="en" dir="ltr">Owl bet you&#39;ll lose this staring contest 🦉 <a href="https://t.co/eJh4f2zncC">pic.twitter.com/eJh4f2zncC</a></p>&mdash; San Diego Zoo Wildlife Alliance (@sandiegozoo) <a href="https://twitter.com/sandiegozoo/status/1453110110599868418?ref_src=twsrc%5Etfw">October 26, 2021</a></blockquote>
+       <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>`
+       b.AssertFileContent("public/p1/index.html", want)
+
+       htmlFiles := []string{
+               b.FileContent("public/p1/index.html"),
+               b.FileContent("public/p2/index.html"),
+               b.FileContent("public/p3/index.html"),
+       }
+       if !allElementsEqual(htmlFiles) {
+               t.Error("A: expected all files to be equal")
+       }
+
+       // Test x_simple and twitter_simple shortcodes
+       wantSimple := "<style type=\"text/css\">\n      .twitter-tweet {\n        font:\n          14px/1.45 -apple-system,\n          BlinkMacSystemFont,\n          \"Segoe UI\",\n          Roboto,\n          Oxygen-Sans,\n          Ubuntu,\n          Cantarell,\n          \"Helvetica Neue\",\n          sans-serif;\n        border-left: 4px solid #2b7bb9;\n        padding-left: 1.5em;\n        color: #555;\n      }\n      .twitter-tweet a {\n        color: #2b7bb9;\n        text-decoration: none;\n      }\n      blockquote.twitter-tweet a:hover,\n      blockquote.twitter-tweet a:focus {\n        text-decoration: underline;\n      }\n    </style><blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Owl bet you&#39;ll lose this staring contest 🦉 <a href=\"https://t.co/eJh4f2zncC\">pic.twitter.com/eJh4f2zncC</a></p>&mdash; San Diego Zoo Wildlife Alliance (@sandiegozoo) <a href=\"https://twitter.com/sandiegozoo/status/1453110110599868418?ref_src=twsrc%5Etfw\">October 26, 2021</a></blockquote>\n--"
+       b.AssertFileContent("public/p4/index.html", wantSimple)
+
+       htmlFiles = []string{
+               b.FileContent("public/p4/index.html"),
+               b.FileContent("public/p5/index.html"),
+       }
+       if !allElementsEqual(htmlFiles) {
+               t.Error("B: expected all files to be equal")
+       }
+
+       filesOriginal := files
+
+       // Test privacy.twitter.simple
+       files = strings.ReplaceAll(filesOriginal, "#CONFIG", "privacy.twitter.simple=true")
+       b = hugolib.Test(t, files)
+       htmlFiles = []string{
+               b.FileContent("public/p2/index.html"),
+               b.FileContent("public/p3/index.html"),
+               b.FileContent("public/p5/index.html"),
+       }
+       if !allElementsEqual(htmlFiles) {
+               t.Error("C: expected all files to be equal")
+       }
+
+       // Test privacy.x.simple
+       files = strings.ReplaceAll(filesOriginal, "#CONFIG", "privacy.x.simple=true")
+       b = hugolib.Test(t, files)
+       htmlFiles = []string{
+               b.FileContent("public/p1/index.html"),
+               b.FileContent("public/p4/index.html"),
+               b.FileContent("public/p4/index.html"),
+       }
+       if !allElementsEqual(htmlFiles) {
+               t.Error("D: expected all files to be equal")
+       }
+       htmlFiles = []string{
+               b.FileContent("public/p2/index.html"),
+               b.FileContent("public/p3/index.html"),
+       }
+       if !allElementsEqual(htmlFiles) {
+               t.Error("E: expected all files to be equal")
+       }
+
+       // Test privacy.twitter.disable
+       files = strings.ReplaceAll(filesOriginal, "#CONFIG", "privacy.twitter.disable = true")
+       b = hugolib.Test(t, files)
+       b.AssertFileContent("public/p1/index.html", "")
+       htmlFiles = []string{
+               b.FileContent("public/p1/index.html"),
+               b.FileContent("public/p2/index.html"),
+               b.FileContent("public/p3/index.html"),
+               b.FileContent("public/p4/index.html"),
+               b.FileContent("public/p4/index.html"),
+       }
+       if !allElementsEqual(htmlFiles) {
+               t.Error("F: expected all files to be equal")
+       }
+
+       // Test privacy.x.disable
+       files = strings.ReplaceAll(filesOriginal, "#CONFIG", "privacy.x.disable = true")
+       b = hugolib.Test(t, files)
+       b.AssertFileContent("public/p1/index.html", "")
+       htmlFiles = []string{
+               b.FileContent("public/p1/index.html"),
+               b.FileContent("public/p4/index.html"),
+       }
+       if !allElementsEqual(htmlFiles) {
+               t.Error("G: expected all files to be equal")
+       }
+       htmlFiles = []string{
+               b.FileContent("public/p2/index.html"),
+               b.FileContent("public/p3/index.html"),
+       }
+       if !allElementsEqual(htmlFiles) {
+               t.Error("F: expected all files to be equal")
+       }
+}
+
+// allElementsEqual reports whether all elements in the given string slice are
+// equal.
+func allElementsEqual(slice []string) bool {
+       if len(slice) == 0 {
+               return true
+       }
+       first := slice[0]
+       for _, v := range slice[1:] {
+               if v != first {
+                       return false
+               }
+       }
+       return true
+}