filebrowser/frontmatter/frontmatter.go

252 lines
5.3 KiB
Go
Raw Normal View History

2015-09-14 13:42:48 +00:00
package frontmatter
import (
2015-09-17 10:32:27 +00:00
"log"
2015-09-14 13:42:48 +00:00
"sort"
"github.com/hacdias/caddy-hugo/utils"
"github.com/spf13/hugo/parser"
)
// Pretty creates a new FrontMatter object
func Pretty(content []byte) (interface{}, error) {
frontType := parser.DetectFrontMatter(rune(content[0]))
front, err := frontType.Parse(content)
2015-09-14 13:42:48 +00:00
if err != nil {
return []string{}, err
}
2015-09-17 10:32:27 +00:00
object := new(frontmatter)
object.Type = "object"
return rawToPretty(front, object), nil
2015-09-14 13:42:48 +00:00
}
type frontmatter struct {
2015-09-15 10:59:48 +00:00
Name string
2015-09-17 10:32:27 +00:00
Title string
2015-09-15 10:59:48 +00:00
Content interface{}
Type string
2015-09-17 10:32:27 +00:00
Parent *frontmatter
2015-09-14 13:42:48 +00:00
}
2015-09-17 10:32:27 +00:00
func sortByTitle(config []*frontmatter) {
keys := make([]string, len(config))
positionByTitle := make(map[string]int)
2015-09-15 10:59:48 +00:00
2015-09-17 10:32:27 +00:00
for index, element := range config {
keys[index] = element.Title
positionByTitle[element.Title] = index
}
sort.Strings(keys)
cnf := make([]*frontmatter, len(config))
for index, title := range keys {
cnf[index] = config[positionByTitle[title]]
}
for index := range config {
config[index] = cnf[index]
}
}
func rawToPretty(config interface{}, parent *frontmatter) interface{} {
objects := []*frontmatter{}
arrays := []*frontmatter{}
fields := []*frontmatter{}
2015-09-15 20:28:54 +00:00
2015-09-17 10:32:27 +00:00
if parent.Type == "array" {
2015-09-15 10:59:48 +00:00
for index, element := range config.([]interface{}) {
c := new(frontmatter)
c.Parent = parent
if utils.IsMap(element) {
c.Type = "object"
2015-09-17 10:32:27 +00:00
if parent.Name == "" {
c.Name = c.Title
} else {
c.Name = parent.Name + "[" + c.Name + "]"
}
c.Content = rawToPretty(config.([]interface{})[index], c)
objects = append(objects, c)
2015-09-15 10:59:48 +00:00
} else if utils.IsSlice(element) {
c.Type = "array"
2015-09-17 10:32:27 +00:00
c.Name = parent.Name + "[" + c.Name + "]"
c.Content = rawToPretty(config.([]interface{})[index], c)
arrays = append(arrays, c)
2015-09-15 10:59:48 +00:00
} else {
2015-09-17 10:32:27 +00:00
// TODO: add string, boolean, number
c.Type = "string"
c.Name = parent.Name + "[]"
c.Title = element.(string)
c.Content = config.([]interface{})[index]
fields = append(fields, c)
2015-09-15 10:59:48 +00:00
}
}
2015-09-17 10:32:27 +00:00
} else if parent.Type == "object" {
for name, element := range config.(map[string]interface{}) {
c := new(frontmatter)
c.Title = name
c.Parent = parent
2015-09-15 10:59:48 +00:00
2015-09-17 10:32:27 +00:00
if utils.IsMap(element) {
c.Type = "object"
if parent.Name == "" {
c.Name = c.Title
} else {
c.Name = parent.Name + "[" + c.Title + "]"
}
c.Content = rawToPretty(config.(map[string]interface{})[name], c)
objects = append(objects, c)
} else if utils.IsSlice(element) {
c.Type = "array"
if parent.Name == "" {
c.Name = name
} else {
c.Name = parent.Name + "[" + c.Name + "]"
}
c.Content = rawToPretty(config.(map[string]interface{})[c.Title], c)
2015-09-15 10:59:48 +00:00
2015-09-17 10:32:27 +00:00
arrays = append(arrays, c)
} else {
// TODO: add string, boolean, number
c.Type = "string"
if parent.Name == "" {
c.Name = name
} else {
c.Name = parent.Name + "[" + name + "]"
}
2015-09-14 13:42:48 +00:00
2015-09-17 10:32:27 +00:00
c.Content = element
fields = append(fields, c)
}
2015-09-14 13:42:48 +00:00
}
2015-09-17 10:32:27 +00:00
} else {
log.Panic("Parent type not allowed.")
2015-09-14 13:42:48 +00:00
}
2015-09-17 10:32:27 +00:00
sortByTitle(objects)
sortByTitle(arrays)
sortByTitle(fields)
settings := []*frontmatter{}
settings = append(settings, fields...)
settings = append(settings, arrays...)
settings = append(settings, objects...)
2015-09-14 13:42:48 +00:00
2015-09-17 10:32:27 +00:00
return settings
2015-09-14 13:42:48 +00:00
2015-09-17 10:32:27 +00:00
/*
2015-09-14 13:42:48 +00:00
2015-09-17 10:32:27 +00:00
objects := make([]interface{}, len(objectsNames))
for index := range objectsNames {
c := new(frontmatter)
2015-09-15 10:59:48 +00:00
c.Type = "object"
2015-09-17 10:32:27 +00:00
c.Title = objectsNames[index]
if parent.Name == "" {
c.Name = c.Title
} else {
c.Name = parent.Name + "[" + c.Name + "]"
}
c.Content = rawToPretty(config.(map[string]interface{})[c.Title], c)
log.Print("\n\nObject Name:\n")
log.Print(c.Name)
objects[index] = c
}
arrays := make([]interface{}, len(arraysNames))
for index := range arraysNames {
c := new(frontmatter)
2015-09-15 10:59:48 +00:00
c.Type = "array"
2015-09-17 10:32:27 +00:00
c.Title = arraysNames[index]
c.Name = parent.Name + c.Title + "[]"
c.Content = rawToPretty(config.(map[string]interface{})[c.Title], c)
log.Print("\n\nArray Name:\n")
log.Print(c.Name)
arrays[index] = c
}
/*strings := make([]interface{}, len(stringsNames))*/
/*
for index := range stringsNames {
c := new(frontmatter)
c.Title = stringsNames[index]
c.Name = giveName(c.Title, parent)
log.Print(c.Name)
2015-09-14 13:42:48 +00:00
}
2015-09-17 10:32:27 +00:00
/* names := append(stringsNames, mapsNames...)
settings := make([]interface{}, len(names))
for index := range names {
c := new(frontmatter)
c.Name = names[index]
c.Parent = parent
i := config.(map[string]interface{})[names[index]]
if utils.IsMap(i) {
c.Type = "object"
c.Content = rawToPretty(i, c.Name, "object")
} else if utils.IsSlice(i) {
c.Type = "array"
c.Content = rawToPretty(i, c.Name, "array")
} else {
c.Type = "text"
c.Content = i
}
settings[index] = c
}
*/
// settings := append(strings, slices..., maps...)
/*if utils.IsSlice(config) {
settings := make([]interface{}, len(config.([]interface{})))
// TODO: improve this function
for index, element := range config.([]interface{}) {
c := new(frontmatter)
c.Name = master
c.Parent = parent
if utils.IsMap(element) {
c.Type = "object"
c.Content = rawToPretty(element, c.Name, "object")
} else if utils.IsSlice(element) {
c.Type = "array"
c.Content = rawToPretty(element, c.Name, "array")
} else {
c.Type = "text"
c.Content = element
}
settings[index] = c
}
return settings
2015-09-14 13:42:48 +00:00
}
2015-09-17 10:32:27 +00:00
*/
2015-09-14 13:42:48 +00:00
}