Replace api.v1.yaml with json variant
This commit is contained in:
parent
ea09061b29
commit
455ca50695
5 changed files with 1344 additions and 899 deletions
|
@ -1,5 +0,0 @@
|
||||||
[build]
|
|
||||||
pre-build = [
|
|
||||||
"curl -Lo /usr/bin/yq https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64",
|
|
||||||
"chmod +x /usr/bin/yq"
|
|
||||||
]
|
|
1336
api.v1.json
Normal file
1336
api.v1.json
Normal file
File diff suppressed because it is too large
Load diff
876
api.v1.yaml
876
api.v1.yaml
|
@ -1,876 +0,0 @@
|
||||||
openapi: 3.0.0
|
|
||||||
info:
|
|
||||||
contact:
|
|
||||||
name: Tobias Reisinger
|
|
||||||
url: 'https://git.serguzim.me/emgauwa/'
|
|
||||||
title: Emgauwa API v1
|
|
||||||
version: 0.5.0
|
|
||||||
description: Server API to manage an Emgauwa system.
|
|
||||||
servers:
|
|
||||||
- url: 'http://localhost:4419'
|
|
||||||
tags:
|
|
||||||
- name: schedules
|
|
||||||
- name: relays
|
|
||||||
- name: controllers
|
|
||||||
- name: tags
|
|
||||||
- name: macros
|
|
||||||
- name: websocket
|
|
||||||
paths:
|
|
||||||
/api/v1/schedules:
|
|
||||||
get:
|
|
||||||
summary: get all schedules
|
|
||||||
description: Receive a list with all available schedules.
|
|
||||||
tags:
|
|
||||||
- schedules
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
headers: { }
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/schedule'
|
|
||||||
operationId: get-api-v1-schedules
|
|
||||||
post:
|
|
||||||
summary: add new schedule
|
|
||||||
tags:
|
|
||||||
- schedules
|
|
||||||
responses:
|
|
||||||
'201':
|
|
||||||
description: Created
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/schedule'
|
|
||||||
operationId: post-api-v1-schedules
|
|
||||||
description: Create a new schedule. A new unique id will be returned
|
|
||||||
requestBody:
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/schedule'
|
|
||||||
description: The "id" field will be set by the server.
|
|
||||||
parameters: [ ]
|
|
||||||
'/api/v1/schedules/{schedule_id}':
|
|
||||||
parameters:
|
|
||||||
- schema:
|
|
||||||
type: string
|
|
||||||
format: uuid
|
|
||||||
name: schedule_id
|
|
||||||
in: path
|
|
||||||
required: true
|
|
||||||
description: ''
|
|
||||||
get:
|
|
||||||
summary: get single schedule
|
|
||||||
tags:
|
|
||||||
- schedules
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/schedule'
|
|
||||||
'404':
|
|
||||||
description: Not Found
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties: { }
|
|
||||||
operationId: get-schedules-schedule_id
|
|
||||||
description: Return a single schedule by id.
|
|
||||||
put:
|
|
||||||
summary: overwrite single schedule
|
|
||||||
tags:
|
|
||||||
- schedules
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/schedule'
|
|
||||||
'400':
|
|
||||||
description: Bad Request
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties: { }
|
|
||||||
'404':
|
|
||||||
description: Not Found
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties: { }
|
|
||||||
operationId: put-schedules-schedule_id
|
|
||||||
requestBody:
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
name:
|
|
||||||
type: string
|
|
||||||
periods:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/period'
|
|
||||||
tags:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/tag'
|
|
||||||
description: ''
|
|
||||||
parameters: [ ]
|
|
||||||
description: Overwrite the properties for a single schedule. Overwriting periods on "on" or "off" will fail.
|
|
||||||
delete:
|
|
||||||
summary: delete single schedule
|
|
||||||
tags:
|
|
||||||
- schedules
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
'403':
|
|
||||||
description: Forbidden
|
|
||||||
'404':
|
|
||||||
description: Not Found
|
|
||||||
operationId: delete-schedules-schedule_id
|
|
||||||
description: Deletes a single schedule. Deleting "on" or "off" is forbidden (403).
|
|
||||||
'/api/v1/schedules/tag/{tag}':
|
|
||||||
parameters:
|
|
||||||
- schema:
|
|
||||||
type: string
|
|
||||||
name: tag
|
|
||||||
in: path
|
|
||||||
required: true
|
|
||||||
description: ''
|
|
||||||
get:
|
|
||||||
summary: get schedules by tag
|
|
||||||
tags:
|
|
||||||
- schedules
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/schedule'
|
|
||||||
operationId: get-schedules-tag-schedule_id
|
|
||||||
description: Receive a list of schedules which include the given tag.
|
|
||||||
/api/v1/relays:
|
|
||||||
get:
|
|
||||||
summary: get all relays
|
|
||||||
tags:
|
|
||||||
- relays
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
headers: { }
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/relay'
|
|
||||||
operationId: get-relays
|
|
||||||
description: Return a list with all relays.
|
|
||||||
parameters: [ ]
|
|
||||||
'/api/v1/relays/tag/{tag}':
|
|
||||||
parameters:
|
|
||||||
- schema:
|
|
||||||
type: string
|
|
||||||
name: tag
|
|
||||||
in: path
|
|
||||||
required: true
|
|
||||||
get:
|
|
||||||
summary: get relays by tag
|
|
||||||
tags:
|
|
||||||
- relays
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/relay'
|
|
||||||
operationId: get-relays-tag-tag
|
|
||||||
description: Return all relays with the given tag.
|
|
||||||
/api/v1/controllers:
|
|
||||||
get:
|
|
||||||
summary: get all controllers
|
|
||||||
tags:
|
|
||||||
- controllers
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/controller'
|
|
||||||
operationId: get-controllers
|
|
||||||
description: Return all controllers.
|
|
||||||
parameters: [ ]
|
|
||||||
'/api/v1/controllers/{controller_id}':
|
|
||||||
parameters:
|
|
||||||
- schema:
|
|
||||||
type: string
|
|
||||||
name: controller_id
|
|
||||||
in: path
|
|
||||||
description: ''
|
|
||||||
required: true
|
|
||||||
get:
|
|
||||||
summary: get single controller
|
|
||||||
tags:
|
|
||||||
- controllers
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/controller'
|
|
||||||
'404':
|
|
||||||
description: Not Found
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties: { }
|
|
||||||
operationId: get-controllers-controller_id
|
|
||||||
requestBody:
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties: { }
|
|
||||||
description: ''
|
|
||||||
description: Return a single controller by id. When no controller with the id is found 404 will be returned.
|
|
||||||
put:
|
|
||||||
summary: overwrite single controller
|
|
||||||
tags:
|
|
||||||
- controllers
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/controller'
|
|
||||||
'400':
|
|
||||||
description: Bad Request
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties: { }
|
|
||||||
'404':
|
|
||||||
description: Not Found
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties: { }
|
|
||||||
operationId: put-controllers-controller_id
|
|
||||||
requestBody:
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
name:
|
|
||||||
type: string
|
|
||||||
ip:
|
|
||||||
type: string
|
|
||||||
format: ipv4
|
|
||||||
description: Overwrite properties of a single controller.
|
|
||||||
delete:
|
|
||||||
summary: delete single controller
|
|
||||||
tags:
|
|
||||||
- controllers
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
'404':
|
|
||||||
description: Not Found
|
|
||||||
operationId: delete-controllers-controller_id
|
|
||||||
description: Delete a single controller. To recover the controller you need to use the controllers/discover feature.
|
|
||||||
'/api/v1/controllers/{controller_id}/relays':
|
|
||||||
parameters:
|
|
||||||
- schema:
|
|
||||||
type: string
|
|
||||||
name: controller_id
|
|
||||||
in: path
|
|
||||||
required: true
|
|
||||||
get:
|
|
||||||
summary: get all relays for single controller
|
|
||||||
tags:
|
|
||||||
- controllers
|
|
||||||
- relays
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
headers: { }
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/relay'
|
|
||||||
'404':
|
|
||||||
description: Not Found
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: array
|
|
||||||
items: { }
|
|
||||||
operationId: get-controllers-controller_id-relays
|
|
||||||
description: Returns all relays for a single controller.
|
|
||||||
'/api/v1/controllers/{controller_id}/relays/{relay_num}':
|
|
||||||
parameters:
|
|
||||||
- schema:
|
|
||||||
type: string
|
|
||||||
name: controller_id
|
|
||||||
in: path
|
|
||||||
required: true
|
|
||||||
- schema:
|
|
||||||
type: integer
|
|
||||||
name: relay_num
|
|
||||||
in: path
|
|
||||||
required: true
|
|
||||||
get:
|
|
||||||
summary: get single relay for single controller
|
|
||||||
tags:
|
|
||||||
- controllers
|
|
||||||
- relays
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/relay'
|
|
||||||
'404':
|
|
||||||
description: Not Found
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties: { }
|
|
||||||
operationId: get-controllers-controller_id-relays-relay_num
|
|
||||||
description: 'Return a single relay by number for a controller by id. When the relay or controller is not found, 404 will be returned.'
|
|
||||||
put:
|
|
||||||
summary: overwrite single relay for single controller
|
|
||||||
tags:
|
|
||||||
- controllers
|
|
||||||
- relays
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/relay'
|
|
||||||
'400':
|
|
||||||
description: Bad Request
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties: { }
|
|
||||||
'404':
|
|
||||||
description: Not Found
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties: { }
|
|
||||||
operationId: put-controllers-controller_id-relays-relay_num
|
|
||||||
requestBody:
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
name:
|
|
||||||
type: string
|
|
||||||
active_schedule:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
id:
|
|
||||||
$ref: '#/components/schemas/schedule_id'
|
|
||||||
schedules:
|
|
||||||
type: array
|
|
||||||
maxItems: 7
|
|
||||||
minItems: 7
|
|
||||||
items:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
id:
|
|
||||||
$ref: '#/components/schemas/schedule_id'
|
|
||||||
tags:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/tag'
|
|
||||||
description: 'active schedule will overwrite schedules[weekday]'
|
|
||||||
/api/v1/tags:
|
|
||||||
get:
|
|
||||||
summary: get all tags
|
|
||||||
tags:
|
|
||||||
- tags
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/tag'
|
|
||||||
operationId: get-tags
|
|
||||||
description: Returns a list of tags.
|
|
||||||
parameters: [ ]
|
|
||||||
post:
|
|
||||||
summary: add new tag
|
|
||||||
operationId: post-api-v1-tags
|
|
||||||
responses:
|
|
||||||
'201':
|
|
||||||
description: Created
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/tag_full'
|
|
||||||
'400':
|
|
||||||
description: Bad Request
|
|
||||||
requestBody:
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
tag:
|
|
||||||
$ref: '#/components/schemas/tag'
|
|
||||||
description: ''
|
|
||||||
tags:
|
|
||||||
- tags
|
|
||||||
description: Add a new tag. Will return 400 when the tag already exits.
|
|
||||||
'/api/v1/tags/{tag}':
|
|
||||||
parameters:
|
|
||||||
- schema:
|
|
||||||
type: string
|
|
||||||
name: tag
|
|
||||||
in: path
|
|
||||||
required: true
|
|
||||||
get:
|
|
||||||
summary: get relays and schedules for tag
|
|
||||||
tags:
|
|
||||||
- tags
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/tag_full'
|
|
||||||
'404':
|
|
||||||
description: Not Found
|
|
||||||
operationId: get-tags-tag
|
|
||||||
description: Return all models with the given tag (relays and schedules)
|
|
||||||
delete:
|
|
||||||
summary: delete tag
|
|
||||||
operationId: delete-tags-tag
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
'404':
|
|
||||||
description: Not Found
|
|
||||||
description: delete tag from database and from affected relays and schedules
|
|
||||||
tags:
|
|
||||||
- tags
|
|
||||||
'/api/v1/controllers/{controller_id}/relays/{relay_num}/pulse':
|
|
||||||
parameters:
|
|
||||||
- schema:
|
|
||||||
type: string
|
|
||||||
name: controller_id
|
|
||||||
in: path
|
|
||||||
required: true
|
|
||||||
- schema:
|
|
||||||
type: string
|
|
||||||
name: relay_num
|
|
||||||
in: path
|
|
||||||
required: true
|
|
||||||
post:
|
|
||||||
summary: pulse relay on
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
'404':
|
|
||||||
description: Not Found
|
|
||||||
operationId: post-controllers-controller_id-relays-relay_num-pulse
|
|
||||||
requestBody:
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
duration:
|
|
||||||
type: integer
|
|
||||||
description: ''
|
|
||||||
description: Turn a relay on for a short amount of time. The duration can be set in the body in seconds. When no duration is supplied the default for the relay will be used. The default is read from the controller's config.
|
|
||||||
tags:
|
|
||||||
- controllers
|
|
||||||
- relays
|
|
||||||
/api/v1/ws/relays:
|
|
||||||
get:
|
|
||||||
summary: get relay status updates
|
|
||||||
tags:
|
|
||||||
- websocket
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/relay'
|
|
||||||
operationId: get-ws-relays
|
|
||||||
description: |-
|
|
||||||
WEBSOCKET
|
|
||||||
This websocket will send all relays with the most recent status every 10 seconds.
|
|
||||||
parameters: [ ]
|
|
||||||
/api/v1/macros:
|
|
||||||
get:
|
|
||||||
summary: get all macros
|
|
||||||
tags:
|
|
||||||
- macros
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/macro'
|
|
||||||
operationId: get-api-v1-macros
|
|
||||||
description: Receive a list with all available macros.
|
|
||||||
post:
|
|
||||||
summary: add new macro
|
|
||||||
tags:
|
|
||||||
- macros
|
|
||||||
responses:
|
|
||||||
'201':
|
|
||||||
description: Created
|
|
||||||
operationId: post-api-v1-macros
|
|
||||||
description: Create a new macro. A new unique id will be returned
|
|
||||||
requestBody:
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
name:
|
|
||||||
type: string
|
|
||||||
actions:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
weekday:
|
|
||||||
type: integer
|
|
||||||
minimum: 0
|
|
||||||
maximum: 6
|
|
||||||
relay:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
number:
|
|
||||||
type: integer
|
|
||||||
controller_id:
|
|
||||||
$ref: '#/components/schemas/controller_id'
|
|
||||||
schedule:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
id:
|
|
||||||
$ref: '#/components/schemas/schedule_id'
|
|
||||||
'/api/v1/macros/{macro_id}':
|
|
||||||
parameters:
|
|
||||||
- schema:
|
|
||||||
type: string
|
|
||||||
name: macro_id
|
|
||||||
in: path
|
|
||||||
required: true
|
|
||||||
get:
|
|
||||||
summary: get a single macro
|
|
||||||
tags:
|
|
||||||
- macros
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/macro'
|
|
||||||
operationId: get-api-v1-macros-macro_id
|
|
||||||
description: Return a single macro by id. When no macro with the id is found 404 will be returned.
|
|
||||||
put:
|
|
||||||
summary: overwrite a macro
|
|
||||||
tags:
|
|
||||||
- macros
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
$ref: '#/components/schemas/macro'
|
|
||||||
operationId: put-api-v1-macros-macro_id
|
|
||||||
description: Overwrite properties of a single macro.
|
|
||||||
requestBody:
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
name:
|
|
||||||
type: string
|
|
||||||
actions:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
weekday:
|
|
||||||
type: integer
|
|
||||||
minimum: 0
|
|
||||||
maximum: 6
|
|
||||||
schedule:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
id:
|
|
||||||
$ref: '#/components/schemas/schedule_id'
|
|
||||||
relay:
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
number:
|
|
||||||
type: integer
|
|
||||||
controller_id:
|
|
||||||
$ref: '#/components/schemas/controller_id'
|
|
||||||
delete:
|
|
||||||
summary: delete a macro
|
|
||||||
tags:
|
|
||||||
- macros
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
operationId: delete-api-v1-macros-macro_id
|
|
||||||
description: Delete a single macro.
|
|
||||||
'/api/v1/macros/{macro_id}/execute':
|
|
||||||
parameters:
|
|
||||||
- schema:
|
|
||||||
type: string
|
|
||||||
name: macro_id
|
|
||||||
in: path
|
|
||||||
required: true
|
|
||||||
- schema:
|
|
||||||
type: integer
|
|
||||||
name: weekday
|
|
||||||
in: query
|
|
||||||
put:
|
|
||||||
summary: execute a macro
|
|
||||||
tags:
|
|
||||||
- macros
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
'404':
|
|
||||||
description: Not Found
|
|
||||||
operationId: put-api-v1-macros-macro_id-execute
|
|
||||||
description: Execute a macro
|
|
||||||
/api/v1/schedules/list:
|
|
||||||
post:
|
|
||||||
summary: add new schedule list
|
|
||||||
tags:
|
|
||||||
- schedules
|
|
||||||
responses:
|
|
||||||
'200':
|
|
||||||
description: OK
|
|
||||||
operationId: post-schedules-list
|
|
||||||
requestBody:
|
|
||||||
content:
|
|
||||||
application/json:
|
|
||||||
schema:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/schedule'
|
|
||||||
description: Create a list of schedules
|
|
||||||
parameters: [ ]
|
|
||||||
components:
|
|
||||||
schemas:
|
|
||||||
controller:
|
|
||||||
title: controller
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
id:
|
|
||||||
$ref: '#/components/schemas/controller_id'
|
|
||||||
name:
|
|
||||||
type: string
|
|
||||||
example: Garden Controller
|
|
||||||
ip:
|
|
||||||
type: string
|
|
||||||
format: ipv4
|
|
||||||
example: 224.73.153.12
|
|
||||||
active:
|
|
||||||
type: boolean
|
|
||||||
port:
|
|
||||||
type: integer
|
|
||||||
example: 27480
|
|
||||||
relay_count:
|
|
||||||
type: integer
|
|
||||||
minimum: 0
|
|
||||||
example: 10
|
|
||||||
relays:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/relay'
|
|
||||||
relay:
|
|
||||||
title: relay
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
number:
|
|
||||||
type: integer
|
|
||||||
minimum: 0
|
|
||||||
example: 3
|
|
||||||
name:
|
|
||||||
type: string
|
|
||||||
example: Sprinkling System 1
|
|
||||||
controller_id:
|
|
||||||
$ref: '#/components/schemas/controller_id'
|
|
||||||
active_schedule:
|
|
||||||
$ref: '#/components/schemas/schedule-untagged'
|
|
||||||
schedules:
|
|
||||||
type: array
|
|
||||||
maxItems: 7
|
|
||||||
minItems: 7
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/schedule-untagged'
|
|
||||||
tags:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/tag'
|
|
||||||
is_on:
|
|
||||||
type: boolean
|
|
||||||
nullable: true
|
|
||||||
description: NULL when unknown (usually because controller is not connected)
|
|
||||||
schedule-untagged:
|
|
||||||
title: schedule
|
|
||||||
type: object
|
|
||||||
description: ''
|
|
||||||
properties:
|
|
||||||
id:
|
|
||||||
$ref: '#/components/schemas/schedule_id'
|
|
||||||
name:
|
|
||||||
type: string
|
|
||||||
example: Sprinkler Sunny Day
|
|
||||||
periods:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/period'
|
|
||||||
schedule:
|
|
||||||
title: schedule
|
|
||||||
type: object
|
|
||||||
description: ''
|
|
||||||
properties:
|
|
||||||
id:
|
|
||||||
$ref: '#/components/schemas/schedule_id'
|
|
||||||
name:
|
|
||||||
type: string
|
|
||||||
example: Sprinkler Sunny Day
|
|
||||||
periods:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/period'
|
|
||||||
tags:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/tag'
|
|
||||||
period:
|
|
||||||
title: period
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
start:
|
|
||||||
type: string
|
|
||||||
example: '10:15'
|
|
||||||
format: 24-hour
|
|
||||||
end:
|
|
||||||
type: string
|
|
||||||
format: 24-hour
|
|
||||||
example: '14:45'
|
|
||||||
required:
|
|
||||||
- start
|
|
||||||
- end
|
|
||||||
controller_id:
|
|
||||||
type: string
|
|
||||||
title: controller_id
|
|
||||||
format: uuid
|
|
||||||
example: 589c0eab-a4b4-4f3a-be97-cf03b1dc8edc
|
|
||||||
tag:
|
|
||||||
type: string
|
|
||||||
title: tag
|
|
||||||
example: sprinkler
|
|
||||||
tag_full:
|
|
||||||
title: tag (full)
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
tag:
|
|
||||||
$ref: '#/components/schemas/tag'
|
|
||||||
relays:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/relay'
|
|
||||||
schedules:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/schedule'
|
|
||||||
schedule_id:
|
|
||||||
type: string
|
|
||||||
title: schedule_id
|
|
||||||
format: uuid
|
|
||||||
example: 6bceb29b-7d2e-4af3-a26e-11f514dc5cc1
|
|
||||||
macro:
|
|
||||||
title: macro
|
|
||||||
type: object
|
|
||||||
properties:
|
|
||||||
id:
|
|
||||||
type: string
|
|
||||||
format: uuid
|
|
||||||
example: a9a4eab4-6c54-4fe4-b755-bdb2a90b3242
|
|
||||||
name:
|
|
||||||
type: string
|
|
||||||
actions:
|
|
||||||
type: array
|
|
||||||
items:
|
|
||||||
$ref: '#/components/schemas/macro_action'
|
|
||||||
macro_action:
|
|
||||||
title: macro_action
|
|
||||||
type: object
|
|
||||||
description: ''
|
|
||||||
properties:
|
|
||||||
weekday:
|
|
||||||
type: integer
|
|
||||||
minimum: 0
|
|
||||||
maximum: 6
|
|
||||||
schedule:
|
|
||||||
$ref: '#/components/schemas/schedule'
|
|
||||||
relay:
|
|
||||||
$ref: '#/components/schemas/relay'
|
|
||||||
required:
|
|
||||||
- weekday
|
|
||||||
- schedule
|
|
||||||
- relay
|
|
15
build.rs
15
build.rs
|
@ -1,15 +0,0 @@
|
||||||
use std::process::{exit, Command};
|
|
||||||
|
|
||||||
fn main() {
|
|
||||||
println!("cargo:rerun-if-changed=./api.v1.yaml");
|
|
||||||
let output = Command::new("sh")
|
|
||||||
.arg("-c")
|
|
||||||
.arg("yq . < ./api.v1.yaml > $OUT_DIR/api.v1.json")
|
|
||||||
.output()
|
|
||||||
.expect("Failed to convert api documentation to json");
|
|
||||||
|
|
||||||
if !output.status.success() {
|
|
||||||
eprintln!("Error: {}", String::from_utf8_lossy(&output.stderr));
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
}
|
|
11
src/main.rs
11
src/main.rs
|
@ -70,9 +70,13 @@ async fn main() -> Result<(), std::io::Error> {
|
||||||
"title": "Failed to load API documentation",
|
"title": "Failed to load API documentation",
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
let api_v1_json =
|
|
||||||
serde_json::from_str(include_str!(concat!(env!("OUT_DIR"), "/api.v1.json")))
|
let mut api_v1_json =
|
||||||
.unwrap_or(api_default.clone());
|
serde_json::from_str(include_str!("../api.v1.json")).unwrap_or(api_default.clone());
|
||||||
|
api_v1_json["servers"] = json!([{
|
||||||
|
"url": "/",
|
||||||
|
}]);
|
||||||
|
|
||||||
|
|
||||||
App::new()
|
App::new()
|
||||||
.wrap(cors)
|
.wrap(cors)
|
||||||
|
@ -84,6 +88,7 @@ async fn main() -> Result<(), std::io::Error> {
|
||||||
SwaggerUi::new("/api/docs/{_:.*}")
|
SwaggerUi::new("/api/docs/{_:.*}")
|
||||||
.external_urls_from_iter_unchecked([("/api/v1.json", api_v1_json)]),
|
.external_urls_from_iter_unchecked([("/api/v1.json", api_v1_json)]),
|
||||||
)
|
)
|
||||||
|
.service(web::redirect("/api/docs", "/api/docs/"))
|
||||||
.service(
|
.service(
|
||||||
web::scope("/api/v1")
|
web::scope("/api/v1")
|
||||||
.wrap(middleware::NormalizePath::new(TrailingSlash::Trim))
|
.wrap(middleware::NormalizePath::new(TrailingSlash::Trim))
|
||||||
|
|
Loading…
Reference in a new issue