119 lines
4.1 KiB
Go
119 lines
4.1 KiB
Go
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package ui // import "miniflux.app/v2/internal/ui"
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"miniflux.app/v2/internal/config"
|
|
"miniflux.app/v2/internal/http/request"
|
|
"miniflux.app/v2/internal/http/response/html"
|
|
"miniflux.app/v2/internal/http/route"
|
|
"miniflux.app/v2/internal/locale"
|
|
"miniflux.app/v2/internal/model"
|
|
feedHandler "miniflux.app/v2/internal/reader/handler"
|
|
"miniflux.app/v2/internal/reader/subscription"
|
|
"miniflux.app/v2/internal/ui/form"
|
|
"miniflux.app/v2/internal/ui/session"
|
|
"miniflux.app/v2/internal/ui/view"
|
|
)
|
|
|
|
func (h *handler) submitSubscription(w http.ResponseWriter, r *http.Request) {
|
|
sess := session.New(h.store, request.SessionID(r))
|
|
v := view.New(h.tpl, r, sess)
|
|
|
|
user, err := h.store.UserByID(request.UserID(r))
|
|
if err != nil {
|
|
html.ServerError(w, r, err)
|
|
return
|
|
}
|
|
|
|
categories, err := h.store.Categories(user.ID)
|
|
if err != nil {
|
|
html.ServerError(w, r, err)
|
|
return
|
|
}
|
|
|
|
v.Set("categories", categories)
|
|
v.Set("menu", "feeds")
|
|
v.Set("user", user)
|
|
v.Set("countUnread", h.store.CountUnreadEntries(user.ID))
|
|
v.Set("countErrorFeeds", h.store.CountUserFeedsWithErrors(user.ID))
|
|
v.Set("defaultUserAgent", config.Opts.HTTPClientUserAgent())
|
|
v.Set("hasProxyConfigured", config.Opts.HasHTTPClientProxyConfigured())
|
|
|
|
subscriptionForm := form.NewSubscriptionForm(r)
|
|
if validationErr := subscriptionForm.Validate(); validationErr != nil {
|
|
v.Set("form", subscriptionForm)
|
|
v.Set("errorMessage", validationErr.Translate(user.Language))
|
|
html.OK(w, r, v.Render("add_subscription"))
|
|
return
|
|
}
|
|
|
|
var rssbridgeURL string
|
|
if intg, err := h.store.Integration(user.ID); err == nil && intg != nil && intg.RSSBridgeEnabled {
|
|
rssbridgeURL = intg.RSSBridgeURL
|
|
}
|
|
|
|
subscriptions, localizedError := subscription.FindSubscriptions(
|
|
subscriptionForm.URL,
|
|
subscriptionForm.UserAgent,
|
|
subscriptionForm.Cookie,
|
|
subscriptionForm.Username,
|
|
subscriptionForm.Password,
|
|
subscriptionForm.FetchViaProxy,
|
|
subscriptionForm.AllowSelfSignedCertificates,
|
|
rssbridgeURL,
|
|
)
|
|
if localizedError != nil {
|
|
v.Set("form", subscriptionForm)
|
|
v.Set("errorMessage", localizedError.Translate(user.Language))
|
|
html.OK(w, r, v.Render("add_subscription"))
|
|
return
|
|
}
|
|
|
|
n := len(subscriptions)
|
|
switch {
|
|
case n == 0:
|
|
v.Set("form", subscriptionForm)
|
|
v.Set("errorMessage", locale.NewLocalizedError("error.subscription_not_found").Translate(user.Language))
|
|
html.OK(w, r, v.Render("add_subscription"))
|
|
case n == 1:
|
|
feed, localizedError := feedHandler.CreateFeed(h.store, user.ID, &model.FeedCreationRequest{
|
|
CategoryID: subscriptionForm.CategoryID,
|
|
FeedURL: subscriptions[0].URL,
|
|
Crawler: subscriptionForm.Crawler,
|
|
AllowSelfSignedCertificates: subscriptionForm.AllowSelfSignedCertificates,
|
|
UserAgent: subscriptionForm.UserAgent,
|
|
Cookie: subscriptionForm.Cookie,
|
|
Username: subscriptionForm.Username,
|
|
Password: subscriptionForm.Password,
|
|
ScraperRules: subscriptionForm.ScraperRules,
|
|
RewriteRules: subscriptionForm.RewriteRules,
|
|
BlocklistRules: subscriptionForm.BlocklistRules,
|
|
KeeplistRules: subscriptionForm.KeeplistRules,
|
|
UrlRewriteRules: subscriptionForm.UrlRewriteRules,
|
|
FetchViaProxy: subscriptionForm.FetchViaProxy,
|
|
})
|
|
if localizedError != nil {
|
|
v.Set("form", subscriptionForm)
|
|
v.Set("errorMessage", localizedError.Translate(user.Language))
|
|
html.OK(w, r, v.Render("add_subscription"))
|
|
return
|
|
}
|
|
|
|
html.Redirect(w, r, route.Path(h.router, "feedEntries", "feedID", feed.ID))
|
|
case n > 1:
|
|
v := view.New(h.tpl, r, sess)
|
|
v.Set("subscriptions", subscriptions)
|
|
v.Set("form", subscriptionForm)
|
|
v.Set("menu", "feeds")
|
|
v.Set("user", user)
|
|
v.Set("countUnread", h.store.CountUnreadEntries(user.ID))
|
|
v.Set("countErrorFeeds", h.store.CountUserFeedsWithErrors(user.ID))
|
|
v.Set("hasProxyConfigured", config.Opts.HasHTTPClientProxyConfigured())
|
|
|
|
html.OK(w, r, v.Render("choose_subscription"))
|
|
}
|
|
}
|