2015-12-07 13:57:01 -05:00
|
|
|
// Copyright 2015 The Hugo Authors. All rights reserved.
|
2014-05-01 13:19:51 -04:00
|
|
|
//
|
2015-11-23 22:16:36 -05:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
2014-05-01 13:19:51 -04:00
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2015-11-23 22:16:36 -05:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2014-05-01 13:19:51 -04:00
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package parser
|
|
|
|
|
2017-06-18 13:06:28 -04:00
|
|
|
// TODO(bep) archetype remove unused from this package.
|
|
|
|
|
2014-05-01 13:19:51 -04:00
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
2016-11-18 16:54:57 -05:00
|
|
|
"errors"
|
2016-12-26 16:23:20 -05:00
|
|
|
"io"
|
2014-05-02 01:01:44 -04:00
|
|
|
"strings"
|
2014-05-01 13:19:51 -04:00
|
|
|
|
2018-10-20 05:16:18 -04:00
|
|
|
"github.com/gohugoio/hugo/parser/metadecoders"
|
2018-02-12 11:39:11 -05:00
|
|
|
|
2017-05-31 06:10:46 -04:00
|
|
|
"github.com/BurntSushi/toml"
|
2016-08-20 15:28:38 -04:00
|
|
|
|
2015-01-24 06:30:00 -05:00
|
|
|
"gopkg.in/yaml.v2"
|
2014-05-01 13:19:51 -04:00
|
|
|
)
|
|
|
|
|
2016-12-26 16:23:20 -05:00
|
|
|
// FrontmatterType represents a type of frontmatter.
|
|
|
|
type FrontmatterType struct {
|
|
|
|
// Parse decodes content into a Go interface.
|
2018-01-25 22:54:15 -05:00
|
|
|
Parse func([]byte) (map[string]interface{}, error)
|
2016-12-26 16:23:20 -05:00
|
|
|
|
|
|
|
markstart, markend []byte // starting and ending delimiters
|
|
|
|
includeMark bool // include start and end mark in output
|
2014-05-01 13:19:51 -04:00
|
|
|
}
|
|
|
|
|
2016-12-26 16:23:20 -05:00
|
|
|
// InterfaceToConfig encodes a given input based upon the mark and writes to w.
|
|
|
|
func InterfaceToConfig(in interface{}, mark rune, w io.Writer) error {
|
2014-05-08 18:30:11 -04:00
|
|
|
if in == nil {
|
2016-12-26 16:23:20 -05:00
|
|
|
return errors.New("input was nil")
|
2014-05-08 18:30:11 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
switch mark {
|
2016-03-23 09:51:16 -04:00
|
|
|
case rune(YAMLLead[0]):
|
2016-12-26 16:23:20 -05:00
|
|
|
b, err := yaml.Marshal(in)
|
2014-05-08 18:30:11 -04:00
|
|
|
if err != nil {
|
2016-12-26 16:23:20 -05:00
|
|
|
return err
|
2014-05-08 18:30:11 -04:00
|
|
|
}
|
2016-12-26 16:23:20 -05:00
|
|
|
|
|
|
|
_, err = w.Write(b)
|
|
|
|
return err
|
|
|
|
|
2016-03-23 09:51:16 -04:00
|
|
|
case rune(TOMLLead[0]):
|
2017-05-31 06:10:46 -04:00
|
|
|
return toml.NewEncoder(w).Encode(in)
|
2016-03-23 09:51:16 -04:00
|
|
|
case rune(JSONLead[0]):
|
2016-12-26 16:23:20 -05:00
|
|
|
b, err := json.MarshalIndent(in, "", " ")
|
2014-05-08 18:30:11 -04:00
|
|
|
if err != nil {
|
2016-12-26 16:23:20 -05:00
|
|
|
return err
|
2014-05-08 18:30:11 -04:00
|
|
|
}
|
2016-12-26 16:23:20 -05:00
|
|
|
|
|
|
|
_, err = w.Write(b)
|
2014-05-08 18:30:11 -04:00
|
|
|
if err != nil {
|
2016-12-26 16:23:20 -05:00
|
|
|
return err
|
2014-05-08 18:30:11 -04:00
|
|
|
}
|
2016-12-26 16:23:20 -05:00
|
|
|
|
|
|
|
_, err = w.Write([]byte{'\n'})
|
|
|
|
return err
|
|
|
|
|
2014-05-08 18:30:11 -04:00
|
|
|
default:
|
2016-12-26 16:23:20 -05:00
|
|
|
return errors.New("Unsupported Format provided")
|
2014-05-08 18:30:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-20 05:16:18 -04:00
|
|
|
func InterfaceToConfig2(in interface{}, format metadecoders.Format, w io.Writer) error {
|
|
|
|
if in == nil {
|
|
|
|
return errors.New("input was nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
switch format {
|
|
|
|
case metadecoders.YAML:
|
|
|
|
b, err := yaml.Marshal(in)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = w.Write(b)
|
|
|
|
return err
|
|
|
|
|
|
|
|
case metadecoders.TOML:
|
|
|
|
return toml.NewEncoder(w).Encode(in)
|
|
|
|
case metadecoders.JSON:
|
|
|
|
b, err := json.MarshalIndent(in, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = w.Write(b)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = w.Write([]byte{'\n'})
|
|
|
|
return err
|
|
|
|
|
|
|
|
default:
|
|
|
|
return errors.New("Unsupported Format provided")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func InterfaceToFrontMatter2(in interface{}, format metadecoders.Format, w io.Writer) error {
|
|
|
|
if in == nil {
|
|
|
|
return errors.New("input was nil")
|
|
|
|
}
|
|
|
|
|
|
|
|
switch format {
|
|
|
|
case metadecoders.YAML:
|
|
|
|
_, err := w.Write([]byte(YAMLDelimUnix))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = InterfaceToConfig2(in, format, w)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = w.Write([]byte(YAMLDelimUnix))
|
|
|
|
return err
|
|
|
|
|
|
|
|
case metadecoders.TOML:
|
|
|
|
_, err := w.Write([]byte(TOMLDelimUnix))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = InterfaceToConfig2(in, format, w)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = w.Write([]byte("\n" + TOMLDelimUnix))
|
|
|
|
return err
|
|
|
|
|
|
|
|
default:
|
|
|
|
return InterfaceToConfig2(in, format, w)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-26 16:23:20 -05:00
|
|
|
// InterfaceToFrontMatter encodes a given input into a frontmatter
|
|
|
|
// representation based upon the mark with the appropriate front matter delimiters
|
|
|
|
// surrounding the output, which is written to w.
|
|
|
|
func InterfaceToFrontMatter(in interface{}, mark rune, w io.Writer) error {
|
2014-05-01 13:19:51 -04:00
|
|
|
if in == nil {
|
2016-12-26 16:23:20 -05:00
|
|
|
return errors.New("input was nil")
|
2014-05-01 13:19:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
switch mark {
|
2016-03-23 09:51:16 -04:00
|
|
|
case rune(YAMLLead[0]):
|
2016-12-26 16:23:20 -05:00
|
|
|
_, err := w.Write([]byte(YAMLDelimUnix))
|
2014-05-01 13:19:51 -04:00
|
|
|
if err != nil {
|
2016-12-26 16:23:20 -05:00
|
|
|
return err
|
2014-05-01 13:19:51 -04:00
|
|
|
}
|
2016-12-26 16:23:20 -05:00
|
|
|
|
|
|
|
err = InterfaceToConfig(in, mark, w)
|
2014-05-01 13:19:51 -04:00
|
|
|
if err != nil {
|
2016-12-26 16:23:20 -05:00
|
|
|
return err
|
2014-05-01 13:19:51 -04:00
|
|
|
}
|
2016-12-26 16:23:20 -05:00
|
|
|
|
|
|
|
_, err = w.Write([]byte(YAMLDelimUnix))
|
|
|
|
return err
|
|
|
|
|
2016-03-23 09:51:16 -04:00
|
|
|
case rune(TOMLLead[0]):
|
2016-12-26 16:23:20 -05:00
|
|
|
_, err := w.Write([]byte(TOMLDelimUnix))
|
2014-05-01 13:19:51 -04:00
|
|
|
if err != nil {
|
2016-12-26 16:23:20 -05:00
|
|
|
return err
|
2014-05-01 13:19:51 -04:00
|
|
|
}
|
|
|
|
|
2016-12-26 16:23:20 -05:00
|
|
|
err = InterfaceToConfig(in, mark, w)
|
2017-03-15 03:04:52 -04:00
|
|
|
|
2014-05-01 13:19:51 -04:00
|
|
|
if err != nil {
|
2016-12-26 16:23:20 -05:00
|
|
|
return err
|
2014-05-01 13:19:51 -04:00
|
|
|
}
|
2016-12-26 16:23:20 -05:00
|
|
|
|
|
|
|
_, err = w.Write([]byte("\n" + TOMLDelimUnix))
|
|
|
|
return err
|
|
|
|
|
2014-05-01 13:19:51 -04:00
|
|
|
default:
|
2016-12-26 16:23:20 -05:00
|
|
|
return InterfaceToConfig(in, mark, w)
|
2014-05-01 13:19:51 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-26 16:23:20 -05:00
|
|
|
// FormatToLeadRune takes a given format kind and return the leading front
|
|
|
|
// matter delimiter.
|
2014-05-02 01:01:44 -04:00
|
|
|
func FormatToLeadRune(kind string) rune {
|
2014-05-08 18:30:11 -04:00
|
|
|
switch FormatSanitize(kind) {
|
2014-05-02 01:01:44 -04:00
|
|
|
case "yaml":
|
2016-03-23 09:51:16 -04:00
|
|
|
return rune([]byte(YAMLLead)[0])
|
2014-05-02 01:01:44 -04:00
|
|
|
case "json":
|
2016-03-23 09:51:16 -04:00
|
|
|
return rune([]byte(JSONLead)[0])
|
2016-12-26 16:23:20 -05:00
|
|
|
case "org":
|
|
|
|
return '#'
|
2014-05-02 01:01:44 -04:00
|
|
|
default:
|
2016-03-23 09:51:16 -04:00
|
|
|
return rune([]byte(TOMLLead)[0])
|
2014-05-02 01:01:44 -04:00
|
|
|
}
|
2014-05-08 18:30:11 -04:00
|
|
|
}
|
2014-05-02 01:01:44 -04:00
|
|
|
|
2016-12-26 16:23:20 -05:00
|
|
|
// FormatSanitize returns the canonical format name for a given kind.
|
|
|
|
//
|
2016-03-14 12:52:11 -04:00
|
|
|
// TODO(bep) move to helpers
|
2014-05-08 18:30:11 -04:00
|
|
|
func FormatSanitize(kind string) string {
|
|
|
|
switch strings.ToLower(kind) {
|
|
|
|
case "yaml", "yml":
|
|
|
|
return "yaml"
|
|
|
|
case "toml", "tml":
|
|
|
|
return "toml"
|
|
|
|
case "json", "js":
|
|
|
|
return "json"
|
2016-12-26 16:23:20 -05:00
|
|
|
case "org":
|
|
|
|
return kind
|
2014-05-08 18:30:11 -04:00
|
|
|
default:
|
|
|
|
return "toml"
|
|
|
|
}
|
2014-05-02 01:01:44 -04:00
|
|
|
}
|
|
|
|
|
2016-12-26 16:23:20 -05:00
|
|
|
// removeTOMLIdentifier removes, if necessary, beginning and ending TOML
|
|
|
|
// frontmatter delimiters from a byte slice.
|
2015-03-11 13:34:57 -04:00
|
|
|
func removeTOMLIdentifier(datum []byte) []byte {
|
2016-12-26 16:23:20 -05:00
|
|
|
ld := len(datum)
|
|
|
|
if ld < 8 {
|
|
|
|
return datum
|
|
|
|
}
|
|
|
|
|
|
|
|
b := bytes.TrimPrefix(datum, []byte(TOMLDelim))
|
|
|
|
if ld-len(b) != 3 {
|
|
|
|
// No TOML prefix trimmed, so bail out
|
|
|
|
return datum
|
|
|
|
}
|
|
|
|
|
|
|
|
b = bytes.Trim(b, "\r\n")
|
|
|
|
return bytes.TrimSuffix(b, []byte(TOMLDelim))
|
2014-05-01 13:19:51 -04:00
|
|
|
}
|