]> git.plutz.net Git - serve0/blob - list.sh
improved auto grouping
[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   qry="${w_refuri#*\?}"; qry="${qry#&#112;&#61;*&#38;}"
166
167   printf '[div .itemlist '
168   while read -r i; do
169     c=$((c + 1))
170     [ $c -gt $page -a $c -le $end  ] && list_item "$i"
171   done
172   printf ']'
173
174   [ $(( c % LISTSIZE )) -gt 0 ] \
175   && end=$((c / LISTSIZE + 1)) \
176   || end=$((c / LISTSIZE))
177
178   printf '[div .pagination'
179   for n in $( seq 1 $end ); do
180     c=$(( (n - 1) * LISTSIZE + 1 ))
181     [ $c = $page ] \
182     && printf '[a .page .current href="%s" %s]' "?p=${c}&${qry}" "$n" \
183     || printf '[a .page href="%s" %s]' "?p=${c}&${qry}" "$n"
184   done
185   printf ']'
186 }
187
188 printf 'Content-Type: text/html;charset=utf-8\r\n\r\n'
189
190 { printf '
191 [!DOCTYPE HTML]
192 [html [head [title '
193   w_bmname
194   printf ' by %s]' "$ORDER"
195   printf '
196   [meta name="viewport" content="width=device-width"]
197   [link rel=stylesheet href="/cgilite/common.css" ]
198   [link rel=stylesheet href="/style.css" ]
199 ] [body
200   [div #navigation
201     [a #t_bookmarks href="#bookmarks" &#x2605;]'
202     w_search
203     printf '
204     [a #t_prefs href="#prefs" &#x2699;]
205   ]'
206   w_bookmarks
207   w_advsearch
208   w_prefs
209   printf '
210   [form method=POST action="?a=multitag"'
211     list_items \
212     | list_paginate
213     [ -d "$_DATA/$ITEM/.index" ] && { printf '
214     [div #editing'
215       w_tagging
216     printf '
217     ]'; }
218   printf '
219   ]'
220   [ ! -d "$_DATA/$ITEM/.index" ] && { printf '
221   [div #editing'
222     w_index
223   printf '
224   ]'; }
225   printf '
226 ] ]
227 '; } | "$_EXEC/cgilite/html-sh.sed"