2017-07-11 18:03:52 +02:00
|
|
|
package plugins
|
|
|
|
|
|
|
|
import (
|
2017-08-09 15:29:13 +02:00
|
|
|
"bytes"
|
2017-07-11 18:03:52 +02:00
|
|
|
"fmt"
|
2017-08-09 15:29:13 +02:00
|
|
|
"text/template"
|
2017-07-11 18:03:52 +02:00
|
|
|
|
2022-01-29 20:17:23 +01:00
|
|
|
"github.com/danog/gojekyll/utils"
|
|
|
|
"github.com/danog/liquid"
|
|
|
|
"github.com/danog/liquid/render"
|
|
|
|
"github.com/danog/liquid/tags"
|
2017-08-09 15:29:13 +02:00
|
|
|
"github.com/tdewolff/minify"
|
|
|
|
"github.com/tdewolff/minify/html"
|
2017-07-11 18:03:52 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type jekyllSEOTagPlugin struct {
|
|
|
|
plugin
|
|
|
|
site Site
|
|
|
|
tpl *liquid.Template
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
register("jekyll-seo-tag", &jekyllSEOTagPlugin{})
|
|
|
|
}
|
|
|
|
|
2017-09-02 19:57:28 +02:00
|
|
|
func (p *jekyllSEOTagPlugin) AfterInitSite(s Site) error {
|
2017-07-11 18:03:52 +02:00
|
|
|
p.site = s
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *jekyllSEOTagPlugin) ConfigureTemplateEngine(e *liquid.Engine) error {
|
|
|
|
e.RegisterTag("seo", p.seoTag)
|
|
|
|
tpl, err := e.ParseTemplate([]byte(seoTagTemplateSource))
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
p.tpl = tpl
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-08-09 15:29:13 +02:00
|
|
|
func (p *jekyllSEOTagPlugin) seoTag(ctx render.Context) (string, error) {
|
|
|
|
buf := new(bytes.Buffer)
|
|
|
|
e := seoTagTemplate.Execute(buf, seoTag{p.tpl, ctx})
|
|
|
|
return buf.String(), e
|
|
|
|
}
|
|
|
|
|
|
|
|
type seoTag struct {
|
|
|
|
tpl *liquid.Template
|
|
|
|
ctx render.Context
|
|
|
|
}
|
|
|
|
|
2017-07-12 01:36:47 +02:00
|
|
|
var seoSiteFields = []string{"url", "twitter", "facebook", "logo", "social", "google_site_verification", "lang"}
|
2017-07-11 18:03:52 +02:00
|
|
|
var seoPageOrSiteFields = []string{"author", "description", "image", "author", "lang"}
|
|
|
|
|
2017-08-09 15:29:13 +02:00
|
|
|
func (p seoTag) TagBody() (string, error) {
|
2017-07-11 18:03:52 +02:00
|
|
|
var (
|
2017-08-09 15:29:13 +02:00
|
|
|
ctx = p.ctx
|
2017-08-27 19:56:01 +02:00
|
|
|
site = liquid.FromDrop(ctx.Get("site")).(tags.IterationKeyedMap)
|
2017-08-16 21:57:14 +02:00
|
|
|
page = liquid.FromDrop(ctx.Get("page")).(tags.IterationKeyedMap)
|
2017-07-11 18:03:52 +02:00
|
|
|
pageTitle = page["title"]
|
|
|
|
siteTitle = site["title"]
|
|
|
|
canonicalURL = fmt.Sprintf("%s%s", site["url"], page["url"])
|
|
|
|
)
|
2017-07-12 01:36:47 +02:00
|
|
|
if siteTitle == nil {
|
2017-07-11 18:03:52 +02:00
|
|
|
siteTitle = site["name"]
|
|
|
|
}
|
|
|
|
seoTag := map[string]interface{}{
|
|
|
|
"title?": true,
|
|
|
|
"title": siteTitle,
|
|
|
|
// the following are not doc'ed, but evident from inspection:
|
|
|
|
// FIXME canonical w|w/out site.url and site.prefix
|
|
|
|
"canonical_url": canonicalURL,
|
|
|
|
"page_lang": "en_US",
|
|
|
|
"page_title": pageTitle,
|
2017-07-12 01:36:47 +02:00
|
|
|
"site_title": siteTitle,
|
2017-07-11 18:03:52 +02:00
|
|
|
}
|
|
|
|
copyFields(seoTag, site, append(seoSiteFields, seoPageOrSiteFields...))
|
|
|
|
copyFields(seoTag, page, seoPageOrSiteFields)
|
2017-07-12 01:36:47 +02:00
|
|
|
// seoTag["description"] = page["excerpt"] FIXME appears to behave something like following, but excerpt should not be processed
|
2017-07-11 18:03:52 +02:00
|
|
|
if pageTitle != nil && siteTitle != nil && pageTitle != siteTitle {
|
|
|
|
seoTag["title"] = fmt.Sprintf("%s | %s", pageTitle, siteTitle)
|
|
|
|
}
|
|
|
|
if author, ok := seoTag["author"].(string); ok {
|
|
|
|
if data, _ := utils.FollowDots(site, []string{"data", "authors", author}); data != nil {
|
|
|
|
seoTag["author"] = data
|
|
|
|
}
|
|
|
|
}
|
|
|
|
seoTag["json_ld"] = makeJSONLD(seoTag)
|
|
|
|
bindings := map[string]interface{}{
|
|
|
|
"page": page,
|
|
|
|
"site": site,
|
|
|
|
"seo_tag": seoTag,
|
|
|
|
}
|
|
|
|
b, err := p.tpl.Render(bindings)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
2017-08-09 15:29:13 +02:00
|
|
|
m := minify.New()
|
|
|
|
m.AddFunc("text/html", html.Minify)
|
|
|
|
min := bytes.NewBuffer(make([]byte, 0, len(b)))
|
|
|
|
if err := m.Minify("text/html", min, bytes.NewBuffer(b)); err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return min.String(), nil
|
2017-07-11 18:03:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func copyFields(to, from map[string]interface{}, fields []string) {
|
|
|
|
for _, name := range fields {
|
|
|
|
if value := from[name]; value != nil {
|
|
|
|
to[name] = value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func makeJSONLD(seoTag map[string]interface{}) interface{} {
|
2017-07-12 01:36:47 +02:00
|
|
|
jsonLD := map[string]interface{}{
|
|
|
|
// TODO dateModified, datePublished, publisher, mainEntityOfPage
|
|
|
|
"@context": "http://schema.org",
|
|
|
|
"@type": "WebPage", // FIXME this is BlogPosting for a blog page
|
|
|
|
"headline": seoTag["page_title"],
|
|
|
|
"description": seoTag["description"],
|
|
|
|
"url": seoTag["canonical_url"],
|
|
|
|
}
|
2017-07-11 18:03:52 +02:00
|
|
|
if author := seoTag["author"]; author != nil {
|
|
|
|
if m, ok := author.(map[string]interface{}); ok {
|
|
|
|
author = m["name"]
|
|
|
|
}
|
2017-07-12 01:36:47 +02:00
|
|
|
jsonLD["author"] = map[string]interface{}{
|
2017-07-11 18:03:52 +02:00
|
|
|
"@type": "Person",
|
|
|
|
"name": author,
|
|
|
|
}
|
|
|
|
}
|
2017-07-12 01:36:47 +02:00
|
|
|
return jsonLD
|
2017-07-11 18:03:52 +02:00
|
|
|
}
|
|
|
|
|
2017-08-09 15:29:13 +02:00
|
|
|
// This is a separate template so it isn't minimized away.
|
|
|
|
var seoTagTemplate = template.Must(template.New("SEO tag").Parse(
|
|
|
|
`<!-- Begin Jekyll SEO tag -->
|
|
|
|
{{.TagBody}}
|
|
|
|
<!-- End Jekyll SEO tag -->`))
|
|
|
|
|
2017-07-11 18:03:52 +02:00
|
|
|
// Taken verbatim from https://github.com/jekyll/jekyll-seo-tag/
|
2017-08-09 15:29:13 +02:00
|
|
|
// Adapted from github.com/jekyll/jekyll-seo-tag. Used according to the MIT License.
|
|
|
|
const seoTagTemplateSource = `{% if seo_tag.title? %}
|
2017-07-11 18:03:52 +02:00
|
|
|
<title>{{ seo_tag.title }}</title>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if seo_tag.page_title %}
|
|
|
|
<meta property="og:title" content="{{ seo_tag.page_title }}" />
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if seo_tag.author.name %}
|
|
|
|
<meta name="author" content="{{ seo_tag.author.name }}" />
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<meta property="og:locale" content="{{ seo_tag.page_lang | replace:'-','_' }}" />
|
|
|
|
|
|
|
|
{% if seo_tag.description %}
|
|
|
|
<meta name="description" content="{{ seo_tag.description }}" />
|
|
|
|
<meta property="og:description" content="{{ seo_tag.description }}" />
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if site.url %}
|
|
|
|
<link rel="canonical" href="{{ seo_tag.canonical_url }}" />
|
|
|
|
<meta property="og:url" content="{{ seo_tag.canonical_url }}" />
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if seo_tag.site_title %}
|
|
|
|
<meta property="og:site_name" content="{{ seo_tag.site_title }}" />
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if seo_tag.image %}
|
|
|
|
<meta property="og:image" content="{{ seo_tag.image.path }}" />
|
|
|
|
{% if seo_tag.image.height %}
|
|
|
|
<meta property="og:image:height" content="{{ seo_tag.image.height }}" />
|
|
|
|
{% endif %}
|
|
|
|
{% if seo_tag.image.width %}
|
|
|
|
<meta property="og:image:width" content="{{ seo_tag.image.width }}" />
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if page.date %}
|
|
|
|
<meta property="og:type" content="article" />
|
|
|
|
<meta property="article:published_time" content="{{ page.date | date_to_xmlschema }}" />
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if paginator.previous_page %}
|
|
|
|
<link rel="prev" href="{{ paginator.previous_page_path | absolute_url }}">
|
|
|
|
{% endif %}
|
|
|
|
{% if paginator.next_page %}
|
|
|
|
<link rel="next" href="{{ paginator.next_page_path | absolute_url }}">
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if site.twitter %}
|
|
|
|
{% if seo_tag.image %}
|
|
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
|
|
{% else %}
|
|
|
|
<meta name="twitter:card" content="summary" />
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<meta name="twitter:site" content="@{{ site.twitter.username | replace:"@","" }}" />
|
|
|
|
|
|
|
|
{% if seo_tag.author.twitter %}
|
|
|
|
<meta name="twitter:creator" content="@{{ seo_tag.author.twitter }}" />
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if site.facebook %}
|
|
|
|
{% if site.facebook.admins %}
|
|
|
|
<meta property="fb:admins" content="{{ site.facebook.admins }}" />
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if site.facebook.publisher %}
|
|
|
|
<meta property="article:publisher" content="{{ site.facebook.publisher }}" />
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if site.facebook.app_id %}
|
|
|
|
<meta property="fb:app_id" content="{{ site.facebook.app_id }}" />
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if site.webmaster_verifications %}
|
|
|
|
{% if site.webmaster_verifications.google %}
|
|
|
|
<meta name="google-site-verification" content="{{ site.webmaster_verifications.google }}">
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if site.webmaster_verifications.bing %}
|
|
|
|
<meta name="msvalidate.01" content="{{ site.webmaster_verifications.bing }}">
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if site.webmaster_verifications.alexa %}
|
|
|
|
<meta name="alexaVerifyID" content="{{ site.webmaster_verifications.alexa }}">
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if site.webmaster_verifications.yandex %}
|
|
|
|
<meta name="yandex-verification" content="{{ site.webmaster_verifications.yandex }}">
|
|
|
|
{% endif %}
|
|
|
|
{% elsif site.google_site_verification %}
|
|
|
|
<meta name="google-site-verification" content="{{ site.google_site_verification }}" />
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<script type="application/ld+json">
|
|
|
|
{{ seo_tag.json_ld | jsonify }}
|
2017-08-09 15:29:13 +02:00
|
|
|
</script>`
|