4 # blitiri - A single-file blog engine.
5 # Alberto Bertogli (albertito@gmail.com)
8 # Configuration section
10 # You can edit these values, or create a file named "config.py" and put them
11 # there to make updating easier. The ones in config.py take precedence.
14 # Directory where entries are stored
15 data_path = "/tmp/blog/data"
17 # Are comments allowed? (if False, comments_path option is not used)
18 enable_comments = False
20 # Directory where comments are stored (must be writeable by the web server)
21 comments_path = "/tmp/blog/comments"
23 # Path where templates are stored. Use an empty string for the built-in
24 # default templates. If they're not found, the built-in ones will be used.
25 templates_path = "/tmp/blog/templates"
27 # Path where the cache is stored (must be writeable by the web server);
28 # set to None to disable. When enabled, you must take care of cleaning it up
29 # every once in a while.
30 #cache_path = "/tmp/blog/cache"
33 # URL to the blog, including the name. Can be a full URL or just the path.
34 blog_url = "/blog/blitiri.cgi"
36 # Style sheet (CSS) URL. Can be relative or absolute. To use the built-in
37 # default, set it to blog_url + "/style".
38 css_url = blog_url + "/style"
41 title = "I don't like blogs"
44 author = "Hartmut Kegan"
49 # Captcha method to use. At the moment only "title" is supported, but if you
50 # are keen with Python you can provide your own captcha implementation, see
52 captcha_method = "title"
54 # How many articles to show in the index
59 # End of configuration
60 # DO *NOT* EDIT ANYTHING PAST HERE
74 from docutils.core import publish_parts
75 from docutils.utils import SystemMessage
77 # Before importing the config, add our cwd to the Python path
78 sys.path.append(os.getcwd())
80 # Load the config file, if there is one
87 # Pimp *_path config variables to support relative paths
88 data_path = os.path.realpath(data_path)
89 templates_path = os.path.realpath(templates_path)
95 # They must follow the interface described below.
98 # Captcha(article) -> constructor, takes an article[1] as argument
100 # puzzle -> a string with the puzzle the user must solve to prove he is
101 # not a bot (can be raw HTML)
102 # help -> a string with extra instructions, shown only when the user
103 # failed to solve the puzzle
105 # validate(form_data) -> based on the form data[2], returns True if
106 # the user has solved the puzzle uccessfully
109 # Note you must ensure that the puzzle attribute and validate() method can
110 # "communicate" because they are executed in different requests. You can pass a
111 # cookie or just calculate the answer based on the article's data, for example.
113 # [1] article is an object with all the article's information:
115 # created -> datetime
116 # updated -> datetime
117 # uuid -> string (unique ID)
120 # tags -> list of strings
121 # raw_contents -> string in rst format
122 # comments -> list of Comment objects (not too relevant here)
123 # [2] form_data is an object with the form fields (all strings):
124 # author, author_error
126 # catpcha, captcha_error
130 class TitleCaptcha (object):
131 "Captcha that uses the article's title for the puzzle"
132 def __init__(self, article):
133 self.article = article
134 words = article.title.split()
135 self.nword = hash(article.title) % len(words) % 5
136 self.answer = words[self.nword]
137 self.help = 'gotcha, damn spam bot!'
141 nword = self.nword + 1
149 n = str(nword) + 'th'
150 return "enter the %s word of the article's title" % n
152 def validate(self, form_data):
153 if form_data.captcha.lower() == self.answer.lower():
157 known_captcha_methods = {
158 'title': TitleCaptcha,
161 # If the configured captcha method was a known string, replace it by the
162 # matching class; otherwise assume it's already a class and leave it
163 # alone. This way the user can either use one of our methods, or provide one
165 if captcha_method in known_captcha_methods:
166 captcha_method = known_captcha_methods[captcha_method]
171 default_main_header = """\
172 <?xml version="1.0" encoding="utf-8"?>
173 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
174 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
176 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
178 <link rel="alternate" title="%(title)s" href="%(fullurl)s/atom"
179 type="application/atom+xml" />
180 <link href="%(css_url)s" rel="stylesheet" type="text/css" />
181 <title>%(title)s</title>
186 <h1><a href="%(url)s">%(title)s</a></h1>
188 <div class="content">
191 default_main_footer = """
194 %(showyear)s: %(monthlinks)s<br/>
195 years: %(yearlinks)s<br/>
196 subscribe: <a href="%(url)s/atom">atom</a><br/>
197 views: <a href="%(url)s/">blog</a> <a href="%(url)s/list">list</a><br/>
198 tags: %(taglinks)s<br/>
205 default_article_header = """
206 <div class="article">
207 <h2><a href="%(url)s/post/%(uuid)s">%(arttitle)s</a></h2>
208 <span class="artinfo">
209 by %(author)s on <span class="date">
211 <a class="date" href="%(url)s/%(cyear)d/">%(cyear)04d</a>-\
212 <a class="date" href="%(url)s/%(cyear)d/%(cmonth)d/">%(cmonth)02d</a>-\
213 <a class="date" href="%(url)s/%(cyear)d/%(cmonth)d/%(cday)d/">%(cday)02d</a>\
214 %(chour)02d:%(cminute)02d</span>
215 (updated on <span class="date">
216 <a class="date" href="%(url)s/%(uyear)d/">%(uyear)04d</a>-\
217 <a class="date" href="%(url)s/%(uyear)d/%(umonth)d/">%(umonth)02d</a>-\
218 <a class="date" href="%(url)s/%(uyear)d/%(umonth)d/%(uday)d/">%(uday)02d</a>\
219 %(uhour)02d:%(uminute)02d)</span><br/>
220 <span class="tags">tagged %(tags)s</span> -
221 <span class="comments">with %(comments)s
222 <a href="%(url)s/post/%(uuid)s#comments">comment(s)</a></span>
225 <div class="artbody">
228 default_article_footer = """
234 default_comment_header = """
235 <div class="comment">
236 <a name="comment-%(number)d" />
237 <h3><a href="#comment-%(number)d">Comment #%(number)d</a></h3>
238 <span class="cominfo">by %(linked_author)s
239 on %(year)04d-%(month)02d-%(day)02d %(hour)02d:%(minute)02d</span>
241 <div class="combody">
244 default_comment_footer = """
250 default_comment_form = """
251 <div class="comform">
253 <h3 class="comform"><a href="#comment">Your comment</a></h3>
254 <div class="comforminner">
255 <form method="%(form_method)s" action="%(form_action)s">
256 <div class="comformauthor">
257 <label for="comformauthor">Your name %(form_author_error)s</label>
258 <input type="text" class="comformauthor" id="comformauthor"
259 name="comformauthor" value="%(form_author)s" />
261 <div class="comformlink">
262 <label for="comformlink">Your link
263 <span class="comformoptional">(optional, will be published)</span>
264 %(form_link_error)s</label>
265 <input type="text" class="comformlink" id="comformlink"
266 name="comformlink" value="%(form_link)s" />
267 <div class="comformhelp">
268 like <span class="formurlexample">http://www.example.com/</span>
269 or <span class="formurlexample">mailto:you@example.com</span>
272 <div class="comformcaptcha">
273 <label for="comformcaptcha">Your humanity proof %(form_captcha_error)s</label>
274 <input type="text" class="comformcaptcha" id="comformcaptcha"
275 name="comformcaptcha" value="%(form_captcha)s" />
276 <div class="comformhelp">%(captcha_puzzle)s</div>
278 <div class="comformbody">
279 <label for="comformbody" class="comformbody">The comment
280 %(form_body_error)s</label>
281 <textarea class="comformbody" id="comformbody" name="comformbody" rows="15"
282 cols="80">%(form_body)s</textarea>
283 <div class="comformhelp">
285 <a href="http://docutils.sourceforge.net/docs/user/rst/quickref.html">\
286 RestructuredText</a> format, please
289 <div class="comformsend">
290 <button type="submit" class="comformsend" id="comformsend" name="comformsend">
299 default_comment_error = '<span class="comformerror">(%(error)s)</span>'
305 font-family: sans-serif;
316 border-bottom: 2px solid #99F;
325 border-bottom: 1px solid #99C;
332 border-bottom: 1px solid #99C;
336 text-decoration: none;
345 text-decoration: none;
349 span.artinfo a:hover {
350 text-decoration: none;
367 text-decoration: none;
371 span.cominfo a:hover {
372 text-decoration: none;
396 border-bottom: 1px solid #99C;
401 div.comform span.comformoptional {
417 span.formurlexample {
419 background-color: #EEF;
420 font-family: monospace;
422 padding-right: 0.2em;
425 textarea.comformbody {
426 font-family: monospace;
446 background-color: #99F;
454 border-top: 2px solid #99F;
459 text-decoration: none;
462 /* Articles are enclosed in <div class="section"> */
468 border-bottom: 1px dotted #99C;
475 # It only works if the function is pure (that is, its return value depends
476 # only on its arguments), and if all the arguments are hash()eable.
478 # do not decorate if the cache is disabled
479 if cache_path is None:
482 def decorate(*args, **kwargs):
483 hashes = '-'.join( str(hash(x)) for x in args +
484 tuple(kwargs.items()) )
485 fname = 'blitiri.%s.%s.cache' % (f.__name__, hashes)
486 cache_file = os.path.join(cache_path, fname)
488 s = open(cache_file).read()
490 s = f(*args, **kwargs)
491 open(cache_file, 'w').write(s)
499 def rst_to_html(rst, secure = True):
501 'input_encoding': encoding,
502 'output_encoding': 'utf8',
505 'file_insertion_enabled': secure,
506 'raw_enabled': secure,
508 parts = publish_parts(rst, settings_overrides = settings,
509 writer_name = "html")
510 return parts['body'].encode('utf8')
512 def validate_rst(rst, secure = True):
514 rst_to_html(rst, secure)
516 except SystemMessage, e:
517 desc = e.args[0].encode('utf-8') # the error string
518 desc = desc[9:] # remove "<string>:"
519 line = int(desc[:desc.find(':')] or 0) # get the line number
520 desc = desc[desc.find(')')+2:-1] # remove (LEVEL/N)
522 desc, context = desc.split('\n', 1)
525 if desc.endswith('.'):
527 return (line, desc, context)
529 def valid_link(link):
531 scheme_re = r'^[a-zA-Z]+:'
532 mail_re = r"^[^ \t\n\r@<>()]+@[a-z0-9][a-z0-9\.\-_]*\.[a-z]+$"
533 url_re = r'^(?:[a-z0-9\-]+|[a-z0-9][a-z0-9\-\.\_]*\.[a-z]+)' \
534 r'(?::[0-9]+)?(?:/.*)?$'
536 if re.match(scheme_re, link, re.I):
537 scheme, rest = link.split(':', 1)
538 # if we have an scheme and a rest, assume the link is valid
539 # and return it as-is; otherwise (having just the scheme) is
545 # at this point, we don't have a scheme; we will try to recognize some
546 # common addresses (mail and http at the moment) and complete them to
547 # form a valid link, if we fail we will just claim it's invalid
548 if re.match(mail_re, link, re.I):
549 return 'mailto:' + link
550 elif re.match(url_re, link, re.I):
551 return 'https://' + link
556 return cgi.escape(obj, quote = True)
559 # find out our URL, needed for syndication
561 n = os.environ['SERVER_NAME']
562 # Removed port because it messes up when behind a proxy
563 #p = os.environ['SERVER_PORT']
564 s = os.environ['SCRIPT_NAME']
565 #if p == '80': p = ''
567 full_url = 'https://%s%s' % (n, s)
569 full_url = 'Not needed'
572 class Templates (object):
573 def __init__(self, tpath, db, showyear = None):
576 now = datetime.datetime.now()
588 'showyear': showyear,
589 'monthlinks': ' '.join(db.get_month_links(showyear)),
590 'yearlinks': ' '.join(db.get_year_links()),
591 'taglinks': ' '.join(db.get_tag_links()),
594 def get_template(self, page_name, default_template, extra_vars = None):
595 if extra_vars is None:
598 vars = self.vars.copy()
599 vars.update(extra_vars)
601 p = '%s/%s.html' % (self.tpath, page_name)
602 if os.path.isfile(p):
603 return open(p).read() % vars
604 return default_template % vars
606 def get_main_header(self):
607 return self.get_template('header', default_main_header)
609 def get_main_footer(self):
610 return self.get_template('footer', default_main_footer)
612 def get_article_header(self, article):
613 return self.get_template(
614 'art_header', default_article_header, article.to_vars())
616 def get_article_footer(self, article):
617 return self.get_template(
618 'art_footer', default_article_footer, article.to_vars())
620 def get_comment_header(self, comment):
621 vars = comment.to_vars()
623 vars['linked_author'] = '<a href="%s">%s</a>' \
624 % (vars['link'], vars['author'])
626 vars['linked_author'] = vars['author']
627 return self.get_template(
628 'com_header', default_comment_header, vars)
630 def get_comment_footer(self, comment):
631 return self.get_template(
632 'com_footer', default_comment_footer, comment.to_vars())
634 def get_comment_form(self, article, form_data, captcha_puzzle):
635 vars = article.to_vars()
636 vars.update(form_data.to_vars(self))
637 vars['captcha_puzzle'] = captcha_puzzle
638 return self.get_template(
639 'com_form', default_comment_form, vars)
641 def get_comment_error(self, error):
642 return self.get_template(
643 'com_error', default_comment_error, dict(error=error))
646 class CommentFormData (object):
647 def __init__(self, author = '', link = '', captcha = '', body = ''):
650 self.captcha = captcha
652 self.author_error = ''
654 self.captcha_error = ''
659 def to_vars(self, template):
660 render_error = template.get_comment_error
661 a_error = self.author_error and render_error(self.author_error)
662 l_error = self.link_error and render_error(self.link_error)
663 c_error = self.captcha_error \
664 and render_error(self.captcha_error)
665 b_error = self.body_error and render_error(self.body_error)
667 'form_author': sanitize(self.author),
668 'form_link': sanitize(self.link),
669 'form_captcha': sanitize(self.captcha),
670 'form_body': sanitize(self.body),
672 'form_author_error': a_error,
673 'form_link_error': l_error,
674 'form_captcha_error': c_error,
675 'form_body_error': b_error,
677 'form_action': self.action,
678 'form_method': self.method,
682 class Comment (object):
683 def __init__(self, article, number, created = None):
684 self.article = article
687 self.created = datetime.datetime.now()
689 self.created = created
694 self._author = author
696 self._raw_content = 'Removed comment'
711 def raw_content(self):
714 return self._raw_content
716 def set(self, author, raw_content, link = '', created = None):
718 self._author = author
719 self._raw_content = raw_content
721 self.created = created or datetime.datetime.now()
725 filename = os.path.join(comments_path, self.article.uuid,
728 raw = open(filename).readlines()
735 name, value = l.split(':', 1)
736 if name.lower() == 'author':
737 self._author = value.strip()
738 elif name.lower() == 'link':
739 self._link = value.strip()
744 self._raw_content = ''.join(raw[count + 1:])
748 filename = os.path.join(comments_path, self.article.uuid,
751 f = open(filename, 'w')
752 f.write('Author: %s\n' % self.author)
753 f.write('Link: %s\n' % self.link)
755 f.write(self.raw_content)
761 return rst_to_html(self.raw_content)
765 'number': self.number,
766 'author': sanitize(self.author),
767 'link': sanitize(self.link),
768 'date': self.created.isoformat(' '),
769 'created': self.created.isoformat(' '),
771 'year': self.created.year,
772 'month': self.created.month,
773 'day': self.created.day,
774 'hour': self.created.hour,
775 'minute': self.created.minute,
776 'second': self.created.second,
779 class CommentDB (object):
780 def __init__(self, article):
781 self.path = os.path.join(comments_path, article.uuid)
782 # if comments were enabled after the article was added, we
783 # will need to create the directory
784 if not os.path.exists(self.path):
785 os.mkdir(self.path, 0777)
790 def load(self, article):
792 f = open(os.path.join(self.path, 'db'))
797 # Each line has the following comma separated format:
798 # number, created (epoch)
799 # Empty lines are meaningful and represent removed
800 # comments (so we can preserve the comment number)
804 d = datetime.datetime.fromtimestamp(float(l[1]))
806 # Removed/invalid comment
807 self.comments.append(None)
809 self.comments.append(Comment(article, n, d))
812 old_db = os.path.join(self.path, 'db')
813 new_db = os.path.join(self.path, 'db.tmp')
814 f = open(new_db, 'w')
815 for c in self.comments:
819 s += str(c.number) + ', '
820 s += str(time.mktime(c.created.timetuple()))
824 os.rename(new_db, old_db)
827 class Article (object):
828 def __init__(self, path, created = None, updated = None):
830 self.created = created
831 self.updated = updated
832 self.uuid = "%08x" % zlib.crc32(self.path)
837 self._title = 'Removed post'
838 self._author = author
840 self._raw_content = ''
862 def raw_content(self):
865 return self._raw_content
871 return self._comments
874 def __eq__(self, other):
875 if self.path == other.path:
880 def add_comment(self, author, raw_content, link = ''):
881 c = Comment(self, len(self.comments))
882 c.set(author, raw_content, link)
883 self.comments.append(c)
888 # XXX this tweak is only needed for old DB format, where
889 # article's paths started with a slash
891 if path.startswith('/'):
893 filename = os.path.join(data_path, path)
895 raw = open(filename).readlines()
902 name, value = l.split(':', 1)
903 if name.lower() == 'title':
904 self._title = value.strip()
905 elif name.lower() == 'author':
906 self._author = value.strip()
907 elif name.lower() == 'tags':
908 ts = value.split(',')
909 ts = [t.strip() for t in ts]
915 self._raw_content = ''.join(raw[count + 1:])
917 self._comments = db.comments
921 dirname = os.path.dirname
922 post_url = '/'.join([dirname(full_url), 'posts',
924 post_dir = '/'.join([data_path, dirname(self.path)])
925 rst = self.raw_content.replace('##POST_URL##', post_url)
926 rst = rst.replace('##POST_DIR##', post_dir)
927 # TODO: make it better!
929 rst = re.sub(r'.. youtube:: (.*)', r'''.. raw:: html
931 <iframe width="560" height="315"
932 src="https://www.youtube.com/embed/\1"
933 frameborder="0" allowfullscreen></iframe>
935 rst = re.sub(r'.. vimeo:: (\w*)', r'''.. raw:: html
937 <iframe src="https://player.vimeo.com/video/\1"
938 width="500" height="281" frameborder="0"
939 webkitallowfullscreen mozallowfullscreen
940 allowfullscreen></iframe>
942 rst = re.sub(r'.. grooveshark:: (\w*)', r'''.. raw:: html
944 Grooveshark is no more! This was supposed to show \1.
946 return rst_to_html(rst)
950 'arttitle': sanitize(self.title),
951 'author': sanitize(self.author),
952 'date': self.created.isoformat(' '),
954 'tags': self.get_tags_links(),
955 'comments': len(self.comments),
957 'created': self.created.isoformat(' '),
958 'ciso': self.created.isoformat(),
959 'cyear': self.created.year,
960 'cmonth': self.created.month,
961 'cday': self.created.day,
962 'chour': self.created.hour,
963 'cminute': self.created.minute,
964 'csecond': self.created.second,
966 'updated': self.updated.isoformat(' '),
967 'uiso': self.updated.isoformat(),
968 'uyear': self.updated.year,
969 'umonth': self.updated.month,
970 'uday': self.updated.day,
971 'uhour': self.updated.hour,
972 'uminute': self.updated.minute,
973 'usecond': self.updated.second,
976 def get_tags_links(self):
978 tags = list(self.tags)
981 l.append('<a class="tag" href="%s/tag/%s">%s</a>' % \
982 (blog_url, urllib.quote(t), sanitize(t) ))
986 class ArticleDB (object):
987 def __init__(self, dbpath):
991 self.actyears = set()
992 self.actmonths = set()
996 def get_articles(self, year = 0, month = 0, day = 0, tags = None):
998 for a in self.articles:
999 if year and a.created.year != year: continue
1000 if month and a.created.month != month: continue
1001 if day and a.created.day != day: continue
1002 if tags and not tags.issubset(a.tags): continue
1008 def get_article(self, uuid):
1009 return self.uuids[uuid]
1013 f = open(self.dbpath)
1018 # Each line has the following comma separated format:
1019 # path (relative to data_path), \
1020 # created (epoch), \
1028 datetime.datetime.fromtimestamp(float(l[1])),
1029 datetime.datetime.fromtimestamp(float(l[2])))
1030 self.uuids[a.uuid] = a
1031 self.acttags.update(a.tags)
1032 self.actyears.add(a.created.year)
1033 self.actmonths.add((a.created.year, a.created.month))
1034 self.articles.append(a)
1037 f = open(self.dbpath + '.tmp', 'w')
1038 for a in self.articles:
1041 s += str(time.mktime(a.created.timetuple())) + ', '
1042 s += str(time.mktime(a.updated.timetuple())) + '\n'
1045 os.rename(self.dbpath + '.tmp', self.dbpath)
1047 def get_year_links(self):
1048 yl = list(self.actyears)
1049 yl.sort(reverse = True)
1050 return [ '<a href="%s/%d/">%d</a>' % (blog_url, y, y)
1053 def get_month_links(self, year):
1054 am = [ i[1] for i in self.actmonths if i[0] == year ]
1056 for i in range(1, 13):
1057 name = calendar.month_name[i][:3]
1059 s = '<a href="%s/%d/%d/">%s</a>' % \
1060 ( blog_url, year, i, name )
1066 def get_tag_links(self):
1067 tl = list(self.acttags)
1069 return [ '<a href="%s/tag/%s">%s</a>' % (blog_url,
1070 sanitize(t), sanitize(t)) for t in tl ]
1076 def render_comments(article, template, form_data):
1077 print '<a name="comments" />'
1078 for c in article.comments:
1081 print template.get_comment_header(c)
1083 print template.get_comment_footer(c)
1085 form_data = CommentFormData()
1086 form_data.action = blog_url + '/comment/' + article.uuid + '#comment'
1087 captcha = captcha_method(article)
1088 print template.get_comment_form(article, form_data, captcha.puzzle)
1090 def render_html(articles, db, actyear = None, show_comments = False,
1091 redirect = None, form_data = None):
1093 print 'Status: 303 See Other\r\n',
1094 print 'Location: %s\r\n' % redirect,
1095 print 'Content-type: text/html; charset=utf-8\r\n',
1097 template = Templates(templates_path, db, actyear)
1098 print template.get_main_header()
1100 print template.get_article_header(a)
1102 print template.get_article_footer(a)
1104 render_comments(a, template, form_data)
1105 print template.get_main_footer()
1107 def render_artlist(articles, db, actyear = None):
1108 template = Templates(templates_path, db, actyear)
1109 print 'Content-type: text/html; charset=utf-8\n'
1110 print template.get_main_header()
1111 print '<h2>Articles</h2>'
1113 print '<li><a href="%(url)s/post/%(uuid)s">%(title)s</a></li>' \
1114 % { 'url': blog_url,
1119 print template.get_main_footer()
1121 def render_atom(articles):
1122 if len(articles) > 0:
1123 updated = articles[0].updated.isoformat()
1125 updated = datetime.datetime.now().isoformat()
1127 print 'Content-type: application/atom+xml; charset=utf-8\n'
1128 print """<?xml version="1.0" encoding="utf-8"?>
1130 <feed xmlns="http://www.w3.org/2005/Atom">
1131 <title>%(title)s</title>
1132 <link rel="alternate" type="text/html" href="%(url)s"/>
1133 <link rel="self" type="application/atom+xml" href="%(url)s/atom"/>
1134 <id>%(url)s</id> <!-- TODO: find a better <id>, see RFC 4151 -->
1135 <updated>%(updated)sZ</updated>
1147 'contents': a.to_html(),
1151 <title>%(arttitle)s</title>
1152 <author><name>%(author)s</name></author>
1153 <link href="%(url)s/post/%(uuid)s" />
1154 <id>%(url)s/post/%(uuid)s</id>
1155 <summary>%(arttitle)s</summary>
1156 <published>%(ciso)sZ</published>
1157 <updated>%(uiso)sZ</updated>
1158 <content type="xhtml">
1159 <div xmlns="http://www.w3.org/1999/xhtml">
1169 print 'Content-type: text/css\r\n\r\n',
1172 # Get a dictionary with sort() arguments (key and reverse) by parsing the sort
1173 # specification format:
1175 # Where "-" is used to specify reverse order, while "+" is regular, ascending,
1176 # order (reverse = False). The key value is an Article's attribute name (title,
1177 # author, created, updated and uuid are accepted), and will be used as key for
1178 # sorting. If a value is omitted, that value is taken from the default, which
1179 # should be provided using the same format specification, with the difference
1180 # that all values must be provided for the default.
1181 def get_sort_args(sort_str, default):
1188 # accept ' ' as an alias of '+' since '+' is translated
1190 if s[0] in ('+', ' ', '-'):
1192 d['reverse'] = (s[0] == '-')
1195 if key in ('title', 'author', 'created', 'updated', 'uuid'):
1196 d['key'] = lambda a: getattr(a, key)
1198 args = parse(default)
1199 assert args['key'] is not None and args['reverse'] is not None
1200 args.update(parse(sort_str))
1204 import cgitb; cgitb.enable()
1206 form = cgi.FieldStorage()
1207 year = int(form.getfirst("year", 0))
1208 month = int(form.getfirst("month", 0))
1209 day = int(form.getfirst("day", 0))
1210 tags = set(form.getlist("tag"))
1211 sort_str = form.getfirst("sort", None)
1216 post_preview = False
1220 if os.environ.has_key('PATH_INFO'):
1221 path_info = os.environ['PATH_INFO']
1222 style = path_info == '/style'
1223 atom = path_info == '/atom'
1224 tag = path_info.startswith('/tag/')
1225 post = path_info.startswith('/post/')
1226 post_preview = path_info.startswith('/preview/post/')
1227 artlist = path_info.startswith('/list')
1228 comment = path_info.startswith('/comment/') and enable_comments
1229 if not style and not atom and not post and not post_preview \
1230 and not tag and not comment and not artlist:
1231 date = path_info.split('/')[1:]
1233 if len(date) > 1 and date[0]:
1235 if len(date) > 2 and date[1]:
1236 month = int(date[1])
1237 if len(date) > 3 and date[2]:
1242 uuid = path_info.replace('/post/', '')
1243 uuid = uuid.replace('/', '')
1245 art_path = path_info.replace('/preview/post/', '')
1246 art_path = urllib.unquote_plus(art_path)
1247 art_path = os.path.join(data_path, art_path)
1248 art_path = os.path.realpath(art_path)
1249 common = os.path.commonprefix([data_path, art_path])
1250 if common != data_path: # something nasty happened
1251 post_preview = False
1252 art_path = art_path[len(data_path)+1:]
1254 t = path_info.replace('/tag/', '')
1255 t = t.replace('/', '')
1256 t = urllib.unquote_plus(t)
1259 uuid = path_info.replace('/comment/', '')
1260 uuid = uuid.replace('#comment', '')
1261 uuid = uuid.replace('/', '')
1262 author = form.getfirst('comformauthor', '')
1263 link = form.getfirst('comformlink', '')
1264 captcha = form.getfirst('comformcaptcha', '')
1265 body = form.getfirst('comformbody', '')
1267 db = ArticleDB(os.path.join(data_path, 'db'))
1269 articles = db.get_articles(tags = tags)
1270 articles.sort(**get_sort_args(sort_str, '-created'))
1271 render_atom(articles[:index_articles])
1275 render_html( [db.get_article(uuid)], db, year, enable_comments )
1277 article = Article(art_path, datetime.datetime.now(),
1278 datetime.datetime.now())
1279 render_html( [article], db, year, enable_comments )
1281 articles = db.get_articles()
1282 articles.sort(**get_sort_args(sort_str, '+title'))
1283 render_artlist(articles, db)
1284 elif comment and enable_comments:
1285 form_data = CommentFormData(author.strip().replace('\n', ' '),
1286 link.strip().replace('\n', ' '), captcha,
1287 body.replace('\r', ''))
1288 article = db.get_article(uuid)
1289 captcha = captcha_method(article)
1292 if not form_data.author:
1293 form_data.author_error = 'please, enter your name'
1296 link = valid_link(form_data.link)
1298 form_data.link = link
1300 form_data.link_error = 'please, enter a ' \
1303 if not captcha.validate(form_data):
1304 form_data.captcha_error = captcha.help
1306 if not form_data.body:
1307 form_data.body_error = 'please, write a comment'
1310 error = validate_rst(form_data.body, secure=False)
1311 if error is not None:
1312 (line, desc, ctx) = error
1315 at = ' at line %d' % line
1316 form_data.body_error = 'error%s: %s' \
1320 c = article.add_comment(form_data.author,
1321 form_data.body, form_data.link)
1323 cdb = CommentDB(article)
1324 cdb.comments = article.comments
1326 redirect = blog_url + '/post/' + uuid + '#comment-' \
1328 render_html( [article], db, year, enable_comments, redirect,
1331 articles = db.get_articles(year, month, day, tags)
1332 articles.sort(**get_sort_args(sort_str, '-created'))
1333 if not year and not month and not day and not tags:
1334 articles = articles[:index_articles]
1335 render_html(articles, db, year)
1339 print 'Usage: %s {add|rm|update} article_path' % sys.argv[0]
1342 if len(sys.argv) != 3:
1347 art_path = os.path.realpath(sys.argv[2])
1349 if os.path.commonprefix([data_path, art_path]) != data_path:
1350 print "Error: article (%s) must be inside data_path (%s)" % \
1351 (art_path, data_path)
1353 art_path = art_path[len(data_path)+1:]
1355 db_filename = os.path.join(data_path, 'db')
1356 if not os.path.isfile(db_filename):
1357 open(db_filename, 'w').write('')
1358 db = ArticleDB(db_filename)
1361 article = Article(art_path, datetime.datetime.now(),
1362 datetime.datetime.now())
1363 for a in db.articles:
1365 print 'Error: article already exists'
1367 db.articles.append(article)
1370 comment_dir = os.path.join(comments_path, article.uuid)
1372 os.mkdir(comment_dir, 0775)
1374 if e.errno != errno.EEXIST:
1375 print "Error: can't create comments " \
1376 "directory %s (%s)" \
1378 # otherwise is probably a removed and re-added
1381 article = Article(art_path)
1382 for a in db.articles:
1386 print "Error: no such article"
1389 r = raw_input('Remove comments [y/N]? ')
1390 db.articles.remove(a)
1392 if enable_comments and r.lower() == 'y':
1393 shutil.rmtree(os.path.join(comments_path, a.uuid))
1394 elif cmd == 'update':
1395 article = Article(art_path)
1396 for a in db.articles:
1400 print "Error: no such article"
1402 a.updated = datetime.datetime.now()
1411 if os.environ.has_key('GATEWAY_INTERFACE'):
1412 i = datetime.datetime.now()
1414 f = datetime.datetime.now()
1415 print '<!-- render time: %s -->' % (f-i)
1417 sys.exit(handle_cmd())