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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
|
# -*- coding: utf-8 -*-
# Copyright © 2012-2016 Roberto Alsina and others.
# 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.
"""Support for Hugo-style shortcodes."""
from __future__ import unicode_literals
from .utils import LOGGER
import sys
# Constants
_TEXT = 1
_SHORTCODE_START = 2
_SHORTCODE_END = 3
class ParsingError(Exception):
"""Used for forwarding parsing error messages to apply_shortcodes."""
pass
def _format_position(data, pos):
"""Return position formatted as line/column.
This is used for prettier error messages.
"""
line = 0
col = 0
llb = '' # last line break
for c in data[:pos]:
if c == '\r' or c == '\n':
if llb and c != llb:
llb = ''
else:
line += 1
col = 0
llb = c
else:
col += 1
llb = ''
return "line {0}, column {1}".format(line + 1, col + 1)
def _skip_whitespace(data, pos, must_be_nontrivial=False):
"""Return first position after whitespace.
If must_be_nontrivial is set to True, raises ParsingError
if no whitespace is found.
"""
if must_be_nontrivial:
if pos == len(data) or not data[pos].isspace():
raise ParsingError("Expecting whitespace at {0}!".format(_format_position(data, pos)))
while pos < len(data):
if not data[pos].isspace():
break
pos += 1
return pos
def _skip_nonwhitespace(data, pos):
"""Return first position not before pos which contains a non-whitespace character."""
while pos < len(data):
if data[pos].isspace():
break
pos += 1
return pos
def _parse_quoted_string(data, start):
"""Parse a quoted string starting at position start in data.
Returns the position after the string followed by the string itself.
"""
value = ''
qc = data[start]
pos = start + 1
while pos < len(data):
char = data[pos]
if char == '\\':
if pos + 1 < len(data):
value += data[pos + 1]
pos += 2
else:
raise ParsingError("Unexpected end of data while escaping ({0})".format(_format_position(data, pos)))
elif (char == "'" or char == '"') and char == qc:
return pos + 1, value
else:
value += char
pos += 1
raise ParsingError("Unexpected end of unquoted string (started at {0})!".format(_format_position(data, start)))
def _parse_unquoted_string(data, start, stop_at_equals):
"""Parse an unquoted string starting at position start in data.
Returns the position after the string followed by the string itself.
In case stop_at_equals is set to True, an equal sign will terminate
the string.
"""
value = ''
pos = start
while pos < len(data):
char = data[pos]
if char == '\\':
if pos + 1 < len(data):
value += data[pos + 1]
pos += 2
else:
raise ParsingError("Unexpected end of data while escaping ({0})".format(_format_position(data, pos)))
elif char.isspace():
break
elif char == '=' and stop_at_equals:
break
elif char == "'" or char == '"':
raise ParsingError("Unexpected quotation mark in unquoted string ({0})".format(_format_position(data, pos)))
else:
value += char
pos += 1
return pos, value
def _parse_string(data, start, stop_at_equals=False, must_have_content=False):
"""Parse a string starting at position start in data.
Returns the position after the string, followed by the string itself, and
followed by a flog indicating whether the following character is an equals
sign (only set if stop_at_equals is True).
If must_have_content is set to True, no empty unquoted strings are accepted.
"""
if start == len(data):
raise ParsingError("Expecting string, but found end of input!")
char = data[start]
if char == '"' or char == "'":
end, value = _parse_quoted_string(data, start)
has_content = True
else:
end, value = _parse_unquoted_string(data, start, stop_at_equals)
has_content = len(value) > 0
if must_have_content and not has_content:
raise ParsingError("String starting at {0} must be non-empty!".format(_format_position(data, start)))
next_is_equals = False
if stop_at_equals and end + 1 < len(data):
next_is_equals = (data[end] == '=')
return end, value, next_is_equals
def _parse_shortcode_args(data, start, shortcode_name, start_pos):
"""When pointed to after a shortcode's name in a shortcode tag, parses the shortcode's arguments until '%}}'.
Returns the position after '%}}', followed by a tuple (args, kw).
name and start_pos are only used for formatting error messages.
"""
args = []
kwargs = {}
pos = start
while True:
# Skip whitespaces
try:
pos = _skip_whitespace(data, pos, must_be_nontrivial=True)
except ParsingError:
if not args and not kwargs:
raise ParsingError("Shortcode '{0}' starting at {1} is not terminated correctly with '%}}}}'!".format(shortcode_name, _format_position(data, start_pos)))
else:
raise ParsingError("Syntax error in shortcode '{0}' at {1}: expecting whitespace!".format(shortcode_name, _format_position(data, pos)))
if pos == len(data):
break
# Check for end of shortcode
if pos + 3 <= len(data) and data[pos:pos + 3] == '%}}':
return pos + 3, (args, kwargs)
# Read name
pos, name, next_is_equals = _parse_string(data, pos, stop_at_equals=True, must_have_content=True)
if next_is_equals:
# Read value
pos, value, _ = _parse_string(data, pos + 1, stop_at_equals=False, must_have_content=False)
# Store keyword argument
kwargs[name] = value
else:
# Store positional argument
args.append(name)
raise ParsingError("Shortcode '{0}' starting at {1} is not terminated correctly with '%}}}}'!".format(shortcode_name, _format_position(data, start_pos)))
def _split_shortcodes(data):
"""Given input data, splits it into a sequence of texts, shortcode starts and shortcode ends.
Returns a list of tuples of the following forms:
1. (_TEXT, text)
2. (_SHORTCODE_START, text, start, name, args)
3. (_SHORTCODE_END, text, start, name)
Here, text is the raw text represented by the token; start is the starting position in data
of the token; name is the name of the shortcode; and args is a tuple (args, kw) as returned
by _parse_shortcode_args.
"""
pos = 0
result = []
while pos < len(data):
# Search for shortcode start
start = data.find('{{%', pos)
if start < 0:
result.append((_TEXT, data[pos:]))
break
result.append((_TEXT, data[pos:start]))
# Extract name
name_start = _skip_whitespace(data, start + 3)
name_end = _skip_nonwhitespace(data, name_start)
name = data[name_start:name_end]
if not name:
raise ParsingError("Syntax error: '{{{{%' must be followed by shortcode name ({0})!".format(_format_position(data, start)))
# Finish shortcode
if name[0] == '/':
# This is a closing shortcode
name = name[1:]
end_start = _skip_whitespace(data, name_end) # start of '%}}'
pos = end_start + 3
# Must be followed by '%}}'
if pos > len(data) or data[end_start:pos] != '%}}':
raise ParsingError("Syntax error: '{{{{% /{0}' must be followed by ' %}}}}' ({1})!".format(name, _format_position(data, end_start)))
result.append((_SHORTCODE_END, data[start:pos], start, name))
elif name == '%}}':
raise ParsingError("Syntax error: '{{{{%' must be followed by shortcode name ({0})!".format(_format_position(data, start)))
else:
# This is an opening shortcode
pos, args = _parse_shortcode_args(data, name_end, shortcode_name=name, start_pos=start)
result.append((_SHORTCODE_START, data[start:pos], start, name, args))
return result
# FIXME: in v8, get rid of with_dependencies
def apply_shortcodes(data, registry, site=None, filename=None, raise_exceptions=False, lang=None, with_dependencies=False, extra_context={}):
"""Apply Hugo-style shortcodes on data.
{{% name parameters %}} will end up calling the registered "name" function with the given parameters.
{{% name parameters %}} something {{% /name %}} will call name with the parameters and
one extra "data" parameter containing " something ".
If raise_exceptions is set to True, instead of printing error messages and terminating, errors are
passed on as exceptions to the caller.
The site parameter is passed with the same name to the shortcodes so they can access Nikola state.
>>> print(apply_shortcodes('==> {{% foo bar=baz %}} <==', {'foo': lambda *a, **k: k['bar']}))
==> baz <==
>>> print(apply_shortcodes('==> {{% foo bar=baz %}}some data{{% /foo %}} <==', {'foo': lambda *a, **k: k['bar']+k['data']}))
==> bazsome data <==
"""
empty_string = data[:0] # same string type as data; to make Python 2 happy
try:
# Split input data into text, shortcodes and shortcode endings
sc_data = _split_shortcodes(data)
# Now process data
result = []
dependencies = []
pos = 0
while pos < len(sc_data):
current = sc_data[pos]
if current[0] == _TEXT:
result.append(current[1])
pos += 1
elif current[0] == _SHORTCODE_END:
raise ParsingError("Found shortcode ending '{{{{% /{0} %}}}}' which isn't closing a started shortcode ({1})!".format(current[3], _format_position(data, current[2])))
elif current[0] == _SHORTCODE_START:
name = current[3]
# Check if we can find corresponding ending
found = None
for p in range(pos + 1, len(sc_data)):
if sc_data[p][0] == _SHORTCODE_END and sc_data[p][3] == name:
found = p
break
if found:
# Found ending. Extract data argument:
data_arg = []
for p in range(pos + 1, found):
data_arg.append(sc_data[p][1])
data_arg = empty_string.join(data_arg)
pos = found + 1
else:
# Single shortcode
pos += 1
data_arg = ''
args, kw = current[4]
kw['site'] = site
kw['data'] = data_arg
kw['lang'] = lang
kw.update(extra_context)
if name in registry:
f = registry[name]
if getattr(f, 'nikola_shortcode_pass_filename', None):
kw['filename'] = filename
res = f(*args, **kw)
if not isinstance(res, tuple): # For backards compatibility
res = (res, [])
else:
LOGGER.error('Unknown shortcode {0} (started at {1})', name, _format_position(data, current[2]))
res = ('', [])
result.append(res[0])
dependencies += res[1]
if with_dependencies:
return empty_string.join(result), dependencies
return empty_string.join(result)
except ParsingError as e:
if raise_exceptions:
# Throw up
raise e
if filename:
LOGGER.error("Shortcode error in file {0}: {1}".format(filename, e))
else:
LOGGER.error("Shortcode error: {0}".format(e))
sys.exit(1)
|