mirror of
https://github.com/hassio-addons/bashio.git
synced 2025-05-03 18:41:31 +00:00
46 lines
1.5 KiB
Bash
46 lines
1.5 KiB
Bash
#!/usr/bin/env bash
|
|
# ==============================================================================
|
|
# Home Assistant Community Add-ons: Bashio
|
|
# Bashio is a bash function library for use with Home Assistant add-ons.
|
|
#
|
|
# It contains a set of commonly used operations and can be used
|
|
# to be included in add-on scripts to reduce code duplication across add-ons.
|
|
# ==============================================================================
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Publish a new configuration object for discovery.
|
|
#
|
|
# Arguments:
|
|
# $1 Service name
|
|
# $2 Configuration object (JSON)
|
|
# ------------------------------------------------------------------------------
|
|
function bashio::discovery() {
|
|
local service=${1}
|
|
local config=${2}
|
|
local payload
|
|
|
|
bashio::log.trace "${FUNCNAME[0]}:" "$@"
|
|
|
|
payload=$(\
|
|
bashio::var.json \
|
|
service "${service}" \
|
|
config "^${config}" \
|
|
)
|
|
|
|
bashio::api.supervisor "POST" "/discovery" "${payload}" ".uuid"
|
|
bashio::cache.flush_all
|
|
}
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# Deletes configuration object for this discovery.
|
|
#
|
|
# Arguments:
|
|
# $1 Discovery UUID
|
|
# ------------------------------------------------------------------------------
|
|
function bashio::discovery.delete() {
|
|
local uuid=${1}
|
|
|
|
bashio::log.trace "${FUNCNAME[0]}:" "$@"
|
|
bashio::api.supervisor "DELETE" "/discovery/${uuid}"
|
|
bashio::cache.flush_all
|
|
}
|