]> git.plutz.net Git - serve0/blob - actions/watch.sh
new folder browse section
[serve0] / actions / watch.sh
1 #!/bin/zsh
2
3 cgi_refdata
4 info="${_GET[i]}"
5 location="$(invalidate "${_GET[l]}" '(.*/)?\.\.(/.*)?|' /)"
6 order="${_REF[o]}"
7 search="${_REF[s]}"
8 filter="${_REF[f]}"
9 page="${_REF[pn]}"
10
11 watch_link=''
12 [ -n "$location" ] && watch_link="l=$(urlsafe "${location}")&"
13 [ -n "$info" ]     && watch_link="i=$(urlsafe "${info}")&"
14 [ -n "$order" ]    && watch_link="${watch_link}o=${order}&"
15 [ -n "$search" ]   && watch_link="${watch_link}s=${search}&"
16 [ -n "$filter" ]   && watch_link="${watch_link}f=${filter}&"
17 [ -n "$page" ]     && watch_link="${watch_link}pn=${page}"
18
19 meta="${_DATA}/meta/$info.meta"
20 head -n1 "$meta" |read length width height filename
21 [ "$length" -gt 0 ] || length=0
22 [ "$width"  -gt 0 ] || width=0
23 [ "$height" -gt 0 ] || height=0
24
25 linkinfo="$(urlsafe "$info")"
26
27 if [ "${_COOKIE[fakemp4]}" = yes ] && [ "${info##*.}" != mp4 ]; then
28   [ -e "${_DATA}/videos/${info%.*}.mp4" ] || ln -s "${_DATA}/videos/$info" "${_DATA}/mp4/${info%.*}.mp4"
29   videourl="$(urlsafe "mp4/${info%.*}.mp4")"
30 else
31   videourl="$(urlsafe "videos/$info")"
32 fi
33
34 case "${_COOKIE[watch]}" in
35   raspi)
36     rpiaddr="http://pfostenpanne.helmchyn.no-ip.biz/?player=play&path="
37     [ $height -gt 480 -a $width -gt 480 ] && redirect "${rpiaddr}$(urlsafe "http://jupiter:8000/?action=transcode&i=${linkinfo}&t=480")" \
38                                           || redirect "${rpiaddr}$(urlsafe "http://jupiter:8000/${videourl}")"
39   ;;
40   480p)
41     [ $height -gt 480 ] && redirect "?action=transcode&i=${linkinfo}&t=480" \
42                         || redirect "$videourl"
43   ;;
44   240p)
45     [ $height -gt 240 ] && redirect "?action=transcode&i=${linkinfo}&t=240" \
46                         || redirect "$videourl"
47   ;;
48   download)
49     redirect "$videourl"
50   ;;
51   server)
52     if [ -n "$info" ]; then
53       DISPLAY=:0 XDG_RUNTIME_DIR=/run/user/1006 nohup /usr/bin/mplayer -ao pulse --quiet "${_DATA}/videos/$info" >/dev/null 2>/dev/null &
54     elif [ -n "$location" ]; then
55       DISPLAY=:0 XDG_RUNTIME_DIR=/run/user/1006 nohup /usr/bin/mplayer -ao pulse --quiet "${treeroot%/}/${location#/}" >/dev/null 2>/dev/null &
56     fi
57     redirect "$HTTP_REFERER"
58   ;;
59   *) redirect "?p=view&${watch_link}"
60   ;;
61 esac
62
63
64