5 location="$(invalidate "${_GET[l]}" '(.*/)?\.\.(/.*)?|' /)"
6 foreign="$(validate "${_GET[url]}" 'https?://.*' '')"
12 watch_link="${_POST[page]}&"
13 [ -n "$location" ] && watch_link="l=$(urlsafe "${location}")&"
14 [ -n "$info" ] && watch_link="i=$(urlsafe "${info}")&"
16 meta="${_DATA}/meta/$info.meta"
17 head -n1 "$meta" |read length width height filename
18 [ "$length" -gt 0 ] || length=0
19 [ "$width" -gt 0 ] || width=0
20 [ "$height" -gt 0 ] || height=0
22 linkinfo="$(urlsafe "$info")"
24 if [ "${_COOKIE[fakemp4]}" = yes ]; then
25 fakename="$(printf %s "${info}" |sed -r 's;.*/;;g; s;.[^.]+$;;; s;\.;_;g;')"
26 if [ "$info" != "${fakename}.mp4" ]; then
27 [ -e "${_DATA}/mp4/${fakename}.mp4" ] || ln -s "${_DATA}/videos/$info" "${_DATA}/mp4/${fakename}.mp4"
28 videourl="$(urlsafe "mp4/${fakename}.mp4")"
30 videourl="$(urlsafe "videos/$info")"
32 elif [ -n "$foreign" ]; then
34 videourl="${_GET[url]}"
35 watch_link="w=$(urlsafe "${_GET[return]}")"
36 elif [ -z "$info" ]; then
37 videourl="$(urlsafe "${location#/}")"
39 videourl="$(urlsafe "videos/$info")"
42 case "$_COOKIE[watch]" in
44 ncat "$RHOST" "$RPORT" >&- <<-EOF
45 GET /?action=watch&url=$(urlsafe "http://${HTTP_HOST}/${videourl}") HTTP/1.1$(printf \\r)
46 Host: ${RHOST}$(printf \\r)
49 redirect "?p=playctl&${watch_link}w=$(urlsafe "${_POST[page]}#${_GET[i]}")"
52 [ $height -gt 480 ] && redirect "?action=transcode&i=${linkinfo}&t=480" \
53 || redirect "$videourl"
56 [ $height -gt 240 ] && redirect "?action=transcode&i=${linkinfo}&t=240" \
57 || redirect "$videourl"
63 [ -n "$location" ] && playuri="${treeroot%/}/${location#/}"
64 [ -n "$info" ] && playuri="${_DATA}/videos/$info"
65 [ -n "$foreign" ] && playuri="$videourl"
67 metafile="${_DATA}/meta/${info}.meta"
69 playmeta="${_DATA}/mplayer.meta"
70 fifofile="${_DATA}/mplayer.fifo"
71 statusfile="${_DATA}/mplayer.status"
72 statusfile="/tmp/mplayer.status"
73 volume="$(validate "$(cat "${_DATA}/mplayer.volume" || true)" '[1-9]?[0-9]|100' 20)"
74 [ \! -p "$fifofile" ] && rm -f "$fifofile" && mkfifo -m 600 "$fifofile"
76 debug PLAYURI "$playuri"
78 if [ -f "$metafile" ]; then
79 cp "$metafile" "$playmeta"
82 "${_EXEC}"/helpers/genmeta.sh "$playuri" "$playmeta" >&-
86 uid="$(id |sed -rn '1s;.*uid=([0-9]+)[^0-9].*;\1;p')"
87 export XDG_RUNTIME_DIR="/run/user/$uid" # required for Pulseaudio
88 xrandr || true >&- # helps enable all screens
89 xvkbd -text '\x+10000\y+10000' || true >&-
91 if mplayer |grep -q MPlayer2; then
92 nohup /usr/bin/mplayer \
93 --slave --input=file="$fifofile" \
95 "$playuri" 2>"$statusfile" >&- &
97 nohup /usr/bin/mplayer \
98 -slave -input file="$fifofile" \
100 "$playuri" >"$statusfile" &
103 chmod 600 "$statusfile"
105 redirect "?p=playctl&${watch_link}"
107 *) redirect "?p=view&${watch_link}"