#!/usr/bin/python # This program is free software. It comes without any warranty, to # the extent permitted by applicable law. You can redistribute it # and/or modify it under the terms of the Do What The Fuck You Want # To Public License, Version 2, as published by Sam Hocevar. See # http://sam.zoy.org/wtfpl/COPYING for more details. # Author: Stefan Ritter # Description: A simple blogging software import cgi, os, time, glob, re, md5, sys, random import ConfigParser def generate_uuid(string): string_md5sum = md5.new(string).hexdigest() string_md5sum_1 = string_md5sum[0:8] string_md5sum_2 = string_md5sum[8:12] string_md5sum_3 = string_md5sum[12:16] string_md5sum_4 = string_md5sum[16:20] string_md5sum_5 = string_md5sum[20:32] string = string_md5sum_1 + '-' + string_md5sum_2 + '-' + string_md5sum_3 + '-' + string_md5sum_4 + '-' + string_md5sum_5 return string def errorpage(string): print 'Content-type: text/html\n' print '' print '' print '' print ' Error!' print '' print '' print ' ' + string + ' is not set in configuration, please check your installation!' print '' print '' sys.exit() def document_header(string): if string == "xhtml-transitional": print 'Content-type: text/html\n' print '' print '' if string == "xhtml-strict": print 'Content-type: text/html\n' print '' print '' if string == "atom": print 'Content-type: application/atom+xml\n' print '' print '' configuration = ConfigParser.ConfigParser() configuration.read('configuration') try: blog_title = configuration.get('personal', 'blog_title') except: errorpage("blog_title") try: blog_url = configuration.get('personal', 'blog_url') except: errorpage("blog_url") try: keywords = configuration.get('personal', 'keywords') except: errorpage("keywords") try: entries_dir = configuration.get('personal', 'entries_dir') except: errorpage("entries_dir") try: entries_suffix = configuration.get('personal', 'entries_suffix') except: errorpage("entries_suffix") try: staticpages_dir = configuration.get('personal', 'staticpages_dir') except: errorpage("staticpages_dir") try: style = configuration.get('look', 'style') except: errorpage("style") try: entries_per_page = configuration.getint('look', 'entries_per_page') except: errorpage("entries_per_page") try: monthlist = configuration.get('look', 'monthlist') except: errorpage("monthlist") try: staticpages = configuration.get('look', 'staticpages') except: errorpage("staticpages") try: linklist = configuration.get('look', 'linklist') except: errorpage("linklist") try: permalinks = configuration.get('look', 'permalinks') except: errorpage("permalinks") try: comments = configuration.get('look', 'comments') except: errorpage("comments") try: newest_first = configuration.get('look', 'newest_first') except: errorpage("newest_first") # Read POST Variables action = cgi.FieldStorage() month_display = action.getvalue('m') post_display = action.getvalue('p') static_display = action.getvalue('s') allentries_display = action.getvalue('a') feed_display = action.getvalue('feed') if not month_display: month_display = "" if not post_display: post_display = "" if not static_display: static_display = "" if not allentries_display: allentries_display = "" if not feed_display: feed_display = "" # Commentstuff ctitle = action.getvalue('ctitle') cname = action.getvalue('cname') ctext = action.getvalue('ctext') cquiz = action.getvalue('cquiz') cquizv = action.getvalue('cquizv') if not ctitle: ctitle = "" if not cname: cname = "" if not ctext: ctext = "" if not cquiz: cquiz = "" if not cquizv: cquizv = "" # Comment to commit? if cname and ctext and ctitle: # Prevent XSS hacks cname = cname.replace("<", "<") \ .replace(">", ">") \ .replace("\"", """) ctext = ctext.replace("<", "<") \ .replace(">", ">") \ .replace("\"", """) # Add comment if not cquiz == cquizv: errorpage("Brainmode") else: comments_file = glob.glob(entries_dir + ctitle + '.comments') if not comments_file: content = open(entries_dir + ctitle + '.comments', "w") content.close() comments_file = glob.glob(entries_dir + ctitle + '.comments') content = open(comments_file[0], "a+") content.write("-." + cname + "\n") content.write("+." + time.asctime() + "\n") ctext = ctext.split("\n") for line in ctext: content.write("." + line + "\n") content.close() # Read entries and store their title and timestamp entries = [] entries_list = glob.glob(entries_dir + '*.' + entries_suffix) for entry in entries_list: timestamp = os.stat(entry) timestamp = time.localtime(timestamp[8]) entry = timestamp, entry entries.append(entry) if newest_first: entries.sort(reverse=True) else: entries.sort() # Generate atom feed if feed_display == "atom": title = str(entries[0][1]).replace('entries/', '', 1).replace('.' + entries_suffix, '') date = entries[0][0] blog_title_md5sum = generate_uuid(blog_title) title_md5sum = generate_uuid(title) # Atom need a 2byte string month = str(date[1]) day = str(date[2]) hour = str(date[3]) min = str(date[4]) sec = str(date[5]) if len(str(date[1])) == 1: month = '0' + str(date[1]) if len(str(date[2])) == 1: day = '0' + str(date[2]) if len(str(date[3])) == 1: hour = '0' + str(date[3]) if len(str(date[4])) == 1: min = '0' + str(date[4]) if len(str(date[5])) == 1: sec = '0' + str(date[5]) document_header("atom") print '' print ' ' print ' ' + blog_title + '' print ' ' print ' ' + blog_title + '' print ' urn:uuid:' + blog_title_md5sum + '' print ' ' + str(date[0]) + '-' + month + '-' + day + 'T' + hour + ':' + min + ':' + sec + 'Z' print '' print ' ' print ' ' + title + '' print ' ' print ' urn:uuid:' + title_md5sum + '' print ' ' + str(date[0]) + '-' + month + '-' + day + 'T' + hour + ':' + min + ':' + sec + 'Z' print ' ' print '' # Generate regular page else: document_header("xhtml-transitional") print ' ' print ' ' + blog_title + '' print ' ' print ' ' print ' ' print ' ' print ' ' print ' ' print '
' + blog_title + '
' print '
' print ' rss' print ' atom' print '
' print '
' print '
' if static_display != "": # Show Staticpage content = open(staticpages_dir + static_display, "r") print '
' + re.sub('\d+?-', '', static_display) + '
' print '

