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 api // import "miniflux.app/api"
|
2017-11-20 06:10:04 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
2018-04-30 01:35:04 +02:00
|
|
|
"net/http"
|
2017-12-13 06:48:13 +01:00
|
|
|
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/http/response/json"
|
|
|
|
"miniflux.app/reader/subscription"
|
2017-11-20 06:10:04 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetSubscriptions is the API handler to find subscriptions.
|
2018-04-30 01:35:04 +02:00
|
|
|
func (c *Controller) GetSubscriptions(w http.ResponseWriter, r *http.Request) {
|
2018-06-20 07:58:29 +02:00
|
|
|
subscriptionInfo, err := decodeURLPayload(r.Body)
|
2017-11-20 06:10:04 +01:00
|
|
|
if err != nil {
|
2018-04-30 01:35:04 +02:00
|
|
|
json.BadRequest(w, err)
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-06-20 07:58:29 +02:00
|
|
|
subscriptions, err := subscription.FindSubscriptions(
|
|
|
|
subscriptionInfo.URL,
|
|
|
|
subscriptionInfo.Username,
|
|
|
|
subscriptionInfo.Password,
|
|
|
|
)
|
2017-11-20 06:10:04 +01:00
|
|
|
if err != nil {
|
2018-04-30 01:35:04 +02:00
|
|
|
json.ServerError(w, errors.New("Unable to discover subscriptions"))
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if subscriptions == nil {
|
2018-04-30 01:35:04 +02:00
|
|
|
json.NotFound(w, fmt.Errorf("No subscription found"))
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-07-20 04:27:05 +02:00
|
|
|
json.OK(w, r, subscriptions)
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|