2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package ui // import "miniflux.app/v2/internal/ui"
|
2018-04-30 01:35:04 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/http/request"
|
|
|
|
"miniflux.app/v2/internal/http/response/html"
|
|
|
|
"miniflux.app/v2/internal/http/route"
|
|
|
|
"miniflux.app/v2/internal/model"
|
|
|
|
"miniflux.app/v2/internal/ui/form"
|
|
|
|
"miniflux.app/v2/internal/ui/session"
|
|
|
|
"miniflux.app/v2/internal/ui/view"
|
|
|
|
"miniflux.app/v2/internal/validator"
|
2018-04-30 01:35:04 +02:00
|
|
|
)
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
func (h *handler) updateCategory(w http.ResponseWriter, r *http.Request) {
|
2021-01-04 07:28:04 +01:00
|
|
|
loggedUser, err := h.store.UserByID(request.UserID(r))
|
2018-04-30 01:35:04 +02:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.ServerError(w, r, err)
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-09-24 06:02:26 +02:00
|
|
|
categoryID := request.RouteInt64Param(r, "categoryID")
|
2018-11-11 20:28:29 +01:00
|
|
|
category, err := h.store.Category(request.UserID(r), categoryID)
|
2018-04-30 01:35:04 +02:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.ServerError(w, r, err)
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if category == nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.NotFound(w, r)
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
categoryForm := form.NewCategoryForm(r)
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
sess := session.New(h.store, request.SessionID(r))
|
|
|
|
view := view.New(h.tpl, r, sess)
|
2018-04-30 01:35:04 +02:00
|
|
|
view.Set("form", categoryForm)
|
|
|
|
view.Set("category", category)
|
|
|
|
view.Set("menu", "categories")
|
2021-01-04 07:28:04 +01:00
|
|
|
view.Set("user", loggedUser)
|
|
|
|
view.Set("countUnread", h.store.CountUnreadEntries(loggedUser.ID))
|
|
|
|
view.Set("countErrorFeeds", h.store.CountUserFeedsWithErrors(loggedUser.ID))
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2021-06-03 02:39:47 +02:00
|
|
|
categoryRequest := &model.CategoryRequest{
|
|
|
|
Title: categoryForm.Title,
|
|
|
|
HideGlobally: categoryForm.HideGlobally,
|
|
|
|
}
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2021-01-04 07:28:04 +01:00
|
|
|
if validationErr := validator.ValidateCategoryModification(h.store, loggedUser.ID, category.ID, categoryRequest); validationErr != nil {
|
2023-10-22 04:50:29 +02:00
|
|
|
view.Set("errorMessage", validationErr.Translate(loggedUser.Language))
|
2021-01-04 07:28:04 +01:00
|
|
|
html.OK(w, r, view.Render("create_category"))
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-04 07:28:04 +01:00
|
|
|
categoryRequest.Patch(category)
|
|
|
|
if err := h.store.UpdateCategory(category); err != nil {
|
2023-09-25 01:32:09 +02:00
|
|
|
html.ServerError(w, r, err)
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-11-18 04:44:12 +01:00
|
|
|
html.Redirect(w, r, route.Path(h.router, "categoryFeeds", "categoryID", categoryID))
|
2018-04-30 01:35:04 +02:00
|
|
|
}
|