X-Git-Url: http://git.plutz.net/?a=blobdiff_plain;f=actions%2Fwatch.sh;h=e473ac4755d1479bb537272e2972090546effc8a;hb=c9a4356009019fd2ec4b6f38926fea236f4f2960;hp=b79de8758d5497a50c305f585ca166cb0cba6ba3;hpb=c99ab651783572b0a4e6dc76e93f60418cdf683b;p=serve0 diff --git a/actions/watch.sh b/actions/watch.sh index b79de87..e473ac4 100755 --- a/actions/watch.sh +++ b/actions/watch.sh @@ -3,10 +3,10 @@ cgi_refdata info="${_GET[i]}" location="$(invalidate "${_GET[l]}" '(.*/)?\.\.(/.*)?|' /)" -order="${_REF[o]}" -search="${_REF[s]}" -filter="${_REF[f]}" -page="${_REF[pn]}" +order="${_POST[o]}" +search="${_POST[s]}" +filter="${_POST[f]}" +page="${_POST[pn]}" watch_link='' [ -n "$location" ] && watch_link="l=$(urlsafe "${location}")&" @@ -51,12 +51,45 @@ case "${_COOKIE[watch]}" in redirect "$videourl" ;; server) - if [ -n "$info" ]; then - DISPLAY=:0 XDG_RUNTIME_DIR=/run/user/1006 nohup /usr/bin/mplayer -ao pulse --quiet "${_DATA}/videos/$info" >/dev/null 2>/dev/null & - elif [ -n "$location" ]; then - DISPLAY=:0 XDG_RUNTIME_DIR=/run/user/1006 nohup /usr/bin/mplayer -ao pulse --quiet "${treeroot%/}/${location#/}" >/dev/null 2>/dev/null & + [ -n "$location" ] && playuri="${treeroot%/}/${location#/}" + [ -n "$info" ] && playuri="${_DATA}/videos/$info" + + metafile="${_DATA}/meta/${info}.meta" + + playmeta="${_DATA}/mplayer.meta" + fifofile="${_DATA}/mplayer.fifo" + statusfile="${_DATA}/mplayer.status" + statusfile="/tmp/mplayer.status" + volume="$(validate "$(cat "${_DATA}/mplayer.volume")" '[1-9]?[0-9]|100' 20)" + [ \! -p "$fifofile" ] && rm -f "$fifofile" && mkfifo -m 600 "$fifofile" + + debug PLAYURI "$playuri" + + if [ -f "$metafile" ]; then + cp "$metafile" "$playmeta" + else + rm "$playmeta" + "${_EXEC}"/helpers/genmeta.sh "$playuri" "$playmeta" >/dev/null fi - redirect "$HTTP_REFERER#$linkinfo" + + export DISPLAY=":0" + uid="$(id |sed -rn '1s;.*uid=([0-9]+)[^0-9].*;\1;p')" + export XDG_RUNTIME_DIR="/run/user/$uid" # required for Pulseaudio + + nohup /usr/bin/mplayer -ao pulse \ + -slave -input file="$fifofile" \ + -volume "$volume" \ + "$playuri" >"$statusfile" 2>/dev/null & + + # # MPlayer2: + # nohup /usr/bin/mplayer -ao pulse \ + # --slave --input=file="$fifofile" \ + # --volume="$volume" \ + # "$playuri" >"$statusfile" 2>/dev/null & + + chmod 600 "$statusfile" + + redirect "?p=playctl&${watch_link}" ;; *) redirect "?p=view&${watch_link}" ;;