2018-04-29 19:35:04 -04:00
|
|
|
// Copyright 2018 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-10-07 21:42:43 -04:00
|
|
|
package ui // import "miniflux.app/ui"
|
2018-04-29 19:35:04 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2018-09-19 21:19:24 -04:00
|
|
|
"miniflux.app/http/client"
|
2018-09-03 17:26:40 -04:00
|
|
|
"miniflux.app/http/request"
|
2019-11-29 14:17:14 -05:00
|
|
|
"miniflux.app/http/response/html"
|
2018-08-25 00:51:50 -04:00
|
|
|
"miniflux.app/http/route"
|
|
|
|
"miniflux.app/ui/form"
|
|
|
|
"miniflux.app/ui/session"
|
|
|
|
"miniflux.app/ui/view"
|
2018-04-29 19:35:04 -04:00
|
|
|
)
|
|
|
|
|
2018-11-11 14:28:29 -05:00
|
|
|
func (h *handler) showChooseSubscriptionPage(w http.ResponseWriter, r *http.Request) {
|
|
|
|
sess := session.New(h.store, request.SessionID(r))
|
|
|
|
view := view.New(h.tpl, r, sess)
|
2018-04-29 19:35:04 -04:00
|
|
|
|
2018-11-11 14:28:29 -05:00
|
|
|
user, err := h.store.UserByID(request.UserID(r))
|
2018-04-29 19:35:04 -04:00
|
|
|
if err != nil {
|
2018-10-07 21:42:43 -04:00
|
|
|
html.ServerError(w, r, err)
|
2018-04-29 19:35:04 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-11 14:28:29 -05:00
|
|
|
categories, err := h.store.Categories(user.ID)
|
2018-04-29 19:35:04 -04:00
|
|
|
if err != nil {
|
2018-10-07 21:42:43 -04:00
|
|
|
html.ServerError(w, r, err)
|
2018-04-29 19:35:04 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
view.Set("categories", categories)
|
|
|
|
view.Set("menu", "feeds")
|
|
|
|
view.Set("user", user)
|
2018-11-11 14:28:29 -05:00
|
|
|
view.Set("countUnread", h.store.CountUnreadEntries(user.ID))
|
2020-09-27 19:01:06 -04:00
|
|
|
view.Set("countErrorFeeds", h.store.CountUserFeedsWithErrors(user.ID))
|
2018-09-19 21:19:24 -04:00
|
|
|
view.Set("defaultUserAgent", client.DefaultUserAgent)
|
2018-04-29 19:35:04 -04:00
|
|
|
|
|
|
|
subscriptionForm := form.NewSubscriptionForm(r)
|
|
|
|
if err := subscriptionForm.Validate(); err != nil {
|
|
|
|
view.Set("form", subscriptionForm)
|
|
|
|
view.Set("errorMessage", err.Error())
|
2018-07-06 23:39:28 -04:00
|
|
|
html.OK(w, r, view.Render("add_subscription"))
|
2018-04-29 19:35:04 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-11 14:28:29 -05:00
|
|
|
feed, err := h.feedHandler.CreateFeed(
|
2018-06-20 01:58:29 -04:00
|
|
|
user.ID,
|
|
|
|
subscriptionForm.CategoryID,
|
|
|
|
subscriptionForm.URL,
|
|
|
|
subscriptionForm.Crawler,
|
2018-09-19 21:19:24 -04:00
|
|
|
subscriptionForm.UserAgent,
|
2018-06-20 01:58:29 -04:00
|
|
|
subscriptionForm.Username,
|
|
|
|
subscriptionForm.Password,
|
2019-11-29 14:17:14 -05:00
|
|
|
subscriptionForm.ScraperRules,
|
|
|
|
subscriptionForm.RewriteRules,
|
2020-10-16 17:40:56 -04:00
|
|
|
subscriptionForm.BlocklistRules,
|
|
|
|
subscriptionForm.KeeplistRules,
|
2020-09-10 02:28:54 -04:00
|
|
|
subscriptionForm.FetchViaProxy,
|
2018-06-20 01:58:29 -04:00
|
|
|
)
|
2018-04-29 19:35:04 -04:00
|
|
|
if err != nil {
|
|
|
|
view.Set("form", subscriptionForm)
|
|
|
|
view.Set("errorMessage", err)
|
2018-07-06 23:39:28 -04:00
|
|
|
html.OK(w, r, view.Render("add_subscription"))
|
2018-04-29 19:35:04 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-11-11 14:28:29 -05:00
|
|
|
html.Redirect(w, r, route.Path(h.router, "feedEntries", "feedID", feed.ID))
|
2018-04-29 19:35:04 -04:00
|
|
|
}
|