#!/command/with-contenv bashio
# shellcheck shell=bash
# ==============================================================================
# Home Assistant Community Add-on: Example
#
# Example add-on for Home Assistant.
# This add-on displays a random quote every X seconds.
# ==============================================================================
# ------------------------------------------------------------------------------
# Get a random quote from quotationspage.com
#
# Arguments:
#   None
# Returns:
#   String with the quote
# ------------------------------------------------------------------------------
get_quote_online() {
    local number
    local html
    local quote
    bashio::log.trace "${FUNCNAME[0]}"
    number=$(( ( RANDOM % 999 )  + 1 ))
    html=$(wget -q -O - "http://www.quotationspage.com/quote/${number}.html")
    quote=$(grep -e "
" -e "" <<< "${html}" \
        | awk -F'[<>]' '{
            if($2 ~ /dt/)
                { print $3 }
            else if($4 ~ /b/)
                { print "-- " $7 "  n(" $19 ")"}
        }'
    )
    echo "${quote}"
}
# ------------------------------------------------------------------------------
# Get a random quote from a prefined set of quotes
#
# Arguments:
#   None
# Returns:
#   String with the quote
# ------------------------------------------------------------------------------
get_quote_offline() {
    local -i number
    local -a quotes
    bashio::log.trace "${FUNCNAME[0]}"
    quotes+=("Ever tried. Ever failed. No matter. Try Again. Fail again. Fail better.\\n -Samuel Beckett")
    quotes+=("Never give up, for that is just the place and time that the tide will turn.\\n -Harriet Beecher Stowe")
    quotes+=("Our greatest weakness lies in giving up. The most certain way to succeed is always to try just one more time.\\n -Thomas A. Edison")
    quotes+=("Life isn't about getting and having, it's about giving and being.\\n -Kevin Kruse")
    quotes+=("Strive not to be a success, but rather to be of value.\\n -Albert Einstein")
    quotes+=("You miss 100% of the shots you don't take.\\n -Wayne Gretzky")
    quotes+=("People who are unable to motivate themselves must be content with mediocrity, no matter how impressive their other talents. \\n -Andrew Carnegie")
    quotes+=("Design is not just what it looks like and feels like. Design is how it works.\\n -Steve Jobs")
    quotes+=("Only those who dare to fail greatly can ever achieve greatly.\\n -Robert F. Kennedy")
    quotes+=("All our dreams can come true, if we have the courage to pursue them.\\n -Walt Disney")
    quotes+=("Success consists of going from failure to failure without loss of enthusiasm.\\n -Winston Churchill")
    number=$(( ( RANDOM % 11 )  + 1 ))
    echo "${quotes[$number]}"
}
# ------------------------------------------------------------------------------
# Displays a random quote
#
# Arguments:
#   None
# Returns:
#   String with the quote
# -----------------------------------------------------------------------------
display_quote() {
    local quote
    local timestamp
    bashio::log.trace "${FUNCNAME[0]}"
    if wget -q --spider http://www.quotationspage.com; then
        quote=$(get_quote_online)
    else
        bashio::log.notice \
            'Could not connect to quotationspage.com, using an offline quote'
        quote=$(get_quote_offline)
    fi
    # shellcheck disable=SC2001
    quote=$(sed 's/n()//g' <<< "${quote}" | xargs -0 echo | fmt -40)
    timestamp=$(date +"%T")
    bashio::log.info "Random quote loaded @ ${timestamp}"
    echo -e "${quote}"
}
# ==============================================================================
# RUN LOGIC
# ------------------------------------------------------------------------------
main() {
    local sleep
    bashio::log.trace "${FUNCNAME[0]}"
    sleep=$(bashio::config 'seconds_between_quotes')
    bashio::log.info "Seconds between each quotes is set to: ${sleep}"
    while true; do
        display_quote
        sleep "${sleep}"
    done
}
main "$@"