]> git.plutz.net Git - serve0/blob - pages/browse.sh
improved browse page (code improvements, page enumeration)
[serve0] / pages / browse.sh
1 #!/bin/zsh
2
3 # Copyright 2014 - 2017 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 directory="$(invalidate "${_GET[d]}" '(.*/)?\.\.(/.*)?|' /)"
25 [ -d "${treeroot}/${directory#/}/.index" ] && indexed=true || indexed=false
26 filters="${_GET[f]}"
27 debug "FILTERS: $filters"
28
29 present_filter(){
30   printf %s\\n "$*" \
31   | sed -r 's;(^|!|\^|\|)([^!\^\|:]+:);\1;g;s;\^;\n;g' \
32   | sort -r \
33   | sed -r '$q;s;$; \&amp\; ;g'
34 }
35
36 if [ -n "$search" ]; then
37   TITLE="$search by $order"
38 elif [ -n $filter ]; then
39   TITLE="$(present_filter "$filter") by $order"
40 else
41   TITLE="List by $order"
42 fi
43
44 category_selected(){
45   cat="${1}:"
46   filter="$2"
47   [ "$cat" = "none:" ] && cat=''
48
49   printf %s "$taglist_filter" \
50   | sed -r 's;^('"$filter"')$;1 &;;t;s;^;0 ;' \
51   | sed -rn 's;^(0|1) '"$cat"'([^:]+)$;\1 \2;p' \
52   | sed 's;^0 ;<option>;;s;^1 ;<option selected>;;s;$;</option>;'
53 }
54
55 _printVideo(){
56   name="$1"
57
58   video="${treeroot%/}/${directory%/}/${name}"
59   thumb="${treeroot%/}/${directory%/}/.index/${name}.jpg"
60    meta="${treeroot%/}/${directory%/}/.index/${name}.meta"
61
62   [ -f "$thumb" ] || genthumb "$video" "$thumb"
63   [ -f "$meta"  ] || genmeta "$video" "$meta"
64
65   { read -r length width height filename
66     read -r tags
67   } <"$meta"
68   read length width height <<-EOF
69         $(validate "$length $width $height" '[0-9]+ [0-9]+ [0-9]+' "0 0 0")
70         EOF
71
72   location="$(attribsafe "${directory%/}/${name}")"
73   thumblocation="$(attribsafe "${directory%/}/.index/${name}.jpg")"
74   display="$(htmlsafe "$name")"
75
76   minutes="$(printf "%d:%02d" $(($length / 60)) $(($length % 60)) )"
77
78   cat <<VIDEOend
79     <li id="${location}" class="thumb">
80       <button class="watchlink" name="${location}" formaction="?action=watch&l=${location}">
81         <img src="${thumblocation}" alt="Preview not yet available">
82       </button>
83       <h2><a href="?action=watch&l=${location}">${display}</a></h2>
84       
85       <input type="checkbox" name="tagsel" value="${location}">
86       <span class="info property">${minutes}min</span>
87       <span class="info property">${width}x${height}</span>
88       $(printf %s "$tags" |sed -r 's:\|*([^|]+)\|*: <span class="info tag">\1</span>:g')
89     </li>
90 VIDEOend
91 }
92
93 genlist(){
94   case "$order" in
95     Date)   find "${_DATA}"/videos/ -maxdepth 1 -mindepth 1 -printf '%T@ %f\n' |sort -r |cut -d\  -f2- |egrep -i "$file_pattern";;
96     Length) sed -sn 1p "${_DATA}"/meta/*.meta |sort -n |sed -r 's;^[0-9\t]+\t;;';;
97     Name)   find "${_DATA}"/videos/ -maxdepth 1 -mindepth 1 -printf     '%f\n' |sort |egrep -i "$file_pattern";;
98   esac
99 }
100
101 selectionlist() {
102   cachebase="?o=${order}&s=${search//\//}&f=${filter//\//}"
103   cache="${_DATA}/cache/${cachebase}"
104   if [ -s "$cache" -a "$cache" -nt ${_DATA}/videos -a "$cache" -nt ${_DATA}/meta ]; then
105     cat "$cache"
106   else
107     filterex="s;^([0-9]+\t){3}(.+)\n.*$;\2;p"
108     printf '%s\n' "$filter" |tr '^' '\n' \
109     | sed -r 's;[]\/\(\)\\\^\$\?\.\+\*\;\[\{\}];\\\\&;g' \
110     | while read each; do
111       [ "${each:0:1}" = '!' ] && filterex="/^[^\n]+\n(.*\|)?(${each#?})(\|.*)?$/d;{${filterex}}" \
112                               || filterex="/^[^\n]+\n(.*\|)?(${each})(\|.*)?$/{${filterex}}"
113     done
114       
115     genlist \
116     | if [ -n "$search" ] ; then
117       debug "Applying search: ${search}"
118       xargs -d '\n' printf "${_DATA}/meta/%s.meta\n" \
119       | xargs -d '\n' egrep -sil "$search" \
120       | sed -r 's;^.*/;;;s;\.meta$;;'
121     elif [ -n "$filter" ]; then
122       debug "Applying filters: ${filter} ++ ${filterex}"
123       xargs -d '\n' printf "${_DATA}/meta/%s.meta\n" \
124       | xargs -d '\n' sed -srn ":a;N;2!ba;{${filterex}}"
125     else
126       debug "No search or filtering"
127       cat
128     fi \
129     | tee "$cache"
130   fi
131 }
132
133 filelist(){
134   dir="${treeroot%/}/${directory#/}"
135
136   find -L "$dir" -mindepth 1 -maxdepth 1 -type d \! -name ".index" -printf "directory %P\n" \
137   | sort
138   find -L "$dir" -mindepth 1 -maxdepth 1 \! -type d -printf "video %P\n" \
139   | grep -iE "$file_pattern" \
140   | sort
141   find -L "$dir" -mindepth 1 -maxdepth 1 \! -type d -printf "plain %P\n" \
142   | grep -viE "$file_pattern" \
143   | sort
144 }
145
146 thumblist(){
147   debug "Filelist with dir = $directory"
148
149   [ -n "${directory#/}" ] && printf %s "<a class='file directory' href='?p=browse&d=$(urlsafe "${directory%/*}")'>..</a>"
150
151   filelist \
152   | sed -n "$page,$(($page + $pagesize - 1))p" \
153   | while read -r type name; do
154     case $type in
155       directory)
156         printf '<a class="file directory" href="?p=browse&d=%s">%s</a>\n' \
157                "$(urlsafe "${directory%/}/$name")" "$(htmlsafe "$name")"
158         ;;
159       video)
160         $indexed && _printVideo "$name" \
161         || printf '<a class="file video" href="?action=watch&l=%s">%s</a>\n' \
162                   "$(urlsafe "${directory%/}/$name")" "$(htmlsafe "$name")"
163         ;;
164       plain)
165         printf '<span class="file plain">%s</span>\n' "$(htmlsafe "$name")"
166         ;;
167     esac
168   done
169 }
170
171 pagecount() {
172   printf "$(( $(filelist | wc -l) / $pagesize + 1 ))"
173 }