#!/bin/sh

OPENWEATHERMAP_KEY=`cat /run/secrets/openweathermap-api-key`

KEY="$OPENWEATHERMAP_KEY"
CITY=""
UNITS="metric"
SYMBOL="°"

API="https://api.openweathermap.org/data/2.5"

CURL=`which curl`
CURL="$CURL -sf"
CUT=`which cut`
DATE=`which date`
JQ=`which jq`
UNAME=`which uname`

get_icon() {
    case $1 in
        01d) icon="";;
        01n) icon="";;
        02d) icon="";;
        02n) icon="";;
        03d) icon="";;
        03n) icon="";;
        04d) icon="";;
        04n) icon="";;
        09d) icon="";;
        09n) icon="";;
        10d) icon="";;
        10n) icon="";;
        11d) icon="";;
        11n) icon="";;
        13d) icon="";;
        13n) icon="";;
        50d) icon="";;
        50n) icon="";;
        *) icon="";
    esac

    echo $icon
}

get_duration() {

    osname=$($UNAME -s)

    case $osname in
        *BSD) $DATE -r "$1" -u +%H:%M;;
        *) $DATE --date="@$1" -u +%H:%M;;
    esac

}

if [ -n "$CITY" ]; then
    if [ "$CITY" -eq "$CITY" ] 2>/dev/null; then
        CITY_PARAM="id=$CITY"
    else
        CITY_PARAM="q=$CITY"
    fi

    current=$($CURL "$API/weather?appid=$KEY&$CITY_PARAM&units=$UNITS")
    forecast=$($CURL "$API/forecast?appid=$KEY&$CITY_PARAM&units=$UNITS&cnt=1")
else
    location=$($CURL https://location.services.mozilla.com/v1/geolocate?key=geoclue)

    if [ -n "$location" ]; then
        location_lat="$(echo "$location" | $JQ '.location.lat')"
        location_lon="$(echo "$location" | $JQ '.location.lng')"

        current=$($CURL "$API/weather?appid=$KEY&lat=$location_lat&lon=$location_lon&units=$UNITS")
        forecast=$($CURL "$API/forecast?appid=$KEY&lat=$location_lat&lon=$location_lon&units=$UNITS&cnt=1")
        place=$($CURL "https://nominatim.openstreetmap.org/reverse?lat=$location_lat&lon=$location_lon&format=jsonv2")
        suburb=$(echo "$place" | $JQ -r ".address.suburb")
        city=$(echo "$place" | $JQ -r ".address.city")
    fi
fi

if [ -n "$current" ] && [ -n "$forecast" ]; then
    current_temp=$(echo "$current" | $JQ ".main.temp" | $CUT -d "." -f 1)
    current_feels=$(echo "$current" | $JQ ".main.feels_like" | $CUT -d "." -f 1)
    current_icon=$(echo "$current" | $JQ -r ".weather[0].icon")
    current_text=$(echo "$current" | $JQ -r ".weather[0].description")

    forecast_temp=$(echo "$forecast" | $JQ ".list[].main.temp" | $CUT -d "." -f 1)
    forecast_feels=$(echo "$forecast" | $JQ ".list[].main.feels_like" | $CUT -d "." -f 1)
    forecast_icon=$(echo "$forecast" | $JQ -r ".list[].weather[0].icon")
    if [ "$current_temp" -ne "$forecast_temp" ]; then
        echo "$suburb, $city: $current_text $(get_icon "$current_icon") $current_temp($current_feels)$SYMBOL => $(get_icon "$forecast_icon") $forecast_temp($forecast_feels)$SYMBOL"
    else
        echo "$suburb, $city: $current_text $(get_icon "$current_icon") $current_temp($current_feels)$SYMBOL"
    fi
fi