1
0
Fork 0
miniflux/reader/json/parser.go

25 lines
642 B
Go
Raw Normal View History

2017-11-20 00:10:04 -05:00
// Copyright 2017 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
2018-08-25 00:51:50 -04:00
package json // import "miniflux.app/reader/json"
2017-11-20 00:10:04 -05:00
import (
"encoding/json"
"io"
2018-08-25 00:51:50 -04:00
"miniflux.app/errors"
"miniflux.app/model"
2017-11-20 00:10:04 -05:00
)
// Parse returns a normalized feed struct from a JON feed.
func Parse(data io.Reader) (*model.Feed, *errors.LocalizedError) {
feed := new(jsonFeed)
2017-11-20 00:10:04 -05:00
decoder := json.NewDecoder(data)
if err := decoder.Decode(&feed); err != nil {
2018-02-28 00:19:59 -05:00
return nil, errors.NewLocalizedError("Unable to parse JSON Feed: %q", err)
2017-11-20 00:10:04 -05:00
}
return feed.Transform(), nil
2017-11-20 00:10:04 -05:00
}