' for line in content: print ' ' + line.strip() + '
' print '

' content.close() else: # Show regular entry entry_counter = 0 for entry in entries: date = time.strftime("%c", entry[0]) date_to_compare = time.strftime("%m%Y", entry[0]) # Needed for permalinks entry = entry[1] title = entry.replace('entries/', '', 1) title = title.replace('.' + entries_suffix, '') if month_display == date_to_compare or not month_display: if post_display == title or not post_display: if allentries_display == "1" or entry_counter < entries_per_page: content = open(entry, "r") if permalinks: print ' ' else: print '
' + title + ' (' + date + ')
' print '
' for line in content: print ' ' + line.strip() + '
' # Comments are shown when post_display and comments_file comments_file = glob.glob(entries_dir + title + '.comments') if post_display: if comments_file: print '

' comments_file = glob.glob(entries_dir + title + '.comments') comments_content = open(comments_file[0], "r") for line in comments_content: if line.split(".", 1)[0] == "-": print '
' print ' ' + line.split(".", 1)[1].strip() + ' wrote at ' elif line.split(".", 1)[0] == "+": print ' ' + line.split(".", 1)[1].strip() + ':
' else: line = line.split(".", 1)[1] print '   ' + line.strip() + '
' comments_content.close() # Form for adding comments random_int_a = random.randint(1,9) random_int_b = random.randint(1,9) cquizv = random_int_a + random_int_b print '


' print '
' print ' ' print ' ' print ' ' print '
' print '
' print '
' print '
' if comments == "True": comments_file = glob.glob(entries_dir + title + '.comments') if not comments_file and not post_display: print '
' print ' ' print '
' elif comments_file and not post_display: comments_content = open(comments_file[0], "r") comments_counter = 0 for line in comments_content: if line.split(".", 1)[0] == "-": comments_counter += 1 print ' ' comments_content.close() print '
' print '

' content.close() entry_counter += 1 if not month_display and not post_display and not allentries_display and entry_counter == entries_per_page: # Display pagelist print '
View all entries...
' print '
' print ' ' print '' # vim: set tw=0 ts=4: