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.
|
|
|
|
|
|
|
|
package json
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
2017-11-21 01:11:55 +01:00
|
|
|
|
2017-12-13 06:48:13 +01:00
|
|
|
"github.com/miniflux/miniflux/errors"
|
|
|
|
"github.com/miniflux/miniflux/model"
|
2017-11-20 06:10:04 +01:00
|
|
|
)
|
|
|
|
|
2017-11-21 03:57:54 +01:00
|
|
|
// Parse returns a normalized feed struct from a JON feed.
|
2017-11-20 06:10:04 +01:00
|
|
|
func Parse(data io.Reader) (*model.Feed, error) {
|
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 {
|
2017-11-21 01:11:55 +01:00
|
|
|
return nil, errors.NewLocalizedError("Unable to parse JSON Feed: %v", err)
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2017-11-21 03:57:54 +01:00
|
|
|
return feed.Transform(), nil
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|