Show More
@@ -1,273 +1,273 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2011-2017 RhodeCode GmbH |
|
3 | # Copyright (C) 2011-2017 RhodeCode GmbH | |
4 | # |
|
4 | # | |
5 | # This program is free software: you can redistribute it and/or modify |
|
5 | # This program is free software: you can redistribute it and/or modify | |
6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
6 | # it under the terms of the GNU Affero General Public License, version 3 | |
7 | # (only), as published by the Free Software Foundation. |
|
7 | # (only), as published by the Free Software Foundation. | |
8 | # |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 | # |
|
13 | # | |
14 | # You should have received a copy of the GNU Affero General Public License |
|
14 | # You should have received a copy of the GNU Affero General Public License | |
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | # |
|
16 | # | |
17 | # This program is dual-licensed. If you wish to learn more about the |
|
17 | # This program is dual-licensed. If you wish to learn more about the | |
18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
18 | # RhodeCode Enterprise Edition, including its added features, Support services, | |
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |
20 |
|
20 | |||
21 |
|
21 | |||
22 | """ |
|
22 | """ | |
23 | Renderer for markup languages with ability to parse using rst or markdown |
|
23 | Renderer for markup languages with ability to parse using rst or markdown | |
24 | """ |
|
24 | """ | |
25 |
|
25 | |||
26 | import re |
|
26 | import re | |
27 | import os |
|
27 | import os | |
28 | import logging |
|
28 | import logging | |
29 | import itertools |
|
29 | import itertools | |
30 |
|
30 | |||
31 | from mako.lookup import TemplateLookup |
|
31 | from mako.lookup import TemplateLookup | |
32 |
|
32 | |||
33 | from docutils.core import publish_parts |
|
33 | from docutils.core import publish_parts | |
34 | from docutils.parsers.rst import directives |
|
34 | from docutils.parsers.rst import directives | |
35 | import markdown |
|
35 | import markdown | |
36 |
|
36 | |||
37 | from rhodecode.lib.markdown_ext import ( |
|
37 | from rhodecode.lib.markdown_ext import ( | |
38 | UrlizeExtension, GithubFlavoredMarkdownExtension) |
|
38 | UrlizeExtension, GithubFlavoredMarkdownExtension) | |
39 | from rhodecode.lib.utils2 import safe_unicode, md5_safe, MENTIONS_REGEX |
|
39 | from rhodecode.lib.utils2 import safe_unicode, md5_safe, MENTIONS_REGEX | |
40 |
|
40 | |||
41 | log = logging.getLogger(__name__) |
|
41 | log = logging.getLogger(__name__) | |
42 |
|
42 | |||
43 | # default renderer used to generate automated comments |
|
43 | # default renderer used to generate automated comments | |
44 | DEFAULT_COMMENTS_RENDERER = 'rst' |
|
44 | DEFAULT_COMMENTS_RENDERER = 'rst' | |
45 |
|
45 | |||
46 |
|
46 | |||
47 | class MarkupRenderer(object): |
|
47 | class MarkupRenderer(object): | |
48 | RESTRUCTUREDTEXT_DISALLOWED_DIRECTIVES = ['include', 'meta', 'raw'] |
|
48 | RESTRUCTUREDTEXT_DISALLOWED_DIRECTIVES = ['include', 'meta', 'raw'] | |
49 |
|
49 | |||
50 | MARKDOWN_PAT = re.compile(r'\.(md|mkdn?|mdown|markdown)$', re.IGNORECASE) |
|
50 | MARKDOWN_PAT = re.compile(r'\.(md|mkdn?|mdown|markdown)$', re.IGNORECASE) | |
51 | RST_PAT = re.compile(r'\.re?st$', re.IGNORECASE) |
|
51 | RST_PAT = re.compile(r'\.re?st$', re.IGNORECASE) | |
52 | PLAIN_PAT = re.compile(r'^readme$', re.IGNORECASE) |
|
52 | PLAIN_PAT = re.compile(r'^readme$', re.IGNORECASE) | |
53 |
|
53 | |||
54 | # extension together with weights. Lower is first means we control how |
|
54 | # extension together with weights. Lower is first means we control how | |
55 | # extensions are attached to readme names with those. |
|
55 | # extensions are attached to readme names with those. | |
56 | PLAIN_EXTS = [ |
|
56 | PLAIN_EXTS = [ | |
57 | # prefer no extension |
|
57 | # prefer no extension | |
58 | ('', 0), # special case that renders READMES names without extension |
|
58 | ('', 0), # special case that renders READMES names without extension | |
59 | ('.text', 2), ('.TEXT', 2), |
|
59 | ('.text', 2), ('.TEXT', 2), | |
60 | ('.txt', 3), ('.TXT', 3) |
|
60 | ('.txt', 3), ('.TXT', 3) | |
61 | ] |
|
61 | ] | |
62 |
|
62 | |||
63 | RST_EXTS = [ |
|
63 | RST_EXTS = [ | |
64 | ('.rst', 1), ('.rest', 1), |
|
64 | ('.rst', 1), ('.rest', 1), | |
65 | ('.RST', 2), ('.REST', 2) |
|
65 | ('.RST', 2), ('.REST', 2) | |
66 | ] |
|
66 | ] | |
67 |
|
67 | |||
68 | MARKDOWN_EXTS = [ |
|
68 | MARKDOWN_EXTS = [ | |
69 | ('.md', 1), ('.MD', 1), |
|
69 | ('.md', 1), ('.MD', 1), | |
70 | ('.mkdn', 2), ('.MKDN', 2), |
|
70 | ('.mkdn', 2), ('.MKDN', 2), | |
71 | ('.mdown', 3), ('.MDOWN', 3), |
|
71 | ('.mdown', 3), ('.MDOWN', 3), | |
72 | ('.markdown', 4), ('.MARKDOWN', 4) |
|
72 | ('.markdown', 4), ('.MARKDOWN', 4) | |
73 | ] |
|
73 | ] | |
74 |
|
74 | |||
75 | def _detect_renderer(self, source, filename=None): |
|
75 | def _detect_renderer(self, source, filename=None): | |
76 | """ |
|
76 | """ | |
77 | runs detection of what renderer should be used for generating html |
|
77 | runs detection of what renderer should be used for generating html | |
78 | from a markup language |
|
78 | from a markup language | |
79 |
|
79 | |||
80 | filename can be also explicitly a renderer name |
|
80 | filename can be also explicitly a renderer name | |
81 |
|
81 | |||
82 | :param source: |
|
82 | :param source: | |
83 | :param filename: |
|
83 | :param filename: | |
84 | """ |
|
84 | """ | |
85 |
|
85 | |||
86 | if MarkupRenderer.MARKDOWN_PAT.findall(filename): |
|
86 | if MarkupRenderer.MARKDOWN_PAT.findall(filename): | |
87 | detected_renderer = 'markdown' |
|
87 | detected_renderer = 'markdown' | |
88 | elif MarkupRenderer.RST_PAT.findall(filename): |
|
88 | elif MarkupRenderer.RST_PAT.findall(filename): | |
89 | detected_renderer = 'rst' |
|
89 | detected_renderer = 'rst' | |
90 | elif MarkupRenderer.PLAIN_PAT.findall(filename): |
|
90 | elif MarkupRenderer.PLAIN_PAT.findall(filename): | |
91 |
detected_renderer = ' |
|
91 | detected_renderer = 'plain' | |
92 | else: |
|
92 | else: | |
93 | detected_renderer = 'plain' |
|
93 | detected_renderer = 'plain' | |
94 |
|
94 | |||
95 | return getattr(MarkupRenderer, detected_renderer) |
|
95 | return getattr(MarkupRenderer, detected_renderer) | |
96 |
|
96 | |||
97 | @classmethod |
|
97 | @classmethod | |
98 | def renderer_from_filename(cls, filename, exclude): |
|
98 | def renderer_from_filename(cls, filename, exclude): | |
99 | """ |
|
99 | """ | |
100 | Detect renderer markdown/rst from filename and optionally use exclude |
|
100 | Detect renderer markdown/rst from filename and optionally use exclude | |
101 | list to remove some options. This is mostly used in helpers. |
|
101 | list to remove some options. This is mostly used in helpers. | |
102 | Returns None when no renderer can be detected. |
|
102 | Returns None when no renderer can be detected. | |
103 | """ |
|
103 | """ | |
104 | def _filter(elements): |
|
104 | def _filter(elements): | |
105 | if isinstance(exclude, (list, tuple)): |
|
105 | if isinstance(exclude, (list, tuple)): | |
106 | return [x for x in elements if x not in exclude] |
|
106 | return [x for x in elements if x not in exclude] | |
107 | return elements |
|
107 | return elements | |
108 |
|
108 | |||
109 | if filename.endswith( |
|
109 | if filename.endswith( | |
110 | tuple(_filter([x[0] for x in cls.MARKDOWN_EXTS if x[0]]))): |
|
110 | tuple(_filter([x[0] for x in cls.MARKDOWN_EXTS if x[0]]))): | |
111 | return 'markdown' |
|
111 | return 'markdown' | |
112 | if filename.endswith(tuple(_filter([x[0] for x in cls.RST_EXTS if x[0]]))): |
|
112 | if filename.endswith(tuple(_filter([x[0] for x in cls.RST_EXTS if x[0]]))): | |
113 | return 'rst' |
|
113 | return 'rst' | |
114 |
|
114 | |||
115 | return None |
|
115 | return None | |
116 |
|
116 | |||
117 | def render(self, source, filename=None): |
|
117 | def render(self, source, filename=None): | |
118 | """ |
|
118 | """ | |
119 | Renders a given filename using detected renderer |
|
119 | Renders a given filename using detected renderer | |
120 | it detects renderers based on file extension or mimetype. |
|
120 | it detects renderers based on file extension or mimetype. | |
121 | At last it will just do a simple html replacing new lines with <br/> |
|
121 | At last it will just do a simple html replacing new lines with <br/> | |
122 |
|
122 | |||
123 | :param file_name: |
|
123 | :param file_name: | |
124 | :param source: |
|
124 | :param source: | |
125 | """ |
|
125 | """ | |
126 |
|
126 | |||
127 | renderer = self._detect_renderer(source, filename) |
|
127 | renderer = self._detect_renderer(source, filename) | |
128 | readme_data = renderer(source) |
|
128 | readme_data = renderer(source) | |
129 | return readme_data |
|
129 | return readme_data | |
130 |
|
130 | |||
131 | @classmethod |
|
131 | @classmethod | |
132 | def _flavored_markdown(cls, text): |
|
132 | def _flavored_markdown(cls, text): | |
133 | """ |
|
133 | """ | |
134 | Github style flavored markdown |
|
134 | Github style flavored markdown | |
135 |
|
135 | |||
136 | :param text: |
|
136 | :param text: | |
137 | """ |
|
137 | """ | |
138 |
|
138 | |||
139 | # Extract pre blocks. |
|
139 | # Extract pre blocks. | |
140 | extractions = {} |
|
140 | extractions = {} | |
141 |
|
141 | |||
142 | def pre_extraction_callback(matchobj): |
|
142 | def pre_extraction_callback(matchobj): | |
143 | digest = md5_safe(matchobj.group(0)) |
|
143 | digest = md5_safe(matchobj.group(0)) | |
144 | extractions[digest] = matchobj.group(0) |
|
144 | extractions[digest] = matchobj.group(0) | |
145 | return "{gfm-extraction-%s}" % digest |
|
145 | return "{gfm-extraction-%s}" % digest | |
146 | pattern = re.compile(r'<pre>.*?</pre>', re.MULTILINE | re.DOTALL) |
|
146 | pattern = re.compile(r'<pre>.*?</pre>', re.MULTILINE | re.DOTALL) | |
147 | text = re.sub(pattern, pre_extraction_callback, text) |
|
147 | text = re.sub(pattern, pre_extraction_callback, text) | |
148 |
|
148 | |||
149 | # Prevent foo_bar_baz from ending up with an italic word in the middle. |
|
149 | # Prevent foo_bar_baz from ending up with an italic word in the middle. | |
150 | def italic_callback(matchobj): |
|
150 | def italic_callback(matchobj): | |
151 | s = matchobj.group(0) |
|
151 | s = matchobj.group(0) | |
152 | if list(s).count('_') >= 2: |
|
152 | if list(s).count('_') >= 2: | |
153 | return s.replace('_', r'\_') |
|
153 | return s.replace('_', r'\_') | |
154 | return s |
|
154 | return s | |
155 | text = re.sub(r'^(?! {4}|\t)\w+_\w+_\w[\w_]*', italic_callback, text) |
|
155 | text = re.sub(r'^(?! {4}|\t)\w+_\w+_\w[\w_]*', italic_callback, text) | |
156 |
|
156 | |||
157 | # Insert pre block extractions. |
|
157 | # Insert pre block extractions. | |
158 | def pre_insert_callback(matchobj): |
|
158 | def pre_insert_callback(matchobj): | |
159 | return '\n\n' + extractions[matchobj.group(1)] |
|
159 | return '\n\n' + extractions[matchobj.group(1)] | |
160 | text = re.sub(r'\{gfm-extraction-([0-9a-f]{32})\}', |
|
160 | text = re.sub(r'\{gfm-extraction-([0-9a-f]{32})\}', | |
161 | pre_insert_callback, text) |
|
161 | pre_insert_callback, text) | |
162 |
|
162 | |||
163 | return text |
|
163 | return text | |
164 |
|
164 | |||
165 | @classmethod |
|
165 | @classmethod | |
166 | def urlify_text(cls, text): |
|
166 | def urlify_text(cls, text): | |
167 | url_pat = re.compile(r'(http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]' |
|
167 | url_pat = re.compile(r'(http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]' | |
168 | r'|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)') |
|
168 | r'|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)') | |
169 |
|
169 | |||
170 | def url_func(match_obj): |
|
170 | def url_func(match_obj): | |
171 | url_full = match_obj.groups()[0] |
|
171 | url_full = match_obj.groups()[0] | |
172 | return '<a href="%(url)s">%(url)s</a>' % ({'url': url_full}) |
|
172 | return '<a href="%(url)s">%(url)s</a>' % ({'url': url_full}) | |
173 |
|
173 | |||
174 | return url_pat.sub(url_func, text) |
|
174 | return url_pat.sub(url_func, text) | |
175 |
|
175 | |||
176 | @classmethod |
|
176 | @classmethod | |
177 | def plain(cls, source, universal_newline=True): |
|
177 | def plain(cls, source, universal_newline=True): | |
178 | source = safe_unicode(source) |
|
178 | source = safe_unicode(source) | |
179 | if universal_newline: |
|
179 | if universal_newline: | |
180 | newline = '\n' |
|
180 | newline = '\n' | |
181 | source = newline.join(source.splitlines()) |
|
181 | source = newline.join(source.splitlines()) | |
182 |
|
182 | |||
183 | source = cls.urlify_text(source) |
|
183 | source = cls.urlify_text(source) | |
184 | return '<br />' + source.replace("\n", '<br />') |
|
184 | return '<br />' + source.replace("\n", '<br />') | |
185 |
|
185 | |||
186 | @classmethod |
|
186 | @classmethod | |
187 | def markdown(cls, source, safe=True, flavored=True, mentions=False): |
|
187 | def markdown(cls, source, safe=True, flavored=True, mentions=False): | |
188 | # It does not allow to insert inline HTML. In presence of HTML tags, it |
|
188 | # It does not allow to insert inline HTML. In presence of HTML tags, it | |
189 | # will replace them instead with [HTML_REMOVED]. This is controlled by |
|
189 | # will replace them instead with [HTML_REMOVED]. This is controlled by | |
190 | # the safe_mode=True parameter of the markdown method. |
|
190 | # the safe_mode=True parameter of the markdown method. | |
191 | extensions = ['codehilite', 'extra', 'def_list', 'sane_lists'] |
|
191 | extensions = ['codehilite', 'extra', 'def_list', 'sane_lists'] | |
192 | if flavored: |
|
192 | if flavored: | |
193 | extensions.append(GithubFlavoredMarkdownExtension()) |
|
193 | extensions.append(GithubFlavoredMarkdownExtension()) | |
194 |
|
194 | |||
195 | if mentions: |
|
195 | if mentions: | |
196 | mention_pat = re.compile(MENTIONS_REGEX) |
|
196 | mention_pat = re.compile(MENTIONS_REGEX) | |
197 |
|
197 | |||
198 | def wrapp(match_obj): |
|
198 | def wrapp(match_obj): | |
199 | uname = match_obj.groups()[0] |
|
199 | uname = match_obj.groups()[0] | |
200 | return ' **@%(uname)s** ' % {'uname': uname} |
|
200 | return ' **@%(uname)s** ' % {'uname': uname} | |
201 | mention_hl = mention_pat.sub(wrapp, source).strip() |
|
201 | mention_hl = mention_pat.sub(wrapp, source).strip() | |
202 | # we extracted mentions render with this using Mentions false |
|
202 | # we extracted mentions render with this using Mentions false | |
203 | return cls.markdown(mention_hl, safe=safe, flavored=flavored, |
|
203 | return cls.markdown(mention_hl, safe=safe, flavored=flavored, | |
204 | mentions=False) |
|
204 | mentions=False) | |
205 |
|
205 | |||
206 | source = safe_unicode(source) |
|
206 | source = safe_unicode(source) | |
207 | try: |
|
207 | try: | |
208 | if flavored: |
|
208 | if flavored: | |
209 | source = cls._flavored_markdown(source) |
|
209 | source = cls._flavored_markdown(source) | |
210 | return markdown.markdown( |
|
210 | return markdown.markdown( | |
211 | source, extensions, safe_mode=True, enable_attributes=False) |
|
211 | source, extensions, safe_mode=True, enable_attributes=False) | |
212 | except Exception: |
|
212 | except Exception: | |
213 | log.exception('Error when rendering Markdown') |
|
213 | log.exception('Error when rendering Markdown') | |
214 | if safe: |
|
214 | if safe: | |
215 | log.debug('Fallback to render in plain mode') |
|
215 | log.debug('Fallback to render in plain mode') | |
216 | return cls.plain(source) |
|
216 | return cls.plain(source) | |
217 | else: |
|
217 | else: | |
218 | raise |
|
218 | raise | |
219 |
|
219 | |||
220 | @classmethod |
|
220 | @classmethod | |
221 | def rst(cls, source, safe=True, mentions=False): |
|
221 | def rst(cls, source, safe=True, mentions=False): | |
222 | if mentions: |
|
222 | if mentions: | |
223 | mention_pat = re.compile(MENTIONS_REGEX) |
|
223 | mention_pat = re.compile(MENTIONS_REGEX) | |
224 |
|
224 | |||
225 | def wrapp(match_obj): |
|
225 | def wrapp(match_obj): | |
226 | uname = match_obj.groups()[0] |
|
226 | uname = match_obj.groups()[0] | |
227 | return ' **@%(uname)s** ' % {'uname': uname} |
|
227 | return ' **@%(uname)s** ' % {'uname': uname} | |
228 | mention_hl = mention_pat.sub(wrapp, source).strip() |
|
228 | mention_hl = mention_pat.sub(wrapp, source).strip() | |
229 | # we extracted mentions render with this using Mentions false |
|
229 | # we extracted mentions render with this using Mentions false | |
230 | return cls.rst(mention_hl, safe=safe, mentions=False) |
|
230 | return cls.rst(mention_hl, safe=safe, mentions=False) | |
231 |
|
231 | |||
232 | source = safe_unicode(source) |
|
232 | source = safe_unicode(source) | |
233 | try: |
|
233 | try: | |
234 | docutils_settings = dict( |
|
234 | docutils_settings = dict( | |
235 | [(alias, None) for alias in |
|
235 | [(alias, None) for alias in | |
236 | cls.RESTRUCTUREDTEXT_DISALLOWED_DIRECTIVES]) |
|
236 | cls.RESTRUCTUREDTEXT_DISALLOWED_DIRECTIVES]) | |
237 |
|
237 | |||
238 | docutils_settings.update({'input_encoding': 'unicode', |
|
238 | docutils_settings.update({'input_encoding': 'unicode', | |
239 | 'report_level': 4}) |
|
239 | 'report_level': 4}) | |
240 |
|
240 | |||
241 | for k, v in docutils_settings.iteritems(): |
|
241 | for k, v in docutils_settings.iteritems(): | |
242 | directives.register_directive(k, v) |
|
242 | directives.register_directive(k, v) | |
243 |
|
243 | |||
244 | parts = publish_parts(source=source, |
|
244 | parts = publish_parts(source=source, | |
245 | writer_name="html4css1", |
|
245 | writer_name="html4css1", | |
246 | settings_overrides=docutils_settings) |
|
246 | settings_overrides=docutils_settings) | |
247 |
|
247 | |||
248 | return parts['html_title'] + parts["fragment"] |
|
248 | return parts['html_title'] + parts["fragment"] | |
249 | except Exception: |
|
249 | except Exception: | |
250 | log.exception('Error when rendering RST') |
|
250 | log.exception('Error when rendering RST') | |
251 | if safe: |
|
251 | if safe: | |
252 | log.debug('Fallbacking to render in plain mode') |
|
252 | log.debug('Fallbacking to render in plain mode') | |
253 | return cls.plain(source) |
|
253 | return cls.plain(source) | |
254 | else: |
|
254 | else: | |
255 | raise |
|
255 | raise | |
256 |
|
256 | |||
257 |
|
257 | |||
258 | class RstTemplateRenderer(object): |
|
258 | class RstTemplateRenderer(object): | |
259 |
|
259 | |||
260 | def __init__(self): |
|
260 | def __init__(self): | |
261 | base = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) |
|
261 | base = os.path.abspath(os.path.dirname(os.path.dirname(__file__))) | |
262 | rst_template_dirs = [os.path.join(base, 'templates', 'rst_templates')] |
|
262 | rst_template_dirs = [os.path.join(base, 'templates', 'rst_templates')] | |
263 | self.template_store = TemplateLookup( |
|
263 | self.template_store = TemplateLookup( | |
264 | directories=rst_template_dirs, |
|
264 | directories=rst_template_dirs, | |
265 | input_encoding='utf-8', |
|
265 | input_encoding='utf-8', | |
266 | imports=['from rhodecode.lib import helpers as h']) |
|
266 | imports=['from rhodecode.lib import helpers as h']) | |
267 |
|
267 | |||
268 | def _get_template(self, templatename): |
|
268 | def _get_template(self, templatename): | |
269 | return self.template_store.get_template(templatename) |
|
269 | return self.template_store.get_template(templatename) | |
270 |
|
270 | |||
271 | def render(self, template_name, **kwargs): |
|
271 | def render(self, template_name, **kwargs): | |
272 | template = self._get_template(template_name) |
|
272 | template = self._get_template(template_name) | |
273 | return template.render(**kwargs) |
|
273 | return template.render(**kwargs) |
@@ -1,179 +1,179 b'' | |||||
1 | # -*- coding: utf-8 -*- |
|
1 | # -*- coding: utf-8 -*- | |
2 |
|
2 | |||
3 | # Copyright (C) 2010-2017 RhodeCode GmbH |
|
3 | # Copyright (C) 2010-2017 RhodeCode GmbH | |
4 | # |
|
4 | # | |
5 | # This program is free software: you can redistribute it and/or modify |
|
5 | # This program is free software: you can redistribute it and/or modify | |
6 | # it under the terms of the GNU Affero General Public License, version 3 |
|
6 | # it under the terms of the GNU Affero General Public License, version 3 | |
7 | # (only), as published by the Free Software Foundation. |
|
7 | # (only), as published by the Free Software Foundation. | |
8 | # |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 | # |
|
13 | # | |
14 | # You should have received a copy of the GNU Affero General Public License |
|
14 | # You should have received a copy of the GNU Affero General Public License | |
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
15 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
16 | # |
|
16 | # | |
17 | # This program is dual-licensed. If you wish to learn more about the |
|
17 | # This program is dual-licensed. If you wish to learn more about the | |
18 | # RhodeCode Enterprise Edition, including its added features, Support services, |
|
18 | # RhodeCode Enterprise Edition, including its added features, Support services, | |
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ |
|
19 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |
20 |
|
20 | |||
21 | import pytest |
|
21 | import pytest | |
22 |
|
22 | |||
23 | from rhodecode.lib.markup_renderer import MarkupRenderer, RstTemplateRenderer |
|
23 | from rhodecode.lib.markup_renderer import MarkupRenderer, RstTemplateRenderer | |
24 |
|
24 | |||
25 |
|
25 | |||
26 | @pytest.mark.parametrize( |
|
26 | @pytest.mark.parametrize( | |
27 | "filename, expected_renderer", |
|
27 | "filename, expected_renderer", | |
28 | [ |
|
28 | [ | |
29 | ('readme.md', 'markdown'), |
|
29 | ('readme.md', 'markdown'), | |
30 | ('readme.Md', 'markdown'), |
|
30 | ('readme.Md', 'markdown'), | |
31 | ('readme.MdoWn', 'markdown'), |
|
31 | ('readme.MdoWn', 'markdown'), | |
32 | ('readme.rst', 'rst'), |
|
32 | ('readme.rst', 'rst'), | |
33 | ('readme.Rst', 'rst'), |
|
33 | ('readme.Rst', 'rst'), | |
34 | ('readme.rest', 'rst'), |
|
34 | ('readme.rest', 'rst'), | |
35 | ('readme.rest', 'rst'), |
|
35 | ('readme.rest', 'rst'), | |
36 | ('readme', 'rst'), |
|
|||
37 | ('README', 'rst'), |
|
|||
38 |
|
36 | |||
39 | ('markdown.xml', 'plain'), |
|
37 | ('markdown.xml', 'plain'), | |
40 | ('rest.xml', 'plain'), |
|
38 | ('rest.xml', 'plain'), | |
41 | ('readme.xml', 'plain'), |
|
39 | ('readme.xml', 'plain'), | |
42 |
|
40 | |||
|
41 | ('readme', 'plain'), | |||
|
42 | ('README', 'plain'), | |||
43 | ('readme.mdx', 'plain'), |
|
43 | ('readme.mdx', 'plain'), | |
44 | ('readme.rstx', 'plain'), |
|
44 | ('readme.rstx', 'plain'), | |
45 | ('readmex', 'plain'), |
|
45 | ('readmex', 'plain'), | |
46 | ]) |
|
46 | ]) | |
47 | def test_detect_renderer(filename, expected_renderer): |
|
47 | def test_detect_renderer(filename, expected_renderer): | |
48 | detected_renderer = MarkupRenderer()._detect_renderer( |
|
48 | detected_renderer = MarkupRenderer()._detect_renderer( | |
49 | '', filename=filename).__name__ |
|
49 | '', filename=filename).__name__ | |
50 | assert expected_renderer == detected_renderer |
|
50 | assert expected_renderer == detected_renderer | |
51 |
|
51 | |||
52 |
|
52 | |||
53 | def test_markdown_xss_link(): |
|
53 | def test_markdown_xss_link(): | |
54 | xss_md = "[link](javascript:alert('XSS: pwned!'))" |
|
54 | xss_md = "[link](javascript:alert('XSS: pwned!'))" | |
55 | rendered_html = MarkupRenderer.markdown(xss_md) |
|
55 | rendered_html = MarkupRenderer.markdown(xss_md) | |
56 | assert 'href="javascript:alert(\'XSS: pwned!\')"' not in rendered_html |
|
56 | assert 'href="javascript:alert(\'XSS: pwned!\')"' not in rendered_html | |
57 |
|
57 | |||
58 |
|
58 | |||
59 | def test_markdown_xss_inline_html(): |
|
59 | def test_markdown_xss_inline_html(): | |
60 | xss_md = '\n'.join([ |
|
60 | xss_md = '\n'.join([ | |
61 | '> <a name="n"', |
|
61 | '> <a name="n"', | |
62 | '> href="javascript:alert(\'XSS: pwned!\')">link</a>']) |
|
62 | '> href="javascript:alert(\'XSS: pwned!\')">link</a>']) | |
63 | rendered_html = MarkupRenderer.markdown(xss_md) |
|
63 | rendered_html = MarkupRenderer.markdown(xss_md) | |
64 | assert 'href="javascript:alert(\'XSS: pwned!\')">' not in rendered_html |
|
64 | assert 'href="javascript:alert(\'XSS: pwned!\')">' not in rendered_html | |
65 |
|
65 | |||
66 |
|
66 | |||
67 | def test_markdown_inline_html(): |
|
67 | def test_markdown_inline_html(): | |
68 | xss_md = '\n'.join(['> <a name="n"', |
|
68 | xss_md = '\n'.join(['> <a name="n"', | |
69 | '> href="https://rhodecode.com">link</a>']) |
|
69 | '> href="https://rhodecode.com">link</a>']) | |
70 | rendered_html = MarkupRenderer.markdown(xss_md) |
|
70 | rendered_html = MarkupRenderer.markdown(xss_md) | |
71 | assert '[HTML_REMOVED]link[HTML_REMOVED]' in rendered_html |
|
71 | assert '[HTML_REMOVED]link[HTML_REMOVED]' in rendered_html | |
72 |
|
72 | |||
73 |
|
73 | |||
74 | def test_rst_xss_link(): |
|
74 | def test_rst_xss_link(): | |
75 | xss_rst = "`Link<javascript:alert('XSS: pwned!')>`_" |
|
75 | xss_rst = "`Link<javascript:alert('XSS: pwned!')>`_" | |
76 | rendered_html = MarkupRenderer.rst(xss_rst) |
|
76 | rendered_html = MarkupRenderer.rst(xss_rst) | |
77 | assert "href=javascript:alert('XSS: pwned!')" not in rendered_html |
|
77 | assert "href=javascript:alert('XSS: pwned!')" not in rendered_html | |
78 |
|
78 | |||
79 |
|
79 | |||
80 | @pytest.mark.xfail(reason='Bug in docutils. Waiting answer from the author') |
|
80 | @pytest.mark.xfail(reason='Bug in docutils. Waiting answer from the author') | |
81 | def test_rst_xss_inline_html(): |
|
81 | def test_rst_xss_inline_html(): | |
82 | xss_rst = '<a href="javascript:alert(\'XSS: pwned!\')">link</a>' |
|
82 | xss_rst = '<a href="javascript:alert(\'XSS: pwned!\')">link</a>' | |
83 | rendered_html = MarkupRenderer.rst(xss_rst) |
|
83 | rendered_html = MarkupRenderer.rst(xss_rst) | |
84 | assert 'href="javascript:alert(' not in rendered_html |
|
84 | assert 'href="javascript:alert(' not in rendered_html | |
85 |
|
85 | |||
86 |
|
86 | |||
87 | def test_rst_xss_raw_directive(): |
|
87 | def test_rst_xss_raw_directive(): | |
88 | xss_rst = '\n'.join([ |
|
88 | xss_rst = '\n'.join([ | |
89 | '.. raw:: html', |
|
89 | '.. raw:: html', | |
90 | '', |
|
90 | '', | |
91 | ' <a href="javascript:alert(\'XSS: pwned!\')">link</a>']) |
|
91 | ' <a href="javascript:alert(\'XSS: pwned!\')">link</a>']) | |
92 | rendered_html = MarkupRenderer.rst(xss_rst) |
|
92 | rendered_html = MarkupRenderer.rst(xss_rst) | |
93 | assert 'href="javascript:alert(' not in rendered_html |
|
93 | assert 'href="javascript:alert(' not in rendered_html | |
94 |
|
94 | |||
95 |
|
95 | |||
96 | def test_render_rst_template_without_files(): |
|
96 | def test_render_rst_template_without_files(): | |
97 | expected = u'''\ |
|
97 | expected = u'''\ | |
98 | Pull request updated. Auto status change to |under_review| |
|
98 | Pull request updated. Auto status change to |under_review| | |
99 |
|
99 | |||
100 | .. role:: added |
|
100 | .. role:: added | |
101 | .. role:: removed |
|
101 | .. role:: removed | |
102 | .. parsed-literal:: |
|
102 | .. parsed-literal:: | |
103 |
|
103 | |||
104 | Changed commits: |
|
104 | Changed commits: | |
105 | * :added:`2 added` |
|
105 | * :added:`2 added` | |
106 | * :removed:`3 removed` |
|
106 | * :removed:`3 removed` | |
107 |
|
107 | |||
108 | No file changes found |
|
108 | No file changes found | |
109 |
|
109 | |||
110 | .. |under_review| replace:: *"NEW STATUS"*''' |
|
110 | .. |under_review| replace:: *"NEW STATUS"*''' | |
111 |
|
111 | |||
112 | params = { |
|
112 | params = { | |
113 | 'under_review_label': 'NEW STATUS', |
|
113 | 'under_review_label': 'NEW STATUS', | |
114 | 'added_commits': ['a', 'b'], |
|
114 | 'added_commits': ['a', 'b'], | |
115 | 'removed_commits': ['a', 'b', 'c'], |
|
115 | 'removed_commits': ['a', 'b', 'c'], | |
116 | 'changed_files': [], |
|
116 | 'changed_files': [], | |
117 | 'added_files': [], |
|
117 | 'added_files': [], | |
118 | 'modified_files': [], |
|
118 | 'modified_files': [], | |
119 | 'removed_files': [], |
|
119 | 'removed_files': [], | |
120 | } |
|
120 | } | |
121 | renderer = RstTemplateRenderer() |
|
121 | renderer = RstTemplateRenderer() | |
122 | rendered = renderer.render('pull_request_update.mako', **params) |
|
122 | rendered = renderer.render('pull_request_update.mako', **params) | |
123 | assert expected == rendered |
|
123 | assert expected == rendered | |
124 |
|
124 | |||
125 |
|
125 | |||
126 | def test_render_rst_template_with_files(): |
|
126 | def test_render_rst_template_with_files(): | |
127 | expected = u'''\ |
|
127 | expected = u'''\ | |
128 | Pull request updated. Auto status change to |under_review| |
|
128 | Pull request updated. Auto status change to |under_review| | |
129 |
|
129 | |||
130 | .. role:: added |
|
130 | .. role:: added | |
131 | .. role:: removed |
|
131 | .. role:: removed | |
132 | .. parsed-literal:: |
|
132 | .. parsed-literal:: | |
133 |
|
133 | |||
134 | Changed commits: |
|
134 | Changed commits: | |
135 | * :added:`1 added` |
|
135 | * :added:`1 added` | |
136 | * :removed:`3 removed` |
|
136 | * :removed:`3 removed` | |
137 |
|
137 | |||
138 | Changed files: |
|
138 | Changed files: | |
139 | * `A /path/a.py <#a_c--68ed34923b68>`_ |
|
139 | * `A /path/a.py <#a_c--68ed34923b68>`_ | |
140 | * `A /path/b.js <#a_c--64f90608b607>`_ |
|
140 | * `A /path/b.js <#a_c--64f90608b607>`_ | |
141 | * `M /path/d.js <#a_c--85842bf30c6e>`_ |
|
141 | * `M /path/d.js <#a_c--85842bf30c6e>`_ | |
142 | * `M /path/Δ.py <#a_c--d713adf009cd>`_ |
|
142 | * `M /path/Δ.py <#a_c--d713adf009cd>`_ | |
143 | * R /path/ΕΊ.py |
|
143 | * R /path/ΕΊ.py | |
144 |
|
144 | |||
145 | .. |under_review| replace:: *"NEW STATUS"*''' |
|
145 | .. |under_review| replace:: *"NEW STATUS"*''' | |
146 |
|
146 | |||
147 | added = ['/path/a.py', '/path/b.js'] |
|
147 | added = ['/path/a.py', '/path/b.js'] | |
148 | modified = ['/path/d.js', u'/path/Δ.py'] |
|
148 | modified = ['/path/d.js', u'/path/Δ.py'] | |
149 | removed = [u'/path/ΕΊ.py'] |
|
149 | removed = [u'/path/ΕΊ.py'] | |
150 |
|
150 | |||
151 | params = { |
|
151 | params = { | |
152 | 'under_review_label': 'NEW STATUS', |
|
152 | 'under_review_label': 'NEW STATUS', | |
153 | 'added_commits': ['a'], |
|
153 | 'added_commits': ['a'], | |
154 | 'removed_commits': ['a', 'b', 'c'], |
|
154 | 'removed_commits': ['a', 'b', 'c'], | |
155 | 'changed_files': added + modified + removed, |
|
155 | 'changed_files': added + modified + removed, | |
156 | 'added_files': added, |
|
156 | 'added_files': added, | |
157 | 'modified_files': modified, |
|
157 | 'modified_files': modified, | |
158 | 'removed_files': removed, |
|
158 | 'removed_files': removed, | |
159 | } |
|
159 | } | |
160 | renderer = RstTemplateRenderer() |
|
160 | renderer = RstTemplateRenderer() | |
161 | rendered = renderer.render('pull_request_update.mako', **params) |
|
161 | rendered = renderer.render('pull_request_update.mako', **params) | |
162 |
|
162 | |||
163 | assert expected == rendered |
|
163 | assert expected == rendered | |
164 |
|
164 | |||
165 |
|
165 | |||
166 | def test_render_rst_auto_status_template(): |
|
166 | def test_render_rst_auto_status_template(): | |
167 | expected = u'''\ |
|
167 | expected = u'''\ | |
168 | Auto status change to |new_status| |
|
168 | Auto status change to |new_status| | |
169 |
|
169 | |||
170 | .. |new_status| replace:: *"NEW STATUS"*''' |
|
170 | .. |new_status| replace:: *"NEW STATUS"*''' | |
171 |
|
171 | |||
172 | params = { |
|
172 | params = { | |
173 | 'new_status_label': 'NEW STATUS', |
|
173 | 'new_status_label': 'NEW STATUS', | |
174 | 'pull_request': None, |
|
174 | 'pull_request': None, | |
175 | 'commit_id': None, |
|
175 | 'commit_id': None, | |
176 | } |
|
176 | } | |
177 | renderer = RstTemplateRenderer() |
|
177 | renderer = RstTemplateRenderer() | |
178 | rendered = renderer.render('auto_status_change.mako', **params) |
|
178 | rendered = renderer.render('auto_status_change.mako', **params) | |
179 | assert expected == rendered |
|
179 | assert expected == rendered |
General Comments 0
You need to be logged in to leave comments.
Login now