]> Pileus Git - vpaste/blob - index.cgi
Update vpaste styles
[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         echo
51 }
52
53 # Print plain message and exit
54 function message {
55         while [ "$1" == '-h' ]; do
56                 shift; echo "$1"; shift
57         done
58         header text/plain
59         echo "$*"
60         exit
61 }
62
63 # List previous pastes
64 function do_cmd {
65         header text/plain
66         case "$1" in
67         head)
68                 for i in $(ls -t db/*); do
69                         basename $i
70                         basename $i | sed 's/./-/g'
71                         sed '1,/^$/d; /^\s*$/d' $i | sed -n '1,5s/\(.\{0,60\}\).*/\1/p'
72                         echo
73                 done
74                 ;;
75         ls)
76                 ls -t db | column
77                 ;;
78         esac
79 }
80
81 # Format a file for viewing
82 function do_print {
83         if [ -f "./$1" ]; then
84                 input="$1"
85         elif [ -f "db/$1" ]; then
86                 input="db/$1"
87                 trim='1,/^$/d' # sed command to remove cruft
88         else
89                 message -h 'Status: 404 Not Found' \
90                         "File '$1' not found"
91         fi
92
93         # Check for raw paste
94         if [[ "$QUERY_STRING" == 'raw'* ||
95               "$REQUEST_URI"  != *'?'* &&
96               "$HTTP_ACCEPT"  != *'html'* ]]; then
97                 header text/plain
98                 sed "$trim" "$input"
99                 exit
100         fi
101
102         # Create a temp file with the provided modeline
103         output="$(mktemp)"
104         tmp="$(mktemp)"
105         sed "\$avim: $(get_modeline)" "$input" > "$tmp"
106
107         # - I have some plugins in ~/.vim
108         # - Run ex in screen to trick it into thinking that it
109         #   has a real terminal, note that we also have to set
110         #   term=xterm-256color in vimrc
111         HOME=/home/andy \
112         screen -D -m ex -nXZ -i NONE -u vimrc \
113                 '+sil! set fde= fdt= fex= inde= inex= key= pa= pexpr=' \
114                 '+sil! set iconstring= ruf= stl= tal=' \
115                 "+sil! set titlestring=$1\ -\ vpaste.net" \
116                 '+sil! set noml'     \
117                 '+sil! $d|'$trim     \
118                 '+sil! %s/\r//g' \
119                 '+sil! TOhtml'       \
120                 "+sav! $output" \
121                 '+qall!'        \
122                 "$tmp"
123
124         header text/html
125         cat "$output"
126         rm "$tmp" "$output"
127 }
128
129
130 # Upload handler
131 function do_upload {
132         body=$(cat -)
133         spam=$(echo -n "$body" | cut_file "ignoreme")
134         text=$(echo -n "$body" | cut_file "(text|x)")
135         [ ! -z "$spam" ] && message "Spam check.."
136         [   -z "$text" ] && message "No text pasted"
137
138         # Format and save message
139         output="$(mktemp db/XXXXX)"
140         cat >"$output" <<-EOF
141                 vim: $(get_modeline)
142                 Date: $(date -R)
143                 From: $REMOTE_ADDR
144
145                 $text
146         EOF
147
148         # Redirect user
149         uri="$url$(basename "$output")"
150         message -h 'Status: 302 Found' \
151                 -h "Location: $uri"    \
152                 "$uri"
153 }
154
155 # Default index page
156 function do_help {
157         filetypes=$(
158                 ls /usr/share/vim/vim*/syntax/ /home/andy/.vim/syntax/ |
159                 sed -n '/^\(syntax\|manual\|synload\|2html\|colortest\|hitest\).vim$/d; s/.vim$//p' |
160                 sort | uniq
161         )
162         uploads=$(ls -t db | head -n 5)
163         filetype=$(get_param '^(ft|filet(y(pe?)?)?)$')
164         vpaste='<a href="vpaste?ft=sh">vpaste</a>'
165
166         header text/html
167         cat <<-EOF
168         <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
169           "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
170         <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
171                 <head>
172                         <title>vpaste.net - Vim based pastebin</title>
173                         <meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
174                         <meta name="description" content="vpaste: Vim based pastebin" />
175                         <meta name="keywords" content="vpaste,paste,pastebin,vim" />
176                         <style type="text/css">
177                                 *          { margin: 0;
178                                              padding: 0; }
179                                 body       { margin: 4em 8em 4em 8em;
180                                              font-family: sans-serif; }
181                                 /* Items */
182                                 textarea   { width: 100%;
183                                              margin-bottom: 0.5em; }
184                                 .buttons   { float: left; }
185                                 .links     { float: right; }
186                                 .links a   { text-decoration: none;
187                                              margin-left: 0.4em; }
188                                 .box       { display: none;
189                                              clear: both;
190                                              margin-top: 2.7em;
191                                              border-top: solid 1px #888; }
192                                 /* box contents */
193                                 h1         { margin-top: 1.0em;
194                                              font-size: larger; }
195                                 ul,dd,dl,p { margin: 0 0 0 2em; }
196                                 dt         { font-weight: bold;
197                                              padding: 0.5em 0 0 0; }
198                                 span       { font-family: monospace; }
199                                 .cmds dd   { font-family: monospace; }
200                         </style>
201                         <script>
202                                 function show(id) {
203                                         boxes = document.getElementsByClassName('box');
204                                         for (i=0; i<boxes.length; i++) {
205                                                 box = boxes[i]
206                                                 if (box.id == id && box.style.display != 'block')
207                                                         box.style.display = 'block'
208                                                 else
209                                                         box.style.display = "none"
210                                         }
211                                 }
212                         </script>
213                 </head>
214
215                 <body>
216                         <form id="form" method="post" action="" enctype="multipart/form-data">
217                                 <input style="display:none" type="text" name="ignoreme" value="" />
218                                 <textarea name="text" cols="80" rows="25"></textarea>
219                                 <div class="buttons">
220                                         <select onchange="document.getElementById('form').action =
221                                                           document.location + '?ft=' + this.value;">
222                                                 <option value="" disabled="disabled">Filetype</option>
223                                                 <option value="">None</option>
224                                                 $(for ft in $filetypes; do
225                                                         echo "<option$(
226                                                         [ "$ft" = "$filetype" ] &&
227                                                                 echo ' selected="selected"'
228                                                         )>$ft</option>"
229                                                 done)
230                                         </select>
231                                         <input type="submit" value="Paste" />
232                                 </div>
233                                 <div class="links">
234                                         <a href="javascript:show('usage'  )">Usage</a>
235                                         <a href="javascript:show('devel'  )">Development</a>
236                                         <a href="javascript:show('uploads')">Uploads</a>
237                                 </div>
238                         </form>
239
240                         <div class="box" id="usage">
241                                 <h1>Pasting</h1>
242                                 <dl class="cmds">
243                                         <dt>From a shell</dt>
244                                         <dd> $vpaste file [option=value,..]</dd>
245                                         <dd> &lt;command&gt; | $vpaste [option=value,..]</dd>
246
247                                         <dt>From Vim</dt>
248                                         <dd> :map vp :exec "w !vpaste ft=".&amp;ft&lt;CR&gt;</dd>
249                                         <dd> :vmap vp &lt;ESC&gt;:exec "'&lt;,'&gt;w !vpaste ft=".&amp;ft&lt;CR&gt;</dd>
250
251                                         <dt>With curl</dt>
252                                         <dd> &lt;command&gt; | curl -F 'text=&lt;-' $url[?option=value,..]</dd>
253                                 </dl>
254
255                                 <h1>Options</h1>
256                                 <p>Add <b>?option[=value],..</b> to make your text a rainbow.</p>
257                                 <p>Options specified when uploading are saved as defaults.</p>
258
259                                 <dl>
260                                         <dt>ft, filetype={filetype}</dt>
261                                         <dd>A filetype to use for highlighting, see above menu for supported types</dd>
262                                         <dt>fdm, foldmethod=(syntax|indent)</dt>
263                                         <dd>Turn on dynamic code folding</dd>
264                                         <dt>bg, background={light|dark}</dt>
265                                         <dd>Background color to use for the page</dd>
266                                         <dt>et, expandtab</dt>
267                                         <dd>Expand tabs to spaces</dd>
268                                         <dt>ts, tabstop=[N]</dt>
269                                         <dd>Number of spaces to use for tabs when <b>et</b> is set</dd>
270                                         <dt>...</dt>
271                                         <dd>See :help modeline for more information</dd>
272                                 </dl>
273                         </div>
274
275                         <div class="box" id="devel">
276                                 <h1>License</h1>
277                                 <p>Copyright © 2009-2012
278                                    Andy spencer &lt;andy753421@gmail.com&gt;</p>
279                                 <p>See individual files for license</p>
280
281                                 <h1>Source code</h1>
282                                 <ul>
283                                         <li><a href="vpaste?ft=sh">vpaste</a></li>
284                                         <li><a href="index.cgi?ft=sh">index.cgi</a>
285                                             <a href="vimrc?ft=vim">vimrc</a>
286                                             <a href="htaccess?ft=apache">htaccess</a>
287                                             <a href="robots.txt?ft=robots">robots.txt</a>
288                                             <a href="sitemap.xml?ft=xml">sitemap.xml</a></li>
289                                         <li><a href="2html.patch?ft=diff">2html.patch</a></li>
290                                         <li><a href="https://lug.rose-hulman.edu/svn/misc/trunk/htdocs/vpaste/">Subversion</a></li>
291                                 </ul>
292
293                                 <h1>Bugs</h1>
294                                 <ul>
295                                         <li>Using strange filetypes (ft=2html) may result in strange output.</li>
296                                         <li><a href="mailto:andy753421@gmail.com?subject=vpaste bug">Other?</a></li>
297                                 </ul>
298                         </div>
299
300                         <div class="box" id="uploads">
301                                 <h1>Recent Uploads</h1>
302                                 <ul>$(for upload in ${uploads[@]}; do
303                                     echo -n "<li>"
304                                     echo -n "<span>$upload</span> "
305                                     echo -n "<a href='$upload?raw'>text</a> "
306                                     echo -n "<a href='$upload'>rainbow</a>"
307                                     echo "</li>"
308                                 done)
309                                 </ul>
310                                 <p><a href="ls">list all</a></p>
311                                 <p><a href="head">sample all</a></p>
312                         </div>
313                 </body>
314         </html>
315         EOF
316 }
317
318 # Main
319 PATH=/bin:/usr/bin
320 url="http://$HTTP_HOST${REQUEST_URI/\?*}"
321 pathinfo="${REQUEST_URI/*\/}"
322 pathinfo="${pathinfo/\?*}"
323
324 if [ "$pathinfo" = ls ]; then
325         do_cmd ls
326 elif [ "$pathinfo" = head ]; then
327         do_cmd head
328 elif [ "$pathinfo" ]; then
329         do_print "$pathinfo"
330 elif [ "$CONTENT_TYPE" ]; then
331         do_upload
332 else
333         do_help
334 fi