]> git.plutz.net Git - serve0/blob - pages/common.sh
avoid filtering with empty filters
[serve0] / pages / common.sh
1 #!/bin/zsh
2
3 # Copyright 2014, 2015 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 filter="${_GET[f]}"
21 search="${_GET[s]}"
22 order="${_GET[o]}" #validated
23 page="${_GET[pn]}" #validated
24 pagesize="${_COOKIE[pagesize]}" #validated
25
26 page_link=''
27 [ -n "$info" ]   && page_link="i=$(urlsafe "$info")&"
28 [ -n "$order" ]  && page_link="${page_link}o=${order}&"
29 [ -n "$search" ] && page_link="${page_link}s=${search}&"
30 [ -n "$filter" ] && page_link="${page_link}f=${filter}&"
31 page_prev="${page_link}pn=$([ "$page" -le "$pagesize" ] && echo 1 || echo $(($page - $pagesize)) )"
32 page_next="${page_link}pn=$(($page + $pagesize))"
33 page_this="${page_link}pn=$page"
34
35 taglist=$(
36   [ -r ${_DATA}/cache/taglist ] && cat ${_DATA}/cache/taglist ||\
37   for each in ${_DATA}/meta/*.meta; do
38     sed -n '2s:|:\n:gp' "$each"
39   done |sort -u |grep -xv '' |tee ${_DATA}/cache/taglist
40 )
41
42 genthumb(){
43   videofile="$(printf %s "$1" |sed -r "s;';'\\'';g")"
44       thumb="$(printf %s "$2" |sed -r "s;';'\\'';g")"
45
46   printf '%s\n' "${_EXEC}/helpers/genthumb.sh '$videofile' '$thumb' >/dev/null 2>/dev/null" \
47   | batch
48 }
49
50 _printVideo(){
51   info="$1"
52   cache="${_DATA}/cache/$info.cache"
53   meta="${_DATA}/meta/$info.meta"
54
55   if [ "$cache" -nt "$meta" ]; then
56     cat "$cache"
57   else
58     videofile="${_DATA}/videos/$info"
59     thumb="${_DATA}/thumbs/${info}.jpg"
60     [ -r "$thumb" ] || genthumb "$videofile" "$thumb"
61     [ -r "$meta"  ] || "${_EXEC}/helpers/genmeta.sh" "$videofile" "$meta" >/dev/null
62
63     head -n1 "$meta" |read length width height filename
64     [ -z "$length" ] && length=0
65     [ -z "$width"  ] && width=0
66     [ -z "$height" ] && height=0
67
68     tags="$(sed -n 2p "$meta")"
69     video="$(urlsafe "videos/$info")"
70     thumb="$(urlsafe "thumbs/$info.jpg")"
71     linkinfo="$(urlsafe "$info")"
72     htmlinfo="$(htmlsafe "$info")"
73
74     [ "$(($length % 60))" -lt 10 ] && minutes="$(($length / 60)):0$(($length % 60))" \
75                                    || minutes="$(($length / 60)):$(($length % 60))"
76
77     tee "$cache" <<VIDEOend
78       <li class="thumb">
79         <a class="watchlink" name="${linkinfo}" href="?action=watch&i=${linkinfo}">
80           <img src="$thumb" alt="Preview not yet available">
81         </a>
82         <h2>${htmlinfo}</h2>
83         
84         <input type="checkbox" name="tagsel" value="${htmlinfo}">
85         <span class="info property">${minutes}min</span>
86         <span class="info property">${width}x${height}</span>
87         $(printf %s "$tags" |sed -r 's:\|*([^|]+)\|*: <span class="info tag">\1</span>:g')
88       </li>
89 VIDEOend
90   fi
91 }
92
93 genlist(){
94   case "$order" in
95     Date)   ls -c "${_DATA}"/videos/ |egrep -i "$file_pattern";;
96     Length) sed -sn 1p "${_DATA}"/meta/*.meta |sort -n |sed -r 's;^[0-9\t]+\t;;';;
97     Name)   printf '%s\n' "${_DATA}"/videos/* |sed -r 's;^.*/;;;';;
98   esac
99 }
100
101 thumblist() {
102   cache="${_DATA}/cache/${pagesize}?o=${order}&s=${search}&f=${filter}&pn=${page}"
103   if [ "$cache" -nt ${_DATA}/videos -a "$cache" -nt ${_DATA}/meta ]; then
104     cat "$cache"
105   else
106     filterex="s;^([0-9]+\t){3}(.+)\n.*$;\2;p"
107     printf '%s\n' "$filter" |tr '^' '\n' \
108     | while read each; do
109       [ "${each:0:1}" = '!' ] && filterex="/^[^\n]+\n(.*\|)?(${each#?})(\|.*)?$/d;{${filterex}}" \
110                               || filterex="/^[^\n]+\n(.*\|)?(${each})(\|.*)?$/{${filterex}}"
111     done
112       
113     genlist \
114     | if [ -n "$search" ] ; then
115       debug "Applying search: ${search}"
116       xargs -d '\n' printf "${_DATA}/meta/%s.meta\n" \
117       | xargs -d '\n' egrep -sil "$search" \
118       | sed -r 's;^.*/;;;s;\.meta$;;'
119     elif [ -n "$filter" ]; then
120       debug "Applying filters: ${filter} ++ ${filterex}"
121       xargs -d '\n' printf "${_DATA}/meta/%s.meta\n" \
122       | xargs -d '\n' sed -srn ":a;N;2!ba;{${filterex}}"
123     else
124       debug "No search or filtering"
125       cat
126     fi \
127     | sed -n "$page,$(($page + $pagesize - 1))p" \
128     | tee "$cache"
129   fi \
130   | while read line; do
131     _printVideo "$line"
132   done
133 }