* openapi: update 'Client' object; add /clients/find
This commit is contained in:
parent
317a9cc49e
commit
1fc70cbc08
|
@ -1,6 +1,95 @@
|
||||||
# AdGuard Home API Change Log
|
# AdGuard Home API Change Log
|
||||||
|
|
||||||
|
|
||||||
|
## v0.100: API changes
|
||||||
|
|
||||||
|
### API: Get list of clients: GET /control/clients
|
||||||
|
|
||||||
|
* "ip" and "mac" fields are removed
|
||||||
|
* "ids" and "ip_addrs" fields are added
|
||||||
|
|
||||||
|
Response:
|
||||||
|
|
||||||
|
200 OK
|
||||||
|
|
||||||
|
{
|
||||||
|
clients: [
|
||||||
|
{
|
||||||
|
name: "client1"
|
||||||
|
ids: ["...", ...] // IP or MAC
|
||||||
|
ip_addrs: ["...", ...] // all IP addresses (set by user and resolved by MAC)
|
||||||
|
use_global_settings: true
|
||||||
|
filtering_enabled: false
|
||||||
|
parental_enabled: false
|
||||||
|
safebrowsing_enabled: false
|
||||||
|
safesearch_enabled: false
|
||||||
|
use_global_blocked_services: true
|
||||||
|
blocked_services: [ "name1", ... ]
|
||||||
|
whois_info: {
|
||||||
|
key: "value"
|
||||||
|
...
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
auto_clients: [
|
||||||
|
{
|
||||||
|
name: "host"
|
||||||
|
ip: "..."
|
||||||
|
source: "etc/hosts" || "rDNS"
|
||||||
|
whois_info: {
|
||||||
|
key: "value"
|
||||||
|
...
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
### API: Add client: POST /control/clients/add
|
||||||
|
|
||||||
|
* "ip" and "mac" fields are removed
|
||||||
|
* "ids" field is added
|
||||||
|
|
||||||
|
Request:
|
||||||
|
|
||||||
|
POST /control/clients/add
|
||||||
|
|
||||||
|
{
|
||||||
|
name: "client1"
|
||||||
|
ids: ["...", ...] // IP or MAC
|
||||||
|
use_global_settings: true
|
||||||
|
filtering_enabled: false
|
||||||
|
parental_enabled: false
|
||||||
|
safebrowsing_enabled: false
|
||||||
|
safesearch_enabled: false
|
||||||
|
use_global_blocked_services: true
|
||||||
|
blocked_services: [ "name1", ... ]
|
||||||
|
}
|
||||||
|
|
||||||
|
### API: Update client: POST /control/clients/update
|
||||||
|
|
||||||
|
* "ip" and "mac" fields are removed
|
||||||
|
* "ids" field is added
|
||||||
|
|
||||||
|
Request:
|
||||||
|
|
||||||
|
POST /control/clients/update
|
||||||
|
|
||||||
|
{
|
||||||
|
name: "client1"
|
||||||
|
data: {
|
||||||
|
name: "client1"
|
||||||
|
ids: ["...", ...] // IP or MAC
|
||||||
|
use_global_settings: true
|
||||||
|
filtering_enabled: false
|
||||||
|
parental_enabled: false
|
||||||
|
safebrowsing_enabled: false
|
||||||
|
safesearch_enabled: false
|
||||||
|
use_global_blocked_services: true
|
||||||
|
blocked_services: [ "name1", ... ]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
## v0.99.3: API changes
|
## v0.99.3: API changes
|
||||||
|
|
||||||
### API: Get query log: GET /control/querylog
|
### API: Get query log: GET /control/querylog
|
||||||
|
|
|
@ -772,6 +772,22 @@ paths:
|
||||||
200:
|
200:
|
||||||
description: OK
|
description: OK
|
||||||
|
|
||||||
|
/clients/find:
|
||||||
|
get:
|
||||||
|
tags:
|
||||||
|
- clients
|
||||||
|
operationId: clientsFind
|
||||||
|
summary: 'Get information about selected clients by their IP address'
|
||||||
|
parameters:
|
||||||
|
- name: ip0
|
||||||
|
in: query
|
||||||
|
type: string
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
description: OK
|
||||||
|
schema:
|
||||||
|
$ref: "#/definitions/ClientsFindResponse"
|
||||||
|
|
||||||
|
|
||||||
/blocked_services/list:
|
/blocked_services/list:
|
||||||
get:
|
get:
|
||||||
|
@ -1589,16 +1605,15 @@ definitions:
|
||||||
type: "object"
|
type: "object"
|
||||||
description: "Client information"
|
description: "Client information"
|
||||||
properties:
|
properties:
|
||||||
ip:
|
|
||||||
type: "string"
|
|
||||||
description: "IP address"
|
|
||||||
example: "127.0.0.1"
|
|
||||||
name:
|
name:
|
||||||
type: "string"
|
type: "string"
|
||||||
description: "Name"
|
description: "Name"
|
||||||
example: "localhost"
|
example: "localhost"
|
||||||
mac:
|
ids:
|
||||||
type: "string"
|
type: "array"
|
||||||
|
description: "IP, CIDR or MAC address"
|
||||||
|
items:
|
||||||
|
type: "string"
|
||||||
use_global_settings:
|
use_global_settings:
|
||||||
type: "boolean"
|
type: "boolean"
|
||||||
filtering_enabled:
|
filtering_enabled:
|
||||||
|
@ -1645,6 +1660,20 @@ definitions:
|
||||||
properties:
|
properties:
|
||||||
name:
|
name:
|
||||||
type: "string"
|
type: "string"
|
||||||
|
|
||||||
|
ClientsFindResponse:
|
||||||
|
type: "array"
|
||||||
|
description: "Response to clients find operation"
|
||||||
|
items:
|
||||||
|
$ref: "#/definitions/ClientsFindEntry"
|
||||||
|
|
||||||
|
ClientsFindEntry:
|
||||||
|
type: "object"
|
||||||
|
properties:
|
||||||
|
"1.2.3.4":
|
||||||
|
items:
|
||||||
|
$ref: "#/definitions/Client"
|
||||||
|
|
||||||
Clients:
|
Clients:
|
||||||
type: "object"
|
type: "object"
|
||||||
properties:
|
properties:
|
||||||
|
|
Loading…
Reference in New Issue