]> git.plutz.net Git - serve0/blob - list.sh
bugfix: strip old page number in pagination link
[serve0] / list.sh
1 #!/bin/sh
2
3 . "$_EXEC/indexmeta.sh"
4 . "$_EXEC/widgets.sh"
5 . "$_EXEC/db_meta.sh"
6
7 list_item() {
8   local meta file link name
9   eval "$LOCAL_META"
10   meta="${1}";
11
12   read_meta <<-EOF
13         $meta
14         EOF
15
16   if [ "${META_NAME%/}" != "${META_NAME}" ]; then
17     printf '[a .list .dir href="%s?%s" . %s]' \
18            "$(URL "${PATH_INFO%/}/${META_NAME}")" "${w_refuri#*\?}" \
19            "$(HTML "${META_NAME%/}")"
20     return 0
21   fi
22
23   file="$_DATA/${PATH_INFO%/}/$(list_fullname "${META_NAME}")"
24   if [ -f "$file" ]; then
25     link="$(URL "${PATH_INFO%/}/${file#${_DATA}/${PATH_INFO}}")"
26     name="$(HTML "${PATH_INFO%/}/${file#${_DATA}/${PATH_INFO}}")"
27     printf '[div .list .file
28               [a href="%s" [img src="%s?a=thumbnail"]][label . %s]
29               [span .time %i:%02imin] [span .dim %ix%i] %s
30               [checkbox "select" "%s" id="select_%s"][label for="select_%s" +]
31             ]' \
32       "$link" "$link" "${name##/}" \
33       "$((META_LENGTH / 60))" "$((META_LENGTH % 60))" \
34       "$META_WIDTH" "$META_HEIGHT" \
35       "$(printf %s\\n "${META_TAGS}" \
36          | sed -r 's;^;,;; s;,+;,;g; s;,$;;;
37                    :X s;,-?([^,]+)(,|$); [span .tag\n \1]\2;; tX;'
38       )" "$name" "$link" "$link"
39   else
40     debug "Canning record for nonexist file: $META_NAME"
41     meta_purge "$_DATA/$ITEM/$META_NAME"
42   fi
43 }
44
45 [ "$FILTER" ] && list_fex="$(
46   fex='p'
47   STRING "$FILTER^" \
48   | sed -E 's;\^;\n;g; s;[]\/\(\)\\\^\$\?\.\+\*\;\[\{\}];\\&;g' \
49   | while read -r f; do
50     [ "${f##*[A-Z]*}" ] && tl="y;ABCDEFGHIJKLMNOPQRSTUVWXYZ;abcdefghijklmnopqrstuvwxyz;;"
51     case $f in
52       ''|~) continue;;
53       ~\\\$:*) fex="h; ${tl} /${f#~\\\$:}/d; g;${fex}";;
54       \\\$:*) fex="h; ${tl} /${f#\\\$:}/{g;${fex}}";;
55       ~*) fex="/(\ttags=([^\t]*,)?)(${f#\~})((,[^\t]*)?\t)/d; ${fex}";;
56        *) fex="/(\ttags=([^\t]*,)?)(${f})((,[^\t]*)?\t)/{${fex}}";;
57     esac
58     printf '%s\n' "${fex}"
59   done \
60   | tail -n1
61 )"
62
63 list_fullname(){
64   local short="$(UNSTRING "${1%${CR}}")" file
65   file="$(printf %s\\n "$_DATA/$ITEM/$short".*)"
66   file="${file%%${BR}*}"
67   [ -e "$file" ] && printf %s\\n "${file#${_DATA}/${ITEM}/}"
68 }
69
70 list_filter(){
71   if [ "$FILTER" ]; then
72     debug "FEX:" "$list_fex"
73     sed -nE "$list_fex"
74   elif [ "${SEARCH#!}" != "${SEARCH}" ]; then
75     grep -aviEe "$(STRING "${SEARCH}" \
76                  | sed -E ':x s;((^|[^\\])(\\\\)*)\+;\1 ;g; tx;
77                             s;((^|[^\\])(\\\\)*)\\\+;\1+;g;
78                             s; ;\\+;g;')"
79   elif [ "${SEARCH}" ]; then
80     grep -aiEe "$(STRING "${SEARCH}" \
81                  | sed -E ':x s;((^|[^\\])(\\\\)*)\+;\1 ;g; tx;
82                             s;((^|[^\\])(\\\\)*)\\\+;\1+;g;
83                             s; ;\\+;g;')"
84   else
85     cat
86   fi
87 }
88
89 list_order(){
90   local fm fn fn al length ln h w t c name group o buffer l
91
92   if [ $ORDER = Name ]; then
93     sort -k6
94   elif [ $ORDER = Group ]; then
95     { sort -n -k8 -k6,6 |sort -s -k7,7 ; echo '0 0 0 tags= comment= _'; } \
96     | while read -r length w h t c name group o; do
97       if [ "${ln%% *}" = "${group}" ]; then
98         al=$((al + length))
99         buffer="${buffer}${BR}$length   $w      $h      $t      $c      $name"
100       else
101         printf '%s\n' "$buffer" |while read -r l; do
102           [ "$l" ] && printf '%i        %s\n' "$al" "$l"
103         done
104         al="$length"
105         buffer="$length $w      $h      $t      $c      $name"
106       fi
107       ln="$group"
108     done \
109     | sort -s -n -k1,1 |sed -E 's;^[0-9]+\t;;;'
110   elif [ $ORDER = Length ]; then
111     sort -sn -k1
112   elif [ $ORDER = Date ]; then
113     while read -r fm; do
114       fn="${fm%${CR}    *}"
115       fn="$(list_fullname "${fn##*      }")"
116       printf '%i        %s\n' \
117              "$(stat -c %Y "$fn")" "${fm}"
118     done \
119     | sort -srn -k1 |sed -E 's;^[0-9]+\t;;;'
120   fi
121 }
122
123 list_items() {
124   local mode meta cachename
125   mode="$(COOKIE mode |grep -m1 -axE 'index|browse' || printf index )"
126   
127   cachename="$(printf '%s\n' "$mode" "$FILTER" "$SEARCH" "$ORDER" |sha1sum)"
128   cachename="$_DATA/$ITEM/.index/${cachename%  -}.cache"
129   meta="$_DATA/$ITEM/.index/meta"
130   meta_dir "$_DATA/$ITEM/"
131
132   if [ "$mode" = browse ]; then
133     [ "$ITEM" ] && printf '0    0       0       \       \       ../\n'
134     (cd "$_DATA/$ITEM";
135       find ./ -type d \! -name .index -mindepth 1 -maxdepth 1 \
136     ) | sort |while read dir; do
137       printf '0 0       0       \\      \\      %s\n' "$(STRING "${dir#./}")"
138     done
139
140     if [ "$cachename" -nt "$meta" ]; then
141       cat "$cachename"
142     else
143       list_meta "$meta" \
144       | list_filter \
145       | list_order \
146       | { [ -d "${cachename%/*}" ] && tee "$cachename" || cat; }
147     fi
148
149   elif [ "$mode" = index ]; then
150     if [ -f "$cachename" -a ! "$(find "$_DATA" -path '*/.index/meta' -newer "$cachename")" ]; then
151       cat "$cachename"
152     else
153       list_meta \
154       | list_filter \
155       | list_order \
156       | { [ -d "${cachename%/*}" ] && tee "$cachename" || cat; }
157     fi
158   fi
159 }
160
161 list_paginate() {
162   local page i c n end qry
163   page="$(GET p |grep -axE '[0-9]+' || printf 1)"; c=1
164   end=$((page + LISTSIZE))
165
166   printf '[div .itemlist '
167   while read -r i; do
168     c=$((c + 1))
169     [ $c -gt $page -a $c -le $end  ] && list_item "$i"
170   done
171   printf ']'
172
173   [ $(( c % LISTSIZE )) -gt 0 ] \
174   && end=$((c / LISTSIZE + 1)) \
175   || end=$((c / LISTSIZE))
176
177   printf '[div .pagination'
178   for n in $( seq 1 $end ); do
179     c=$(( (n - 1) * LISTSIZE + 1 ))
180     [ $c = $page ] \
181     && printf '[a .page .current href="?p=%i&%s" %i]' "${c}" "${QUERY_STRING#p=*&}" "$n" \
182     || printf '[a .page          href="?p=%i&%s" %i]' "${c}" "${QUERY_STRING#p=*&}" "$n"
183   done
184   printf ']'
185 }
186
187 printf 'Content-Type: text/html;charset=utf-8\r\n\r\n'
188
189 { printf '
190 [!DOCTYPE HTML]
191 [html [head [title '
192   w_bmname
193   printf ' by %s]' "$ORDER"
194   printf '
195   [meta name="viewport" content="width=device-width"]
196   [link rel=stylesheet href="/cgilite/common.css" ]
197   [link rel=stylesheet href="/style.css" ]
198 ] [body
199   [div #navigation
200     [a #t_bookmarks href="#bookmarks" &#x2605;]'
201     w_search
202     printf '
203     [a #t_prefs href="#prefs" &#x2699;]
204   ]'
205   w_bookmarks
206   w_advsearch
207   w_prefs
208   printf '
209   [form method=POST action="?a=multitag"'
210     list_items \
211     | list_paginate
212     [ -d "$_DATA/$ITEM/.index" ] && { printf '
213     [div #editing'
214       w_tagging
215     printf '
216     ]'; }
217   printf '
218   ]'
219   [ ! -d "$_DATA/$ITEM/.index" ] && { printf '
220   [div #editing'
221     w_index
222   printf '
223   ]'; }
224   printf '
225 ] ]
226 '; } | "$_EXEC/cgilite/html-sh.sed"