]> git.plutz.net Git - serve0/blob - actions/playctl.sh
55997cad1af59a60c1fc4a4a2c5e1b46a2f4e58c
[serve0] / actions / playctl.sh
1 #!/bin/zsh
2 # Copyright 2016 Paul Hänsch
3 #
4 # This file is part of Serve0
5 #
6 # Serve0 is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU Affero General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
10 #
11 # Serve0 is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU Affero General Public License for more details.
15 #
16 # You should have received a copy of the GNU Affero General Public License
17 # along with Serve0  If not, see <http://www.gnu.org/licenses/>.
18
19 fifofile="${_DATA}/mplayer.fifo"
20 statusfile="${_DATA}/mplayer.status"
21 statusfile="/tmp/mplayer.status"
22 volfile="${_DATA}/mplayer.volume"
23
24 export DISPLAY=":0"
25 export XDG_RUNTIME_DIR="/run/user/$(id |sed -rn '1s;.*uid=([0-9]+)[^0-9].*;\1;p')"
26
27 printf '\rBREAK\r' >> "$statusfile"
28
29 if   [ -n "${_POST[amp]+x}" ]; then
30   amp $(validate "${_POST[amp]}" '(on|off)' off)
31 elif [ -n "${_POST[vol]+x}" ]; then
32   vol=$(validate "${_POST[vol]}" '[1-9]?[0-9]|100' 10)
33   printf %s\\n $vol >"$volfile"
34   printf 'volume %s 1\n' $vol >"$fifofile"
35 elif [ -n "${_POST[ctl]+x}" ]; then
36   printf '%s\n' $(validate "${_POST[ctl]}" "pause|stop" pause) >"$fifofile"
37 elif [ -n "${_POST[seek]+x}" ]; then
38   printf 'seek %s\n' $(validate "${_POST[seek]}" "[+-]?[0-9]+" 0) >"$fifofile"
39 elif [ -n "${_POST[pasink]+x}" ]; then
40   stream="$(\
41     pactl list sink-inputs \
42     | sed -rn '/Sink Input #/{:X;N;/application.name =/!bX;s;Sink Input #([0-9]+).+application.name = "(MPlayer|mplayer2)";\1;p}' \
43   )"
44   pactl move-sink-input "$stream" "${_POST[pasink]}"
45 elif [ -n "${_POST[osd]+x}" ]; then
46   case ${_POST[osd]} in
47     progression) printf "osd_show_progression\\n";;
48   esac >"$fifofile"
49 fi &
50
51 redirect "${_POST[referrer]}"