2019-09-26 16:40:52 +03:00
|
|
|
package home
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
2022-11-09 14:37:07 +03:00
|
|
|
"net/netip"
|
2021-06-29 15:53:28 +03:00
|
|
|
|
2023-04-14 15:25:04 +03:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghalg"
|
2021-12-16 20:54:59 +03:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghhttp"
|
2023-09-01 15:24:44 +03:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/client"
|
2023-03-15 14:31:07 +03:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/filtering"
|
2023-06-30 11:56:03 +03:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/schedule"
|
2023-06-21 12:53:53 +03:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/whois"
|
2019-09-26 16:40:52 +03:00
|
|
|
)
|
|
|
|
|
2021-05-06 16:41:33 +03:00
|
|
|
// clientJSON is a common structure used by several handlers to deal with
|
|
|
|
// clients. Some of the fields are only necessary in one or two handlers and
|
|
|
|
// are thus made pointers with an omitempty tag.
|
|
|
|
//
|
|
|
|
// TODO(a.garipov): Consider using nullbool and an optional string here? Or
|
|
|
|
// split into several structs?
|
2019-09-26 16:40:52 +03:00
|
|
|
type clientJSON struct {
|
2021-05-06 16:41:33 +03:00
|
|
|
// Disallowed, if non-nil and false, means that the client's IP is
|
|
|
|
// allowed. Otherwise, the IP is blocked.
|
|
|
|
Disallowed *bool `json:"disallowed,omitempty"`
|
|
|
|
|
|
|
|
// DisallowedRule is the rule due to which the client is disallowed.
|
|
|
|
// If Disallowed is true and this string is empty, the client IP is
|
|
|
|
// disallowed by the "allowed IP list", that is it is not included in
|
|
|
|
// the allowlist.
|
|
|
|
DisallowedRule *string `json:"disallowed_rule,omitempty"`
|
|
|
|
|
2023-06-21 12:53:53 +03:00
|
|
|
// WHOIS is the filtered WHOIS data of a client.
|
|
|
|
WHOIS *whois.Info `json:"whois_info,omitempty"`
|
2023-03-23 15:25:58 +03:00
|
|
|
SafeSearchConf *filtering.SafeSearchConfig `json:"safe_search"`
|
2021-05-06 16:41:33 +03:00
|
|
|
|
2023-08-29 20:03:40 +03:00
|
|
|
// Schedule is blocked services schedule for every day of the week.
|
|
|
|
Schedule *schedule.Weekly `json:"blocked_services_schedule"`
|
|
|
|
|
2021-05-06 16:41:33 +03:00
|
|
|
Name string `json:"name"`
|
|
|
|
|
2023-08-29 20:03:40 +03:00
|
|
|
// BlockedServices is the names of blocked services.
|
2021-05-06 16:41:33 +03:00
|
|
|
BlockedServices []string `json:"blocked_services"`
|
|
|
|
IDs []string `json:"ids"`
|
|
|
|
Tags []string `json:"tags"`
|
|
|
|
Upstreams []string `json:"upstreams"`
|
|
|
|
|
2023-03-15 14:31:07 +03:00
|
|
|
FilteringEnabled bool `json:"filtering_enabled"`
|
|
|
|
ParentalEnabled bool `json:"parental_enabled"`
|
|
|
|
SafeBrowsingEnabled bool `json:"safebrowsing_enabled"`
|
|
|
|
// Deprecated: use safeSearchConf.
|
2021-05-06 16:41:33 +03:00
|
|
|
SafeSearchEnabled bool `json:"safesearch_enabled"`
|
|
|
|
UseGlobalBlockedServices bool `json:"use_global_blocked_services"`
|
|
|
|
UseGlobalSettings bool `json:"use_global_settings"`
|
2023-04-14 15:25:04 +03:00
|
|
|
|
|
|
|
IgnoreQueryLog aghalg.NullBool `json:"ignore_querylog"`
|
|
|
|
IgnoreStatistics aghalg.NullBool `json:"ignore_statistics"`
|
2019-09-26 16:40:52 +03:00
|
|
|
}
|
|
|
|
|
2023-08-29 20:03:40 +03:00
|
|
|
// copySettings returns a copy of specific settings from JSON or a previous
|
|
|
|
// client.
|
|
|
|
func (j *clientJSON) copySettings(
|
|
|
|
prev *Client,
|
|
|
|
) (weekly *schedule.Weekly, ignoreQueryLog, ignoreStatistics bool) {
|
|
|
|
if j.Schedule != nil {
|
|
|
|
weekly = j.Schedule.Clone()
|
|
|
|
} else if prev != nil && prev.BlockedServices != nil {
|
|
|
|
weekly = prev.BlockedServices.Schedule.Clone()
|
|
|
|
} else {
|
|
|
|
weekly = schedule.EmptyWeekly()
|
|
|
|
}
|
|
|
|
|
|
|
|
if j.IgnoreQueryLog != aghalg.NBNull {
|
|
|
|
ignoreQueryLog = j.IgnoreQueryLog == aghalg.NBTrue
|
|
|
|
} else if prev != nil {
|
|
|
|
ignoreQueryLog = prev.IgnoreQueryLog
|
|
|
|
}
|
|
|
|
|
|
|
|
if j.IgnoreStatistics != aghalg.NBNull {
|
|
|
|
ignoreStatistics = j.IgnoreStatistics == aghalg.NBTrue
|
|
|
|
} else if prev != nil {
|
|
|
|
ignoreStatistics = prev.IgnoreStatistics
|
|
|
|
}
|
|
|
|
|
|
|
|
return weekly, ignoreQueryLog, ignoreStatistics
|
|
|
|
}
|
|
|
|
|
2021-04-02 17:30:39 +03:00
|
|
|
type runtimeClientJSON struct {
|
2023-06-21 12:53:53 +03:00
|
|
|
WHOIS *whois.Info `json:"whois_info"`
|
2021-04-02 17:30:39 +03:00
|
|
|
|
2023-09-01 15:24:44 +03:00
|
|
|
IP netip.Addr `json:"ip"`
|
|
|
|
Name string `json:"name"`
|
|
|
|
Source client.Source `json:"source"`
|
2019-09-26 16:40:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type clientListJSON struct {
|
2021-06-29 15:53:28 +03:00
|
|
|
Clients []*clientJSON `json:"clients"`
|
2021-04-02 17:30:39 +03:00
|
|
|
RuntimeClients []runtimeClientJSON `json:"auto_clients"`
|
|
|
|
Tags []string `json:"supported_tags"`
|
2019-09-26 16:40:52 +03:00
|
|
|
}
|
|
|
|
|
2023-03-23 15:25:58 +03:00
|
|
|
// handleGetClients is the handler for GET /control/clients HTTP API.
|
2021-12-16 20:54:59 +03:00
|
|
|
func (clients *clientsContainer) handleGetClients(w http.ResponseWriter, r *http.Request) {
|
2019-09-26 16:40:52 +03:00
|
|
|
data := clientListJSON{}
|
|
|
|
|
2019-11-22 14:37:25 +03:00
|
|
|
clients.lock.Lock()
|
2021-04-02 17:30:39 +03:00
|
|
|
defer clients.lock.Unlock()
|
|
|
|
|
2019-11-22 14:37:25 +03:00
|
|
|
for _, c := range clients.list {
|
2019-09-26 16:40:52 +03:00
|
|
|
cj := clientToJSON(c)
|
|
|
|
data.Clients = append(data.Clients, cj)
|
|
|
|
}
|
2021-06-29 15:53:28 +03:00
|
|
|
|
2022-10-24 17:49:52 +03:00
|
|
|
for ip, rc := range clients.ipToRC {
|
2021-04-02 17:30:39 +03:00
|
|
|
cj := runtimeClientJSON{
|
2023-06-21 12:53:53 +03:00
|
|
|
WHOIS: rc.WHOIS,
|
2021-06-29 15:53:28 +03:00
|
|
|
|
2022-08-04 19:05:28 +03:00
|
|
|
Name: rc.Host,
|
|
|
|
Source: rc.Source,
|
2022-11-09 14:37:07 +03:00
|
|
|
IP: ip,
|
2019-09-26 16:40:52 +03:00
|
|
|
}
|
|
|
|
|
2021-04-02 17:30:39 +03:00
|
|
|
data.RuntimeClients = append(data.RuntimeClients, cj)
|
2022-10-24 17:49:52 +03:00
|
|
|
}
|
2019-09-26 16:40:52 +03:00
|
|
|
|
2023-08-30 14:02:12 +03:00
|
|
|
for _, l := range clients.dhcp.Leases() {
|
|
|
|
cj := runtimeClientJSON{
|
|
|
|
Name: l.Hostname,
|
2023-09-01 15:24:44 +03:00
|
|
|
Source: client.SourceDHCP,
|
2023-08-30 14:02:12 +03:00
|
|
|
IP: l.IP,
|
|
|
|
WHOIS: &whois.Info{},
|
|
|
|
}
|
|
|
|
|
|
|
|
data.RuntimeClients = append(data.RuntimeClients, cj)
|
|
|
|
}
|
|
|
|
|
2020-01-28 14:06:52 +03:00
|
|
|
data.Tags = clientTags
|
|
|
|
|
2023-08-29 20:03:40 +03:00
|
|
|
aghhttp.WriteJSONResponseOK(w, r, data)
|
2019-09-26 16:40:52 +03:00
|
|
|
}
|
|
|
|
|
2023-03-23 15:25:58 +03:00
|
|
|
// jsonToClient converts JSON object to Client object.
|
2023-04-14 15:25:04 +03:00
|
|
|
func (clients *clientsContainer) jsonToClient(cj clientJSON, prev *Client) (c *Client, err error) {
|
2023-03-23 15:25:58 +03:00
|
|
|
var safeSearchConf filtering.SafeSearchConfig
|
|
|
|
if cj.SafeSearchConf != nil {
|
|
|
|
safeSearchConf = *cj.SafeSearchConf
|
|
|
|
} else {
|
|
|
|
// TODO(d.kolyshev): Remove after cleaning the deprecated
|
|
|
|
// [clientJSON.SafeSearchEnabled] field.
|
2023-04-06 14:12:50 +03:00
|
|
|
safeSearchConf = filtering.SafeSearchConfig{
|
|
|
|
Enabled: cj.SafeSearchEnabled,
|
|
|
|
}
|
2023-03-23 15:25:58 +03:00
|
|
|
|
|
|
|
// Set default service flags for enabled safesearch.
|
|
|
|
if safeSearchConf.Enabled {
|
|
|
|
safeSearchConf.Bing = true
|
|
|
|
safeSearchConf.DuckDuckGo = true
|
|
|
|
safeSearchConf.Google = true
|
|
|
|
safeSearchConf.Pixabay = true
|
|
|
|
safeSearchConf.Yandex = true
|
|
|
|
safeSearchConf.YouTube = true
|
|
|
|
}
|
2023-03-15 14:31:07 +03:00
|
|
|
}
|
|
|
|
|
2023-08-29 20:03:40 +03:00
|
|
|
weekly, ignoreQueryLog, ignoreStatistics := cj.copySettings(prev)
|
|
|
|
|
|
|
|
bs := &filtering.BlockedServices{
|
|
|
|
Schedule: weekly,
|
|
|
|
IDs: cj.BlockedServices,
|
|
|
|
}
|
|
|
|
err = bs.Validate()
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("validating blocked services: %w", err)
|
2023-06-30 11:56:03 +03:00
|
|
|
}
|
|
|
|
|
2023-11-20 15:28:08 +03:00
|
|
|
var upsCacheEnabled bool
|
|
|
|
var upsCacheSize uint32
|
|
|
|
if prev != nil {
|
|
|
|
upsCacheEnabled, upsCacheSize = prev.UpstreamsCacheEnabled, prev.UpstreamsCacheSize
|
|
|
|
}
|
|
|
|
|
2023-04-06 14:12:50 +03:00
|
|
|
c = &Client{
|
|
|
|
safeSearchConf: safeSearchConf,
|
|
|
|
|
|
|
|
Name: cj.Name,
|
|
|
|
|
2023-08-29 20:03:40 +03:00
|
|
|
BlockedServices: bs,
|
2023-06-27 18:03:07 +03:00
|
|
|
|
|
|
|
IDs: cj.IDs,
|
|
|
|
Tags: cj.Tags,
|
|
|
|
Upstreams: cj.Upstreams,
|
2023-04-06 14:12:50 +03:00
|
|
|
|
2023-03-23 15:25:58 +03:00
|
|
|
UseOwnSettings: !cj.UseGlobalSettings,
|
|
|
|
FilteringEnabled: cj.FilteringEnabled,
|
|
|
|
ParentalEnabled: cj.ParentalEnabled,
|
|
|
|
SafeBrowsingEnabled: cj.SafeBrowsingEnabled,
|
2019-09-26 16:40:52 +03:00
|
|
|
UseOwnBlockedServices: !cj.UseGlobalBlockedServices,
|
2023-08-29 20:03:40 +03:00
|
|
|
IgnoreQueryLog: ignoreQueryLog,
|
|
|
|
IgnoreStatistics: ignoreStatistics,
|
2023-11-20 15:28:08 +03:00
|
|
|
UpstreamsCacheEnabled: upsCacheEnabled,
|
|
|
|
UpstreamsCacheSize: upsCacheSize,
|
2023-04-14 15:25:04 +03:00
|
|
|
}
|
|
|
|
|
2023-04-06 14:12:50 +03:00
|
|
|
if safeSearchConf.Enabled {
|
|
|
|
err = c.setSafeSearch(
|
|
|
|
safeSearchConf,
|
|
|
|
clients.safeSearchCacheSize,
|
|
|
|
clients.safeSearchCacheTTL,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("creating safesearch for client %q: %w", c.Name, err)
|
|
|
|
}
|
2019-09-26 16:40:52 +03:00
|
|
|
}
|
2023-04-06 14:12:50 +03:00
|
|
|
|
|
|
|
return c, nil
|
2019-09-26 16:40:52 +03:00
|
|
|
}
|
|
|
|
|
2023-03-23 15:25:58 +03:00
|
|
|
// clientToJSON converts Client object to JSON.
|
2021-06-29 15:53:28 +03:00
|
|
|
func clientToJSON(c *Client) (cj *clientJSON) {
|
2023-03-15 14:31:07 +03:00
|
|
|
// TODO(d.kolyshev): Remove after cleaning the deprecated
|
|
|
|
// [clientJSON.SafeSearchEnabled] field.
|
|
|
|
cloneVal := c.safeSearchConf
|
|
|
|
safeSearchConf := &cloneVal
|
|
|
|
|
2021-06-29 15:53:28 +03:00
|
|
|
return &clientJSON{
|
2019-09-26 16:40:52 +03:00
|
|
|
Name: c.Name,
|
|
|
|
IDs: c.IDs,
|
2020-01-28 14:06:52 +03:00
|
|
|
Tags: c.Tags,
|
2019-09-26 16:40:52 +03:00
|
|
|
UseGlobalSettings: !c.UseOwnSettings,
|
|
|
|
FilteringEnabled: c.FilteringEnabled,
|
|
|
|
ParentalEnabled: c.ParentalEnabled,
|
2023-03-15 14:31:07 +03:00
|
|
|
SafeSearchEnabled: safeSearchConf.Enabled,
|
2023-03-23 15:25:58 +03:00
|
|
|
SafeSearchConf: safeSearchConf,
|
2019-09-26 16:40:52 +03:00
|
|
|
SafeBrowsingEnabled: c.SafeBrowsingEnabled,
|
|
|
|
|
|
|
|
UseGlobalBlockedServices: !c.UseOwnBlockedServices,
|
2023-06-27 18:03:07 +03:00
|
|
|
|
2023-08-29 20:03:40 +03:00
|
|
|
Schedule: c.BlockedServices.Schedule,
|
2023-06-27 18:03:07 +03:00
|
|
|
BlockedServices: c.BlockedServices.IDs,
|
2019-11-06 17:24:15 +03:00
|
|
|
|
|
|
|
Upstreams: c.Upstreams,
|
2023-04-14 15:25:04 +03:00
|
|
|
|
|
|
|
IgnoreQueryLog: aghalg.BoolToNullBool(c.IgnoreQueryLog),
|
|
|
|
IgnoreStatistics: aghalg.BoolToNullBool(c.IgnoreStatistics),
|
2019-09-26 16:40:52 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-23 15:25:58 +03:00
|
|
|
// handleAddClient is the handler for POST /control/clients/add HTTP API.
|
2019-11-22 14:37:25 +03:00
|
|
|
func (clients *clientsContainer) handleAddClient(w http.ResponseWriter, r *http.Request) {
|
2019-09-26 16:40:52 +03:00
|
|
|
cj := clientJSON{}
|
2020-11-23 14:14:08 +03:00
|
|
|
err := json.NewDecoder(r.Body).Decode(&cj)
|
2019-09-26 16:40:52 +03:00
|
|
|
if err != nil {
|
2021-12-16 20:54:59 +03:00
|
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "failed to process request body: %s", err)
|
2020-11-23 14:14:08 +03:00
|
|
|
|
2019-09-26 16:40:52 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-04-14 15:25:04 +03:00
|
|
|
c, err := clients.jsonToClient(cj, nil)
|
2023-04-06 14:12:50 +03:00
|
|
|
if err != nil {
|
|
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "%s", err)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-27 18:32:13 +03:00
|
|
|
ok, err := clients.Add(c)
|
2019-09-26 16:40:52 +03:00
|
|
|
if err != nil {
|
2021-12-16 20:54:59 +03:00
|
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "%s", err)
|
|
|
|
|
2019-09-26 16:40:52 +03:00
|
|
|
return
|
|
|
|
}
|
2021-12-16 20:54:59 +03:00
|
|
|
|
2019-09-26 16:40:52 +03:00
|
|
|
if !ok {
|
2021-12-16 20:54:59 +03:00
|
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "Client already exists")
|
|
|
|
|
2019-09-26 16:40:52 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-10-30 11:52:58 +03:00
|
|
|
onConfigModified()
|
2019-09-26 16:40:52 +03:00
|
|
|
}
|
|
|
|
|
2023-03-23 15:25:58 +03:00
|
|
|
// handleDelClient is the handler for POST /control/clients/delete HTTP API.
|
2019-11-22 14:37:25 +03:00
|
|
|
func (clients *clientsContainer) handleDelClient(w http.ResponseWriter, r *http.Request) {
|
2020-11-23 14:14:08 +03:00
|
|
|
cj := clientJSON{}
|
|
|
|
err := json.NewDecoder(r.Body).Decode(&cj)
|
2019-09-26 16:40:52 +03:00
|
|
|
if err != nil {
|
2021-12-16 20:54:59 +03:00
|
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "failed to process request body: %s", err)
|
2020-11-23 14:14:08 +03:00
|
|
|
|
2019-09-26 16:40:52 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-11-23 14:14:08 +03:00
|
|
|
if len(cj.Name) == 0 {
|
2021-12-16 20:54:59 +03:00
|
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "client's name must be non-empty")
|
2020-11-23 14:14:08 +03:00
|
|
|
|
2019-09-26 16:40:52 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-11-22 14:37:25 +03:00
|
|
|
if !clients.Del(cj.Name) {
|
2021-12-16 20:54:59 +03:00
|
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "Client not found")
|
2022-10-19 16:13:05 +03:00
|
|
|
|
2019-09-26 16:40:52 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-10-30 11:52:58 +03:00
|
|
|
onConfigModified()
|
2019-09-26 16:40:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
type updateJSON struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Data clientJSON `json:"data"`
|
|
|
|
}
|
|
|
|
|
2023-03-23 15:25:58 +03:00
|
|
|
// handleUpdateClient is the handler for POST /control/clients/update HTTP API.
|
2023-04-14 15:25:04 +03:00
|
|
|
//
|
|
|
|
// TODO(s.chzhen): Accept updated parameters instead of whole structure.
|
2019-11-22 14:37:25 +03:00
|
|
|
func (clients *clientsContainer) handleUpdateClient(w http.ResponseWriter, r *http.Request) {
|
2020-11-23 14:14:08 +03:00
|
|
|
dj := updateJSON{}
|
|
|
|
err := json.NewDecoder(r.Body).Decode(&dj)
|
2019-09-26 16:40:52 +03:00
|
|
|
if err != nil {
|
2021-12-16 20:54:59 +03:00
|
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "failed to process request body: %s", err)
|
2019-09-26 16:40:52 +03:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
2020-11-23 14:14:08 +03:00
|
|
|
|
2019-09-26 16:40:52 +03:00
|
|
|
if len(dj.Name) == 0 {
|
2021-12-16 20:54:59 +03:00
|
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "Invalid request")
|
|
|
|
|
2019-09-26 16:40:52 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-04-14 15:25:04 +03:00
|
|
|
var prev *Client
|
|
|
|
var ok bool
|
|
|
|
|
|
|
|
func() {
|
|
|
|
clients.lock.Lock()
|
|
|
|
defer clients.lock.Unlock()
|
|
|
|
|
|
|
|
prev, ok = clients.list[dj.Name]
|
|
|
|
}()
|
|
|
|
|
|
|
|
if !ok {
|
|
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "client not found")
|
|
|
|
}
|
|
|
|
|
|
|
|
c, err := clients.jsonToClient(dj.Data, prev)
|
2023-04-06 14:12:50 +03:00
|
|
|
if err != nil {
|
|
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "%s", err)
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-05-25 17:45:55 +03:00
|
|
|
err = clients.Update(prev, c)
|
2019-09-26 16:40:52 +03:00
|
|
|
if err != nil {
|
2021-12-16 20:54:59 +03:00
|
|
|
aghhttp.Error(r, w, http.StatusBadRequest, "%s", err)
|
|
|
|
|
2019-09-26 16:40:52 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-10-30 11:52:58 +03:00
|
|
|
onConfigModified()
|
2019-09-26 16:40:52 +03:00
|
|
|
}
|
|
|
|
|
2023-03-23 15:25:58 +03:00
|
|
|
// handleFindClient is the handler for GET /control/clients/find HTTP API.
|
2019-11-22 14:37:25 +03:00
|
|
|
func (clients *clientsContainer) handleFindClient(w http.ResponseWriter, r *http.Request) {
|
2019-09-26 16:40:52 +03:00
|
|
|
q := r.URL.Query()
|
2021-06-29 15:53:28 +03:00
|
|
|
data := []map[string]*clientJSON{}
|
2021-01-27 18:32:13 +03:00
|
|
|
for i := 0; i < len(q); i++ {
|
|
|
|
idStr := q.Get(fmt.Sprintf("ip%d", i))
|
|
|
|
if idStr == "" {
|
2019-09-26 16:40:52 +03:00
|
|
|
break
|
|
|
|
}
|
2021-01-15 20:30:48 +03:00
|
|
|
|
2022-11-09 14:37:07 +03:00
|
|
|
ip, _ := netip.ParseAddr(idStr)
|
2021-01-27 18:32:13 +03:00
|
|
|
c, ok := clients.Find(idStr)
|
2021-06-29 15:53:28 +03:00
|
|
|
var cj *clientJSON
|
2019-09-26 16:40:52 +03:00
|
|
|
if !ok {
|
2021-06-29 15:53:28 +03:00
|
|
|
cj = clients.findRuntime(ip, idStr)
|
2019-09-26 16:40:52 +03:00
|
|
|
} else {
|
2021-01-27 18:32:13 +03:00
|
|
|
cj = clientToJSON(c)
|
2021-06-29 15:53:28 +03:00
|
|
|
disallowed, rule := clients.dnsServer.IsBlockedClient(ip, idStr)
|
2021-05-06 16:41:33 +03:00
|
|
|
cj.Disallowed, cj.DisallowedRule = &disallowed, &rule
|
2019-09-26 16:40:52 +03:00
|
|
|
}
|
|
|
|
|
2021-06-29 15:53:28 +03:00
|
|
|
data = append(data, map[string]*clientJSON{
|
2021-01-27 18:32:13 +03:00
|
|
|
idStr: cj,
|
2021-01-22 15:00:45 +03:00
|
|
|
})
|
2019-09-26 16:40:52 +03:00
|
|
|
}
|
|
|
|
|
2023-08-29 20:03:40 +03:00
|
|
|
aghhttp.WriteJSONResponseOK(w, r, data)
|
2019-09-26 16:40:52 +03:00
|
|
|
}
|
|
|
|
|
2021-04-15 19:00:31 +03:00
|
|
|
// findRuntime looks up the IP in runtime and temporary storages, like
|
2021-06-29 15:53:28 +03:00
|
|
|
// /etc/hosts tables, DHCP leases, or blocklists. cj is guaranteed to be
|
|
|
|
// non-nil.
|
2022-11-09 14:37:07 +03:00
|
|
|
func (clients *clientsContainer) findRuntime(ip netip.Addr, idStr string) (cj *clientJSON) {
|
2022-10-25 15:08:12 +03:00
|
|
|
rc, ok := clients.findRuntimeClient(ip)
|
2021-01-28 19:39:33 +03:00
|
|
|
if !ok {
|
2022-08-04 19:05:28 +03:00
|
|
|
// It is still possible that the IP used to be in the runtime clients
|
|
|
|
// list, but then the server was reloaded. So, check the DNS server's
|
|
|
|
// blocked IP list.
|
2021-01-15 20:30:48 +03:00
|
|
|
//
|
|
|
|
// See https://github.com/AdguardTeam/AdGuardHome/issues/2428.
|
2021-06-29 15:53:28 +03:00
|
|
|
disallowed, rule := clients.dnsServer.IsBlockedClient(ip, idStr)
|
|
|
|
cj = &clientJSON{
|
2021-01-27 18:32:13 +03:00
|
|
|
IDs: []string{idStr},
|
2021-05-06 16:41:33 +03:00
|
|
|
Disallowed: &disallowed,
|
|
|
|
DisallowedRule: &rule,
|
2023-06-21 12:53:53 +03:00
|
|
|
WHOIS: &whois.Info{},
|
2021-01-15 20:30:48 +03:00
|
|
|
}
|
|
|
|
|
2021-06-29 15:53:28 +03:00
|
|
|
return cj
|
|
|
|
}
|
|
|
|
|
|
|
|
cj = &clientJSON{
|
2023-06-21 12:53:53 +03:00
|
|
|
Name: rc.Host,
|
|
|
|
IDs: []string{idStr},
|
|
|
|
WHOIS: rc.WHOIS,
|
2021-01-15 20:30:48 +03:00
|
|
|
}
|
|
|
|
|
2021-06-29 15:53:28 +03:00
|
|
|
disallowed, rule := clients.dnsServer.IsBlockedClient(ip, idStr)
|
2021-05-06 16:41:33 +03:00
|
|
|
cj.Disallowed, cj.DisallowedRule = &disallowed, &rule
|
2021-01-15 20:30:48 +03:00
|
|
|
|
2021-06-29 15:53:28 +03:00
|
|
|
return cj
|
2021-01-15 20:30:48 +03:00
|
|
|
}
|
|
|
|
|
2019-09-26 16:40:52 +03:00
|
|
|
// RegisterClientsHandlers registers HTTP handlers
|
2019-11-22 14:37:25 +03:00
|
|
|
func (clients *clientsContainer) registerWebHandlers() {
|
2021-02-04 14:15:34 +03:00
|
|
|
httpRegister(http.MethodGet, "/control/clients", clients.handleGetClients)
|
|
|
|
httpRegister(http.MethodPost, "/control/clients/add", clients.handleAddClient)
|
|
|
|
httpRegister(http.MethodPost, "/control/clients/delete", clients.handleDelClient)
|
|
|
|
httpRegister(http.MethodPost, "/control/clients/update", clients.handleUpdateClient)
|
|
|
|
httpRegister(http.MethodGet, "/control/clients/find", clients.handleFindClient)
|
2019-09-26 16:40:52 +03:00
|
|
|
}
|