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-08-25 00:51:50 -04:00
|
|
|
"miniflux.app/http/response/html"
|
2018-09-03 17:26:40 -04:00
|
|
|
"miniflux.app/http/request"
|
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
|
|
|
)
|
|
|
|
|
|
|
|
// ChooseSubscription shows a page to choose a subscription.
|
|
|
|
func (c *Controller) ChooseSubscription(w http.ResponseWriter, r *http.Request) {
|
2018-09-03 17:26:40 -04:00
|
|
|
sess := session.New(c.store, request.SessionID(r))
|
|
|
|
view := view.New(c.tpl, r, sess)
|
2018-04-29 19:35:04 -04:00
|
|
|
|
2018-09-03 17:26:40 -04:00
|
|
|
user, err := c.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
|
|
|
|
}
|
|
|
|
|
|
|
|
categories, err := c.store.Categories(user.ID)
|
|
|
|
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)
|
|
|
|
view.Set("countUnread", c.store.CountUnreadEntries(user.ID))
|
2018-08-26 19:18:07 -04:00
|
|
|
view.Set("countErrorFeeds", c.store.CountErrorFeeds(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-06-20 01:58:29 -04:00
|
|
|
feed, err := c.feedHandler.CreateFeed(
|
|
|
|
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,
|
|
|
|
)
|
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-10-07 21:42:43 -04:00
|
|
|
html.Redirect(w, r, route.Path(c.router, "feedEntries", "feedID", feed.ID))
|
2018-04-29 19:35:04 -04:00
|
|
|
}
|