-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
list_genre_albums
executable file
·69 lines (57 loc) · 1.8 KB
/
list_genre_albums
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
#!/bin/bash
#
# shellcheck disable=SC1090,SC2220
ROON=/usr/local/Roon
ROONAPI=${ROON}/api
ROONETC=${ROON}/etc
ROONCONF=${ROONETC}/pyroonconf
LIST=list_genre_albums.py
GENRE=
ALBUM=
EXGENRE=
EXALBUM=
[ -d ${ROONAPI} ] || exit 1
cd ${ROONAPI} || exit 1
[ -f $LIST ] || exit 2
# First argument is genre, second is album (required)
# Third optional argument is genre exclusion string (optional)
# Fourth optional argument is album exclusion string (optional)
[ "$1" ] && GENRE="$1"
[ "$2" ] && ALBUM="$2"
[ "$3" ] && EXGENRE="$3"
[ "$4" ] && EXALBUM="$4"
# 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}
}
DEFZONE=$(grep ^DefaultZone ${ROONETC}/roon_api.ini | awk -F '=' ' { print $2 } ')
# Remove leading and trailing spaces in DEFZONE
DEFZONE="$(echo -e "${DEFZONE}" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')"
# Get the zone if it is set
if [ -f ${ROONCONF} ]
then
. ${ROONCONF}
else
${ROON}/bin/set_zone "${DEFZONE}"
. ${ROONCONF}
fi
[ "${ROON_ZONE}" ] || ROON_ZONE="${DEFZONE}"
# Get the default genre if one is not provided
[ "${GENRE}" ] || {
GENRE=$(grep ^DefaultGenre ${ROONETC}/roon_api.ini | awk -F '=' ' { print $2 } ')
# Remove leading and trailing spaces in GENRE
GENRE="$(echo -e "${GENRE}" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')"
}
[ "${ALBUM}" ] || ALBUM="__all__"
# Construct the exclusion args if passed
EXARGS=
[ "${EXALBUM}" ] && EXARGS="-X ${EXALBUM}"
[ "${EXGENRE}" ] && EXARGS="-x ${EXGENRE} ${EXARGS}"
have_python3=$(type -p python3)
if [ "${have_python3}" ]
then
python3 $LIST -a "$ALBUM" -g "$GENRE" -z "$ROON_ZONE" $EXARGS
else
python $LIST -a "$ALBUM" -g "$GENRE" -z "$ROON_ZONE" $EXARGS
fi