caddy/caddyhttp/markdown/metadata/metadata_toml.go

47 lines
1019 B
Go
Raw Normal View History

2016-06-06 12:39:23 +08:00
package metadata
import (
"bytes"
"github.com/BurntSushi/toml"
)
2016-06-21 07:11:29 +08:00
// TOMLParser is the Parser for TOML
type TOMLParser struct {
2016-06-06 12:39:23 +08:00
metadata Metadata
markdown *bytes.Buffer
}
2016-06-21 07:11:29 +08:00
// Type returns the kind of parser this struct is.
func (t *TOMLParser) Type() string {
2016-06-06 12:39:23 +08:00
return "TOML"
}
2016-06-21 07:11:29 +08:00
// Init prepares and parses the metadata and markdown file itself
func (t *TOMLParser) Init(b *bytes.Buffer) bool {
2016-06-06 12:39:23 +08:00
meta, data := splitBuffer(b, "+++")
if meta == nil || data == nil {
return false
}
t.markdown = data
m := make(map[string]interface{})
if err := toml.Unmarshal(meta.Bytes(), &m); err != nil {
return false
}
t.metadata = NewMetadata(m)
return true
}
// Metadata returns parsed metadata. It should be called
// only after a call to Parse returns without error.
2016-06-21 07:11:29 +08:00
func (t *TOMLParser) Metadata() Metadata {
2016-06-06 12:39:23 +08:00
return t.metadata
}
2016-06-21 07:11:29 +08:00
// Markdown returns parser markdown. It should be called only after a call to Parse returns without error.
func (t *TOMLParser) Markdown() []byte {
2016-06-06 12:39:23 +08:00
return t.markdown.Bytes()
}