-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwriter.py
108 lines (86 loc) · 4.41 KB
/
writer.py
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
# -*- coding:utf-8 -*-
# Copyright (c) 2009-2014 - Simon Conseil
# Copyright (c) 2013 - Christophe-Marie Duquesne
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to
# deal in the Software without restriction, including without limitation the
# rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
# sell copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
# Copyright (c) 2014 - Scott Boone
# This is a copy of Sigal's Writer module with minor changes to the names of
# settings keys for siglican.
from __future__ import absolute_import
import codecs
import jinja2
import logging
import os
import sys
from distutils.dir_util import copy_tree
from jinja2 import Environment, FileSystemLoader
from jinja2.exceptions import TemplateNotFound
from .pkgmeta import __url__ as sigal_link
from .utils import url_from_path
class Writer(object):
"""Generates html pages for albums and copies static theme files to output."""
def __init__(self, settings, theme, index_title=''):
self.settings = settings
self.theme = theme
self.index_title = index_title
self.output_dir = settings['SIGLICAN_DESTINATION']
self.logger = logging.getLogger(__name__)
self.logger.debug("siglican theme: %s", theme)
# setup jinja env
env_options = {'trim_blocks': True}
try:
if tuple(int(x) for x in jinja2.__version__.split('.')) >= (2, 7):
env_options['lstrip_blocks'] = True
except ValueError:
pass
# note: it's impossible to add templates to an existing jinja env,
# so we create a custom environment here that includes templates from
# both the Pelican theme and the siglican theme. it's also ok for the
# "album.html" template to live in the Pelican theme.
# instantiate environment with pelican and siglican templates
theme_paths = [ os.path.join(self.theme, 'templates'),
os.path.join(self.settings['THEME'], 'templates') ]
env = Environment(loader=FileSystemLoader(theme_paths),
**env_options)
try:
self.template = env.get_template('album.html')
except TemplateNotFound:
self.logger.error('siglican: album.html not found in templates')
sys.exit(1)
# copy the theme static files in the output dir
self.theme_path = os.path.join(settings['OUTPUT_PATH'],
self.output_dir,'static')
copy_tree(os.path.join(self.theme, 'static'), self.theme_path)
def generate_context(self, album):
"""Generate the context dict for the given path."""
albumdict = {
'SIGLICAN_ALBUM': album,
'SIGLICAN_INDEX_TITLE': self.index_title,
'SIGLICAN_LINK': sigal_link,
'SIGLICAN_THEME_NAME': os.path.basename(self.theme),
'SIGLICAN_THEME_URL': url_from_path(
os.path.relpath(self.theme_path,
album.dst_path))
}
albumdict.update(self.settings)
return albumdict
def write(self, album):
"""Generate the HTML page and save it."""
page = self.template.render(**self.generate_context(album))
output_file = os.path.join(album.dst_path, album.output_file)
self.logger.debug("siglican: write output_file: %s",output_file)
with codecs.open(output_file, 'w', 'utf-8') as f:
f.write(page)