| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- // 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/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"
- )
- func (h *handler) saveCategory(w http.ResponseWriter, r *http.Request) {
- user, err := h.store.UserByID(request.UserID(r))
- if err != nil {
- html.ServerError(w, r, err)
- return
- }
- categoryForm := form.NewCategoryForm(r)
- sess := session.New(h.store, request.SessionID(r))
- view := view.New(h.tpl, r, sess)
- view.Set("form", categoryForm)
- view.Set("menu", "categories")
- view.Set("user", user)
- view.Set("countUnread", h.store.CountUnreadEntries(user.ID))
- view.Set("countErrorFeeds", h.store.CountUserFeedsWithErrors(user.ID))
- categoryCreationRequest := &model.CategoryCreationRequest{Title: categoryForm.Title}
- if validationErr := validator.ValidateCategoryCreation(h.store, user.ID, categoryCreationRequest); validationErr != nil {
- view.Set("errorMessage", validationErr.Translate(user.Language))
- html.OK(w, r, view.Render("create_category"))
- return
- }
- if _, err = h.store.CreateCategory(user.ID, categoryCreationRequest); err != nil {
- html.ServerError(w, r, err)
- return
- }
- html.Redirect(w, r, route.Path(h.router, "categories"))
- }
|