]> git.plutz.net Git - serve0/blob - widgets.sh
Merge branch 'cgilite' of git.plutz.net:serve0 into cgilite
[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="$(HTML "$REQUEST_URI")"
9
10 w_tags="$(find "$_DATA/" -path '*/.index/meta' -print0 \
11         | xargs -r0 sed -r '
12           s;^.*\t.*\t.*\ttags=(.*)\tcomment=.*\t.*\r$;\1;;
13           s;,;\n;g;'"$UNSTRING" \
14         | sort -u |HTML |sed 's;&#58\;;:;g; s;&#10\;;\n;g;')"
15 w_tagcategories="$(printf %s "$w_tags" | cut -sd: -f1 | uniq)"
16
17 [ "$ORDER" = Name   ] && w_coname=checked
18 [ "$ORDER" = Date   ] && w_codate=checked
19 [ "$ORDER" = Length ] && w_colength=checked
20
21 w_bookmarks(){
22   local name link bm
23   bm="$_DATA/.index/bookmarks"
24
25   printf '[form #bookmarks action=?a=bookmarks method=POST
26             [a href="#" X]
27             [hidden "ref" "%s"]
28           ' "$w_refuri"
29
30   name="$(grep -m1 -F " $(STRING "${REQUEST_URI}")" "$bm")"
31   printf '[hidden "link" "%s"][input name="name" value="%s"]' \
32          "$(HTML "$link")" "$(HTML "$name")"
33
34   sort "$bm" |while read -r name link; do
35     name="$(UNSTRING "$name")"
36     link="$(UNSTRING "$link")"
37     if [ "$link" != "$REQUEST_URI" ]; then
38       printf '[a href="%s"\n%s]' "$(HTML "$link")" "$(HTML "$name")"
39     fi
40   done
41   printf ']'
42 }
43
44 w_search(){
45   printf '
46   [form #search method=GET action=?
47     [select name=o size=1 
48       [option disabled=disabled Order By]
49       [option value=Name %s Name]
50       [option value=Date %s Date]
51       [option value=Length %s Length]
52     ]
53     [input name=s placeholder=Search value="%s"]
54   ]
55   ' \
56   "$w_coname" "$w_codate" "$w_colength" \
57   "$(HTML "$SEARCH")"
58 }
59
60 w_prefs(){
61   local tm tf
62
63   tm=''; [ "$(COOKIE mode)" = index ] && tm=' '
64   tf=''; [ "$(COOKIE fakemp4)" = yes ] && tf=checked
65
66   printf '
67   [form #prefs method="POST" action="?a=setprefs"
68     [a href="#" x]
69     [hidden "ref" "%s"]
70     [label for=prefs_ps Pagesize]
71     [input #prefs_ps type=number name=pagesize value="%s"][br]
72     [radio "mode" "browse" %s #prefs_modebrowse] [label for=prefs_modebrowse Browse Folders][br]
73     [radio "mode" "index"  %s #prefs_modeindex ] [label for=prefs_modeindex View Full Index][br]
74     [checkbox "fakemp4" "yes" %s #prefs_fmp4] [label for=prefs_fmp4 Fake .MP4 file ending][br]
75     [submit "store" "store" Set Cookie]
76   ]
77   ' \
78   "$w_refuri" "$LISTSIZE" \
79   "${tm:-checked}" "${tm:+checked}" "$tf"
80 }
81
82 w_index(){
83   [ -d "$_DATA/$ITEM/.index" ] || printf '
84   [form #index method="POST" action="?a=spawnindex"
85     [hidden "ref" "%s"]
86     [label Set up for Index view: ]
87     [checkbox "recursive" "yes" #spawn_recursive] [label for=spawn_recursive Include subdirectories]
88     [submit "spawn" "spawn" Set up]
89   ]
90   ' "$w_refuri"
91 }
92
93 w_advsearch(){
94   local n lbid tag category filter f t
95   filter="$(HTML "${FILTER}^" |sed 's;&#126\;;~;g; s;&#94\;;^;g; s;&#124\;;|;g; s;&#58\;;:;g;')"
96
97   printf '[form #advsearch action=?a=advsearch method=POST
98             [a href="#" Hide]
99             [p .help Select multiple tags from each category by holding down the [strong Ctrl] key on your keyboard.[br]
100             Refine the search further by setting additional search tags using the [strong "+and"] button.]'
101
102   for n in 1 2 3 4 5 6 7 8 9 10; do
103     f="${filter%%^*}"; filter="${filter#*^}"
104
105     t=''; [ "$f" -a ! "${f%%~*}" ] && t=" "
106
107     lbid="cat_${n}_(none)"
108     printf '[input .and type=checkbox name=and id="and_%i" %s][label for="and_%i" +and
109             ][fieldset .select
110             [radio "pol_%i" "pos" .pol %s #pol_pos_%i"][label for=pol_pos_%i Any]
111             [radio "pol_%i" "neg" .pol %s #pol_neg_%i"][label for=pol_neg_%i None]
112             [label .head Category:]' \
113             $n "${f:+checked}" $n \
114             $n "${t:-checked}" $n $n \
115             $n "${t:+checked}" $n $n
116
117     f="|${f#~}|"
118     printf '*\n%s\n' "$w_tagcategories" \
119     | while read -r category; do
120       lbid="cat_${n}_${category}"
121
122       t=''
123       [ "$category"  = '*' -a   "${f%%|${category}:*}" ] && t=checked
124       [ "$category" != '*' -a ! "${f%%|${category}:*}" ] && t=checked
125
126       printf '[radio "cat_%i" "%s" .cat %s id="%s"][label for="%s" %s]
127               [select name=tag_%s size=10 multiple' \
128               $n "$category" "$t" "$lbid" "$lbid" "$category" $n
129
130       printf '%s\n' "$w_tags" \
131       | { [ "$category" = '*' ] && grep -avF ':' |grep -avxF '' || grep -awF "${category}"; } \
132       | while read -r tag; do
133         t=''; [ ! "${f%%*|${tag}|*}" ] && t=checked
134         printf '[option %s value="%s"\n%s]' "$t" "$tag" "${tag#*:}"
135       done
136       printf '\n]'
137     done
138     printf ']'
139   done
140
141   printf '[fieldset .submit [select name=order
142             [option disabled=disabled Order By]
143             [option value=Name %s Name]
144             [option value=Date %s Date]
145             [option value=Length %s Length]
146           ][button type=submit Apply Filter]]
147           ]' \
148           "$w_coname" \
149           "$w_codate" \
150           "$w_colength"
151 }
152
153 w_tagging(){
154   local tag category
155   printf '[div #multitag [input type="hidden" name="ref" value="%s"]' "$w_refuri"
156   printf '[a href="#" Hide][br]'
157
158   printf 'Tags\n%s\n' "$w_tagcategories" \
159   | while read -r category; do
160     printf '[fieldset [legend %s:][select name=tag size=4 multiple' "$category"
161     printf %s "$w_tags" \
162     | { [ "$category" = 'Tags' ] && grep -avF ':' | grep -avxF '' || grep -awF "${category}"; } \
163     | while read -r tag; do
164       printf '[option value="%s"\n%s]' "$tag" "${tag#*:}"
165     done
166     printf ']]'
167   done
168
169   printf '[fieldset [legend New:][textarea name=newtag\n][button type=Submit Add Tags]]]'
170 }