mirror of
https://git.vectorsigma.ru/public/AdGuardHome.git
synced 2026-08-03 23:29:32 +00:00
Merge in DNS/adguard-home from AGDNS-3061-config-modifier to master Squashed commit of the following: commit a0068547bd0209d12e8dbf98ddd5e4ed2545cdd0 Merge: 97b798af6451255675Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Tue Aug 5 17:39:31 2025 +0300 Merge branch 'master' into AGDNS-3061-config-modifier commit 97b798af6a50ee27ee5ed2bcf1c4c3670f5afc5d Merge: 96d21efc9b8043e4f0Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Wed Jul 30 20:27:41 2025 +0300 Merge branch 'master' into AGDNS-3061-config-modifier commit 96d21efc984073adef5026de8a03b5bf94542648 Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Wed Jul 30 20:18:43 2025 +0300 all: imp code commit 67c5608b4be3bd712a0ab5980f25ecea1ed21d65 Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Tue Jul 29 20:31:19 2025 +0300 all: imp code commit 52f45a9f70f57d8e7f7fc0e9e8291ff0dde74343 Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Mon Jul 28 20:32:13 2025 +0300 all: use config modifier commit d389ffd286460d8ff1964bd2ee8dabdafb832b9b Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Fri Jul 25 14:20:31 2025 +0300 bamboo-specs: fix ci commit 3f303ac9131a07e4af5783696b237436fd93d65c Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Fri Jul 25 14:18:42 2025 +0300 home: config modifier
114 lines
2.3 KiB
Go
114 lines
2.3 KiB
Go
package home
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghhttp"
|
|
)
|
|
|
|
// Theme is an enum of all allowed UI themes.
|
|
type Theme string
|
|
|
|
// Allowed [Theme] values.
|
|
//
|
|
// Keep in sync with client/src/helpers/constants.ts.
|
|
const (
|
|
ThemeAuto Theme = "auto"
|
|
ThemeLight Theme = "light"
|
|
ThemeDark Theme = "dark"
|
|
)
|
|
|
|
// UnmarshalText implements [encoding.TextUnmarshaler] interface for *Theme.
|
|
func (t *Theme) UnmarshalText(b []byte) (err error) {
|
|
switch string(b) {
|
|
case "auto":
|
|
*t = ThemeAuto
|
|
case "dark":
|
|
*t = ThemeDark
|
|
case "light":
|
|
*t = ThemeLight
|
|
default:
|
|
return fmt.Errorf("invalid theme %q, supported: %q, %q, %q", b, ThemeAuto, ThemeDark, ThemeLight)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// profileJSON is an object for /control/profile and /control/profile/update
|
|
// endpoints.
|
|
type profileJSON struct {
|
|
Name string `json:"name"`
|
|
Language string `json:"language"`
|
|
Theme Theme `json:"theme"`
|
|
}
|
|
|
|
// handleGetProfile is the handler for GET /control/profile endpoint.
|
|
func (web *webAPI) handleGetProfile(w http.ResponseWriter, r *http.Request) {
|
|
var name string
|
|
if !web.auth.isGLiNet {
|
|
u, ok := webUserFromContext(r.Context())
|
|
if !ok {
|
|
w.WriteHeader(http.StatusUnauthorized)
|
|
|
|
return
|
|
}
|
|
|
|
name = string(u.Login)
|
|
}
|
|
|
|
var resp profileJSON
|
|
func() {
|
|
config.RLock()
|
|
defer config.RUnlock()
|
|
|
|
resp = profileJSON{
|
|
Name: name,
|
|
Language: config.Language,
|
|
Theme: config.Theme,
|
|
}
|
|
}()
|
|
|
|
aghhttp.WriteJSONResponseOK(w, r, resp)
|
|
}
|
|
|
|
// handlePutProfile is the handler for PUT /control/profile/update endpoint.
|
|
func (web *webAPI) handlePutProfile(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
|
|
if aghhttp.WriteTextPlainDeprecated(w, r) {
|
|
return
|
|
}
|
|
|
|
profileReq := &profileJSON{}
|
|
err := json.NewDecoder(r.Body).Decode(profileReq)
|
|
if err != nil {
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "reading req: %s", err)
|
|
|
|
return
|
|
}
|
|
|
|
lang := profileReq.Language
|
|
if !allowedLanguages.Has(lang) {
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "unknown language: %q", lang)
|
|
|
|
return
|
|
}
|
|
|
|
theme := profileReq.Theme
|
|
|
|
func() {
|
|
config.Lock()
|
|
defer config.Unlock()
|
|
|
|
config.Language = lang
|
|
config.Theme = theme
|
|
web.logger.InfoContext(ctx, "profile updated", "lang", lang, "theme", theme)
|
|
}()
|
|
|
|
web.confModifier.Apply(ctx)
|
|
|
|
aghhttp.OK(w)
|
|
}
|