func (page *Page) SetSourceMetaData(in interface{}, mark rune) (err error) { by, err := parser.InterfaceToFrontMatter(in, mark) if err != nil { return err } page.sourceFrontmatter = by return nil }
func (p *Page) SetSourceMetaData(in interface{}, mark rune) (err error) { by, err := parser.InterfaceToFrontMatter(in, mark) if err != nil { return err } by = append(by, '\n') p.Source.Frontmatter = by return nil }
func parseFrontMatterOnlyFile(rawFile map[string]interface{}, filename string) ([]byte, int, error) { frontmatter := strings.TrimPrefix(filepath.Ext(filename), ".") var mark rune switch frontmatter { case "toml": mark = rune('+') case "json": mark = rune('{') case "yaml": mark = rune('-') default: return []byte{}, http.StatusBadRequest, errors.New("Can't define the frontmatter.") } f, err := parser.InterfaceToFrontMatter(rawFile, mark) fString := string(f) // If it's toml or yaml, strip frontmatter identifier if frontmatter == "toml" { fString = strings.TrimSuffix(fString, "+++\n") fString = strings.TrimPrefix(fString, "+++\n") } if frontmatter == "yaml" { fString = strings.TrimSuffix(fString, "---\n") fString = strings.TrimPrefix(fString, "---\n") } f = []byte(fString) if err != nil { return []byte{}, http.StatusInternalServerError, err } return f, http.StatusOK, nil }
func (p *Page) SetSourceMetaData(in interface{}, mark rune) (err error) { // See https://github.com/spf13/hugo/issues/2458 defer func() { if r := recover(); r != nil { var ok bool err, ok = r.(error) if !ok { err = fmt.Errorf("error from marshal: %v", r) } } }() var by []byte by, err = parser.InterfaceToFrontMatter(in, mark) if err != nil { return } by = append(by, '\n') p.Source.Frontmatter = by return }
func servePost(w http.ResponseWriter, r *http.Request, filename string) (int, error) { // Get the JSON information sent using a buffer rawBuffer := new(bytes.Buffer) rawBuffer.ReadFrom(r.Body) // Creates the raw file "map" using the JSON var rawFile map[string]interface{} json.Unmarshal(rawBuffer.Bytes(), &rawFile) // Initializes the file content to write var file []byte switch r.Header.Get("X-Content-Type") { case "frontmatter-only": frontmatter := strings.TrimPrefix(filepath.Ext(filename), ".") var mark rune switch frontmatter { case "toml": mark = rune('+') case "json": mark = rune('{') case "yaml": mark = rune('-') default: return 400, nil } f, err := parser.InterfaceToFrontMatter(rawFile, mark) fString := string(f) // If it's toml or yaml, strip frontmatter identifier if frontmatter == "toml" { fString = strings.TrimSuffix(fString, "+++\n") fString = strings.TrimPrefix(fString, "+++\n") } if frontmatter == "yaml" { fString = strings.TrimSuffix(fString, "---\n") fString = strings.TrimPrefix(fString, "---\n") } f = []byte(fString) if err != nil { w.Write([]byte(err.Error())) return 500, err } file = f case "content-only": // The main content of the file mainContent := rawFile["content"].(string) mainContent = "\n\n" + strings.TrimSpace(mainContent) file = []byte(mainContent) case "complete": // The main content of the file mainContent := rawFile["content"].(string) mainContent = "\n\n" + strings.TrimSpace(mainContent) // Removes the main content from the rest of the frontmatter delete(rawFile, "content") // Converts the frontmatter in JSON jsonFrontmatter, err := json.Marshal(rawFile) if err != nil { w.Write([]byte(err.Error())) return 500, err } // Indents the json frontMatterBuffer := new(bytes.Buffer) json.Indent(frontMatterBuffer, jsonFrontmatter, "", " ") // Generates the final file f := new(bytes.Buffer) f.Write(frontMatterBuffer.Bytes()) f.Write([]byte(mainContent)) file = f.Bytes() default: return 400, nil } // Write the file err := ioutil.WriteFile(filename, file, 0666) if err != nil { w.Write([]byte(err.Error())) return 500, err } w.Header().Set("Content-Type", "application/json") w.Write([]byte("{}")) return 200, nil }