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 api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"github.com/miniflux/miniflux2/reader/subscription"
|
|
|
|
"github.com/miniflux/miniflux2/server/api/payload"
|
|
|
|
"github.com/miniflux/miniflux2/server/core"
|
|
|
|
)
|
|
|
|
|
|
|
|
// GetSubscriptions is the API handler to find subscriptions.
|
|
|
|
func (c *Controller) GetSubscriptions(ctx *core.Context, request *core.Request, response *core.Response) {
|
2017-11-22 03:14:45 +01:00
|
|
|
websiteURL, err := payload.DecodeURLPayload(request.Body())
|
2017-11-20 06:10:04 +01:00
|
|
|
if err != nil {
|
2017-11-22 03:30:16 +01:00
|
|
|
response.JSON().BadRequest(err)
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
subscriptions, err := subscription.FindSubscriptions(websiteURL)
|
|
|
|
if err != nil {
|
2017-11-22 03:30:16 +01:00
|
|
|
response.JSON().ServerError(errors.New("Unable to discover subscriptions"))
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if subscriptions == nil {
|
2017-11-22 03:30:16 +01:00
|
|
|
response.JSON().NotFound(fmt.Errorf("No subscription found"))
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-11-22 03:30:16 +01:00
|
|
|
response.JSON().Standard(subscriptions)
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|