]> Pileus Git - vpaste/blob - index.cgi
Update main page formatting
[vpaste] / index.cgi
1 #!/bin/bash
2
3 # Copyright (C) 2009-2012 Andy Spencer
4 #
5 # This program is free software: you can redistribute it and/or modify it under
6 # the terms of the GNU Affero General Public License as published by the Free
7 # Software Foundation, either version 3 of the License, or (at your option) any
8 # later version.
9 #
10 # This program is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 # FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
13 # details.
14
15 # Remove url codings from stdin
16 function get_modeline {
17         echo "$QUERY_STRING" |
18         sed -e 's/%\([0-9A-F][0-9A-F]\)/\\\\\x\1/g; s/[,&?]/ /g' |
19         xargs echo -e
20 }
21 function get_param {
22         get_modeline | awk -v "key=$1" 'BEGIN{RS=" "; FS="="}; $1 ~ key {print $2}'
23 }
24
25 # Extract an uploaded file from standard input
26 #   $1 is the name of the input to extract
27 function cut_file {
28         bnd="${CONTENT_TYPE/*boundary\=/}"
29         awk -v "want=$1" -v "bnd=$bnd" '
30                 BEGIN { RS="\r\n" }
31
32                 # reset based on boundaries
33                 $0 == "--"bnd""     { st=1; next; }
34                 $0 == "--"bnd"--"   { st=0; next; }
35                 $0 == "--"bnd"--\r" { st=0; next; }
36
37                 # search for wanted file
38                 st == 1 && $0 ~  "^Content-Disposition:.* name=\""want"\"" { st=2; next; }
39                 st == 1 && $0 == "" { st=9; next; }
40
41                 # wait for newline, then start printing
42                 st == 2 && $0 == "" { st=3; next; }
43                 st == 3             { print $0    }
44         ' | head -c $((128*1024)) # Limit size to 128K
45 }
46
47 # Print out a generic header
48 function header {
49         echo "Content-Type: $1; charset=UTF-8"
50         if [[ "$HTTP_ACCEPT_ENCODING" == *'gzip'* ]]; then
51                 echo "Content-Encoding: gzip"
52                 echo
53                 exec 1> >(gzip)
54         else
55                 echo
56         fi
57 }
58
59 # Print plain message and exit
60 function message {
61         while [ "$1" == '-h' ]; do
62                 shift; echo "$1"; shift
63         done
64         header text/plain
65         echo "$*"
66         exit
67 }
68
69 # List previous pastes
70 function do_cmd {
71         header text/plain
72         case "$1" in
73         ls)
74                 ls -t db | column
75                 ;;
76         head)
77                 awk -v 'rows=4' -v 'cols=60' '
78                         FNR==1      { gsub(/.*\//, "", FILENAME);
79                                       print FILENAME
80                                       print "-----" }
81                         FNR==1,/^$/ { next }
82                         /\S/        { i++; printf "%."cols"s\n", $0 }
83                         i>=rows     { nextfile  }
84                         ENDFILE     { i=0; print ""  }
85                 ' $(ls -t db/*)
86                 ;;
87         stat)
88                 ls -l --time-style='+%Y %m' db |
89                 awk -v 'hdr=Jan  Feb  Mar  Apr  May  Jun  Jul  Aug  Sep  Oct  Nov  Dec' '
90                         BEGIN { printf "%64s\n", hdr }
91                         NR>1  { cnt[$6+0][$7+0]++ }
92                         END   { for (y in cnt) {
93                                   printf "%4d", y
94                                   for (m=1; m<=12; m++)
95                                     printf "%5s", cnt[y][m]
96                                   printf "\n" } }'
97                 ;;
98         esac
99 }
100
101 # Format a file for viewing
102 function do_print {
103         if [ -f "./$1" ]; then
104                 input="$1"
105         elif [ -f "db/$1" ]; then
106                 input="db/$1"
107                 trim='1,/^$/d' # sed command to remove cruft
108         else
109                 message -h 'Status: 404 Not Found' \
110                         "File '$1' not found"
111         fi
112
113         # Check for raw paste
114         if [[ "$QUERY_STRING" == 'raw'* ||
115               "$REQUEST_URI"  != *'?'* &&
116               ( "$input"       != 'db/'* ||
117                 "$HTTP_ACCEPT" != *'html'* ) ]]; then
118                 header text/plain
119                 sed "$trim" "$input"
120                 exit
121         fi
122
123         # Create a temp file with the provided modeline
124         output="$(mktemp)"
125         tmp="$(mktemp)"
126         sed "\$avim: $(get_modeline)" "$input" > "$tmp"
127
128         # - I have some plugins in ~/.vim
129         # - Run ex in screen to trick it into thinking that it
130         #   has a real terminal, note that we also have to set
131         #   term=xterm-256color in vimrc
132         HOME=/home/andy \
133         screen -D -m ex -nXZ -i NONE -u vimrc \
134                 '+sil! set fde= fdt= fex= inde= inex= key= pa= pexpr=' \
135                 '+sil! set iconstring= ruf= stl= tal=' \
136                 "+sil! set titlestring=$1\ -\ vpaste.net" \
137                 '+sil! set noml'     \
138                 '+sil! $d|'$trim     \
139                 '+sil! %s/\r//g' \
140                 '+sil! TOhtml'       \
141                 "+sav! $output" \
142                 '+qall!'        \
143                 "$tmp"
144
145         header text/html
146         cat "$output"
147         rm "$tmp" "$output"
148 }
149
150
151 # Upload handler
152 function do_upload {
153         body=$(cat -)
154         spam=$(echo -n "$body" | cut_file "ignoreme")
155         text=$(echo -n "$body" | cut_file "(text|x)")
156         [ ! -z "$spam" ] && message "Spam check.."
157         [   -z "$text" ] && message "No text pasted"
158
159         # Format and save message
160         output="$(mktemp db/XXXXX)"
161         cat >"$output" <<-EOF
162                 vim: $(get_modeline)
163                 Date: $(date -R)
164                 From: $REMOTE_ADDR
165
166                 $text
167         EOF
168
169         # Redirect user
170         uri="$url$(basename "$output")"
171         message -h 'Status: 302 Found' \
172                 -h "Location: $uri"    \
173                 "$uri"
174 }
175
176 # Default index page
177 function do_help {
178         filetypes=$(
179                 ls /usr/share/vim/vim*/syntax/ /home/andy/.vim/syntax/ |
180                 sed -n '/^\(syntax\|manual\|synload\|2html\|colortest\|hitest\).vim$/d; s/.vim$//p' |
181                 sort | uniq
182         )
183         uploads=$(ls -t db | head -n 5)
184         filetype=$(get_param '^(ft|filet(y(pe?)?)?)$')
185         vpaste='<a href="vpaste?ft=sh">vpaste</a>'
186         repo='https://lug.rose-hulman.edu/svn/misc/trunk/htdocs/vpaste/'
187
188         header text/html
189         cat <<-EOF
190         <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
191           "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
192         <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
193                 <head>
194                         <title>vpaste.net - Vim based pastebin</title>
195                         <meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
196                         <meta name="description" content="vpaste: Vim based pastebin" />
197                         <meta name="keywords" content="vpaste,paste,pastebin,vim" />
198                         <meta name="google-site-verification" content="OvHF73zD7osJ1VSq9rJxnMFlja36944ud6CiP_iXQnI" />
199                         <style type="text/css">
200                                 *          { margin: 0;
201                                              padding: 0; }
202                                 body       { margin: 4em 8em 4em 8em;
203                                              font-family: sans-serif; }
204                                 input      { padding: 2px 6px 3px 6px; }
205                                 /* Items */
206                                 textarea   { width: 100%;
207                                              margin-bottom: 0.5em; }
208                                 .buttons   { float: left; }
209                                 .links     { float: right; }
210                                 .links *   { text-decoration: none;
211                                              margin-left: 0.5em; }
212                                 .box       { display: none;
213                                              clear: both;
214                                              margin-top: 2.7em;
215                                              border-top: solid 1px #888; }
216                                 /* box contents */
217                                 h1         { margin-top: 1.0em;
218                                              font-size: larger; }
219                                 ul,dd,dl,p { margin: 0 0 0 2em; }
220                                 dt         { font-weight: bold;
221                                              padding: 0.5em 0 0 0; }
222                                 span       { font-family: monospace; }
223                                 .cmds dd   { font-family: monospace; }
224                         </style>
225                         <script type="text/javascript">
226                                 //<![CDATA[
227                                 function show(id) {
228                                         var boxes = document.getElementsByClassName('box')
229                                         for (var i = 0; i < boxes.length; i++) {
230                                                 var box = boxes[i]
231                                                 if (box.id == id && box.style.display != 'block')
232                                                         box.style.display = 'block'
233                                                 else
234                                                         box.style.display = "none"
235                                         }
236                                 }
237                                 function autoshow() {
238                                         var id  = document.location.toString().replace(/.*#/, '')
239                                         var box = document.getElementById(id)
240                                         if (box) box.style.display = "block"
241                                 }
242                                 //]]>
243                         </script>
244                 </head>
245
246                 <body onload="autoshow()">
247                         <form id="form" method="post" action="" enctype="multipart/form-data">
248                                 <div>
249                                         <input style="display:none" type="text" name="ignoreme" value="" />
250                                         <textarea name="text" cols="80" rows="25"></textarea>
251                                 </div>
252                                 <div class="buttons">
253                                         <select onchange="document.getElementById('form').action =
254                                                           document.location + '?ft=' + this.value;">
255                                                 <option value="" disabled="disabled">Filetype</option>
256                                                 <option value="">None</option>
257                                                 $(for ft in $filetypes; do
258                                                         echo "<option$(
259                                                         [ "$ft" = "$filetype" ] &&
260                                                                 echo ' selected="selected"'
261                                                         )>$ft</option>"
262                                                 done)
263                                         </select>
264                                         <input type="submit" value="Paste" />
265                                 </div>
266                                 <div class="links">
267                                         <a href="">vpaste</a> <span>-</span>
268                                         <a href="#usage"   onclick="show('usage'  )">Usage</a>
269                                         <a href="#devel"   onclick="show('devel'  )">Development</a>
270                                         <a href="#uploads" onclick="show('uploads')">Uploads</a>
271                                 </div>
272                         </form>
273
274                         <div class="box" id="usage">
275                                 <h1>Pasting</h1>
276                                 <dl class="cmds">
277                                         <dt>From a shell</dt>
278                                         <dd> $vpaste file [option=value,..]</dd>
279                                         <dd> &lt;command&gt; | $vpaste [option=value,..]</dd>
280
281                                         <dt>From Vim</dt>
282                                         <dd> :map vp :exec "w !vpaste ft=".&amp;ft&lt;CR&gt;</dd>
283                                         <dd> :vmap vp &lt;ESC&gt;:exec "'&lt;,'&gt;w !vpaste ft=".&amp;ft&lt;CR&gt;</dd>
284
285                                         <dt>With curl</dt>
286                                         <dd> &lt;command&gt; | curl -F 'text=&lt;-' $url[?option=value,..]</dd>
287                                 </dl>
288
289                                 <h1>Options</h1>
290                                 <p>Add <b>?option[=value],..</b> to make your text a rainbow.</p>
291                                 <p>Options specified when uploading are saved as defaults.</p>
292
293                                 <dl>
294                                         <dt>bg, background={light|dark}</dt>
295                                         <dd>Background color to use for the page</dd>
296                                         <dt>et, expandtab</dt>
297                                         <dd>Expand tabs to spaces</dd>
298                                         <dt>fdm, foldmethod=(syntax|indent)</dt>
299                                         <dd>Turn on dynamic code folding</dd>
300                                         <dt>ft, filetype={filetype}</dt>
301                                         <dd>A filetype to use for highlighting, see above menu for supported types</dd>
302                                         <dt>nu, number</dt>
303                                         <dd>Add line numbers</dd>
304                                         <dt>ts, tabstop=[N]</dt>
305                                         <dd>Number of spaces to use for tabs when <b>et</b> is set</dd>
306                                         <dt>...</dt>
307                                         <dd>See :help modeline for more information</dd>
308                                 </dl>
309                         </div>
310
311                         <div class="box" id="devel">
312                                 <h1>License</h1>
313                                 <p>Copyright © 2009-2012
314                                    Andy Spencer &lt;andy753421@gmail.com&gt;</p>
315                                 <p>See individual files for licenses</p>
316
317                                 <h1>Source code</h1>
318                                 <dl>
319                                         <dt>Client</dt>
320                                         <dd><a href="vpaste?ft=sh">vpaste</a></dd>
321                                         <dt>Server</dt>
322                                         <dd><a href="index.cgi?ft=sh">index.cgi</a>
323                                             <a href="vimrc?ft=vim">vimrc</a>
324                                             <a href="htaccess?ft=apache">htaccess</a>
325                                             <a href="robots.txt?ft=robots">robots.txt</a>
326                                             <a href="sitemap.xml?ft=xml">sitemap.xml</a>
327                                         <dt>Patches</dt>
328                                         <dd><a href="2html.patch?ft=diff">2html.patch</a></dd>
329                                         <dt>Subversion</dt>
330                                         <dd><a href="$repo">$repo</a></dd>
331                                 </dl>
332
333                                 <h1>Bugs</h1>
334                                 <ul>
335                                         <li>Using strange filetypes (ft=2html) may result in strange output.</li>
336                                         <li><a href="mailto:andy753421@gmail.com?subject=vpaste bug">Other?</a></li>
337                                 </ul>
338                         </div>
339
340                         <div class="box" id="uploads">
341                                 <h1>Recent Uploads</h1>
342                                 <ul>$(for upload in ${uploads[@]}; do
343                                     echo -n "<li>"
344                                     echo -n "<span>$upload</span> "
345                                     echo -n "<a href='$upload?raw'>text</a> "
346                                     echo -n "<a href='$upload'>rainbow</a>"
347                                     echo "</li>"
348                                 done)
349                                 </ul>
350                                 <p><a href="ls">list all</a></p>
351                                 <p><a href="head">sample all</a></p>
352                                 <p><a href="stat">statistics</a></p>
353                         </div>
354                 </body>
355         </html>
356         EOF
357 }
358
359 # Main
360 PATH=/bin:/usr/bin
361 url="http://$HTTP_HOST${REQUEST_URI/\?*}"
362 pathinfo="${REQUEST_URI/*\/}"
363 pathinfo="${pathinfo/\?*}"
364
365 if [ "$pathinfo" = ls ]; then
366         do_cmd ls
367 elif [ "$pathinfo" = head ]; then
368         do_cmd head
369 elif [ "$pathinfo" = stat ]; then
370         do_cmd stat
371 elif [ "$pathinfo" ]; then
372         do_print "$pathinfo"
373 elif [ "$CONTENT_TYPE" ]; then
374         do_upload
375 else
376         do_help
377 fi