#!/usr/bin/with-contenv bashio # shellcheck shell=bash # shellcheck disable=SC2155,SC1087,SC2163,SC2116,SC2086 set -e ################## # INITIALIZATION # ################## # Exit if /config is not mounted if [ ! -d /config ]; then exit 0 fi # Define slug if slug="${HOSTNAME#*-}" # Check type of config folder if [ ! -f /config/configuration.yaml ] && [ ! -f /config/configuration.json ]; then # New config location CONFIGLOCATION="/config" else # Legacy config location CONFIGLOCATION="/config/addons_config/${slug}" fi # Where is the config if bashio::config.has_value 'CONFIG_LOCATION'; then # Get config source CONFIGSOURCE=$(bashio::config "CONFIG_LOCATION") # Check CONFIGSOURCE ends with config.yaml if [ "$(basename "$CONFIGSOURCE")" != "*.yaml" ]; then # Remove trailing slash and add config.yaml CONFIGSOURCE="${CONFIGSOURCE%/}"/config.yaml fi # Check if config is located in an acceptable location LOCATIONOK="" for location in "/share" "/config" "/data"; do if [[ "$CONFIGSOURCE" == "$location"* ]]; then LOCATIONOK=true fi done if [ -z "$LOCATIONOK" ]; then CONFIGSOURCE="$CONFIGLOCATION" bashio::log.red "Watch-out : your CONFIG_LOCATION values can only be set in /share, /config or /data (internal to addon). It will be reset to the default location : $CONFIGSOURCE" fi else # Use default CONFIGSOURCE="$CONFIGLOCATION/config.yaml" fi # Migrate if needed if [ "$CONFIGLOCATION" == "/config" ]; then # Migrate file if [ -f "/homeassistant/addons_config/${slug}/config.yaml" ]; then echo "Migrating config.yaml to new config location" mv /homeassistant/addons_config/"${slug}"/config.yaml /config/config.yaml fi # Migrate option if [[ "$(bashio::config "CONFIG_LOCATION")" == "/config/addons_config"* ]] && [ -f /config/config.yaml ]; then bashio::addon.option "CONFIG_LOCATION" "/config/config.yaml" CONFIGSOURCE="$(bashio::config "CONFIG_LOCATION")" fi fi # Permissions mkdir -p "$(dirname "${CONFIGSOURCE}")" chmod -R 755 "$(dirname "${CONFIGSOURCE}")" #################### # LOAD CONFIG.YAML # #################### bashio::log.green "Load environment variables from $CONFIGSOURCE if existing" bashio::log.green "---------------------------------------------------------" echo "Wiki here : github.com/alexbelgium/hassio-addons/wiki/Add‐ons-feature-:-add-env-variables" # Check if config file is there, or create one from template if [ ! -f "$CONFIGSOURCE" ]; then echo "... no config file, creating one from template. Please customize the file in $CONFIGSOURCE before restarting." # Create folder mkdir -p "$(dirname "${CONFIGSOURCE}")" # Placing template in config if [ -f /templates/config.yaml ]; then # Use available template cp /templates/config.yaml "$(dirname "${CONFIGSOURCE}")" else # Download template TEMPLATESOURCE="https://raw.githubusercontent.com/alexbelgium/hassio-addons/master/.templates/config.template" curl -f -L -s -S "$TEMPLATESOURCE" --output "$CONFIGSOURCE" fi fi # Check if there are lines to read cp "$CONFIGSOURCE" /tempenv sed -i '/^#/d' /tempenv sed -i '/^ /d' /tempenv sed -i '/^$/d' /tempenv # Exit if empty if [ ! -s /tempenv ]; then bashio::log.green "... no env variables found, exiting" exit 0 fi rm /tempenv # Check if yaml is valid EXIT_CODE=0 yamllint -d relaxed "$CONFIGSOURCE" &>ERROR || EXIT_CODE=$? if [ "$EXIT_CODE" != 0 ]; then cat ERROR bashio::log.yellow "... config file has an invalid yaml format. Please check the file in $CONFIGSOURCE. Errors list above." fi # Export all yaml entries as env variables # Helper function function parse_yaml { local prefix=$2 || local prefix="" local s='[[:space:]]*' w='[a-zA-Z0-9_]*' fs=$(echo @ | tr @ '\034') sed -ne "s|^\($s\):|\1|" \ -e "s| #.*$||g" \ -e "s|#.*$||g" \ -e "s|^\($s\)\($w\)$s:$s[\"']\(.*\)[\"']$s\$|\1$fs\2$fs\3|p" \ -e "s|^\($s\)\($w\)$s:$s\(.*\)$s\$|\1$fs\2$fs\3|p" $1 | awk -F$fs '{ indent = length($1)/2; vname[indent] = $2; for (i in vname) {if (i > indent) {delete vname[i]}} if (length($3) > 0) { vn=""; for (i=0; i/tmpfile # Escape dollars sed -i 's|$.|\$|g' /tmpfile while IFS= read -r line; do # Clean output line="${line//[\"\']/}" # Check if secret if [[ "${line}" == *'!secret '* ]]; then echo "secret detected" secret=${line#*secret } # Check if single match secretnum=$(sed -n "/$secret:/=" /config/secrets.yaml) [[ $(echo $secretnum) == *' '* ]] && bashio::exit.nok "There are multiple matches for your password name. Please check your secrets.yaml file" # Get text secret=$(sed -n "/$secret:/p" /config/secrets.yaml) secret=${secret#*: } line="${line%%=*}='$secret'" fi # Data validation if [[ "$line" =~ ^.+[=].+$ ]]; then export "$line" # extract keys and values KEYS="${line%%=*}" VALUE="${line#*=}" # export to python if command -v "python3" &>/dev/null; then [ ! -f /env.py ] && echo "import os" > /env.py echo "os.environ['${line%%=*}'] = '${line#*=}'" >> /env.py python3 /env.py fi # set .env if [ -f /.env ]; then echo "$KEYS='$VALUE'" >> /.env; fi mkdir -p /etc echo "$KEYS='$VALUE'" >> /etc/environment # Export to scripts if cat /etc/services.d/*/*run* &>/dev/null; then sed -i "1a export $line" /etc/services.d/*/*run* 2>/dev/null; fi if cat /etc/cont-init.d/*run* &>/dev/null; then sed -i "1a export $line" /etc/cont-init.d/*run* 2>/dev/null; fi # For s6 if [ -d /var/run/s6/container_environment ]; then printf "%s" "${VALUE}" > /var/run/s6/container_environment/"${KEYS}"; fi echo "export $line" >> ~/.bashrc # Show in log if ! bashio::config.false "verbose"; then bashio::log.blue "$KEYS='$VALUE'"; fi else bashio::log.red "$line does not follow the correct structure. Please check your yaml file." fi done <"/tmpfile"