]> git.plutz.net Git - serve0/blob - widgets.sh
Merge commit 'f2e63f9ef2a8af259d244f87709fd0a08c42b190'
[serve0] / widgets.sh
1 #!/bin/sh
2
3 [ -n "$include_widgets" ] && return 0
4 include_widgets="$0"
5
6 . "$_EXEC/cgilite/storage.sh"
7
8 w_refuri="$(URL "$PATH_INFO")?$(HTML "$QUERY_STRING")"
9
10 w_str_s="$(STRING "$SEARCH")"
11 w_str_f="$(STRING "$FILTER")"
12
13 c_tags="$_DATA/.index/tags.cache"; c_tagcategories="$_DATA/.index/tagcategories.cache"
14 if [ ! -s "$c_tags" -o ! -s "$c_tagcategories" ] \
15    || [ "$(find "$_DATA/" -path '*/.index/meta' -newer "$c_tags")" ]
16   then
17   w_tags="$( local cn=1
18     find "$_DATA/" -path '*/.index/meta' -print0 \
19     | xargs -r0 sed -r '
20       s;^.*\t.*\t.*\ttags=(.*)\tcomment=.*\t.*\r$;\1;;
21       s;,;\n;g;'"$UNSTRING" \
22     | { sort; printf '\n'; } \
23     | while read -r tag; do
24       [ "$tag" = "$otag" ] \
25       && cn=$((cn + 1)) \
26       || {
27         printf "%i      %s\n" "$cn" "$otag"
28         cn=1
29       }
30       otag="$tag"
31     done \
32     |sort -rn |cut -f2- |HTML \
33     |sed "s-
-\n-g; s;\n\n;\n;g;"
34   )"
35   w_tagcategories="$(printf %s "$w_tags" | sed -rn '/:/s;^-?([^:]+):.*$;\1;p' |sort -u )"
36   printf %s "$w_tags" >"$c_tags"
37   printf %s "$w_tagcategories" >"$c_tagcategories"
38 else
39   w_tags="$(cat "$c_tags")"
40   w_tagcategories="$(cat "$c_tagcategories")"
41 fi
42
43
44 [ "$ORDER" = Name   ] && w_coname=checked
45 [ "$ORDER" = Date   ] && w_codate=checked
46 [ "$ORDER" = Length ] && w_colength=checked
47 [ "$ORDER" = Group  ] && w_cogroup=checked
48
49 w_bmname=
50 w_bmname(){
51   [ "$w_bmname" ] || w_bmname="$(
52     bm="$_DATA/.index/bookmarks"
53     name="$(grep -m1 -aF "      search=${w_str_s}       filter=${w_str_f}${CR}" "$bm" 2>&-)"
54
55     if [ "$name" ]; then
56       printf '%s' "$name" |cut -f1 |UNSTRING |HTML
57     else
58       printf '%s\t%s' "$SEARCH" "$FILTER" \
59       | sed -r '/^\t$/{  s;\t;All;; q;}
60                 /.*\t$/{ s;\t$;;; q;}
61                 /^\t.*/{ s;^\t;;;
62                          :x; s;(^|[~^|])([^|^~:]+):;\1;; tx;
63                          s;\^; and ;g; s;\|;,;g; s;~;not ;g; q;}' \
64       | HTML
65     fi
66   )"
67   printf '%s' "$w_bmname"
68 }
69
70 w_bookmarks(){
71   local bm="$_DATA/.index/bookmarks" name='' search='' filter=''
72   [ ! -d "${bm%/*}" ] && return 0
73   [ ! -f "$bm" ] && touch "$bm"
74
75   grep -qaF "   search=$w_str_s filter=${w_str_f}${CR}" "$bm" && name=Update || name=Add
76
77   printf '[form #bookmarks action=?a=bookmark method=POST
78             [a href="#" x]
79             [hidden "ref" "%s"]
80             [hidden "search" "%s"][hidden "filter" "%s"]
81             [label Name for current page:]
82             [input name="name" value="%s" placeholder="Name" ]
83             [button type="submit" %s]' \
84             "$w_refuri" \
85             "$(HTML "$SEARCH")" "$(HTML "$FILTER")" \
86             "$(w_bmname)" "${name}"
87   [ "$name" ] && printf ' [submit "delete" "delete" Delete]'
88
89   sort "$bm" |while read -r name search filter; do
90     search="${search#search=}" filter="${filter#filter=}" filter="${filter%${CR}}"
91     [ "$search" = "${w_str_s}" -a "$filter" = "${w_str_f}" ] && continue
92
93     name="$(UNSTRING "$name")";
94     search="$(UNSTRING "${search}" |URL)";
95     filter="$(UNSTRING "${filter}" |URL)";
96     printf '[label .link %s]
97             [a .link target=blank href="/?o=Name&s=%s&f=%s" by Name]
98             [a .link target=blank href="/?o=Date&s=%s&f=%s" by Date]
99             [a .link target=blank href="/?o=Length&s=%s&f=%s" by Length]
100             [a .link target=blank href="/?o=Group&s=%s&f=%s" by Group]
101             [br]' \
102             "$(HTML "$name" |sed 's;&#44\;;&[wbr];g;')" \
103             "$search" "$filter" \
104             "$search" "$filter" \
105             "$search" "$filter" \
106             "$search" "$filter"
107   done
108   printf ']'
109 }
110
111 w_search(){
112   printf '
113   [form #search method=GET action=./?
114     [select name=o size=1 
115       [option disabled=disabled Order By]
116       [option value=Name %s Name]
117       [option value=Date %s Date]
118       [option value=Length %s Length]
119       [option value=Group %s Group]
120     ]
121     [input name=s placeholder=Search value="%s"]
122   ]
123   ' \
124   "$w_coname" "$w_codate" "$w_colength" "$w_cogroup" \
125   "$(HTML "$SEARCH")"
126 }
127
128 w_prefs(){
129   local tm tf td
130
131   tm=''; [ "$(COOKIE mode)" = index ] && tm=' '
132   tf=''; [ "$(COOKIE fakemp4)" = yes ] && tf=checked
133   td=''; [ "$(COOKIE downscale)" = yes ] && td=checked
134
135   printf '
136   [form #prefs method="POST" action="?a=setprefs"
137     [a href="#" x]
138     [hidden "ref" "%s"]
139     [label for=prefs_ps Pagesize]
140     [input #prefs_ps type=number name=pagesize value="%s"][br]
141     [radio "mode" "browse" %s #prefs_modebrowse] [label for=prefs_modebrowse Browse Folders][br]
142     [radio "mode" "index"  %s #prefs_modeindex ] [label for=prefs_modeindex View Full Index][br]
143     [checkbox "fakemp4" "yes" %s #prefs_fmp4] [label for=prefs_fmp4 Fake .MP4 file type][br]
144     [checkbox "downscale" "yes" %s #prefs_downscale] [label for=prefs_downscale Prefer downscale to 480p][br]
145     [submit "index" "update" Force Index Update][br]
146     [submit "store" "store" Set Cookie]
147   ]
148   ' \
149   "$w_refuri" "$LISTSIZE" \
150   "${tm:-checked}" "${tm:+checked}" "$tf" "$td"
151 }
152
153 w_index(){
154   printf '
155   [form #index method="POST" action="?a=spawnindex"
156     [hidden "ref" "%s"]
157     [label Set up for Index view: ]
158     [checkbox "recursive" "yes" #spawn_recursive] [label for=spawn_recursive Include subdirectories]
159     [submit "spawn" "spawn" Set up]
160   ]
161   ' "$w_refuri"
162   return 0
163 }
164
165 w_advsearch(){
166   local n lbid tag category filter f t d
167   filter="$(HTML "${FILTER}^")"
168
169   printf '[form #advsearch action=./?a=advsearch method=POST
170             [a href="#" Hide]
171             [p .help Select multiple tags from each category by holding down the [strong Ctrl] key on your keyboard.[br]
172             Refine the search further by setting additional search tags using the [strong "+and"] button.]'
173
174   for n in 1 2 3 4 5 6 7 8 9 10; do
175     f="${filter%%^*}"; filter="${filter#*^}"
176
177     t=''; [ "$f" -a ! "${f%%~*}" ] && t=" "
178
179     lbid="cat_${n}_(none)"
180     printf '[input .and type=checkbox name=and id="and_%i" %s][label for="and_%i" +and
181             ][fieldset .select
182             [radio "pol_%i" "pos" .pol %s #pol_pos_%i"][label for=pol_pos_%i Any]
183             [radio "pol_%i" "neg" .pol %s #pol_neg_%i"][label for=pol_neg_%i None]
184             [label .head Category:]' \
185             $n "${f:+checked}" $n \
186             $n "${t:-checked}" $n $n \
187             $n "${t:+checked}" $n $n
188
189     f="|${f#\~}|"
190     printf '*\n%s\n' "$w_tagcategories" \
191     | while read -r category; do
192       lbid="cat_${n}_${category}"
193
194       t=''
195       [ "$category"  = '*' -a   "${f%%|${category}:*}" ] && t=checked
196       [ "$category" != '*' -a ! "${f%%|${category}:*}" ] && t=checked
197       [ "$category" != '*' -a ! "${f%%|-${category}:*}" ] && t=checked
198
199       printf '[radio "cat_%i" "%s" .cat %s id="%s"][label for="%s" %s]
200               [select name=tag_%s size=10 multiple' \
201               $n "$category" "$t" "$lbid" "$lbid" "$category" $n
202
203       printf '%s\n' "$w_tags" \
204       | { [ "$category" = '*' ] && grep -avF ':' || grep -awF "${category}"; } \
205       | { for n in 1 2 3 4 5 6 7 8 9 0; do
206           read -r line && printf '%s\n' "$line" || break;
207           done;  # pass 10 lines through without modification
208           sort;  # and sort remaining lines
209       } | while read -r tag; do
210         [ "$tag" ] || continue
211         t=''; [ ! "${f%%*|${tag}|*}" ] && t=checked
212         d="${tag#-}"; d="${d#*:}"
213         printf '[option %s value="%s"\n%s]' "$t" "$tag" "$d"
214       done
215       printf '\n]'
216     done
217     printf ']'
218   done
219
220   printf '[fieldset .submit [select name=order
221             [option disabled=disabled Order By]
222             [option value=Name %s Name]
223             [option value=Date %s Date]
224             [option value=Length %s Length]
225             [option value=Group %s Group]
226           ][button type=submit Apply Filter]]
227           ]' \
228           "$w_coname" "$w_codate" \
229           "$w_colength" "$w_cogroup"
230 }
231
232 w_delete(){
233   printf '[a href="#multitag" Add Tags / Remove Tags]
234           [div #multitag [input type="hidden" name="ref" value="%s"]
235           [a href="#" Hide][br]
236           [fieldset [legend New:]
237           [submit "op" "filedelete" Delete Files]
238           ]]' "$w_refuri"
239 }
240
241 w_tagging(){
242   local tag category d
243   printf '[a href="#multitag" Add Tags / Remove Tags]
244           [div #multitag [input type="hidden" name="ref" value="%s"]' "$w_refuri"
245   printf '[a href="#" Hide][br]'
246
247   printf 'Tags\n%s\n' "$w_tagcategories" \
248   | while read -r category; do
249     [ "$category" ] || continue
250     printf '[fieldset [legend %s:][select name=tag size=4 multiple\n' "$category"
251     printf %s "$w_tags" \
252     | { [ "$category" = 'Tags' ] && grep -avF ':' || grep -awF "${category}"; } \
253     | { for n in 1 2 3 4 5 6 7 8 9 0; do
254         read -r line && printf '%s\n' "$line" || break
255         done;
256         sort;
257     } | while read -r tag; do
258       [ "$tag" ] || continue
259       d="${tag#-}"; d="${d#*:}"
260       printf '[option value="%s"\n%s]' "$tag" "$d"
261     done
262     printf ']]'
263   done
264
265   printf '[fieldset [legend New:][textarea name=newtag\n]
266           [submit "op" "del" Remove Tags][submit "op" "add" Add Tags]
267           ]]'
268 }