2018-04-30 01:35:04 +02: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-09-03 23:26:40 +02:00
|
|
|
package ui // import "miniflux.app/ui"
|
2018-04-30 01:35:04 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2018-09-03 23:26:40 +02:00
|
|
|
"miniflux.app/http/request"
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/http/response/html"
|
|
|
|
"miniflux.app/ui/session"
|
|
|
|
"miniflux.app/ui/view"
|
2018-04-30 01:35:04 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// CreateCategory shows the form to create a new category.
|
|
|
|
func (c *Controller) CreateCategory(w http.ResponseWriter, r *http.Request) {
|
2018-09-03 23:26:40 +02:00
|
|
|
user, err := c.store.UserByID(request.UserID(r))
|
2018-04-30 01:35:04 +02:00
|
|
|
if err != nil {
|
|
|
|
html.ServerError(w, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-09-03 23:26:40 +02:00
|
|
|
sess := session.New(c.store, request.SessionID(r))
|
|
|
|
view := view.New(c.tpl, r, sess)
|
2018-04-30 01:35:04 +02:00
|
|
|
view.Set("menu", "categories")
|
|
|
|
view.Set("user", user)
|
|
|
|
view.Set("countUnread", c.store.CountUnreadEntries(user.ID))
|
2018-08-27 01:18:07 +02:00
|
|
|
view.Set("countErrorFeeds", c.store.CountErrorFeeds(user.ID))
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2018-07-07 05:39:28 +02:00
|
|
|
html.OK(w, r, view.Render("create_category"))
|
2018-04-30 01:35:04 +02:00
|
|
|
}
|