Skip to content

Commit 1191467

Browse files
jmooringbep
authored andcommitted
tpl/tplimpl: Deprecate twitter shortcode in favor of x shortcode
Closes #13214
1 parent 60c24fc commit 1191467

12 files changed

+317
-14
lines changed

‎config/allconfig/allconfig.go

+22
Original file line numberDiff line numberDiff line change
@@ -402,6 +402,28 @@ func (c *Config) CompileConfig(logger loggers.Logger) error {
402402
c.Pagination.Path = c.PaginatePath
403403
}
404404

405+
// Legacy privacy values.
406+
if c.Privacy.Twitter.Disable {
407+
hugo.Deprecate("site config key privacy.twitter.disable", "Use privacy.x.disable instead.", "v0.141.0")
408+
c.Privacy.X.Disable = c.Privacy.Twitter.Disable
409+
}
410+
411+
if c.Privacy.Twitter.EnableDNT {
412+
hugo.Deprecate("site config key privacy.twitter.enableDNT", "Use privacy.x.enableDNT instead.", "v0.141.0")
413+
c.Privacy.X.EnableDNT = c.Privacy.Twitter.EnableDNT
414+
}
415+
416+
if c.Privacy.Twitter.Simple {
417+
hugo.Deprecate("site config key privacy.twitter.simple", "Use privacy.x.simple instead.", "v0.141.0")
418+
c.Privacy.X.Simple = c.Privacy.Twitter.Simple
419+
}
420+
421+
// Legacy services values.
422+
if c.Services.Twitter.DisableInlineCSS {
423+
hugo.Deprecate("site config key services.twitter.disableInlineCSS", "Use services.x.disableInlineCSS instead.", "v0.141.0")
424+
c.Services.X.DisableInlineCSS = c.Services.Twitter.DisableInlineCSS
425+
}
426+
405427
c.C = &ConfigCompiled{
406428
Timeout: timeout,
407429
BaseURL: baseURL,

‎config/privacy/privacyConfig.go

+20-4
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@ type Config struct {
3030
Disqus Disqus
3131
GoogleAnalytics GoogleAnalytics
3232
Instagram Instagram
33-
Twitter Twitter
33+
Twitter Twitter // deprecated in favor of X in v0.141.0
3434
Vimeo Vimeo
3535
YouTube YouTube
36+
X X
3637
}
3738

3839
// Disqus holds the privacy configuration settings related to the Disqus template.
@@ -58,7 +59,8 @@ type Instagram struct {
5859
Simple bool
5960
}
6061

61-
// Twitter holds the privacy configuration settingsrelated to the Twitter shortcode.
62+
// Twitter holds the privacy configuration settings related to the Twitter shortcode.
63+
// Deprecated in favor of X in v0.141.0.
6264
type Twitter struct {
6365
Service `mapstructure:",squash"`
6466

@@ -70,7 +72,7 @@ type Twitter struct {
7072
Simple bool
7173
}
7274

73-
// Vimeo holds the privacy configuration settingsrelated to the Vimeo shortcode.
75+
// Vimeo holds the privacy configuration settings related to the Vimeo shortcode.
7476
type Vimeo struct {
7577
Service `mapstructure:",squash"`
7678

@@ -84,7 +86,7 @@ type Vimeo struct {
8486
Simple bool
8587
}
8688

87-
// YouTube holds the privacy configuration settingsrelated to the YouTube shortcode.
89+
// YouTube holds the privacy configuration settings related to the YouTube shortcode.
8890
type YouTube struct {
8991
Service `mapstructure:",squash"`
9092

@@ -94,6 +96,20 @@ type YouTube struct {
9496
PrivacyEnhanced bool
9597
}
9698

99+
// X holds the privacy configuration settings related to the X shortcode.
100+
type X struct {
101+
Service `mapstructure:",squash"`
102+
103+
// When set to true, the X post and its embedded page on your site are not
104+
// used for purposes that include personalized suggestions and personalized
105+
// ads.
106+
EnableDNT bool
107+
108+
// If simple mode is enabled, a static and no-JS version of the X post will
109+
// be built.
110+
Simple bool
111+
}
112+
97113
// DecodeConfig creates a privacy Config from a given Hugo configuration.
98114
func DecodeConfig(cfg config.Provider) (pc Config, err error) {
99115
if !cfg.IsSet(privacyConfigKey) {

‎config/privacy/privacyConfig_test.go

+6-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ simple = true
4040
disable = true
4141
enableDNT = true
4242
simple = true
43+
[privacy.x]
44+
disable = true
45+
enableDNT = true
46+
simple = true
4347
[privacy.vimeo]
4448
disable = true
4549
enableDNT = true
@@ -61,7 +65,8 @@ simple = true
6165
pc.GoogleAnalytics.RespectDoNotTrack, pc.Instagram.Disable,
6266
pc.Instagram.Simple, pc.Twitter.Disable, pc.Twitter.EnableDNT,
6367
pc.Twitter.Simple, pc.Vimeo.Disable, pc.Vimeo.EnableDNT, pc.Vimeo.Simple,
64-
pc.YouTube.PrivacyEnhanced, pc.YouTube.Disable,
68+
pc.YouTube.PrivacyEnhanced, pc.YouTube.Disable, pc.X.Disable, pc.X.EnableDNT,
69+
pc.X.Simple,
6570
}
6671

6772
c.Assert(got, qt.All(qt.Equals), true)

‎config/services/servicesConfig.go

+11-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ type Config struct {
3131
Disqus Disqus
3232
GoogleAnalytics GoogleAnalytics
3333
Instagram Instagram
34-
Twitter Twitter
34+
Twitter Twitter // deprecated in favor of X in v0.141.0
35+
X X
3536
RSS RSS
3637
}
3738

@@ -61,13 +62,22 @@ type Instagram struct {
6162
}
6263

6364
// Twitter holds the functional configuration settings related to the Twitter shortcodes.
65+
// Deprecated in favor of X in v0.141.0.
6466
type Twitter struct {
6567
// The Simple variant of Twitter is decorated with a basic set of inline styles.
6668
// This means that if you want to provide your own CSS, you want
6769
// to disable the inline CSS provided by Hugo.
6870
DisableInlineCSS bool
6971
}
7072

73+
// X holds the functional configuration settings related to the X shortcodes.
74+
type X struct {
75+
// The Simple variant of X is decorated with a basic set of inline styles.
76+
// This means that if you want to provide your own CSS, you want
77+
// to disable the inline CSS provided by Hugo.
78+
DisableInlineCSS bool
79+
}
80+
7181
// RSS holds the functional configuration settings related to the RSS feeds.
7282
type RSS struct {
7383
// Limit the number of pages.

‎config/services/servicesConfig_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ id = "ga_id"
3636
disableInlineCSS = true
3737
[services.twitter]
3838
disableInlineCSS = true
39+
[services.x]
40+
disableInlineCSS = true
3941
`
4042
cfg, err := config.FromConfigString(tomlConfig, "toml")
4143
c.Assert(err, qt.IsNil)

‎hugolib/testhelpers_test.go

+2
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,8 @@ respectDoNotTrack = true
262262
simple = true
263263
[privacy.twitter]
264264
enableDNT = true
265+
[privacy.x]
266+
enableDNT = true
265267
[privacy.vimeo]
266268
disable = false
267269
[privacy.youtube]

‎tpl/tplimpl/embedded/templates/shortcodes/twitter.html

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{{- 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." }}
12
{{- $pc := .Page.Site.Config.Privacy.Twitter -}}
23
{{- if not $pc.Disable -}}
34
{{- if $pc.Simple -}}

‎tpl/tplimpl/embedded/templates/shortcodes/twitter_simple.html

+11-8
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,37 @@
1-
{{- $pc := .Page.Site.Config.Privacy.Twitter -}}
2-
{{- $sc := .Page.Site.Config.Services.Twitter -}}
3-
{{- if not $pc.Disable -}}
1+
{{- 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." }}
2+
{{- if not site.Config.Privacy.Twitter.Disable -}}
43
{{- $id := or (.Get "id") "" -}}
54
{{- $user := or (.Get "user") "" -}}
65
{{- if and $id $user -}}
7-
{{- template "render-simple-tweet" (dict "id" $id "user" $user "dnt" $pc.EnableDNT "name" .Name "position" .Position) -}}
6+
{{- template "render-simple-tweet" (dict "id" $id "user" $user "ctx" .) -}}
87
{{- else -}}
98
{{- errorf "The %q shortcode requires two named parameters: user and id. See %s" .Name .Position -}}
109
{{- end -}}
1110
{{- end -}}
1211

1312
{{- define "render-simple-tweet" -}}
13+
{{- $dnt := site.Config.Privacy.Twitter.EnableDNT }}
1414
{{- $url := printf "https://twitter.com/%v/status/%v" .user .id -}}
15-
{{- $query := querify "url" $url "dnt" .dnt "omit_script" true -}}
15+
{{- $query := querify "url" $url "dnt" $dnt "omit_script" true -}}
1616
{{- $request := printf "https://publish.twitter.com/oembed?%s" $query -}}
1717
{{- with try (resources.GetRemote $request) -}}
1818
{{- with .Err -}}
1919
{{- errorf "%s" . -}}
2020
{{- else with .Value -}}
21+
{{- if not site.Config.Services.Twitter.DisableInlineCSS }}
22+
{{- template "__h_simple_twitter_css" (dict "ctx" $.ctx) }}
23+
{{- end }}
2124
{{- (. | transform.Unmarshal).html | safeHTML -}}
2225
{{- else -}}
23-
{{- warnidf "shortcode-twitter-simple-getremote" "The %q shortcode was unable to retrieve the remote data. See %s" .name .position -}}
26+
{{- warnidf "shortcode-twitter-simple-getremote" "The %q shortcode was unable to retrieve the remote data. See %s" .ctx.Name .ctx.Position -}}
2427
{{- end -}}
2528
{{- end -}}
2629
{{- end -}}
2730

2831
{{- define "__h_simple_twitter_css" -}}
29-
{{- if not (.Page.Scratch.Get "__h_simple_twitter_css") -}}
32+
{{- if not (.ctx.Page.Store.Get "__h_simple_twitter_css") -}}
3033
{{/* Only include once */}}
31-
{{- .Page.Scratch.Set "__h_simple_twitter_css" true -}}
34+
{{- .ctx.Page.Store.Set "__h_simple_twitter_css" true -}}
3235
<style type="text/css">
3336
.twitter-tweet {
3437
font:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{{- $pc := .Page.Site.Config.Privacy.X -}}
2+
{{- if not $pc.Disable -}}
3+
{{- if $pc.Simple -}}
4+
{{- template "_internal/shortcodes/x_simple.html" . -}}
5+
{{- else -}}
6+
{{- $id := or (.Get "id") "" -}}
7+
{{- $user := or (.Get "user") "" -}}
8+
{{- if and $id $user -}}
9+
{{- template "render-x" (dict "id" $id "user" $user "dnt" $pc.EnableDNT "name" .Name "position" .Position) -}}
10+
{{- else -}}
11+
{{- errorf "The %q shortcode requires two named parameters: user and id. See %s" .Name .Position -}}
12+
{{- end -}}
13+
{{- end -}}
14+
{{- end -}}
15+
16+
{{- define "render-x" -}}
17+
{{- $url := printf "https://x.com/%v/status/%v" .user .id -}}
18+
{{- $query := querify "url" $url "dnt" .dnt -}}
19+
{{- $request := printf "https://publish.x.com/oembed?%s" $query -}}
20+
{{- with try (resources.GetRemote $request) -}}
21+
{{- with .Err -}}
22+
{{- errorf "%s" . -}}
23+
{{- else with .Value -}}
24+
{{- (. | transform.Unmarshal).html | safeHTML -}}
25+
{{- else -}}
26+
{{- warnidf "shortcode-x-getremote" "The %q shortcode was unable to retrieve the remote data. See %s" .name .position -}}
27+
{{- end -}}
28+
{{- end -}}
29+
{{- end -}}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{{- if not site.Config.Privacy.X.Disable -}}
2+
{{- $id := or (.Get "id") "" -}}
3+
{{- $user := or (.Get "user") "" -}}
4+
{{- if and $id $user -}}
5+
{{- template "render-simple-x" (dict "id" $id "user" $user "ctx" .) -}}
6+
{{- else -}}
7+
{{- errorf "The %q shortcode requires two named parameters: user and id. See %s" .Name .Position -}}
8+
{{- end -}}
9+
{{- end -}}
10+
11+
{{- define "render-simple-x" -}}
12+
{{- $dnt := site.Config.Privacy.X.EnableDNT }}
13+
{{- $url := printf "https://x.com/%v/status/%v" .user .id -}}
14+
{{- $query := querify "url" $url "dnt" $dnt "omit_script" true -}}
15+
{{- $request := printf "https://publish.x.com/oembed?%s" $query -}}
16+
{{- with try (resources.GetRemote $request) -}}
17+
{{- with .Err -}}
18+
{{- errorf "%s" . -}}
19+
{{- else with .Value -}}
20+
{{- if not site.Config.Services.X.DisableInlineCSS }}
21+
{{- template "__h_simple_x_css" (dict "ctx" $.ctx) }}
22+
{{- end }}
23+
{{- (. | transform.Unmarshal).html | safeHTML -}}
24+
{{- else -}}
25+
{{- warnidf "shortcode-x-simple-getremote" "The %q shortcode was unable to retrieve the remote data. See %s" .ctx.Name .ctx.Position -}}
26+
{{- end -}}
27+
{{- end -}}
28+
{{- end -}}
29+
30+
{{- define "__h_simple_x_css" -}}
31+
{{- if not (.ctx.Page.Store.Get "__h_simple_x_css") -}}
32+
{{/* Only include once */}}
33+
{{- .ctx.Page.Store.Set "__h_simple_x_css" true -}}
34+
<style type="text/css">
35+
.twitter-tweet {
36+
font:
37+
14px/1.45 -apple-system,
38+
BlinkMacSystemFont,
39+
"Segoe UI",
40+
Roboto,
41+
Oxygen-Sans,
42+
Ubuntu,
43+
Cantarell,
44+
"Helvetica Neue",
45+
sans-serif;
46+
border-left: 4px solid #2b7bb9;
47+
padding-left: 1.5em;
48+
color: #555;
49+
}
50+
.twitter-tweet a {
51+
color: #2b7bb9;
52+
text-decoration: none;
53+
}
54+
blockquote.twitter-tweet a:hover,
55+
blockquote.twitter-tweet a:focus {
56+
text-decoration: underline;
57+
}
58+
</style>
59+
{{- end -}}
60+
{{- end -}}

‎tpl/tplimpl/template.go

+2
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ const (
6666
// We need this to identify position in templates with base templates applied.
6767
var identifiersRe = regexp.MustCompile(`at \<(.*?)(\.{3})?\>:`)
6868

69+
// The tweet and twitter shortcodes were deprecated in favor of the x shortcode
70+
// in v0.141.0. We can remove these aliases in v0.155.0 or later.
6971
var embeddedTemplatesAliases = map[string][]string{
7072
"shortcodes/twitter.html": {"shortcodes/tweet.html"},
7173
}

0 commit comments

Comments
 (0)