]> Pileus Git - vpaste/blob - index.cgi
861a141a02bd58c077747dbc23a16b5465a057ec
[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
187         header text/html
188         cat <<-EOF
189         <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
190           "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
191         <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
192                 <head>
193                         <title>vpaste.net - Vim based pastebin</title>
194                         <meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
195                         <meta name="description" content="vpaste: Vim based pastebin" />
196                         <meta name="keywords" content="vpaste,paste,pastebin,vim" />
197                         <meta name="google-site-verification" content="OvHF73zD7osJ1VSq9rJxnMFlja36944ud6CiP_iXQnI" />
198                         <style type="text/css">
199                                 *          { margin: 0;
200                                              padding: 0; }
201                                 body       { margin: 4em 8em 4em 8em;
202                                              font-family: sans-serif; }
203                                 /* Items */
204                                 textarea   { width: 100%;
205                                              margin-bottom: 0.5em; }
206                                 .buttons   { float: left; }
207                                 .links     { float: right; }
208                                 .links *   { text-decoration: none;
209                                              margin-left: 0.5em; }
210                                 .box       { display: none;
211                                              clear: both;
212                                              margin-top: 2.7em;
213                                              border-top: solid 1px #888; }
214                                 /* box contents */
215                                 h1         { margin-top: 1.0em;
216                                              font-size: larger; }
217                                 ul,dd,dl,p { margin: 0 0 0 2em; }
218                                 dt         { font-weight: bold;
219                                              padding: 0.5em 0 0 0; }
220                                 span       { font-family: monospace; }
221                                 .cmds dd   { font-family: monospace; }
222                         </style>
223                         <script type="text/javascript">
224                                 //<![CDATA[
225                                 function show(id) {
226                                         var boxes = document.getElementsByClassName('box')
227                                         for (var i = 0; i < boxes.length; i++) {
228                                                 var box = boxes[i]
229                                                 if (box.id == id && box.style.display != 'block')
230                                                         box.style.display = 'block'
231                                                 else
232                                                         box.style.display = "none"
233                                         }
234                                 }
235                                 function autoshow() {
236                                         var id  = document.location.toString().replace(/.*#/, '')
237                                         var box = document.getElementById(id)
238                                         if (box) box.style.display = "block"
239                                 }
240                                 //]]>
241                         </script>
242                 </head>
243
244                 <body onload="autoshow()">
245                         <form id="form" method="post" action="" enctype="multipart/form-data">
246                                 <div>
247                                         <input style="display:none" type="text" name="ignoreme" value="" />
248                                         <textarea name="text" cols="80" rows="25"></textarea>
249                                 </div>
250                                 <div class="buttons">
251                                         <select onchange="document.getElementById('form').action =
252                                                           document.location + '?ft=' + this.value;">
253                                                 <option value="" disabled="disabled">Filetype</option>
254                                                 <option value="">None</option>
255                                                 $(for ft in $filetypes; do
256                                                         echo "<option$(
257                                                         [ "$ft" = "$filetype" ] &&
258                                                                 echo ' selected="selected"'
259                                                         )>$ft</option>"
260                                                 done)
261                                         </select>
262                                         <input type="submit" value="Paste" />
263                                 </div>
264                                 <div class="links">
265                                         <a href="">vpaste</a> <span>-</span>
266                                         <a href="#usage"   onclick="show('usage'  )">Usage</a>
267                                         <a href="#devel"   onclick="show('devel'  )">Development</a>
268                                         <a href="#uploads" onclick="show('uploads')">Uploads</a>
269                                 </div>
270                         </form>
271
272                         <div class="box" id="usage">
273                                 <h1>Pasting</h1>
274                                 <dl class="cmds">
275                                         <dt>From a shell</dt>
276                                         <dd> $vpaste file [option=value,..]</dd>
277                                         <dd> &lt;command&gt; | $vpaste [option=value,..]</dd>
278
279                                         <dt>From Vim</dt>
280                                         <dd> :map vp :exec "w !vpaste ft=".&amp;ft&lt;CR&gt;</dd>
281                                         <dd> :vmap vp &lt;ESC&gt;:exec "'&lt;,'&gt;w !vpaste ft=".&amp;ft&lt;CR&gt;</dd>
282
283                                         <dt>With curl</dt>
284                                         <dd> &lt;command&gt; | curl -F 'text=&lt;-' $url[?option=value,..]</dd>
285                                 </dl>
286
287                                 <h1>Options</h1>
288                                 <p>Add <b>?option[=value],..</b> to make your text a rainbow.</p>
289                                 <p>Options specified when uploading are saved as defaults.</p>
290
291                                 <dl>
292                                         <dt>bg, background={light|dark}</dt>
293                                         <dd>Background color to use for the page</dd>
294                                         <dt>et, expandtab</dt>
295                                         <dd>Expand tabs to spaces</dd>
296                                         <dt>fdm, foldmethod=(syntax|indent)</dt>
297                                         <dd>Turn on dynamic code folding</dd>
298                                         <dt>ft, filetype={filetype}</dt>
299                                         <dd>A filetype to use for highlighting, see above menu for supported types</dd>
300                                         <dt>nu, number</dt>
301                                         <dd>Add line numbers</dd>
302                                         <dt>ts, tabstop=[N]</dt>
303                                         <dd>Number of spaces to use for tabs when <b>et</b> is set</dd>
304                                         <dt>...</dt>
305                                         <dd>See :help modeline for more information</dd>
306                                 </dl>
307                         </div>
308
309                         <div class="box" id="devel">
310                                 <h1>License</h1>
311                                 <p>Copyright © 2009-2012
312                                    Andy Spencer &lt;andy753421@gmail.com&gt;</p>
313                                 <p>See individual files for licenses</p>
314
315                                 <h1>Source code</h1>
316                                 <ul>
317                                         <li><a href="vpaste?ft=sh">vpaste</a></li>
318                                         <li><a href="index.cgi?ft=sh">index.cgi</a>
319                                             <a href="vimrc?ft=vim">vimrc</a>
320                                             <a href="htaccess?ft=apache">htaccess</a>
321                                             <a href="robots.txt?ft=robots">robots.txt</a>
322                                             <a href="sitemap.xml?ft=xml">sitemap.xml</a></li>
323                                         <li><a href="2html.patch?ft=diff">2html.patch</a></li>
324                                         <li><a href="https://lug.rose-hulman.edu/svn/misc/trunk/htdocs/vpaste/">Subversion</a></li>
325                                 </ul>
326
327                                 <h1>Bugs</h1>
328                                 <ul>
329                                         <li>Using strange filetypes (ft=2html) may result in strange output.</li>
330                                         <li><a href="mailto:andy753421@gmail.com?subject=vpaste bug">Other?</a></li>
331                                 </ul>
332                         </div>
333
334                         <div class="box" id="uploads">
335                                 <h1>Recent Uploads</h1>
336                                 <ul>$(for upload in ${uploads[@]}; do
337                                     echo -n "<li>"
338                                     echo -n "<span>$upload</span> "
339                                     echo -n "<a href='$upload?raw'>text</a> "
340                                     echo -n "<a href='$upload'>rainbow</a>"
341                                     echo "</li>"
342                                 done)
343                                 </ul>
344                                 <p><a href="ls">list all</a></p>
345                                 <p><a href="head">sample all</a></p>
346                                 <p><a href="stat">statistics</a></p>
347                         </div>
348                 </body>
349         </html>
350         EOF
351 }
352
353 # Main
354 PATH=/bin:/usr/bin
355 url="http://$HTTP_HOST${REQUEST_URI/\?*}"
356 pathinfo="${REQUEST_URI/*\/}"
357 pathinfo="${pathinfo/\?*}"
358
359 if [ "$pathinfo" = ls ]; then
360         do_cmd ls
361 elif [ "$pathinfo" = head ]; then
362         do_cmd head
363 elif [ "$pathinfo" = stat ]; then
364         do_cmd stat
365 elif [ "$pathinfo" ]; then
366         do_print "$pathinfo"
367 elif [ "$CONTENT_TYPE" ]; then
368         do_upload
369 else
370         do_help
371 fi