Implement page editor ad a wiki page
[geekigeeki.git] / geekigeeki.py
1 #!/usr/bin/python
2 # -*- coding: utf-8 -*-
3 #
4 # Copyright 1999, 2000 Martin Pool <mbp@humbug.org.au>
5 # Copyright 2002 Gerardo Poggiali
6 # Copyright 2007, 2008, 2009 Bernie Innocenti <bernie@codewiz.org>
7 #
8 # This program is free software: you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation, either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 # General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
21 __version__ = '4.0-' + '$Id$'[4:11]
22
23 from time import clock
24 start_time = clock()
25 title_done = False
26
27 import cgi, sys, os, re, errno, stat
28
29 image_ext = 'png|gif|jpg|jpeg|bmp|ico'
30 video_ext = "ogg|ogv|oga" # Not supported by Firefox 3.5: mkv|mpg|mpeg|mp4|avi|asf|flv|wmv|qt
31 image_re = re.compile(r".*\.(" + image_ext + "|" +  video_ext + ")", re.IGNORECASE)
32 video_re = re.compile(r".*\.(" + video_ext + ")", re.IGNORECASE)
33 # FIXME: we accept stuff like foo/../bar and we shouldn't
34 file_re  = re.compile(r"([A-Za-z0-9_\-][A-Za-z0-9_\.\-/]*)")
35 url_re   = re.compile(r"[a-z]{3,8}://[^\s'\"]+\S")
36 ext_re   = re.compile(r"\.([^\./]+)$")
37
38 # CGI stuff ---------------------------------------------------------
39 def config_get(key, default=None):
40     return globals().get(key, default)
41
42 def script_name():
43     return os.environ.get('SCRIPT_NAME', '')
44
45 def query_string():
46     path_info = os.environ.get('PATH_INFO', '')
47     if len(path_info) and path_info[0] == '/':
48         return path_info[1:] or 'FrontPage'
49     else:
50         return os.environ.get('QUERY_STRING', '') or 'FrontPage'
51
52 def privileged_path():
53     return config_get('privileged_url') or script_name()
54
55 def remote_user():
56     user = os.environ.get('REMOTE_USER', '')
57     if user is None or user == '' or user == 'anonymous':
58         user = 'AnonymousCoward'
59     return user
60
61 def remote_host():
62     return os.environ.get('REMOTE_ADDR', '')
63
64 def get_hostname(addr):
65     try:
66         from socket import gethostbyaddr
67         return gethostbyaddr(addr)[0] + ' (' + addr + ')'
68     except Exception:
69         return addr
70
71 def is_external_url(pathname):
72     return (url_re.match(pathname) or pathname.startswith('/'))
73
74 def relative_url(pathname, privileged=False):
75     if not is_external_url(pathname):
76         if privileged:
77             url = privileged_path()
78         else:
79             url = script_name()
80         pathname = url + '/' + pathname
81     return cgi.escape(pathname, quote=True)
82
83 def permalink(s):
84     return re.sub(' ', '-', re.sub('[^a-z0-9_ ]', '', s.lower()).strip())
85
86 def humanlink(s):
87     return re.sub(r'(?:.*[/:]|)([^:/\.]+)(?:\.[^/:]+|)$', r'\1', s.replace('_', ' '))
88
89 # Split arg lists like "blah|blah blah| width=100 | align = center",
90 # return a list containing anonymous arguments and a map containing the named arguments
91 def parse_args(s):
92     args = []
93     kvargs = {}
94     for arg in s.strip('<[{}]>').split('|'):
95         m = re.match('\s*(\w+)\s*=\s*(.+)\s*', arg)
96         if m is not None:
97             kvargs[m.group(1)] = m.group(2)
98         else:
99             args.append(arg.strip())
100     return (args, kvargs)
101
102 def url_args(kvargs):
103     argv = []
104     for k, v in kvargs.items():
105         argv.append(k + '=' + v)
106     if argv:
107         return '?' + '&amp;'.join(argv)
108     return ''
109
110 # Formatting stuff --------------------------------------------------
111 def emit_header(mime_type="text/html"):
112     print("Content-type: " + mime_type + "; charset=utf-8\n")
113
114 def send_guru(msg_text, msg_type):
115     if not msg_text: return
116     print('<pre id="guru" onclick="this.style.display = \'none\'" class="' + msg_type + '">')
117     if msg_type == 'error':
118         print('    Software Failure.  Press left mouse button to continue.\n')
119     print(msg_text)
120     if msg_type == 'error':
121         print '\n           Guru Meditation #DEADBEEF.ABADC0DE'
122     print('</pre><script language="JavaScript" type="text/javascript" src="%s" defer="defer"></script>' \
123         % relative_url('sys/GuruMeditation.js'))
124
125 def send_title(name, text="Limbo", msg_text=None, msg_type='error', writable=False):
126     global title_done
127     if title_done: return
128
129     # Head
130     emit_header()
131     print('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"')
132     print('  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">')
133     print('<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">')
134
135     print("<head><title>%s: %s</title>" % (config_get('site_name', "Unconfigured Wiki"), text))
136     print(' <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />')
137     if not name:
138         print(' <meta name="robots" content="noindex,nofollow" />')
139
140     for http_equiv, content in config_get('meta_urls', {}):
141         print(' <meta http-equiv="%s" content="%s" />' % (http_equiv, relative_url(content)))
142
143     for link in config_get('link_urls', {}):
144         rel, href = link
145         print(' <link rel="%s" href="%s" />' % (rel, relative_url(href)))
146
147     editable = name and writable and config_get('privileged_url') is not None
148     if editable:
149         print(' <link rel="alternate" type="application/x-wiki" title="Edit this page" href="%s" />' \
150             % (privileged_path() + '?a=edit&q=' + name))
151
152     history = config_get('history_url')
153     if history is not None:
154         print(' <link rel="alternate" type="application/rss+xml" title="RSS" href="%s" />' \
155             % relative_url(history + '?a=rss'))
156
157     print('</head>')
158
159     # Body
160     if editable:
161         print('<body ondblclick="location.href=\'' + privileged_path() + '?a=edit&q=' + name + '\'">')
162     else:
163         print('<body>')
164
165     title_done = True
166     send_guru(msg_text, msg_type)
167
168     # Navbar
169     print('<div class="nav">')
170     print link_tag('FrontPage', config_get('site_icon', 'Home'), cssclass='navlink')
171     if name:
172         print('  <b>' + link_tag('?fullsearch=' + name, text, cssclass='navlink') + '</b> ')
173     else:
174         print('  <b>' + text + '</b> ')
175     print(' | ' + link_tag('FindPage', 'Find Page', cssclass='navlink'))
176     if history:
177         print(' | <a href="' + relative_url(history) + '" class="navlink">Recent Changes</a>')
178         if name:
179             print(' | <a href="' + relative_url(history + '?a=history;f=' + name) + '" class="navlink">Page History</a>')
180
181     if name:
182         print(' | ' + link_tag(name + '?a=raw', 'Raw Text', cssclass='navlink'))
183         if config_get('privileged_url') is not None:
184             if writable:
185                 print(' | ' + link_tag('?a=edit&q=' + name, 'Edit', cssclass='navlink', privileged=True))
186             else:
187                 print(' | ' + link_tag(name, 'Login', cssclass='navlink', privileged=True))
188
189     else:
190         print(' | <i>Immutable Page</i>')
191
192     user = remote_user()
193     if user != 'AnonymousCoward':
194         print(' | <span class="login"><i><b>' + link_tag('User/' + user, user) + '</b></i></span>')
195
196     print('<hr /></div>')
197
198 def send_httperror(status="403 Not Found", query=""):
199     print("Status: %s" % status)
200     send_title(None, msg_text=("%s: on query '%s'" % (status, query)))
201     send_footer()
202
203 def link_tag(dest, text=None, privileged=False, **kvargs):
204     if text is None:
205         text = humanlink(dest)
206     elif image_re.match(text):
207         text = '<img border="0" src="' + relative_url(text) + '" alt="' + text + '" />'
208
209     link_class = kvargs.get('class', kvargs.get('cssclass', None))
210     if not link_class:
211         if is_external_url(dest):
212             link_class = 'external'
213         elif file_re.match(dest) and Page(dest).exists():
214             link_class = 'wikilink'
215         else:
216             text = config_get('nonexist_pfx', '') + text
217             link_class = 'nonexistent'
218
219     # Prevent crawlers from following links potentially added by spammers or to generated pages
220     nofollow = ''
221     if link_class == 'external' or link_class == 'navlink':
222         nofollow = 'rel="nofollow" '
223
224     return '<a class="%s" %shref="%s">%s</a>' % (link_class, nofollow, relative_url(dest, privileged=privileged), text)
225
226 def link_inline(name, descr=None, kvargs={}):
227     if not descr: descr = humanlink(name)
228     url = relative_url(name)
229     if video_re.match(name):
230         return '<video controls="1" src="%s">Your browser does not support the HTML5 video tag</video>' % url
231     elif image_re.match(name):
232         return '<a href="%s"><img border="0" src="%s" alt="%s" /></a>' % (url, url + url_args(kvargs), descr)
233     elif file_re.match(name) and not ext_re.search(name): # FIXME: this guesses a wiki page
234         return Page(name).send_naked(kvargs)
235     else:
236         return '<iframe width="100%%" scrolling="auto" frameborder="0" src="%s"><a href="%s">%s</a></iframe>' \
237             % (url, url, name)
238
239 # Search ---------------------------------------------------
240
241 def print_search_stats(hits, searched):
242     print("<p>%d hits out of %d pages searched.</p>" % (hits, searched))
243
244 def handle_fullsearch(query, form):
245     needle = form['q'].value
246     send_title(None, 'Full text search for "' + needle + '"')
247
248     needle_re = re.compile(needle, re.IGNORECASE)
249     hits = []
250     all_pages = page_list()
251     for page_name in all_pages:
252         body = Page(page_name).get_raw_body()
253         count = len(needle_re.findall(body))
254         if count:
255             hits.append((count, page_name))
256
257     # The default comparison for tuples compares elements in order,
258     # so this sorts by number of hits
259     hits.sort()
260     hits.reverse()
261
262     print("<ul>")
263     for (count, page_name) in hits:
264         print('<li><p>' + link_tag(page_name))
265         print(' . . . . ' + `count`)
266         print(['match', 'matches'][count != 1])
267         print('</p></li>')
268     print("</ul>")
269
270     print_search_stats(len(hits), len(all_pages))
271
272 def handle_titlesearch(query, form):
273     needle = form['q'].value
274     send_title(None, 'Title search for "' + needle + '"')
275
276     needle_re = re.compile(needle, re.IGNORECASE)
277     all_pages = page_list()
278     hits = list(filter(needle_re.search, all_pages))
279
280     print("<ul>")
281     for filename in hits:
282         print('<li><p>' + link_tag(filename) + "</p></li>")
283     print("</ul>")
284
285     print_search_stats(len(hits), len(all_pages))
286
287 def handle_raw(pagename, form):
288     if not file_re.match(pagename):
289         send_httperror("403 Forbidden", pagename)
290         return
291
292     Page(pagename).send_raw()
293
294 def handle_edit(pagename, form):
295     if not file_re.match(pagename):
296         send_httperror("403 Forbidden", pagename)
297         return
298
299     pg = Page(form['q'].value)
300     if 'save' in form:
301         if form['file'].value:
302             pg.save(form['file'].file.read(), form['changelog'].value)
303         else:
304             pg.save(form['savetext'].value.replace('\r\n', '\n'), form['changelog'].value)
305         pg.format()
306     elif 'cancel' in form:
307         pg.msg_text = 'Editing canceled'
308         pg.msg_type = 'notice'
309         pg.format()
310     else: # preview or edit
311         text = None
312         if 'preview' in form:
313             text = form['savetext'].value
314         pg.send_editor(text)
315
316 def handle_get(pagename, form):
317         if file_re.match(pagename):
318             # FIMXE: this is all bullshit, MimeTypes bases its guess on the extension!
319             from mimetypes import MimeTypes
320             mimetype, encoding = MimeTypes().guess_type(pagename)
321             if mimetype:
322                 Page(pagename).send_raw(mimetype=mimetype, args=form)
323             else:
324                 Page(pagename).format()
325         else:
326             send_httperror("403 Forbidden", pagename)
327
328 # Used by macros/WordIndex and macros/TitleIndex
329 def make_index_key():
330     links = ['<a href="#%s">%s</a>' % (ch, ch) for ch in 'abcdefghijklmnopqrstuvwxyz']
331     return '<p style="text-align: center">' + ' | '.join(links) + '</p>'
332
333 def page_list(dirname=None, search_re=None):
334     if search_re is None:
335         # FIXME: WikiWord is too restrictive now!
336         search_re = re.compile(r"^\b((([A-Z][a-z0-9]+){2,}/)*([A-Z][a-z0-9]+){2,})\b$")
337     return sorted(filter(search_re.match, os.listdir(dirname or config_get('data_dir', 'data'))))
338
339 def send_footer(mod_string=None):
340     if config_get('debug_cgi', False):
341         cgi.print_arguments()
342         cgi.print_form(form)
343         cgi.print_environ()
344     link_inline("sys/footer", kvargs = { 'LAST_MODIFIED': mod_string })
345     print("</body></html>")
346
347 def _macro_ELAPSED_TIME(*args, **kvargs):
348     return "%03f" % (clock() - start_time)
349
350 def _macro_VERSION(*args, **kvargs):
351     return __version__
352
353 class WikiFormatter:
354     """Object that turns Wiki markup into HTML.
355
356     All formatting commands can be parsed one line at a time, though
357     some state is carried over between lines.
358     """
359     def __init__(self, raw, kvargs=None):
360         self.raw = raw
361         self.kvargs = kvargs or {}
362         self.h_level = 0
363         self.in_pre = self.in_html = self.in_table = self.in_li = False
364         self.in_header = True
365         self.list_indents = []
366         self.tr_cnt = 0
367         self.styles = {
368             #wiki   html   enabled?
369             "//":  ["em",  False],
370             "**":  ["b",   False],
371             "##":  ["tt",  False],
372             "__":  ["u",   False],
373             "--":  ["del", False],
374             "^^":  ["sup", False],
375             ",,":  ["sub", False],
376             "''":  ["em",  False], # LEGACY
377             "'''": ["b",   False], # LEGACY
378             "``":  ["tt",  False], # LEGACY
379         }
380
381     def _b_repl(self, word):
382         style = self.styles[word]
383         style[1] = not style[1]
384         return ['</', '<'][style[1]] + style[0] + '>'
385
386     def _glyph_repl(self, word):
387         return '&mdash;'
388
389     def _tit_repl(self, word):
390         if self.h_level:
391             result = '</h%d><p>\n' % self.h_level
392             self.h_level = 0
393         else:
394             self.h_level = len(word) - 1
395             link = permalink(self.line)
396             result = '\n</p><h%d id="%s"><a class="heading" href="#%s">¶</a> ' % (self.h_level, link, link)
397         return result
398
399     def _br_repl(self, word):
400         return '<br />'
401
402     def _rule_repl(self, word):
403         return self._undent() + '\n<hr size="%d" noshade="noshade" />\n' % (len(word) - 2)
404
405     def _macro_repl(self, word):
406         try:
407             args, kvargs = parse_args(word)
408             if args[0] in self.kvargs:
409                 return self.kvargs[args[0]]
410             macro = globals().get('_macro_' + args[0])
411             if not macro:
412                 exec(open("macros/" + args[0] + ".py").read(), globals())
413                 macro = globals().get('_macro_' + args[0])
414             return macro(*args, **kvargs)
415         except Exception, e:
416             msg = cgi.escape(word) + ": " + cgi.escape(e.message)
417             if not self.in_html:
418                 msg = '<strong class="error">' + msg + '</strong>'
419             return msg
420
421     def _hurl_repl(self, word):
422         args, kvargs = parse_args(word)
423         return link_tag(*args, **kvargs)
424
425     def _inl_repl(self, word):
426         args, kvargs = parse_args(word)
427         name = args.pop(0)
428         if len(args):
429             descr = args.pop(0)
430             # This double div nonsense works around a limitation of the HTML block model
431             return '<div class="' + kvargs.get('class', 'thumb') + '">' \
432                 + '<div class="innerthumb">' \
433                 + link_inline(name, descr, kvargs) \
434                 + '<div class="caption">' + descr + '</div></div></div>'
435         else:
436             return link_inline(name, None, kvargs)
437
438     def _html_repl(self, word):
439         if not self.in_html and word.startswith('<div'): word = '</p>' + word
440         self.in_html += 1
441         return word; # Pass through
442
443     def _htmle_repl(self, word):
444         self.in_html -= 1
445         if not self.in_html and word.startswith('</div'): word += '<p>'
446         return word; # Pass through
447
448     def _ent_repl(self, s):
449         if self.in_html:
450             return s; # Pass through
451         return {'&': '&amp;',
452                 '<': '&lt;',
453                 '>': '&gt;'}[s]
454
455     def _img_repl(self, word): # LEGACY
456         return self._inl_repl('{{' + word + '}}')
457
458     def _word_repl(self, word): # LEGACY
459         if self.in_html: return word # pass through
460         return link_tag(word)
461
462     def _url_repl(self, word): # LEGACY
463         if self.in_html: return word # pass through
464         return link_tag(word)
465
466     def _email_repl(self, word): # LEGACY
467         if self.in_html: return word # pass through
468         return '<a href="mailto:%s">%s</a>' % (word, word)
469
470     def _li_repl(self, match):
471         if self.in_li:
472             return '</li><li>'
473         else:
474             self.in_li = True
475             return '<li>'
476
477     def _pre_repl(self, word):
478         if word == '{{{' and not self.in_pre:
479             self.in_pre = True
480             return '<pre>'
481         elif self.in_pre:
482             self.in_pre = False
483             return '</pre>'
484         return ''
485
486     def _hi_repl(self, word):
487         return '<strong class="highlight ' + word + '">' + word + '</strong>'
488
489     def _tr_repl(self, word):
490         out = ''
491         if not self.in_table:
492             self.in_table = True
493             self.tr_cnt = 0
494             out = '</p><table><tbody>\n'
495         self.tr_cnt += 1
496         out = out + '<tr class="' + ['even', 'odd'][self.tr_cnt % 2] + '">'
497         return out + ['<td>', '<th>'][word.strip() == '||=']
498
499     def _td_repl(self, word):
500         if self.in_table:
501             return ['</td><td>', '</th><th>'][word.strip() == '||=']
502         return ''
503
504     def _tre_repl(self, word):
505         if self.in_table:
506             return ['</td></tr>', '</th></tr>'][word.strip() == '||=']
507         return ''
508
509     def _indent_level(self):
510         return len(self.list_indents) and self.list_indents[-1]
511
512     def _indent_to(self, new_level):
513         if self._indent_level() == new_level:
514             return ''
515         s = '</p>'
516         while self._indent_level() > new_level:
517             del(self.list_indents[-1])
518             if self.in_li:
519                 s += '</li>'
520                 self.in_li = False # FIXME
521             s += '</ul>\n'
522         while self._indent_level() < new_level:
523             self.list_indents.append(new_level)
524             s += '<ul>\n'
525         s += '<p>'
526         return s
527
528     def _undent(self):
529         res = '</p>'
530         res += '</ul>' * len(self.list_indents)
531         res += '<p>'
532         self.list_indents = []
533         return res
534
535     def replace(self, match):
536         for rule, hit in list(match.groupdict().items()):
537             if hit:
538                 return getattr(self, '_' + rule + '_repl')(hit)
539         else:
540             raise Exception("Can't handle match " + repr(match))
541
542     def print_html(self):
543         print('<div class="wiki"><p>')
544
545         scan_re = re.compile(r"""(?:
546             # Styles and formatting ("--" must cling to a word to disambiguate it from the dash)
547               (?P<b>     \*\* | // | \#\# | __ | --\b | \b-- | \^\^ | ,, | ''' | '' | `` )
548             | (?P<tit>   \={2,6})
549             | (?P<br>    \\\\)
550             | (?P<rule>  ^-{3,})
551             | (?P<hi>    \b( FIXME | TODO | DONE )\b )
552             | (?P<glyph> --)
553
554             # Links
555             | (?P<macro> \<\<([^\s\|\>]+)(?:\s*\|\s*([^\>]+)|)\>\>)
556             | (?P<hurl>  \[\[([^\s\|]+)(?:\s*\|\s*([^\]]+)|)\]\])
557
558             # Inline HTML
559             | (?P<html>             <(br|hr|div|span|form|iframe|input|textarea|a|img|h[1-5])\b )
560             | (?P<htmle> ( /\s*> | </(br|hr|div|span|form|iframe|input|textarea|a|img|h[1-5])> ) )
561             | (?P<ent>   [<>&] )
562
563             # Auto links (LEGACY)
564             | (?P<img>   \b[a-zA-Z0-9_/-]+\.(""" + image_ext + "|" + video_ext + r"""))
565             | (?P<word>  \b(?:[A-Z][a-z]+){2,}\b)
566             | (?P<url>   (http|https|ftp|mailto)\:[^\s'\"]+\S)
567             | (?P<email> [-\w._+]+\@[\w.-]+)
568
569             # Lists, divs, spans and inline objects
570             | (?P<li>    ^\s+[\*\#]\s+)
571             | (?P<pre>   \{\{\{|\s*\}\}\})
572             | (?P<inl>   \{\{([^\s\|]+)(?:\s*\|\s*([^\]]+)|)\}\})
573
574             # Tables
575             | (?P<tr>    ^\s*\|\|(=|)\s*)
576             | (?P<tre>   \s*\|\|(=|)\s*$)
577             | (?P<td>    \s*\|\|(=|)\s*)
578
579             # TODO: highlight search words (look at referrer)
580           )""", re.VERBOSE)
581         pre_re = re.compile("""(?:
582               (?P<pre>\s*\}\}\})
583             | (?P<ent>[<>&])"
584             )""", re.VERBOSE)
585         blank_re = re.compile(r"^\s*$")
586         indent_re = re.compile(r"^\s*")
587         tr_re = re.compile(r"^\s*\|\|")
588         eol_re = re.compile(r"\r?\n")
589         # For each line, we scan through looking for magic strings, outputting verbatim any intervening text
590         #3.0: for self.line in eol_re.split(str(self.raw.expandtabs(), 'utf-8')):
591         for self.line in eol_re.split(str(self.raw.expandtabs())):
592             # Skip pragmas
593             if self.in_header:
594                 if self.line.startswith('#'):
595                     continue
596                 self.in_header = False
597
598             if self.in_pre:
599                 print(re.sub(pre_re, self.replace, self.line))
600             else:
601                 if self.in_table and not tr_re.match(self.line):
602                     self.in_table = False
603                     print('</tbody></table><p>')
604
605                 if blank_re.match(self.line):
606                     print('</p><p>')
607                 else:
608                     indent = indent_re.match(self.line)
609                     #3.0: print(self._indent_to(len(indent.group(0))), end=' ')
610                     print(self._indent_to(len(indent.group(0))))
611                     print(re.sub(scan_re, self.replace, self.line))
612
613         if self.in_pre: print('</pre>')
614         if self.in_table: print('</tbody></table><p>')
615         print(self._undent())
616         print('</p></div>')
617
618 class Page:
619     def __init__(self, page_name):
620         self.page_name = page_name
621         self.msg_text = ''
622         self.msg_type = 'error'
623
624     def split_title(self):
625         # look for the end of words and the start of a new word and insert a space there
626         return re.sub('([a-z])([A-Z])', r'\1 \2', self.page_name)
627
628     def _filename(self):
629         return os.path.join(config_get('data_dir', 'data'), self.page_name)
630
631     def _tmp_filename(self):
632         return os.path.join(config_get('data_dir', 'data'), ('#' + self.page_name.replace('/','_') + '.' + str(os.getpid()) + '#'))
633
634     def exists(self):
635         try:
636             os.stat(self._filename())
637             return True
638         except OSError, err:
639             if err.errno == errno.ENOENT:
640                 return False
641             raise err
642
643     def get_raw_body(self, default=None):
644         try:
645             return open(self._filename(), 'rb').read()
646         except IOError, err:
647             if err.errno == errno.ENOENT:
648                 if default is None:
649                     default = '//[[?a=edit&q=%s|Describe %s]]//' % (self.page_name, self.page_name)
650                 return default
651             if err.errno == errno.EISDIR:
652                 return self.format_dir()
653             raise err
654
655     def format_dir(self):
656         out = '== '
657         pathname = ''
658         for dirname in self.page_name.strip('/').split('/'):
659             pathname = (pathname + '/' + dirname) if pathname else dirname
660             out += '[[' + pathname + '|' + dirname + ']]/'
661         out += ' ==\n'
662  
663         for filename in page_list(self._filename(), file_re):
664             if image_re.match(filename):
665                 maxwidth = config_get(image_maxwidth, '')
666                 if maxwidth:
667                     maxwidth = ' | maxwidth=' + str(maxwidth)
668                 out += '{{' + self.page_name + '/' + filename + ' | ' + humanlink(filename) + maxwidth + ' | class=thumbleft}}\n'
669             else:
670                 out += ' * [[' + self.page_name + '/' + filename + ']]\n'
671         return out
672
673     def pragmas(self):
674         if not '_pragmas' in self.__dict__:
675             self._pragmas = {}
676             try:
677                 file = open(self._filename(), 'rt')
678                 attr_re = re.compile(r"^#(\S*)(.*)$")
679                 for line in file:
680                     m = attr_re.match(line)
681                     if not m:
682                         break
683                     self._pragmas[m.group(1)] = m.group(2).strip()
684                     #print "bernie: pragmas[" + m.group(1) + "] = " + m.group(2) + "<br>\n"
685             except IOError, err:
686                 if err.errno != errno.ENOENT and err.errno != errno.EISDIR:
687                     raise er
688         return self._pragmas
689
690     def pragma(self, name, default):
691         return self.pragmas().get(name, default)
692
693     def can(self, action, default=True):
694         acl = None
695         try:
696             #acl SomeUser:read,write All:read
697             acl = self.pragma("acl", None)
698             for rule in acl.split():
699                 (user, perms) = rule.split(':')
700                 if user == remote_user() or user == "All":
701                     return action in perms.split(',')
702             return False
703         except Exception:
704             if acl:
705                 self.msg_text = 'Illegal acl line: ' + acl
706         return default
707
708     def can_write(self):
709         return self.can("write", True)
710
711     def can_read(self):
712         return self.can("read", True)
713
714     def send_naked(self, kvargs=None):
715         if self.can_read():
716             WikiFormatter(self.get_raw_body(), kvargs).print_html()
717         else:
718             send_guru("Read access denied by ACLs", "notice")
719
720     def format(self):
721         #css foo.css
722         value = self.pragma("css", None)
723         if value:
724             global link_urls
725             link_urls += [ [ "stylesheet", value ] ]
726
727         send_title(self.page_name, self.split_title(),
728             msg_text=self.msg_text, msg_type=self.msg_type, writable=self.can_write())
729         self.send_naked()
730         send_footer(self._last_modified())
731
732     def _last_modified(self):
733         try:
734             from time import localtime, strftime
735             modtime = localtime(os.stat(self._filename())[stat.ST_MTIME])
736         except OSError, err:
737             if err.errno != errno.ENOENT:
738                 raise err
739             return None
740         return strftime(config_get(datetime_fmt, '%a %d %b %Y %I:%M %p'), modtime)
741
742     def send_editor(self, preview=None):
743         send_title(None, 'Edit ' + self.split_title(), msg_text=self.msg_text, msg_type=self.msg_type)
744         if not self.can_write():
745             send_guru("Write access denied by ACLs", "error")
746             return
747
748         if preview is None:
749             preview = self.get_raw_body(default='')
750
751         link_inline("sys/EditPage", kvargs = {
752             'EDIT_BODY': cgi.escape(preview),
753             #'EDIT_PREVIEW': WikiFormatter(preview).print_html(),
754         })
755
756         if preview:
757             print("<div class='preview'>")
758             WikiFormatter(preview).print_html()
759             print("</div>")
760         send_footer()
761
762     def send_raw(self, mimetype='text/plain', args=[]):
763         if not self.can_read():
764             send_title(None, msg_text='Read access denied by ACLs', msg_type='notice')
765             return
766
767         if 'maxwidth' in args:
768             import subprocess
769             emit_header(mimetype)
770             sys.stdout.flush()
771             subprocess.check_call(['gm', 'convert', self._filename(),
772                 '-scale', args['maxwidth'].value + ' >', '-'])
773         else:
774             body = self.get_raw_body()
775             emit_header(mimetype)
776             print(body)
777
778     def _write_file(self, data):
779         tmp_filename = self._tmp_filename()
780         open(tmp_filename, 'wb').write(data)
781         name = self._filename()
782         if os.name == 'nt':
783             # Bad Bill!  POSIX rename ought to replace. :-(
784             try:
785                 os.remove(name)
786             except OSError, err:
787                 if err.errno != errno.ENOENT: raise err
788         path = os.path.split(name)[0]
789         if not os.path.exists(path):
790             os.makedirs(path)
791         os.rename(tmp_filename, name)
792
793     def save(self, newdata, changelog):
794         if not self.can_write():
795             self.msg_text = 'Write access denied by ACLs'
796             self.msg_type = 'error'
797             return
798
799         self._write_file(newdata)
800         rc = 0
801         if config_get('post_edit_hook'):
802             import subprocess
803             cmd = [
804                 config_get('post_edit_hook'),
805                 os.path.join(config_get('data_dir', 'data'), self.page_name), remote_user(),
806                 remote_host(), changelog ]
807             child = subprocess.Popen(cmd, stdout=subprocess.PIPE, close_fds=True)
808             output = child.stdout.read()
809             rc = child.wait()
810         if rc:
811             self.msg_text += "Post-editing hook returned %d. Command was:\n'%s'\n" % (rc, "' '".join(cmd))
812             if output:
813                 self.msg_text += 'Output follows:\n' + output
814         else:
815             self.msg_text = 'Thank you for your contribution.  Your attention to detail is appreciated.'
816             self.msg_type = 'success'
817
818 try:
819     exec(open("geekigeeki.conf.py").read())
820     form = cgi.FieldStorage()
821     action = form.getvalue('a', 'get')
822     handler = globals().get('handle_' + action)
823     if handler:
824         handler(query_string(), form)
825     else:
826         send_httperror("403 Forbidden", query_string())
827
828 except Exception:
829     import traceback
830     msg_text = traceback.format_exc()
831     if title_done:
832         send_guru(msg_text, "error")
833     else:
834         send_title(None, msg_text=msg_text)
835     send_footer()
836
837 sys.stdout.flush()