]> git.plutz.net Git - bookman/blob - index.cgi
12caed196f2da889f783a410cbdcce921618b9c1
[bookman] / index.cgi
1 #!/bin/sh
2
3 exec 2>>error.log
4
5 . shcgi/cgilite.sh
6 mkdir -p users
7 #env >>debug
8 printf 'POST: %s\n' "$cgilite_post" >>debug
9 printf 'action: %s\n' "$(GET action)" >>debug
10
11 wget="$(which wget)"
12 wget(){ "$wget" -T 5 -t 1 -q -U '' $@; }
13 checkid(){ grep -m 1 -xE '[0-9a-zA-Z:_]{12}'; }
14
15 genid(){
16   # generate random ID
17   head -c9 /dev/urandom \
18   | uuencode -m - \
19   | sed -n '2{y;+/;:_;;p}'
20 }
21
22 timeid(){
23   # generate time based ID
24   d=$(date +%s)
25   { printf $(
26       while [ "$d" -gt 0 ]; do
27         printf \\%o $((d % 256))
28         d=$((d / 256))
29       done
30     ) | tac
31     head -c5 /dev/urandom
32   } \
33   | uuencode -m - \
34   | sed -n '2{y;+/;:_;;p}'
35 }
36
37 getFavicon(){
38   url="$1"
39   bid="$2"
40   prot=${url%%://*}
41   domain="${url#*://}"
42   domain="${domain%%/*}"
43   ubase="${prot}://${domain}"
44   file="${BDB}/favicons/${bid}.ico"
45
46   mkdir -p "${BDB}/favicons/" && chmod a+rx "${BDB}/favicons/"
47
48   favinfo="$(
49     wget -O- "$url" \
50     | head -c4096 \
51     | sed -rn \
52       's;^.*(<[Ll][Ii][Nn][Kk]( [^>]*)? [Rr][Re][Ll]='\''([Ss][Hh][Oo][Rr][Tt][Cc][Uu][Tt] )?[Ii][Cc][Oo][Nn]'\''[^>]*>).*$;\1;;
53        s;^.*(<[Ll][Ii][Nn][Kk]( [^>]*)? [Rr][Re][Ll]="([Ss][Hh][Oo][Rr][Tt][Cc][Uu][Tt] )?[Ii][Cc][Oo][Nn]"[^>]*>).*$;\1;;
54        tX; b; :X;
55        s;^.*<([^>]+) [Hh][Rr][Ee][Ff]="([^"]+)".*$:\2;;
56        s;^.*<([^>]+) [Hh][Rr][Ee][Ff]='\''([^'\'']+)'\''.*$:\2;;
57        tY; b; :Y; p
58       '
59   )"
60
61   printf 'Shortcut icon for %s is %s\n' "$url" "$favinfo" >>debug
62   [ -z "$favinfo" ] && favinfo="${ubase}/favicon.ico"
63   case "$favinfo" in
64     http://*|https://*|//*) wget -O "$file" "$favinfo"
65     ;;
66     /*) wget -O "$file" "${ubase}/${favinfo}"
67     ;;
68     *) wget -O "$file" "${url%/*}/${favinfo}"
69     ;;
70   esac
71   [ -f "${file}.1" ] && mv "${file}.1" "$file"
72   chmod a+r "$file"
73 }
74
75 list_folders(){
76   head -qn1 "${BDB}"/????????????.bm \
77   | sort -nk3 \
78   | cut -f1,2
79 }
80
81 order_files(){
82   n=1000
83   list_folders \
84   | while read fid nan; do
85     file="${BDB}/${fid}.bm"
86     sed -ri "1s;^(([^\t]+\t){2})[^\t]+(.*)$;\1${n}\3;;" "$file"
87     n=$((n + 1000))
88   done
89 }
90
91 COKID="$(COOKIE id |checkid)"
92 QRYID="$(GET    id |checkid)"
93 BDB="users/${COKID}"
94
95 if [ -n "$QRYID" ]; then
96   printf '%s 303 See Other\r\n' "$SERVER_PROTOCOL"
97   printf 'Location: %s\r\n' "${SCRIPT_NAME}"
98   SET_COOKIE +8640000 "id=${QRYID}"
99   printf '\r\n'
100   exit 0
101 elif [ -z "$COKID" -a -z "$QRYID" ]; then
102   printf 'Content-Type: text/html; charset=utf-8\r\n\r\n'
103
104   cat <<-EOF
105         <!DOCTYPE HTML>
106         <HTML><head>
107           <title>Bookman - New Collection</title>
108         </head><body id="newcollection">
109           <h1>You have not yet set up a collection on this server.</h1>
110           Click <a href="${SCRIPT_NAME}?action=newid">here</a> to start a new collection.
111         </body></HTML>
112         EOF
113   exit 0
114 elif ! [ -d "${BDB}" ]; then
115   printf '%s 404 Not Found\r\n' "$SERVER_PROTOCOL"
116   printf 'Content-Type: text/html; charset=utf-8\r\n\r\n'
117
118   cat <<-EOF
119         <!DOCTYPE HTML>
120         <HTML><head>
121           <title>Bookman - 404</title>
122         </head><body id="missingcollection">
123           <h1>The collection you requested does not exist on this server.</h1>
124           Click <a href="${SCRIPT_NAME}?action=newid">here</a> to start a new collection.
125         </body></HTML>
126         EOF
127   exit 0
128 fi
129
130 case "$(GET action)" in
131   newid)
132     NEWID="$(genid)"
133
134     { git init "users/${NEWID}" || mkdir -p "users/${NEWID}"; } >&-
135
136     printf '%s 303 See Other\r\n' "$SERVER_PROTOCOL"
137     printf 'Location: %s\r\n' "${SCRIPT_NAME}?id=${NEWID}"
138     SET_COOKIE +8640000 "id=${NEWID}"
139     printf '\r\n'
140     exit 0
141     ;;
142   newfolder)
143     name="$(POST name |head -n1)"
144     fid="$(timeid)"
145     order="$(
146       head -qn1 "${BDB}"/????????????.bm \
147       | cut -f3 \
148       | sort -n \
149       | tail -n1 \
150       || printf 1
151     )"
152     order="$(((order + 1000) / 1000 * 1000))"
153     if [ -n "$name" -a -d "${BDB}" ]; then
154       printf '%s\t%s\t%s\n' "$fid" "$(HTML "$name")" "$order" >"${BDB}/${fid}.bm"
155     fi
156     REDIRECT "${SCRIPT_NAME}#${fid}"
157     ;;
158   modfolder)
159     name="$(POST name |head -n1)"
160     fid="$(POST fid | checkid)"
161     file="${BDB}/${fid}.bm"
162     if [ "$(POST control)" = confirm -a -n "$name" -a -f "$file" ]; then
163       sed -ri "1s'^(${fid}\t)[^\t]+(\t.+)$'\1${name}\2';" "$file"
164     fi
165     REDIRECT "${SCRIPT_NAME}#${fid}"
166     ;;
167   delfolder)
168     fid="$(POST fid | checkid)"
169     target="$(POST target | checkid)"
170     file="${BDB}/${fid}.bm"
171     tfile="${BDB}/${target}.bm"
172     if [ "$(POST control)" = confirm -a -f "$file" ]; then
173       if [ "$target" = "____________" ] || tail -n+2 "$file" >>"$tfile"; then
174         rm -f "$file"
175       fi
176     fi
177     REDIRECT "${SCRIPT_NAME}#${target}"
178     ;;
179   movefolder)
180     fid="$(POST fid | checkid)"
181     target="$(POST target | checkid)"
182     file="${BDB}/${fid}.bm"
183     tfile="${BDB}/${target}.bm"
184     if [ "$target" = "____________" -a -f "$file" -a "$(POST control)" = confirm ]; then
185       read nan1 nan2 last nan3 <"${BDB}/$(list_folders |tail -n1 |cut -f1).bm"
186       sed -ri "1s;^(([^\t]+\t){2})[^\t]+(.*)$;\1$((${last:-0} + 1000))\3;;" "$file"
187     elif [ -f "$tfile" -a -f "$file" -a "$(POST control)" = confirm ]; then
188       read nan1 nan2 tid nan3 <"$tfile"
189       sed -ri "1s;^(([^\t]+\t){2})[^\t]+(.*)$;\1$((${tid:-1} -1))\2;;" "$file"
190       order_files
191     fi
192     REDIRECT "${SCRIPT_NAME}#${fid}"
193     ;;
194   newbookmark)
195     fid="$(POST fid | checkid)"
196     name="$(POST name |head -n1)"
197     url="$(POST url |head -n1)"
198     file="${BDB}/${fid}.bm"
199     bid="$(timeid)"
200     if [ -n "$name" -a -f "${file}" ]; then
201       printf '%s\t%s\t%s\n' "$bid" "$(HTML "$name")" "$(HTML "$url")" >>"${file}"
202     fi
203     getFavicon "$url" "$bid"
204     REDIRECT "${SCRIPT_NAME}#${fid}"
205     ;;
206   modbookmark)
207     bid="$(POST bid | checkid)"
208     name="$(POST name |head -n1)"
209     url="$(POST url |head -n1)"
210     file="$(grep -lm1 "^${bid}" "${BDB}"/????????????.bm |head -n1)"
211     if [ -n "$name" -a -n "$url" -a "$(POST control)" = confirm -a -w "$file" ]; then
212       bm="$(printf '%s\t%s\t%s' "$bid" "$(HTML "$name")" "$(HTML "$url")" |sed -r 's;[\&\;];\\&;g;')"
213       sed -ri "s;^${bid}\t.*$;${bm};" "$file"
214     fi
215     getFavicon "$url" "$bid"
216     REDIRECT "${SCRIPT_NAME}#${fid}"
217     ;;
218   movebookmark)
219     bid="$(POST bid | checkid)"
220     fid="$(POST target | checkid)"
221     sfile="$(grep -lm1 "^${bid}" "${BDB}"/????????????.bm |head -n1)"
222     tfile="${BDB}/${fid}.bm"
223
224     if [ "$(POST control)" = confirm -a -n "$bid" -a -w "$sfile" -a -w "$tfile" ]; then
225       grep -m1 "^${bid}" "$sfile" >>"$tfile" \
226       && sed -ri "0,/^${bid}/{/^${bid}/d;}" "$sfile"
227     fi
228     REDIRECT "${SCRIPT_NAME}#${fid}"
229     ;;
230   bmup)
231     fid="$(GET fid |checkid)"
232     bid="$(GET bid |checkid)"
233     file="${BDB}/${fid}.bm"
234
235     if [ -n "$bid" -a -n "$fid" ] && grep -q "^${bid}" "$file"; then
236       sed -ri ":X;\$bY;N;bX;:Y; s;(\n[^\n]+)(\n${bid}\t[^\n]+);\2\1;;" "$file"
237     fi
238     REDIRECT "${SCRIPT_NAME}#${fid}"
239     ;;
240   bmdn)
241     fid="$(GET fid |checkid)"
242     bid="$(GET bid |checkid)"
243     file="${BDB}/${fid}.bm"
244
245     if [ -n "$bid" -a -n "$fid" ] && grep -q "^${bid}" "$file"; then
246       sed -ri ":X;\$bY;N;bX;:Y; s;(\n${bid}\t[^\n]+)(\n[^\n]+);\2\1;;" "$file"
247     fi
248     REDIRECT "${SCRIPT_NAME}#${fid}"
249     ;;
250 esac
251
252 bookmarkmod(){
253   bmod="$(GET bmodify |checkid)"
254   bmove="$(GET bmove |checkid)"
255
256   if [ -n "$bmod" ]; then
257     file="$(grep -lm1 "^${bmod}" "${BDB}/"????????????.bm |head -n1)"
258     read bid name url <<-EOF
259         $(grep -m1 "^${bmod}" "$file")
260         EOF
261     cat <<-EOF
262         <form class="modbookmark" method="POST" action="${SCRIPT_NAME}?action=modbookmark">
263           <input type="hidden" name="bid" value="${bid}" />
264           <h1>Modify: ${name}</h1>
265           <label class="tab">Modify</label>
266           <a class="tab" href="${SCRIPT_NAME}?bmove=${bid}">Move</a>
267           <label>Name:</label>
268           <input type="text" name="name" value="${name}")" placeholder="Name" />
269           <label>URL:</label>
270           <input type="text" name="url"  value="${url}")" placeholder="URL" />
271           <button type="submit" name="control" value="confirm">OK</button>
272           <button type="submit" name="control" value="cancel">Cancel</button>
273         </form>
274         EOF
275   elif [ -n "$bmove" ]; then
276     file="$(grep -lm1 "^${bmove}" "${BDB}/"????????????.bm |head -n1)"
277     read bid name url <<-EOF
278         $(grep -m1 "^${bmove}" "$file")
279         EOF
280     cat <<-EOF
281         <form class="modbookmark" method="POST" action="${SCRIPT_NAME}?action=movebookmark">
282           <input type="hidden" name="bid" value="${bid}" />
283           <h1>Move: ${name}</h1>
284           <a class="tab" href="${SCRIPT_NAME}?bmodify=${bid}">Modify</a>
285           <label class="tab">Move</label>
286           <label>Move to Folder:</label>
287           <select name="target">
288             $(printf '<option value="%s">%s</option>' $(list_folders))
289           </select>
290           <button type="submit" name="control" value="confirm">OK</button>
291           <button type="submit" name="control" value="cancel">Cancel</button>
292         </form>
293         EOF
294   fi
295 }
296
297 show_bookmarks(){
298   fid="$1"
299   bmodify="$(GET bmodify |checkid)"
300
301   tail -n+2 "${BDB}/${fid}.bm" \
302   | while read bid name url; do
303     cat <<-EOF
304         <div class="bookmark">
305           <a class="modify" href="${SCRIPT_NAME}?bmodify=${bid}">Modify</a>
306           <a class="link" href="${url}")"><img src="${BDB}/favicons/${bid}.ico"/>${name}</a>
307           <a class="bmove" href="${SCRIPT_NAME}?action=bmup&fid=${fid}&bid=${bid}">move left</a>
308           <a class="bmove" href="${SCRIPT_NAME}?action=bmdn&fid=${fid}&bid=${bid}">move right</a>
309         </div>
310         EOF
311   done
312 }
313
314 foldermod(){
315   fmodify="$(GET fmodify |checkid )"
316   fdelete="$(GET fdelete |checkid )"
317   fmove="$(GET fmove |checkid )"
318
319   if [ -n "$fmodify" ]; then
320     read fid fname order <"${BDB}/${fmodify}.bm"
321     cat <<-EOF
322         <form class="modfolder rename" method="POST" action="${SCRIPT_NAME}?action=modfolder">
323           <h1>Rename Folder: ${fname}</h1>
324           <input type="hidden" name="fid" value="${fid}" />
325           <label class="tab">Rename</label>
326           <a class="tab"
327             href="${SCRIPT_NAME}?fdelete=${fid}">Delete</a>
328           <a class="tab"
329             href="${SCRIPT_NAME}?fmove=${fid}">Move</a>
330           <input type="text" name="name" value="${fname}" />
331           <button type="submit" name="control" value="confirm">OK</button>
332           <button type="submit" name="control" value="cancel">Cancel</button>
333         </form>
334         EOF
335   elif [ -n "$fdelete" ]; then
336     read fid fname order <"${BDB}/${fdelete}.bm"
337     cat <<-EOF
338         <form class="modfolder delete" method="POST" action="${SCRIPT_NAME}?action=delfolder">
339           <h1>Delete Folder: ${fname}</h1>
340           <input type="hidden" name="fid" value="${fid}" />
341           <a class="tab" href="${SCRIPT_NAME}?fmodify=${fid}">Rename</a>
342           <label class="tab">Delete</label>
343           <a class="tab"
344             href="${SCRIPT_NAME}?fmove=${fid}">Move</a>
345           <label>Pass Bookmarks on to:</label>
346           <select name="target">
347             $(printf '<option value="%s">%s</option>' $(list_folders |grep -v "^${fid}"))
348             <option value="____________">(discard)</option>
349           </select>
350           <button type="submit" name="control" value="confirm">OK</button>
351           <button type="submit" name="control" value="cancel">Cancel</button>
352         </form>
353         EOF
354   elif [ -n "$fmove" ]; then
355     read fid fname order <"${BDB}/${fmove}.bm"
356     cat <<-EOF
357         <form class="modfolder move" method="POST" action="${SCRIPT_NAME}?action=movefolder">
358           <h1>Move Folder: ${fname}</h1>
359           <input type="hidden" name="fid" value="${fid}" />
360           <a class="tab" href="${SCRIPT_NAME}?fmodify=${fid}">Rename</a>
361           <a class="tab" href="${SCRIPT_NAME}?fdelete=${fid}">Delete</a>
362           <label class="tab">Move</label>
363           <label>Move before folder:</label>
364           <select name="target">
365             $(printf '<option value="%s">%s</option>' $(list_folders |grep -v "^${fid}"))
366             <option value="____________">(last)</option>
367           </select>
368           <button type="submit" name="control" value="confirm">OK</button>
369           <button type="submit" name="control" value="cancel">Cancel</button>
370         </form>
371         EOF
372   fi
373 }
374
375 show_folders(){
376   list_folders \
377   | while read fid fname order; do
378     cat <<-EOF
379         <section class="folder" id="${fid}">
380           <h1>${fname}</h1>
381           <a class="modify" href="${SCRIPT_NAME}?fmodify=${fid}">Modify</a>
382           $(show_bookmarks "$fid")
383           <form class="newbookmark" method="POST" action="${SCRIPT_NAME}?action=newbookmark">
384             <input type="hidden" name="fid" value="${fid}" />
385             <input type="text" name="name" value="" placeholder="Name" />
386             <input type="text" name="url"  value="" placeholder="URL" />
387             <button type="submit">New Bookmark</button>
388           </form>
389         </section>
390         EOF
391   done
392 }
393
394 SET_COOKIE +8640000 "id=${COKID}"      # Refresh Cookie
395 printf 'Content-Type: text/html; charset=utf-8\r\n\r\n'
396
397 cat <<EOF
398 <!DOCTYPE HTML>
399 <HTML><head>
400   <title>Bookman - Your Collection</title>
401   <link rel="stylesheet" type="text/css" href="bookmarks.css" />
402 </head><body id="collection">
403   $(foldermod)
404   $(bookmarkmod)
405   $(show_folders)
406   <form class="newfolder" method="POST" action="${SCRIPT_NAME}?action=newfolder">
407     <input type="text" name="name" value="" placeholder="New Folder" />
408     <button type="submit">New</button>
409   </form>
410 </body></HTML>
411 EOF
412
413 #set filetype=sh