jlelse
/
hugo-micropub
Archived
1
Fork 0
This repository has been archived on 2020-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
hugo-micropub/post.go

87 lines
2.3 KiB
Go
Raw Normal View History

2019-11-07 10:00:24 +00:00
package main
import (
"bytes"
2019-11-14 17:46:49 +00:00
"errors"
"gopkg.in/yaml.v2"
2019-11-07 10:00:24 +00:00
)
type HugoFrontmatter struct {
2020-01-12 17:17:40 +00:00
Title string `yaml:"title,omitempty"`
Date string `yaml:"date,omitempty"`
Lastmod string `yaml:"lastmod,omitempty"`
Tags []string `yaml:"tags,omitempty"`
ExternalURL string `yaml:"externalURL,omitempty"`
Indieweb HugoFrontmatterIndieweb `yaml:"indieweb,omitempty"`
Syndicate []string `yaml:"syndicate,omitempty"`
TranslationKey string `yaml:"translationKey,omitempty"`
2020-01-19 07:36:10 +00:00
Images []string `yaml:"images,omitempty"`
Audio string `yaml:"audio,omitempty"`
}
type HugoFrontmatterIndieweb struct {
Reply HugoFrontmatterReply `yaml:"reply,omitempty"`
Like HugoFrontmatterLike `yaml:"like,omitempty"`
}
type HugoFrontmatterReply struct {
Link string `yaml:"link,omitempty"`
Title string `yaml:"title,omitempty"`
}
type HugoFrontmatterLike struct {
Link string `yaml:"link,omitempty"`
Title string `yaml:"title,omitempty"`
}
func writeFrontMatter(entry *Entry) (frontmatter string, err error) {
2019-11-07 10:00:24 +00:00
var buff bytes.Buffer
writeFrontmatter := &HugoFrontmatter{
Title: entry.title,
2019-12-06 09:32:30 +00:00
Date: entry.date,
Lastmod: entry.lastmod,
Tags: entry.tags,
ExternalURL: entry.link,
Indieweb: HugoFrontmatterIndieweb{
Reply: HugoFrontmatterReply{
Link: entry.replyLink,
Title: entry.replyTitle,
},
Like: HugoFrontmatterLike{
Link: entry.likeLink,
Title: entry.likeTitle,
},
},
2020-01-12 17:17:40 +00:00
Syndicate: entry.syndicate,
TranslationKey: entry.translationKey,
2020-01-19 07:36:10 +00:00
Audio: entry.audio,
}
2020-03-20 17:28:57 +00:00
for _, image := range entry.images {
writeFrontmatter.Images = append(writeFrontmatter.Images, image.url)
}
yamlBytes, err := yaml.Marshal(&writeFrontmatter)
if err != nil {
err = errors.New("failed marshaling frontmatter")
return
}
2019-11-07 10:00:24 +00:00
buff.WriteString("---\n")
buff.Write(yamlBytes)
buff.WriteString("---\n")
frontmatter = buff.String()
return
2019-11-07 10:00:24 +00:00
}
func WriteHugoPost(entry *Entry) (string, error) {
2019-11-07 10:00:24 +00:00
var buff bytes.Buffer
frontmatter, err := writeFrontMatter(entry)
if err != nil {
return "", err
}
buff.WriteString(frontmatter)
if len(entry.content) > 0 {
buff.WriteString(entry.content)
2019-11-07 10:00:24 +00:00
}
return buff.String(), nil
2019-11-07 10:00:24 +00:00
}
2019-11-14 17:46:49 +00:00