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 api // import "miniflux.app/api"
|
2017-11-20 00:10:04 -05:00
|
|
|
|
|
|
|
import (
|
2018-04-29 19:35:04 -04:00
|
|
|
"net/http"
|
2017-12-13 00:48:13 -05:00
|
|
|
|
2018-08-25 00:51:50 -04:00
|
|
|
"miniflux.app/http/response/json"
|
|
|
|
"miniflux.app/reader/subscription"
|
2017-11-20 00:10:04 -05:00
|
|
|
)
|
|
|
|
|
2018-11-11 13:22:47 -05:00
|
|
|
func (h *handler) getSubscriptions(w http.ResponseWriter, r *http.Request) {
|
2018-10-20 00:38:21 -04:00
|
|
|
subscriptionInfo, bodyErr := decodeURLPayload(r.Body)
|
|
|
|
if bodyErr != nil {
|
|
|
|
json.BadRequest(w, r, bodyErr)
|
2017-11-20 00:10:04 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-10-20 00:38:21 -04:00
|
|
|
subscriptions, finderErr := subscription.FindSubscriptions(
|
2018-06-20 01:58:29 -04:00
|
|
|
subscriptionInfo.URL,
|
2018-09-19 21:19:24 -04:00
|
|
|
subscriptionInfo.UserAgent,
|
2018-06-20 01:58:29 -04:00
|
|
|
subscriptionInfo.Username,
|
|
|
|
subscriptionInfo.Password,
|
|
|
|
)
|
2018-10-20 00:38:21 -04:00
|
|
|
if finderErr != nil {
|
|
|
|
json.ServerError(w, r, finderErr)
|
2017-11-20 00:10:04 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if subscriptions == nil {
|
2018-10-07 21:42:43 -04:00
|
|
|
json.NotFound(w, r)
|
2017-11-20 00:10:04 -05:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-07-19 22:27:05 -04:00
|
|
|
json.OK(w, r, subscriptions)
|
2017-11-20 00:10:04 -05:00
|
|
|
}
|