#!/bin/bash
source $HOME/.config/sway/bin/sway_helpers
SINK=$(pactl info | grep "Default Sink" | cut -d ' ' -f 3)
SOURCE=$(pactl info | grep "Default Source" | cut -d ' ' -f 3)
ICON_PATH=$HOME/.local/share/icons/Tela-circle-dark/16/actions
NOTIFY_APP="dunstify -a volume -h string:x-dunst-stack-tag:volume"
APP="pavucontrol"
SOUND=$HOME/.config/sway/bin/audio-volume-change.oga

# echo -e '\u25cf'
VOL1="●"
# echo -e '\u25cc'
VOL2="◌"

function notify() {
  SINK_VOLUME=$(pactl list sinks | grep "Name: $SINK" -A 8 | grep -oE '[0-9]*%' | head -n 1 | sed 's/%//')
  SOURCE_VOLUME=$(pactl list sources | grep "Name: $SOURCE" -A 8 | grep -oE '[0-9]*%' | head -n 1 | sed 's/%//')
  MUTE=$(pactl list sinks | grep "Name: $SINK" -A 8 | grep 'Mute:' | cut -d " " -f 2)
  SOURCE_MUTE=$(pactl list sources | grep "Name: $SOURCE" -A 8 | grep 'Mute:' | cut -d " " -f 2)

  ICON=$ICON_PATH/audio-volume-high.svg
  SINK_ICON=""
  if [ "$MUTE" = "yes" ]; then
    ICON=$ICON_PATH/audio-volume-muted.svg
  elif [ $SINK_VOLUME -le 33 ]; then
    ICON=$ICON_PATH/audio-volume-low.svg
    SINK_ICON=""
  elif [ $SINK_VOLUME -le 67 ]; then
    ICON=$ICON_PATH/audio-volume-medium.svg
    SINK_ICON=""
  fi
  SOURCE_ICON=""
  if [ "$SOURCE_MUTE" = "yes" ]; then
    SOURCE_ICON=""
  fi
  TITLE="${SINK_ICON} ${SINK_VOLUME}% / ${SOURCE_ICON} ${SOURCE_VOLUME}%"
  # $NOTIFY_APP -i $ICON -a "Volume" "$TEXT"
  $NOTIFY_APP -i $ICON "$TITLE" "$(getProgressString 10 "$VOL1" "$VOL2" $SINK_VOLUME)"
}

##  helpers
function _toggle() {
  a=$1
  if [ $(pgrep $a) ]; then
    killall $a
  else
    $a &> /dev/null &
  fi
}

## main
if [ -z "$SINK" ]; then
  _log VOLUME ERROR args: $*
  exit 1
fi

case $1 in
  # decrease
  d*)
    pactl set-sink-volume $SINK -5%
    paplay $SOUND &
    notify
    ;;
  # increase
  i*)
    VOLUME=$(pactl list sinks | grep "Name: $SINK" -A 8 | grep -oE '[0-9]*%' | head -n 1 | sed 's/%//')
    INC=$((100 - $VOLUME))
    if [ $INC -gt 5 ]; then
      INC=5
    fi
    pactl set-sink-volume $SINK +${INC}%
    paplay $SOUND &
    notify
    ;;
  # mute
  m*)
    pactl set-sink-mute $SINK toggle
    paplay $SOUND &
    notify
    ;;
  # source-mute
  s*)
    pactl set-source-mute $SOURCE toggle
    paplay $SOUND &
    notify
    ;;
  # show gui
  gui)
    _check_app $APP
    _toggle $APP
    ;;
  *)
    echo "invalid command: \"$1\""
    echo "arguments: [decrease|increase|mute|gui]"
    ;;
esac