2017-11-20 06:10:04 +01: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 06:51:50 +02:00
|
|
|
package json // import "miniflux.app/reader/json"
|
2017-11-20 06:10:04 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
2017-11-21 01:11:55 +01:00
|
|
|
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/errors"
|
|
|
|
"miniflux.app/model"
|
2017-11-20 06:10:04 +01:00
|
|
|
)
|
|
|
|
|
2021-04-03 04:00:06 +02:00
|
|
|
// Parse returns a normalized feed struct from a JSON feed.
|
2020-12-03 05:47:11 +01:00
|
|
|
func Parse(baseURL string, data io.Reader) (*model.Feed, *errors.LocalizedError) {
|
2017-11-21 03:57:54 +01:00
|
|
|
feed := new(jsonFeed)
|
2017-11-20 06:10:04 +01:00
|
|
|
decoder := json.NewDecoder(data)
|
2017-11-21 03:57:54 +01:00
|
|
|
if err := decoder.Decode(&feed); err != nil {
|
2018-02-28 06:19:59 +01:00
|
|
|
return nil, errors.NewLocalizedError("Unable to parse JSON Feed: %q", err)
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2020-12-03 05:47:11 +01:00
|
|
|
return feed.Transform(baseURL), nil
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|