-
Notifications
You must be signed in to change notification settings - Fork 51
/
render_utils.py
262 lines (198 loc) · 6.7 KB
/
render_utils.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
#!/usr/bin/env python
import codecs
from datetime import datetime
import imp
import json
import time
import urllib
import subprocess
import sys
from flask import Markup, g, render_template, request
from slimit import minify
from smartypants import smartypants
from jinja2 import contextfunction, Template
import app_config
import copytext
class BetterJSONEncoder(json.JSONEncoder):
"""
A JSON encoder that intelligently handles datetimes.
"""
def default(self, obj):
if isinstance(obj, datetime):
encoded_object = obj.isoformat()
else:
encoded_object = json.JSONEncoder.default(self, obj)
return encoded_object
class Includer(object):
"""
Base class for Javascript and CSS psuedo-template-tags.
See `make_context` for an explanation of `asset_depth`.
"""
def __init__(self, asset_depth=0, root_path='www'):
self.includes = []
self.tag_string = None
self.asset_depth = asset_depth
self.root_path = root_path
def push(self, path):
self.includes.append(path)
return ''
def _compress(self):
raise NotImplementedError()
def _relativize_path(self, path):
relative_path = path
depth = len(request.path.split('/')) - (2 + self.asset_depth)
while depth > 0:
relative_path = '../%s' % relative_path
depth -= 1
return relative_path
def render(self, path):
if getattr(g, 'compile_includes', False):
if path in g.compiled_includes:
timestamp_path = g.compiled_includes[path]
else:
# Add a querystring to the rendered filename to prevent caching
timestamp_path = '%s?%i' % (path, int(time.time()))
out_path = '%s/%s' % (self.root_path, path)
if path not in g.compiled_includes:
print 'Rendering %s' % out_path
with codecs.open(out_path, 'w', encoding='utf-8') as f:
f.write(self._compress())
# See "fab render"
g.compiled_includes[path] = timestamp_path
markup = Markup(self.tag_string % self._relativize_path(timestamp_path))
else:
response = ','.join(self.includes)
response = '\n'.join([
self.tag_string % self._relativize_path(src) for src in self.includes
])
markup = Markup(response)
del self.includes[:]
return markup
class JavascriptIncluder(Includer):
"""
Psuedo-template tag that handles collecting Javascript and serving appropriate clean or compressed versions.
"""
def __init__(self, *args, **kwargs):
Includer.__init__(self, *args, **kwargs)
self.tag_string = '<script type="text/javascript" src="%s"></script>'
def _compress(self):
output = []
src_paths = []
for src in self.includes:
src_paths.append('%s/%s' % (self.root_path, src))
with codecs.open('%s/%s' % (self.root_path, src), encoding='utf-8') as f:
if not src.endswith('.min.js'):
print '- compressing %s' % src
output.append(minify(f.read()))
else:
print '- appending already compressed %s' % src
output.append(f.read())
context = make_context()
context['paths'] = src_paths
return '\n'.join(output)
class CSSIncluder(Includer):
"""
Psuedo-template tag that handles collecting CSS and serving appropriate clean or compressed versions.
"""
def __init__(self, *args, **kwargs):
Includer.__init__(self, *args, **kwargs)
self.tag_string = '<link rel="stylesheet" type="text/css" href="%s" />'
def _compress(self):
output = []
src_paths = []
for src in self.includes:
css_path = '%s/%s' % (self.root_path, src)
src_paths.append(css_path)
try:
compressed_src = subprocess.check_output(["node_modules/less/bin/lessc", "-x", css_path])
output.append(compressed_src)
except:
print 'It looks like "lessc" isn\'t installed. Try running: "npm install"'
raise
context = make_context()
context['paths'] = src_paths
return '\n'.join(output)
def load_graphic_config(graphic_path, base_paths=[]):
"""
Load the Python configuration module for a graphic.
"""
for path in base_paths:
sys.path.insert(0, path)
sys.path.insert(0, graphic_path)
paths = [graphic_path] + base_paths
try:
f, path, desc = imp.find_module('graphic_config', paths)
graphic_config = imp.load_module('graphic_config', f, path, desc)
f.close()
except ImportError:
class EmptyConfig:
pass
graphic_config = EmptyConfig()
sys.path.pop(0)
for path in base_paths:
sys.path.pop(0)
return graphic_config
def flatten_app_config():
"""
Returns a copy of app_config containing only
configuration variables.
"""
config = {}
# Only all-caps [constant] vars get included
for k, v in app_config.__dict__.items():
if k.upper() == k:
config[k] = v
return config
def make_context(asset_depth=0, root_path='www'):
"""
Create a base-context for rendering views.
Includes app_config and JS/CSS includers.
`asset_depth` indicates how far into the url hierarchy
the assets are hosted. If 0, then they are at the root.
If 1 then at /foo/, etc.
"""
context = flatten_app_config()
context['JS'] = JavascriptIncluder(
asset_depth=asset_depth,
root_path=root_path
)
context['CSS'] = CSSIncluder(
asset_depth=asset_depth,
root_path=root_path
)
return context
def urlencode_filter(s):
"""
Filter to urlencode strings.
"""
if type(s) == 'Markup':
s = s.unescape()
# Evaulate COPY elements
if type(s) is not unicode:
s = unicode(s)
s = s.encode('utf8')
s = urllib.quote_plus(s)
return Markup(s)
def smarty_filter(s):
"""
Filter to smartypants strings.
"""
if type(s) == 'Markup':
s = s.unescape()
# Evaulate COPY elements
if type(s) is not unicode:
s = unicode(s)
s = s.encode('utf-8')
s = smartypants(s)
try:
return Markup(s)
except:
print 'This string failed to encode: %s' % s
return Markup(s)
@contextfunction
def render_with_context(context, text):
"""
Render a template within a template!
"""
template = Template(text.__unicode__())
return template.render(**context)