2016-06-06 12:39:23 +08:00
|
|
|
package metadata
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
|
|
|
|
"gopkg.in/yaml.v2"
|
|
|
|
)
|
|
|
|
|
2016-06-21 07:11:29 +08:00
|
|
|
// YAMLParser is the Parser for YAML
|
|
|
|
type YAMLParser 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 metadata parser.
|
|
|
|
func (y *YAMLParser) Type() string {
|
2016-06-06 12:39:23 +08:00
|
|
|
return "YAML"
|
|
|
|
}
|
|
|
|
|
2016-06-21 07:11:29 +08:00
|
|
|
// Init prepares the metadata parser for parsing.
|
|
|
|
func (y *YAMLParser) Init(b *bytes.Buffer) bool {
|
2016-06-06 12:39:23 +08:00
|
|
|
meta, data := splitBuffer(b, "---")
|
|
|
|
if meta == nil || data == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
y.markdown = data
|
|
|
|
|
|
|
|
m := make(map[string]interface{})
|
|
|
|
if err := yaml.Unmarshal(meta.Bytes(), &m); err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
y.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 (y *YAMLParser) Metadata() Metadata {
|
2016-06-06 12:39:23 +08:00
|
|
|
return y.metadata
|
|
|
|
}
|
|
|
|
|
2016-06-21 07:11:29 +08:00
|
|
|
// Markdown renders the text as a byte array
|
|
|
|
func (y *YAMLParser) Markdown() []byte {
|
2016-06-06 12:39:23 +08:00
|
|
|
return y.markdown.Bytes()
|
|
|
|
}
|