2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2020-03-02 02:38:29 +01:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package ui // import "miniflux.app/v2/internal/ui"
|
2020-03-02 02:38:29 +01: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"
|
2023-10-22 04:50:29 +02:00
|
|
|
"miniflux.app/v2/internal/locale"
|
2023-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/model"
|
|
|
|
"miniflux.app/v2/internal/ui/form"
|
|
|
|
"miniflux.app/v2/internal/ui/session"
|
|
|
|
"miniflux.app/v2/internal/ui/view"
|
2020-03-02 02:38:29 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
func (h *handler) saveAPIKey(w http.ResponseWriter, r *http.Request) {
|
|
|
|
user, err := h.store.UserByID(request.UserID(r))
|
|
|
|
if err != nil {
|
|
|
|
html.ServerError(w, r, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
apiKeyForm := form.NewAPIKeyForm(r)
|
|
|
|
|
|
|
|
sess := session.New(h.store, request.SessionID(r))
|
|
|
|
view := view.New(h.tpl, r, sess)
|
|
|
|
view.Set("form", apiKeyForm)
|
|
|
|
view.Set("menu", "settings")
|
|
|
|
view.Set("user", user)
|
|
|
|
view.Set("countUnread", h.store.CountUnreadEntries(user.ID))
|
2020-09-28 01:01:06 +02:00
|
|
|
view.Set("countErrorFeeds", h.store.CountUserFeedsWithErrors(user.ID))
|
2020-03-02 02:38:29 +01:00
|
|
|
|
2023-10-22 04:50:29 +02:00
|
|
|
if validationErr := apiKeyForm.Validate(); validationErr != nil {
|
|
|
|
view.Set("errorMessage", validationErr.Translate(user.Language))
|
2020-03-02 02:38:29 +01:00
|
|
|
html.OK(w, r, view.Render("create_api_key"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if h.store.APIKeyExists(user.ID, apiKeyForm.Description) {
|
2023-10-22 04:50:29 +02:00
|
|
|
view.Set("errorMessage", locale.NewLocalizedError("error.api_key_already_exists").Translate(user.Language))
|
2020-03-02 02:38:29 +01:00
|
|
|
html.OK(w, r, view.Render("create_api_key"))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
apiKey := model.NewAPIKey(user.ID, apiKeyForm.Description)
|
|
|
|
if err = h.store.CreateAPIKey(apiKey); err != nil {
|
2023-09-25 01:32:09 +02:00
|
|
|
html.ServerError(w, r, err)
|
2020-03-02 02:38:29 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
html.Redirect(w, r, route.Path(h.router, "apiKeys"))
|
|
|
|
}
|