0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-23 22:27:38 -05:00
caddy/caddyhttp/markdown/metadata/metadata_json.go

71 lines
1.7 KiB
Go
Raw Normal View History

// Copyright 2015 Light Code Labs, LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// 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.
2016-06-05 23:39:23 -05:00
package metadata
import (
"bytes"
"encoding/json"
)
2016-06-20 18:11:29 -05:00
// JSONParser is the MetadataParser for JSON
type JSONParser struct {
2016-06-05 23:39:23 -05:00
metadata Metadata
markdown *bytes.Buffer
}
2016-06-20 18:11:29 -05:00
// Type returns the kind of metadata parser implemented by this struct.
func (j *JSONParser) Type() string {
2016-06-05 23:39:23 -05:00
return "JSON"
}
2016-06-20 18:11:29 -05:00
// Init prepares the metadata metadata/markdown file and parses it
func (j *JSONParser) Init(b *bytes.Buffer) bool {
2016-06-05 23:39:23 -05:00
m := make(map[string]interface{})
err := json.Unmarshal(b.Bytes(), &m)
if err != nil {
var offset int
2016-06-20 18:11:29 -05:00
jerr, ok := err.(*json.SyntaxError)
if !ok {
2016-06-05 23:39:23 -05:00
return false
}
2016-06-20 18:11:29 -05:00
offset = int(jerr.Offset)
2016-06-05 23:39:23 -05:00
m = make(map[string]interface{})
err = json.Unmarshal(b.Next(offset-1), &m)
if err != nil {
return false
}
}
j.metadata = NewMetadata(m)
j.markdown = bytes.NewBuffer(b.Bytes())
return true
}
// Metadata returns parsed metadata. It should be called
// only after a call to Parse returns without error.
2016-06-20 18:11:29 -05:00
func (j *JSONParser) Metadata() Metadata {
2016-06-05 23:39:23 -05:00
return j.metadata
}
2016-06-20 18:11:29 -05:00
// Markdown returns the markdown text. It should be called only after a call to Parse returns without error.
func (j *JSONParser) Markdown() []byte {
2016-06-05 23:39:23 -05:00
return j.markdown.Bytes()
}