mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-12-15 11:22:49 +03:00
61b4043775
Updates #5685. Squashed commit of the following: commit 5312147abfa0914c896acbf1e88f8c8f1af90f2b Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Thu Apr 6 14:09:44 2023 +0300 safesearch: imp tests, logs commit 298b5d24ce292c5f83ebe33d1e92329e4b3c1acc Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Wed Apr 5 20:36:16 2023 +0300 safesearch: fix filters, logging commit 63d6ca5d694d45705473f2f0410e9e0b49cf7346 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Wed Apr 5 20:24:47 2023 +0300 all: dry; fix logs commit fdbf2f364fd0484b47b3161bf6f4581856fdf47b Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Wed Apr 5 20:01:08 2023 +0300 all: fix safe search update
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.confLock, &d.Config.SafeSearchConf.Enabled, true)
|
|
d.Config.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.confLock, &d.Config.SafeSearchConf.Enabled, false)
|
|
d.Config.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.confLock.RLock()
|
|
defer d.confLock.RUnlock()
|
|
|
|
resp = d.Config.SafeSearchConf
|
|
}()
|
|
|
|
_ = aghhttp.WriteJSONResponse(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(conf)
|
|
if err != nil {
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "updating: %s", err)
|
|
|
|
return
|
|
}
|
|
|
|
func() {
|
|
d.confLock.Lock()
|
|
defer d.confLock.Unlock()
|
|
|
|
d.Config.SafeSearchConf = conf
|
|
}()
|
|
|
|
d.Config.ConfigModified()
|
|
|
|
aghhttp.OK(w)
|
|
}
|