summaryrefslogtreecommitdiff
path: root/site_builder/blogbuilder.py
blob: ebe77c018351c5f455e6c25a01bc122e7eebc603 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# vim: set filencoding=utf8
"""
Blog Builder

@author: Mike Crute (mcrute@ag.com)
@organization: American Greetings Interactive
@date: June 04, 2010
"""

import os
import operator
from datetime import datetime
from collections import defaultdict
from site_builder import get_template, get_output_name
from blog import load_post_index
from feeds import Atom1Feed


def build_feed(output_dir, post_index):
    page_name = os.path.join(output_dir, 'feed.atom')
    feed = Atom1Feed(post_index, "The Random Thoughts of a Programmer",
                     "http://mike.crute.org/blog/feed",
                     post_index[0].post_date,
                     "http://mike.crute.org/blog")

    open(page_name, 'w').write(feed.get_feed())


def build_tags(output_dir, post_index):
    tag_index = defaultdict(list)

    template = get_template('blog_tags.html')
    page_name = os.path.join(output_dir, 'tags.html')

    for post in post_index:
        for tag in post.tags:
            tag_index[tag].append(post)

    tag_index = sorted(tag_index.items())
    open(page_name, 'w').write(template.render(posts=tag_index,
        build_date=datetime.now().strftime("%B %d, %Y")))


def build_archive(output_dir, post_index):
    date_index = defaultdict(list)

    template = get_template('blog_archive.html')
    page_name = os.path.join(output_dir, 'archive.html')

    for post in post_index:
        date_index[post.post_date.year].append(post)

    date_index = sorted(date_index.items(), reverse=True)
    open(page_name, 'w').write(template.render(posts=date_index,
        build_date=datetime.now().strftime("%B %d, %Y")))


def build_index(output_dir, post_index):
    template = get_template('blog_index.html')
    page_name = os.path.join(output_dir, 'index.html')

    open(page_name, 'w').write(template.render(posts=post_index[:3],
        build_date=datetime.now().strftime("%B %d, %Y")))


def build_blog(base_dir, output_dir):
    post_index = load_post_index(base_dir)
    post_index.sort(key=operator.attrgetter('post_date'), reverse=True)

    try:
        os.makedirs(output_dir)
    except OSError:
        pass # directory already exists 

    for post in post_index:
        template = get_template('blog_post.html')

        out_filename = os.path.join(output_dir, post.filename)
        out_filename = out_filename[:-len('rst')] + 'html'

        print "BUILDING BLOG: ", out_filename

        open(out_filename, 'w').write(template.render(post=post))

    build_index(output_dir, post_index)
    build_archive(output_dir, post_index)
    build_feed(output_dir, post_index)
    build_tags(output_dir, post_index)