forked from doctorfree/RoonCommandLine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_zone_volume
executable file
·82 lines (73 loc) · 1.85 KB
/
get_zone_volume
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#!/bin/bash
#
# shellcheck disable=SC1090,SC2220
ROON=/usr/local/Roon
ROONAPI=${ROON}/api
ROONETC=${ROON}/etc
ROONCONF=${ROONETC}/pyroonconf
SCRIPT=get_zone_attributes.py
[ -d ${ROONAPI} ] || exit 1
cd ${ROONAPI} || exit 1
[ -f $SCRIPT ] || exit 2
# Use a Python virtual environment
[ -f ${ROON}/venv/bin/activate ] && source ${ROON}/venv/bin/activate
[[ ":$PATH:" == *":/usr/local/Roon/venv/bin:"* ]] || {
export PATH=/usr/local/Roon/venv/bin:${PATH}
}
# Get the zone if it is set
if [ -f ${ROONCONF} ]
then
. ${ROONCONF}
else
DEFZONE=$(grep ^DefaultZone ${ROONETC}/roon_api.ini | awk -F '=' ' { print $2 } ')
${ROON}/bin/set_zone "${DEFZONE}"
. ${ROONCONF}
fi
grparg=
number=
# Parse the arguments to get the command and zone
while getopts "gnz:" flag; do
case $flag in
g)
grparg="-g"
;;
n)
number=1
;;
z)
ROON_ZONE="$OPTARG"
;;
esac
done
have_python3=$(type -p python3)
have_jq=$(type -p jq)
if [ "${have_python3}" ]
then
if [ "${have_jq}" ]
then
if [ "${number}" ]
then
python3 $SCRIPT ${grparg} -z "$ROON_ZONE" | jq -r '.[].volume.value?'
else
python3 $SCRIPT ${grparg} -z "$ROON_ZONE" | \
jq -r '.[]? | "\(.display_name): Volume = \(.volume.value), Min = \(.volume.min), Max = \(.volume.max)"'
fi
else
# TODO: Parse returned JSON without jq
python3 $SCRIPT ${grparg} -z "$ROON_ZONE"
fi
else
if [ "${have_jq}" ]
then
if [ "${number}" ]
then
python $SCRIPT ${grparg} -z "$ROON_ZONE" | jq -r '.[].volume.value?'
else
python $SCRIPT ${grparg} -z "$ROON_ZONE" | \
jq -r '.[]? | "\(.display_name): Volume = \(.volume.value), Min = \(.volume.min), Max = \(.volume.max)"'
fi
else
# TODO: Parse returned JSON without jq
python $SCRIPT ${grparg} -z "$ROON_ZONE"
fi
fi