debianmacno-cupsweb
Last change
on this file since 7f94ef0 was
7f94ef0,
checked in by Ian Smith <ismith@…>, 15 years ago
|
queue now shows the filename properly
|
-
Property mode set to
100755
|
File size:
1.4 KB
|
Line | |
---|
1 | #!/bin/bash |
---|
2 | |
---|
3 | found_current= |
---|
4 | |
---|
5 | if [ -e "/var/run/sipbmp3/queue_times" ]; then |
---|
6 | rm "/var/run/sipbmp3/queue_times" |
---|
7 | fi |
---|
8 | |
---|
9 | cd /var/spool/lpd/sipbmp3/ |
---|
10 | for i in $(ls . | grep ^hf); do |
---|
11 | done=$(cat "$i" | grep done) |
---|
12 | if [ ! -n "$done" ]; then |
---|
13 | timestamp=$(cat "$i" | grep ^job_time= | sed 's/.*=//') |
---|
14 | echo "$timestamp:$i" >> /var/run/sipbmp3/queue_times |
---|
15 | fi |
---|
16 | done |
---|
17 | |
---|
18 | if [ -e /var/run/sipbmp3/queue_times ]; then |
---|
19 | for i in $(sort /var/run/sipbmp3/queue_times); do |
---|
20 | i=$(echo "$i" | sed 's/.*://') |
---|
21 | prefix="df"${i:2} |
---|
22 | for j in "$prefix"*; do song="$j"; done |
---|
23 | |
---|
24 | user=$(cat "$i" | grep ^P=) |
---|
25 | user=${user:2} |
---|
26 | |
---|
27 | if [ -e /var/run/sipbmp3/exiftool_data ]; then |
---|
28 | rm /var/run/sipbmp3/exiftool_data |
---|
29 | fi |
---|
30 | |
---|
31 | exiftool "$song" >> /var/run/sipbmp3/exiftool_data |
---|
32 | title=$(cat /var/run/sipbmp3/exiftool_data | grep "^Title " | sed 's/.*: //') |
---|
33 | artist=$(cat /var/run/sipbmp3/exiftool_data | grep "^Artist " | sed 's/.*: //') |
---|
34 | |
---|
35 | if [ -z "$found_current" ]; then |
---|
36 | host=$(cat "$i" | grep ^H=) |
---|
37 | host=${host:2} |
---|
38 | filenm="$(cat $i | grep "^filenames" | sed -e 's/filenames=//')" |
---|
39 | album=$(cat /var/run/sipbmp3/exiftool_data | grep "^Album " | sed 's/.*: //') |
---|
40 | echo "$user@$host is currently playing: " |
---|
41 | echo "$filenm" |
---|
42 | echo "'$title'" |
---|
43 | echo "by '$artist'" |
---|
44 | echo "on '$album'" |
---|
45 | echo "" |
---|
46 | echo "Coming up in the queue:" |
---|
47 | found_current="true" |
---|
48 | else |
---|
49 | echo "$user: '$title' by '$artist'" |
---|
50 | fi |
---|
51 | done |
---|
52 | fi |
---|
Note: See
TracBrowser
for help on using the repository browser.