miniflux-v2/api/subscription.go

39 lines
846 B
Go
Raw Permalink Normal View History

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 (
"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
)
func (h *handler) getSubscriptions(w http.ResponseWriter, r *http.Request) {
subscriptionInfo, bodyErr := decodeURLPayload(r.Body)
if bodyErr != nil {
json.BadRequest(w, r, bodyErr)
2017-11-20 06:10:04 +01:00
return
}
subscriptions, finderErr := subscription.FindSubscriptions(
subscriptionInfo.URL,
subscriptionInfo.UserAgent,
subscriptionInfo.Username,
subscriptionInfo.Password,
)
if finderErr != nil {
json.ServerError(w, r, finderErr)
2017-11-20 06:10:04 +01:00
return
}
if subscriptions == nil {
2018-10-08 03:42:43 +02:00
json.NotFound(w, r)
2017-11-20 06:10:04 +01:00
return
}
json.OK(w, r, subscriptions)
2017-11-20 06:10:04 +01:00
}