]> Pileus Git - vpaste/blob - index.cgi
Use syntax highlighting by default
[vpaste] / index.cgi
1 #!/bin/bash
2
3 # Copyright (C) 2009-2011 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
22 # Extract an uploaded file from standard input
23 #   $1 is the name of the input to extract
24 function cut_file {
25         bnd="${CONTENT_TYPE/*boundary\=/}"
26         awk -v "want=$1" -v "bnd=$bnd" '
27                 BEGIN { RS="\r\n" }
28
29                 # reset based on boundaries
30                 $0 == "--"bnd""     { st=1; next; }
31                 $0 == "--"bnd"--"   { st=0; next; }
32                 $0 == "--"bnd"--\r" { st=0; next; }
33
34                 # search for wanted file
35                 st == 1 && $0 ~  "^Content-Disposition:.* name=\""want"\"" { st=2; next; }
36                 st == 1 && $0 == "" { st=9; next; }
37
38                 # wait for newline, then start printing
39                 st == 2 && $0 == "" { st=3; next; }
40                 st == 3             { print $0    }
41         ' | head -c $((128*1024)) # Limit size to 128K
42 }
43
44 # Print out a generic header
45 function header {
46         echo "Content-Type: $1; charset=UTF-8"
47         echo
48 }
49
50 # Print plain message and exit
51 function message {
52         while [ "$1" == '-h' ]; do
53                 shift; echo $1; shift
54         done
55         header text/plain
56         echo "$*"
57         exit
58 }
59
60 # List previous pastes
61 function do_cmd {
62         header text/plain
63         case "$1" in
64         head)
65                 for i in $(ls -t db/*); do
66                         basename $i
67                         basename $i | sed 's/./-/g'
68                         sed '1,/^$/d; /^\s*$/d' $i | sed -n '1,5s/\(.\{0,60\}\).*/\1/p'
69                         echo
70                 done
71                 ;;
72         ls)
73                 ls -t db | column
74                 ;;
75         esac
76 }
77
78 # Format a file for viewing
79 function do_print {
80         if [ -f "./$1" ]; then
81                 input="$1"
82         elif [ -f "db/$1" ]; then
83                 input="db/$1"
84                 trim='1,/^$/d' # sed command to remove cruft
85         else
86                 message -h 'Status: 404 Not Found' \
87                         "File '$1' not found"
88         fi
89
90         if [[ "$HTTP_ACCEPT"  == *'html'* &&
91               "$QUERY_STRING" !=  'raw'* ]]; then
92                 # Create a temp file with the provided modeline
93                 output="$(mktemp)"
94                 tmp="$(mktemp)"
95                 sed "\$avim: $(get_modeline)" "$input" > "$tmp"
96
97                 # - I have some plugins in ~/.vim
98                 # - Run ex in screen to trick it into thinking that it
99                 #   has a real terminal, note that we also have to set
100                 #   term=xterm-256color in vimrc
101                 HOME=/home/andy \
102                 screen -D -m ex -nXZ -i NONE -u vimrc \
103                         '+sil! set fde= fdt= fex= inde= inex= key= pa= pexpr=' \
104                         '+sil! set iconstring= ruf= stl= tal=' \
105                         "+sil! set titlestring=$1\ -\ vpaste.net" \
106                         '+sil! set noml'     \
107                         '+sil! $d|'$trim     \
108                         '+sil! %s/\r//g' \
109                         '+sil! TOhtml'       \
110                         "+sav! $output" \
111                         '+qall!'        \
112                         "$tmp"
113
114                 header text/html
115                 cat "$output"
116                 rm "$tmp" "$output"
117         else
118                 header text/plain
119                 sed "$trim" "$input"
120         fi
121 }
122
123
124 # Upload handler
125 function do_upload {
126         body=$(cat -)
127         spam=$(echo -n "$body" | cut_file "ignoreme")
128         text=$(echo -n "$body" | cut_file "(text|x)")
129         [ ! -z "$spam" ] && message "Spam check.."
130         [   -z "$text" ] && message "No text pasted"
131
132         # Format and save message
133         output="$(mktemp db/XXXXX)"
134         cat >"$output" <<-EOF
135                 vim: $(get_modeline)
136                 Date: $(date -R)
137                 From: $REMOTE_ADDR
138
139                 $text
140         EOF
141
142         # Redirect user
143         uri="$SCRIPT_URI$(basename "$output")"
144         message -h 'Status: 302 Found' \
145                 -h "Location: $uri"    \
146                 "$uri"
147 }
148
149 # Default index page
150 function do_help {
151         filetypes=$(
152                 ls /usr/share/vim/vim*/syntax/ /home/andy/.vim/syntax/ |
153                 sed -n '/^\(syntax\|manual\|synload\|2html\|colortest\|hitest\).vim$/d; s/.vim$//p' |
154                 sort | uniq
155         )
156         uploads=$(ls -t db | head -n 5)
157
158         header text/html
159         cat <<-EOF
160         <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
161           "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
162         <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
163             <head>
164                 <title>vpaste.net - Vim based pastebin</title>
165                 <meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
166                 <meta name="description" content="vpaste: Vim based pastebin" />
167                 <meta name="keywords" content="vpaste,paste,pastebin,vim" />
168                 <style type="text/css">
169                     * { margin:0; padding:0; }
170                     body { margin:1em; }
171                     h4 { margin:1em 0 0 0; }
172                     blockquote,dd,dl,p,pre,ul { margin:0 0 0 2em; }
173                     dt { font-weight:bold; padding:0.5em 0 0 0; }
174                     blockquote { width:50em; font-size:small; }
175                     span { font-family:monospace; }
176                 </style>
177             </head>
178             <body>
179                 <form id="form" method="post" action="?" enctype="multipart/form-data">
180                 <div style="margin:0 0 1.5em 0;">
181                 <input style="display:none" type="text" name="ignoreme" value="">
182                 <textarea name="text" cols="80" rows="25" style="width:100%; height:20em;"></textarea>
183                 <select onchange="document.getElementById('form').action =
184                     document.location + '?ft=' + this.value;">
185                 <option value="" selected="selected" disabled="disabled">Filetype</option>
186                 <option value="">None</option>
187                 $(for ft in $filetypes; do
188                     echo "<option>$ft</option>"
189                 done)
190                 </select>
191                 <input type="submit" value="Paste" />
192                 </div>
193                 </form>
194
195                 <h4>NAME</h4>
196                 <p>vpaste: Vim based pastebin</p>
197
198                 <h4>SYNOPSIS</h4>
199                 <div>
200                 <pre> vpaste file [option=value,..]</pre>
201                 <pre> &lt;command&gt; | vpaste [option=value,..]</pre>
202                 <br />
203                 <pre> &lt;command&gt; | curl -F 'text=&lt;-' $SCRIPT_URI[?option=value,..]</pre>
204                 <br />
205                 <pre> :map vp :exec "w !vpaste ft=".&amp;ft&lt;CR&gt;</pre>
206                 <pre> :vmap vp &lt;ESC&gt;:exec "'&lt;,'&gt;w !vpaste ft=".&amp;ft&lt;CR&gt;</pre>
207                 </div>
208
209                 <h4>DESCRIPTION</h4>
210                 <p>Add <b>?[option[=value],..]</b> to make your text a rainbow.</p>
211                 <p>Options specified when uploading are used as defaults.</p>
212
213                 <h4>OPTIONS</h4>
214                 <dl>
215                 <dt>ft, filetype={filetype}</dt>
216                 <dd>A filetype to use for highlighting, see above menu for supported types</dd>
217                 <dt>bg, background={light|dark}</dt>
218                 <dd>Background color to use for the page</dd>
219                 <dt>et, expandtab</dt>
220                 <dd>Expand tabs to spaces</dd>
221                 <dt>ts, tabstop=[N]</dt>
222                 <dd>Number of spaces to use for tabs when <b>et</b> is set</dd>
223                 <dt>...</dt>
224                 <dd>See :help modeline for more information</dd>
225                 </dl>
226
227                 <h4>BUGS</h4>
228                 <ul>
229                 <li>Using strange filetypes (ft=2html) may result in strange output.</li>
230                 <li><a href="mailto:andy753421@gmail.com?subject=vpaste bug">Other?</a></li>
231                 </ul>
232
233                 <h4>SOURCE</h4>
234                 <ul>
235                 <li><a href="vpaste?ft=sh">vpaste</a></li>
236                 <li><a href="index.cgi?ft=sh">index.cgi</a>
237                     <a href="vimrc?ft=vim">vimrc</a>
238                     <a href="htaccess?ft=apache">htaccess</a>
239                     <a href="robots.txt?ft=robots">robots.txt</a>
240                     <a href="sitemap.xml?ft=xml">sitemap.xml</a></li>
241                 <li><a href="2html.patch?ft=diff">2html.patch</a></li>
242                 <li><a href="https://lug.rose-hulman.edu/svn/misc/trunk/htdocs/vpaste/">Subversion</a></li>
243                 </ul>
244
245                 <h4>LATEST UPLOADS</h4>
246                 <ul>$(for upload in ${uploads[@]}; do
247                     echo -n "<li>"
248                     echo -n "<span>$upload</span> "
249                     echo -n "<a href='$upload?raw'>text</a> "
250                     echo -n "<a href='$upload'>rainbow</a>"
251                     echo "</li>"
252                 done)
253                 </ul>
254                 <p><a href="ls">list all</a></p>
255                 <p><a href="head">sample all</a></p>
256             </body>
257         </html>
258         EOF
259 }
260
261 # Main
262 pathinfo="${REQUEST_URI/*\/}"
263 pathinfo="${pathinfo/\?*}"
264
265 if [ "$pathinfo" = ls ]; then
266         do_cmd ls
267 elif [ "$pathinfo" = head ]; then
268         do_cmd head
269 elif [ "$pathinfo" ]; then
270         do_print "$pathinfo"
271 elif [ "$CONTENT_TYPE" ]; then
272         do_upload
273 else
274         do_help
275 fi