X-Git-Url: http://git.plutz.net/?a=blobdiff_plain;f=actions%2Fwatch.sh;h=5b4119f7612f6b51c32f367f9b4655e5d4531be2;hb=7325a10deded9a135b354e77d231a0ab38e13925;hp=2a91ce89b751f976d128f30787c8c21023f96aaa;hpb=be2bfa17d3c7b2ed13c01ee42f54bd614cbbe3e9;p=serve0 diff --git a/actions/watch.sh b/actions/watch.sh index 2a91ce8..5b4119f 100755 --- a/actions/watch.sh +++ b/actions/watch.sh @@ -2,17 +2,20 @@ cgi_refdata info="${_GET[i]}" -order="${_REF[o]}" -search="${_REF[s]}" -filter="${_REF[f]}" -page="${_REF[pn]}" +location="$(invalidate "${_GET[l]}" '(.*/)?\.\.(/.*)?|' /)" +foreign="$(validate "${_GET[url]}" 'https?://.*' '')" +order="${_POST[o]}" +search="${_POST[s]}" +filter="${_POST[f]}" +page="${_POST[pn]}" watch_link='' -[ -n "$info" ] && watch_link="i=$(urlsafe "${info}")&" -[ -n "$order" ] && watch_link="${watch_link}o=${order}&" -[ -n "$search" ] && watch_link="${watch_link}s=${search}&" -[ -n "$filter" ] && watch_link="${watch_link}f=${filter}&" -[ -n "$page" ] && watch_link="${watch_link}pn=${page}" +[ -n "$location" ] && watch_link="l=$(urlsafe "${location}")&" +[ -n "$info" ] && watch_link="i=$(urlsafe "${info}")&" +[ -n "$order" ] && watch_link="${watch_link}o=${order}&" +[ -n "$search" ] && watch_link="${watch_link}s=${search}&" +[ -n "$filter" ] && watch_link="${watch_link}f=${filter}&" +[ -n "$page" ] && watch_link="${watch_link}pn=${page}" meta="${_DATA}/meta/$info.meta" head -n1 "$meta" |read length width height filename @@ -25,15 +28,19 @@ linkinfo="$(urlsafe "$info")" if [ "${_COOKIE[fakemp4]}" = yes ] && [ "${info##*.}" != mp4 ]; then [ -e "${_DATA}/videos/${info%.*}.mp4" ] || ln -s "${_DATA}/videos/$info" "${_DATA}/mp4/${info%.*}.mp4" videourl="$(urlsafe "mp4/${info%.*}.mp4")" +elif [ -n "$foreign" ]; then + _COOKIE[watch]=server + videourl="${_GET[url]}" +elif [ -z "$info" ]; then + videourl="$(urlsafe "${location#/}")" else videourl="$(urlsafe "videos/$info")" fi -case "${_COOKIE[watch]}" in +case "$_COOKIE[watch]" in raspi) - rpiaddr="http://pfostenpanne.helmchyn.no-ip.biz/?player=play&path=" - [ $height -gt 480 -a $width -gt 480 ] && redirect "${rpiaddr}$(urlsafe "http://jupiter:8000/?action=transcode&i=${linkinfo}&t=480")" \ - || redirect "${rpiaddr}$(urlsafe "http://jupiter:8000/${videourl}")" + rpiaddr="http://atoemchen.helmchyn.no-ip.biz/?action=watch&url=" + redirect "${rpiaddr}$(urlsafe "http://jupiter:8000/${videourl}")" ;; 480p) [ $height -gt 480 ] && redirect "?action=transcode&i=${linkinfo}&t=480" \ @@ -47,8 +54,46 @@ case "${_COOKIE[watch]}" in redirect "$videourl" ;; server) - DISPLAY=:0 XDG_RUNTIME_DIR=/run/user/1006 nohup /usr/bin/mplayer -ao pulse --quiet "${_DATA}/videos/$info" >/dev/null 2>/dev/null & - redirect "$HTTP_REFERER" + [ -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 + + 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 + xrandr >/dev/null # helps enable all screens + + # nohup /usr/bin/mplayer \ + # -slave -input file="$fifofile" \ + # -volume "$volume" \ + # "$playuri" >"$statusfile" 2>/dev/null & + + # MPlayer2: (statusline on stderr) + nohup /usr/bin/mplayer \ + --slave --input=file="$fifofile" \ + --volume="$volume" \ + "$playuri" 2>"$statusfile" >/dev/null & + + chmod 600 "$statusfile" + + redirect "?p=playctl&${watch_link}" ;; *) redirect "?p=view&${watch_link}" ;;