A Python parser for MediaWiki wikicode https://mwparserfromhell.readthedocs.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

957 lines
36 KiB

  1. # -*- coding: utf-8 -*-
  2. #
  3. # Copyright (C) 2012-2013 Ben Kurtovic <ben.kurtovic@verizon.net>
  4. #
  5. # Permission is hereby granted, free of charge, to any person obtaining a copy
  6. # of this software and associated documentation files (the "Software"), to deal
  7. # in the Software without restriction, including without limitation the rights
  8. # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  9. # copies of the Software, and to permit persons to whom the Software is
  10. # furnished to do so, subject to the following conditions:
  11. #
  12. # The above copyright notice and this permission notice shall be included in
  13. # all copies or substantial portions of the Software.
  14. #
  15. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  18. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  20. # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  21. # SOFTWARE.
  22. from __future__ import unicode_literals
  23. from math import log
  24. import re
  25. from . import contexts, tokens
  26. from ..compat import htmlentities
  27. from ..tag_defs import get_html_tag, is_parsable, is_single, is_single_only
  28. __all__ = ["Tokenizer"]
  29. class BadRoute(Exception):
  30. """Raised internally when the current tokenization route is invalid."""
  31. def __init__(self, context=0):
  32. self.context = context
  33. class _TagOpenData(object):
  34. """Stores data about an HTML open tag, like ``<ref name="foo">``."""
  35. CX_NAME = 1 << 0
  36. CX_ATTR_READY = 1 << 1
  37. CX_ATTR_NAME = 1 << 2
  38. CX_ATTR_VALUE = 1 << 3
  39. CX_QUOTED = 1 << 4
  40. CX_NOTE_SPACE = 1 << 5
  41. CX_NOTE_EQUALS = 1 << 6
  42. CX_NOTE_QUOTE = 1 << 7
  43. def __init__(self):
  44. self.context = self.CX_NAME
  45. self.padding_buffer = {"first": "", "before_eq": "", "after_eq": ""}
  46. self.reset = 0
  47. class Tokenizer(object):
  48. """Creates a list of tokens from a string of wikicode."""
  49. USES_C = False
  50. START = object()
  51. END = object()
  52. MARKERS = ["{", "}", "[", "]", "<", ">", "|", "=", "&", "'", "#", "*", ";",
  53. ":", "/", "-", "\n", END]
  54. MAX_DEPTH = 40
  55. MAX_CYCLES = 100000
  56. regex = re.compile(r"([{}\[\]<>|=&'#*;:/\\\"\-!\n])", flags=re.IGNORECASE)
  57. tag_splitter = re.compile(r"([\s\"\\]+)")
  58. def __init__(self):
  59. self._text = None
  60. self._head = 0
  61. self._stacks = []
  62. self._global = 0
  63. self._depth = 0
  64. self._cycles = 0
  65. @property
  66. def _stack(self):
  67. """The current token stack."""
  68. return self._stacks[-1][0]
  69. @property
  70. def _context(self):
  71. """The current token context."""
  72. return self._stacks[-1][1]
  73. @_context.setter
  74. def _context(self, value):
  75. self._stacks[-1][1] = value
  76. @property
  77. def _textbuffer(self):
  78. """The current textbuffer."""
  79. return self._stacks[-1][2]
  80. @_textbuffer.setter
  81. def _textbuffer(self, value):
  82. self._stacks[-1][2] = value
  83. def _push(self, context=0):
  84. """Add a new token stack, context, and textbuffer to the list."""
  85. self._stacks.append([[], context, []])
  86. self._depth += 1
  87. self._cycles += 1
  88. def _push_textbuffer(self):
  89. """Push the textbuffer onto the stack as a Text node and clear it."""
  90. if self._textbuffer:
  91. self._stack.append(tokens.Text(text="".join(self._textbuffer)))
  92. self._textbuffer = []
  93. def _pop(self, keep_context=False):
  94. """Pop the current stack/context/textbuffer, returing the stack.
  95. If *keep_context* is ``True``, then we will replace the underlying
  96. stack's context with the current stack's.
  97. """
  98. self._push_textbuffer()
  99. self._depth -= 1
  100. if keep_context:
  101. context = self._context
  102. stack = self._stacks.pop()[0]
  103. self._context = context
  104. return stack
  105. return self._stacks.pop()[0]
  106. def _can_recurse(self):
  107. """Return whether or not our max recursion depth has been exceeded."""
  108. return self._depth < self.MAX_DEPTH and self._cycles < self.MAX_CYCLES
  109. def _fail_route(self):
  110. """Fail the current tokenization route.
  111. Discards the current stack/context/textbuffer and raises
  112. :py:exc:`~.BadRoute`.
  113. """
  114. context = self._context
  115. self._pop()
  116. raise BadRoute(context)
  117. def _emit(self, token):
  118. """Write a token to the end of the current token stack."""
  119. self._push_textbuffer()
  120. self._stack.append(token)
  121. def _emit_first(self, token):
  122. """Write a token to the beginning of the current token stack."""
  123. self._push_textbuffer()
  124. self._stack.insert(0, token)
  125. def _emit_text(self, text):
  126. """Write text to the current textbuffer."""
  127. self._textbuffer.append(text)
  128. def _emit_all(self, tokenlist):
  129. """Write a series of tokens to the current stack at once."""
  130. if tokenlist and isinstance(tokenlist[0], tokens.Text):
  131. self._emit_text(tokenlist.pop(0).text)
  132. self._push_textbuffer()
  133. self._stack.extend(tokenlist)
  134. def _emit_text_then_stack(self, text):
  135. """Pop the current stack, write *text*, and then write the stack."""
  136. stack = self._pop()
  137. self._emit_text(text)
  138. if stack:
  139. self._emit_all(stack)
  140. self._head -= 1
  141. def _read(self, delta=0, wrap=False, strict=False):
  142. """Read the value at a relative point in the wikicode.
  143. The value is read from :py:attr:`self._head <_head>` plus the value of
  144. *delta* (which can be negative). If *wrap* is ``False``, we will not
  145. allow attempts to read from the end of the string if ``self._head +
  146. delta`` is negative. If *strict* is ``True``, the route will be failed
  147. (with :py:meth:`_fail_route`) if we try to read from past the end of
  148. the string; otherwise, :py:attr:`self.END <END>` is returned. If we try
  149. to read from before the start of the string, :py:attr:`self.START
  150. <START>` is returned.
  151. """
  152. index = self._head + delta
  153. if index < 0 and (not wrap or abs(index) > len(self._text)):
  154. return self.START
  155. try:
  156. return self._text[index]
  157. except IndexError:
  158. if strict:
  159. self._fail_route()
  160. return self.END
  161. def _parse_template(self):
  162. """Parse a template at the head of the wikicode string."""
  163. reset = self._head
  164. try:
  165. template = self._parse(contexts.TEMPLATE_NAME)
  166. except BadRoute:
  167. self._head = reset
  168. raise
  169. self._emit_first(tokens.TemplateOpen())
  170. self._emit_all(template)
  171. self._emit(tokens.TemplateClose())
  172. def _parse_argument(self):
  173. """Parse an argument at the head of the wikicode string."""
  174. reset = self._head
  175. try:
  176. argument = self._parse(contexts.ARGUMENT_NAME)
  177. except BadRoute:
  178. self._head = reset
  179. raise
  180. self._emit_first(tokens.ArgumentOpen())
  181. self._emit_all(argument)
  182. self._emit(tokens.ArgumentClose())
  183. def _parse_template_or_argument(self):
  184. """Parse a template or argument at the head of the wikicode string."""
  185. self._head += 2
  186. braces = 2
  187. while self._read() == "{":
  188. self._head += 1
  189. braces += 1
  190. self._push()
  191. while braces:
  192. if braces == 1:
  193. return self._emit_text_then_stack("{")
  194. if braces == 2:
  195. try:
  196. self._parse_template()
  197. except BadRoute:
  198. return self._emit_text_then_stack("{{")
  199. break
  200. try:
  201. self._parse_argument()
  202. braces -= 3
  203. except BadRoute:
  204. try:
  205. self._parse_template()
  206. braces -= 2
  207. except BadRoute:
  208. return self._emit_text_then_stack("{" * braces)
  209. if braces:
  210. self._head += 1
  211. self._emit_all(self._pop())
  212. if self._context & contexts.FAIL_NEXT:
  213. self._context ^= contexts.FAIL_NEXT
  214. def _handle_template_param(self):
  215. """Handle a template parameter at the head of the string."""
  216. if self._context & contexts.TEMPLATE_NAME:
  217. self._context ^= contexts.TEMPLATE_NAME
  218. elif self._context & contexts.TEMPLATE_PARAM_VALUE:
  219. self._context ^= contexts.TEMPLATE_PARAM_VALUE
  220. elif self._context & contexts.TEMPLATE_PARAM_KEY:
  221. self._emit_all(self._pop(keep_context=True))
  222. self._context |= contexts.TEMPLATE_PARAM_KEY
  223. self._emit(tokens.TemplateParamSeparator())
  224. self._push(self._context)
  225. def _handle_template_param_value(self):
  226. """Handle a template parameter's value at the head of the string."""
  227. self._emit_all(self._pop(keep_context=True))
  228. self._context ^= contexts.TEMPLATE_PARAM_KEY
  229. self._context |= contexts.TEMPLATE_PARAM_VALUE
  230. self._emit(tokens.TemplateParamEquals())
  231. def _handle_template_end(self):
  232. """Handle the end of a template at the head of the string."""
  233. if self._context & contexts.TEMPLATE_PARAM_KEY:
  234. self._emit_all(self._pop(keep_context=True))
  235. self._head += 1
  236. return self._pop()
  237. def _handle_argument_separator(self):
  238. """Handle the separator between an argument's name and default."""
  239. self._context ^= contexts.ARGUMENT_NAME
  240. self._context |= contexts.ARGUMENT_DEFAULT
  241. self._emit(tokens.ArgumentSeparator())
  242. def _handle_argument_end(self):
  243. """Handle the end of an argument at the head of the string."""
  244. self._head += 2
  245. return self._pop()
  246. def _parse_wikilink(self):
  247. """Parse an internal wikilink at the head of the wikicode string."""
  248. self._head += 2
  249. reset = self._head - 1
  250. try:
  251. wikilink = self._parse(contexts.WIKILINK_TITLE)
  252. except BadRoute:
  253. self._head = reset
  254. self._emit_text("[[")
  255. else:
  256. if self._context & contexts.FAIL_NEXT:
  257. self._context ^= contexts.FAIL_NEXT
  258. self._emit(tokens.WikilinkOpen())
  259. self._emit_all(wikilink)
  260. self._emit(tokens.WikilinkClose())
  261. def _handle_wikilink_separator(self):
  262. """Handle the separator between a wikilink's title and its text."""
  263. self._context ^= contexts.WIKILINK_TITLE
  264. self._context |= contexts.WIKILINK_TEXT
  265. self._emit(tokens.WikilinkSeparator())
  266. def _handle_wikilink_end(self):
  267. """Handle the end of a wikilink at the head of the string."""
  268. self._head += 1
  269. return self._pop()
  270. def _parse_heading(self):
  271. """Parse a section heading at the head of the wikicode string."""
  272. self._global |= contexts.GL_HEADING
  273. reset = self._head
  274. self._head += 1
  275. best = 1
  276. while self._read() == "=":
  277. best += 1
  278. self._head += 1
  279. context = contexts.HEADING_LEVEL_1 << min(best - 1, 5)
  280. try:
  281. title, level = self._parse(context)
  282. except BadRoute:
  283. self._head = reset + best - 1
  284. self._emit_text("=" * best)
  285. else:
  286. self._emit(tokens.HeadingStart(level=level))
  287. if level < best:
  288. self._emit_text("=" * (best - level))
  289. self._emit_all(title)
  290. self._emit(tokens.HeadingEnd())
  291. finally:
  292. self._global ^= contexts.GL_HEADING
  293. def _handle_heading_end(self):
  294. """Handle the end of a section heading at the head of the string."""
  295. reset = self._head
  296. self._head += 1
  297. best = 1
  298. while self._read() == "=":
  299. best += 1
  300. self._head += 1
  301. current = int(log(self._context / contexts.HEADING_LEVEL_1, 2)) + 1
  302. level = min(current, min(best, 6))
  303. try: # Try to check for a heading closure after this one
  304. after, after_level = self._parse(self._context)
  305. except BadRoute:
  306. if level < best:
  307. self._emit_text("=" * (best - level))
  308. self._head = reset + best - 1
  309. return self._pop(), level
  310. else: # Found another closure
  311. self._emit_text("=" * best)
  312. self._emit_all(after)
  313. return self._pop(), after_level
  314. def _really_parse_entity(self):
  315. """Actually parse an HTML entity and ensure that it is valid."""
  316. self._emit(tokens.HTMLEntityStart())
  317. self._head += 1
  318. this = self._read(strict=True)
  319. if this == "#":
  320. numeric = True
  321. self._emit(tokens.HTMLEntityNumeric())
  322. self._head += 1
  323. this = self._read(strict=True)
  324. if this[0].lower() == "x":
  325. hexadecimal = True
  326. self._emit(tokens.HTMLEntityHex(char=this[0]))
  327. this = this[1:]
  328. if not this:
  329. self._fail_route()
  330. else:
  331. hexadecimal = False
  332. else:
  333. numeric = hexadecimal = False
  334. valid = "0123456789abcdefABCDEF" if hexadecimal else "0123456789"
  335. if not numeric and not hexadecimal:
  336. valid += "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
  337. if not all([char in valid for char in this]):
  338. self._fail_route()
  339. self._head += 1
  340. if self._read() != ";":
  341. self._fail_route()
  342. if numeric:
  343. test = int(this, 16) if hexadecimal else int(this)
  344. if test < 1 or test > 0x10FFFF:
  345. self._fail_route()
  346. else:
  347. if this not in htmlentities.entitydefs:
  348. self._fail_route()
  349. self._emit(tokens.Text(text=this))
  350. self._emit(tokens.HTMLEntityEnd())
  351. def _parse_entity(self):
  352. """Parse an HTML entity at the head of the wikicode string."""
  353. reset = self._head
  354. self._push()
  355. try:
  356. self._really_parse_entity()
  357. except BadRoute:
  358. self._head = reset
  359. self._emit_text(self._read())
  360. else:
  361. self._emit_all(self._pop())
  362. def _parse_comment(self):
  363. """Parse an HTML comment at the head of the wikicode string."""
  364. self._head += 4
  365. reset = self._head - 1
  366. self._push()
  367. while True:
  368. this = self._read()
  369. if this == self.END:
  370. self._pop()
  371. self._head = reset
  372. self._emit_text("<!--")
  373. return
  374. if this == self._read(1) == "-" and self._read(2) == ">":
  375. self._emit_first(tokens.CommentStart())
  376. self._emit(tokens.CommentEnd())
  377. self._emit_all(self._pop())
  378. self._head += 2
  379. return
  380. self._emit_text(this)
  381. self._head += 1
  382. def _push_tag_buffer(self, data):
  383. """Write a pending tag attribute from *data* to the stack."""
  384. if data.context & data.CX_QUOTED:
  385. self._emit_first(tokens.TagAttrQuote())
  386. self._emit_all(self._pop())
  387. buf = data.padding_buffer
  388. self._emit_first(tokens.TagAttrStart(pad_first=buf["first"],
  389. pad_before_eq=buf["before_eq"], pad_after_eq=buf["after_eq"]))
  390. self._emit_all(self._pop())
  391. data.padding_buffer = {key: "" for key in data.padding_buffer}
  392. def _handle_tag_space(self, data, text):
  393. """Handle whitespace (*text*) inside of an HTML open tag."""
  394. ctx = data.context
  395. end_of_value = ctx & data.CX_ATTR_VALUE and not ctx & (data.CX_QUOTED | data.CX_NOTE_QUOTE)
  396. if end_of_value or (ctx & data.CX_QUOTED and ctx & data.CX_NOTE_SPACE):
  397. self._push_tag_buffer(data)
  398. data.context = data.CX_ATTR_READY
  399. elif ctx & data.CX_NOTE_SPACE:
  400. data.context = data.CX_ATTR_READY
  401. elif ctx & data.CX_ATTR_NAME:
  402. data.context |= data.CX_NOTE_EQUALS
  403. data.padding_buffer["before_eq"] += text
  404. if ctx & data.CX_QUOTED and not ctx & data.CX_NOTE_SPACE:
  405. self._emit_text(text)
  406. elif data.context & data.CX_ATTR_READY:
  407. data.padding_buffer["first"] += text
  408. elif data.context & data.CX_ATTR_VALUE:
  409. data.padding_buffer["after_eq"] += text
  410. def _handle_tag_text(self, text):
  411. """Handle regular *text* inside of an HTML open tag."""
  412. next = self._read(1)
  413. if not self._can_recurse() or text not in self.MARKERS:
  414. self._emit_text(text)
  415. elif text == next == "{":
  416. self._parse_template_or_argument()
  417. elif text == next == "[":
  418. self._parse_wikilink()
  419. elif text == "<":
  420. self._parse_tag()
  421. else:
  422. self._emit_text(text)
  423. def _handle_tag_data(self, data, text):
  424. """Handle all sorts of *text* data inside of an HTML open tag."""
  425. for chunk in self.tag_splitter.split(text):
  426. if not chunk:
  427. continue
  428. if data.context & data.CX_NAME:
  429. if chunk in self.MARKERS or chunk.isspace():
  430. self._fail_route() # Tags must start with text, not spaces
  431. data.context = data.CX_NOTE_SPACE
  432. elif chunk.isspace():
  433. self._handle_tag_space(data, chunk)
  434. continue
  435. elif data.context & data.CX_NOTE_SPACE:
  436. if data.context & data.CX_QUOTED:
  437. data.context = data.CX_ATTR_VALUE
  438. self._pop()
  439. self._head = data.reset - 1 # Will be auto-incremented
  440. return # Break early
  441. self._fail_route()
  442. elif data.context & data.CX_ATTR_READY:
  443. data.context = data.CX_ATTR_NAME
  444. self._push(contexts.TAG_ATTR)
  445. elif data.context & data.CX_ATTR_NAME:
  446. if chunk == "=":
  447. data.context = data.CX_ATTR_VALUE | data.CX_NOTE_QUOTE
  448. self._emit(tokens.TagAttrEquals())
  449. continue
  450. if data.context & data.CX_NOTE_EQUALS:
  451. self._push_tag_buffer(data)
  452. data.context = data.CX_ATTR_NAME
  453. self._push(contexts.TAG_ATTR)
  454. elif data.context & data.CX_ATTR_VALUE:
  455. escaped = self._read(-1) == "\\" and self._read(-2) != "\\"
  456. if data.context & data.CX_NOTE_QUOTE:
  457. data.context ^= data.CX_NOTE_QUOTE
  458. if chunk == '"' and not escaped:
  459. data.context |= data.CX_QUOTED
  460. self._push(self._context)
  461. data.reset = self._head
  462. continue
  463. elif data.context & data.CX_QUOTED:
  464. if chunk == '"' and not escaped:
  465. data.context |= data.CX_NOTE_SPACE
  466. continue
  467. self._handle_tag_text(chunk)
  468. def _handle_tag_close_open(self, data, token):
  469. """Handle the closing of a open tag (``<foo>``)."""
  470. if data.context & (data.CX_ATTR_NAME | data.CX_ATTR_VALUE):
  471. self._push_tag_buffer(data)
  472. self._emit(token(padding=data.padding_buffer["first"]))
  473. self._head += 1
  474. def _handle_tag_open_close(self):
  475. """Handle the opening of a closing tag (``</foo>``)."""
  476. self._emit(tokens.TagOpenClose())
  477. self._push(contexts.TAG_CLOSE)
  478. self._head += 1
  479. def _handle_tag_close_close(self):
  480. """Handle the ending of a closing tag (``</foo>``)."""
  481. strip = lambda tok: tok.text.rstrip().lower()
  482. closing = self._pop()
  483. if len(closing) != 1 or (not isinstance(closing[0], tokens.Text) or
  484. strip(closing[0]) != strip(self._stack[1])):
  485. self._fail_route()
  486. self._emit_all(closing)
  487. self._emit(tokens.TagCloseClose())
  488. return self._pop()
  489. def _handle_blacklisted_tag(self):
  490. """Handle the body of an HTML tag that is parser-blacklisted."""
  491. while True:
  492. this, next = self._read(), self._read(1)
  493. self._head += 1
  494. if this is self.END:
  495. self._fail_route()
  496. elif this == "<" and next == "/":
  497. self._handle_tag_open_close()
  498. return self._parse(push=False)
  499. else:
  500. self._emit_text(this)
  501. def _handle_single_only_tag_end(self):
  502. """Handle the end of an implicitly closing single-only HTML tag."""
  503. padding = self._stack.pop().padding
  504. self._emit(tokens.TagCloseSelfclose(padding=padding, implicit=True))
  505. self._head -= 1 # Offset displacement done by _handle_tag_close_open
  506. return self._pop()
  507. def _handle_single_tag_end(self):
  508. """Handle the stream end when inside a single-supporting HTML tag."""
  509. gen = enumerate(self._stack)
  510. index = next(i for i, t in gen if isinstance(t, tokens.TagCloseOpen))
  511. padding = self._stack[index].padding
  512. token = tokens.TagCloseSelfclose(padding=padding, implicit=True)
  513. self._stack[index] = token
  514. return self._pop()
  515. def _really_parse_tag(self):
  516. """Actually parse an HTML tag, starting with the open (``<foo>``)."""
  517. data = _TagOpenData()
  518. self._push(contexts.TAG_OPEN)
  519. self._emit(tokens.TagOpenOpen())
  520. while True:
  521. this, next = self._read(), self._read(1)
  522. can_exit = (not data.context & (data.CX_QUOTED | data.CX_NAME) or
  523. data.context & data.CX_NOTE_SPACE)
  524. if this is self.END:
  525. if self._context & contexts.TAG_ATTR:
  526. if data.context & data.CX_QUOTED:
  527. # Unclosed attribute quote: reset, don't die
  528. data.context = data.CX_ATTR_VALUE
  529. self._pop()
  530. self._head = data.reset
  531. continue
  532. self._pop()
  533. self._fail_route()
  534. elif this == ">" and can_exit:
  535. self._handle_tag_close_open(data, tokens.TagCloseOpen)
  536. self._context = contexts.TAG_BODY
  537. if is_single_only(self._stack[1].text):
  538. return self._handle_single_only_tag_end()
  539. if is_parsable(self._stack[1].text):
  540. return self._parse(push=False)
  541. return self._handle_blacklisted_tag()
  542. elif this == "/" and next == ">" and can_exit:
  543. self._handle_tag_close_open(data, tokens.TagCloseSelfclose)
  544. return self._pop()
  545. else:
  546. self._handle_tag_data(data, this)
  547. self._head += 1
  548. def _handle_invalid_tag_start(self):
  549. """Handle the (possible) start of an implicitly closing single tag."""
  550. reset = self._head + 1
  551. self._head += 2
  552. try:
  553. if not is_single_only(self.tag_splitter.split(self._read())[0]):
  554. raise BadRoute()
  555. tag = self._really_parse_tag()
  556. except BadRoute:
  557. self._head = reset
  558. self._emit_text("</")
  559. else:
  560. tag[0].invalid = True # Set flag of TagOpenOpen
  561. self._emit_all(tag)
  562. def _parse_tag(self):
  563. """Parse an HTML tag at the head of the wikicode string."""
  564. reset = self._head
  565. self._head += 1
  566. try:
  567. tag = self._really_parse_tag()
  568. except BadRoute:
  569. self._head = reset
  570. self._emit_text("<")
  571. else:
  572. self._emit_all(tag)
  573. def _emit_style_tag(self, tag, markup, body):
  574. """Write the body of a tag and the tokens that should surround it."""
  575. self._emit(tokens.TagOpenOpen(wiki_markup=markup))
  576. self._emit_text(tag)
  577. self._emit(tokens.TagCloseOpen())
  578. self._emit_all(body)
  579. self._emit(tokens.TagOpenClose())
  580. self._emit_text(tag)
  581. self._emit(tokens.TagCloseClose())
  582. def _parse_italics(self):
  583. """Parse wiki-style italics."""
  584. reset = self._head
  585. try:
  586. stack = self._parse(contexts.STYLE_ITALICS)
  587. except BadRoute as route:
  588. self._head = reset
  589. if route.context & contexts.STYLE_PASS_AGAIN:
  590. stack = self._parse(route.context | contexts.STYLE_SECOND_PASS)
  591. else:
  592. return self._emit_text("''")
  593. self._emit_style_tag("i", "''", stack)
  594. def _parse_bold(self):
  595. """Parse wiki-style bold."""
  596. reset = self._head
  597. try:
  598. stack = self._parse(contexts.STYLE_BOLD)
  599. except BadRoute:
  600. self._head = reset
  601. if self._context & contexts.STYLE_SECOND_PASS:
  602. self._emit_text("'")
  603. return True
  604. elif self._context & contexts.STYLE_ITALICS:
  605. self._context |= contexts.STYLE_PASS_AGAIN
  606. self._emit_text("'''")
  607. else:
  608. self._emit_text("'")
  609. self._parse_italics()
  610. else:
  611. self._emit_style_tag("b", "'''", stack)
  612. def _parse_italics_and_bold(self):
  613. """Parse wiki-style italics and bold together (i.e., five ticks)."""
  614. reset = self._head
  615. try:
  616. stack = self._parse(contexts.STYLE_BOLD)
  617. except BadRoute:
  618. self._head = reset
  619. try:
  620. stack = self._parse(contexts.STYLE_ITALICS)
  621. except BadRoute:
  622. self._head = reset
  623. self._emit_text("'''''")
  624. else:
  625. reset = self._head
  626. try:
  627. stack2 = self._parse(contexts.STYLE_BOLD)
  628. except BadRoute:
  629. self._head = reset
  630. self._emit_text("'''")
  631. self._emit_style_tag("i", "''", stack)
  632. else:
  633. self._push()
  634. self._emit_style_tag("i", "''", stack)
  635. self._emit_all(stack2)
  636. self._emit_style_tag("b", "'''", self._pop())
  637. else:
  638. reset = self._head
  639. try:
  640. stack2 = self._parse(contexts.STYLE_ITALICS)
  641. except BadRoute:
  642. self._head = reset
  643. self._emit_text("''")
  644. self._emit_style_tag("b", "'''", stack)
  645. else:
  646. self._push()
  647. self._emit_style_tag("b", "'''", stack)
  648. self._emit_all(stack2)
  649. self._emit_style_tag("i", "''", self._pop())
  650. def _parse_style(self):
  651. """Parse wiki-style formatting (``''``/``'''`` for italics/bold)."""
  652. self._head += 2
  653. ticks = 2
  654. while self._read() == "'":
  655. self._head += 1
  656. ticks += 1
  657. italics = self._context & contexts.STYLE_ITALICS
  658. bold = self._context & contexts.STYLE_BOLD
  659. if ticks > 5:
  660. self._emit_text("'" * (ticks - 5))
  661. ticks = 5
  662. elif ticks == 4:
  663. self._emit_text("'")
  664. ticks = 3
  665. if (italics and ticks in (2, 5)) or (bold and ticks in (3, 5)):
  666. if ticks == 5:
  667. self._head -= 3 if italics else 2
  668. return self._pop()
  669. elif not self._can_recurse():
  670. if ticks == 3:
  671. if self._context & contexts.STYLE_SECOND_PASS:
  672. self._emit_text("'")
  673. return self._pop()
  674. self._context |= contexts.STYLE_PASS_AGAIN
  675. self._emit_text("'" * ticks)
  676. elif ticks == 2:
  677. self._parse_italics()
  678. elif ticks == 3:
  679. if self._parse_bold():
  680. return self._pop()
  681. elif ticks == 5:
  682. self._parse_italics_and_bold()
  683. self._head -= 1
  684. def _handle_list_marker(self):
  685. """Handle a list marker at the head (``#``, ``*``, ``;``, ``:``)."""
  686. markup = self._read()
  687. if markup == ";":
  688. self._context |= contexts.DL_TERM
  689. self._emit(tokens.TagOpenOpen(wiki_markup=markup))
  690. self._emit_text(get_html_tag(markup))
  691. self._emit(tokens.TagCloseSelfclose())
  692. def _handle_list(self):
  693. """Handle a wiki-style list (``#``, ``*``, ``;``, ``:``)."""
  694. self._handle_list_marker()
  695. while self._read(1) in ("#", "*", ";", ":"):
  696. self._head += 1
  697. self._handle_list_marker()
  698. def _handle_hr(self):
  699. """Handle a wiki-style horizontal rule (``----``) in the string."""
  700. length = 4
  701. self._head += 3
  702. while self._read(1) == "-":
  703. length += 1
  704. self._head += 1
  705. self._emit(tokens.TagOpenOpen(wiki_markup="-" * length))
  706. self._emit_text("hr")
  707. self._emit(tokens.TagCloseSelfclose())
  708. def _handle_dl_term(self):
  709. """Handle the term in a description list (``foo`` in ``;foo:bar``)."""
  710. self._context ^= contexts.DL_TERM
  711. if self._read() == ":":
  712. self._handle_list_marker()
  713. else:
  714. self._emit_text("\n")
  715. def _handle_end(self):
  716. """Handle the end of the stream of wikitext."""
  717. if self._context & contexts.FAIL:
  718. if self._context & contexts.TAG_BODY:
  719. if is_single(self._stack[1].text):
  720. return self._handle_single_tag_end()
  721. if self._context & contexts.DOUBLE:
  722. self._pop()
  723. self._fail_route()
  724. return self._pop()
  725. def _verify_safe(self, this):
  726. """Make sure we are not trying to write an invalid character."""
  727. context = self._context
  728. if context & contexts.FAIL_NEXT:
  729. return False
  730. if context & contexts.WIKILINK_TITLE:
  731. if this == "]" or this == "{":
  732. self._context |= contexts.FAIL_NEXT
  733. elif this == "\n" or this == "[" or this == "}":
  734. return False
  735. return True
  736. elif context & contexts.TEMPLATE_NAME:
  737. if this == "{" or this == "}" or this == "[":
  738. self._context |= contexts.FAIL_NEXT
  739. return True
  740. if this == "]":
  741. return False
  742. if this == "|":
  743. return True
  744. if context & contexts.HAS_TEXT:
  745. if context & contexts.FAIL_ON_TEXT:
  746. if this is self.END or not this.isspace():
  747. return False
  748. else:
  749. if this == "\n":
  750. self._context |= contexts.FAIL_ON_TEXT
  751. elif this is self.END or not this.isspace():
  752. self._context |= contexts.HAS_TEXT
  753. return True
  754. elif context & contexts.TAG_CLOSE:
  755. return this != "<"
  756. else:
  757. if context & contexts.FAIL_ON_EQUALS:
  758. if this == "=":
  759. return False
  760. elif context & contexts.FAIL_ON_LBRACE:
  761. if this == "{" or (self._read(-1) == self._read(-2) == "{"):
  762. if context & contexts.TEMPLATE:
  763. self._context |= contexts.FAIL_ON_EQUALS
  764. else:
  765. self._context |= contexts.FAIL_NEXT
  766. return True
  767. self._context ^= contexts.FAIL_ON_LBRACE
  768. elif context & contexts.FAIL_ON_RBRACE:
  769. if this == "}":
  770. if context & contexts.TEMPLATE:
  771. self._context |= contexts.FAIL_ON_EQUALS
  772. else:
  773. self._context |= contexts.FAIL_NEXT
  774. return True
  775. self._context ^= contexts.FAIL_ON_RBRACE
  776. elif this == "{":
  777. self._context |= contexts.FAIL_ON_LBRACE
  778. elif this == "}":
  779. self._context |= contexts.FAIL_ON_RBRACE
  780. return True
  781. def _parse(self, context=0, push=True):
  782. """Parse the wikicode string, using *context* for when to stop."""
  783. if push:
  784. self._push(context)
  785. while True:
  786. this = self._read()
  787. if self._context & contexts.UNSAFE:
  788. if not self._verify_safe(this):
  789. if self._context & contexts.DOUBLE:
  790. self._pop()
  791. self._fail_route()
  792. if this not in self.MARKERS:
  793. self._emit_text(this)
  794. self._head += 1
  795. continue
  796. if this is self.END:
  797. return self._handle_end()
  798. next = self._read(1)
  799. if this == next == "{":
  800. if self._can_recurse():
  801. self._parse_template_or_argument()
  802. else:
  803. self._emit_text("{")
  804. elif this == "|" and self._context & contexts.TEMPLATE:
  805. self._handle_template_param()
  806. elif this == "=" and self._context & contexts.TEMPLATE_PARAM_KEY:
  807. self._handle_template_param_value()
  808. elif this == next == "}" and self._context & contexts.TEMPLATE:
  809. return self._handle_template_end()
  810. elif this == "|" and self._context & contexts.ARGUMENT_NAME:
  811. self._handle_argument_separator()
  812. elif this == next == "}" and self._context & contexts.ARGUMENT:
  813. if self._read(2) == "}":
  814. return self._handle_argument_end()
  815. else:
  816. self._emit_text("}")
  817. elif this == next == "[":
  818. if not self._context & contexts.WIKILINK_TITLE and self._can_recurse():
  819. self._parse_wikilink()
  820. else:
  821. self._emit_text("[")
  822. elif this == "|" and self._context & contexts.WIKILINK_TITLE:
  823. self._handle_wikilink_separator()
  824. elif this == next == "]" and self._context & contexts.WIKILINK:
  825. return self._handle_wikilink_end()
  826. elif this == "=" and not self._global & contexts.GL_HEADING:
  827. if self._read(-1) in ("\n", self.START):
  828. self._parse_heading()
  829. else:
  830. self._emit_text("=")
  831. elif this == "=" and self._context & contexts.HEADING:
  832. return self._handle_heading_end()
  833. elif this == "\n" and self._context & contexts.HEADING:
  834. self._fail_route()
  835. elif this == "&":
  836. self._parse_entity()
  837. elif this == "<" and next == "!":
  838. if self._read(2) == self._read(3) == "-":
  839. self._parse_comment()
  840. else:
  841. self._emit_text(this)
  842. elif this == "<" and next == "/" and self._read(2) is not self.END:
  843. if self._context & contexts.TAG_BODY:
  844. self._handle_tag_open_close()
  845. else:
  846. self._handle_invalid_tag_start()
  847. elif this == "<":
  848. if not self._context & contexts.TAG_CLOSE and self._can_recurse():
  849. self._parse_tag()
  850. else:
  851. self._emit_text("<")
  852. elif this == ">" and self._context & contexts.TAG_CLOSE:
  853. return self._handle_tag_close_close()
  854. elif this == next == "'":
  855. result = self._parse_style()
  856. if result is not None:
  857. return result
  858. elif self._read(-1) in ("\n", self.START):
  859. if this in ("#", "*", ";", ":"):
  860. self._handle_list()
  861. elif this == next == self._read(2) == self._read(3) == "-":
  862. self._handle_hr()
  863. else:
  864. self._emit_text(this)
  865. elif this in ("\n", ":") and self._context & contexts.DL_TERM:
  866. self._handle_dl_term()
  867. else:
  868. self._emit_text(this)
  869. self._head += 1
  870. def tokenize(self, text):
  871. """Build a list of tokens from a string of wikicode and return it."""
  872. split = self.regex.split(text)
  873. self._text = [segment for segment in split if segment]
  874. return self._parse()