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