mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-12-15 03:02:07 +03:00
6363f8a2e7
Squashed commit of the following: commit1909dfed99
Merge:3856fda5f
2c64ab5a5
Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Wed Oct 9 16:21:38 2024 +0300 Merge branch 'master' into AGDNS-2374-slog-safesearch commit3856fda5f3
Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Tue Oct 8 20:04:34 2024 +0300 home: imp code commitde774009aa
Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Mon Oct 7 16:41:58 2024 +0300 all: imp code commit038bae59d5
Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Thu Oct 3 20:24:48 2024 +0300 all: imp code commit792975e248
Author: Stanislav Chzhen <s.chzhen@adguard.com> Date: Thu Oct 3 15:46:40 2024 +0300 all: slog safesearch
72 lines
1.7 KiB
Go
72 lines
1.7 KiB
Go
package filtering
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghhttp"
|
|
)
|
|
|
|
// handleSafeSearchEnable is the handler for POST /control/safesearch/enable
|
|
// HTTP API.
|
|
//
|
|
// Deprecated: Use handleSafeSearchSettings.
|
|
func (d *DNSFilter) handleSafeSearchEnable(w http.ResponseWriter, r *http.Request) {
|
|
setProtectedBool(d.confMu, &d.conf.SafeSearchConf.Enabled, true)
|
|
d.conf.ConfigModified()
|
|
}
|
|
|
|
// handleSafeSearchDisable is the handler for POST /control/safesearch/disable
|
|
// HTTP API.
|
|
//
|
|
// Deprecated: Use handleSafeSearchSettings.
|
|
func (d *DNSFilter) handleSafeSearchDisable(w http.ResponseWriter, r *http.Request) {
|
|
setProtectedBool(d.confMu, &d.conf.SafeSearchConf.Enabled, false)
|
|
d.conf.ConfigModified()
|
|
}
|
|
|
|
// handleSafeSearchStatus is the handler for GET /control/safesearch/status
|
|
// HTTP API.
|
|
func (d *DNSFilter) handleSafeSearchStatus(w http.ResponseWriter, r *http.Request) {
|
|
var resp SafeSearchConfig
|
|
func() {
|
|
d.confMu.RLock()
|
|
defer d.confMu.RUnlock()
|
|
|
|
resp = d.conf.SafeSearchConf
|
|
}()
|
|
|
|
aghhttp.WriteJSONResponseOK(w, r, resp)
|
|
}
|
|
|
|
// handleSafeSearchSettings is the handler for PUT /control/safesearch/settings
|
|
// HTTP API.
|
|
func (d *DNSFilter) handleSafeSearchSettings(w http.ResponseWriter, r *http.Request) {
|
|
req := &SafeSearchConfig{}
|
|
err := json.NewDecoder(r.Body).Decode(req)
|
|
if err != nil {
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "reading req: %s", err)
|
|
|
|
return
|
|
}
|
|
|
|
conf := *req
|
|
err = d.safeSearch.Update(r.Context(), conf)
|
|
if err != nil {
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "updating: %s", err)
|
|
|
|
return
|
|
}
|
|
|
|
func() {
|
|
d.confMu.Lock()
|
|
defer d.confMu.Unlock()
|
|
|
|
d.conf.SafeSearchConf = conf
|
|
}()
|
|
|
|
d.conf.ConfigModified()
|
|
|
|
aghhttp.OK(w)
|
|
}
|