]> git.plutz.net Git - serve0/blob - pages/list.sh
submit page locators via post instead of relying on referrer
[serve0] / pages / list.sh
1 #!/bin/zsh
2
3 # Copyright 2014 - 2016 Paul Hänsch
4 #
5 # This file is part of Serve0.
6
7 # Serve0 is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU Affero General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11
12 # Serve0 is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU Affero General Public License for more details.
16
17 # You should have received a copy of the GNU Affero General Public License
18 # along with Serve0.  If not, see <http://www.gnu.org/licenses/>. 
19
20 . $_EXEC/pages/common.sh
21
22 LF='
23 '
24 filters="${_GET[f]}"
25 debug "FILTERS: $filters"
26
27 present_filter(){
28   printf %s\\n "$*" \
29   | sed -r 's;(^|!|\^|\|)([^!\^\|:]+:);\1;g;s;\^;\n;g' \
30   | sort -r \
31   | sed -r '$q;s;$; \&amp\; ;g'
32 }
33
34 if [ -n "$search" ]; then
35   TITLE="$search by $order"
36 elif [ -n $filter ]; then
37   TITLE="$(present_filter "$filter") by $order"
38 else
39   TITLE="List by $order"
40 fi
41
42 category_selected(){
43   cat="${1}:"
44   filter="$2"
45   [ "$cat" = "none:" ] && cat=''
46
47   printf %s "$taglist_filter" \
48   | sed -r 's;^('"$filter"')$;1 &;;t;s;^;0 ;' \
49   | sed -rn 's;^(0|1) '"$cat"'([^:]+)$;\1 \2;p' \
50   | sed 's;^0 ;<option>;;s;^1 ;<option selected>;;s;$;</option>;'
51 }
52
53 _printVideo(){
54   info="$1"
55   cache="${_DATA}/cache/$info.cache"
56   meta="${_DATA}/meta/$info.meta"
57
58   if [ "$cache" -nt "$meta" ]; then
59     cat "$cache"
60   else
61     videofile="${_DATA}/videos/$info"
62     thumb="${_DATA}/thumbs/${info}.jpg"
63     [ -r "$thumb" ] || genthumb "$videofile" "$thumb"
64     [ -r "$meta"  ] || genmeta "$videofile" "$meta"
65
66     head -n1 "$meta" |read length width height filename
67     length=$(validate "$length" '[0-9]+' 0)
68     width=$(validate "$width" '[0-9]+' 0)
69     height=$(validate "$height" '[0-9]+' 0)
70
71     tags="$(sed -n 2p "$meta")"
72     video="$(urlsafe "videos/$info")"
73     thumb="$(urlsafe "thumbs/$info.jpg")"
74     linkinfo="$(urlsafe "$info")"
75     htmlinfo="$(htmlsafe "$info")"
76
77     minutes="$(printf "%d:%02d" $(($length / 60)) $(($length % 60)) )"
78
79     tee "$cache" <<VIDEOend
80       <li class="thumb">
81         <button class="watchlink" name="${linkinfo}" formaction="?action=watch&i=${linkinfo}">
82           <img src="$thumb" alt="Preview not yet available">
83         </button>
84         <h2>${htmlinfo}</h2>
85         
86         <input type="checkbox" name="tagsel" value="${htmlinfo}">
87         <span class="info property">${minutes}min</span>
88         <span class="info property">${width}x${height}</span>
89         $(printf %s "$tags" |sed -r 's:\|*([^|]+)\|*: <span class="info tag">\1</span>:g')
90       </li>
91 VIDEOend
92   fi
93 }
94
95 genlist(){
96   case "$order" in
97     Date)   ls -c "${_DATA}"/videos/ |egrep -i "$file_pattern";;
98     Length) sed -sn 1p "${_DATA}"/meta/*.meta |sort -n |sed -r 's;^[0-9\t]+\t;;';;
99     Name)   printf '%s\n' "${_DATA}"/videos/* |sed -r 's;^.*/;;;';;
100   esac
101 }
102
103 selectionlist() {
104   cachebase="?o=${order}&s=${search//\//}&f=${filter//\//}"
105   cache="${_DATA}/cache/${cachebase}"
106   if [ "$cache" -nt ${_DATA}/videos -a "$cache" -nt ${_DATA}/meta ]; then
107     cat "$cache"
108   else
109     filterex="s;^([0-9]+\t){3}(.+)\n.*$;\2;p"
110     printf '%s\n' "$filter" |tr '^' '\n' \
111     | sed -r 's;[]\/\(\)\\\^\$\?\.\+\*\;\[\{\}];\\\\&;g' \
112     | while read each; do
113       [ "${each:0:1}" = '!' ] && filterex="/^[^\n]+\n(.*\|)?(${each#?})(\|.*)?$/d;{${filterex}}" \
114                               || filterex="/^[^\n]+\n(.*\|)?(${each})(\|.*)?$/{${filterex}}"
115     done
116       
117     genlist \
118     | if [ -n "$search" ] ; then
119       debug "Applying search: ${search}"
120       xargs -d '\n' printf "${_DATA}/meta/%s.meta\n" \
121       | xargs -d '\n' egrep -sil "$search" \
122       | sed -r 's;^.*/;;;s;\.meta$;;'
123     elif [ -n "$filter" ]; then
124       debug "Applying filters: ${filter} ++ ${filterex}"
125       xargs -d '\n' printf "${_DATA}/meta/%s.meta\n" \
126       | xargs -d '\n' sed -srn ":a;N;2!ba;{${filterex}}"
127     else
128       debug "No search or filtering"
129       cat
130     fi \
131     | tee "$cache"
132   fi
133 }
134
135 thumblist() {
136   selectionlist \
137   | sed -n "$page,$(($page + $pagesize - 1))p" \
138   | while read line; do
139     _printVideo "$line"
140   done
141 }
142
143 pagecount() {
144   printf "$(( $(selectionlist | wc -l) / $pagesize + 1 ))"
145 }