2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package api // import "miniflux.app/v2/internal/api"
|
2017-11-20 06:10:04 +01:00
|
|
|
|
|
|
|
import (
|
2021-01-04 22:49:28 +01:00
|
|
|
json_parser "encoding/json"
|
2018-04-30 01:35:04 +02:00
|
|
|
"net/http"
|
2017-12-13 06:48:13 +01:00
|
|
|
|
2023-10-23 01:07:06 +02:00
|
|
|
"miniflux.app/v2/internal/config"
|
2023-10-22 20:10:56 +02:00
|
|
|
"miniflux.app/v2/internal/http/request"
|
2023-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/http/response/json"
|
|
|
|
"miniflux.app/v2/internal/model"
|
2023-10-23 01:07:06 +02:00
|
|
|
"miniflux.app/v2/internal/reader/fetcher"
|
2023-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/reader/subscription"
|
|
|
|
"miniflux.app/v2/internal/validator"
|
2017-11-20 06:10:04 +01:00
|
|
|
)
|
|
|
|
|
2021-01-04 22:49:28 +01:00
|
|
|
func (h *handler) discoverSubscriptions(w http.ResponseWriter, r *http.Request) {
|
|
|
|
var subscriptionDiscoveryRequest model.SubscriptionDiscoveryRequest
|
|
|
|
if err := json_parser.NewDecoder(r.Body).Decode(&subscriptionDiscoveryRequest); err != nil {
|
|
|
|
json.BadRequest(w, r, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if validationErr := validator.ValidateSubscriptionDiscovery(&subscriptionDiscoveryRequest); validationErr != nil {
|
|
|
|
json.BadRequest(w, r, validationErr.Error())
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-10-22 20:10:56 +02:00
|
|
|
var rssbridgeURL string
|
|
|
|
intg, err := h.store.Integration(request.UserID(r))
|
|
|
|
if err == nil && intg != nil && intg.RSSBridgeEnabled {
|
|
|
|
rssbridgeURL = intg.RSSBridgeURL
|
|
|
|
}
|
|
|
|
|
2023-10-23 01:07:06 +02:00
|
|
|
requestBuilder := fetcher.NewRequestBuilder()
|
|
|
|
requestBuilder.WithTimeout(config.Opts.HTTPClientTimeout())
|
|
|
|
requestBuilder.WithProxy(config.Opts.HTTPClientProxy())
|
2023-11-16 04:12:00 +01:00
|
|
|
requestBuilder.WithUserAgent(subscriptionDiscoveryRequest.UserAgent, config.Opts.HTTPClientUserAgent())
|
2023-10-23 01:07:06 +02:00
|
|
|
requestBuilder.WithCookie(subscriptionDiscoveryRequest.Cookie)
|
|
|
|
requestBuilder.WithUsernameAndPassword(subscriptionDiscoveryRequest.Username, subscriptionDiscoveryRequest.Password)
|
|
|
|
requestBuilder.UseProxy(subscriptionDiscoveryRequest.FetchViaProxy)
|
|
|
|
requestBuilder.IgnoreTLSErrors(subscriptionDiscoveryRequest.AllowSelfSignedCertificates)
|
|
|
|
|
|
|
|
subscriptions, localizedError := subscription.NewSubscriptionFinder(requestBuilder).FindSubscriptions(
|
2021-01-04 22:49:28 +01:00
|
|
|
subscriptionDiscoveryRequest.URL,
|
2023-10-22 20:10:56 +02:00
|
|
|
rssbridgeURL,
|
2018-06-20 07:58:29 +02:00
|
|
|
)
|
2023-10-22 04:50:29 +02:00
|
|
|
|
|
|
|
if localizedError != nil {
|
|
|
|
json.ServerError(w, r, localizedError.Error())
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-10-22 04:50:29 +02:00
|
|
|
if len(subscriptions) == 0 {
|
2018-10-08 03:42:43 +02:00
|
|
|
json.NotFound(w, r)
|
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
|
|
|
}
|