##// END OF EJS Templates
html_sanitizer: abstracted bleach into own function/code for later replacement...
super-admin -
r5098:34f9ec38 default
parent child Browse files
Show More
@@ -0,0 +1,38 b''
1
2 # Copyright (C) 2010-2023 RhodeCode GmbH
3 #
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU Affero General Public License, version 3
6 # (only), as published by the Free Software Foundation.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU Affero General Public License
14 # along with this program. If not, see <http://www.gnu.org/licenses/>.
15 #
16 # This program is dual-licensed. If you wish to learn more about the
17 # RhodeCode Enterprise Edition, including its added features, Support services,
18 # and proprietary license terms, please see https://rhodecode.com/licenses/
19
20 import pytest
21
22 from rhodecode.lib.html_filters import sanitize_html
23
24
25 @pytest.mark.parametrize(
26 "src_html, expected_html",
27 [
28 ('<div>ITEM</div>', '<div>ITEM</div>'),
29 ('<div>ITEM</div> <!-- comment here -->', '<div>ITEM</div> <!-- comment here -->'),
30 ('<div style="not-allowed:true">ITEM</div>', '<div style="">ITEM</div>'),
31 ('<div onload="ACTION">ITEM</div>', '<div>ITEM</div>'),
32 ('<a onload="ACTION" style="color:red">ITEM</a>', '<a style="color:red;">ITEM</a>'),
33 ('<img src="/file.png"></img>', '<img src="/file.png">'),
34 ('<img src="/file.png"></img>', '<img src="/file.png">'),
35 ])
36 def test_html_sanitizer_options(src_html, expected_html):
37 parsed_html = sanitize_html(src_html)
38 assert parsed_html == expected_html
@@ -1,2160 +1,2160 b''
1 # Copyright (C) 2010-2023 RhodeCode GmbH
1 # Copyright (C) 2010-2023 RhodeCode GmbH
2 #
2 #
3 # This program is free software: you can redistribute it and/or modify
3 # This program is free software: you can redistribute it and/or modify
4 # it under the terms of the GNU Affero General Public License, version 3
4 # it under the terms of the GNU Affero General Public License, version 3
5 # (only), as published by the Free Software Foundation.
5 # (only), as published by the Free Software Foundation.
6 #
6 #
7 # This program is distributed in the hope that it will be useful,
7 # This program is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 # GNU General Public License for more details.
10 # GNU General Public License for more details.
11 #
11 #
12 # You should have received a copy of the GNU Affero General Public License
12 # You should have received a copy of the GNU Affero General Public License
13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
14 #
14 #
15 # This program is dual-licensed. If you wish to learn more about the
15 # This program is dual-licensed. If you wish to learn more about the
16 # RhodeCode Enterprise Edition, including its added features, Support services,
16 # RhodeCode Enterprise Edition, including its added features, Support services,
17 # and proprietary license terms, please see https://rhodecode.com/licenses/
17 # and proprietary license terms, please see https://rhodecode.com/licenses/
18
18
19 """
19 """
20 Helper functions
20 Helper functions
21
21
22 Consists of functions to typically be used within templates, but also
22 Consists of functions to typically be used within templates, but also
23 available to Controllers. This module is available to both as 'h'.
23 available to Controllers. This module is available to both as 'h'.
24 """
24 """
25 import base64
25 import base64
26 import collections
26 import collections
27
27
28 import os
28 import os
29 import random
29 import random
30 import hashlib
30 import hashlib
31 import io
31 import io
32 import textwrap
32 import textwrap
33 import urllib.request
33 import urllib.request
34 import urllib.parse
34 import urllib.parse
35 import urllib.error
35 import urllib.error
36 import math
36 import math
37 import logging
37 import logging
38 import re
38 import re
39 import time
39 import time
40 import string
40 import string
41 import regex
41 import regex
42 from collections import OrderedDict
42 from collections import OrderedDict
43
43
44 import pygments
44 import pygments
45 import itertools
45 import itertools
46 import fnmatch
46 import fnmatch
47 import bleach
48
47
49 from datetime import datetime
48 from datetime import datetime
50 from functools import partial
49 from functools import partial
51 from pygments.formatters.html import HtmlFormatter
50 from pygments.formatters.html import HtmlFormatter
52 from pygments.lexers import (
51 from pygments.lexers import (
53 get_lexer_by_name, get_lexer_for_filename, get_lexer_for_mimetype)
52 get_lexer_by_name, get_lexer_for_filename, get_lexer_for_mimetype)
54
53
55 from pyramid.threadlocal import get_current_request
54 from pyramid.threadlocal import get_current_request
56 from tempita import looper
55 from tempita import looper
57 from webhelpers2.html import literal, HTML, escape
56 from webhelpers2.html import literal, HTML, escape
58 from webhelpers2.html._autolink import _auto_link_urls
57 from webhelpers2.html._autolink import _auto_link_urls
59 from webhelpers2.html.tools import (
58 from webhelpers2.html.tools import (
60 button_to, highlight, js_obfuscate, strip_links, strip_tags)
59 button_to, highlight, js_obfuscate, strip_links, strip_tags)
61
60
62 from webhelpers2.text import (
61 from webhelpers2.text import (
63 chop_at, collapse, convert_accented_entities,
62 chop_at, collapse, convert_accented_entities,
64 convert_misc_entities, lchop, plural, rchop, remove_formatting,
63 convert_misc_entities, lchop, plural, rchop, remove_formatting,
65 replace_whitespace, urlify, truncate, wrap_paragraphs)
64 replace_whitespace, urlify, truncate, wrap_paragraphs)
66 from webhelpers2.date import time_ago_in_words
65 from webhelpers2.date import time_ago_in_words
67
66
68 from webhelpers2.html.tags import (
67 from webhelpers2.html.tags import (
69 _input, NotGiven, _make_safe_id_component as safeid,
68 _input, NotGiven, _make_safe_id_component as safeid,
70 form as insecure_form,
69 form as insecure_form,
71 auto_discovery_link, checkbox, end_form, file,
70 auto_discovery_link, checkbox, end_form, file,
72 hidden, image, javascript_link, link_to, link_to_if, link_to_unless, ol,
71 hidden, image, javascript_link, link_to, link_to_if, link_to_unless, ol,
73 stylesheet_link, submit, text, password, textarea,
72 stylesheet_link, submit, text, password, textarea,
74 ul, radio, Options)
73 ul, radio, Options)
75
74
76 from webhelpers2.number import format_byte_size
75 from webhelpers2.number import format_byte_size
77 # python3.11 backport fixes for webhelpers2
76 # python3.11 backport fixes for webhelpers2
78 from rhodecode.lib._vendor.webhelpers_backports import raw_select
77 from rhodecode.lib._vendor.webhelpers_backports import raw_select
79
78
80 from rhodecode.lib.action_parser import action_parser
79 from rhodecode.lib.action_parser import action_parser
80 from rhodecode.lib.html_filters import sanitize_html
81 from rhodecode.lib.pagination import Page, RepoPage, SqlPage
81 from rhodecode.lib.pagination import Page, RepoPage, SqlPage
82 from rhodecode.lib import ext_json
82 from rhodecode.lib import ext_json
83 from rhodecode.lib.ext_json import json
83 from rhodecode.lib.ext_json import json
84 from rhodecode.lib.str_utils import safe_bytes, convert_special_chars
84 from rhodecode.lib.str_utils import safe_bytes, convert_special_chars
85 from rhodecode.lib.utils import repo_name_slug, get_custom_lexer
85 from rhodecode.lib.utils import repo_name_slug, get_custom_lexer
86 from rhodecode.lib.str_utils import safe_str
86 from rhodecode.lib.str_utils import safe_str
87 from rhodecode.lib.utils2 import (
87 from rhodecode.lib.utils2 import (
88 str2bool,
88 str2bool,
89 get_commit_safe, datetime_to_time, time_to_datetime, time_to_utcdatetime,
89 get_commit_safe, datetime_to_time, time_to_datetime, time_to_utcdatetime,
90 AttributeDict, safe_int, md5, md5_safe, get_host_info)
90 AttributeDict, safe_int, md5, md5_safe, get_host_info)
91 from rhodecode.lib.markup_renderer import MarkupRenderer, relative_links
91 from rhodecode.lib.markup_renderer import MarkupRenderer, relative_links
92 from rhodecode.lib.vcs.exceptions import CommitDoesNotExistError
92 from rhodecode.lib.vcs.exceptions import CommitDoesNotExistError
93 from rhodecode.lib.vcs.backends.base import BaseChangeset, EmptyCommit
93 from rhodecode.lib.vcs.backends.base import BaseChangeset, EmptyCommit
94 from rhodecode.lib.vcs.conf.settings import ARCHIVE_SPECS
94 from rhodecode.lib.vcs.conf.settings import ARCHIVE_SPECS
95 from rhodecode.lib.index.search_utils import get_matching_line_offsets
95 from rhodecode.lib.index.search_utils import get_matching_line_offsets
96 from rhodecode.config.conf import DATE_FORMAT, DATETIME_FORMAT
96 from rhodecode.config.conf import DATE_FORMAT, DATETIME_FORMAT
97 from rhodecode.model.changeset_status import ChangesetStatusModel
97 from rhodecode.model.changeset_status import ChangesetStatusModel
98 from rhodecode.model.db import Permission, User, Repository, UserApiKeys, FileStore
98 from rhodecode.model.db import Permission, User, Repository, UserApiKeys, FileStore
99 from rhodecode.model.repo_group import RepoGroupModel
99 from rhodecode.model.repo_group import RepoGroupModel
100 from rhodecode.model.settings import IssueTrackerSettingsModel
100 from rhodecode.model.settings import IssueTrackerSettingsModel
101
101
102
102
103 log = logging.getLogger(__name__)
103 log = logging.getLogger(__name__)
104
104
105
105
106 DEFAULT_USER = User.DEFAULT_USER
106 DEFAULT_USER = User.DEFAULT_USER
107 DEFAULT_USER_EMAIL = User.DEFAULT_USER_EMAIL
107 DEFAULT_USER_EMAIL = User.DEFAULT_USER_EMAIL
108
108
109
109
110 def asset(path, ver=None, **kwargs):
110 def asset(path, ver=None, **kwargs):
111 """
111 """
112 Helper to generate a static asset file path for rhodecode assets
112 Helper to generate a static asset file path for rhodecode assets
113
113
114 eg. h.asset('images/image.png', ver='3923')
114 eg. h.asset('images/image.png', ver='3923')
115
115
116 :param path: path of asset
116 :param path: path of asset
117 :param ver: optional version query param to append as ?ver=
117 :param ver: optional version query param to append as ?ver=
118 """
118 """
119 request = get_current_request()
119 request = get_current_request()
120 query = {}
120 query = {}
121 query.update(kwargs)
121 query.update(kwargs)
122 if ver:
122 if ver:
123 query = {'ver': ver}
123 query = {'ver': ver}
124 return request.static_path(
124 return request.static_path(
125 f'rhodecode:public/{path}', _query=query)
125 f'rhodecode:public/{path}', _query=query)
126
126
127
127
128 default_html_escape_table = {
128 default_html_escape_table = {
129 ord('&'): '&amp;',
129 ord('&'): '&amp;',
130 ord('<'): '&lt;',
130 ord('<'): '&lt;',
131 ord('>'): '&gt;',
131 ord('>'): '&gt;',
132 ord('"'): '&quot;',
132 ord('"'): '&quot;',
133 ord("'"): '&#39;',
133 ord("'"): '&#39;',
134 }
134 }
135
135
136
136
137 def html_escape(text, html_escape_table=default_html_escape_table):
137 def html_escape(text, html_escape_table=default_html_escape_table):
138 """Produce entities within text."""
138 """Produce entities within text."""
139 return text.translate(html_escape_table)
139 return text.translate(html_escape_table)
140
140
141
141
142 def str_json(*args, **kwargs):
142 def str_json(*args, **kwargs):
143 return ext_json.str_json(*args, **kwargs)
143 return ext_json.str_json(*args, **kwargs)
144
144
145
145
146 def formatted_str_json(*args, **kwargs):
146 def formatted_str_json(*args, **kwargs):
147 return ext_json.formatted_str_json(*args, **kwargs)
147 return ext_json.formatted_str_json(*args, **kwargs)
148
148
149
149
150 def chop_at_smart(s, sub, inclusive=False, suffix_if_chopped=None):
150 def chop_at_smart(s, sub, inclusive=False, suffix_if_chopped=None):
151 """
151 """
152 Truncate string ``s`` at the first occurrence of ``sub``.
152 Truncate string ``s`` at the first occurrence of ``sub``.
153
153
154 If ``inclusive`` is true, truncate just after ``sub`` rather than at it.
154 If ``inclusive`` is true, truncate just after ``sub`` rather than at it.
155 """
155 """
156 suffix_if_chopped = suffix_if_chopped or ''
156 suffix_if_chopped = suffix_if_chopped or ''
157 pos = s.find(sub)
157 pos = s.find(sub)
158 if pos == -1:
158 if pos == -1:
159 return s
159 return s
160
160
161 if inclusive:
161 if inclusive:
162 pos += len(sub)
162 pos += len(sub)
163
163
164 chopped = s[:pos]
164 chopped = s[:pos]
165 left = s[pos:].strip()
165 left = s[pos:].strip()
166
166
167 if left and suffix_if_chopped:
167 if left and suffix_if_chopped:
168 chopped += suffix_if_chopped
168 chopped += suffix_if_chopped
169
169
170 return chopped
170 return chopped
171
171
172
172
173 def shorter(text, size=20, prefix=False):
173 def shorter(text, size=20, prefix=False):
174 postfix = '...'
174 postfix = '...'
175 if len(text) > size:
175 if len(text) > size:
176 if prefix:
176 if prefix:
177 # shorten in front
177 # shorten in front
178 return postfix + text[-(size - len(postfix)):]
178 return postfix + text[-(size - len(postfix)):]
179 else:
179 else:
180 return text[:size - len(postfix)] + postfix
180 return text[:size - len(postfix)] + postfix
181 return text
181 return text
182
182
183
183
184 def reset(name, value=None, id=NotGiven, type="reset", **attrs):
184 def reset(name, value=None, id=NotGiven, type="reset", **attrs):
185 """
185 """
186 Reset button
186 Reset button
187 """
187 """
188 return _input(type, name, value, id, attrs)
188 return _input(type, name, value, id, attrs)
189
189
190
190
191 def select(name, selected_values, options, id=NotGiven, **attrs):
191 def select(name, selected_values, options, id=NotGiven, **attrs):
192
192
193 if isinstance(options, (list, tuple)):
193 if isinstance(options, (list, tuple)):
194 options_iter = options
194 options_iter = options
195 # Handle old value,label lists ... where value also can be value,label lists
195 # Handle old value,label lists ... where value also can be value,label lists
196 options = Options()
196 options = Options()
197 for opt in options_iter:
197 for opt in options_iter:
198 if isinstance(opt, tuple) and len(opt) == 2:
198 if isinstance(opt, tuple) and len(opt) == 2:
199 value, label = opt
199 value, label = opt
200 elif isinstance(opt, str):
200 elif isinstance(opt, str):
201 value = label = opt
201 value = label = opt
202 else:
202 else:
203 raise ValueError('invalid select option type %r' % type(opt))
203 raise ValueError('invalid select option type %r' % type(opt))
204
204
205 if isinstance(value, (list, tuple)):
205 if isinstance(value, (list, tuple)):
206 option_group = options.add_optgroup(label)
206 option_group = options.add_optgroup(label)
207 for opt2 in value:
207 for opt2 in value:
208 if isinstance(opt2, tuple) and len(opt2) == 2:
208 if isinstance(opt2, tuple) and len(opt2) == 2:
209 group_value, group_label = opt2
209 group_value, group_label = opt2
210 elif isinstance(opt2, str):
210 elif isinstance(opt2, str):
211 group_value = group_label = opt2
211 group_value = group_label = opt2
212 else:
212 else:
213 raise ValueError('invalid select option type %r' % type(opt2))
213 raise ValueError('invalid select option type %r' % type(opt2))
214
214
215 option_group.add_option(group_label, group_value)
215 option_group.add_option(group_label, group_value)
216 else:
216 else:
217 options.add_option(label, value)
217 options.add_option(label, value)
218
218
219 return raw_select(name, selected_values, options, id=id, **attrs)
219 return raw_select(name, selected_values, options, id=id, **attrs)
220
220
221
221
222 def branding(name, length=40):
222 def branding(name, length=40):
223 return truncate(name, length, indicator="")
223 return truncate(name, length, indicator="")
224
224
225
225
226 def FID(raw_id, path):
226 def FID(raw_id, path):
227 """
227 """
228 Creates a unique ID for filenode based on it's hash of path and commit
228 Creates a unique ID for filenode based on it's hash of path and commit
229 it's safe to use in urls
229 it's safe to use in urls
230
230
231 :param raw_id:
231 :param raw_id:
232 :param path:
232 :param path:
233 """
233 """
234
234
235 return 'c-%s-%s' % (short_id(raw_id), md5_safe(path)[:12])
235 return 'c-%s-%s' % (short_id(raw_id), md5_safe(path)[:12])
236
236
237
237
238 class _GetError(object):
238 class _GetError(object):
239 """Get error from form_errors, and represent it as span wrapped error
239 """Get error from form_errors, and represent it as span wrapped error
240 message
240 message
241
241
242 :param field_name: field to fetch errors for
242 :param field_name: field to fetch errors for
243 :param form_errors: form errors dict
243 :param form_errors: form errors dict
244 """
244 """
245
245
246 def __call__(self, field_name, form_errors):
246 def __call__(self, field_name, form_errors):
247 tmpl = """<span class="error_msg">%s</span>"""
247 tmpl = """<span class="error_msg">%s</span>"""
248 if form_errors and field_name in form_errors:
248 if form_errors and field_name in form_errors:
249 return literal(tmpl % form_errors.get(field_name))
249 return literal(tmpl % form_errors.get(field_name))
250
250
251
251
252 get_error = _GetError()
252 get_error = _GetError()
253
253
254
254
255 class _ToolTip(object):
255 class _ToolTip(object):
256
256
257 def __call__(self, tooltip_title, trim_at=50):
257 def __call__(self, tooltip_title, trim_at=50):
258 """
258 """
259 Special function just to wrap our text into nice formatted
259 Special function just to wrap our text into nice formatted
260 autowrapped text
260 autowrapped text
261
261
262 :param tooltip_title:
262 :param tooltip_title:
263 """
263 """
264 tooltip_title = escape(tooltip_title)
264 tooltip_title = escape(tooltip_title)
265 tooltip_title = tooltip_title.replace('<', '&lt;').replace('>', '&gt;')
265 tooltip_title = tooltip_title.replace('<', '&lt;').replace('>', '&gt;')
266 return tooltip_title
266 return tooltip_title
267
267
268
268
269 tooltip = _ToolTip()
269 tooltip = _ToolTip()
270
270
271 files_icon = '<i class="file-breadcrumb-copy tooltip icon-clipboard clipboard-action" data-clipboard-text="{}" title="Copy file path"></i>'
271 files_icon = '<i class="file-breadcrumb-copy tooltip icon-clipboard clipboard-action" data-clipboard-text="{}" title="Copy file path"></i>'
272
272
273
273
274 def files_breadcrumbs(repo_name, repo_type, commit_id, file_path, landing_ref_name=None, at_ref=None,
274 def files_breadcrumbs(repo_name, repo_type, commit_id, file_path, landing_ref_name=None, at_ref=None,
275 limit_items=False, linkify_last_item=False, hide_last_item=False,
275 limit_items=False, linkify_last_item=False, hide_last_item=False,
276 copy_path_icon=True):
276 copy_path_icon=True):
277
277
278 if at_ref:
278 if at_ref:
279 route_qry = {'at': at_ref}
279 route_qry = {'at': at_ref}
280 default_landing_ref = at_ref or landing_ref_name or commit_id
280 default_landing_ref = at_ref or landing_ref_name or commit_id
281 else:
281 else:
282 route_qry = None
282 route_qry = None
283 default_landing_ref = commit_id
283 default_landing_ref = commit_id
284
284
285 # first segment is a `HOME` link to repo files root location
285 # first segment is a `HOME` link to repo files root location
286 root_name = literal('<i class="icon-home"></i>')
286 root_name = literal('<i class="icon-home"></i>')
287
287
288 url_segments = [
288 url_segments = [
289 link_to(
289 link_to(
290 root_name,
290 root_name,
291 repo_files_by_ref_url(
291 repo_files_by_ref_url(
292 repo_name,
292 repo_name,
293 repo_type,
293 repo_type,
294 f_path=None, # None here is a special case for SVN repos,
294 f_path=None, # None here is a special case for SVN repos,
295 # that won't prefix with a ref
295 # that won't prefix with a ref
296 ref_name=default_landing_ref,
296 ref_name=default_landing_ref,
297 commit_id=commit_id,
297 commit_id=commit_id,
298 query=route_qry
298 query=route_qry
299 )
299 )
300 )]
300 )]
301
301
302 path_segments = file_path.split('/')
302 path_segments = file_path.split('/')
303 last_cnt = len(path_segments) - 1
303 last_cnt = len(path_segments) - 1
304 for cnt, segment in enumerate(path_segments):
304 for cnt, segment in enumerate(path_segments):
305 if not segment:
305 if not segment:
306 continue
306 continue
307 segment_html = escape(segment)
307 segment_html = escape(segment)
308
308
309 last_item = cnt == last_cnt
309 last_item = cnt == last_cnt
310
310
311 if last_item and hide_last_item:
311 if last_item and hide_last_item:
312 # iterate over and hide last element
312 # iterate over and hide last element
313 continue
313 continue
314
314
315 if last_item and linkify_last_item is False:
315 if last_item and linkify_last_item is False:
316 # plain version
316 # plain version
317 url_segments.append(segment_html)
317 url_segments.append(segment_html)
318 else:
318 else:
319 url_segments.append(
319 url_segments.append(
320 link_to(
320 link_to(
321 segment_html,
321 segment_html,
322 repo_files_by_ref_url(
322 repo_files_by_ref_url(
323 repo_name,
323 repo_name,
324 repo_type,
324 repo_type,
325 f_path='/'.join(path_segments[:cnt + 1]),
325 f_path='/'.join(path_segments[:cnt + 1]),
326 ref_name=default_landing_ref,
326 ref_name=default_landing_ref,
327 commit_id=commit_id,
327 commit_id=commit_id,
328 query=route_qry
328 query=route_qry
329 ),
329 ),
330 ))
330 ))
331
331
332 limited_url_segments = url_segments[:1] + ['...'] + url_segments[-5:]
332 limited_url_segments = url_segments[:1] + ['...'] + url_segments[-5:]
333 if limit_items and len(limited_url_segments) < len(url_segments):
333 if limit_items and len(limited_url_segments) < len(url_segments):
334 url_segments = limited_url_segments
334 url_segments = limited_url_segments
335
335
336 full_path = file_path
336 full_path = file_path
337 if copy_path_icon:
337 if copy_path_icon:
338 icon = files_icon.format(escape(full_path))
338 icon = files_icon.format(escape(full_path))
339 else:
339 else:
340 icon = ''
340 icon = ''
341
341
342 if file_path == '':
342 if file_path == '':
343 return root_name
343 return root_name
344 else:
344 else:
345 return literal(' / '.join(url_segments) + icon)
345 return literal(' / '.join(url_segments) + icon)
346
346
347
347
348 def files_url_data(request):
348 def files_url_data(request):
349 matchdict = request.matchdict
349 matchdict = request.matchdict
350
350
351 if 'f_path' not in matchdict:
351 if 'f_path' not in matchdict:
352 matchdict['f_path'] = ''
352 matchdict['f_path'] = ''
353 else:
353 else:
354 matchdict['f_path'] = urllib.parse.quote(safe_str(matchdict['f_path']))
354 matchdict['f_path'] = urllib.parse.quote(safe_str(matchdict['f_path']))
355 if 'commit_id' not in matchdict:
355 if 'commit_id' not in matchdict:
356 matchdict['commit_id'] = 'tip'
356 matchdict['commit_id'] = 'tip'
357
357
358 return ext_json.str_json(matchdict)
358 return ext_json.str_json(matchdict)
359
359
360
360
361 def repo_files_by_ref_url(db_repo_name, db_repo_type, f_path, ref_name, commit_id, query=None, ):
361 def repo_files_by_ref_url(db_repo_name, db_repo_type, f_path, ref_name, commit_id, query=None, ):
362 _is_svn = is_svn(db_repo_type)
362 _is_svn = is_svn(db_repo_type)
363 final_f_path = f_path
363 final_f_path = f_path
364
364
365 if _is_svn:
365 if _is_svn:
366 """
366 """
367 For SVN the ref_name cannot be used as a commit_id, it needs to be prefixed with
367 For SVN the ref_name cannot be used as a commit_id, it needs to be prefixed with
368 actually commit_id followed by the ref_name. This should be done only in case
368 actually commit_id followed by the ref_name. This should be done only in case
369 This is a initial landing url, without additional paths.
369 This is a initial landing url, without additional paths.
370
370
371 like: /1000/tags/1.0.0/?at=tags/1.0.0
371 like: /1000/tags/1.0.0/?at=tags/1.0.0
372 """
372 """
373
373
374 if ref_name and ref_name != 'tip':
374 if ref_name and ref_name != 'tip':
375 # NOTE(marcink): for svn the ref_name is actually the stored path, so we prefix it
375 # NOTE(marcink): for svn the ref_name is actually the stored path, so we prefix it
376 # for SVN we only do this magic prefix if it's root, .eg landing revision
376 # for SVN we only do this magic prefix if it's root, .eg landing revision
377 # of files link. If we are in the tree we don't need this since we traverse the url
377 # of files link. If we are in the tree we don't need this since we traverse the url
378 # that has everything stored
378 # that has everything stored
379 if f_path in ['', '/']:
379 if f_path in ['', '/']:
380 final_f_path = '/'.join([ref_name, f_path])
380 final_f_path = '/'.join([ref_name, f_path])
381
381
382 # SVN always needs a commit_id explicitly, without a named REF
382 # SVN always needs a commit_id explicitly, without a named REF
383 default_commit_id = commit_id
383 default_commit_id = commit_id
384 else:
384 else:
385 """
385 """
386 For git and mercurial we construct a new URL using the names instead of commit_id
386 For git and mercurial we construct a new URL using the names instead of commit_id
387 like: /master/some_path?at=master
387 like: /master/some_path?at=master
388 """
388 """
389 # We currently do not support branches with slashes
389 # We currently do not support branches with slashes
390 if '/' in ref_name:
390 if '/' in ref_name:
391 default_commit_id = commit_id
391 default_commit_id = commit_id
392 else:
392 else:
393 default_commit_id = ref_name
393 default_commit_id = ref_name
394
394
395 # sometimes we pass f_path as None, to indicate explicit no prefix,
395 # sometimes we pass f_path as None, to indicate explicit no prefix,
396 # we translate it to string to not have None
396 # we translate it to string to not have None
397 final_f_path = final_f_path or ''
397 final_f_path = final_f_path or ''
398
398
399 files_url = route_path(
399 files_url = route_path(
400 'repo_files',
400 'repo_files',
401 repo_name=db_repo_name,
401 repo_name=db_repo_name,
402 commit_id=default_commit_id,
402 commit_id=default_commit_id,
403 f_path=final_f_path,
403 f_path=final_f_path,
404 _query=query
404 _query=query
405 )
405 )
406 return files_url
406 return files_url
407
407
408
408
409 def code_highlight(code, lexer, formatter, use_hl_filter=False):
409 def code_highlight(code, lexer, formatter, use_hl_filter=False):
410 """
410 """
411 Lex ``code`` with ``lexer`` and format it with the formatter ``formatter``.
411 Lex ``code`` with ``lexer`` and format it with the formatter ``formatter``.
412
412
413 If ``outfile`` is given and a valid file object (an object
413 If ``outfile`` is given and a valid file object (an object
414 with a ``write`` method), the result will be written to it, otherwise
414 with a ``write`` method), the result will be written to it, otherwise
415 it is returned as a string.
415 it is returned as a string.
416 """
416 """
417 if use_hl_filter:
417 if use_hl_filter:
418 # add HL filter
418 # add HL filter
419 from rhodecode.lib.index import search_utils
419 from rhodecode.lib.index import search_utils
420 lexer.add_filter(search_utils.ElasticSearchHLFilter())
420 lexer.add_filter(search_utils.ElasticSearchHLFilter())
421 return pygments.format(pygments.lex(code, lexer), formatter)
421 return pygments.format(pygments.lex(code, lexer), formatter)
422
422
423
423
424 class CodeHtmlFormatter(HtmlFormatter):
424 class CodeHtmlFormatter(HtmlFormatter):
425 """
425 """
426 My code Html Formatter for source codes
426 My code Html Formatter for source codes
427 """
427 """
428
428
429 def wrap(self, source):
429 def wrap(self, source):
430 return self._wrap_div(self._wrap_pre(self._wrap_code(source)))
430 return self._wrap_div(self._wrap_pre(self._wrap_code(source)))
431
431
432 def _wrap_code(self, source):
432 def _wrap_code(self, source):
433 for cnt, it in enumerate(source):
433 for cnt, it in enumerate(source):
434 i, t = it
434 i, t = it
435 t = f'<div id="L{cnt+1}">{t}</div>'
435 t = f'<div id="L{cnt+1}">{t}</div>'
436 yield i, t
436 yield i, t
437
437
438 def _wrap_tablelinenos(self, inner):
438 def _wrap_tablelinenos(self, inner):
439 dummyoutfile = io.StringIO()
439 dummyoutfile = io.StringIO()
440 lncount = 0
440 lncount = 0
441 for t, line in inner:
441 for t, line in inner:
442 if t:
442 if t:
443 lncount += 1
443 lncount += 1
444 dummyoutfile.write(line)
444 dummyoutfile.write(line)
445
445
446 fl = self.linenostart
446 fl = self.linenostart
447 mw = len(str(lncount + fl - 1))
447 mw = len(str(lncount + fl - 1))
448 sp = self.linenospecial
448 sp = self.linenospecial
449 st = self.linenostep
449 st = self.linenostep
450 la = self.lineanchors
450 la = self.lineanchors
451 aln = self.anchorlinenos
451 aln = self.anchorlinenos
452 nocls = self.noclasses
452 nocls = self.noclasses
453 if sp:
453 if sp:
454 lines = []
454 lines = []
455
455
456 for i in range(fl, fl + lncount):
456 for i in range(fl, fl + lncount):
457 if i % st == 0:
457 if i % st == 0:
458 if i % sp == 0:
458 if i % sp == 0:
459 if aln:
459 if aln:
460 lines.append('<a href="#%s%d" class="special">%*d</a>' %
460 lines.append('<a href="#%s%d" class="special">%*d</a>' %
461 (la, i, mw, i))
461 (la, i, mw, i))
462 else:
462 else:
463 lines.append('<span class="special">%*d</span>' % (mw, i))
463 lines.append('<span class="special">%*d</span>' % (mw, i))
464 else:
464 else:
465 if aln:
465 if aln:
466 lines.append('<a href="#%s%d">%*d</a>' % (la, i, mw, i))
466 lines.append('<a href="#%s%d">%*d</a>' % (la, i, mw, i))
467 else:
467 else:
468 lines.append('%*d' % (mw, i))
468 lines.append('%*d' % (mw, i))
469 else:
469 else:
470 lines.append('')
470 lines.append('')
471 ls = '\n'.join(lines)
471 ls = '\n'.join(lines)
472 else:
472 else:
473 lines = []
473 lines = []
474 for i in range(fl, fl + lncount):
474 for i in range(fl, fl + lncount):
475 if i % st == 0:
475 if i % st == 0:
476 if aln:
476 if aln:
477 lines.append('<a href="#%s%d">%*d</a>' % (la, i, mw, i))
477 lines.append('<a href="#%s%d">%*d</a>' % (la, i, mw, i))
478 else:
478 else:
479 lines.append('%*d' % (mw, i))
479 lines.append('%*d' % (mw, i))
480 else:
480 else:
481 lines.append('')
481 lines.append('')
482 ls = '\n'.join(lines)
482 ls = '\n'.join(lines)
483
483
484 # in case you wonder about the seemingly redundant <div> here: since the
484 # in case you wonder about the seemingly redundant <div> here: since the
485 # content in the other cell also is wrapped in a div, some browsers in
485 # content in the other cell also is wrapped in a div, some browsers in
486 # some configurations seem to mess up the formatting...
486 # some configurations seem to mess up the formatting...
487 if nocls:
487 if nocls:
488 yield 0, ('<table class="%stable">' % self.cssclass +
488 yield 0, ('<table class="%stable">' % self.cssclass +
489 '<tr><td><div class="linenodiv" '
489 '<tr><td><div class="linenodiv" '
490 'style="background-color: #f0f0f0; padding-right: 10px">'
490 'style="background-color: #f0f0f0; padding-right: 10px">'
491 '<pre style="line-height: 125%">' +
491 '<pre style="line-height: 125%">' +
492 ls + '</pre></div></td><td id="hlcode" class="code">')
492 ls + '</pre></div></td><td id="hlcode" class="code">')
493 else:
493 else:
494 yield 0, ('<table class="%stable">' % self.cssclass +
494 yield 0, ('<table class="%stable">' % self.cssclass +
495 '<tr><td class="linenos"><div class="linenodiv"><pre>' +
495 '<tr><td class="linenos"><div class="linenodiv"><pre>' +
496 ls + '</pre></div></td><td id="hlcode" class="code">')
496 ls + '</pre></div></td><td id="hlcode" class="code">')
497 yield 0, dummyoutfile.getvalue()
497 yield 0, dummyoutfile.getvalue()
498 yield 0, '</td></tr></table>'
498 yield 0, '</td></tr></table>'
499
499
500
500
501 class SearchContentCodeHtmlFormatter(CodeHtmlFormatter):
501 class SearchContentCodeHtmlFormatter(CodeHtmlFormatter):
502 def __init__(self, **kw):
502 def __init__(self, **kw):
503 # only show these line numbers if set
503 # only show these line numbers if set
504 self.only_lines = kw.pop('only_line_numbers', [])
504 self.only_lines = kw.pop('only_line_numbers', [])
505 self.query_terms = kw.pop('query_terms', [])
505 self.query_terms = kw.pop('query_terms', [])
506 self.max_lines = kw.pop('max_lines', 5)
506 self.max_lines = kw.pop('max_lines', 5)
507 self.line_context = kw.pop('line_context', 3)
507 self.line_context = kw.pop('line_context', 3)
508 self.url = kw.pop('url', None)
508 self.url = kw.pop('url', None)
509
509
510 super(CodeHtmlFormatter, self).__init__(**kw)
510 super(CodeHtmlFormatter, self).__init__(**kw)
511
511
512 def _wrap_code(self, source):
512 def _wrap_code(self, source):
513 for cnt, it in enumerate(source):
513 for cnt, it in enumerate(source):
514 i, t = it
514 i, t = it
515 t = '<pre>%s</pre>' % t
515 t = '<pre>%s</pre>' % t
516 yield i, t
516 yield i, t
517
517
518 def _wrap_tablelinenos(self, inner):
518 def _wrap_tablelinenos(self, inner):
519 yield 0, '<table class="code-highlight %stable">' % self.cssclass
519 yield 0, '<table class="code-highlight %stable">' % self.cssclass
520
520
521 last_shown_line_number = 0
521 last_shown_line_number = 0
522 current_line_number = 1
522 current_line_number = 1
523
523
524 for t, line in inner:
524 for t, line in inner:
525 if not t:
525 if not t:
526 yield t, line
526 yield t, line
527 continue
527 continue
528
528
529 if current_line_number in self.only_lines:
529 if current_line_number in self.only_lines:
530 if last_shown_line_number + 1 != current_line_number:
530 if last_shown_line_number + 1 != current_line_number:
531 yield 0, '<tr>'
531 yield 0, '<tr>'
532 yield 0, '<td class="line">...</td>'
532 yield 0, '<td class="line">...</td>'
533 yield 0, '<td id="hlcode" class="code"></td>'
533 yield 0, '<td id="hlcode" class="code"></td>'
534 yield 0, '</tr>'
534 yield 0, '</tr>'
535
535
536 yield 0, '<tr>'
536 yield 0, '<tr>'
537 if self.url:
537 if self.url:
538 yield 0, '<td class="line"><a href="%s#L%i">%i</a></td>' % (
538 yield 0, '<td class="line"><a href="%s#L%i">%i</a></td>' % (
539 self.url, current_line_number, current_line_number)
539 self.url, current_line_number, current_line_number)
540 else:
540 else:
541 yield 0, '<td class="line"><a href="">%i</a></td>' % (
541 yield 0, '<td class="line"><a href="">%i</a></td>' % (
542 current_line_number)
542 current_line_number)
543 yield 0, '<td id="hlcode" class="code">' + line + '</td>'
543 yield 0, '<td id="hlcode" class="code">' + line + '</td>'
544 yield 0, '</tr>'
544 yield 0, '</tr>'
545
545
546 last_shown_line_number = current_line_number
546 last_shown_line_number = current_line_number
547
547
548 current_line_number += 1
548 current_line_number += 1
549
549
550 yield 0, '</table>'
550 yield 0, '</table>'
551
551
552
552
553 def hsv_to_rgb(h, s, v):
553 def hsv_to_rgb(h, s, v):
554 """ Convert hsv color values to rgb """
554 """ Convert hsv color values to rgb """
555
555
556 if s == 0.0:
556 if s == 0.0:
557 return v, v, v
557 return v, v, v
558 i = int(h * 6.0) # XXX assume int() truncates!
558 i = int(h * 6.0) # XXX assume int() truncates!
559 f = (h * 6.0) - i
559 f = (h * 6.0) - i
560 p = v * (1.0 - s)
560 p = v * (1.0 - s)
561 q = v * (1.0 - s * f)
561 q = v * (1.0 - s * f)
562 t = v * (1.0 - s * (1.0 - f))
562 t = v * (1.0 - s * (1.0 - f))
563 i = i % 6
563 i = i % 6
564 if i == 0:
564 if i == 0:
565 return v, t, p
565 return v, t, p
566 if i == 1:
566 if i == 1:
567 return q, v, p
567 return q, v, p
568 if i == 2:
568 if i == 2:
569 return p, v, t
569 return p, v, t
570 if i == 3:
570 if i == 3:
571 return p, q, v
571 return p, q, v
572 if i == 4:
572 if i == 4:
573 return t, p, v
573 return t, p, v
574 if i == 5:
574 if i == 5:
575 return v, p, q
575 return v, p, q
576
576
577
577
578 def unique_color_generator(n=10000, saturation=0.10, lightness=0.95):
578 def unique_color_generator(n=10000, saturation=0.10, lightness=0.95):
579 """
579 """
580 Generator for getting n of evenly distributed colors using
580 Generator for getting n of evenly distributed colors using
581 hsv color and golden ratio. It always return same order of colors
581 hsv color and golden ratio. It always return same order of colors
582
582
583 :param n: number of colors to generate
583 :param n: number of colors to generate
584 :param saturation: saturation of returned colors
584 :param saturation: saturation of returned colors
585 :param lightness: lightness of returned colors
585 :param lightness: lightness of returned colors
586 :returns: RGB tuple
586 :returns: RGB tuple
587 """
587 """
588
588
589 golden_ratio = 0.618033988749895
589 golden_ratio = 0.618033988749895
590 h = 0.22717784590367374
590 h = 0.22717784590367374
591
591
592 for _ in range(n):
592 for _ in range(n):
593 h += golden_ratio
593 h += golden_ratio
594 h %= 1
594 h %= 1
595 HSV_tuple = [h, saturation, lightness]
595 HSV_tuple = [h, saturation, lightness]
596 RGB_tuple = hsv_to_rgb(*HSV_tuple)
596 RGB_tuple = hsv_to_rgb(*HSV_tuple)
597 yield [str(int(x * 256)) for x in RGB_tuple]
597 yield [str(int(x * 256)) for x in RGB_tuple]
598
598
599
599
600 def color_hasher(n=10000, saturation=0.10, lightness=0.95):
600 def color_hasher(n=10000, saturation=0.10, lightness=0.95):
601 """
601 """
602 Returns a function which when called with an argument returns a unique
602 Returns a function which when called with an argument returns a unique
603 color for that argument, eg.
603 color for that argument, eg.
604
604
605 :param n: number of colors to generate
605 :param n: number of colors to generate
606 :param saturation: saturation of returned colors
606 :param saturation: saturation of returned colors
607 :param lightness: lightness of returned colors
607 :param lightness: lightness of returned colors
608 :returns: css RGB string
608 :returns: css RGB string
609
609
610 >>> color_hash = color_hasher()
610 >>> color_hash = color_hasher()
611 >>> color_hash('hello')
611 >>> color_hash('hello')
612 'rgb(34, 12, 59)'
612 'rgb(34, 12, 59)'
613 >>> color_hash('hello')
613 >>> color_hash('hello')
614 'rgb(34, 12, 59)'
614 'rgb(34, 12, 59)'
615 >>> color_hash('other')
615 >>> color_hash('other')
616 'rgb(90, 224, 159)'
616 'rgb(90, 224, 159)'
617 """
617 """
618
618
619 color_dict = {}
619 color_dict = {}
620 cgenerator = unique_color_generator(
620 cgenerator = unique_color_generator(
621 saturation=saturation, lightness=lightness)
621 saturation=saturation, lightness=lightness)
622
622
623 def get_color_string(thing):
623 def get_color_string(thing):
624 if thing in color_dict:
624 if thing in color_dict:
625 col = color_dict[thing]
625 col = color_dict[thing]
626 else:
626 else:
627 col = color_dict[thing] = next(cgenerator)
627 col = color_dict[thing] = next(cgenerator)
628 return "rgb(%s)" % (', '.join(col))
628 return "rgb(%s)" % (', '.join(col))
629
629
630 return get_color_string
630 return get_color_string
631
631
632
632
633 def get_lexer_safe(mimetype=None, filepath=None):
633 def get_lexer_safe(mimetype=None, filepath=None):
634 """
634 """
635 Tries to return a relevant pygments lexer using mimetype/filepath name,
635 Tries to return a relevant pygments lexer using mimetype/filepath name,
636 defaulting to plain text if none could be found
636 defaulting to plain text if none could be found
637 """
637 """
638 lexer = None
638 lexer = None
639 try:
639 try:
640 if mimetype:
640 if mimetype:
641 lexer = get_lexer_for_mimetype(mimetype)
641 lexer = get_lexer_for_mimetype(mimetype)
642 if not lexer:
642 if not lexer:
643 lexer = get_lexer_for_filename(filepath)
643 lexer = get_lexer_for_filename(filepath)
644 except pygments.util.ClassNotFound:
644 except pygments.util.ClassNotFound:
645 pass
645 pass
646
646
647 if not lexer:
647 if not lexer:
648 lexer = get_lexer_by_name('text')
648 lexer = get_lexer_by_name('text')
649
649
650 return lexer
650 return lexer
651
651
652
652
653 def get_lexer_for_filenode(filenode):
653 def get_lexer_for_filenode(filenode):
654 lexer = get_custom_lexer(filenode.extension) or filenode.lexer
654 lexer = get_custom_lexer(filenode.extension) or filenode.lexer
655 return lexer
655 return lexer
656
656
657
657
658 def pygmentize(filenode, **kwargs):
658 def pygmentize(filenode, **kwargs):
659 """
659 """
660 pygmentize function using pygments
660 pygmentize function using pygments
661
661
662 :param filenode:
662 :param filenode:
663 """
663 """
664 lexer = get_lexer_for_filenode(filenode)
664 lexer = get_lexer_for_filenode(filenode)
665 return literal(code_highlight(filenode.content, lexer,
665 return literal(code_highlight(filenode.content, lexer,
666 CodeHtmlFormatter(**kwargs)))
666 CodeHtmlFormatter(**kwargs)))
667
667
668
668
669 def is_following_repo(repo_name, user_id):
669 def is_following_repo(repo_name, user_id):
670 from rhodecode.model.scm import ScmModel
670 from rhodecode.model.scm import ScmModel
671 return ScmModel().is_following_repo(repo_name, user_id)
671 return ScmModel().is_following_repo(repo_name, user_id)
672
672
673
673
674 class _Message(object):
674 class _Message(object):
675 """A message returned by ``Flash.pop_messages()``.
675 """A message returned by ``Flash.pop_messages()``.
676
676
677 Converting the message to a string returns the message text. Instances
677 Converting the message to a string returns the message text. Instances
678 also have the following attributes:
678 also have the following attributes:
679
679
680 * ``message``: the message text.
680 * ``message``: the message text.
681 * ``category``: the category specified when the message was created.
681 * ``category``: the category specified when the message was created.
682 """
682 """
683
683
684 def __init__(self, category, message, sub_data=None):
684 def __init__(self, category, message, sub_data=None):
685 self.category = category
685 self.category = category
686 self.message = message
686 self.message = message
687 self.sub_data = sub_data or {}
687 self.sub_data = sub_data or {}
688
688
689 def __str__(self):
689 def __str__(self):
690 return self.message
690 return self.message
691
691
692 __unicode__ = __str__
692 __unicode__ = __str__
693
693
694 def __html__(self):
694 def __html__(self):
695 return escape(safe_str(self.message))
695 return escape(safe_str(self.message))
696
696
697
697
698 class Flash(object):
698 class Flash(object):
699 # List of allowed categories. If None, allow any category.
699 # List of allowed categories. If None, allow any category.
700 categories = ["warning", "notice", "error", "success"]
700 categories = ["warning", "notice", "error", "success"]
701
701
702 # Default category if none is specified.
702 # Default category if none is specified.
703 default_category = "notice"
703 default_category = "notice"
704
704
705 def __init__(self, session_key="flash", categories=None,
705 def __init__(self, session_key="flash", categories=None,
706 default_category=None):
706 default_category=None):
707 """
707 """
708 Instantiate a ``Flash`` object.
708 Instantiate a ``Flash`` object.
709
709
710 ``session_key`` is the key to save the messages under in the user's
710 ``session_key`` is the key to save the messages under in the user's
711 session.
711 session.
712
712
713 ``categories`` is an optional list which overrides the default list
713 ``categories`` is an optional list which overrides the default list
714 of categories.
714 of categories.
715
715
716 ``default_category`` overrides the default category used for messages
716 ``default_category`` overrides the default category used for messages
717 when none is specified.
717 when none is specified.
718 """
718 """
719 self.session_key = session_key
719 self.session_key = session_key
720 if categories is not None:
720 if categories is not None:
721 self.categories = categories
721 self.categories = categories
722 if default_category is not None:
722 if default_category is not None:
723 self.default_category = default_category
723 self.default_category = default_category
724 if self.categories and self.default_category not in self.categories:
724 if self.categories and self.default_category not in self.categories:
725 raise ValueError(
725 raise ValueError(
726 "unrecognized default category %r" % (self.default_category,))
726 "unrecognized default category %r" % (self.default_category,))
727
727
728 def pop_messages(self, session=None, request=None):
728 def pop_messages(self, session=None, request=None):
729 """
729 """
730 Return all accumulated messages and delete them from the session.
730 Return all accumulated messages and delete them from the session.
731
731
732 The return value is a list of ``Message`` objects.
732 The return value is a list of ``Message`` objects.
733 """
733 """
734 messages = []
734 messages = []
735
735
736 if not session:
736 if not session:
737 if not request:
737 if not request:
738 request = get_current_request()
738 request = get_current_request()
739 session = request.session
739 session = request.session
740
740
741 # Pop the 'old' pylons flash messages. They are tuples of the form
741 # Pop the 'old' pylons flash messages. They are tuples of the form
742 # (category, message)
742 # (category, message)
743 for cat, msg in session.pop(self.session_key, []):
743 for cat, msg in session.pop(self.session_key, []):
744 messages.append(_Message(cat, msg))
744 messages.append(_Message(cat, msg))
745
745
746 # Pop the 'new' pyramid flash messages for each category as list
746 # Pop the 'new' pyramid flash messages for each category as list
747 # of strings.
747 # of strings.
748 for cat in self.categories:
748 for cat in self.categories:
749 for msg in session.pop_flash(queue=cat):
749 for msg in session.pop_flash(queue=cat):
750 sub_data = {}
750 sub_data = {}
751 if hasattr(msg, 'rsplit'):
751 if hasattr(msg, 'rsplit'):
752 flash_data = msg.rsplit('|DELIM|', 1)
752 flash_data = msg.rsplit('|DELIM|', 1)
753 org_message = flash_data[0]
753 org_message = flash_data[0]
754 if len(flash_data) > 1:
754 if len(flash_data) > 1:
755 sub_data = json.loads(flash_data[1])
755 sub_data = json.loads(flash_data[1])
756 else:
756 else:
757 org_message = msg
757 org_message = msg
758
758
759 messages.append(_Message(cat, org_message, sub_data=sub_data))
759 messages.append(_Message(cat, org_message, sub_data=sub_data))
760
760
761 # Map messages from the default queue to the 'notice' category.
761 # Map messages from the default queue to the 'notice' category.
762 for msg in session.pop_flash():
762 for msg in session.pop_flash():
763 messages.append(_Message('notice', msg))
763 messages.append(_Message('notice', msg))
764
764
765 session.save()
765 session.save()
766 return messages
766 return messages
767
767
768 def json_alerts(self, session=None, request=None):
768 def json_alerts(self, session=None, request=None):
769 payloads = []
769 payloads = []
770 messages = flash.pop_messages(session=session, request=request) or []
770 messages = flash.pop_messages(session=session, request=request) or []
771 for message in messages:
771 for message in messages:
772 payloads.append({
772 payloads.append({
773 'message': {
773 'message': {
774 'message': '{}'.format(message.message),
774 'message': '{}'.format(message.message),
775 'level': message.category,
775 'level': message.category,
776 'force': True,
776 'force': True,
777 'subdata': message.sub_data
777 'subdata': message.sub_data
778 }
778 }
779 })
779 })
780 return safe_str(json.dumps(payloads))
780 return safe_str(json.dumps(payloads))
781
781
782 def __call__(self, message, category=None, ignore_duplicate=True,
782 def __call__(self, message, category=None, ignore_duplicate=True,
783 session=None, request=None):
783 session=None, request=None):
784
784
785 if not session:
785 if not session:
786 if not request:
786 if not request:
787 request = get_current_request()
787 request = get_current_request()
788 session = request.session
788 session = request.session
789
789
790 session.flash(
790 session.flash(
791 message, queue=category, allow_duplicate=not ignore_duplicate)
791 message, queue=category, allow_duplicate=not ignore_duplicate)
792
792
793
793
794 flash = Flash()
794 flash = Flash()
795
795
796 #==============================================================================
796 #==============================================================================
797 # SCM FILTERS available via h.
797 # SCM FILTERS available via h.
798 #==============================================================================
798 #==============================================================================
799 from rhodecode.lib.vcs.utils import author_name, author_email
799 from rhodecode.lib.vcs.utils import author_name, author_email
800 from rhodecode.lib.utils2 import age, age_from_seconds
800 from rhodecode.lib.utils2 import age, age_from_seconds
801 from rhodecode.model.db import User, ChangesetStatus
801 from rhodecode.model.db import User, ChangesetStatus
802
802
803
803
804 email = author_email
804 email = author_email
805
805
806
806
807 def capitalize(raw_text):
807 def capitalize(raw_text):
808 return raw_text.capitalize()
808 return raw_text.capitalize()
809
809
810
810
811 def short_id(long_id):
811 def short_id(long_id):
812 return long_id[:12]
812 return long_id[:12]
813
813
814
814
815 def hide_credentials(url):
815 def hide_credentials(url):
816 from rhodecode.lib.utils2 import credentials_filter
816 from rhodecode.lib.utils2 import credentials_filter
817 return credentials_filter(url)
817 return credentials_filter(url)
818
818
819 import zoneinfo
819 import zoneinfo
820 import tzlocal
820 import tzlocal
821 local_timezone = tzlocal.get_localzone()
821 local_timezone = tzlocal.get_localzone()
822
822
823
823
824 def get_timezone(datetime_iso, time_is_local=False):
824 def get_timezone(datetime_iso, time_is_local=False):
825 tzinfo = '+00:00'
825 tzinfo = '+00:00'
826
826
827 # detect if we have a timezone info, otherwise, add it
827 # detect if we have a timezone info, otherwise, add it
828 if time_is_local and isinstance(datetime_iso, datetime) and not datetime_iso.tzinfo:
828 if time_is_local and isinstance(datetime_iso, datetime) and not datetime_iso.tzinfo:
829 force_timezone = os.environ.get('RC_TIMEZONE', '')
829 force_timezone = os.environ.get('RC_TIMEZONE', '')
830 if force_timezone:
830 if force_timezone:
831 force_timezone = zoneinfo.ZoneInfo(force_timezone)
831 force_timezone = zoneinfo.ZoneInfo(force_timezone)
832 timezone = force_timezone or local_timezone
832 timezone = force_timezone or local_timezone
833
833
834 offset = datetime_iso.replace(tzinfo=timezone).strftime('%z')
834 offset = datetime_iso.replace(tzinfo=timezone).strftime('%z')
835 tzinfo = '{}:{}'.format(offset[:-2], offset[-2:])
835 tzinfo = '{}:{}'.format(offset[:-2], offset[-2:])
836 return tzinfo
836 return tzinfo
837
837
838
838
839 def age_component(datetime_iso, value=None, time_is_local=False, tooltip=True):
839 def age_component(datetime_iso, value=None, time_is_local=False, tooltip=True):
840 title = value or format_date(datetime_iso)
840 title = value or format_date(datetime_iso)
841 tzinfo = get_timezone(datetime_iso, time_is_local=time_is_local)
841 tzinfo = get_timezone(datetime_iso, time_is_local=time_is_local)
842
842
843 return literal(
843 return literal(
844 '<time class="timeago {cls}" title="{tt_title}" datetime="{dt}{tzinfo}">{title}</time>'.format(
844 '<time class="timeago {cls}" title="{tt_title}" datetime="{dt}{tzinfo}">{title}</time>'.format(
845 cls='tooltip' if tooltip else '',
845 cls='tooltip' if tooltip else '',
846 tt_title=('{title}{tzinfo}'.format(title=title, tzinfo=tzinfo)) if tooltip else '',
846 tt_title=('{title}{tzinfo}'.format(title=title, tzinfo=tzinfo)) if tooltip else '',
847 title=title, dt=datetime_iso, tzinfo=tzinfo
847 title=title, dt=datetime_iso, tzinfo=tzinfo
848 ))
848 ))
849
849
850
850
851 def _shorten_commit_id(commit_id, commit_len=None):
851 def _shorten_commit_id(commit_id, commit_len=None):
852 if commit_len is None:
852 if commit_len is None:
853 request = get_current_request()
853 request = get_current_request()
854 commit_len = request.call_context.visual.show_sha_length
854 commit_len = request.call_context.visual.show_sha_length
855 return commit_id[:commit_len]
855 return commit_id[:commit_len]
856
856
857
857
858 def show_id(commit, show_idx=None, commit_len=None):
858 def show_id(commit, show_idx=None, commit_len=None):
859 """
859 """
860 Configurable function that shows ID
860 Configurable function that shows ID
861 by default it's r123:fffeeefffeee
861 by default it's r123:fffeeefffeee
862
862
863 :param commit: commit instance
863 :param commit: commit instance
864 """
864 """
865 if show_idx is None:
865 if show_idx is None:
866 request = get_current_request()
866 request = get_current_request()
867 show_idx = request.call_context.visual.show_revision_number
867 show_idx = request.call_context.visual.show_revision_number
868
868
869 raw_id = _shorten_commit_id(commit.raw_id, commit_len=commit_len)
869 raw_id = _shorten_commit_id(commit.raw_id, commit_len=commit_len)
870 if show_idx:
870 if show_idx:
871 return 'r%s:%s' % (commit.idx, raw_id)
871 return 'r%s:%s' % (commit.idx, raw_id)
872 else:
872 else:
873 return '%s' % (raw_id, )
873 return '%s' % (raw_id, )
874
874
875
875
876 def format_date(date):
876 def format_date(date):
877 """
877 """
878 use a standardized formatting for dates used in RhodeCode
878 use a standardized formatting for dates used in RhodeCode
879
879
880 :param date: date/datetime object
880 :param date: date/datetime object
881 :return: formatted date
881 :return: formatted date
882 """
882 """
883
883
884 if date:
884 if date:
885 _fmt = "%a, %d %b %Y %H:%M:%S"
885 _fmt = "%a, %d %b %Y %H:%M:%S"
886 return safe_str(date.strftime(_fmt))
886 return safe_str(date.strftime(_fmt))
887
887
888 return ""
888 return ""
889
889
890
890
891 class _RepoChecker(object):
891 class _RepoChecker(object):
892
892
893 def __init__(self, backend_alias):
893 def __init__(self, backend_alias):
894 self._backend_alias = backend_alias
894 self._backend_alias = backend_alias
895
895
896 def __call__(self, repository):
896 def __call__(self, repository):
897 if hasattr(repository, 'alias'):
897 if hasattr(repository, 'alias'):
898 _type = repository.alias
898 _type = repository.alias
899 elif hasattr(repository, 'repo_type'):
899 elif hasattr(repository, 'repo_type'):
900 _type = repository.repo_type
900 _type = repository.repo_type
901 else:
901 else:
902 _type = repository
902 _type = repository
903 return _type == self._backend_alias
903 return _type == self._backend_alias
904
904
905
905
906 is_git = _RepoChecker('git')
906 is_git = _RepoChecker('git')
907 is_hg = _RepoChecker('hg')
907 is_hg = _RepoChecker('hg')
908 is_svn = _RepoChecker('svn')
908 is_svn = _RepoChecker('svn')
909
909
910
910
911 def get_repo_type_by_name(repo_name):
911 def get_repo_type_by_name(repo_name):
912 repo = Repository.get_by_repo_name(repo_name)
912 repo = Repository.get_by_repo_name(repo_name)
913 if repo:
913 if repo:
914 return repo.repo_type
914 return repo.repo_type
915
915
916
916
917 def is_svn_without_proxy(repository):
917 def is_svn_without_proxy(repository):
918 if is_svn(repository):
918 if is_svn(repository):
919 from rhodecode.model.settings import VcsSettingsModel
919 from rhodecode.model.settings import VcsSettingsModel
920 conf = VcsSettingsModel().get_ui_settings_as_config_obj()
920 conf = VcsSettingsModel().get_ui_settings_as_config_obj()
921 return not str2bool(conf.get('vcs_svn_proxy', 'http_requests_enabled'))
921 return not str2bool(conf.get('vcs_svn_proxy', 'http_requests_enabled'))
922 return False
922 return False
923
923
924
924
925 def discover_user(author):
925 def discover_user(author):
926 """
926 """
927 Tries to discover RhodeCode User based on the author string. Author string
927 Tries to discover RhodeCode User based on the author string. Author string
928 is typically `FirstName LastName <email@address.com>`
928 is typically `FirstName LastName <email@address.com>`
929 """
929 """
930
930
931 # if author is already an instance use it for extraction
931 # if author is already an instance use it for extraction
932 if isinstance(author, User):
932 if isinstance(author, User):
933 return author
933 return author
934
934
935 # Valid email in the attribute passed, see if they're in the system
935 # Valid email in the attribute passed, see if they're in the system
936 _email = author_email(author)
936 _email = author_email(author)
937 if _email != '':
937 if _email != '':
938 user = User.get_by_email(_email, case_insensitive=True, cache=True)
938 user = User.get_by_email(_email, case_insensitive=True, cache=True)
939 if user is not None:
939 if user is not None:
940 return user
940 return user
941
941
942 # Maybe it's a username, we try to extract it and fetch by username ?
942 # Maybe it's a username, we try to extract it and fetch by username ?
943 _author = author_name(author)
943 _author = author_name(author)
944 user = User.get_by_username(_author, case_insensitive=True, cache=True)
944 user = User.get_by_username(_author, case_insensitive=True, cache=True)
945 if user is not None:
945 if user is not None:
946 return user
946 return user
947
947
948 return None
948 return None
949
949
950
950
951 def email_or_none(author):
951 def email_or_none(author):
952 # extract email from the commit string
952 # extract email from the commit string
953 _email = author_email(author)
953 _email = author_email(author)
954
954
955 # If we have an email, use it, otherwise
955 # If we have an email, use it, otherwise
956 # see if it contains a username we can get an email from
956 # see if it contains a username we can get an email from
957 if _email != '':
957 if _email != '':
958 return _email
958 return _email
959 else:
959 else:
960 user = User.get_by_username(
960 user = User.get_by_username(
961 author_name(author), case_insensitive=True, cache=True)
961 author_name(author), case_insensitive=True, cache=True)
962
962
963 if user is not None:
963 if user is not None:
964 return user.email
964 return user.email
965
965
966 # No valid email, not a valid user in the system, none!
966 # No valid email, not a valid user in the system, none!
967 return None
967 return None
968
968
969
969
970 def link_to_user(author, length=0, **kwargs):
970 def link_to_user(author, length=0, **kwargs):
971 user = discover_user(author)
971 user = discover_user(author)
972 # user can be None, but if we have it already it means we can re-use it
972 # user can be None, but if we have it already it means we can re-use it
973 # in the person() function, so we save 1 intensive-query
973 # in the person() function, so we save 1 intensive-query
974 if user:
974 if user:
975 author = user
975 author = user
976
976
977 display_person = person(author, 'username_or_name_or_email')
977 display_person = person(author, 'username_or_name_or_email')
978 if length:
978 if length:
979 display_person = shorter(display_person, length)
979 display_person = shorter(display_person, length)
980
980
981 if user and user.username != user.DEFAULT_USER:
981 if user and user.username != user.DEFAULT_USER:
982 return link_to(
982 return link_to(
983 escape(display_person),
983 escape(display_person),
984 route_path('user_profile', username=user.username),
984 route_path('user_profile', username=user.username),
985 **kwargs)
985 **kwargs)
986 else:
986 else:
987 return escape(display_person)
987 return escape(display_person)
988
988
989
989
990 def link_to_group(users_group_name, **kwargs):
990 def link_to_group(users_group_name, **kwargs):
991 return link_to(
991 return link_to(
992 escape(users_group_name),
992 escape(users_group_name),
993 route_path('user_group_profile', user_group_name=users_group_name),
993 route_path('user_group_profile', user_group_name=users_group_name),
994 **kwargs)
994 **kwargs)
995
995
996
996
997 def person(author, show_attr="username_and_name"):
997 def person(author, show_attr="username_and_name"):
998 user = discover_user(author)
998 user = discover_user(author)
999 if user:
999 if user:
1000 return getattr(user, show_attr)
1000 return getattr(user, show_attr)
1001 else:
1001 else:
1002 _author = author_name(author)
1002 _author = author_name(author)
1003 _email = email(author)
1003 _email = email(author)
1004 return _author or _email
1004 return _author or _email
1005
1005
1006
1006
1007 def author_string(email):
1007 def author_string(email):
1008 if email:
1008 if email:
1009 user = User.get_by_email(email, case_insensitive=True, cache=True)
1009 user = User.get_by_email(email, case_insensitive=True, cache=True)
1010 if user:
1010 if user:
1011 if user.first_name or user.last_name:
1011 if user.first_name or user.last_name:
1012 return '%s %s &lt;%s&gt;' % (
1012 return '%s %s &lt;%s&gt;' % (
1013 user.first_name, user.last_name, email)
1013 user.first_name, user.last_name, email)
1014 else:
1014 else:
1015 return email
1015 return email
1016 else:
1016 else:
1017 return email
1017 return email
1018 else:
1018 else:
1019 return None
1019 return None
1020
1020
1021
1021
1022 def person_by_id(id_, show_attr="username_and_name"):
1022 def person_by_id(id_, show_attr="username_and_name"):
1023 # attr to return from fetched user
1023 # attr to return from fetched user
1024 def person_getter(usr):
1024 def person_getter(usr):
1025 return getattr(usr, show_attr)
1025 return getattr(usr, show_attr)
1026
1026
1027 #maybe it's an ID ?
1027 #maybe it's an ID ?
1028 if str(id_).isdigit() or isinstance(id_, int):
1028 if str(id_).isdigit() or isinstance(id_, int):
1029 id_ = int(id_)
1029 id_ = int(id_)
1030 user = User.get(id_)
1030 user = User.get(id_)
1031 if user is not None:
1031 if user is not None:
1032 return person_getter(user)
1032 return person_getter(user)
1033 return id_
1033 return id_
1034
1034
1035
1035
1036 def gravatar_with_user(request, author, show_disabled=False, tooltip=False):
1036 def gravatar_with_user(request, author, show_disabled=False, tooltip=False):
1037 _render = request.get_partial_renderer('rhodecode:templates/base/base.mako')
1037 _render = request.get_partial_renderer('rhodecode:templates/base/base.mako')
1038 return _render('gravatar_with_user', author, show_disabled=show_disabled, tooltip=tooltip)
1038 return _render('gravatar_with_user', author, show_disabled=show_disabled, tooltip=tooltip)
1039
1039
1040
1040
1041 tags_paterns = OrderedDict((
1041 tags_paterns = OrderedDict((
1042 ('lang', (re.compile(r'\[(lang|language)\ \=\&gt;\ *([a-zA-Z\-\/\#\+\.]*)\]'),
1042 ('lang', (re.compile(r'\[(lang|language)\ \=\&gt;\ *([a-zA-Z\-\/\#\+\.]*)\]'),
1043 '<div class="metatag" tag="lang">\\2</div>')),
1043 '<div class="metatag" tag="lang">\\2</div>')),
1044
1044
1045 ('see', (re.compile(r'\[see\ \=\&gt;\ *([a-zA-Z0-9\/\=\?\&amp;\ \:\/\.\-]*)\]'),
1045 ('see', (re.compile(r'\[see\ \=\&gt;\ *([a-zA-Z0-9\/\=\?\&amp;\ \:\/\.\-]*)\]'),
1046 '<div class="metatag" tag="see">see: \\1 </div>')),
1046 '<div class="metatag" tag="see">see: \\1 </div>')),
1047
1047
1048 ('url', (re.compile(r'\[url\ \=\&gt;\ \[([a-zA-Z0-9\ \.\-\_]+)\]\((http://|https://|/)(.*?)\)\]'),
1048 ('url', (re.compile(r'\[url\ \=\&gt;\ \[([a-zA-Z0-9\ \.\-\_]+)\]\((http://|https://|/)(.*?)\)\]'),
1049 '<div class="metatag" tag="url"> <a href="\\2\\3">\\1</a> </div>')),
1049 '<div class="metatag" tag="url"> <a href="\\2\\3">\\1</a> </div>')),
1050
1050
1051 ('license', (re.compile(r'\[license\ \=\&gt;\ *([a-zA-Z0-9\/\=\?\&amp;\ \:\/\.\-]*)\]'),
1051 ('license', (re.compile(r'\[license\ \=\&gt;\ *([a-zA-Z0-9\/\=\?\&amp;\ \:\/\.\-]*)\]'),
1052 '<div class="metatag" tag="license"><a href="http:\/\/www.opensource.org/licenses/\\1">\\1</a></div>')),
1052 '<div class="metatag" tag="license"><a href="http:\/\/www.opensource.org/licenses/\\1">\\1</a></div>')),
1053
1053
1054 ('ref', (re.compile(r'\[(requires|recommends|conflicts|base)\ \=\&gt;\ *([a-zA-Z0-9\-\/]*)\]'),
1054 ('ref', (re.compile(r'\[(requires|recommends|conflicts|base)\ \=\&gt;\ *([a-zA-Z0-9\-\/]*)\]'),
1055 '<div class="metatag" tag="ref \\1">\\1: <a href="/\\2">\\2</a></div>')),
1055 '<div class="metatag" tag="ref \\1">\\1: <a href="/\\2">\\2</a></div>')),
1056
1056
1057 ('state', (re.compile(r'\[(stable|featured|stale|dead|dev|deprecated)\]'),
1057 ('state', (re.compile(r'\[(stable|featured|stale|dead|dev|deprecated)\]'),
1058 '<div class="metatag" tag="state \\1">\\1</div>')),
1058 '<div class="metatag" tag="state \\1">\\1</div>')),
1059
1059
1060 # label in grey
1060 # label in grey
1061 ('label', (re.compile(r'\[([a-z]+)\]'),
1061 ('label', (re.compile(r'\[([a-z]+)\]'),
1062 '<div class="metatag" tag="label">\\1</div>')),
1062 '<div class="metatag" tag="label">\\1</div>')),
1063
1063
1064 # generic catch all in grey
1064 # generic catch all in grey
1065 ('generic', (re.compile(r'\[([a-zA-Z0-9\.\-\_]+)\]'),
1065 ('generic', (re.compile(r'\[([a-zA-Z0-9\.\-\_]+)\]'),
1066 '<div class="metatag" tag="generic">\\1</div>')),
1066 '<div class="metatag" tag="generic">\\1</div>')),
1067 ))
1067 ))
1068
1068
1069
1069
1070 def extract_metatags(value):
1070 def extract_metatags(value):
1071 """
1071 """
1072 Extract supported meta-tags from given text value
1072 Extract supported meta-tags from given text value
1073 """
1073 """
1074 tags = []
1074 tags = []
1075 if not value:
1075 if not value:
1076 return tags, ''
1076 return tags, ''
1077
1077
1078 for key, val in list(tags_paterns.items()):
1078 for key, val in list(tags_paterns.items()):
1079 pat, replace_html = val
1079 pat, replace_html = val
1080 tags.extend([(key, x.group()) for x in pat.finditer(value)])
1080 tags.extend([(key, x.group()) for x in pat.finditer(value)])
1081 value = pat.sub('', value)
1081 value = pat.sub('', value)
1082
1082
1083 return tags, value
1083 return tags, value
1084
1084
1085
1085
1086 def style_metatag(tag_type, value):
1086 def style_metatag(tag_type, value):
1087 """
1087 """
1088 converts tags from value into html equivalent
1088 converts tags from value into html equivalent
1089 """
1089 """
1090 if not value:
1090 if not value:
1091 return ''
1091 return ''
1092
1092
1093 html_value = value
1093 html_value = value
1094 tag_data = tags_paterns.get(tag_type)
1094 tag_data = tags_paterns.get(tag_type)
1095 if tag_data:
1095 if tag_data:
1096 pat, replace_html = tag_data
1096 pat, replace_html = tag_data
1097 # convert to plain `str` instead of a markup tag to be used in
1097 # convert to plain `str` instead of a markup tag to be used in
1098 # regex expressions. safe_str doesn't work here
1098 # regex expressions. safe_str doesn't work here
1099 html_value = pat.sub(replace_html, value)
1099 html_value = pat.sub(replace_html, value)
1100
1100
1101 return html_value
1101 return html_value
1102
1102
1103
1103
1104 def bool2icon(value, show_at_false=True):
1104 def bool2icon(value, show_at_false=True):
1105 """
1105 """
1106 Returns boolean value of a given value, represented as html element with
1106 Returns boolean value of a given value, represented as html element with
1107 classes that will represent icons
1107 classes that will represent icons
1108
1108
1109 :param value: given value to convert to html node
1109 :param value: given value to convert to html node
1110 """
1110 """
1111
1111
1112 if value: # does bool conversion
1112 if value: # does bool conversion
1113 return HTML.tag('i', class_="icon-true", title='True')
1113 return HTML.tag('i', class_="icon-true", title='True')
1114 else: # not true as bool
1114 else: # not true as bool
1115 if show_at_false:
1115 if show_at_false:
1116 return HTML.tag('i', class_="icon-false", title='False')
1116 return HTML.tag('i', class_="icon-false", title='False')
1117 return HTML.tag('i')
1117 return HTML.tag('i')
1118
1118
1119
1119
1120 def b64(inp):
1120 def b64(inp):
1121 return base64.b64encode(safe_bytes(inp))
1121 return base64.b64encode(safe_bytes(inp))
1122
1122
1123 #==============================================================================
1123 #==============================================================================
1124 # PERMS
1124 # PERMS
1125 #==============================================================================
1125 #==============================================================================
1126 from rhodecode.lib.auth import (
1126 from rhodecode.lib.auth import (
1127 HasPermissionAny, HasPermissionAll,
1127 HasPermissionAny, HasPermissionAll,
1128 HasRepoPermissionAny, HasRepoPermissionAll, HasRepoGroupPermissionAll,
1128 HasRepoPermissionAny, HasRepoPermissionAll, HasRepoGroupPermissionAll,
1129 HasRepoGroupPermissionAny, HasRepoPermissionAnyApi, get_csrf_token,
1129 HasRepoGroupPermissionAny, HasRepoPermissionAnyApi, get_csrf_token,
1130 csrf_token_key, AuthUser)
1130 csrf_token_key, AuthUser)
1131
1131
1132
1132
1133 #==============================================================================
1133 #==============================================================================
1134 # GRAVATAR URL
1134 # GRAVATAR URL
1135 #==============================================================================
1135 #==============================================================================
1136 class InitialsGravatar(object):
1136 class InitialsGravatar(object):
1137 def __init__(self, email_address, first_name, last_name, size=30,
1137 def __init__(self, email_address, first_name, last_name, size=30,
1138 background=None, text_color='#fff'):
1138 background=None, text_color='#fff'):
1139 self.size = size
1139 self.size = size
1140 self.first_name = first_name
1140 self.first_name = first_name
1141 self.last_name = last_name
1141 self.last_name = last_name
1142 self.email_address = email_address
1142 self.email_address = email_address
1143 self.background = background or self.str2color(email_address)
1143 self.background = background or self.str2color(email_address)
1144 self.text_color = text_color
1144 self.text_color = text_color
1145
1145
1146 def get_color_bank(self):
1146 def get_color_bank(self):
1147 """
1147 """
1148 returns a predefined list of colors that gravatars can use.
1148 returns a predefined list of colors that gravatars can use.
1149 Those are randomized distinct colors that guarantee readability and
1149 Those are randomized distinct colors that guarantee readability and
1150 uniqueness.
1150 uniqueness.
1151
1151
1152 generated with: http://phrogz.net/css/distinct-colors.html
1152 generated with: http://phrogz.net/css/distinct-colors.html
1153 """
1153 """
1154 return [
1154 return [
1155 '#bf3030', '#a67f53', '#00ff00', '#5989b3', '#392040', '#d90000',
1155 '#bf3030', '#a67f53', '#00ff00', '#5989b3', '#392040', '#d90000',
1156 '#402910', '#204020', '#79baf2', '#a700b3', '#bf6060', '#7f5320',
1156 '#402910', '#204020', '#79baf2', '#a700b3', '#bf6060', '#7f5320',
1157 '#008000', '#003059', '#ee00ff', '#ff0000', '#8c4b00', '#007300',
1157 '#008000', '#003059', '#ee00ff', '#ff0000', '#8c4b00', '#007300',
1158 '#005fb3', '#de73e6', '#ff4040', '#ffaa00', '#3df255', '#203140',
1158 '#005fb3', '#de73e6', '#ff4040', '#ffaa00', '#3df255', '#203140',
1159 '#47004d', '#591616', '#664400', '#59b365', '#0d2133', '#83008c',
1159 '#47004d', '#591616', '#664400', '#59b365', '#0d2133', '#83008c',
1160 '#592d2d', '#bf9f60', '#73e682', '#1d3f73', '#73006b', '#402020',
1160 '#592d2d', '#bf9f60', '#73e682', '#1d3f73', '#73006b', '#402020',
1161 '#b2862d', '#397341', '#597db3', '#e600d6', '#a60000', '#736039',
1161 '#b2862d', '#397341', '#597db3', '#e600d6', '#a60000', '#736039',
1162 '#00b318', '#79aaf2', '#330d30', '#ff8080', '#403010', '#16591f',
1162 '#00b318', '#79aaf2', '#330d30', '#ff8080', '#403010', '#16591f',
1163 '#002459', '#8c4688', '#e50000', '#ffbf40', '#00732e', '#102340',
1163 '#002459', '#8c4688', '#e50000', '#ffbf40', '#00732e', '#102340',
1164 '#bf60ac', '#8c4646', '#cc8800', '#00a642', '#1d3473', '#b32d98',
1164 '#bf60ac', '#8c4646', '#cc8800', '#00a642', '#1d3473', '#b32d98',
1165 '#660e00', '#ffd580', '#80ffb2', '#7391e6', '#733967', '#d97b6c',
1165 '#660e00', '#ffd580', '#80ffb2', '#7391e6', '#733967', '#d97b6c',
1166 '#8c5e00', '#59b389', '#3967e6', '#590047', '#73281d', '#665200',
1166 '#8c5e00', '#59b389', '#3967e6', '#590047', '#73281d', '#665200',
1167 '#00e67a', '#2d50b3', '#8c2377', '#734139', '#b2982d', '#16593a',
1167 '#00e67a', '#2d50b3', '#8c2377', '#734139', '#b2982d', '#16593a',
1168 '#001859', '#ff00aa', '#a65e53', '#ffcc00', '#0d3321', '#2d3959',
1168 '#001859', '#ff00aa', '#a65e53', '#ffcc00', '#0d3321', '#2d3959',
1169 '#731d56', '#401610', '#4c3d00', '#468c6c', '#002ca6', '#d936a3',
1169 '#731d56', '#401610', '#4c3d00', '#468c6c', '#002ca6', '#d936a3',
1170 '#d94c36', '#403920', '#36d9a3', '#0d1733', '#592d4a', '#993626',
1170 '#d94c36', '#403920', '#36d9a3', '#0d1733', '#592d4a', '#993626',
1171 '#cca300', '#00734d', '#46598c', '#8c005e', '#7f1100', '#8c7000',
1171 '#cca300', '#00734d', '#46598c', '#8c005e', '#7f1100', '#8c7000',
1172 '#00a66f', '#7382e6', '#b32d74', '#d9896c', '#ffe680', '#1d7362',
1172 '#00a66f', '#7382e6', '#b32d74', '#d9896c', '#ffe680', '#1d7362',
1173 '#364cd9', '#73003d', '#d93a00', '#998a4d', '#59b3a1', '#5965b3',
1173 '#364cd9', '#73003d', '#d93a00', '#998a4d', '#59b3a1', '#5965b3',
1174 '#e5007a', '#73341d', '#665f00', '#00b38f', '#0018b3', '#59163a',
1174 '#e5007a', '#73341d', '#665f00', '#00b38f', '#0018b3', '#59163a',
1175 '#b2502d', '#bfb960', '#00ffcc', '#23318c', '#a6537f', '#734939',
1175 '#b2502d', '#bfb960', '#00ffcc', '#23318c', '#a6537f', '#734939',
1176 '#b2a700', '#104036', '#3d3df2', '#402031', '#e56739', '#736f39',
1176 '#b2a700', '#104036', '#3d3df2', '#402031', '#e56739', '#736f39',
1177 '#79f2ea', '#000059', '#401029', '#4c1400', '#ffee00', '#005953',
1177 '#79f2ea', '#000059', '#401029', '#4c1400', '#ffee00', '#005953',
1178 '#101040', '#990052', '#402820', '#403d10', '#00ffee', '#0000d9',
1178 '#101040', '#990052', '#402820', '#403d10', '#00ffee', '#0000d9',
1179 '#ff80c4', '#a66953', '#eeff00', '#00ccbe', '#8080ff', '#e673a1',
1179 '#ff80c4', '#a66953', '#eeff00', '#00ccbe', '#8080ff', '#e673a1',
1180 '#a62c00', '#474d00', '#1a3331', '#46468c', '#733950', '#662900',
1180 '#a62c00', '#474d00', '#1a3331', '#46468c', '#733950', '#662900',
1181 '#858c23', '#238c85', '#0f0073', '#b20047', '#d9986c', '#becc00',
1181 '#858c23', '#238c85', '#0f0073', '#b20047', '#d9986c', '#becc00',
1182 '#396f73', '#281d73', '#ff0066', '#ff6600', '#dee673', '#59adb3',
1182 '#396f73', '#281d73', '#ff0066', '#ff6600', '#dee673', '#59adb3',
1183 '#6559b3', '#590024', '#b2622d', '#98b32d', '#36ced9', '#332d59',
1183 '#6559b3', '#590024', '#b2622d', '#98b32d', '#36ced9', '#332d59',
1184 '#40001a', '#733f1d', '#526600', '#005359', '#242040', '#bf6079',
1184 '#40001a', '#733f1d', '#526600', '#005359', '#242040', '#bf6079',
1185 '#735039', '#cef23d', '#007780', '#5630bf', '#66001b', '#b24700',
1185 '#735039', '#cef23d', '#007780', '#5630bf', '#66001b', '#b24700',
1186 '#acbf60', '#1d6273', '#25008c', '#731d34', '#a67453', '#50592d',
1186 '#acbf60', '#1d6273', '#25008c', '#731d34', '#a67453', '#50592d',
1187 '#00ccff', '#6600ff', '#ff0044', '#4c1f00', '#8a994d', '#79daf2',
1187 '#00ccff', '#6600ff', '#ff0044', '#4c1f00', '#8a994d', '#79daf2',
1188 '#a173e6', '#d93662', '#402310', '#aaff00', '#2d98b3', '#8c40ff',
1188 '#a173e6', '#d93662', '#402310', '#aaff00', '#2d98b3', '#8c40ff',
1189 '#592d39', '#ff8c40', '#354020', '#103640', '#1a0040', '#331a20',
1189 '#592d39', '#ff8c40', '#354020', '#103640', '#1a0040', '#331a20',
1190 '#331400', '#334d00', '#1d5673', '#583973', '#7f0022', '#4c3626',
1190 '#331400', '#334d00', '#1d5673', '#583973', '#7f0022', '#4c3626',
1191 '#88cc00', '#36a3d9', '#3d0073', '#d9364c', '#33241a', '#698c23',
1191 '#88cc00', '#36a3d9', '#3d0073', '#d9364c', '#33241a', '#698c23',
1192 '#5995b3', '#300059', '#e57382', '#7f3300', '#366600', '#00aaff',
1192 '#5995b3', '#300059', '#e57382', '#7f3300', '#366600', '#00aaff',
1193 '#3a1659', '#733941', '#663600', '#74b32d', '#003c59', '#7f53a6',
1193 '#3a1659', '#733941', '#663600', '#74b32d', '#003c59', '#7f53a6',
1194 '#73000f', '#ff8800', '#baf279', '#79caf2', '#291040', '#a6293a',
1194 '#73000f', '#ff8800', '#baf279', '#79caf2', '#291040', '#a6293a',
1195 '#b2742d', '#587339', '#0077b3', '#632699', '#400009', '#d9a66c',
1195 '#b2742d', '#587339', '#0077b3', '#632699', '#400009', '#d9a66c',
1196 '#294010', '#2d4a59', '#aa00ff', '#4c131b', '#b25f00', '#5ce600',
1196 '#294010', '#2d4a59', '#aa00ff', '#4c131b', '#b25f00', '#5ce600',
1197 '#267399', '#a336d9', '#990014', '#664e33', '#86bf60', '#0088ff',
1197 '#267399', '#a336d9', '#990014', '#664e33', '#86bf60', '#0088ff',
1198 '#7700b3', '#593a16', '#073300', '#1d4b73', '#ac60bf', '#e59539',
1198 '#7700b3', '#593a16', '#073300', '#1d4b73', '#ac60bf', '#e59539',
1199 '#4f8c46', '#368dd9', '#5c0073'
1199 '#4f8c46', '#368dd9', '#5c0073'
1200 ]
1200 ]
1201
1201
1202 def rgb_to_hex_color(self, rgb_tuple):
1202 def rgb_to_hex_color(self, rgb_tuple):
1203 """
1203 """
1204 Converts an rgb_tuple passed to an hex color.
1204 Converts an rgb_tuple passed to an hex color.
1205
1205
1206 :param rgb_tuple: tuple with 3 ints represents rgb color space
1206 :param rgb_tuple: tuple with 3 ints represents rgb color space
1207 """
1207 """
1208 return '#' + ("".join(map(chr, rgb_tuple)).encode('hex'))
1208 return '#' + ("".join(map(chr, rgb_tuple)).encode('hex'))
1209
1209
1210 def email_to_int_list(self, email_str):
1210 def email_to_int_list(self, email_str):
1211 """
1211 """
1212 Get every byte of the hex digest value of email and turn it to integer.
1212 Get every byte of the hex digest value of email and turn it to integer.
1213 It's going to be always between 0-255
1213 It's going to be always between 0-255
1214 """
1214 """
1215 digest = md5_safe(email_str.lower())
1215 digest = md5_safe(email_str.lower())
1216 return [int(digest[i * 2:i * 2 + 2], 16) for i in range(16)]
1216 return [int(digest[i * 2:i * 2 + 2], 16) for i in range(16)]
1217
1217
1218 def pick_color_bank_index(self, email_str, color_bank):
1218 def pick_color_bank_index(self, email_str, color_bank):
1219 return self.email_to_int_list(email_str)[0] % len(color_bank)
1219 return self.email_to_int_list(email_str)[0] % len(color_bank)
1220
1220
1221 def str2color(self, email_str):
1221 def str2color(self, email_str):
1222 """
1222 """
1223 Tries to map in a stable algorithm an email to color
1223 Tries to map in a stable algorithm an email to color
1224
1224
1225 :param email_str:
1225 :param email_str:
1226 """
1226 """
1227 color_bank = self.get_color_bank()
1227 color_bank = self.get_color_bank()
1228 # pick position (module it's length so we always find it in the
1228 # pick position (module it's length so we always find it in the
1229 # bank even if it's smaller than 256 values
1229 # bank even if it's smaller than 256 values
1230 pos = self.pick_color_bank_index(email_str, color_bank)
1230 pos = self.pick_color_bank_index(email_str, color_bank)
1231 return color_bank[pos]
1231 return color_bank[pos]
1232
1232
1233 def normalize_email(self, email_address):
1233 def normalize_email(self, email_address):
1234 # default host used to fill in the fake/missing email
1234 # default host used to fill in the fake/missing email
1235 default_host = 'localhost'
1235 default_host = 'localhost'
1236
1236
1237 if not email_address:
1237 if not email_address:
1238 email_address = f'{User.DEFAULT_USER}@{default_host}'
1238 email_address = f'{User.DEFAULT_USER}@{default_host}'
1239
1239
1240 email_address = safe_str(email_address)
1240 email_address = safe_str(email_address)
1241
1241
1242 if '@' not in email_address:
1242 if '@' not in email_address:
1243 email_address = f'{email_address}@{default_host}'
1243 email_address = f'{email_address}@{default_host}'
1244
1244
1245 if email_address.endswith('@'):
1245 if email_address.endswith('@'):
1246 email_address = f'{email_address}{default_host}'
1246 email_address = f'{email_address}{default_host}'
1247
1247
1248 email_address = convert_special_chars(email_address)
1248 email_address = convert_special_chars(email_address)
1249
1249
1250 return email_address
1250 return email_address
1251
1251
1252 def get_initials(self):
1252 def get_initials(self):
1253 """
1253 """
1254 Returns 2 letter initials calculated based on the input.
1254 Returns 2 letter initials calculated based on the input.
1255 The algorithm picks first given email address, and takes first letter
1255 The algorithm picks first given email address, and takes first letter
1256 of part before @, and then the first letter of server name. In case
1256 of part before @, and then the first letter of server name. In case
1257 the part before @ is in a format of `somestring.somestring2` it replaces
1257 the part before @ is in a format of `somestring.somestring2` it replaces
1258 the server letter with first letter of somestring2
1258 the server letter with first letter of somestring2
1259
1259
1260 In case function was initialized with both first and lastname, this
1260 In case function was initialized with both first and lastname, this
1261 overrides the extraction from email by first letter of the first and
1261 overrides the extraction from email by first letter of the first and
1262 last name. We add special logic to that functionality, In case Full name
1262 last name. We add special logic to that functionality, In case Full name
1263 is compound, like Guido Von Rossum, we use last part of the last name
1263 is compound, like Guido Von Rossum, we use last part of the last name
1264 (Von Rossum) picking `R`.
1264 (Von Rossum) picking `R`.
1265
1265
1266 Function also normalizes the non-ascii characters to they ascii
1266 Function also normalizes the non-ascii characters to they ascii
1267 representation, eg Δ„ => A
1267 representation, eg Δ„ => A
1268 """
1268 """
1269 # replace non-ascii to ascii
1269 # replace non-ascii to ascii
1270 first_name = convert_special_chars(self.first_name)
1270 first_name = convert_special_chars(self.first_name)
1271 last_name = convert_special_chars(self.last_name)
1271 last_name = convert_special_chars(self.last_name)
1272 # multi word last names, Guido Von Rossum, we take the last part only
1272 # multi word last names, Guido Von Rossum, we take the last part only
1273 last_name = last_name.split(' ', 1)[-1]
1273 last_name = last_name.split(' ', 1)[-1]
1274
1274
1275 # do NFKD encoding, and also make sure email has proper format
1275 # do NFKD encoding, and also make sure email has proper format
1276 email_address = self.normalize_email(self.email_address)
1276 email_address = self.normalize_email(self.email_address)
1277
1277
1278 # first push the email initials
1278 # first push the email initials
1279 prefix, server = email_address.split('@', 1)
1279 prefix, server = email_address.split('@', 1)
1280
1280
1281 # check if prefix is maybe a 'first_name.last_name' syntax
1281 # check if prefix is maybe a 'first_name.last_name' syntax
1282 _dot_split = prefix.rsplit('.', 1)
1282 _dot_split = prefix.rsplit('.', 1)
1283 if len(_dot_split) == 2 and _dot_split[1]:
1283 if len(_dot_split) == 2 and _dot_split[1]:
1284 initials = [_dot_split[0][0], _dot_split[1][0]]
1284 initials = [_dot_split[0][0], _dot_split[1][0]]
1285 else:
1285 else:
1286 initials = [prefix[0], server[0]]
1286 initials = [prefix[0], server[0]]
1287
1287
1288 # get first letter of first and last names to create initials
1288 # get first letter of first and last names to create initials
1289 fn_letter = (first_name or " ")[0].strip()
1289 fn_letter = (first_name or " ")[0].strip()
1290 ln_letter = (last_name or " ")[0].strip()
1290 ln_letter = (last_name or " ")[0].strip()
1291
1291
1292 if fn_letter:
1292 if fn_letter:
1293 initials[0] = fn_letter
1293 initials[0] = fn_letter
1294
1294
1295 if ln_letter:
1295 if ln_letter:
1296 initials[1] = ln_letter
1296 initials[1] = ln_letter
1297
1297
1298 return ''.join(initials).upper()
1298 return ''.join(initials).upper()
1299
1299
1300 def get_img_data_by_type(self, font_family, img_type):
1300 def get_img_data_by_type(self, font_family, img_type):
1301 default_user = """
1301 default_user = """
1302 <svg xmlns="http://www.w3.org/2000/svg"
1302 <svg xmlns="http://www.w3.org/2000/svg"
1303 version="1.1" x="0px" y="0px" width="{size}" height="{size}"
1303 version="1.1" x="0px" y="0px" width="{size}" height="{size}"
1304 viewBox="-15 -10 439.165 429.164"
1304 viewBox="-15 -10 439.165 429.164"
1305
1305
1306 xml:space="preserve"
1306 xml:space="preserve"
1307 font-family="{font_family}
1307 font-family="{font_family}
1308 style="background:{background};" >
1308 style="background:{background};" >
1309
1309
1310 <path d="M204.583,216.671c50.664,0,91.74-48.075,
1310 <path d="M204.583,216.671c50.664,0,91.74-48.075,
1311 91.74-107.378c0-82.237-41.074-107.377-91.74-107.377
1311 91.74-107.378c0-82.237-41.074-107.377-91.74-107.377
1312 c-50.668,0-91.74,25.14-91.74,107.377C112.844,
1312 c-50.668,0-91.74,25.14-91.74,107.377C112.844,
1313 168.596,153.916,216.671,
1313 168.596,153.916,216.671,
1314 204.583,216.671z" fill="{text_color}"/>
1314 204.583,216.671z" fill="{text_color}"/>
1315 <path d="M407.164,374.717L360.88,
1315 <path d="M407.164,374.717L360.88,
1316 270.454c-2.117-4.771-5.836-8.728-10.465-11.138l-71.83-37.392
1316 270.454c-2.117-4.771-5.836-8.728-10.465-11.138l-71.83-37.392
1317 c-1.584-0.823-3.502-0.663-4.926,0.415c-20.316,
1317 c-1.584-0.823-3.502-0.663-4.926,0.415c-20.316,
1318 15.366-44.203,23.488-69.076,23.488c-24.877,
1318 15.366-44.203,23.488-69.076,23.488c-24.877,
1319 0-48.762-8.122-69.078-23.488
1319 0-48.762-8.122-69.078-23.488
1320 c-1.428-1.078-3.346-1.238-4.93-0.415L58.75,
1320 c-1.428-1.078-3.346-1.238-4.93-0.415L58.75,
1321 259.316c-4.631,2.41-8.346,6.365-10.465,11.138L2.001,374.717
1321 259.316c-4.631,2.41-8.346,6.365-10.465,11.138L2.001,374.717
1322 c-3.191,7.188-2.537,15.412,1.75,22.005c4.285,
1322 c-3.191,7.188-2.537,15.412,1.75,22.005c4.285,
1323 6.592,11.537,10.526,19.4,10.526h362.861c7.863,0,15.117-3.936,
1323 6.592,11.537,10.526,19.4,10.526h362.861c7.863,0,15.117-3.936,
1324 19.402-10.527 C409.699,390.129,
1324 19.402-10.527 C409.699,390.129,
1325 410.355,381.902,407.164,374.717z" fill="{text_color}"/>
1325 410.355,381.902,407.164,374.717z" fill="{text_color}"/>
1326 </svg>""".format(
1326 </svg>""".format(
1327 size=self.size,
1327 size=self.size,
1328 background='#979797', # @grey4
1328 background='#979797', # @grey4
1329 text_color=self.text_color,
1329 text_color=self.text_color,
1330 font_family=font_family)
1330 font_family=font_family)
1331
1331
1332 return {
1332 return {
1333 "default_user": default_user
1333 "default_user": default_user
1334 }[img_type]
1334 }[img_type]
1335
1335
1336 def get_img_data(self, svg_type=None):
1336 def get_img_data(self, svg_type=None):
1337 """
1337 """
1338 generates the svg metadata for image
1338 generates the svg metadata for image
1339 """
1339 """
1340 fonts = [
1340 fonts = [
1341 '-apple-system',
1341 '-apple-system',
1342 'BlinkMacSystemFont',
1342 'BlinkMacSystemFont',
1343 'Segoe UI',
1343 'Segoe UI',
1344 'Roboto',
1344 'Roboto',
1345 'Oxygen-Sans',
1345 'Oxygen-Sans',
1346 'Ubuntu',
1346 'Ubuntu',
1347 'Cantarell',
1347 'Cantarell',
1348 'Helvetica Neue',
1348 'Helvetica Neue',
1349 'sans-serif'
1349 'sans-serif'
1350 ]
1350 ]
1351 font_family = ','.join(fonts)
1351 font_family = ','.join(fonts)
1352 if svg_type:
1352 if svg_type:
1353 return self.get_img_data_by_type(font_family, svg_type)
1353 return self.get_img_data_by_type(font_family, svg_type)
1354
1354
1355 initials = self.get_initials()
1355 initials = self.get_initials()
1356 img_data = """
1356 img_data = """
1357 <svg xmlns="http://www.w3.org/2000/svg" pointer-events="none"
1357 <svg xmlns="http://www.w3.org/2000/svg" pointer-events="none"
1358 width="{size}" height="{size}"
1358 width="{size}" height="{size}"
1359 style="width: 100%; height: 100%; background-color: {background}"
1359 style="width: 100%; height: 100%; background-color: {background}"
1360 viewBox="0 0 {size} {size}">
1360 viewBox="0 0 {size} {size}">
1361 <text text-anchor="middle" y="50%" x="50%" dy="0.35em"
1361 <text text-anchor="middle" y="50%" x="50%" dy="0.35em"
1362 pointer-events="auto" fill="{text_color}"
1362 pointer-events="auto" fill="{text_color}"
1363 font-family="{font_family}"
1363 font-family="{font_family}"
1364 style="font-weight: 400; font-size: {f_size}px;">{text}
1364 style="font-weight: 400; font-size: {f_size}px;">{text}
1365 </text>
1365 </text>
1366 </svg>""".format(
1366 </svg>""".format(
1367 size=self.size,
1367 size=self.size,
1368 f_size=self.size/2.05, # scale the text inside the box nicely
1368 f_size=self.size/2.05, # scale the text inside the box nicely
1369 background=self.background,
1369 background=self.background,
1370 text_color=self.text_color,
1370 text_color=self.text_color,
1371 text=initials.upper(),
1371 text=initials.upper(),
1372 font_family=font_family)
1372 font_family=font_family)
1373
1373
1374 return img_data
1374 return img_data
1375
1375
1376 def generate_svg(self, svg_type=None):
1376 def generate_svg(self, svg_type=None):
1377 img_data = safe_bytes(self.get_img_data(svg_type))
1377 img_data = safe_bytes(self.get_img_data(svg_type))
1378 return "data:image/svg+xml;base64,%s" % safe_str(base64.b64encode(img_data))
1378 return "data:image/svg+xml;base64,%s" % safe_str(base64.b64encode(img_data))
1379
1379
1380
1380
1381 def initials_gravatar(request, email_address, first_name, last_name, size=30, store_on_disk=False):
1381 def initials_gravatar(request, email_address, first_name, last_name, size=30, store_on_disk=False):
1382
1382
1383 svg_type = None
1383 svg_type = None
1384 if email_address == User.DEFAULT_USER_EMAIL:
1384 if email_address == User.DEFAULT_USER_EMAIL:
1385 svg_type = 'default_user'
1385 svg_type = 'default_user'
1386
1386
1387 klass = InitialsGravatar(email_address, first_name, last_name, size)
1387 klass = InitialsGravatar(email_address, first_name, last_name, size)
1388
1388
1389 if store_on_disk:
1389 if store_on_disk:
1390 from rhodecode.apps.file_store import utils as store_utils
1390 from rhodecode.apps.file_store import utils as store_utils
1391 from rhodecode.apps.file_store.exceptions import FileNotAllowedException, \
1391 from rhodecode.apps.file_store.exceptions import FileNotAllowedException, \
1392 FileOverSizeException
1392 FileOverSizeException
1393 from rhodecode.model.db import Session
1393 from rhodecode.model.db import Session
1394
1394
1395 image_key = md5_safe(email_address.lower()
1395 image_key = md5_safe(email_address.lower()
1396 + first_name.lower() + last_name.lower())
1396 + first_name.lower() + last_name.lower())
1397
1397
1398 storage = store_utils.get_file_storage(request.registry.settings)
1398 storage = store_utils.get_file_storage(request.registry.settings)
1399 filename = '{}.svg'.format(image_key)
1399 filename = '{}.svg'.format(image_key)
1400 subdir = 'gravatars'
1400 subdir = 'gravatars'
1401 # since final name has a counter, we apply the 0
1401 # since final name has a counter, we apply the 0
1402 uid = storage.apply_counter(0, store_utils.uid_filename(filename, randomized=False))
1402 uid = storage.apply_counter(0, store_utils.uid_filename(filename, randomized=False))
1403 store_uid = os.path.join(subdir, uid)
1403 store_uid = os.path.join(subdir, uid)
1404
1404
1405 db_entry = FileStore.get_by_store_uid(store_uid)
1405 db_entry = FileStore.get_by_store_uid(store_uid)
1406 if db_entry:
1406 if db_entry:
1407 return request.route_path('download_file', fid=store_uid)
1407 return request.route_path('download_file', fid=store_uid)
1408
1408
1409 img_data = klass.get_img_data(svg_type=svg_type)
1409 img_data = klass.get_img_data(svg_type=svg_type)
1410 img_file = store_utils.bytes_to_file_obj(img_data)
1410 img_file = store_utils.bytes_to_file_obj(img_data)
1411
1411
1412 try:
1412 try:
1413 store_uid, metadata = storage.save_file(
1413 store_uid, metadata = storage.save_file(
1414 img_file, filename, directory=subdir,
1414 img_file, filename, directory=subdir,
1415 extensions=['.svg'], randomized_name=False)
1415 extensions=['.svg'], randomized_name=False)
1416 except (FileNotAllowedException, FileOverSizeException):
1416 except (FileNotAllowedException, FileOverSizeException):
1417 raise
1417 raise
1418
1418
1419 try:
1419 try:
1420 entry = FileStore.create(
1420 entry = FileStore.create(
1421 file_uid=store_uid, filename=metadata["filename"],
1421 file_uid=store_uid, filename=metadata["filename"],
1422 file_hash=metadata["sha256"], file_size=metadata["size"],
1422 file_hash=metadata["sha256"], file_size=metadata["size"],
1423 file_display_name=filename,
1423 file_display_name=filename,
1424 file_description=f'user gravatar `{safe_str(filename)}`',
1424 file_description=f'user gravatar `{safe_str(filename)}`',
1425 hidden=True, check_acl=False, user_id=1
1425 hidden=True, check_acl=False, user_id=1
1426 )
1426 )
1427 Session().add(entry)
1427 Session().add(entry)
1428 Session().commit()
1428 Session().commit()
1429 log.debug('Stored upload in DB as %s', entry)
1429 log.debug('Stored upload in DB as %s', entry)
1430 except Exception:
1430 except Exception:
1431 raise
1431 raise
1432
1432
1433 return request.route_path('download_file', fid=store_uid)
1433 return request.route_path('download_file', fid=store_uid)
1434
1434
1435 else:
1435 else:
1436 return klass.generate_svg(svg_type=svg_type)
1436 return klass.generate_svg(svg_type=svg_type)
1437
1437
1438
1438
1439 def gravatar_external(request, gravatar_url_tmpl, email_address, size=30):
1439 def gravatar_external(request, gravatar_url_tmpl, email_address, size=30):
1440 return safe_str(gravatar_url_tmpl)\
1440 return safe_str(gravatar_url_tmpl)\
1441 .replace('{email}', email_address) \
1441 .replace('{email}', email_address) \
1442 .replace('{md5email}', md5_safe(email_address.lower())) \
1442 .replace('{md5email}', md5_safe(email_address.lower())) \
1443 .replace('{netloc}', request.host) \
1443 .replace('{netloc}', request.host) \
1444 .replace('{scheme}', request.scheme) \
1444 .replace('{scheme}', request.scheme) \
1445 .replace('{size}', safe_str(size))
1445 .replace('{size}', safe_str(size))
1446
1446
1447
1447
1448 def gravatar_url(email_address, size=30, request=None):
1448 def gravatar_url(email_address, size=30, request=None):
1449 request = request or get_current_request()
1449 request = request or get_current_request()
1450 _use_gravatar = request.call_context.visual.use_gravatar
1450 _use_gravatar = request.call_context.visual.use_gravatar
1451
1451
1452 email_address = email_address or User.DEFAULT_USER_EMAIL
1452 email_address = email_address or User.DEFAULT_USER_EMAIL
1453 if isinstance(email_address, str):
1453 if isinstance(email_address, str):
1454 # hashlib crashes on unicode items
1454 # hashlib crashes on unicode items
1455 email_address = safe_str(email_address)
1455 email_address = safe_str(email_address)
1456
1456
1457 # empty email or default user
1457 # empty email or default user
1458 if not email_address or email_address == User.DEFAULT_USER_EMAIL:
1458 if not email_address or email_address == User.DEFAULT_USER_EMAIL:
1459 return initials_gravatar(request, User.DEFAULT_USER_EMAIL, '', '', size=size)
1459 return initials_gravatar(request, User.DEFAULT_USER_EMAIL, '', '', size=size)
1460
1460
1461 if _use_gravatar:
1461 if _use_gravatar:
1462 gravatar_url_tmpl = request.call_context.visual.gravatar_url \
1462 gravatar_url_tmpl = request.call_context.visual.gravatar_url \
1463 or User.DEFAULT_GRAVATAR_URL
1463 or User.DEFAULT_GRAVATAR_URL
1464 return gravatar_external(request, gravatar_url_tmpl, email_address, size=size)
1464 return gravatar_external(request, gravatar_url_tmpl, email_address, size=size)
1465
1465
1466 else:
1466 else:
1467 return initials_gravatar(request, email_address, '', '', size=size)
1467 return initials_gravatar(request, email_address, '', '', size=size)
1468
1468
1469
1469
1470 def breadcrumb_repo_link(repo):
1470 def breadcrumb_repo_link(repo):
1471 """
1471 """
1472 Makes a breadcrumbs path link to repo
1472 Makes a breadcrumbs path link to repo
1473
1473
1474 ex::
1474 ex::
1475 group >> subgroup >> repo
1475 group >> subgroup >> repo
1476
1476
1477 :param repo: a Repository instance
1477 :param repo: a Repository instance
1478 """
1478 """
1479
1479
1480 path = [
1480 path = [
1481 link_to(group.name, route_path('repo_group_home', repo_group_name=group.group_name),
1481 link_to(group.name, route_path('repo_group_home', repo_group_name=group.group_name),
1482 title='last change:{}'.format(format_date(group.last_commit_change)))
1482 title='last change:{}'.format(format_date(group.last_commit_change)))
1483 for group in repo.groups_with_parents
1483 for group in repo.groups_with_parents
1484 ] + [
1484 ] + [
1485 link_to(repo.just_name, route_path('repo_summary', repo_name=repo.repo_name),
1485 link_to(repo.just_name, route_path('repo_summary', repo_name=repo.repo_name),
1486 title='last change:{}'.format(format_date(repo.last_commit_change)))
1486 title='last change:{}'.format(format_date(repo.last_commit_change)))
1487 ]
1487 ]
1488
1488
1489 return literal(' &raquo; '.join(path))
1489 return literal(' &raquo; '.join(path))
1490
1490
1491
1491
1492 def breadcrumb_repo_group_link(repo_group):
1492 def breadcrumb_repo_group_link(repo_group):
1493 """
1493 """
1494 Makes a breadcrumbs path link to repo
1494 Makes a breadcrumbs path link to repo
1495
1495
1496 ex::
1496 ex::
1497 group >> subgroup
1497 group >> subgroup
1498
1498
1499 :param repo_group: a Repository Group instance
1499 :param repo_group: a Repository Group instance
1500 """
1500 """
1501
1501
1502 path = [
1502 path = [
1503 link_to(group.name,
1503 link_to(group.name,
1504 route_path('repo_group_home', repo_group_name=group.group_name),
1504 route_path('repo_group_home', repo_group_name=group.group_name),
1505 title='last change:{}'.format(format_date(group.last_commit_change)))
1505 title='last change:{}'.format(format_date(group.last_commit_change)))
1506 for group in repo_group.parents
1506 for group in repo_group.parents
1507 ] + [
1507 ] + [
1508 link_to(repo_group.name,
1508 link_to(repo_group.name,
1509 route_path('repo_group_home', repo_group_name=repo_group.group_name),
1509 route_path('repo_group_home', repo_group_name=repo_group.group_name),
1510 title='last change:{}'.format(format_date(repo_group.last_commit_change)))
1510 title='last change:{}'.format(format_date(repo_group.last_commit_change)))
1511 ]
1511 ]
1512
1512
1513 return literal(' &raquo; '.join(path))
1513 return literal(' &raquo; '.join(path))
1514
1514
1515
1515
1516 def format_byte_size_binary(file_size):
1516 def format_byte_size_binary(file_size):
1517 """
1517 """
1518 Formats file/folder sizes to standard.
1518 Formats file/folder sizes to standard.
1519 """
1519 """
1520 if file_size is None:
1520 if file_size is None:
1521 file_size = 0
1521 file_size = 0
1522
1522
1523 formatted_size = format_byte_size(file_size, binary=True)
1523 formatted_size = format_byte_size(file_size, binary=True)
1524 return formatted_size
1524 return formatted_size
1525
1525
1526
1526
1527 def urlify_text(text_, safe=True, **href_attrs):
1527 def urlify_text(text_, safe=True, **href_attrs):
1528 """
1528 """
1529 Extract urls from text and make html links out of them
1529 Extract urls from text and make html links out of them
1530 """
1530 """
1531
1531
1532 url_pat = re.compile(r'''(http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@#.&+]'''
1532 url_pat = re.compile(r'''(http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@#.&+]'''
1533 '''|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)''')
1533 '''|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)''')
1534
1534
1535 def url_func(match_obj):
1535 def url_func(match_obj):
1536 url_full = match_obj.groups()[0]
1536 url_full = match_obj.groups()[0]
1537 a_options = dict(href_attrs)
1537 a_options = dict(href_attrs)
1538 a_options['href'] = url_full
1538 a_options['href'] = url_full
1539 a_text = url_full
1539 a_text = url_full
1540 return HTML.tag("a", a_text, **a_options)
1540 return HTML.tag("a", a_text, **a_options)
1541
1541
1542 _new_text = url_pat.sub(url_func, text_)
1542 _new_text = url_pat.sub(url_func, text_)
1543
1543
1544 if safe:
1544 if safe:
1545 return literal(_new_text)
1545 return literal(_new_text)
1546 return _new_text
1546 return _new_text
1547
1547
1548
1548
1549 def urlify_commits(text_, repo_name):
1549 def urlify_commits(text_, repo_name):
1550 """
1550 """
1551 Extract commit ids from text and make link from them
1551 Extract commit ids from text and make link from them
1552
1552
1553 :param text_:
1553 :param text_:
1554 :param repo_name: repo name to build the URL with
1554 :param repo_name: repo name to build the URL with
1555 """
1555 """
1556
1556
1557 url_pat = re.compile(r'(^|\s)([0-9a-fA-F]{12,40})($|\s)')
1557 url_pat = re.compile(r'(^|\s)([0-9a-fA-F]{12,40})($|\s)')
1558
1558
1559 def url_func(match_obj):
1559 def url_func(match_obj):
1560 commit_id = match_obj.groups()[1]
1560 commit_id = match_obj.groups()[1]
1561 pref = match_obj.groups()[0]
1561 pref = match_obj.groups()[0]
1562 suf = match_obj.groups()[2]
1562 suf = match_obj.groups()[2]
1563
1563
1564 tmpl = (
1564 tmpl = (
1565 '%(pref)s<a class="tooltip-hovercard %(cls)s" href="%(url)s" data-hovercard-alt="%(hovercard_alt)s" data-hovercard-url="%(hovercard_url)s">'
1565 '%(pref)s<a class="tooltip-hovercard %(cls)s" href="%(url)s" data-hovercard-alt="%(hovercard_alt)s" data-hovercard-url="%(hovercard_url)s">'
1566 '%(commit_id)s</a>%(suf)s'
1566 '%(commit_id)s</a>%(suf)s'
1567 )
1567 )
1568 return tmpl % {
1568 return tmpl % {
1569 'pref': pref,
1569 'pref': pref,
1570 'cls': 'revision-link',
1570 'cls': 'revision-link',
1571 'url': route_url(
1571 'url': route_url(
1572 'repo_commit', repo_name=repo_name, commit_id=commit_id),
1572 'repo_commit', repo_name=repo_name, commit_id=commit_id),
1573 'commit_id': commit_id,
1573 'commit_id': commit_id,
1574 'suf': suf,
1574 'suf': suf,
1575 'hovercard_alt': 'Commit: {}'.format(commit_id),
1575 'hovercard_alt': 'Commit: {}'.format(commit_id),
1576 'hovercard_url': route_url(
1576 'hovercard_url': route_url(
1577 'hovercard_repo_commit', repo_name=repo_name, commit_id=commit_id)
1577 'hovercard_repo_commit', repo_name=repo_name, commit_id=commit_id)
1578 }
1578 }
1579
1579
1580 new_text = url_pat.sub(url_func, text_)
1580 new_text = url_pat.sub(url_func, text_)
1581
1581
1582 return new_text
1582 return new_text
1583
1583
1584
1584
1585 def _process_url_func(match_obj, repo_name, uid, entry,
1585 def _process_url_func(match_obj, repo_name, uid, entry,
1586 return_raw_data=False, link_format='html'):
1586 return_raw_data=False, link_format='html'):
1587 pref = ''
1587 pref = ''
1588 if match_obj.group().startswith(' '):
1588 if match_obj.group().startswith(' '):
1589 pref = ' '
1589 pref = ' '
1590
1590
1591 issue_id = ''.join(match_obj.groups())
1591 issue_id = ''.join(match_obj.groups())
1592
1592
1593 if link_format == 'html':
1593 if link_format == 'html':
1594 tmpl = (
1594 tmpl = (
1595 '%(pref)s<a class="tooltip %(cls)s" href="%(url)s" title="%(title)s">'
1595 '%(pref)s<a class="tooltip %(cls)s" href="%(url)s" title="%(title)s">'
1596 '%(issue-prefix)s%(id-repr)s'
1596 '%(issue-prefix)s%(id-repr)s'
1597 '</a>')
1597 '</a>')
1598 elif link_format == 'html+hovercard':
1598 elif link_format == 'html+hovercard':
1599 tmpl = (
1599 tmpl = (
1600 '%(pref)s<a class="tooltip-hovercard %(cls)s" href="%(url)s" data-hovercard-url="%(hovercard_url)s">'
1600 '%(pref)s<a class="tooltip-hovercard %(cls)s" href="%(url)s" data-hovercard-url="%(hovercard_url)s">'
1601 '%(issue-prefix)s%(id-repr)s'
1601 '%(issue-prefix)s%(id-repr)s'
1602 '</a>')
1602 '</a>')
1603 elif link_format in ['rst', 'rst+hovercard']:
1603 elif link_format in ['rst', 'rst+hovercard']:
1604 tmpl = '`%(issue-prefix)s%(id-repr)s <%(url)s>`_'
1604 tmpl = '`%(issue-prefix)s%(id-repr)s <%(url)s>`_'
1605 elif link_format in ['markdown', 'markdown+hovercard']:
1605 elif link_format in ['markdown', 'markdown+hovercard']:
1606 tmpl = '[%(pref)s%(issue-prefix)s%(id-repr)s](%(url)s)'
1606 tmpl = '[%(pref)s%(issue-prefix)s%(id-repr)s](%(url)s)'
1607 else:
1607 else:
1608 raise ValueError('Bad link_format:{}'.format(link_format))
1608 raise ValueError('Bad link_format:{}'.format(link_format))
1609
1609
1610 (repo_name_cleaned,
1610 (repo_name_cleaned,
1611 parent_group_name) = RepoGroupModel()._get_group_name_and_parent(repo_name)
1611 parent_group_name) = RepoGroupModel()._get_group_name_and_parent(repo_name)
1612
1612
1613 # variables replacement
1613 # variables replacement
1614 named_vars = {
1614 named_vars = {
1615 'id': issue_id,
1615 'id': issue_id,
1616 'repo': repo_name,
1616 'repo': repo_name,
1617 'repo_name': repo_name_cleaned,
1617 'repo_name': repo_name_cleaned,
1618 'group_name': parent_group_name,
1618 'group_name': parent_group_name,
1619 # set dummy keys so we always have them
1619 # set dummy keys so we always have them
1620 'hostname': '',
1620 'hostname': '',
1621 'netloc': '',
1621 'netloc': '',
1622 'scheme': ''
1622 'scheme': ''
1623 }
1623 }
1624
1624
1625 request = get_current_request()
1625 request = get_current_request()
1626 if request:
1626 if request:
1627 # exposes, hostname, netloc, scheme
1627 # exposes, hostname, netloc, scheme
1628 host_data = get_host_info(request)
1628 host_data = get_host_info(request)
1629 named_vars.update(host_data)
1629 named_vars.update(host_data)
1630
1630
1631 # named regex variables
1631 # named regex variables
1632 named_vars.update(match_obj.groupdict())
1632 named_vars.update(match_obj.groupdict())
1633 _url = string.Template(entry['url']).safe_substitute(**named_vars)
1633 _url = string.Template(entry['url']).safe_substitute(**named_vars)
1634 desc = string.Template(escape(entry['desc'])).safe_substitute(**named_vars)
1634 desc = string.Template(escape(entry['desc'])).safe_substitute(**named_vars)
1635 hovercard_url = string.Template(entry.get('hovercard_url', '')).safe_substitute(**named_vars)
1635 hovercard_url = string.Template(entry.get('hovercard_url', '')).safe_substitute(**named_vars)
1636
1636
1637 def quote_cleaner(input_str):
1637 def quote_cleaner(input_str):
1638 """Remove quotes as it's HTML"""
1638 """Remove quotes as it's HTML"""
1639 return input_str.replace('"', '')
1639 return input_str.replace('"', '')
1640
1640
1641 data = {
1641 data = {
1642 'pref': pref,
1642 'pref': pref,
1643 'cls': quote_cleaner('issue-tracker-link'),
1643 'cls': quote_cleaner('issue-tracker-link'),
1644 'url': quote_cleaner(_url),
1644 'url': quote_cleaner(_url),
1645 'id-repr': issue_id,
1645 'id-repr': issue_id,
1646 'issue-prefix': entry['pref'],
1646 'issue-prefix': entry['pref'],
1647 'serv': entry['url'],
1647 'serv': entry['url'],
1648 'title': bleach.clean(desc, strip=True),
1648 'title': sanitize_html(desc, strip=True),
1649 'hovercard_url': hovercard_url
1649 'hovercard_url': hovercard_url
1650 }
1650 }
1651
1651
1652 if return_raw_data:
1652 if return_raw_data:
1653 return {
1653 return {
1654 'id': issue_id,
1654 'id': issue_id,
1655 'url': _url
1655 'url': _url
1656 }
1656 }
1657 return tmpl % data
1657 return tmpl % data
1658
1658
1659
1659
1660 def get_active_pattern_entries(repo_name):
1660 def get_active_pattern_entries(repo_name):
1661 repo = None
1661 repo = None
1662 if repo_name:
1662 if repo_name:
1663 # Retrieving repo_name to avoid invalid repo_name to explode on
1663 # Retrieving repo_name to avoid invalid repo_name to explode on
1664 # IssueTrackerSettingsModel but still passing invalid name further down
1664 # IssueTrackerSettingsModel but still passing invalid name further down
1665 repo = Repository.get_by_repo_name(repo_name, cache=True)
1665 repo = Repository.get_by_repo_name(repo_name, cache=True)
1666
1666
1667 settings_model = IssueTrackerSettingsModel(repo=repo)
1667 settings_model = IssueTrackerSettingsModel(repo=repo)
1668 active_entries = settings_model.get_settings(cache=True)
1668 active_entries = settings_model.get_settings(cache=True)
1669 return active_entries
1669 return active_entries
1670
1670
1671
1671
1672 pr_pattern_re = regex.compile(r'(?:(?:^!)|(?: !))(\d+)')
1672 pr_pattern_re = regex.compile(r'(?:(?:^!)|(?: !))(\d+)')
1673
1673
1674 allowed_link_formats = [
1674 allowed_link_formats = [
1675 'html', 'rst', 'markdown', 'html+hovercard', 'rst+hovercard', 'markdown+hovercard']
1675 'html', 'rst', 'markdown', 'html+hovercard', 'rst+hovercard', 'markdown+hovercard']
1676
1676
1677 compile_cache = {
1677 compile_cache = {
1678
1678
1679 }
1679 }
1680
1680
1681
1681
1682 def process_patterns(text_string, repo_name, link_format='html', active_entries=None):
1682 def process_patterns(text_string, repo_name, link_format='html', active_entries=None):
1683
1683
1684 if link_format not in allowed_link_formats:
1684 if link_format not in allowed_link_formats:
1685 raise ValueError('Link format can be only one of:{} got {}'.format(
1685 raise ValueError('Link format can be only one of:{} got {}'.format(
1686 allowed_link_formats, link_format))
1686 allowed_link_formats, link_format))
1687 issues_data = []
1687 issues_data = []
1688 errors = []
1688 errors = []
1689 new_text = text_string
1689 new_text = text_string
1690
1690
1691 if active_entries is None:
1691 if active_entries is None:
1692 log.debug('Fetch active issue tracker patterns for repo: %s', repo_name)
1692 log.debug('Fetch active issue tracker patterns for repo: %s', repo_name)
1693 active_entries = get_active_pattern_entries(repo_name)
1693 active_entries = get_active_pattern_entries(repo_name)
1694
1694
1695 log.debug('Got %s pattern entries to process', len(active_entries))
1695 log.debug('Got %s pattern entries to process', len(active_entries))
1696
1696
1697 for uid, entry in list(active_entries.items()):
1697 for uid, entry in list(active_entries.items()):
1698
1698
1699 if not (entry['pat'] and entry['url']):
1699 if not (entry['pat'] and entry['url']):
1700 log.debug('skipping due to missing data')
1700 log.debug('skipping due to missing data')
1701 continue
1701 continue
1702
1702
1703 log.debug('issue tracker entry: uid: `%s` PAT:%s URL:%s PREFIX:%s',
1703 log.debug('issue tracker entry: uid: `%s` PAT:%s URL:%s PREFIX:%s',
1704 uid, entry['pat'], entry['url'], entry['pref'])
1704 uid, entry['pat'], entry['url'], entry['pref'])
1705
1705
1706 if entry.get('pat_compiled'):
1706 if entry.get('pat_compiled'):
1707 pattern = entry['pat_compiled']
1707 pattern = entry['pat_compiled']
1708 elif entry['pat'] in compile_cache:
1708 elif entry['pat'] in compile_cache:
1709 pattern = compile_cache[entry['pat']]
1709 pattern = compile_cache[entry['pat']]
1710 else:
1710 else:
1711 try:
1711 try:
1712 pattern = regex.compile(r'%s' % entry['pat'])
1712 pattern = regex.compile(r'%s' % entry['pat'])
1713 except regex.error as e:
1713 except regex.error as e:
1714 regex_err = ValueError('{}:{}'.format(entry['pat'], e))
1714 regex_err = ValueError('{}:{}'.format(entry['pat'], e))
1715 log.exception('issue tracker pattern: `%s` failed to compile', regex_err)
1715 log.exception('issue tracker pattern: `%s` failed to compile', regex_err)
1716 errors.append(regex_err)
1716 errors.append(regex_err)
1717 continue
1717 continue
1718 compile_cache[entry['pat']] = pattern
1718 compile_cache[entry['pat']] = pattern
1719
1719
1720 data_func = partial(
1720 data_func = partial(
1721 _process_url_func, repo_name=repo_name, entry=entry, uid=uid,
1721 _process_url_func, repo_name=repo_name, entry=entry, uid=uid,
1722 return_raw_data=True)
1722 return_raw_data=True)
1723
1723
1724 for match_obj in pattern.finditer(text_string):
1724 for match_obj in pattern.finditer(text_string):
1725 issues_data.append(data_func(match_obj))
1725 issues_data.append(data_func(match_obj))
1726
1726
1727 url_func = partial(
1727 url_func = partial(
1728 _process_url_func, repo_name=repo_name, entry=entry, uid=uid,
1728 _process_url_func, repo_name=repo_name, entry=entry, uid=uid,
1729 link_format=link_format)
1729 link_format=link_format)
1730
1730
1731 new_text = pattern.sub(url_func, new_text)
1731 new_text = pattern.sub(url_func, new_text)
1732 log.debug('processed prefix:uid `%s`', uid)
1732 log.debug('processed prefix:uid `%s`', uid)
1733
1733
1734 # finally use global replace, eg !123 -> pr-link, those will not catch
1734 # finally use global replace, eg !123 -> pr-link, those will not catch
1735 # if already similar pattern exists
1735 # if already similar pattern exists
1736 server_url = '${scheme}://${netloc}'
1736 server_url = '${scheme}://${netloc}'
1737 pr_entry = {
1737 pr_entry = {
1738 'pref': '!',
1738 'pref': '!',
1739 'url': server_url + '/_admin/pull-requests/${id}',
1739 'url': server_url + '/_admin/pull-requests/${id}',
1740 'desc': 'Pull Request !${id}',
1740 'desc': 'Pull Request !${id}',
1741 'hovercard_url': server_url + '/_hovercard/pull_request/${id}'
1741 'hovercard_url': server_url + '/_hovercard/pull_request/${id}'
1742 }
1742 }
1743 pr_url_func = partial(
1743 pr_url_func = partial(
1744 _process_url_func, repo_name=repo_name, entry=pr_entry, uid=None,
1744 _process_url_func, repo_name=repo_name, entry=pr_entry, uid=None,
1745 link_format=link_format+'+hovercard')
1745 link_format=link_format+'+hovercard')
1746 new_text = pr_pattern_re.sub(pr_url_func, new_text)
1746 new_text = pr_pattern_re.sub(pr_url_func, new_text)
1747 log.debug('processed !pr pattern')
1747 log.debug('processed !pr pattern')
1748
1748
1749 return new_text, issues_data, errors
1749 return new_text, issues_data, errors
1750
1750
1751
1751
1752 def urlify_commit_message(commit_text, repository=None, active_pattern_entries=None,
1752 def urlify_commit_message(commit_text, repository=None, active_pattern_entries=None,
1753 issues_container_callback=None, error_container=None):
1753 issues_container_callback=None, error_container=None):
1754 """
1754 """
1755 Parses given text message and makes proper links.
1755 Parses given text message and makes proper links.
1756 issues are linked to given issue-server, and rest is a commit link
1756 issues are linked to given issue-server, and rest is a commit link
1757 """
1757 """
1758
1758
1759 def escaper(_text):
1759 def escaper(_text):
1760 return _text.replace('<', '&lt;').replace('>', '&gt;')
1760 return _text.replace('<', '&lt;').replace('>', '&gt;')
1761
1761
1762 new_text = escaper(commit_text)
1762 new_text = escaper(commit_text)
1763
1763
1764 # extract http/https links and make them real urls
1764 # extract http/https links and make them real urls
1765 new_text = urlify_text(new_text, safe=False)
1765 new_text = urlify_text(new_text, safe=False)
1766
1766
1767 # urlify commits - extract commit ids and make link out of them, if we have
1767 # urlify commits - extract commit ids and make link out of them, if we have
1768 # the scope of repository present.
1768 # the scope of repository present.
1769 if repository:
1769 if repository:
1770 new_text = urlify_commits(new_text, repository)
1770 new_text = urlify_commits(new_text, repository)
1771
1771
1772 # process issue tracker patterns
1772 # process issue tracker patterns
1773 new_text, issues, errors = process_patterns(
1773 new_text, issues, errors = process_patterns(
1774 new_text, repository or '', active_entries=active_pattern_entries)
1774 new_text, repository or '', active_entries=active_pattern_entries)
1775
1775
1776 if issues_container_callback is not None:
1776 if issues_container_callback is not None:
1777 for issue in issues:
1777 for issue in issues:
1778 issues_container_callback(issue)
1778 issues_container_callback(issue)
1779
1779
1780 if error_container is not None:
1780 if error_container is not None:
1781 error_container.extend(errors)
1781 error_container.extend(errors)
1782
1782
1783 return literal(new_text)
1783 return literal(new_text)
1784
1784
1785
1785
1786 def render_binary(repo_name, file_obj):
1786 def render_binary(repo_name, file_obj):
1787 """
1787 """
1788 Choose how to render a binary file
1788 Choose how to render a binary file
1789 """
1789 """
1790
1790
1791 # unicode
1791 # unicode
1792 filename = file_obj.name
1792 filename = file_obj.name
1793
1793
1794 # images
1794 # images
1795 for ext in ['*.png', '*.jpeg', '*.jpg', '*.ico', '*.gif']:
1795 for ext in ['*.png', '*.jpeg', '*.jpg', '*.ico', '*.gif']:
1796 if fnmatch.fnmatch(filename, pat=ext):
1796 if fnmatch.fnmatch(filename, pat=ext):
1797 src = route_path(
1797 src = route_path(
1798 'repo_file_raw', repo_name=repo_name,
1798 'repo_file_raw', repo_name=repo_name,
1799 commit_id=file_obj.commit.raw_id,
1799 commit_id=file_obj.commit.raw_id,
1800 f_path=file_obj.path)
1800 f_path=file_obj.path)
1801
1801
1802 return literal(
1802 return literal(
1803 '<img class="rendered-binary" alt="rendered-image" src="{}">'.format(src))
1803 '<img class="rendered-binary" alt="rendered-image" src="{}">'.format(src))
1804
1804
1805
1805
1806 def renderer_from_filename(filename, exclude=None):
1806 def renderer_from_filename(filename, exclude=None):
1807 """
1807 """
1808 choose a renderer based on filename, this works only for text based files
1808 choose a renderer based on filename, this works only for text based files
1809 """
1809 """
1810
1810
1811 # ipython
1811 # ipython
1812 for ext in ['*.ipynb']:
1812 for ext in ['*.ipynb']:
1813 if fnmatch.fnmatch(filename, pat=ext):
1813 if fnmatch.fnmatch(filename, pat=ext):
1814 return 'jupyter'
1814 return 'jupyter'
1815
1815
1816 is_markup = MarkupRenderer.renderer_from_filename(filename, exclude=exclude)
1816 is_markup = MarkupRenderer.renderer_from_filename(filename, exclude=exclude)
1817 if is_markup:
1817 if is_markup:
1818 return is_markup
1818 return is_markup
1819 return None
1819 return None
1820
1820
1821
1821
1822 def render(source, renderer='rst', mentions=False, relative_urls=None,
1822 def render(source, renderer='rst', mentions=False, relative_urls=None,
1823 repo_name=None, active_pattern_entries=None, issues_container_callback=None):
1823 repo_name=None, active_pattern_entries=None, issues_container_callback=None):
1824
1824
1825 def maybe_convert_relative_links(html_source):
1825 def maybe_convert_relative_links(html_source):
1826 if relative_urls:
1826 if relative_urls:
1827 return relative_links(html_source, relative_urls)
1827 return relative_links(html_source, relative_urls)
1828 return html_source
1828 return html_source
1829
1829
1830 if renderer == 'plain':
1830 if renderer == 'plain':
1831 return literal(
1831 return literal(
1832 MarkupRenderer.plain(source, leading_newline=False))
1832 MarkupRenderer.plain(source, leading_newline=False))
1833
1833
1834 elif renderer == 'rst':
1834 elif renderer == 'rst':
1835 if repo_name:
1835 if repo_name:
1836 # process patterns on comments if we pass in repo name
1836 # process patterns on comments if we pass in repo name
1837 source, issues, errors = process_patterns(
1837 source, issues, errors = process_patterns(
1838 source, repo_name, link_format='rst',
1838 source, repo_name, link_format='rst',
1839 active_entries=active_pattern_entries)
1839 active_entries=active_pattern_entries)
1840 if issues_container_callback is not None:
1840 if issues_container_callback is not None:
1841 for issue in issues:
1841 for issue in issues:
1842 issues_container_callback(issue)
1842 issues_container_callback(issue)
1843
1843
1844 rendered_block = maybe_convert_relative_links(
1844 rendered_block = maybe_convert_relative_links(
1845 MarkupRenderer.rst(source, mentions=mentions))
1845 MarkupRenderer.rst(source, mentions=mentions))
1846
1846
1847 return literal(f'<div class="rst-block">{rendered_block}</div>')
1847 return literal(f'<div class="rst-block">{rendered_block}</div>')
1848
1848
1849 elif renderer == 'markdown':
1849 elif renderer == 'markdown':
1850 if repo_name:
1850 if repo_name:
1851 # process patterns on comments if we pass in repo name
1851 # process patterns on comments if we pass in repo name
1852 source, issues, errors = process_patterns(
1852 source, issues, errors = process_patterns(
1853 source, repo_name, link_format='markdown',
1853 source, repo_name, link_format='markdown',
1854 active_entries=active_pattern_entries)
1854 active_entries=active_pattern_entries)
1855 if issues_container_callback is not None:
1855 if issues_container_callback is not None:
1856 for issue in issues:
1856 for issue in issues:
1857 issues_container_callback(issue)
1857 issues_container_callback(issue)
1858
1858
1859 rendered_block = maybe_convert_relative_links(
1859 rendered_block = maybe_convert_relative_links(
1860 MarkupRenderer.markdown(source, flavored=True, mentions=mentions))
1860 MarkupRenderer.markdown(source, flavored=True, mentions=mentions))
1861 return literal(f'<div class="markdown-block">{rendered_block}</div>')
1861 return literal(f'<div class="markdown-block">{rendered_block}</div>')
1862
1862
1863 elif renderer == 'jupyter':
1863 elif renderer == 'jupyter':
1864 rendered_block = maybe_convert_relative_links(
1864 rendered_block = maybe_convert_relative_links(
1865 MarkupRenderer.jupyter(source))
1865 MarkupRenderer.jupyter(source))
1866 return literal(f'<div class="ipynb">{rendered_block}</div>')
1866 return literal(f'<div class="ipynb">{rendered_block}</div>')
1867
1867
1868 # None means just show the file-source
1868 # None means just show the file-source
1869 return None
1869 return None
1870
1870
1871
1871
1872 def commit_status(repo, commit_id):
1872 def commit_status(repo, commit_id):
1873 return ChangesetStatusModel().get_status(repo, commit_id)
1873 return ChangesetStatusModel().get_status(repo, commit_id)
1874
1874
1875
1875
1876 def commit_status_lbl(commit_status):
1876 def commit_status_lbl(commit_status):
1877 return dict(ChangesetStatus.STATUSES).get(commit_status)
1877 return dict(ChangesetStatus.STATUSES).get(commit_status)
1878
1878
1879
1879
1880 def commit_time(repo_name, commit_id):
1880 def commit_time(repo_name, commit_id):
1881 repo = Repository.get_by_repo_name(repo_name)
1881 repo = Repository.get_by_repo_name(repo_name)
1882 commit = repo.get_commit(commit_id=commit_id)
1882 commit = repo.get_commit(commit_id=commit_id)
1883 return commit.date
1883 return commit.date
1884
1884
1885
1885
1886 def get_permission_name(key):
1886 def get_permission_name(key):
1887 return dict(Permission.PERMS).get(key)
1887 return dict(Permission.PERMS).get(key)
1888
1888
1889
1889
1890 def journal_filter_help(request):
1890 def journal_filter_help(request):
1891 _ = request.translate
1891 _ = request.translate
1892 from rhodecode.lib.audit_logger import ACTIONS
1892 from rhodecode.lib.audit_logger import ACTIONS
1893 actions = '\n'.join(textwrap.wrap(', '.join(sorted(ACTIONS.keys())), 80))
1893 actions = '\n'.join(textwrap.wrap(', '.join(sorted(ACTIONS.keys())), 80))
1894
1894
1895 return _(
1895 return _(
1896 'Example filter terms:\n' +
1896 'Example filter terms:\n' +
1897 ' repository:vcs\n' +
1897 ' repository:vcs\n' +
1898 ' username:marcin\n' +
1898 ' username:marcin\n' +
1899 ' username:(NOT marcin)\n' +
1899 ' username:(NOT marcin)\n' +
1900 ' action:*push*\n' +
1900 ' action:*push*\n' +
1901 ' ip:127.0.0.1\n' +
1901 ' ip:127.0.0.1\n' +
1902 ' date:20120101\n' +
1902 ' date:20120101\n' +
1903 ' date:[20120101100000 TO 20120102]\n' +
1903 ' date:[20120101100000 TO 20120102]\n' +
1904 '\n' +
1904 '\n' +
1905 'Actions: {actions}\n' +
1905 'Actions: {actions}\n' +
1906 '\n' +
1906 '\n' +
1907 'Generate wildcards using \'*\' character:\n' +
1907 'Generate wildcards using \'*\' character:\n' +
1908 ' "repository:vcs*" - search everything starting with \'vcs\'\n' +
1908 ' "repository:vcs*" - search everything starting with \'vcs\'\n' +
1909 ' "repository:*vcs*" - search for repository containing \'vcs\'\n' +
1909 ' "repository:*vcs*" - search for repository containing \'vcs\'\n' +
1910 '\n' +
1910 '\n' +
1911 'Optional AND / OR operators in queries\n' +
1911 'Optional AND / OR operators in queries\n' +
1912 ' "repository:vcs OR repository:test"\n' +
1912 ' "repository:vcs OR repository:test"\n' +
1913 ' "username:test AND repository:test*"\n'
1913 ' "username:test AND repository:test*"\n'
1914 ).format(actions=actions)
1914 ).format(actions=actions)
1915
1915
1916
1916
1917 def not_mapped_error(repo_name):
1917 def not_mapped_error(repo_name):
1918 from rhodecode.translation import _
1918 from rhodecode.translation import _
1919 flash(_('%s repository is not mapped to db perhaps'
1919 flash(_('%s repository is not mapped to db perhaps'
1920 ' it was created or renamed from the filesystem'
1920 ' it was created or renamed from the filesystem'
1921 ' please run the application again'
1921 ' please run the application again'
1922 ' in order to rescan repositories') % repo_name, category='error')
1922 ' in order to rescan repositories') % repo_name, category='error')
1923
1923
1924
1924
1925 def ip_range(ip_addr):
1925 def ip_range(ip_addr):
1926 from rhodecode.model.db import UserIpMap
1926 from rhodecode.model.db import UserIpMap
1927 s, e = UserIpMap._get_ip_range(ip_addr)
1927 s, e = UserIpMap._get_ip_range(ip_addr)
1928 return '%s - %s' % (s, e)
1928 return '%s - %s' % (s, e)
1929
1929
1930
1930
1931 def form(url, method='post', needs_csrf_token=True, **attrs):
1931 def form(url, method='post', needs_csrf_token=True, **attrs):
1932 """Wrapper around webhelpers.tags.form to prevent CSRF attacks."""
1932 """Wrapper around webhelpers.tags.form to prevent CSRF attacks."""
1933 if method.lower() != 'get' and needs_csrf_token:
1933 if method.lower() != 'get' and needs_csrf_token:
1934 raise Exception(
1934 raise Exception(
1935 'Forms to POST/PUT/DELETE endpoints should have (in general) a ' +
1935 'Forms to POST/PUT/DELETE endpoints should have (in general) a ' +
1936 'CSRF token. If the endpoint does not require such token you can ' +
1936 'CSRF token. If the endpoint does not require such token you can ' +
1937 'explicitly set the parameter needs_csrf_token to false.')
1937 'explicitly set the parameter needs_csrf_token to false.')
1938
1938
1939 return insecure_form(url, method=method, **attrs)
1939 return insecure_form(url, method=method, **attrs)
1940
1940
1941
1941
1942 def secure_form(form_url, method="POST", multipart=False, **attrs):
1942 def secure_form(form_url, method="POST", multipart=False, **attrs):
1943 """Start a form tag that points the action to an url. This
1943 """Start a form tag that points the action to an url. This
1944 form tag will also include the hidden field containing
1944 form tag will also include the hidden field containing
1945 the auth token.
1945 the auth token.
1946
1946
1947 The url options should be given either as a string, or as a
1947 The url options should be given either as a string, or as a
1948 ``url()`` function. The method for the form defaults to POST.
1948 ``url()`` function. The method for the form defaults to POST.
1949
1949
1950 Options:
1950 Options:
1951
1951
1952 ``multipart``
1952 ``multipart``
1953 If set to True, the enctype is set to "multipart/form-data".
1953 If set to True, the enctype is set to "multipart/form-data".
1954 ``method``
1954 ``method``
1955 The method to use when submitting the form, usually either
1955 The method to use when submitting the form, usually either
1956 "GET" or "POST". If "PUT", "DELETE", or another verb is used, a
1956 "GET" or "POST". If "PUT", "DELETE", or another verb is used, a
1957 hidden input with name _method is added to simulate the verb
1957 hidden input with name _method is added to simulate the verb
1958 over POST.
1958 over POST.
1959
1959
1960 """
1960 """
1961
1961
1962 if 'request' in attrs:
1962 if 'request' in attrs:
1963 session = attrs['request'].session
1963 session = attrs['request'].session
1964 del attrs['request']
1964 del attrs['request']
1965 else:
1965 else:
1966 raise ValueError(
1966 raise ValueError(
1967 'Calling this form requires request= to be passed as argument')
1967 'Calling this form requires request= to be passed as argument')
1968
1968
1969 _form = insecure_form(form_url, method, multipart, **attrs)
1969 _form = insecure_form(form_url, method, multipart, **attrs)
1970 token = literal(
1970 token = literal(
1971 '<input type="hidden" name="{}" value="{}">'.format(
1971 '<input type="hidden" name="{}" value="{}">'.format(
1972 csrf_token_key, get_csrf_token(session)))
1972 csrf_token_key, get_csrf_token(session)))
1973
1973
1974 return literal("%s\n%s" % (_form, token))
1974 return literal("%s\n%s" % (_form, token))
1975
1975
1976
1976
1977 def dropdownmenu(name, selected, options, enable_filter=False, **attrs):
1977 def dropdownmenu(name, selected, options, enable_filter=False, **attrs):
1978 select_html = select(name, selected, options, **attrs)
1978 select_html = select(name, selected, options, **attrs)
1979
1979
1980 select2 = """
1980 select2 = """
1981 <script>
1981 <script>
1982 $(document).ready(function() {
1982 $(document).ready(function() {
1983 $('#%s').select2({
1983 $('#%s').select2({
1984 containerCssClass: 'drop-menu %s',
1984 containerCssClass: 'drop-menu %s',
1985 dropdownCssClass: 'drop-menu-dropdown',
1985 dropdownCssClass: 'drop-menu-dropdown',
1986 dropdownAutoWidth: true%s
1986 dropdownAutoWidth: true%s
1987 });
1987 });
1988 });
1988 });
1989 </script>
1989 </script>
1990 """
1990 """
1991
1991
1992 filter_option = """,
1992 filter_option = """,
1993 minimumResultsForSearch: -1
1993 minimumResultsForSearch: -1
1994 """
1994 """
1995 input_id = attrs.get('id') or name
1995 input_id = attrs.get('id') or name
1996 extra_classes = ' '.join(attrs.pop('extra_classes', []))
1996 extra_classes = ' '.join(attrs.pop('extra_classes', []))
1997 filter_enabled = "" if enable_filter else filter_option
1997 filter_enabled = "" if enable_filter else filter_option
1998 select_script = literal(select2 % (input_id, extra_classes, filter_enabled))
1998 select_script = literal(select2 % (input_id, extra_classes, filter_enabled))
1999
1999
2000 return literal(select_html+select_script)
2000 return literal(select_html+select_script)
2001
2001
2002
2002
2003 def get_visual_attr(tmpl_context_var, attr_name):
2003 def get_visual_attr(tmpl_context_var, attr_name):
2004 """
2004 """
2005 A safe way to get a variable from visual variable of template context
2005 A safe way to get a variable from visual variable of template context
2006
2006
2007 :param tmpl_context_var: instance of tmpl_context, usually present as `c`
2007 :param tmpl_context_var: instance of tmpl_context, usually present as `c`
2008 :param attr_name: name of the attribute we fetch from the c.visual
2008 :param attr_name: name of the attribute we fetch from the c.visual
2009 """
2009 """
2010 visual = getattr(tmpl_context_var, 'visual', None)
2010 visual = getattr(tmpl_context_var, 'visual', None)
2011 if not visual:
2011 if not visual:
2012 return
2012 return
2013 else:
2013 else:
2014 return getattr(visual, attr_name, None)
2014 return getattr(visual, attr_name, None)
2015
2015
2016
2016
2017 def get_last_path_part(file_node):
2017 def get_last_path_part(file_node):
2018 if not file_node.path:
2018 if not file_node.path:
2019 return '/'
2019 return '/'
2020
2020
2021 path = safe_str(file_node.path.split('/')[-1])
2021 path = safe_str(file_node.path.split('/')[-1])
2022 return '../' + path
2022 return '../' + path
2023
2023
2024
2024
2025 def route_url(*args, **kwargs):
2025 def route_url(*args, **kwargs):
2026 """
2026 """
2027 Wrapper around pyramids `route_url` (fully qualified url) function.
2027 Wrapper around pyramids `route_url` (fully qualified url) function.
2028 """
2028 """
2029 req = get_current_request()
2029 req = get_current_request()
2030 return req.route_url(*args, **kwargs)
2030 return req.route_url(*args, **kwargs)
2031
2031
2032
2032
2033 def route_path(*args, **kwargs):
2033 def route_path(*args, **kwargs):
2034 """
2034 """
2035 Wrapper around pyramids `route_path` function.
2035 Wrapper around pyramids `route_path` function.
2036 """
2036 """
2037 req = get_current_request()
2037 req = get_current_request()
2038 return req.route_path(*args, **kwargs)
2038 return req.route_path(*args, **kwargs)
2039
2039
2040
2040
2041 def route_path_or_none(*args, **kwargs):
2041 def route_path_or_none(*args, **kwargs):
2042 try:
2042 try:
2043 return route_path(*args, **kwargs)
2043 return route_path(*args, **kwargs)
2044 except KeyError:
2044 except KeyError:
2045 return None
2045 return None
2046
2046
2047
2047
2048 def current_route_path(request, **kw):
2048 def current_route_path(request, **kw):
2049 new_args = request.GET.mixed()
2049 new_args = request.GET.mixed()
2050 new_args.update(kw)
2050 new_args.update(kw)
2051 return request.current_route_path(_query=new_args)
2051 return request.current_route_path(_query=new_args)
2052
2052
2053
2053
2054 def curl_api_example(method, args):
2054 def curl_api_example(method, args):
2055 args_json = json.dumps(OrderedDict([
2055 args_json = json.dumps(OrderedDict([
2056 ('id', 1),
2056 ('id', 1),
2057 ('auth_token', 'SECRET'),
2057 ('auth_token', 'SECRET'),
2058 ('method', method),
2058 ('method', method),
2059 ('args', args)
2059 ('args', args)
2060 ]))
2060 ]))
2061
2061
2062 return "curl {api_url} -X POST -H 'content-type:text/plain' --data-binary '{args_json}'".format(
2062 return "curl {api_url} -X POST -H 'content-type:text/plain' --data-binary '{args_json}'".format(
2063 api_url=route_url('apiv2'),
2063 api_url=route_url('apiv2'),
2064 args_json=args_json
2064 args_json=args_json
2065 )
2065 )
2066
2066
2067
2067
2068 def api_call_example(method, args):
2068 def api_call_example(method, args):
2069 """
2069 """
2070 Generates an API call example via CURL
2070 Generates an API call example via CURL
2071 """
2071 """
2072 curl_call = curl_api_example(method, args)
2072 curl_call = curl_api_example(method, args)
2073
2073
2074 return literal(
2074 return literal(
2075 curl_call +
2075 curl_call +
2076 "<br/><br/>SECRET can be found in <a href=\"{token_url}\">auth-tokens</a> page, "
2076 "<br/><br/>SECRET can be found in <a href=\"{token_url}\">auth-tokens</a> page, "
2077 "and needs to be of `api calls` role."
2077 "and needs to be of `api calls` role."
2078 .format(token_url=route_url('my_account_auth_tokens')))
2078 .format(token_url=route_url('my_account_auth_tokens')))
2079
2079
2080
2080
2081 def notification_description(notification, request):
2081 def notification_description(notification, request):
2082 """
2082 """
2083 Generate notification human readable description based on notification type
2083 Generate notification human readable description based on notification type
2084 """
2084 """
2085 from rhodecode.model.notification import NotificationModel
2085 from rhodecode.model.notification import NotificationModel
2086 return NotificationModel().make_description(
2086 return NotificationModel().make_description(
2087 notification, translate=request.translate)
2087 notification, translate=request.translate)
2088
2088
2089
2089
2090 def go_import_header(request, db_repo=None):
2090 def go_import_header(request, db_repo=None):
2091 """
2091 """
2092 Creates a header for go-import functionality in Go Lang
2092 Creates a header for go-import functionality in Go Lang
2093 """
2093 """
2094
2094
2095 if not db_repo:
2095 if not db_repo:
2096 return
2096 return
2097 if 'go-get' not in request.GET:
2097 if 'go-get' not in request.GET:
2098 return
2098 return
2099
2099
2100 clone_url = db_repo.clone_url()
2100 clone_url = db_repo.clone_url()
2101 prefix = re.split(r'^https?:\/\/', clone_url)[-1]
2101 prefix = re.split(r'^https?:\/\/', clone_url)[-1]
2102 # we have a repo and go-get flag,
2102 # we have a repo and go-get flag,
2103 return literal('<meta name="go-import" content="{} {} {}">'.format(
2103 return literal('<meta name="go-import" content="{} {} {}">'.format(
2104 prefix, db_repo.repo_type, clone_url))
2104 prefix, db_repo.repo_type, clone_url))
2105
2105
2106
2106
2107 def reviewer_as_json(*args, **kwargs):
2107 def reviewer_as_json(*args, **kwargs):
2108 from rhodecode.apps.repository.utils import reviewer_as_json as _reviewer_as_json
2108 from rhodecode.apps.repository.utils import reviewer_as_json as _reviewer_as_json
2109 return _reviewer_as_json(*args, **kwargs)
2109 return _reviewer_as_json(*args, **kwargs)
2110
2110
2111
2111
2112 def get_repo_view_type(request):
2112 def get_repo_view_type(request):
2113 route_name = request.matched_route.name
2113 route_name = request.matched_route.name
2114 route_to_view_type = {
2114 route_to_view_type = {
2115 'repo_changelog': 'commits',
2115 'repo_changelog': 'commits',
2116 'repo_commits': 'commits',
2116 'repo_commits': 'commits',
2117 'repo_files': 'files',
2117 'repo_files': 'files',
2118 'repo_summary': 'summary',
2118 'repo_summary': 'summary',
2119 'repo_commit': 'commit'
2119 'repo_commit': 'commit'
2120 }
2120 }
2121
2121
2122 return route_to_view_type.get(route_name)
2122 return route_to_view_type.get(route_name)
2123
2123
2124
2124
2125 def is_active(menu_entry, selected):
2125 def is_active(menu_entry, selected):
2126 """
2126 """
2127 Returns active class for selecting menus in templates
2127 Returns active class for selecting menus in templates
2128 <li class=${h.is_active('settings', current_active)}></li>
2128 <li class=${h.is_active('settings', current_active)}></li>
2129 """
2129 """
2130 if not isinstance(menu_entry, list):
2130 if not isinstance(menu_entry, list):
2131 menu_entry = [menu_entry]
2131 menu_entry = [menu_entry]
2132
2132
2133 if selected in menu_entry:
2133 if selected in menu_entry:
2134 return "active"
2134 return "active"
2135
2135
2136
2136
2137 class IssuesRegistry(object):
2137 class IssuesRegistry(object):
2138 """
2138 """
2139 issue_registry = IssuesRegistry()
2139 issue_registry = IssuesRegistry()
2140 some_func(issues_callback=issues_registry(...))
2140 some_func(issues_callback=issues_registry(...))
2141 """
2141 """
2142
2142
2143 def __init__(self):
2143 def __init__(self):
2144 self.issues = []
2144 self.issues = []
2145 self.unique_issues = collections.defaultdict(lambda: [])
2145 self.unique_issues = collections.defaultdict(lambda: [])
2146
2146
2147 def __call__(self, commit_dict=None):
2147 def __call__(self, commit_dict=None):
2148 def callback(issue):
2148 def callback(issue):
2149 if commit_dict and issue:
2149 if commit_dict and issue:
2150 issue['commit'] = commit_dict
2150 issue['commit'] = commit_dict
2151 self.issues.append(issue)
2151 self.issues.append(issue)
2152 self.unique_issues[issue['id']].append(issue)
2152 self.unique_issues[issue['id']].append(issue)
2153 return callback
2153 return callback
2154
2154
2155 def get_issues(self):
2155 def get_issues(self):
2156 return self.issues
2156 return self.issues
2157
2157
2158 @property
2158 @property
2159 def issues_unique_count(self):
2159 def issues_unique_count(self):
2160 return len(set(i['id'] for i in self.issues))
2160 return len(set(i['id'] for i in self.issues))
@@ -1,23 +1,62 b''
1 # Copyright (C) 2020-2023 RhodeCode GmbH
1 # Copyright (C) 2020-2023 RhodeCode GmbH
2 #
2 #
3 # This program is free software: you can redistribute it and/or modify
3 # This program is free software: you can redistribute it and/or modify
4 # it under the terms of the GNU Affero General Public License, version 3
4 # it under the terms of the GNU Affero General Public License, version 3
5 # (only), as published by the Free Software Foundation.
5 # (only), as published by the Free Software Foundation.
6 #
6 #
7 # This program is distributed in the hope that it will be useful,
7 # This program is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 # GNU General Public License for more details.
10 # GNU General Public License for more details.
11 #
11 #
12 # You should have received a copy of the GNU Affero General Public License
12 # You should have received a copy of the GNU Affero General Public License
13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
14 #
14 #
15 # This program is dual-licensed. If you wish to learn more about the
15 # This program is dual-licensed. If you wish to learn more about the
16 # RhodeCode Enterprise Edition, including its added features, Support services,
16 # RhodeCode Enterprise Edition, including its added features, Support services,
17 # and proprietary license terms, please see https://rhodecode.com/licenses/
17 # and proprietary license terms, please see https://rhodecode.com/licenses/
18
18
19 import functools
20 import logging
21 from .html_sanitizer_defs import markdown_attrs, markdown_tags, all_tags, all_styles
22
23
24 log = logging.getLogger(__name__)
25
26
19 # base64 filter e.g ${ example | base64,n }
27 # base64 filter e.g ${ example | base64,n }
20 def base64(text):
28 def base64(text):
21 from rhodecode.lib.str_utils import base64_to_str
29 from rhodecode.lib.str_utils import base64_to_str
22 return base64_to_str(text)
30 return base64_to_str(text)
23
31
32
33 def sanitize_html(text, **kwargs):
34 # TODO: replace this with https://nh3.readthedocs.io/en/latest
35 # bleach is abandoned and deprecated :/
36 import bleach
37 from bleach.css_sanitizer import CSSSanitizer
38
39 css_sanitizer = CSSSanitizer(allowed_css_properties=all_styles)
40
41 markdown = kwargs.pop('markdown', False)
42
43 allowed_attrs = markdown_attrs
44
45 cleaner = functools.partial(bleach.clean,
46 tags=all_tags,
47 attributes=allowed_attrs,
48 css_sanitizer=css_sanitizer,
49 strip_comments=False, **kwargs)
50
51 if markdown:
52 cleaner = functools.partial(bleach.clean,
53 tags=markdown_tags,
54 attributes=markdown_attrs,
55 css_sanitizer=css_sanitizer,
56 strip_comments=False, **kwargs)
57
58 try:
59 return cleaner(text)
60 except Exception:
61 log.exception('Failed to sanitize html')
62 return 'TEXT CANNOT BE PARSED USING HTML SANITIZE'
@@ -1,408 +1,409 b''
1 all_tags = [
1 all_tags = [
2 "a", "abbr", "acronym", "address", "applet", "area", "article", "aside", "audio",
2 "a", "abbr", "acronym", "address", "applet", "area", "article", "aside", "audio",
3 "b", "base", "basefont", "bdi", "bdo", "bgsound", "big", "blink", "blockquote", "body", "br", "button",
3 "b", "base", "basefont", "bdi", "bdo", "bgsound", "big", "blink", "blockquote", "body", "br", "button",
4 "canvas", "caption", "center", "cite", "code", "col", "colgroup", "command", "content",
4 "canvas", "caption", "center", "cite", "code", "col", "colgroup", "command", "content",
5 "data", "datalist", "dd", "del", "detals", "dfn", "dialog", "dir", "div", "dl", "dt",
5 "data", "datalist", "dd", "del", "detals", "dfn", "dialog", "dir", "div", "dl", "dt",
6 "element", "em", "embed",
6 "element", "em", "embed",
7 "fieldset", "figcaption", "figure", "font", "footer", "form", "frame", "frameset",
7 "fieldset", "figcaption", "figure", "font", "footer", "form", "frame", "frameset",
8 "h1", "h2", "h3", "h4", "h5", "h6", "head", "header", "hgroup", "hr", "html",
8 "h1", "h2", "h3", "h4", "h5", "h6", "head", "header", "hgroup", "hr", "html",
9 "i", "iframe", "image", "img", "input", "ins", "isindex",
9 "i", "iframe", "image", "img", "input", "ins", "isindex",
10 "kbd", "keygen",
10 "kbd", "keygen",
11 "label", "legend", "li", "link", "listing",
11 "label", "legend", "li", "link", "listing",
12 "main", "map", "mark", "marquee", "menu", "menuitem", "meta", "meter", "multicol",
12 "main", "map", "mark", "marquee", "menu", "menuitem", "meta", "meter", "multicol",
13 "nav", "nobr", "noembed", "noframes", "noscript",
13 "nav", "nobr", "noembed", "noframes", "noscript",
14 "object", "ol", "optgroup", "option", "output",
14 "object", "ol", "optgroup", "option", "output",
15 "p", "param", "picture", "plaintext", "pre", "progress",
15 "p", "param", "picture", "plaintext", "pre", "progress",
16 "q",
16 "q",
17 "rp", "rt", "ruby",
17 "rp", "rt", "ruby",
18 "s", "samp", "script", "section", "select", "shadow", "small", "source", "spacer", "span", "strike", "strong", "style", "sub", "summary", "sup",
18 "s", "samp", "script", "section", "select", "shadow", "small", "source", "spacer", "span", "strike", "strong", "style", "sub", "summary", "sup",
19 "table", "tbody", "td", "template", "textarea", "tfoot", "th", "thead", "time", "title", "tr", "track", "tt",
19 "table", "tbody", "td", "template", "textarea", "tfoot", "th", "thead", "time", "title", "tr", "track", "tt",
20 "u", "ul",
20 "u", "ul",
21 "var", "video",
21 "var", "video",
22 "wbr",
22 "wbr",
23 "xmp",
23 "xmp",
24 ]
24 ]
25
25
26 # List tags that, if included in a page, could break markup or open XSS.
26 # List tags that, if included in a page, could break markup or open XSS.
27 generally_xss_unsafe = [
27 generally_xss_unsafe = [
28 "applet", "audio",
28 "applet", "audio",
29 "bgsound", "body",
29 "bgsound", "body",
30 "canvas",
30 "canvas",
31 "embed",
31 "embed",
32 "frame", "frameset",
32 "frame", "frameset",
33 "head", "html",
33 "head", "html",
34 "iframe",
34 "iframe",
35 "link",
35 "link",
36 "meta",
36 "meta",
37 "object",
37 "object",
38 "param",
38 "param",
39 "source", "script",
39 "source", "script",
40 "ruby", "rt",
40 "ruby", "rt",
41 "title", "track",
41 "title", "track",
42 "video",
42 "video",
43 "xmp"
43 "xmp"
44 ]
44 ]
45
45
46 # Tags that, if included on the page, will probably not break markup or open
46 # Tags that, if included on the page, will probably not break markup or open
47 # XSS. Note that these must be combined with attribute whitelisting, or things
47 # XSS. Note that these must be combined with attribute whitelisting, or things
48 # like <img> and <style> could still be unsafe.
48 # like <img> and <style> could still be unsafe.
49 generally_xss_safe = list(set(all_tags) - set(generally_xss_unsafe))
49 generally_xss_safe = list(set(all_tags) - set(generally_xss_unsafe))
50 generally_xss_safe.sort()
50 generally_xss_safe.sort()
51
51
52 # Tags suitable for rendering markdown
52 # Tags suitable for rendering markdown
53 markdown_tags = [
53 markdown_tags = [
54 "h1", "h2", "h3", "h4", "h5", "h6",
54 "h1", "h2", "h3", "h4", "h5", "h6",
55 "b", "i", "strong", "em", "tt",
55 "b", "i", "strong", "em", "tt",
56 "p", "br",
56 "p", "br",
57 "span", "div", "blockquote", "code", "hr", "pre", "del",
57 "span", "div", "blockquote", "code", "hr", "pre", "del",
58 "ul", "ol", "li",
58 "ul", "ol", "li",
59 "dl", "dd", "dt",
59 "dl", "dd", "dt",
60 "table", "thead", "tbody", "tfoot", "tr", "th", "td",
60 "table", "thead", "tbody", "tfoot", "tr", "th", "td",
61 "img",
61 "img",
62 "a",
62 "a",
63 "input",
63 "input",
64 "details",
64 "details",
65 "summary"
65 "summary",
66 "div"
66 ]
67 ]
67
68
68 markdown_attrs = {
69 markdown_attrs = {
69 "*": ["class", "style", "align"],
70 "*": ["class", "style", "align"],
70 "img": ["src", "alt", "title", "width", "height", "hspace", "align"],
71 "img": ["src", "alt", "title", "width", "height", "hspace", "align"],
71 "a": ["href", "alt", "title", "name", "data-hovercard-alt", "data-hovercard-url"],
72 "a": ["href", "alt", "title", "name", "data-hovercard-alt", "data-hovercard-url"],
72 "abbr": ["title"],
73 "abbr": ["title"],
73 "acronym": ["title"],
74 "acronym": ["title"],
74 "pre": ["lang"],
75 "pre": ["lang"],
75 "input": ["type", "disabled", "checked"],
76 "input": ["type", "disabled", "checked"],
76 "strong": ["title", "data-hovercard-alt", "data-hovercard-url"],
77 "strong": ["title", "data-hovercard-alt", "data-hovercard-url"],
77 }
78 }
78
79
79 standard_styles = [
80 standard_styles = [
80 # Taken from https://developer.mozilla.org/en-US/docs/Web/CSS/Reference
81 # Taken from https://developer.mozilla.org/en-US/docs/Web/CSS/Reference
81 # This includes pseudo-classes, pseudo-elements, @-rules, units, and
82 # This includes pseudo-classes, pseudo-elements, @-rules, units, and
82 # selectors in addition to properties, but it doesn't matter for our
83 # selectors in addition to properties, but it doesn't matter for our
83 # purposes -- we don't need to filter styles..
84 # purposes -- we don't need to filter styles..
84 ":active", "::after (:after)", "align-content", "align-items", "align-self",
85 ":active", "::after (:after)", "align-content", "align-items", "align-self",
85 "all", "<angle>", "animation", "animation-delay", "animation-direction",
86 "all", "<angle>", "animation", "animation-delay", "animation-direction",
86 "animation-duration", "animation-fill-mode", "animation-iteration-count",
87 "animation-duration", "animation-fill-mode", "animation-iteration-count",
87 "animation-name", "animation-play-state", "animation-timing-function",
88 "animation-name", "animation-play-state", "animation-timing-function",
88 "@annotation", "annotation()", "attr()", "::backdrop", "backface-visibility",
89 "@annotation", "annotation()", "attr()", "::backdrop", "backface-visibility",
89 "background", "background-attachment", "background-blend-mode",
90 "background", "background-attachment", "background-blend-mode",
90 "background-clip", "background-color", "background-image", "background-origin",
91 "background-clip", "background-color", "background-image", "background-origin",
91 "background-position", "background-repeat", "background-size", "<basic-shape>",
92 "background-position", "background-repeat", "background-size", "<basic-shape>",
92 "::before (:before)", "<blend-mode>", "blur()", "border", "border-bottom",
93 "::before (:before)", "<blend-mode>", "blur()", "border", "border-bottom",
93 "border-bottom-color", "border-bottom-left-radius",
94 "border-bottom-color", "border-bottom-left-radius",
94 "border-bottom-right-radius", "border-bottom-style", "border-bottom-width",
95 "border-bottom-right-radius", "border-bottom-style", "border-bottom-width",
95 "border-collapse", "border-color", "border-image", "border-image-outset",
96 "border-collapse", "border-color", "border-image", "border-image-outset",
96 "border-image-repeat", "border-image-slice", "border-image-source",
97 "border-image-repeat", "border-image-slice", "border-image-source",
97 "border-image-width", "border-left", "border-left-color", "border-left-style",
98 "border-image-width", "border-left", "border-left-color", "border-left-style",
98 "border-left-width", "border-radius", "border-right", "border-right-color",
99 "border-left-width", "border-radius", "border-right", "border-right-color",
99 "border-right-style", "border-right-width", "border-spacing", "border-style",
100 "border-right-style", "border-right-width", "border-spacing", "border-style",
100 "border-top", "border-top-color", "border-top-left-radius",
101 "border-top", "border-top-color", "border-top-left-radius",
101 "border-top-right-radius", "border-top-style", "border-top-width",
102 "border-top-right-radius", "border-top-style", "border-top-width",
102 "border-width", "bottom", "box-decoration-break", "box-shadow", "box-sizing",
103 "border-width", "bottom", "box-decoration-break", "box-shadow", "box-sizing",
103 "break-after", "break-before", "break-inside", "brightness()", "calc()",
104 "break-after", "break-before", "break-inside", "brightness()", "calc()",
104 "caption-side", "ch", "@character-variant", "character-variant()", "@charset",
105 "caption-side", "ch", "@character-variant", "character-variant()", "@charset",
105 ":checked", "circle()", "clear", "clip", "clip-path", "cm", "color", "<color>",
106 ":checked", "circle()", "clear", "clip", "clip-path", "cm", "color", "<color>",
106 "columns", "column-count", "column-fill", "column-gap", "column-rule",
107 "columns", "column-count", "column-fill", "column-gap", "column-rule",
107 "column-rule-color", "column-rule-style", "column-rule-width", "column-span",
108 "column-rule-color", "column-rule-style", "column-rule-width", "column-span",
108 "column-width", "content", "contrast()", "<counter>", "counter-increment",
109 "column-width", "content", "contrast()", "<counter>", "counter-increment",
109 "counter-reset", "@counter-style", "cubic-bezier()", "cursor",
110 "counter-reset", "@counter-style", "cubic-bezier()", "cursor",
110 "<custom-ident>", ":default", "deg", ":dir()", "direction", ":disabled",
111 "<custom-ident>", ":default", "deg", ":dir()", "direction", ":disabled",
111 "display", "@document", "dpcm", "dpi", "dppx", "drop-shadow()", "element()",
112 "display", "@document", "dpcm", "dpi", "dppx", "drop-shadow()", "element()",
112 "ellipse()", "em", ":empty", "empty-cells", ":enabled", "ex", "filter",
113 "ellipse()", "em", ":empty", "empty-cells", ":enabled", "ex", "filter",
113 ":first", ":first-child", "::first-letter", "::first-line",
114 ":first", ":first-child", "::first-letter", "::first-line",
114 ":first-of-type", "flex", "flex-basis", "flex-direction",
115 ":first-of-type", "flex", "flex-basis", "flex-direction",
115 "flex-flow", "flex-grow", "flex-shrink", "flex-wrap", "float", ":focus",
116 "flex-flow", "flex-grow", "flex-shrink", "flex-wrap", "float", ":focus",
116 "font", "@font-face", "font-family", "font-feature-settings",
117 "font", "@font-face", "font-family", "font-feature-settings",
117 "@font-feature-values", "font-kerning", "font-language-override", "font-size",
118 "@font-feature-values", "font-kerning", "font-language-override", "font-size",
118 "font-size-adjust", "font-stretch", "font-style", "font-synthesis",
119 "font-size-adjust", "font-stretch", "font-style", "font-synthesis",
119 "font-variant", "font-variant-alternates", "font-variant-caps",
120 "font-variant", "font-variant-alternates", "font-variant-caps",
120 "font-variant-east-asian", "font-variant-ligatures", "font-variant-numeric",
121 "font-variant-east-asian", "font-variant-ligatures", "font-variant-numeric",
121 "font-variant-position", "font-weight", "<frequency>", ":fullscreen", "grad",
122 "font-variant-position", "font-weight", "<frequency>", ":fullscreen", "grad",
122 "<gradient>", "grayscale()", "grid", "grid-area", "grid-auto-columns",
123 "<gradient>", "grayscale()", "grid", "grid-area", "grid-auto-columns",
123 "grid-auto-flow", "grid-auto-position", "grid-auto-rows", "grid-column",
124 "grid-auto-flow", "grid-auto-position", "grid-auto-rows", "grid-column",
124 "grid-column-start", "grid-column-end", "grid-row", "grid-row-start",
125 "grid-column-start", "grid-column-end", "grid-row", "grid-row-start",
125 "grid-row-end", "grid-template", "grid-template-areas", "grid-template-rows",
126 "grid-row-end", "grid-template", "grid-template-areas", "grid-template-rows",
126 "grid-template-columns", "height", ":hover", "hsl()", "hsla()", "hue-rotate()",
127 "grid-template-columns", "height", ":hover", "hsl()", "hsla()", "hue-rotate()",
127 "hyphens", "hz", "<image>", "image()", "image-rendering", "image-resolution",
128 "hyphens", "hz", "<image>", "image()", "image-rendering", "image-resolution",
128 "image-orientation", "ime-mode", "@import", "in", ":indeterminate", "inherit",
129 "image-orientation", "ime-mode", "@import", "in", ":indeterminate", "inherit",
129 "initial", ":in-range", "inset()", "<integer>", ":invalid", "invert()",
130 "initial", ":in-range", "inset()", "<integer>", ":invalid", "invert()",
130 "isolation", "justify-content", "@keyframes", "khz", ":lang()", ":last-child",
131 "isolation", "justify-content", "@keyframes", "khz", ":lang()", ":last-child",
131 ":last-of-type", "left", ":left", "<length>", "letter-spacing",
132 ":last-of-type", "left", ":left", "<length>", "letter-spacing",
132 "linear-gradient()", "line-break", "line-height", ":link", "list-style",
133 "linear-gradient()", "line-break", "line-height", ":link", "list-style",
133 "list-style-image", "list-style-position", "list-style-type", "margin",
134 "list-style-image", "list-style-position", "list-style-type", "margin",
134 "margin-bottom", "margin-left", "margin-right", "margin-top", "marks", "mask",
135 "margin-bottom", "margin-left", "margin-right", "margin-top", "marks", "mask",
135 "mask-type", "matrix()", "matrix3d()", "max-height", "max-width", "@media",
136 "mask-type", "matrix()", "matrix3d()", "max-height", "max-width", "@media",
136 "min-height", "minmax()", "min-width", "mix-blend-mode", "mm", "ms",
137 "min-height", "minmax()", "min-width", "mix-blend-mode", "mm", "ms",
137 "@namespace", ":not()", ":nth-child()", ":nth-last-child()",
138 "@namespace", ":not()", ":nth-child()", ":nth-last-child()",
138 ":nth-last-of-type()", ":nth-of-type()", "<number>", "object-fit",
139 ":nth-last-of-type()", ":nth-of-type()", "<number>", "object-fit",
139 "object-position", ":only-child", ":only-of-type", "opacity", "opacity()",
140 "object-position", ":only-child", ":only-of-type", "opacity", "opacity()",
140 ":optional", "order", "@ornaments", "ornaments()", "orphans", "outline",
141 ":optional", "order", "@ornaments", "ornaments()", "orphans", "outline",
141 "outline-color", "outline-offset", "outline-style", "outline-width",
142 "outline-color", "outline-offset", "outline-style", "outline-width",
142 ":out-of-range", "overflow", "overflow-wrap", "overflow-x", "overflow-y",
143 ":out-of-range", "overflow", "overflow-wrap", "overflow-x", "overflow-y",
143 "padding", "padding-bottom", "padding-left", "padding-right", "padding-top",
144 "padding", "padding-bottom", "padding-left", "padding-right", "padding-top",
144 "@page", "page-break-after", "page-break-before", "page-break-inside", "pc",
145 "@page", "page-break-after", "page-break-before", "page-break-inside", "pc",
145 "<percentage>", "perspective", "perspective()", "perspective-origin",
146 "<percentage>", "perspective", "perspective()", "perspective-origin",
146 "pointer-events", "polygon()", "position", "<position>", "pt", "px", "quotes",
147 "pointer-events", "polygon()", "position", "<position>", "pt", "px", "quotes",
147 "rad", "radial-gradient()", "<ratio>", ":read-only", ":read-write", "rect()",
148 "rad", "radial-gradient()", "<ratio>", ":read-only", ":read-write", "rect()",
148 "rem", "repeat()", "::repeat-index", "::repeat-item",
149 "rem", "repeat()", "::repeat-index", "::repeat-item",
149 "repeating-linear-gradient()", "repeating-radial-gradient()", ":required",
150 "repeating-linear-gradient()", "repeating-radial-gradient()", ":required",
150 "resize", "<resolution>", "rgb()", "rgba()", "right", ":right", ":root",
151 "resize", "<resolution>", "rgb()", "rgba()", "right", ":right", ":root",
151 "rotate()", "rotatex()", "rotatey()", "rotatez()", "rotate3d()", "ruby-align",
152 "rotate()", "rotatex()", "rotatey()", "rotatez()", "rotate3d()", "ruby-align",
152 "ruby-merge", "ruby-position", "s", "saturate()", "scale()", "scalex()",
153 "ruby-merge", "ruby-position", "s", "saturate()", "scale()", "scalex()",
153 "scaley()", "scalez()", "scale3d()", ":scope", "scroll-behavior",
154 "scaley()", "scalez()", "scale3d()", ":scope", "scroll-behavior",
154 "::selection", "sepia()", "<shape>", "shape-image-threshold", "shape-margin",
155 "::selection", "sepia()", "<shape>", "shape-image-threshold", "shape-margin",
155 "shape-outside", "skew()", "skewx()", "skewy()", "steps()", "<string>",
156 "shape-outside", "skew()", "skewx()", "skewy()", "steps()", "<string>",
156 "@styleset", "styleset()", "@stylistic", "stylistic()", "@supports", "@swash",
157 "@styleset", "styleset()", "@stylistic", "stylistic()", "@supports", "@swash",
157 "swash()", "symbol()", "table-layout", "tab-size", ":target", "text-align",
158 "swash()", "symbol()", "table-layout", "tab-size", ":target", "text-align",
158 "text-align-last", "text-combine-upright", "text-decoration",
159 "text-align-last", "text-combine-upright", "text-decoration",
159 "text-decoration-color", "text-decoration-line", "text-decoration-style",
160 "text-decoration-color", "text-decoration-line", "text-decoration-style",
160 "text-indent", "text-orientation", "text-overflow", "text-rendering",
161 "text-indent", "text-orientation", "text-overflow", "text-rendering",
161 "text-shadow", "text-transform", "text-underline-position", "<time>",
162 "text-shadow", "text-transform", "text-underline-position", "<time>",
162 "<timing-function>", "top", "touch-action", "transform", "transform-origin",
163 "<timing-function>", "top", "touch-action", "transform", "transform-origin",
163 "transform-style", "transition", "transition-delay", "transition-duration",
164 "transform-style", "transition", "transition-delay", "transition-duration",
164 "transition-property", "transition-timing-function", "translate()",
165 "transition-property", "transition-timing-function", "translate()",
165 "translatex()", "translatey()", "translatez()", "translate3d()", "turn",
166 "translatex()", "translatey()", "translatez()", "translate3d()", "turn",
166 "unicode-bidi", "unicode-range", "unset", "<uri>", "url()", "<user-ident>",
167 "unicode-bidi", "unicode-range", "unset", "<uri>", "url()", "<user-ident>",
167 ":valid", "::value", "var()", "vertical-align", "vh", "@viewport",
168 ":valid", "::value", "var()", "vertical-align", "vh", "@viewport",
168 "visibility", ":visited", "vmax", "vmin", "vw", "white-space", "widows",
169 "visibility", ":visited", "vmax", "vmin", "vw", "white-space", "widows",
169 "width", "will-change", "word-break", "word-spacing", "word-wrap",
170 "width", "will-change", "word-break", "word-spacing", "word-wrap",
170 "writing-mode", "z-index",
171 "writing-mode", "z-index",
171
172
172 ]
173 ]
173
174
174 webkit_prefixed_styles = [
175 webkit_prefixed_styles = [
175 # Webkit-prefixed styles
176 # Webkit-prefixed styles
176 # https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Webkit_Extensions
177 # https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Webkit_Extensions
177 "-webkit-animation", "-webkit-animation-delay", "-webkit-animation-direction",
178 "-webkit-animation", "-webkit-animation-delay", "-webkit-animation-direction",
178 "-webkit-animation-duration", "-webkit-animation-fill-mode",
179 "-webkit-animation-duration", "-webkit-animation-fill-mode",
179 "-webkit-animation-iteration-count", "-webkit-animation-name",
180 "-webkit-animation-iteration-count", "-webkit-animation-name",
180 "-webkit-animation-play-state", "-webkit-animation-timing-function",
181 "-webkit-animation-play-state", "-webkit-animation-timing-function",
181 "-webkit-backface-visibility", "-webkit-border-image", "-webkit-column-count",
182 "-webkit-backface-visibility", "-webkit-border-image", "-webkit-column-count",
182 "-webkit-column-gap", "-webkit-column-width", "-webkit-column-rule",
183 "-webkit-column-gap", "-webkit-column-width", "-webkit-column-rule",
183 "-webkit-column-rule-width", "-webkit-column-rule-style",
184 "-webkit-column-rule-width", "-webkit-column-rule-style",
184 "-webkit-column-rule-color", "-webkit-columns", "-webkit-column-span",
185 "-webkit-column-rule-color", "-webkit-columns", "-webkit-column-span",
185 "-webkit-font-feature-settings", "-webkit-font-kerning",
186 "-webkit-font-feature-settings", "-webkit-font-kerning",
186 "-webkit-font-size-delta", "-webkit-font-variant-ligatures",
187 "-webkit-font-size-delta", "-webkit-font-variant-ligatures",
187 "-webkit-grid-column", "-webkit-grid-row", "-webkit-hyphens", "-webkit-mask",
188 "-webkit-grid-column", "-webkit-grid-row", "-webkit-hyphens", "-webkit-mask",
188 "-webkit-mask-clip", "-webkit-mask-composite", "-webkit-mask-image",
189 "-webkit-mask-clip", "-webkit-mask-composite", "-webkit-mask-image",
189 "-webkit-mask-origin", "-webkit-mask-position", "-webkit-mask-repeat",
190 "-webkit-mask-origin", "-webkit-mask-position", "-webkit-mask-repeat",
190 "-webkit-mask-size", "-webkit-perspective", "-webkit-perspective-origin",
191 "-webkit-mask-size", "-webkit-perspective", "-webkit-perspective-origin",
191 "-webkit-region-fragment", "-webkit-shape-outside", "-webkit-text-emphasis",
192 "-webkit-region-fragment", "-webkit-shape-outside", "-webkit-text-emphasis",
192 "-webkit-text-emphasis-color", "-webkit-text-emphasis-position",
193 "-webkit-text-emphasis-color", "-webkit-text-emphasis-position",
193 "-webkit-text-emphasis-style", "-webkit-transform", "-webkit-transform-origin",
194 "-webkit-text-emphasis-style", "-webkit-transform", "-webkit-transform-origin",
194 "-webkit-transform-style", "-webkit-transition", "-webkit-transition-delay",
195 "-webkit-transform-style", "-webkit-transition", "-webkit-transition-delay",
195 "-webkit-transition-duration", "-webkit-transition-property",
196 "-webkit-transition-duration", "-webkit-transition-property",
196 "-webkit-transition-timing-function", "-epub-word-break", "-epub-writing-mode",
197 "-webkit-transition-timing-function", "-epub-word-break", "-epub-writing-mode",
197 # WebKit-prefixed properties with an unprefixed counterpart
198 # WebKit-prefixed properties with an unprefixed counterpart
198 "-webkit-background-clip", "-webkit-background-origin",
199 "-webkit-background-clip", "-webkit-background-origin",
199 "-webkit-background-size", "-webkit-border-bottom-left-radius",
200 "-webkit-background-size", "-webkit-border-bottom-left-radius",
200 "-webkit-border-bottom-right-radius", "-webkit-border-radius",
201 "-webkit-border-bottom-right-radius", "-webkit-border-radius",
201 "-webkit-border-top-left-radius", "-webkit-border-top-right-radius",
202 "-webkit-border-top-left-radius", "-webkit-border-top-right-radius",
202 "-webkit-box-sizing", "-epub-caption-side", "-webkit-opacity",
203 "-webkit-box-sizing", "-epub-caption-side", "-webkit-opacity",
203 "-epub-text-transform",
204 "-epub-text-transform",
204 ]
205 ]
205
206
206 mozilla_prefixed_styles = [
207 mozilla_prefixed_styles = [
207 "-moz-column-count", "-moz-column-fill", "-moz-column-gap",
208 "-moz-column-count", "-moz-column-fill", "-moz-column-gap",
208 "-moz-column-width", "-moz-column-rule", "-moz-column-rule-width",
209 "-moz-column-width", "-moz-column-rule", "-moz-column-rule-width",
209 "-moz-column-rule-style", "-moz-column-rule-color",
210 "-moz-column-rule-style", "-moz-column-rule-color",
210 "-moz-font-feature-settings", "-moz-font-language-override", "-moz-hyphens",
211 "-moz-font-feature-settings", "-moz-font-language-override", "-moz-hyphens",
211 "-moz-text-align-last", "-moz-text-decoration-color",
212 "-moz-text-align-last", "-moz-text-decoration-color",
212 "-moz-text-decoration-line", "-moz-text-decoration-style",
213 "-moz-text-decoration-line", "-moz-text-decoration-style",
213 ]
214 ]
214
215
215 all_prefixed_styles = [
216 all_prefixed_styles = [
216 # From http://peter.sh/experiments/vendor-prefixed-css-property-overview/
217 # From http://peter.sh/experiments/vendor-prefixed-css-property-overview/
217 "-ms-accelerator", "-webkit-app-region", "-webkit-appearance",
218 "-ms-accelerator", "-webkit-app-region", "-webkit-appearance",
218 "-webkit-appearance", "-moz-appearance", "-webkit-aspect-ratio",
219 "-webkit-appearance", "-moz-appearance", "-webkit-aspect-ratio",
219 "-webkit-backdrop-filter", "backface-visibility",
220 "-webkit-backdrop-filter", "backface-visibility",
220 "-webkit-backface-visibility", "backface-visibility", "backface-visibility",
221 "-webkit-backface-visibility", "backface-visibility", "backface-visibility",
221 "-webkit-background-composite", "-webkit-background-composite", "-moz-binding",
222 "-webkit-background-composite", "-webkit-background-composite", "-moz-binding",
222 "-ms-block-progression", "-webkit-border-after", "-webkit-border-after",
223 "-ms-block-progression", "-webkit-border-after", "-webkit-border-after",
223 "-webkit-border-after-color", "-webkit-border-after-color",
224 "-webkit-border-after-color", "-webkit-border-after-color",
224 "-webkit-border-after-style", "-webkit-border-after-style",
225 "-webkit-border-after-style", "-webkit-border-after-style",
225 "-webkit-border-after-width", "-webkit-border-after-width",
226 "-webkit-border-after-width", "-webkit-border-after-width",
226 "-webkit-border-before", "-webkit-border-before",
227 "-webkit-border-before", "-webkit-border-before",
227 "-webkit-border-before-color", "-webkit-border-before-color",
228 "-webkit-border-before-color", "-webkit-border-before-color",
228 "-webkit-border-before-style", "-webkit-border-before-style",
229 "-webkit-border-before-style", "-webkit-border-before-style",
229 "-webkit-border-before-width", "-webkit-border-before-width",
230 "-webkit-border-before-width", "-webkit-border-before-width",
230 "-moz-border-bottom-colors", "-webkit-border-end", "-webkit-border-end",
231 "-moz-border-bottom-colors", "-webkit-border-end", "-webkit-border-end",
231 "-moz-border-end", "-webkit-border-end-color", "-webkit-border-end-color",
232 "-moz-border-end", "-webkit-border-end-color", "-webkit-border-end-color",
232 "-moz-border-end-color", "-webkit-border-end-style",
233 "-moz-border-end-color", "-webkit-border-end-style",
233 "-webkit-border-end-style", "-moz-border-end-style",
234 "-webkit-border-end-style", "-moz-border-end-style",
234 "-webkit-border-end-width", "-webkit-border-end-width",
235 "-webkit-border-end-width", "-webkit-border-end-width",
235 "-moz-border-end-width", "-webkit-border-fit",
236 "-moz-border-end-width", "-webkit-border-fit",
236 "-webkit-border-horizontal-spacing", "-webkit-border-horizontal-spacing",
237 "-webkit-border-horizontal-spacing", "-webkit-border-horizontal-spacing",
237 "-moz-border-left-colors", "-moz-border-right-colors", "-webkit-border-start",
238 "-moz-border-left-colors", "-moz-border-right-colors", "-webkit-border-start",
238 "-webkit-border-start", "-moz-border-start", "-webkit-border-start-color",
239 "-webkit-border-start", "-moz-border-start", "-webkit-border-start-color",
239 "-webkit-border-start-color", "-moz-border-start-color",
240 "-webkit-border-start-color", "-moz-border-start-color",
240 "-webkit-border-start-style", "-webkit-border-start-style",
241 "-webkit-border-start-style", "-webkit-border-start-style",
241 "-moz-border-start-style", "-webkit-border-start-width",
242 "-moz-border-start-style", "-webkit-border-start-width",
242 "-webkit-border-start-width", "-moz-border-start-width",
243 "-webkit-border-start-width", "-moz-border-start-width",
243 "-moz-border-top-colors", "-webkit-border-vertical-spacing",
244 "-moz-border-top-colors", "-webkit-border-vertical-spacing",
244 "-webkit-border-vertical-spacing", "-webkit-box-align", "-webkit-box-align",
245 "-webkit-border-vertical-spacing", "-webkit-box-align", "-webkit-box-align",
245 "-moz-box-align", "-webkit-box-decoration-break",
246 "-moz-box-align", "-webkit-box-decoration-break",
246 "-webkit-box-decoration-break", "box-decoration-break",
247 "-webkit-box-decoration-break", "box-decoration-break",
247 "-webkit-box-direction", "-webkit-box-direction", "-moz-box-direction",
248 "-webkit-box-direction", "-webkit-box-direction", "-moz-box-direction",
248 "-webkit-box-flex", "-webkit-box-flex", "-moz-box-flex",
249 "-webkit-box-flex", "-webkit-box-flex", "-moz-box-flex",
249 "-webkit-box-flex-group", "-webkit-box-flex-group", "-webkit-box-lines",
250 "-webkit-box-flex-group", "-webkit-box-flex-group", "-webkit-box-lines",
250 "-webkit-box-lines", "-webkit-box-ordinal-group", "-webkit-box-ordinal-group",
251 "-webkit-box-lines", "-webkit-box-ordinal-group", "-webkit-box-ordinal-group",
251 "-moz-box-ordinal-group", "-webkit-box-orient", "-webkit-box-orient",
252 "-moz-box-ordinal-group", "-webkit-box-orient", "-webkit-box-orient",
252 "-moz-box-orient", "-webkit-box-pack", "-webkit-box-pack", "-moz-box-pack",
253 "-moz-box-orient", "-webkit-box-pack", "-webkit-box-pack", "-moz-box-pack",
253 "-webkit-box-reflect", "-webkit-box-reflect", "clip-path", "-webkit-clip-path",
254 "-webkit-box-reflect", "-webkit-box-reflect", "clip-path", "-webkit-clip-path",
254 "clip-path", "clip-path", "-webkit-color-correction", "-webkit-column-axis",
255 "clip-path", "clip-path", "-webkit-color-correction", "-webkit-column-axis",
255 "-webkit-column-break-after", "-webkit-column-break-after",
256 "-webkit-column-break-after", "-webkit-column-break-after",
256 "-webkit-column-break-before", "-webkit-column-break-before",
257 "-webkit-column-break-before", "-webkit-column-break-before",
257 "-webkit-column-break-inside", "-webkit-column-break-inside",
258 "-webkit-column-break-inside", "-webkit-column-break-inside",
258 "-webkit-column-count", "column-count", "-moz-column-count", "column-count",
259 "-webkit-column-count", "column-count", "-moz-column-count", "column-count",
259 "column-fill", "column-fill", "-moz-column-fill", "column-fill",
260 "column-fill", "column-fill", "-moz-column-fill", "column-fill",
260 "-webkit-column-gap", "column-gap", "-moz-column-gap", "column-gap",
261 "-webkit-column-gap", "column-gap", "-moz-column-gap", "column-gap",
261 "-webkit-column-rule", "column-rule", "-moz-column-rule", "column-rule",
262 "-webkit-column-rule", "column-rule", "-moz-column-rule", "column-rule",
262 "-webkit-column-rule-color", "column-rule-color", "-moz-column-rule-color",
263 "-webkit-column-rule-color", "column-rule-color", "-moz-column-rule-color",
263 "column-rule-color", "-webkit-column-rule-style", "column-rule-style",
264 "column-rule-color", "-webkit-column-rule-style", "column-rule-style",
264 "-moz-column-rule-style", "column-rule-style", "-webkit-column-rule-width",
265 "-moz-column-rule-style", "column-rule-style", "-webkit-column-rule-width",
265 "column-rule-width", "-moz-column-rule-width", "column-rule-width",
266 "column-rule-width", "-moz-column-rule-width", "column-rule-width",
266 "-webkit-column-span", "column-span", "column-span", "-webkit-column-width",
267 "-webkit-column-span", "column-span", "column-span", "-webkit-column-width",
267 "column-width", "-moz-column-width", "column-width", "-webkit-columns",
268 "column-width", "-moz-column-width", "column-width", "-webkit-columns",
268 "columns", "-moz-columns", "columns", "-ms-content-zoom-chaining",
269 "columns", "-moz-columns", "columns", "-ms-content-zoom-chaining",
269 "-ms-content-zoom-limit", "-ms-content-zoom-limit-max",
270 "-ms-content-zoom-limit", "-ms-content-zoom-limit-max",
270 "-ms-content-zoom-limit-min", "-ms-content-zoom-snap",
271 "-ms-content-zoom-limit-min", "-ms-content-zoom-snap",
271 "-ms-content-zoom-snap-points", "-ms-content-zoom-snap-type",
272 "-ms-content-zoom-snap-points", "-ms-content-zoom-snap-type",
272 "-ms-content-zooming", "-moz-control-character-visibility",
273 "-ms-content-zooming", "-moz-control-character-visibility",
273 "-webkit-cursor-visibility", "-webkit-dashboard-region", "filter",
274 "-webkit-cursor-visibility", "-webkit-dashboard-region", "filter",
274 "-webkit-filter", "filter", "filter", "-ms-flex-align", "-ms-flex-item-align",
275 "-webkit-filter", "filter", "filter", "-ms-flex-align", "-ms-flex-item-align",
275 "-ms-flex-line-pack", "-ms-flex-negative", "-ms-flex-order", "-ms-flex-pack",
276 "-ms-flex-line-pack", "-ms-flex-negative", "-ms-flex-order", "-ms-flex-pack",
276 "-ms-flex-positive", "-ms-flex-preferred-size", "-moz-float-edge",
277 "-ms-flex-positive", "-ms-flex-preferred-size", "-moz-float-edge",
277 "-webkit-flow-from", "-ms-flow-from", "-webkit-flow-into", "-ms-flow-into",
278 "-webkit-flow-from", "-ms-flow-from", "-webkit-flow-into", "-ms-flow-into",
278 "-webkit-font-feature-settings", "-webkit-font-feature-settings",
279 "-webkit-font-feature-settings", "-webkit-font-feature-settings",
279 "font-feature-settings", "font-feature-settings", "font-kerning",
280 "font-feature-settings", "font-feature-settings", "font-kerning",
280 "-webkit-font-kerning", "font-kerning", "-webkit-font-size-delta",
281 "-webkit-font-kerning", "font-kerning", "-webkit-font-size-delta",
281 "-webkit-font-size-delta", "-webkit-font-smoothing", "-webkit-font-smoothing",
282 "-webkit-font-size-delta", "-webkit-font-smoothing", "-webkit-font-smoothing",
282 "font-variant-ligatures", "-webkit-font-variant-ligatures",
283 "font-variant-ligatures", "-webkit-font-variant-ligatures",
283 "font-variant-ligatures", "-moz-force-broken-image-icon", "grid",
284 "font-variant-ligatures", "-moz-force-broken-image-icon", "grid",
284 "-webkit-grid", "grid", "grid-area", "-webkit-grid-area", "grid-area",
285 "-webkit-grid", "grid", "grid-area", "-webkit-grid-area", "grid-area",
285 "grid-auto-columns", "-webkit-grid-auto-columns", "grid-auto-columns",
286 "grid-auto-columns", "-webkit-grid-auto-columns", "grid-auto-columns",
286 "grid-auto-flow", "-webkit-grid-auto-flow", "grid-auto-flow", "grid-auto-rows",
287 "grid-auto-flow", "-webkit-grid-auto-flow", "grid-auto-flow", "grid-auto-rows",
287 "-webkit-grid-auto-rows", "grid-auto-rows", "grid-column",
288 "-webkit-grid-auto-rows", "grid-auto-rows", "grid-column",
288 "-webkit-grid-column", "grid-column", "-ms-grid-column",
289 "-webkit-grid-column", "grid-column", "-ms-grid-column",
289 "-ms-grid-column-align", "grid-column-end", "-webkit-grid-column-end",
290 "-ms-grid-column-align", "grid-column-end", "-webkit-grid-column-end",
290 "grid-column-end", "-ms-grid-column-span", "grid-column-start",
291 "grid-column-end", "-ms-grid-column-span", "grid-column-start",
291 "-webkit-grid-column-start", "grid-column-start", "-ms-grid-columns",
292 "-webkit-grid-column-start", "grid-column-start", "-ms-grid-columns",
292 "grid-row", "-webkit-grid-row", "grid-row", "-ms-grid-row",
293 "grid-row", "-webkit-grid-row", "grid-row", "-ms-grid-row",
293 "-ms-grid-row-align", "grid-row-end", "-webkit-grid-row-end", "grid-row-end",
294 "-ms-grid-row-align", "grid-row-end", "-webkit-grid-row-end", "grid-row-end",
294 "-ms-grid-row-span", "grid-row-start", "-webkit-grid-row-start",
295 "-ms-grid-row-span", "grid-row-start", "-webkit-grid-row-start",
295 "grid-row-start", "-ms-grid-rows", "grid-template", "-webkit-grid-template",
296 "grid-row-start", "-ms-grid-rows", "grid-template", "-webkit-grid-template",
296 "grid-template", "grid-template-areas", "-webkit-grid-template-areas",
297 "grid-template", "grid-template-areas", "-webkit-grid-template-areas",
297 "grid-template-areas", "grid-template-columns",
298 "grid-template-areas", "grid-template-columns",
298 "-webkit-grid-template-columns", "grid-template-columns", "grid-template-rows",
299 "-webkit-grid-template-columns", "grid-template-columns", "grid-template-rows",
299 "-webkit-grid-template-rows", "grid-template-rows", "-ms-high-contrast-adjust",
300 "-webkit-grid-template-rows", "grid-template-rows", "-ms-high-contrast-adjust",
300 "-webkit-highlight", "-webkit-hyphenate-character",
301 "-webkit-highlight", "-webkit-hyphenate-character",
301 "-webkit-hyphenate-character", "-webkit-hyphenate-limit-after",
302 "-webkit-hyphenate-character", "-webkit-hyphenate-limit-after",
302 "-webkit-hyphenate-limit-before", "-ms-hyphenate-limit-chars",
303 "-webkit-hyphenate-limit-before", "-ms-hyphenate-limit-chars",
303 "-webkit-hyphenate-limit-lines", "-ms-hyphenate-limit-lines",
304 "-webkit-hyphenate-limit-lines", "-ms-hyphenate-limit-lines",
304 "-ms-hyphenate-limit-zone", "-webkit-hyphens", "-moz-hyphens", "-ms-hyphens",
305 "-ms-hyphenate-limit-zone", "-webkit-hyphens", "-moz-hyphens", "-ms-hyphens",
305 "-moz-image-region", "-ms-ime-align", "-webkit-initial-letter",
306 "-moz-image-region", "-ms-ime-align", "-webkit-initial-letter",
306 "-ms-interpolation-mode", "justify-self", "-webkit-justify-self",
307 "-ms-interpolation-mode", "justify-self", "-webkit-justify-self",
307 "-webkit-line-align", "-webkit-line-box-contain", "-webkit-line-box-contain",
308 "-webkit-line-align", "-webkit-line-box-contain", "-webkit-line-box-contain",
308 "-webkit-line-break", "-webkit-line-break", "line-break", "-webkit-line-clamp",
309 "-webkit-line-break", "-webkit-line-break", "line-break", "-webkit-line-clamp",
309 "-webkit-line-clamp", "-webkit-line-grid", "-webkit-line-snap",
310 "-webkit-line-clamp", "-webkit-line-grid", "-webkit-line-snap",
310 "-webkit-locale", "-webkit-locale", "-webkit-logical-height",
311 "-webkit-locale", "-webkit-locale", "-webkit-logical-height",
311 "-webkit-logical-height", "-webkit-logical-width", "-webkit-logical-width",
312 "-webkit-logical-height", "-webkit-logical-width", "-webkit-logical-width",
312 "-webkit-margin-after", "-webkit-margin-after",
313 "-webkit-margin-after", "-webkit-margin-after",
313 "-webkit-margin-after-collapse", "-webkit-margin-after-collapse",
314 "-webkit-margin-after-collapse", "-webkit-margin-after-collapse",
314 "-webkit-margin-before", "-webkit-margin-before",
315 "-webkit-margin-before", "-webkit-margin-before",
315 "-webkit-margin-before-collapse", "-webkit-margin-before-collapse",
316 "-webkit-margin-before-collapse", "-webkit-margin-before-collapse",
316 "-webkit-margin-bottom-collapse", "-webkit-margin-bottom-collapse",
317 "-webkit-margin-bottom-collapse", "-webkit-margin-bottom-collapse",
317 "-webkit-margin-collapse", "-webkit-margin-collapse", "-webkit-margin-end",
318 "-webkit-margin-collapse", "-webkit-margin-collapse", "-webkit-margin-end",
318 "-webkit-margin-end", "-moz-margin-end", "-webkit-margin-start",
319 "-webkit-margin-end", "-moz-margin-end", "-webkit-margin-start",
319 "-webkit-margin-start", "-moz-margin-start", "-webkit-margin-top-collapse",
320 "-webkit-margin-start", "-moz-margin-start", "-webkit-margin-top-collapse",
320 "-webkit-margin-top-collapse", "-webkit-marquee", "-webkit-marquee-direction",
321 "-webkit-margin-top-collapse", "-webkit-marquee", "-webkit-marquee-direction",
321 "-webkit-marquee-increment", "-webkit-marquee-repetition",
322 "-webkit-marquee-increment", "-webkit-marquee-repetition",
322 "-webkit-marquee-speed", "-webkit-marquee-style", "mask", "-webkit-mask",
323 "-webkit-marquee-speed", "-webkit-marquee-style", "mask", "-webkit-mask",
323 "mask", "-webkit-mask-box-image", "-webkit-mask-box-image",
324 "mask", "-webkit-mask-box-image", "-webkit-mask-box-image",
324 "-webkit-mask-box-image-outset", "-webkit-mask-box-image-outset",
325 "-webkit-mask-box-image-outset", "-webkit-mask-box-image-outset",
325 "-webkit-mask-box-image-repeat", "-webkit-mask-box-image-repeat",
326 "-webkit-mask-box-image-repeat", "-webkit-mask-box-image-repeat",
326 "-webkit-mask-box-image-slice", "-webkit-mask-box-image-slice",
327 "-webkit-mask-box-image-slice", "-webkit-mask-box-image-slice",
327 "-webkit-mask-box-image-source", "-webkit-mask-box-image-source",
328 "-webkit-mask-box-image-source", "-webkit-mask-box-image-source",
328 "-webkit-mask-box-image-width", "-webkit-mask-box-image-width",
329 "-webkit-mask-box-image-width", "-webkit-mask-box-image-width",
329 "-webkit-mask-clip", "-webkit-mask-clip", "-webkit-mask-composite",
330 "-webkit-mask-clip", "-webkit-mask-clip", "-webkit-mask-composite",
330 "-webkit-mask-composite", "-webkit-mask-image", "-webkit-mask-image",
331 "-webkit-mask-composite", "-webkit-mask-image", "-webkit-mask-image",
331 "-webkit-mask-origin", "-webkit-mask-origin", "-webkit-mask-position",
332 "-webkit-mask-origin", "-webkit-mask-origin", "-webkit-mask-position",
332 "-webkit-mask-position", "-webkit-mask-position-x", "-webkit-mask-position-x",
333 "-webkit-mask-position", "-webkit-mask-position-x", "-webkit-mask-position-x",
333 "-webkit-mask-position-y", "-webkit-mask-position-y", "-webkit-mask-repeat",
334 "-webkit-mask-position-y", "-webkit-mask-position-y", "-webkit-mask-repeat",
334 "-webkit-mask-repeat", "-webkit-mask-repeat-x", "-webkit-mask-repeat-x",
335 "-webkit-mask-repeat", "-webkit-mask-repeat-x", "-webkit-mask-repeat-x",
335 "-webkit-mask-repeat-y", "-webkit-mask-repeat-y", "-webkit-mask-size",
336 "-webkit-mask-repeat-y", "-webkit-mask-repeat-y", "-webkit-mask-size",
336 "-webkit-mask-size", "mask-source-type", "-webkit-mask-source-type",
337 "-webkit-mask-size", "mask-source-type", "-webkit-mask-source-type",
337 "-moz-math-display", "-moz-math-variant", "-webkit-max-logical-height",
338 "-moz-math-display", "-moz-math-variant", "-webkit-max-logical-height",
338 "-webkit-max-logical-height", "-webkit-max-logical-width",
339 "-webkit-max-logical-height", "-webkit-max-logical-width",
339 "-webkit-max-logical-width", "-webkit-min-logical-height",
340 "-webkit-max-logical-width", "-webkit-min-logical-height",
340 "-webkit-min-logical-height", "-webkit-min-logical-width",
341 "-webkit-min-logical-height", "-webkit-min-logical-width",
341 "-webkit-min-logical-width", "-webkit-nbsp-mode", "-moz-orient",
342 "-webkit-min-logical-width", "-webkit-nbsp-mode", "-moz-orient",
342 "-moz-osx-font-smoothing", "-moz-outline-radius",
343 "-moz-osx-font-smoothing", "-moz-outline-radius",
343 "-moz-outline-radius-bottomleft", "-moz-outline-radius-bottomright",
344 "-moz-outline-radius-bottomleft", "-moz-outline-radius-bottomright",
344 "-moz-outline-radius-topleft", "-moz-outline-radius-topright",
345 "-moz-outline-radius-topleft", "-moz-outline-radius-topright",
345 "-webkit-overflow-scrolling", "-ms-overflow-style", "-webkit-padding-after",
346 "-webkit-overflow-scrolling", "-ms-overflow-style", "-webkit-padding-after",
346 "-webkit-padding-after", "-webkit-padding-before", "-webkit-padding-before",
347 "-webkit-padding-after", "-webkit-padding-before", "-webkit-padding-before",
347 "-webkit-padding-end", "-webkit-padding-end", "-moz-padding-end",
348 "-webkit-padding-end", "-webkit-padding-end", "-moz-padding-end",
348 "-webkit-padding-start", "-webkit-padding-start", "-moz-padding-start",
349 "-webkit-padding-start", "-webkit-padding-start", "-moz-padding-start",
349 "perspective", "-webkit-perspective", "perspective", "perspective",
350 "perspective", "-webkit-perspective", "perspective", "perspective",
350 "perspective-origin", "-webkit-perspective-origin", "perspective-origin",
351 "perspective-origin", "-webkit-perspective-origin", "perspective-origin",
351 "perspective-origin", "-webkit-perspective-origin-x",
352 "perspective-origin", "-webkit-perspective-origin-x",
352 "-webkit-perspective-origin-x", "perspective-origin-x",
353 "-webkit-perspective-origin-x", "perspective-origin-x",
353 "-webkit-perspective-origin-y", "-webkit-perspective-origin-y",
354 "-webkit-perspective-origin-y", "-webkit-perspective-origin-y",
354 "perspective-origin-y", "-webkit-print-color-adjust",
355 "perspective-origin-y", "-webkit-print-color-adjust",
355 "-webkit-print-color-adjust", "-webkit-region-break-after",
356 "-webkit-print-color-adjust", "-webkit-region-break-after",
356 "-webkit-region-break-before", "-webkit-region-break-inside",
357 "-webkit-region-break-before", "-webkit-region-break-inside",
357 "-webkit-region-fragment", "-webkit-rtl-ordering", "-webkit-rtl-ordering",
358 "-webkit-region-fragment", "-webkit-rtl-ordering", "-webkit-rtl-ordering",
358 "-webkit-ruby-position", "-webkit-ruby-position", "ruby-position",
359 "-webkit-ruby-position", "-webkit-ruby-position", "ruby-position",
359 "-moz-script-level", "-moz-script-min-size", "-moz-script-size-multiplier",
360 "-moz-script-level", "-moz-script-min-size", "-moz-script-size-multiplier",
360 "-ms-scroll-chaining", "-ms-scroll-limit", "-ms-scroll-limit-x-max",
361 "-ms-scroll-chaining", "-ms-scroll-limit", "-ms-scroll-limit-x-max",
361 "-ms-scroll-limit-x-min", "-ms-scroll-limit-y-max", "-ms-scroll-limit-y-min",
362 "-ms-scroll-limit-x-min", "-ms-scroll-limit-y-max", "-ms-scroll-limit-y-min",
362 "-ms-scroll-rails", "-webkit-scroll-snap-coordinate",
363 "-ms-scroll-rails", "-webkit-scroll-snap-coordinate",
363 "-webkit-scroll-snap-destination", "-webkit-scroll-snap-points-x",
364 "-webkit-scroll-snap-destination", "-webkit-scroll-snap-points-x",
364 "-ms-scroll-snap-points-x", "-webkit-scroll-snap-points-y",
365 "-ms-scroll-snap-points-x", "-webkit-scroll-snap-points-y",
365 "-ms-scroll-snap-points-y", "-webkit-scroll-snap-type", "-ms-scroll-snap-type",
366 "-ms-scroll-snap-points-y", "-webkit-scroll-snap-type", "-ms-scroll-snap-type",
366 "-ms-scroll-snap-x", "-ms-scroll-snap-y", "-ms-scroll-translation",
367 "-ms-scroll-snap-x", "-ms-scroll-snap-y", "-ms-scroll-translation",
367 "-ms-scrollbar-3dlight-color", "shape-image-threshold",
368 "-ms-scrollbar-3dlight-color", "shape-image-threshold",
368 "-webkit-shape-image-threshold", "shape-margin", "-webkit-shape-margin",
369 "-webkit-shape-image-threshold", "shape-margin", "-webkit-shape-margin",
369 "shape-outside", "-webkit-shape-outside", "-moz-stack-sizing", "tab-size",
370 "shape-outside", "-webkit-shape-outside", "-moz-stack-sizing", "tab-size",
370 "tab-size", "-moz-tab-size", "-webkit-tap-highlight-color",
371 "tab-size", "-moz-tab-size", "-webkit-tap-highlight-color",
371 "-webkit-tap-highlight-color", "text-align-last", "-webkit-text-align-last",
372 "-webkit-tap-highlight-color", "text-align-last", "-webkit-text-align-last",
372 "-moz-text-align-last", "text-align-last", "-webkit-text-combine",
373 "-moz-text-align-last", "text-align-last", "-webkit-text-combine",
373 "-webkit-text-combine", "-ms-text-combine-horizontal", "text-decoration-color",
374 "-webkit-text-combine", "-ms-text-combine-horizontal", "text-decoration-color",
374 "-webkit-text-decoration-color", "text-decoration-color",
375 "-webkit-text-decoration-color", "text-decoration-color",
375 "text-decoration-color", "text-decoration-line",
376 "text-decoration-color", "text-decoration-line",
376 "-webkit-text-decoration-line", "text-decoration-line",
377 "-webkit-text-decoration-line", "text-decoration-line",
377 "-webkit-text-decoration-skip", "text-decoration-style",
378 "-webkit-text-decoration-skip", "text-decoration-style",
378 "-webkit-text-decoration-style", "text-decoration-style",
379 "-webkit-text-decoration-style", "text-decoration-style",
379 "-webkit-text-decorations-in-effect", "-webkit-text-decorations-in-effect",
380 "-webkit-text-decorations-in-effect", "-webkit-text-decorations-in-effect",
380 "-webkit-text-emphasis", "text-emphasis", "-webkit-text-emphasis-color",
381 "-webkit-text-emphasis", "text-emphasis", "-webkit-text-emphasis-color",
381 "text-emphasis-color", "-webkit-text-emphasis-position",
382 "text-emphasis-color", "-webkit-text-emphasis-position",
382 "text-emphasis-position", "-webkit-text-emphasis-style", "text-emphasis-style",
383 "text-emphasis-position", "-webkit-text-emphasis-style", "text-emphasis-style",
383 "-webkit-text-fill-color", "-webkit-text-fill-color", "text-justify",
384 "-webkit-text-fill-color", "-webkit-text-fill-color", "text-justify",
384 "-webkit-text-justify", "text-justify", "-webkit-text-orientation",
385 "-webkit-text-justify", "text-justify", "-webkit-text-orientation",
385 "-webkit-text-orientation", "text-orientation", "-webkit-text-security",
386 "-webkit-text-orientation", "text-orientation", "-webkit-text-security",
386 "-webkit-text-security", "-webkit-text-size-adjust", "-moz-text-size-adjust",
387 "-webkit-text-security", "-webkit-text-size-adjust", "-moz-text-size-adjust",
387 "-ms-text-size-adjust", "-webkit-text-stroke", "-webkit-text-stroke",
388 "-ms-text-size-adjust", "-webkit-text-stroke", "-webkit-text-stroke",
388 "-webkit-text-stroke-color", "-webkit-text-stroke-color",
389 "-webkit-text-stroke-color", "-webkit-text-stroke-color",
389 "-webkit-text-stroke-width", "-webkit-text-stroke-width",
390 "-webkit-text-stroke-width", "-webkit-text-stroke-width",
390 "text-underline-position", "-webkit-text-underline-position",
391 "text-underline-position", "-webkit-text-underline-position",
391 "text-underline-position", "-webkit-touch-callout", "-ms-touch-select",
392 "text-underline-position", "-webkit-touch-callout", "-ms-touch-select",
392 "transform", "-webkit-transform", "transform", "transform", "transform-origin",
393 "transform", "-webkit-transform", "transform", "transform", "transform-origin",
393 "-webkit-transform-origin", "transform-origin", "transform-origin",
394 "-webkit-transform-origin", "transform-origin", "transform-origin",
394 "-webkit-transform-origin-x", "-webkit-transform-origin-x",
395 "-webkit-transform-origin-x", "-webkit-transform-origin-x",
395 "transform-origin-x", "-webkit-transform-origin-y",
396 "transform-origin-x", "-webkit-transform-origin-y",
396 "-webkit-transform-origin-y", "transform-origin-y",
397 "-webkit-transform-origin-y", "transform-origin-y",
397 "-webkit-transform-origin-z", "-webkit-transform-origin-z",
398 "-webkit-transform-origin-z", "-webkit-transform-origin-z",
398 "transform-origin-z", "transform-style", "-webkit-transform-style",
399 "transform-origin-z", "transform-style", "-webkit-transform-style",
399 "transform-style", "transform-style", "-webkit-user-drag", "-webkit-user-drag",
400 "transform-style", "transform-style", "-webkit-user-drag", "-webkit-user-drag",
400 "-moz-user-focus", "-moz-user-input", "-webkit-user-modify",
401 "-moz-user-focus", "-moz-user-input", "-webkit-user-modify",
401 "-webkit-user-modify", "-moz-user-modify", "-webkit-user-select",
402 "-webkit-user-modify", "-moz-user-modify", "-webkit-user-select",
402 "-webkit-user-select", "-moz-user-select", "-ms-user-select",
403 "-webkit-user-select", "-moz-user-select", "-ms-user-select",
403 "-moz-window-dragging", "-moz-window-shadow", "-ms-wrap-flow",
404 "-moz-window-dragging", "-moz-window-shadow", "-ms-wrap-flow",
404 "-ms-wrap-margin", "-ms-wrap-through", "writing-mode", "-webkit-writing-mode",
405 "-ms-wrap-margin", "-ms-wrap-through", "writing-mode", "-webkit-writing-mode",
405 "writing-mode", "writing-mode",
406 "writing-mode", "writing-mode",
406 ]
407 ]
407
408
408 all_styles = standard_styles + all_prefixed_styles No newline at end of file
409 all_styles = standard_styles + all_prefixed_styles
@@ -1,547 +1,537 b''
1
1
2
2
3 # Copyright (C) 2011-2023 RhodeCode GmbH
3 # Copyright (C) 2011-2023 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 lxml
28 import lxml
29 import logging
29 import logging
30 import urllib.parse
30 import urllib.parse
31 import bleach
32 import pycmarkgfm
31 import pycmarkgfm
33
32
34 from mako.lookup import TemplateLookup
33 from mako.lookup import TemplateLookup
35 from mako.template import Template as MakoTemplate
34 from mako.template import Template as MakoTemplate
36
35
37 from docutils.core import publish_parts
36 from docutils.core import publish_parts
38 from docutils.parsers.rst import directives
37 from docutils.parsers.rst import directives
39 from docutils import writers
38 from docutils import writers
40 from docutils.writers import html4css1
39 from docutils.writers import html4css1
41 import markdown
40 import markdown
42
41
43 from rhodecode.lib.utils2 import safe_str, md5_safe, MENTIONS_REGEX
42 from rhodecode.lib.utils2 import safe_str, MENTIONS_REGEX
44
43
45 log = logging.getLogger(__name__)
44 log = logging.getLogger(__name__)
46
45
47 # default renderer used to generate automated comments
46 # default renderer used to generate automated comments
48 DEFAULT_COMMENTS_RENDERER = 'rst'
47 DEFAULT_COMMENTS_RENDERER = 'rst'
49
48
50 try:
49 try:
51 from lxml.html import fromstring
50 from lxml.html import fromstring
52 from lxml.html import tostring
51 from lxml.html import tostring
53 except ImportError:
52 except ImportError:
54 log.exception('Failed to import lxml')
53 log.exception('Failed to import lxml')
55 fromstring = None
54 fromstring = None
56 tostring = None
55 tostring = None
57
56
58
57
59 class CustomHTMLTranslator(writers.html4css1.HTMLTranslator):
58 class CustomHTMLTranslator(writers.html4css1.HTMLTranslator):
60 """
59 """
61 Custom HTML Translator used for sandboxing potential
60 Custom HTML Translator used for sandboxing potential
62 JS injections in ref links
61 JS injections in ref links
63 """
62 """
64 def visit_literal_block(self, node):
63 def visit_literal_block(self, node):
65 self.body.append(self.starttag(node, 'pre', CLASS='codehilite literal-block'))
64 self.body.append(self.starttag(node, 'pre', CLASS='codehilite literal-block'))
66
65
67 def visit_reference(self, node):
66 def visit_reference(self, node):
68 if 'refuri' in node.attributes:
67 if 'refuri' in node.attributes:
69 refuri = node['refuri']
68 refuri = node['refuri']
70 if ':' in refuri:
69 if ':' in refuri:
71 prefix, link = refuri.lstrip().split(':', 1)
70 prefix, link = refuri.lstrip().split(':', 1)
72 prefix = prefix or ''
71 prefix = prefix or ''
73
72
74 if prefix.lower() == 'javascript':
73 if prefix.lower() == 'javascript':
75 # we don't allow javascript type of refs...
74 # we don't allow javascript type of refs...
76 node['refuri'] = 'javascript:alert("SandBoxedJavascript")'
75 node['refuri'] = 'javascript:alert("SandBoxedJavascript")'
77
76
78 # old style class requires this...
77 # old style class requires this...
79 return html4css1.HTMLTranslator.visit_reference(self, node)
78 return html4css1.HTMLTranslator.visit_reference(self, node)
80
79
81
80
82 class RhodeCodeWriter(writers.html4css1.Writer):
81 class RhodeCodeWriter(writers.html4css1.Writer):
83 def __init__(self):
82 def __init__(self):
84 super(RhodeCodeWriter, self).__init__()
83 super(RhodeCodeWriter, self).__init__()
85 self.translator_class = CustomHTMLTranslator
84 self.translator_class = CustomHTMLTranslator
86
85
87
86
88 def relative_links(html_source, server_paths):
87 def relative_links(html_source, server_paths):
89 if not html_source:
88 if not html_source:
90 return html_source
89 return html_source
91
90
92 if not fromstring and tostring:
91 if not fromstring and tostring:
93 return html_source
92 return html_source
94
93
95 try:
94 try:
96 doc = lxml.html.fromstring(html_source)
95 doc = lxml.html.fromstring(html_source)
97 except Exception:
96 except Exception:
98 return html_source
97 return html_source
99
98
100 for el in doc.cssselect('img, video'):
99 for el in doc.cssselect('img, video'):
101 src = el.attrib.get('src')
100 src = el.attrib.get('src')
102 if src:
101 if src:
103 el.attrib['src'] = relative_path(src, server_paths['raw'])
102 el.attrib['src'] = relative_path(src, server_paths['raw'])
104
103
105 for el in doc.cssselect('a:not(.gfm)'):
104 for el in doc.cssselect('a:not(.gfm)'):
106 src = el.attrib.get('href')
105 src = el.attrib.get('href')
107 if src:
106 if src:
108 raw_mode = el.attrib['href'].endswith('?raw=1')
107 raw_mode = el.attrib['href'].endswith('?raw=1')
109 if raw_mode:
108 if raw_mode:
110 el.attrib['href'] = relative_path(src, server_paths['raw'])
109 el.attrib['href'] = relative_path(src, server_paths['raw'])
111 else:
110 else:
112 el.attrib['href'] = relative_path(src, server_paths['standard'])
111 el.attrib['href'] = relative_path(src, server_paths['standard'])
113
112
114 return lxml.html.tostring(doc, encoding='unicode')
113 return lxml.html.tostring(doc, encoding='unicode')
115
114
116
115
117 def relative_path(path, request_path, is_repo_file=None):
116 def relative_path(path, request_path, is_repo_file=None):
118 """
117 """
119 relative link support, path is a rel path, and request_path is current
118 relative link support, path is a rel path, and request_path is current
120 server path (not absolute)
119 server path (not absolute)
121
120
122 e.g.
121 e.g.
123
122
124 path = '../logo.png'
123 path = '../logo.png'
125 request_path= '/repo/files/path/file.md'
124 request_path= '/repo/files/path/file.md'
126 produces: '/repo/files/logo.png'
125 produces: '/repo/files/logo.png'
127 """
126 """
128 # TODO(marcink): unicode/str support ?
127 # TODO(marcink): unicode/str support ?
129 # maybe=> safe_str(urllib.quote(safe_str(final_path), '/:'))
128 # maybe=> safe_str(urllib.quote(safe_str(final_path), '/:'))
130
129
131 def dummy_check(p):
130 def dummy_check(p):
132 return True # assume default is a valid file path
131 return True # assume default is a valid file path
133
132
134 is_repo_file = is_repo_file or dummy_check
133 is_repo_file = is_repo_file or dummy_check
135 if not path:
134 if not path:
136 return request_path
135 return request_path
137
136
138 path = safe_str(path)
137 path = safe_str(path)
139 request_path = safe_str(request_path)
138 request_path = safe_str(request_path)
140
139
141 if path.startswith(('data:', 'javascript:', '#', ':')):
140 if path.startswith(('data:', 'javascript:', '#', ':')):
142 # skip data, anchor, invalid links
141 # skip data, anchor, invalid links
143 return path
142 return path
144
143
145 is_absolute = bool(urllib.parse.urlparse(path).netloc)
144 is_absolute = bool(urllib.parse.urlparse(path).netloc)
146 if is_absolute:
145 if is_absolute:
147 return path
146 return path
148
147
149 if not request_path:
148 if not request_path:
150 return path
149 return path
151
150
152 if path.startswith('/'):
151 if path.startswith('/'):
153 path = path[1:]
152 path = path[1:]
154
153
155 if path.startswith('./'):
154 if path.startswith('./'):
156 path = path[2:]
155 path = path[2:]
157
156
158 parts = request_path.split('/')
157 parts = request_path.split('/')
159 # compute how deep we need to traverse the request_path
158 # compute how deep we need to traverse the request_path
160 depth = 0
159 depth = 0
161
160
162 if is_repo_file(request_path):
161 if is_repo_file(request_path):
163 # if request path is a VALID file, we use a relative path with
162 # if request path is a VALID file, we use a relative path with
164 # one level up
163 # one level up
165 depth += 1
164 depth += 1
166
165
167 while path.startswith('../'):
166 while path.startswith('../'):
168 depth += 1
167 depth += 1
169 path = path[3:]
168 path = path[3:]
170
169
171 if depth > 0:
170 if depth > 0:
172 parts = parts[:-depth]
171 parts = parts[:-depth]
173
172
174 parts.append(path)
173 parts.append(path)
175 final_path = '/'.join(parts).lstrip('/')
174 final_path = '/'.join(parts).lstrip('/')
176
175
177 return '/' + final_path
176 return '/' + final_path
178
177
179
178
180 _cached_markdown_renderer = None
179 _cached_markdown_renderer = None
181
180
182
181
183 def get_markdown_renderer(extensions, output_format):
182 def get_markdown_renderer(extensions, output_format):
184 global _cached_markdown_renderer
183 global _cached_markdown_renderer
185
184
186 if _cached_markdown_renderer is None:
185 if _cached_markdown_renderer is None:
187 _cached_markdown_renderer = markdown.Markdown(
186 _cached_markdown_renderer = markdown.Markdown(
188 extensions=extensions + ['legacy_attrs'],
187 extensions=extensions + ['legacy_attrs'],
189 output_format=output_format)
188 output_format=output_format)
190 return _cached_markdown_renderer
189 return _cached_markdown_renderer
191
190
192
191
193 def get_markdown_renderer_flavored(extensions, output_format):
192 def get_markdown_renderer_flavored(extensions, output_format):
194 """
193 """
195 Dummy wrapper to mimic markdown API and render github HTML rendered
194 Dummy wrapper to mimic markdown API and render github HTML rendered
196
195
197 """
196 """
198 md = get_markdown_renderer(extensions, output_format)
197 md = get_markdown_renderer(extensions, output_format)
199
198
200 class GFM(object):
199 class GFM(object):
201 def convert(self, source):
200 def convert(self, source):
202 with pycmarkgfm.parse_gfm(source) as document:
201 with pycmarkgfm.parse_gfm(source) as document:
203 parsed_md = document.to_commonmark()
202 parsed_md = document.to_commonmark()
204 return md.convert(parsed_md)
203 return md.convert(parsed_md)
205
204
206 return GFM()
205 return GFM()
207
206
208
207
209 class MarkupRenderer(object):
208 class MarkupRenderer(object):
210 RESTRUCTUREDTEXT_DISALLOWED_DIRECTIVES = ['include', 'meta', 'raw']
209 RESTRUCTUREDTEXT_DISALLOWED_DIRECTIVES = ['include', 'meta', 'raw']
211
210
212 MARKDOWN_PAT = re.compile(r'\.(md|mkdn?|mdown|markdown)$', re.IGNORECASE)
211 MARKDOWN_PAT = re.compile(r'\.(md|mkdn?|mdown|markdown)$', re.IGNORECASE)
213 RST_PAT = re.compile(r'\.re?st$', re.IGNORECASE)
212 RST_PAT = re.compile(r'\.re?st$', re.IGNORECASE)
214 JUPYTER_PAT = re.compile(r'\.(ipynb)$', re.IGNORECASE)
213 JUPYTER_PAT = re.compile(r'\.(ipynb)$', re.IGNORECASE)
215 PLAIN_PAT = re.compile(r'^readme$', re.IGNORECASE)
214 PLAIN_PAT = re.compile(r'^readme$', re.IGNORECASE)
216
215
217 URL_PAT = re.compile(r'(http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]'
216 URL_PAT = re.compile(r'(http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]'
218 r'|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)')
217 r'|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)')
219
218
220 MENTION_PAT = re.compile(MENTIONS_REGEX)
219 MENTION_PAT = re.compile(MENTIONS_REGEX)
221
220
222 extensions = ['markdown.extensions.codehilite', 'markdown.extensions.extra',
221 extensions = ['markdown.extensions.codehilite', 'markdown.extensions.extra',
223 'markdown.extensions.def_list', 'markdown.extensions.sane_lists']
222 'markdown.extensions.def_list', 'markdown.extensions.sane_lists']
224
223
225 output_format = 'html4'
224 output_format = 'html4'
226
225
227 # extension together with weights. Lower is first means we control how
226 # extension together with weights. Lower is first means we control how
228 # extensions are attached to readme names with those.
227 # extensions are attached to readme names with those.
229 PLAIN_EXTS = [
228 PLAIN_EXTS = [
230 # prefer no extension
229 # prefer no extension
231 ('', 0), # special case that renders READMES names without extension
230 ('', 0), # special case that renders READMES names without extension
232 ('.text', 2), ('.TEXT', 2),
231 ('.text', 2), ('.TEXT', 2),
233 ('.txt', 3), ('.TXT', 3)
232 ('.txt', 3), ('.TXT', 3)
234 ]
233 ]
235
234
236 RST_EXTS = [
235 RST_EXTS = [
237 ('.rst', 1), ('.rest', 1),
236 ('.rst', 1), ('.rest', 1),
238 ('.RST', 2), ('.REST', 2)
237 ('.RST', 2), ('.REST', 2)
239 ]
238 ]
240
239
241 MARKDOWN_EXTS = [
240 MARKDOWN_EXTS = [
242 ('.md', 1), ('.MD', 1),
241 ('.md', 1), ('.MD', 1),
243 ('.mkdn', 2), ('.MKDN', 2),
242 ('.mkdn', 2), ('.MKDN', 2),
244 ('.mdown', 3), ('.MDOWN', 3),
243 ('.mdown', 3), ('.MDOWN', 3),
245 ('.markdown', 4), ('.MARKDOWN', 4)
244 ('.markdown', 4), ('.MARKDOWN', 4)
246 ]
245 ]
247
246
248 def _detect_renderer(self, source, filename=None):
247 def _detect_renderer(self, source, filename=None):
249 """
248 """
250 runs detection of what renderer should be used for generating html
249 runs detection of what renderer should be used for generating html
251 from a markup language
250 from a markup language
252
251
253 filename can be also explicitly a renderer name
252 filename can be also explicitly a renderer name
254
253
255 :param source:
254 :param source:
256 :param filename:
255 :param filename:
257 """
256 """
258
257
259 if MarkupRenderer.MARKDOWN_PAT.findall(filename):
258 if MarkupRenderer.MARKDOWN_PAT.findall(filename):
260 detected_renderer = 'markdown'
259 detected_renderer = 'markdown'
261 elif MarkupRenderer.RST_PAT.findall(filename):
260 elif MarkupRenderer.RST_PAT.findall(filename):
262 detected_renderer = 'rst'
261 detected_renderer = 'rst'
263 elif MarkupRenderer.JUPYTER_PAT.findall(filename):
262 elif MarkupRenderer.JUPYTER_PAT.findall(filename):
264 detected_renderer = 'jupyter'
263 detected_renderer = 'jupyter'
265 elif MarkupRenderer.PLAIN_PAT.findall(filename):
264 elif MarkupRenderer.PLAIN_PAT.findall(filename):
266 detected_renderer = 'plain'
265 detected_renderer = 'plain'
267 else:
266 else:
268 detected_renderer = 'plain'
267 detected_renderer = 'plain'
269
268
270 return getattr(MarkupRenderer, detected_renderer)
269 return getattr(MarkupRenderer, detected_renderer)
271
270
272 @classmethod
271 @classmethod
273 def sanitize_html(cls, text):
272 def sanitize_html(cls, text):
274 # TODO: replace this with https://nh3.readthedocs.io/en/latest
273 from .html_filters import sanitize_html
275 # bleach is abandoned and deprecated :/
274 return sanitize_html(text, markdown=True)
276
277 from .bleach_whitelist import markdown_attrs, markdown_tags
278 allowed_tags = markdown_tags
279 allowed_attrs = markdown_attrs
280
281 try:
282 return bleach.clean(text, tags=allowed_tags, attributes=allowed_attrs)
283 except Exception:
284 return 'TEXT CANNOT BE PARSED USING SANITIZE'
285
275
286 @classmethod
276 @classmethod
287 def renderer_from_filename(cls, filename, exclude):
277 def renderer_from_filename(cls, filename, exclude):
288 """
278 """
289 Detect renderer markdown/rst from filename and optionally use exclude
279 Detect renderer markdown/rst from filename and optionally use exclude
290 list to remove some options. This is mostly used in helpers.
280 list to remove some options. This is mostly used in helpers.
291 Returns None when no renderer can be detected.
281 Returns None when no renderer can be detected.
292 """
282 """
293 def _filter(elements):
283 def _filter(elements):
294 if isinstance(exclude, (list, tuple)):
284 if isinstance(exclude, (list, tuple)):
295 return [x for x in elements if x not in exclude]
285 return [x for x in elements if x not in exclude]
296 return elements
286 return elements
297
287
298 if filename.endswith(
288 if filename.endswith(
299 tuple(_filter([x[0] for x in cls.MARKDOWN_EXTS if x[0]]))):
289 tuple(_filter([x[0] for x in cls.MARKDOWN_EXTS if x[0]]))):
300 return 'markdown'
290 return 'markdown'
301 if filename.endswith(tuple(_filter([x[0] for x in cls.RST_EXTS if x[0]]))):
291 if filename.endswith(tuple(_filter([x[0] for x in cls.RST_EXTS if x[0]]))):
302 return 'rst'
292 return 'rst'
303
293
304 return None
294 return None
305
295
306 def render(self, source, filename=None):
296 def render(self, source, filename=None):
307 """
297 """
308 Renders a given filename using detected renderer
298 Renders a given filename using detected renderer
309 it detects renderers based on file extension or mimetype.
299 it detects renderers based on file extension or mimetype.
310 At last it will just do a simple html replacing new lines with <br/>
300 At last it will just do a simple html replacing new lines with <br/>
311 """
301 """
312
302
313 renderer = self._detect_renderer(source, filename)
303 renderer = self._detect_renderer(source, filename)
314 readme_data = renderer(source)
304 readme_data = renderer(source)
315 return readme_data
305 return readme_data
316
306
317 @classmethod
307 @classmethod
318 def urlify_text(cls, text):
308 def urlify_text(cls, text):
319 def url_func(match_obj):
309 def url_func(match_obj):
320 url_full = match_obj.groups()[0]
310 url_full = match_obj.groups()[0]
321 return f'<a href="{url_full}">{url_full}</a>'
311 return f'<a href="{url_full}">{url_full}</a>'
322
312
323 return cls.URL_PAT.sub(url_func, text)
313 return cls.URL_PAT.sub(url_func, text)
324
314
325 @classmethod
315 @classmethod
326 def convert_mentions(cls, text, mode):
316 def convert_mentions(cls, text, mode):
327 mention_pat = cls.MENTION_PAT
317 mention_pat = cls.MENTION_PAT
328
318
329 def wrapp(match_obj):
319 def wrapp(match_obj):
330 uname = match_obj.groups()[0]
320 uname = match_obj.groups()[0]
331 hovercard_url = "pyroutes.url('hovercard_username', {'username': '%s'});" % uname
321 hovercard_url = "pyroutes.url('hovercard_username', {'username': '%s'});" % uname
332
322
333 if mode == 'markdown':
323 if mode == 'markdown':
334 tmpl = '<strong class="tooltip-hovercard" data-hovercard-alt="{uname}" data-hovercard-url="{hovercard_url}">@{uname}</strong>'
324 tmpl = '<strong class="tooltip-hovercard" data-hovercard-alt="{uname}" data-hovercard-url="{hovercard_url}">@{uname}</strong>'
335 elif mode == 'rst':
325 elif mode == 'rst':
336 tmpl = ' **@{uname}** '
326 tmpl = ' **@{uname}** '
337 else:
327 else:
338 raise ValueError('mode must be rst or markdown')
328 raise ValueError('mode must be rst or markdown')
339
329
340 return tmpl.format(**{'uname': uname,
330 return tmpl.format(**{'uname': uname,
341 'hovercard_url': hovercard_url})
331 'hovercard_url': hovercard_url})
342
332
343 return mention_pat.sub(wrapp, text).strip()
333 return mention_pat.sub(wrapp, text).strip()
344
334
345 @classmethod
335 @classmethod
346 def plain(cls, source, universal_newline=True, leading_newline=True):
336 def plain(cls, source, universal_newline=True, leading_newline=True):
347 source = safe_str(source)
337 source = safe_str(source)
348 if universal_newline:
338 if universal_newline:
349 newline = '\n'
339 newline = '\n'
350 source = newline.join(source.splitlines())
340 source = newline.join(source.splitlines())
351
341
352 rendered_source = cls.urlify_text(source)
342 rendered_source = cls.urlify_text(source)
353 source = ''
343 source = ''
354 if leading_newline:
344 if leading_newline:
355 source += '<br />'
345 source += '<br />'
356 source += rendered_source.replace("\n", '<br />')
346 source += rendered_source.replace("\n", '<br />')
357
347
358 rendered = cls.sanitize_html(source)
348 rendered = cls.sanitize_html(source)
359 return rendered
349 return rendered
360
350
361 @classmethod
351 @classmethod
362 def markdown(cls, source, safe=True, flavored=True, mentions=False,
352 def markdown(cls, source, safe=True, flavored=True, mentions=False,
363 clean_html=True):
353 clean_html=True):
364 """
354 """
365 returns markdown rendered code cleaned by the bleach library
355 returns markdown rendered code cleaned by the bleach library
366 """
356 """
367
357
368 if flavored:
358 if flavored:
369 markdown_renderer = get_markdown_renderer_flavored(
359 markdown_renderer = get_markdown_renderer_flavored(
370 cls.extensions, cls.output_format)
360 cls.extensions, cls.output_format)
371 else:
361 else:
372 markdown_renderer = get_markdown_renderer(
362 markdown_renderer = get_markdown_renderer(
373 cls.extensions, cls.output_format)
363 cls.extensions, cls.output_format)
374
364
375 if mentions:
365 if mentions:
376 mention_hl = cls.convert_mentions(source, mode='markdown')
366 mention_hl = cls.convert_mentions(source, mode='markdown')
377 # we extracted mentions render with this using Mentions false
367 # we extracted mentions render with this using Mentions false
378 return cls.markdown(mention_hl, safe=safe, flavored=flavored,
368 return cls.markdown(mention_hl, safe=safe, flavored=flavored,
379 mentions=False)
369 mentions=False)
380
370
381 try:
371 try:
382 rendered = markdown_renderer.convert(source)
372 rendered = markdown_renderer.convert(source)
383
373
384 except Exception:
374 except Exception:
385 log.exception('Error when rendering Markdown')
375 log.exception('Error when rendering Markdown')
386 if safe:
376 if safe:
387 log.debug('Fallback to render in plain mode')
377 log.debug('Fallback to render in plain mode')
388 rendered = cls.plain(source)
378 rendered = cls.plain(source)
389 else:
379 else:
390 raise
380 raise
391
381
392 if clean_html:
382 if clean_html:
393 rendered = cls.sanitize_html(rendered)
383 rendered = cls.sanitize_html(rendered)
394 return rendered
384 return rendered
395
385
396 @classmethod
386 @classmethod
397 def rst(cls, source, safe=True, mentions=False, clean_html=False):
387 def rst(cls, source, safe=True, mentions=False, clean_html=False):
398
388
399 if mentions:
389 if mentions:
400 mention_hl = cls.convert_mentions(source, mode='rst')
390 mention_hl = cls.convert_mentions(source, mode='rst')
401 # we extracted mentions render with this using Mentions false
391 # we extracted mentions render with this using Mentions false
402 return cls.rst(mention_hl, safe=safe, mentions=False)
392 return cls.rst(mention_hl, safe=safe, mentions=False)
403
393
404 source = safe_str(source)
394 source = safe_str(source)
405 try:
395 try:
406 docutils_settings = dict(
396 docutils_settings = dict(
407 [(alias, None) for alias in
397 [(alias, None) for alias in
408 cls.RESTRUCTUREDTEXT_DISALLOWED_DIRECTIVES])
398 cls.RESTRUCTUREDTEXT_DISALLOWED_DIRECTIVES])
409
399
410 docutils_settings.update({
400 docutils_settings.update({
411 'input_encoding': 'unicode',
401 'input_encoding': 'unicode',
412 'report_level': 4,
402 'report_level': 4,
413 'syntax_highlight': 'short',
403 'syntax_highlight': 'short',
414 })
404 })
415
405
416 for k, v in list(docutils_settings.items()):
406 for k, v in list(docutils_settings.items()):
417 directives.register_directive(k, v)
407 directives.register_directive(k, v)
418
408
419 parts = publish_parts(source=source,
409 parts = publish_parts(source=source,
420 writer=RhodeCodeWriter(),
410 writer=RhodeCodeWriter(),
421 settings_overrides=docutils_settings)
411 settings_overrides=docutils_settings)
422 rendered = parts["fragment"]
412 rendered = parts["fragment"]
423 if clean_html:
413 if clean_html:
424 rendered = cls.sanitize_html(rendered)
414 rendered = cls.sanitize_html(rendered)
425 return parts['html_title'] + rendered
415 return parts['html_title'] + rendered
426 except Exception:
416 except Exception:
427 log.exception('Error when rendering RST')
417 log.exception('Error when rendering RST')
428 if safe:
418 if safe:
429 log.debug('Fallback to render in plain mode')
419 log.debug('Fallback to render in plain mode')
430 return cls.plain(source)
420 return cls.plain(source)
431 else:
421 else:
432 raise
422 raise
433
423
434 @classmethod
424 @classmethod
435 def jupyter(cls, source, safe=True):
425 def jupyter(cls, source, safe=True):
436 from rhodecode.lib import helpers
426 from rhodecode.lib import helpers
437
427
438 from traitlets.config import Config
428 from traitlets.config import Config
439 import nbformat
429 import nbformat
440 from nbconvert import HTMLExporter
430 from nbconvert import HTMLExporter
441 from nbconvert.preprocessors import Preprocessor
431 from nbconvert.preprocessors import Preprocessor
442
432
443 class CustomHTMLExporter(HTMLExporter):
433 class CustomHTMLExporter(HTMLExporter):
444 def _template_file_default(self):
434 def _template_file_default(self):
445 return 'basic'
435 return 'basic'
446
436
447 class Sandbox(Preprocessor):
437 class Sandbox(Preprocessor):
448
438
449 def preprocess(self, nb, resources):
439 def preprocess(self, nb, resources):
450 sandbox_text = 'SandBoxed(IPython.core.display.Javascript object)'
440 sandbox_text = 'SandBoxed(IPython.core.display.Javascript object)'
451 for cell in nb['cells']:
441 for cell in nb['cells']:
452 if not safe:
442 if not safe:
453 continue
443 continue
454
444
455 if 'outputs' in cell:
445 if 'outputs' in cell:
456 for cell_output in cell['outputs']:
446 for cell_output in cell['outputs']:
457 if 'data' in cell_output:
447 if 'data' in cell_output:
458 if 'application/javascript' in cell_output['data']:
448 if 'application/javascript' in cell_output['data']:
459 cell_output['data']['text/plain'] = sandbox_text
449 cell_output['data']['text/plain'] = sandbox_text
460 cell_output['data'].pop('application/javascript', None)
450 cell_output['data'].pop('application/javascript', None)
461
451
462 if 'source' in cell and cell['cell_type'] == 'markdown':
452 if 'source' in cell and cell['cell_type'] == 'markdown':
463 # sanitize similar like in markdown
453 # sanitize similar like in markdown
464 cell['source'] = cls.sanitize_html(cell['source'])
454 cell['source'] = cls.sanitize_html(cell['source'])
465
455
466 return nb, resources
456 return nb, resources
467
457
468 def _sanitize_resources(input_resources):
458 def _sanitize_resources(input_resources):
469 """
459 """
470 Skip/sanitize some of the CSS generated and included in jupyter
460 Skip/sanitize some of the CSS generated and included in jupyter
471 so it doesn't messes up UI so much
461 so it doesn't messes up UI so much
472 """
462 """
473
463
474 # TODO(marcink): probably we should replace this with whole custom
464 # TODO(marcink): probably we should replace this with whole custom
475 # CSS set that doesn't screw up, but jupyter generated html has some
465 # CSS set that doesn't screw up, but jupyter generated html has some
476 # special markers, so it requires Custom HTML exporter template with
466 # special markers, so it requires Custom HTML exporter template with
477 # _default_template_path_default, to achieve that
467 # _default_template_path_default, to achieve that
478
468
479 # strip the reset CSS
469 # strip the reset CSS
480 input_resources[0] = input_resources[0][input_resources[0].find('/*! Source'):]
470 input_resources[0] = input_resources[0][input_resources[0].find('/*! Source'):]
481 return input_resources
471 return input_resources
482
472
483 def as_html(notebook):
473 def as_html(notebook):
484 conf = Config()
474 conf = Config()
485 conf.CustomHTMLExporter.preprocessors = [Sandbox]
475 conf.CustomHTMLExporter.preprocessors = [Sandbox]
486 html_exporter = CustomHTMLExporter(config=conf)
476 html_exporter = CustomHTMLExporter(config=conf)
487
477
488 (body, resources) = html_exporter.from_notebook_node(notebook)
478 (body, resources) = html_exporter.from_notebook_node(notebook)
489 header = '<!-- ## IPYTHON NOTEBOOK RENDERING ## -->'
479 header = '<!-- ## IPYTHON NOTEBOOK RENDERING ## -->'
490 js = MakoTemplate(r'''
480 js = MakoTemplate(r'''
491 <!-- MathJax configuration -->
481 <!-- MathJax configuration -->
492 <script type="text/x-mathjax-config">
482 <script type="text/x-mathjax-config">
493 MathJax.Hub.Config({
483 MathJax.Hub.Config({
494 jax: ["input/TeX","output/HTML-CSS", "output/PreviewHTML"],
484 jax: ["input/TeX","output/HTML-CSS", "output/PreviewHTML"],
495 extensions: ["tex2jax.js","MathMenu.js","MathZoom.js", "fast-preview.js", "AssistiveMML.js", "[Contrib]/a11y/accessibility-menu.js"],
485 extensions: ["tex2jax.js","MathMenu.js","MathZoom.js", "fast-preview.js", "AssistiveMML.js", "[Contrib]/a11y/accessibility-menu.js"],
496 TeX: {
486 TeX: {
497 extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"]
487 extensions: ["AMSmath.js","AMSsymbols.js","noErrors.js","noUndefined.js"]
498 },
488 },
499 tex2jax: {
489 tex2jax: {
500 inlineMath: [ ['$','$'], ["\\(","\\)"] ],
490 inlineMath: [ ['$','$'], ["\\(","\\)"] ],
501 displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
491 displayMath: [ ['$$','$$'], ["\\[","\\]"] ],
502 processEscapes: true,
492 processEscapes: true,
503 processEnvironments: true
493 processEnvironments: true
504 },
494 },
505 // Center justify equations in code and markdown cells. Elsewhere
495 // Center justify equations in code and markdown cells. Elsewhere
506 // we use CSS to left justify single line equations in code cells.
496 // we use CSS to left justify single line equations in code cells.
507 displayAlign: 'center',
497 displayAlign: 'center',
508 "HTML-CSS": {
498 "HTML-CSS": {
509 styles: {'.MathJax_Display': {"margin": 0}},
499 styles: {'.MathJax_Display': {"margin": 0}},
510 linebreaks: { automatic: true },
500 linebreaks: { automatic: true },
511 availableFonts: ["STIX", "TeX"]
501 availableFonts: ["STIX", "TeX"]
512 },
502 },
513 showMathMenu: false
503 showMathMenu: false
514 });
504 });
515 </script>
505 </script>
516 <!-- End of MathJax configuration -->
506 <!-- End of MathJax configuration -->
517 <script src="${h.asset('js/src/math_jax/MathJax.js')}"></script>
507 <script src="${h.asset('js/src/math_jax/MathJax.js')}"></script>
518 ''').render(h=helpers)
508 ''').render(h=helpers)
519
509
520 css = MakoTemplate(r'''
510 css = MakoTemplate(r'''
521 <link rel="stylesheet" type="text/css" href="${h.asset('css/style-ipython.css', ver=ver)}" media="screen"/>
511 <link rel="stylesheet" type="text/css" href="${h.asset('css/style-ipython.css', ver=ver)}" media="screen"/>
522 ''').render(h=helpers, ver='ver1')
512 ''').render(h=helpers, ver='ver1')
523
513
524 body = '\n'.join([header, css, js, body])
514 body = '\n'.join([header, css, js, body])
525 return body, resources
515 return body, resources
526
516
527 notebook = nbformat.reads(source, as_version=4)
517 notebook = nbformat.reads(source, as_version=4)
528 (body, resources) = as_html(notebook)
518 (body, resources) = as_html(notebook)
529 return body
519 return body
530
520
531
521
532 class RstTemplateRenderer(object):
522 class RstTemplateRenderer(object):
533
523
534 def __init__(self):
524 def __init__(self):
535 base = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
525 base = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
536 rst_template_dirs = [os.path.join(base, 'templates', 'rst_templates')]
526 rst_template_dirs = [os.path.join(base, 'templates', 'rst_templates')]
537 self.template_store = TemplateLookup(
527 self.template_store = TemplateLookup(
538 directories=rst_template_dirs,
528 directories=rst_template_dirs,
539 input_encoding='utf-8',
529 input_encoding='utf-8',
540 imports=['from rhodecode.lib import helpers as h'])
530 imports=['from rhodecode.lib import helpers as h'])
541
531
542 def _get_template(self, templatename):
532 def _get_template(self, templatename):
543 return self.template_store.get_template(templatename)
533 return self.template_store.get_template(templatename)
544
534
545 def render(self, template_name, **kwargs):
535 def render(self, template_name, **kwargs):
546 template = self._get_template(template_name)
536 template = self._get_template(template_name)
547 return template.render(**kwargs)
537 return template.render(**kwargs)
@@ -1,923 +1,923 b''
1 # Copyright (C) 2010-2023 RhodeCode GmbH
1 # Copyright (C) 2010-2023 RhodeCode GmbH
2 #
2 #
3 # This program is free software: you can redistribute it and/or modify
3 # This program is free software: you can redistribute it and/or modify
4 # it under the terms of the GNU Affero General Public License, version 3
4 # it under the terms of the GNU Affero General Public License, version 3
5 # (only), as published by the Free Software Foundation.
5 # (only), as published by the Free Software Foundation.
6 #
6 #
7 # This program is distributed in the hope that it will be useful,
7 # This program is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 # GNU General Public License for more details.
10 # GNU General Public License for more details.
11 #
11 #
12 # You should have received a copy of the GNU Affero General Public License
12 # You should have received a copy of the GNU Affero General Public License
13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
13 # along with this program. If not, see <http://www.gnu.org/licenses/>.
14 #
14 #
15 # This program is dual-licensed. If you wish to learn more about the
15 # This program is dual-licensed. If you wish to learn more about the
16 # RhodeCode Enterprise Edition, including its added features, Support services,
16 # RhodeCode Enterprise Edition, including its added features, Support services,
17 # and proprietary license terms, please see https://rhodecode.com/licenses/
17 # and proprietary license terms, please see https://rhodecode.com/licenses/
18
18
19 import os
19 import os
20 import re
20 import re
21 import logging
21 import logging
22 import time
22 import time
23 import functools
23 import functools
24 import bleach
25 from collections import namedtuple
24 from collections import namedtuple
26
25
27 from pyramid.threadlocal import get_current_request
26 from pyramid.threadlocal import get_current_request
28
27
29 from rhodecode.lib import rc_cache
28 from rhodecode.lib import rc_cache
30 from rhodecode.lib.hash_utils import sha1_safe
29 from rhodecode.lib.hash_utils import sha1_safe
30 from rhodecode.lib.html_filters import sanitize_html
31 from rhodecode.lib.utils2 import (
31 from rhodecode.lib.utils2 import (
32 Optional, AttributeDict, safe_str, remove_prefix, str2bool)
32 Optional, AttributeDict, safe_str, remove_prefix, str2bool)
33 from rhodecode.lib.vcs.backends import base
33 from rhodecode.lib.vcs.backends import base
34 from rhodecode.lib.statsd_client import StatsdClient
34 from rhodecode.lib.statsd_client import StatsdClient
35 from rhodecode.model import BaseModel
35 from rhodecode.model import BaseModel
36 from rhodecode.model.db import (
36 from rhodecode.model.db import (
37 RepoRhodeCodeUi, RepoRhodeCodeSetting, RhodeCodeUi, RhodeCodeSetting)
37 RepoRhodeCodeUi, RepoRhodeCodeSetting, RhodeCodeUi, RhodeCodeSetting)
38 from rhodecode.model.meta import Session
38 from rhodecode.model.meta import Session
39
39
40
40
41 log = logging.getLogger(__name__)
41 log = logging.getLogger(__name__)
42
42
43
43
44 UiSetting = namedtuple(
44 UiSetting = namedtuple(
45 'UiSetting', ['section', 'key', 'value', 'active'])
45 'UiSetting', ['section', 'key', 'value', 'active'])
46
46
47 SOCIAL_PLUGINS_LIST = ['github', 'bitbucket', 'twitter', 'google']
47 SOCIAL_PLUGINS_LIST = ['github', 'bitbucket', 'twitter', 'google']
48
48
49
49
50 class SettingNotFound(Exception):
50 class SettingNotFound(Exception):
51 def __init__(self, setting_id):
51 def __init__(self, setting_id):
52 msg = f'Setting `{setting_id}` is not found'
52 msg = f'Setting `{setting_id}` is not found'
53 super().__init__(msg)
53 super().__init__(msg)
54
54
55
55
56 class SettingsModel(BaseModel):
56 class SettingsModel(BaseModel):
57 BUILTIN_HOOKS = (
57 BUILTIN_HOOKS = (
58 RhodeCodeUi.HOOK_REPO_SIZE, RhodeCodeUi.HOOK_PUSH,
58 RhodeCodeUi.HOOK_REPO_SIZE, RhodeCodeUi.HOOK_PUSH,
59 RhodeCodeUi.HOOK_PRE_PUSH, RhodeCodeUi.HOOK_PRETX_PUSH,
59 RhodeCodeUi.HOOK_PRE_PUSH, RhodeCodeUi.HOOK_PRETX_PUSH,
60 RhodeCodeUi.HOOK_PULL, RhodeCodeUi.HOOK_PRE_PULL,
60 RhodeCodeUi.HOOK_PULL, RhodeCodeUi.HOOK_PRE_PULL,
61 RhodeCodeUi.HOOK_PUSH_KEY,)
61 RhodeCodeUi.HOOK_PUSH_KEY,)
62 HOOKS_SECTION = 'hooks'
62 HOOKS_SECTION = 'hooks'
63
63
64 def __init__(self, sa=None, repo=None):
64 def __init__(self, sa=None, repo=None):
65 self.repo = repo
65 self.repo = repo
66 self.UiDbModel = RepoRhodeCodeUi if repo else RhodeCodeUi
66 self.UiDbModel = RepoRhodeCodeUi if repo else RhodeCodeUi
67 self.SettingsDbModel = (
67 self.SettingsDbModel = (
68 RepoRhodeCodeSetting if repo else RhodeCodeSetting)
68 RepoRhodeCodeSetting if repo else RhodeCodeSetting)
69 super().__init__(sa)
69 super().__init__(sa)
70
70
71 def get_ui_by_key(self, key):
71 def get_ui_by_key(self, key):
72 q = self.UiDbModel.query()
72 q = self.UiDbModel.query()
73 q = q.filter(self.UiDbModel.ui_key == key)
73 q = q.filter(self.UiDbModel.ui_key == key)
74 q = self._filter_by_repo(RepoRhodeCodeUi, q)
74 q = self._filter_by_repo(RepoRhodeCodeUi, q)
75 return q.scalar()
75 return q.scalar()
76
76
77 def get_ui_by_section(self, section):
77 def get_ui_by_section(self, section):
78 q = self.UiDbModel.query()
78 q = self.UiDbModel.query()
79 q = q.filter(self.UiDbModel.ui_section == section)
79 q = q.filter(self.UiDbModel.ui_section == section)
80 q = self._filter_by_repo(RepoRhodeCodeUi, q)
80 q = self._filter_by_repo(RepoRhodeCodeUi, q)
81 return q.all()
81 return q.all()
82
82
83 def get_ui_by_section_and_key(self, section, key):
83 def get_ui_by_section_and_key(self, section, key):
84 q = self.UiDbModel.query()
84 q = self.UiDbModel.query()
85 q = q.filter(self.UiDbModel.ui_section == section)
85 q = q.filter(self.UiDbModel.ui_section == section)
86 q = q.filter(self.UiDbModel.ui_key == key)
86 q = q.filter(self.UiDbModel.ui_key == key)
87 q = self._filter_by_repo(RepoRhodeCodeUi, q)
87 q = self._filter_by_repo(RepoRhodeCodeUi, q)
88 return q.scalar()
88 return q.scalar()
89
89
90 def get_ui(self, section=None, key=None):
90 def get_ui(self, section=None, key=None):
91 q = self.UiDbModel.query()
91 q = self.UiDbModel.query()
92 q = self._filter_by_repo(RepoRhodeCodeUi, q)
92 q = self._filter_by_repo(RepoRhodeCodeUi, q)
93
93
94 if section:
94 if section:
95 q = q.filter(self.UiDbModel.ui_section == section)
95 q = q.filter(self.UiDbModel.ui_section == section)
96 if key:
96 if key:
97 q = q.filter(self.UiDbModel.ui_key == key)
97 q = q.filter(self.UiDbModel.ui_key == key)
98
98
99 # TODO: mikhail: add caching
99 # TODO: mikhail: add caching
100 result = [
100 result = [
101 UiSetting(
101 UiSetting(
102 section=safe_str(r.ui_section), key=safe_str(r.ui_key),
102 section=safe_str(r.ui_section), key=safe_str(r.ui_key),
103 value=safe_str(r.ui_value), active=r.ui_active
103 value=safe_str(r.ui_value), active=r.ui_active
104 )
104 )
105 for r in q.all()
105 for r in q.all()
106 ]
106 ]
107 return result
107 return result
108
108
109 def get_builtin_hooks(self):
109 def get_builtin_hooks(self):
110 q = self.UiDbModel.query()
110 q = self.UiDbModel.query()
111 q = q.filter(self.UiDbModel.ui_key.in_(self.BUILTIN_HOOKS))
111 q = q.filter(self.UiDbModel.ui_key.in_(self.BUILTIN_HOOKS))
112 return self._get_hooks(q)
112 return self._get_hooks(q)
113
113
114 def get_custom_hooks(self):
114 def get_custom_hooks(self):
115 q = self.UiDbModel.query()
115 q = self.UiDbModel.query()
116 q = q.filter(~self.UiDbModel.ui_key.in_(self.BUILTIN_HOOKS))
116 q = q.filter(~self.UiDbModel.ui_key.in_(self.BUILTIN_HOOKS))
117 return self._get_hooks(q)
117 return self._get_hooks(q)
118
118
119 def create_ui_section_value(self, section, val, key=None, active=True):
119 def create_ui_section_value(self, section, val, key=None, active=True):
120 new_ui = self.UiDbModel()
120 new_ui = self.UiDbModel()
121 new_ui.ui_section = section
121 new_ui.ui_section = section
122 new_ui.ui_value = val
122 new_ui.ui_value = val
123 new_ui.ui_active = active
123 new_ui.ui_active = active
124
124
125 repository_id = ''
125 repository_id = ''
126 if self.repo:
126 if self.repo:
127 repo = self._get_repo(self.repo)
127 repo = self._get_repo(self.repo)
128 repository_id = repo.repo_id
128 repository_id = repo.repo_id
129 new_ui.repository_id = repository_id
129 new_ui.repository_id = repository_id
130
130
131 if not key:
131 if not key:
132 # keys are unique so they need appended info
132 # keys are unique so they need appended info
133 if self.repo:
133 if self.repo:
134 key = sha1_safe(f'{section}{val}{repository_id}')
134 key = sha1_safe(f'{section}{val}{repository_id}')
135 else:
135 else:
136 key = sha1_safe(f'{section}{val}')
136 key = sha1_safe(f'{section}{val}')
137
137
138 new_ui.ui_key = key
138 new_ui.ui_key = key
139
139
140 Session().add(new_ui)
140 Session().add(new_ui)
141 return new_ui
141 return new_ui
142
142
143 def create_or_update_hook(self, key, value):
143 def create_or_update_hook(self, key, value):
144 ui = (
144 ui = (
145 self.get_ui_by_section_and_key(self.HOOKS_SECTION, key) or
145 self.get_ui_by_section_and_key(self.HOOKS_SECTION, key) or
146 self.UiDbModel())
146 self.UiDbModel())
147 ui.ui_section = self.HOOKS_SECTION
147 ui.ui_section = self.HOOKS_SECTION
148 ui.ui_active = True
148 ui.ui_active = True
149 ui.ui_key = key
149 ui.ui_key = key
150 ui.ui_value = value
150 ui.ui_value = value
151
151
152 if self.repo:
152 if self.repo:
153 repo = self._get_repo(self.repo)
153 repo = self._get_repo(self.repo)
154 repository_id = repo.repo_id
154 repository_id = repo.repo_id
155 ui.repository_id = repository_id
155 ui.repository_id = repository_id
156
156
157 Session().add(ui)
157 Session().add(ui)
158 return ui
158 return ui
159
159
160 def delete_ui(self, id_):
160 def delete_ui(self, id_):
161 ui = self.UiDbModel.get(id_)
161 ui = self.UiDbModel.get(id_)
162 if not ui:
162 if not ui:
163 raise SettingNotFound(id_)
163 raise SettingNotFound(id_)
164 Session().delete(ui)
164 Session().delete(ui)
165
165
166 def get_setting_by_name(self, name):
166 def get_setting_by_name(self, name):
167 q = self._get_settings_query()
167 q = self._get_settings_query()
168 q = q.filter(self.SettingsDbModel.app_settings_name == name)
168 q = q.filter(self.SettingsDbModel.app_settings_name == name)
169 return q.scalar()
169 return q.scalar()
170
170
171 def create_or_update_setting(
171 def create_or_update_setting(
172 self, name, val=Optional(''), type_=Optional('unicode')):
172 self, name, val=Optional(''), type_=Optional('unicode')):
173 """
173 """
174 Creates or updates RhodeCode setting. If updates is triggered it will
174 Creates or updates RhodeCode setting. If updates is triggered it will
175 only update parameters that are explicitly set Optional instance will
175 only update parameters that are explicitly set Optional instance will
176 be skipped
176 be skipped
177
177
178 :param name:
178 :param name:
179 :param val:
179 :param val:
180 :param type_:
180 :param type_:
181 :return:
181 :return:
182 """
182 """
183
183
184 res = self.get_setting_by_name(name)
184 res = self.get_setting_by_name(name)
185 repo = self._get_repo(self.repo) if self.repo else None
185 repo = self._get_repo(self.repo) if self.repo else None
186
186
187 if not res:
187 if not res:
188 val = Optional.extract(val)
188 val = Optional.extract(val)
189 type_ = Optional.extract(type_)
189 type_ = Optional.extract(type_)
190
190
191 args = (
191 args = (
192 (repo.repo_id, name, val, type_)
192 (repo.repo_id, name, val, type_)
193 if repo else (name, val, type_))
193 if repo else (name, val, type_))
194 res = self.SettingsDbModel(*args)
194 res = self.SettingsDbModel(*args)
195
195
196 else:
196 else:
197 if self.repo:
197 if self.repo:
198 res.repository_id = repo.repo_id
198 res.repository_id = repo.repo_id
199
199
200 res.app_settings_name = name
200 res.app_settings_name = name
201 if not isinstance(type_, Optional):
201 if not isinstance(type_, Optional):
202 # update if set
202 # update if set
203 res.app_settings_type = type_
203 res.app_settings_type = type_
204 if not isinstance(val, Optional):
204 if not isinstance(val, Optional):
205 # update if set
205 # update if set
206 res.app_settings_value = val
206 res.app_settings_value = val
207
207
208 Session().add(res)
208 Session().add(res)
209 return res
209 return res
210
210
211 def get_cache_region(self):
211 def get_cache_region(self):
212 repo = self._get_repo(self.repo) if self.repo else None
212 repo = self._get_repo(self.repo) if self.repo else None
213 cache_key = f"repo.{repo.repo_id}" if repo else "repo.ALL"
213 cache_key = f"repo.{repo.repo_id}" if repo else "repo.ALL"
214 cache_namespace_uid = f'cache_settings.{cache_key}'
214 cache_namespace_uid = f'cache_settings.{cache_key}'
215 region = rc_cache.get_or_create_region('cache_general', cache_namespace_uid)
215 region = rc_cache.get_or_create_region('cache_general', cache_namespace_uid)
216 return region, cache_namespace_uid
216 return region, cache_namespace_uid
217
217
218 def invalidate_settings_cache(self, hard=False):
218 def invalidate_settings_cache(self, hard=False):
219 region, namespace_key = self.get_cache_region()
219 region, namespace_key = self.get_cache_region()
220 log.debug('Invalidation cache [%s] region %s for cache_key: %s',
220 log.debug('Invalidation cache [%s] region %s for cache_key: %s',
221 'invalidate_settings_cache', region, namespace_key)
221 'invalidate_settings_cache', region, namespace_key)
222
222
223 # we use hard cleanup if invalidation is sent
223 # we use hard cleanup if invalidation is sent
224 rc_cache.clear_cache_namespace(region, namespace_key, method=rc_cache.CLEAR_DELETE)
224 rc_cache.clear_cache_namespace(region, namespace_key, method=rc_cache.CLEAR_DELETE)
225
225
226 def get_cache_call_method(self, cache=True):
226 def get_cache_call_method(self, cache=True):
227 region, cache_key = self.get_cache_region()
227 region, cache_key = self.get_cache_region()
228
228
229 @region.conditional_cache_on_arguments(condition=cache)
229 @region.conditional_cache_on_arguments(condition=cache)
230 def _get_all_settings(name, key):
230 def _get_all_settings(name, key):
231 q = self._get_settings_query()
231 q = self._get_settings_query()
232 if not q:
232 if not q:
233 raise Exception('Could not get application settings !')
233 raise Exception('Could not get application settings !')
234
234
235 settings = {
235 settings = {
236 f'rhodecode_{res.app_settings_name}': res.app_settings_value
236 f'rhodecode_{res.app_settings_name}': res.app_settings_value
237 for res in q
237 for res in q
238 }
238 }
239 return settings
239 return settings
240 return _get_all_settings
240 return _get_all_settings
241
241
242 def get_all_settings(self, cache=False, from_request=True):
242 def get_all_settings(self, cache=False, from_request=True):
243 # defines if we use GLOBAL, or PER_REPO
243 # defines if we use GLOBAL, or PER_REPO
244 repo = self._get_repo(self.repo) if self.repo else None
244 repo = self._get_repo(self.repo) if self.repo else None
245
245
246 # initially try the requests context, this is the fastest
246 # initially try the requests context, this is the fastest
247 # we only fetch global config, NOT for repo-specific
247 # we only fetch global config, NOT for repo-specific
248 if from_request and not repo:
248 if from_request and not repo:
249 request = get_current_request()
249 request = get_current_request()
250
250
251 if request and hasattr(request, 'call_context') and hasattr(request.call_context, 'rc_config'):
251 if request and hasattr(request, 'call_context') and hasattr(request.call_context, 'rc_config'):
252 rc_config = request.call_context.rc_config
252 rc_config = request.call_context.rc_config
253 if rc_config:
253 if rc_config:
254 return rc_config
254 return rc_config
255
255
256 _region, cache_key = self.get_cache_region()
256 _region, cache_key = self.get_cache_region()
257 _get_all_settings = self.get_cache_call_method(cache=cache)
257 _get_all_settings = self.get_cache_call_method(cache=cache)
258
258
259 start = time.time()
259 start = time.time()
260 result = _get_all_settings('rhodecode_settings', cache_key)
260 result = _get_all_settings('rhodecode_settings', cache_key)
261 compute_time = time.time() - start
261 compute_time = time.time() - start
262 log.debug('cached method:%s took %.4fs', _get_all_settings.__name__, compute_time)
262 log.debug('cached method:%s took %.4fs', _get_all_settings.__name__, compute_time)
263
263
264 statsd = StatsdClient.statsd
264 statsd = StatsdClient.statsd
265 if statsd:
265 if statsd:
266 elapsed_time_ms = round(1000.0 * compute_time) # use ms only
266 elapsed_time_ms = round(1000.0 * compute_time) # use ms only
267 statsd.timing("rhodecode_settings_timing.histogram", elapsed_time_ms,
267 statsd.timing("rhodecode_settings_timing.histogram", elapsed_time_ms,
268 use_decimals=False)
268 use_decimals=False)
269
269
270 log.debug('Fetching app settings for key: %s took: %.4fs: cache: %s', cache_key, compute_time, cache)
270 log.debug('Fetching app settings for key: %s took: %.4fs: cache: %s', cache_key, compute_time, cache)
271
271
272 return result
272 return result
273
273
274 def get_auth_settings(self):
274 def get_auth_settings(self):
275 q = self._get_settings_query()
275 q = self._get_settings_query()
276 q = q.filter(
276 q = q.filter(
277 self.SettingsDbModel.app_settings_name.startswith('auth_'))
277 self.SettingsDbModel.app_settings_name.startswith('auth_'))
278 rows = q.all()
278 rows = q.all()
279 auth_settings = {
279 auth_settings = {
280 row.app_settings_name: row.app_settings_value for row in rows}
280 row.app_settings_name: row.app_settings_value for row in rows}
281 return auth_settings
281 return auth_settings
282
282
283 def get_auth_plugins(self):
283 def get_auth_plugins(self):
284 auth_plugins = self.get_setting_by_name("auth_plugins")
284 auth_plugins = self.get_setting_by_name("auth_plugins")
285 return auth_plugins.app_settings_value
285 return auth_plugins.app_settings_value
286
286
287 def get_default_repo_settings(self, strip_prefix=False):
287 def get_default_repo_settings(self, strip_prefix=False):
288 q = self._get_settings_query()
288 q = self._get_settings_query()
289 q = q.filter(
289 q = q.filter(
290 self.SettingsDbModel.app_settings_name.startswith('default_'))
290 self.SettingsDbModel.app_settings_name.startswith('default_'))
291 rows = q.all()
291 rows = q.all()
292
292
293 result = {}
293 result = {}
294 for row in rows:
294 for row in rows:
295 key = row.app_settings_name
295 key = row.app_settings_name
296 if strip_prefix:
296 if strip_prefix:
297 key = remove_prefix(key, prefix='default_')
297 key = remove_prefix(key, prefix='default_')
298 result.update({key: row.app_settings_value})
298 result.update({key: row.app_settings_value})
299 return result
299 return result
300
300
301 def get_repo(self):
301 def get_repo(self):
302 repo = self._get_repo(self.repo)
302 repo = self._get_repo(self.repo)
303 if not repo:
303 if not repo:
304 raise Exception(
304 raise Exception(
305 'Repository `{}` cannot be found inside the database'.format(
305 'Repository `{}` cannot be found inside the database'.format(
306 self.repo))
306 self.repo))
307 return repo
307 return repo
308
308
309 def _filter_by_repo(self, model, query):
309 def _filter_by_repo(self, model, query):
310 if self.repo:
310 if self.repo:
311 repo = self.get_repo()
311 repo = self.get_repo()
312 query = query.filter(model.repository_id == repo.repo_id)
312 query = query.filter(model.repository_id == repo.repo_id)
313 return query
313 return query
314
314
315 def _get_hooks(self, query):
315 def _get_hooks(self, query):
316 query = query.filter(self.UiDbModel.ui_section == self.HOOKS_SECTION)
316 query = query.filter(self.UiDbModel.ui_section == self.HOOKS_SECTION)
317 query = self._filter_by_repo(RepoRhodeCodeUi, query)
317 query = self._filter_by_repo(RepoRhodeCodeUi, query)
318 return query.all()
318 return query.all()
319
319
320 def _get_settings_query(self):
320 def _get_settings_query(self):
321 q = self.SettingsDbModel.query()
321 q = self.SettingsDbModel.query()
322 return self._filter_by_repo(RepoRhodeCodeSetting, q)
322 return self._filter_by_repo(RepoRhodeCodeSetting, q)
323
323
324 def list_enabled_social_plugins(self, settings):
324 def list_enabled_social_plugins(self, settings):
325 enabled = []
325 enabled = []
326 for plug in SOCIAL_PLUGINS_LIST:
326 for plug in SOCIAL_PLUGINS_LIST:
327 if str2bool(settings.get(f'rhodecode_auth_{plug}_enabled')):
327 if str2bool(settings.get(f'rhodecode_auth_{plug}_enabled')):
328 enabled.append(plug)
328 enabled.append(plug)
329 return enabled
329 return enabled
330
330
331
331
332 def assert_repo_settings(func):
332 def assert_repo_settings(func):
333 @functools.wraps(func)
333 @functools.wraps(func)
334 def _wrapper(self, *args, **kwargs):
334 def _wrapper(self, *args, **kwargs):
335 if not self.repo_settings:
335 if not self.repo_settings:
336 raise Exception('Repository is not specified')
336 raise Exception('Repository is not specified')
337 return func(self, *args, **kwargs)
337 return func(self, *args, **kwargs)
338 return _wrapper
338 return _wrapper
339
339
340
340
341 class IssueTrackerSettingsModel(object):
341 class IssueTrackerSettingsModel(object):
342 INHERIT_SETTINGS = 'inherit_issue_tracker_settings'
342 INHERIT_SETTINGS = 'inherit_issue_tracker_settings'
343 SETTINGS_PREFIX = 'issuetracker_'
343 SETTINGS_PREFIX = 'issuetracker_'
344
344
345 def __init__(self, sa=None, repo=None):
345 def __init__(self, sa=None, repo=None):
346 self.global_settings = SettingsModel(sa=sa)
346 self.global_settings = SettingsModel(sa=sa)
347 self.repo_settings = SettingsModel(sa=sa, repo=repo) if repo else None
347 self.repo_settings = SettingsModel(sa=sa, repo=repo) if repo else None
348
348
349 @property
349 @property
350 def inherit_global_settings(self):
350 def inherit_global_settings(self):
351 if not self.repo_settings:
351 if not self.repo_settings:
352 return True
352 return True
353 setting = self.repo_settings.get_setting_by_name(self.INHERIT_SETTINGS)
353 setting = self.repo_settings.get_setting_by_name(self.INHERIT_SETTINGS)
354 return setting.app_settings_value if setting else True
354 return setting.app_settings_value if setting else True
355
355
356 @inherit_global_settings.setter
356 @inherit_global_settings.setter
357 def inherit_global_settings(self, value):
357 def inherit_global_settings(self, value):
358 if self.repo_settings:
358 if self.repo_settings:
359 settings = self.repo_settings.create_or_update_setting(
359 settings = self.repo_settings.create_or_update_setting(
360 self.INHERIT_SETTINGS, value, type_='bool')
360 self.INHERIT_SETTINGS, value, type_='bool')
361 Session().add(settings)
361 Session().add(settings)
362
362
363 def _get_keyname(self, key, uid, prefix=''):
363 def _get_keyname(self, key, uid, prefix=''):
364 return '{}{}{}_{}'.format(
364 return '{}{}{}_{}'.format(
365 prefix, self.SETTINGS_PREFIX, key, uid)
365 prefix, self.SETTINGS_PREFIX, key, uid)
366
366
367 def _make_dict_for_settings(self, qs):
367 def _make_dict_for_settings(self, qs):
368 prefix_match = self._get_keyname('pat', '', 'rhodecode_')
368 prefix_match = self._get_keyname('pat', '', 'rhodecode_')
369
369
370 issuetracker_entries = {}
370 issuetracker_entries = {}
371 # create keys
371 # create keys
372 for k, v in qs.items():
372 for k, v in qs.items():
373 if k.startswith(prefix_match):
373 if k.startswith(prefix_match):
374 uid = k[len(prefix_match):]
374 uid = k[len(prefix_match):]
375 issuetracker_entries[uid] = None
375 issuetracker_entries[uid] = None
376
376
377 def url_cleaner(input_str):
377 def url_cleaner(input_str):
378 input_str = input_str.replace('"', '').replace("'", '')
378 input_str = input_str.replace('"', '').replace("'", '')
379 input_str = bleach.clean(input_str, strip=True)
379 input_str = sanitize_html(input_str, strip=True)
380 return input_str
380 return input_str
381
381
382 # populate
382 # populate
383 for uid in issuetracker_entries:
383 for uid in issuetracker_entries:
384 url_data = qs.get(self._get_keyname('url', uid, 'rhodecode_'))
384 url_data = qs.get(self._get_keyname('url', uid, 'rhodecode_'))
385
385
386 pat = qs.get(self._get_keyname('pat', uid, 'rhodecode_'))
386 pat = qs.get(self._get_keyname('pat', uid, 'rhodecode_'))
387 try:
387 try:
388 pat_compiled = re.compile(r'%s' % pat)
388 pat_compiled = re.compile(r'%s' % pat)
389 except re.error:
389 except re.error:
390 pat_compiled = None
390 pat_compiled = None
391
391
392 issuetracker_entries[uid] = AttributeDict({
392 issuetracker_entries[uid] = AttributeDict({
393 'pat': pat,
393 'pat': pat,
394 'pat_compiled': pat_compiled,
394 'pat_compiled': pat_compiled,
395 'url': url_cleaner(
395 'url': url_cleaner(
396 qs.get(self._get_keyname('url', uid, 'rhodecode_')) or ''),
396 qs.get(self._get_keyname('url', uid, 'rhodecode_')) or ''),
397 'pref': bleach.clean(
397 'pref': sanitize_html(
398 qs.get(self._get_keyname('pref', uid, 'rhodecode_')) or ''),
398 qs.get(self._get_keyname('pref', uid, 'rhodecode_')) or ''),
399 'desc': qs.get(
399 'desc': qs.get(
400 self._get_keyname('desc', uid, 'rhodecode_')),
400 self._get_keyname('desc', uid, 'rhodecode_')),
401 })
401 })
402
402
403 return issuetracker_entries
403 return issuetracker_entries
404
404
405 def get_global_settings(self, cache=False):
405 def get_global_settings(self, cache=False):
406 """
406 """
407 Returns list of global issue tracker settings
407 Returns list of global issue tracker settings
408 """
408 """
409 defaults = self.global_settings.get_all_settings(cache=cache)
409 defaults = self.global_settings.get_all_settings(cache=cache)
410 settings = self._make_dict_for_settings(defaults)
410 settings = self._make_dict_for_settings(defaults)
411 return settings
411 return settings
412
412
413 def get_repo_settings(self, cache=False):
413 def get_repo_settings(self, cache=False):
414 """
414 """
415 Returns list of issue tracker settings per repository
415 Returns list of issue tracker settings per repository
416 """
416 """
417 if not self.repo_settings:
417 if not self.repo_settings:
418 raise Exception('Repository is not specified')
418 raise Exception('Repository is not specified')
419 all_settings = self.repo_settings.get_all_settings(cache=cache)
419 all_settings = self.repo_settings.get_all_settings(cache=cache)
420 settings = self._make_dict_for_settings(all_settings)
420 settings = self._make_dict_for_settings(all_settings)
421 return settings
421 return settings
422
422
423 def get_settings(self, cache=False):
423 def get_settings(self, cache=False):
424 if self.inherit_global_settings:
424 if self.inherit_global_settings:
425 return self.get_global_settings(cache=cache)
425 return self.get_global_settings(cache=cache)
426 else:
426 else:
427 return self.get_repo_settings(cache=cache)
427 return self.get_repo_settings(cache=cache)
428
428
429 def delete_entries(self, uid):
429 def delete_entries(self, uid):
430 if self.repo_settings:
430 if self.repo_settings:
431 all_patterns = self.get_repo_settings()
431 all_patterns = self.get_repo_settings()
432 settings_model = self.repo_settings
432 settings_model = self.repo_settings
433 else:
433 else:
434 all_patterns = self.get_global_settings()
434 all_patterns = self.get_global_settings()
435 settings_model = self.global_settings
435 settings_model = self.global_settings
436 entries = all_patterns.get(uid, [])
436 entries = all_patterns.get(uid, [])
437
437
438 for del_key in entries:
438 for del_key in entries:
439 setting_name = self._get_keyname(del_key, uid)
439 setting_name = self._get_keyname(del_key, uid)
440 entry = settings_model.get_setting_by_name(setting_name)
440 entry = settings_model.get_setting_by_name(setting_name)
441 if entry:
441 if entry:
442 Session().delete(entry)
442 Session().delete(entry)
443
443
444 Session().commit()
444 Session().commit()
445
445
446 def create_or_update_setting(
446 def create_or_update_setting(
447 self, name, val=Optional(''), type_=Optional('unicode')):
447 self, name, val=Optional(''), type_=Optional('unicode')):
448 if self.repo_settings:
448 if self.repo_settings:
449 setting = self.repo_settings.create_or_update_setting(
449 setting = self.repo_settings.create_or_update_setting(
450 name, val, type_)
450 name, val, type_)
451 else:
451 else:
452 setting = self.global_settings.create_or_update_setting(
452 setting = self.global_settings.create_or_update_setting(
453 name, val, type_)
453 name, val, type_)
454 return setting
454 return setting
455
455
456
456
457 class VcsSettingsModel(object):
457 class VcsSettingsModel(object):
458
458
459 INHERIT_SETTINGS = 'inherit_vcs_settings'
459 INHERIT_SETTINGS = 'inherit_vcs_settings'
460 GENERAL_SETTINGS = (
460 GENERAL_SETTINGS = (
461 'use_outdated_comments',
461 'use_outdated_comments',
462 'pr_merge_enabled',
462 'pr_merge_enabled',
463 'hg_use_rebase_for_merging',
463 'hg_use_rebase_for_merging',
464 'hg_close_branch_before_merging',
464 'hg_close_branch_before_merging',
465 'git_use_rebase_for_merging',
465 'git_use_rebase_for_merging',
466 'git_close_branch_before_merging',
466 'git_close_branch_before_merging',
467 'diff_cache',
467 'diff_cache',
468 )
468 )
469
469
470 HOOKS_SETTINGS = (
470 HOOKS_SETTINGS = (
471 ('hooks', 'changegroup.repo_size'),
471 ('hooks', 'changegroup.repo_size'),
472 ('hooks', 'changegroup.push_logger'),
472 ('hooks', 'changegroup.push_logger'),
473 ('hooks', 'outgoing.pull_logger'),
473 ('hooks', 'outgoing.pull_logger'),
474 )
474 )
475 HG_SETTINGS = (
475 HG_SETTINGS = (
476 ('extensions', 'largefiles'),
476 ('extensions', 'largefiles'),
477 ('phases', 'publish'),
477 ('phases', 'publish'),
478 ('extensions', 'evolve'),
478 ('extensions', 'evolve'),
479 ('extensions', 'topic'),
479 ('extensions', 'topic'),
480 ('experimental', 'evolution'),
480 ('experimental', 'evolution'),
481 ('experimental', 'evolution.exchange'),
481 ('experimental', 'evolution.exchange'),
482 )
482 )
483 GIT_SETTINGS = (
483 GIT_SETTINGS = (
484 ('vcs_git_lfs', 'enabled'),
484 ('vcs_git_lfs', 'enabled'),
485 )
485 )
486 GLOBAL_HG_SETTINGS = (
486 GLOBAL_HG_SETTINGS = (
487 ('extensions', 'largefiles'),
487 ('extensions', 'largefiles'),
488 ('largefiles', 'usercache'),
488 ('largefiles', 'usercache'),
489 ('phases', 'publish'),
489 ('phases', 'publish'),
490 ('extensions', 'hgsubversion'),
490 ('extensions', 'hgsubversion'),
491 ('extensions', 'evolve'),
491 ('extensions', 'evolve'),
492 ('extensions', 'topic'),
492 ('extensions', 'topic'),
493 ('experimental', 'evolution'),
493 ('experimental', 'evolution'),
494 ('experimental', 'evolution.exchange'),
494 ('experimental', 'evolution.exchange'),
495 )
495 )
496
496
497 GLOBAL_GIT_SETTINGS = (
497 GLOBAL_GIT_SETTINGS = (
498 ('vcs_git_lfs', 'enabled'),
498 ('vcs_git_lfs', 'enabled'),
499 ('vcs_git_lfs', 'store_location')
499 ('vcs_git_lfs', 'store_location')
500 )
500 )
501
501
502 GLOBAL_SVN_SETTINGS = (
502 GLOBAL_SVN_SETTINGS = (
503 ('vcs_svn_proxy', 'http_requests_enabled'),
503 ('vcs_svn_proxy', 'http_requests_enabled'),
504 ('vcs_svn_proxy', 'http_server_url')
504 ('vcs_svn_proxy', 'http_server_url')
505 )
505 )
506
506
507 SVN_BRANCH_SECTION = 'vcs_svn_branch'
507 SVN_BRANCH_SECTION = 'vcs_svn_branch'
508 SVN_TAG_SECTION = 'vcs_svn_tag'
508 SVN_TAG_SECTION = 'vcs_svn_tag'
509 SSL_SETTING = ('web', 'push_ssl')
509 SSL_SETTING = ('web', 'push_ssl')
510 PATH_SETTING = ('paths', '/')
510 PATH_SETTING = ('paths', '/')
511
511
512 def __init__(self, sa=None, repo=None):
512 def __init__(self, sa=None, repo=None):
513 self.global_settings = SettingsModel(sa=sa)
513 self.global_settings = SettingsModel(sa=sa)
514 self.repo_settings = SettingsModel(sa=sa, repo=repo) if repo else None
514 self.repo_settings = SettingsModel(sa=sa, repo=repo) if repo else None
515 self._ui_settings = (
515 self._ui_settings = (
516 self.HG_SETTINGS + self.GIT_SETTINGS + self.HOOKS_SETTINGS)
516 self.HG_SETTINGS + self.GIT_SETTINGS + self.HOOKS_SETTINGS)
517 self._svn_sections = (self.SVN_BRANCH_SECTION, self.SVN_TAG_SECTION)
517 self._svn_sections = (self.SVN_BRANCH_SECTION, self.SVN_TAG_SECTION)
518
518
519 @property
519 @property
520 @assert_repo_settings
520 @assert_repo_settings
521 def inherit_global_settings(self):
521 def inherit_global_settings(self):
522 setting = self.repo_settings.get_setting_by_name(self.INHERIT_SETTINGS)
522 setting = self.repo_settings.get_setting_by_name(self.INHERIT_SETTINGS)
523 return setting.app_settings_value if setting else True
523 return setting.app_settings_value if setting else True
524
524
525 @inherit_global_settings.setter
525 @inherit_global_settings.setter
526 @assert_repo_settings
526 @assert_repo_settings
527 def inherit_global_settings(self, value):
527 def inherit_global_settings(self, value):
528 self.repo_settings.create_or_update_setting(
528 self.repo_settings.create_or_update_setting(
529 self.INHERIT_SETTINGS, value, type_='bool')
529 self.INHERIT_SETTINGS, value, type_='bool')
530
530
531 def get_global_svn_branch_patterns(self):
531 def get_global_svn_branch_patterns(self):
532 return self.global_settings.get_ui_by_section(self.SVN_BRANCH_SECTION)
532 return self.global_settings.get_ui_by_section(self.SVN_BRANCH_SECTION)
533
533
534 @assert_repo_settings
534 @assert_repo_settings
535 def get_repo_svn_branch_patterns(self):
535 def get_repo_svn_branch_patterns(self):
536 return self.repo_settings.get_ui_by_section(self.SVN_BRANCH_SECTION)
536 return self.repo_settings.get_ui_by_section(self.SVN_BRANCH_SECTION)
537
537
538 def get_global_svn_tag_patterns(self):
538 def get_global_svn_tag_patterns(self):
539 return self.global_settings.get_ui_by_section(self.SVN_TAG_SECTION)
539 return self.global_settings.get_ui_by_section(self.SVN_TAG_SECTION)
540
540
541 @assert_repo_settings
541 @assert_repo_settings
542 def get_repo_svn_tag_patterns(self):
542 def get_repo_svn_tag_patterns(self):
543 return self.repo_settings.get_ui_by_section(self.SVN_TAG_SECTION)
543 return self.repo_settings.get_ui_by_section(self.SVN_TAG_SECTION)
544
544
545 def get_global_settings(self):
545 def get_global_settings(self):
546 return self._collect_all_settings(global_=True)
546 return self._collect_all_settings(global_=True)
547
547
548 @assert_repo_settings
548 @assert_repo_settings
549 def get_repo_settings(self):
549 def get_repo_settings(self):
550 return self._collect_all_settings(global_=False)
550 return self._collect_all_settings(global_=False)
551
551
552 @assert_repo_settings
552 @assert_repo_settings
553 def get_repo_settings_inherited(self):
553 def get_repo_settings_inherited(self):
554 global_settings = self.get_global_settings()
554 global_settings = self.get_global_settings()
555 global_settings.update(self.get_repo_settings())
555 global_settings.update(self.get_repo_settings())
556 return global_settings
556 return global_settings
557
557
558 @assert_repo_settings
558 @assert_repo_settings
559 def create_or_update_repo_settings(
559 def create_or_update_repo_settings(
560 self, data, inherit_global_settings=False):
560 self, data, inherit_global_settings=False):
561 from rhodecode.model.scm import ScmModel
561 from rhodecode.model.scm import ScmModel
562
562
563 self.inherit_global_settings = inherit_global_settings
563 self.inherit_global_settings = inherit_global_settings
564
564
565 repo = self.repo_settings.get_repo()
565 repo = self.repo_settings.get_repo()
566 if not inherit_global_settings:
566 if not inherit_global_settings:
567 if repo.repo_type == 'svn':
567 if repo.repo_type == 'svn':
568 self.create_repo_svn_settings(data)
568 self.create_repo_svn_settings(data)
569 else:
569 else:
570 self.create_or_update_repo_hook_settings(data)
570 self.create_or_update_repo_hook_settings(data)
571 self.create_or_update_repo_pr_settings(data)
571 self.create_or_update_repo_pr_settings(data)
572
572
573 if repo.repo_type == 'hg':
573 if repo.repo_type == 'hg':
574 self.create_or_update_repo_hg_settings(data)
574 self.create_or_update_repo_hg_settings(data)
575
575
576 if repo.repo_type == 'git':
576 if repo.repo_type == 'git':
577 self.create_or_update_repo_git_settings(data)
577 self.create_or_update_repo_git_settings(data)
578
578
579 ScmModel().mark_for_invalidation(repo.repo_name, delete=True)
579 ScmModel().mark_for_invalidation(repo.repo_name, delete=True)
580
580
581 @assert_repo_settings
581 @assert_repo_settings
582 def create_or_update_repo_hook_settings(self, data):
582 def create_or_update_repo_hook_settings(self, data):
583 for section, key in self.HOOKS_SETTINGS:
583 for section, key in self.HOOKS_SETTINGS:
584 data_key = self._get_form_ui_key(section, key)
584 data_key = self._get_form_ui_key(section, key)
585 if data_key not in data:
585 if data_key not in data:
586 raise ValueError(
586 raise ValueError(
587 f'The given data does not contain {data_key} key')
587 f'The given data does not contain {data_key} key')
588
588
589 active = data.get(data_key)
589 active = data.get(data_key)
590 repo_setting = self.repo_settings.get_ui_by_section_and_key(
590 repo_setting = self.repo_settings.get_ui_by_section_and_key(
591 section, key)
591 section, key)
592 if not repo_setting:
592 if not repo_setting:
593 global_setting = self.global_settings.\
593 global_setting = self.global_settings.\
594 get_ui_by_section_and_key(section, key)
594 get_ui_by_section_and_key(section, key)
595 self.repo_settings.create_ui_section_value(
595 self.repo_settings.create_ui_section_value(
596 section, global_setting.ui_value, key=key, active=active)
596 section, global_setting.ui_value, key=key, active=active)
597 else:
597 else:
598 repo_setting.ui_active = active
598 repo_setting.ui_active = active
599 Session().add(repo_setting)
599 Session().add(repo_setting)
600
600
601 def update_global_hook_settings(self, data):
601 def update_global_hook_settings(self, data):
602 for section, key in self.HOOKS_SETTINGS:
602 for section, key in self.HOOKS_SETTINGS:
603 data_key = self._get_form_ui_key(section, key)
603 data_key = self._get_form_ui_key(section, key)
604 if data_key not in data:
604 if data_key not in data:
605 raise ValueError(
605 raise ValueError(
606 f'The given data does not contain {data_key} key')
606 f'The given data does not contain {data_key} key')
607 active = data.get(data_key)
607 active = data.get(data_key)
608 repo_setting = self.global_settings.get_ui_by_section_and_key(
608 repo_setting = self.global_settings.get_ui_by_section_and_key(
609 section, key)
609 section, key)
610 repo_setting.ui_active = active
610 repo_setting.ui_active = active
611 Session().add(repo_setting)
611 Session().add(repo_setting)
612
612
613 @assert_repo_settings
613 @assert_repo_settings
614 def create_or_update_repo_pr_settings(self, data):
614 def create_or_update_repo_pr_settings(self, data):
615 return self._create_or_update_general_settings(
615 return self._create_or_update_general_settings(
616 self.repo_settings, data)
616 self.repo_settings, data)
617
617
618 def create_or_update_global_pr_settings(self, data):
618 def create_or_update_global_pr_settings(self, data):
619 return self._create_or_update_general_settings(
619 return self._create_or_update_general_settings(
620 self.global_settings, data)
620 self.global_settings, data)
621
621
622 @assert_repo_settings
622 @assert_repo_settings
623 def create_repo_svn_settings(self, data):
623 def create_repo_svn_settings(self, data):
624 return self._create_svn_settings(self.repo_settings, data)
624 return self._create_svn_settings(self.repo_settings, data)
625
625
626 def _set_evolution(self, settings, is_enabled):
626 def _set_evolution(self, settings, is_enabled):
627 if is_enabled:
627 if is_enabled:
628 # if evolve is active set evolution=all
628 # if evolve is active set evolution=all
629
629
630 self._create_or_update_ui(
630 self._create_or_update_ui(
631 settings, *('experimental', 'evolution'), value='all',
631 settings, *('experimental', 'evolution'), value='all',
632 active=True)
632 active=True)
633 self._create_or_update_ui(
633 self._create_or_update_ui(
634 settings, *('experimental', 'evolution.exchange'), value='yes',
634 settings, *('experimental', 'evolution.exchange'), value='yes',
635 active=True)
635 active=True)
636 # if evolve is active set topics server support
636 # if evolve is active set topics server support
637 self._create_or_update_ui(
637 self._create_or_update_ui(
638 settings, *('extensions', 'topic'), value='',
638 settings, *('extensions', 'topic'), value='',
639 active=True)
639 active=True)
640
640
641 else:
641 else:
642 self._create_or_update_ui(
642 self._create_or_update_ui(
643 settings, *('experimental', 'evolution'), value='',
643 settings, *('experimental', 'evolution'), value='',
644 active=False)
644 active=False)
645 self._create_or_update_ui(
645 self._create_or_update_ui(
646 settings, *('experimental', 'evolution.exchange'), value='no',
646 settings, *('experimental', 'evolution.exchange'), value='no',
647 active=False)
647 active=False)
648 self._create_or_update_ui(
648 self._create_or_update_ui(
649 settings, *('extensions', 'topic'), value='',
649 settings, *('extensions', 'topic'), value='',
650 active=False)
650 active=False)
651
651
652 @assert_repo_settings
652 @assert_repo_settings
653 def create_or_update_repo_hg_settings(self, data):
653 def create_or_update_repo_hg_settings(self, data):
654 largefiles, phases, evolve = \
654 largefiles, phases, evolve = \
655 self.HG_SETTINGS[:3]
655 self.HG_SETTINGS[:3]
656 largefiles_key, phases_key, evolve_key = \
656 largefiles_key, phases_key, evolve_key = \
657 self._get_settings_keys(self.HG_SETTINGS[:3], data)
657 self._get_settings_keys(self.HG_SETTINGS[:3], data)
658
658
659 self._create_or_update_ui(
659 self._create_or_update_ui(
660 self.repo_settings, *largefiles, value='',
660 self.repo_settings, *largefiles, value='',
661 active=data[largefiles_key])
661 active=data[largefiles_key])
662 self._create_or_update_ui(
662 self._create_or_update_ui(
663 self.repo_settings, *evolve, value='',
663 self.repo_settings, *evolve, value='',
664 active=data[evolve_key])
664 active=data[evolve_key])
665 self._set_evolution(self.repo_settings, is_enabled=data[evolve_key])
665 self._set_evolution(self.repo_settings, is_enabled=data[evolve_key])
666
666
667 self._create_or_update_ui(
667 self._create_or_update_ui(
668 self.repo_settings, *phases, value=safe_str(data[phases_key]))
668 self.repo_settings, *phases, value=safe_str(data[phases_key]))
669
669
670 def create_or_update_global_hg_settings(self, data):
670 def create_or_update_global_hg_settings(self, data):
671 largefiles, largefiles_store, phases, hgsubversion, evolve \
671 largefiles, largefiles_store, phases, hgsubversion, evolve \
672 = self.GLOBAL_HG_SETTINGS[:5]
672 = self.GLOBAL_HG_SETTINGS[:5]
673 largefiles_key, largefiles_store_key, phases_key, subversion_key, evolve_key \
673 largefiles_key, largefiles_store_key, phases_key, subversion_key, evolve_key \
674 = self._get_settings_keys(self.GLOBAL_HG_SETTINGS[:5], data)
674 = self._get_settings_keys(self.GLOBAL_HG_SETTINGS[:5], data)
675
675
676 self._create_or_update_ui(
676 self._create_or_update_ui(
677 self.global_settings, *largefiles, value='',
677 self.global_settings, *largefiles, value='',
678 active=data[largefiles_key])
678 active=data[largefiles_key])
679 self._create_or_update_ui(
679 self._create_or_update_ui(
680 self.global_settings, *largefiles_store, value=data[largefiles_store_key])
680 self.global_settings, *largefiles_store, value=data[largefiles_store_key])
681 self._create_or_update_ui(
681 self._create_or_update_ui(
682 self.global_settings, *phases, value=safe_str(data[phases_key]))
682 self.global_settings, *phases, value=safe_str(data[phases_key]))
683 self._create_or_update_ui(
683 self._create_or_update_ui(
684 self.global_settings, *hgsubversion, active=data[subversion_key])
684 self.global_settings, *hgsubversion, active=data[subversion_key])
685 self._create_or_update_ui(
685 self._create_or_update_ui(
686 self.global_settings, *evolve, value='',
686 self.global_settings, *evolve, value='',
687 active=data[evolve_key])
687 active=data[evolve_key])
688 self._set_evolution(self.global_settings, is_enabled=data[evolve_key])
688 self._set_evolution(self.global_settings, is_enabled=data[evolve_key])
689
689
690 def create_or_update_repo_git_settings(self, data):
690 def create_or_update_repo_git_settings(self, data):
691 # NOTE(marcink): # comma makes unpack work properly
691 # NOTE(marcink): # comma makes unpack work properly
692 lfs_enabled, \
692 lfs_enabled, \
693 = self.GIT_SETTINGS
693 = self.GIT_SETTINGS
694
694
695 lfs_enabled_key, \
695 lfs_enabled_key, \
696 = self._get_settings_keys(self.GIT_SETTINGS, data)
696 = self._get_settings_keys(self.GIT_SETTINGS, data)
697
697
698 self._create_or_update_ui(
698 self._create_or_update_ui(
699 self.repo_settings, *lfs_enabled, value=data[lfs_enabled_key],
699 self.repo_settings, *lfs_enabled, value=data[lfs_enabled_key],
700 active=data[lfs_enabled_key])
700 active=data[lfs_enabled_key])
701
701
702 def create_or_update_global_git_settings(self, data):
702 def create_or_update_global_git_settings(self, data):
703 lfs_enabled, lfs_store_location \
703 lfs_enabled, lfs_store_location \
704 = self.GLOBAL_GIT_SETTINGS
704 = self.GLOBAL_GIT_SETTINGS
705 lfs_enabled_key, lfs_store_location_key \
705 lfs_enabled_key, lfs_store_location_key \
706 = self._get_settings_keys(self.GLOBAL_GIT_SETTINGS, data)
706 = self._get_settings_keys(self.GLOBAL_GIT_SETTINGS, data)
707
707
708 self._create_or_update_ui(
708 self._create_or_update_ui(
709 self.global_settings, *lfs_enabled, value=data[lfs_enabled_key],
709 self.global_settings, *lfs_enabled, value=data[lfs_enabled_key],
710 active=data[lfs_enabled_key])
710 active=data[lfs_enabled_key])
711 self._create_or_update_ui(
711 self._create_or_update_ui(
712 self.global_settings, *lfs_store_location,
712 self.global_settings, *lfs_store_location,
713 value=data[lfs_store_location_key])
713 value=data[lfs_store_location_key])
714
714
715 def create_or_update_global_svn_settings(self, data):
715 def create_or_update_global_svn_settings(self, data):
716 # branch/tags patterns
716 # branch/tags patterns
717 self._create_svn_settings(self.global_settings, data)
717 self._create_svn_settings(self.global_settings, data)
718
718
719 http_requests_enabled, http_server_url = self.GLOBAL_SVN_SETTINGS
719 http_requests_enabled, http_server_url = self.GLOBAL_SVN_SETTINGS
720 http_requests_enabled_key, http_server_url_key = self._get_settings_keys(
720 http_requests_enabled_key, http_server_url_key = self._get_settings_keys(
721 self.GLOBAL_SVN_SETTINGS, data)
721 self.GLOBAL_SVN_SETTINGS, data)
722
722
723 self._create_or_update_ui(
723 self._create_or_update_ui(
724 self.global_settings, *http_requests_enabled,
724 self.global_settings, *http_requests_enabled,
725 value=safe_str(data[http_requests_enabled_key]))
725 value=safe_str(data[http_requests_enabled_key]))
726 self._create_or_update_ui(
726 self._create_or_update_ui(
727 self.global_settings, *http_server_url,
727 self.global_settings, *http_server_url,
728 value=data[http_server_url_key])
728 value=data[http_server_url_key])
729
729
730 def update_global_ssl_setting(self, value):
730 def update_global_ssl_setting(self, value):
731 self._create_or_update_ui(
731 self._create_or_update_ui(
732 self.global_settings, *self.SSL_SETTING, value=value)
732 self.global_settings, *self.SSL_SETTING, value=value)
733
733
734 def update_global_path_setting(self, value):
734 def update_global_path_setting(self, value):
735 self._create_or_update_ui(
735 self._create_or_update_ui(
736 self.global_settings, *self.PATH_SETTING, value=value)
736 self.global_settings, *self.PATH_SETTING, value=value)
737
737
738 @assert_repo_settings
738 @assert_repo_settings
739 def delete_repo_svn_pattern(self, id_):
739 def delete_repo_svn_pattern(self, id_):
740 ui = self.repo_settings.UiDbModel.get(id_)
740 ui = self.repo_settings.UiDbModel.get(id_)
741 if ui and ui.repository.repo_name == self.repo_settings.repo:
741 if ui and ui.repository.repo_name == self.repo_settings.repo:
742 # only delete if it's the same repo as initialized settings
742 # only delete if it's the same repo as initialized settings
743 self.repo_settings.delete_ui(id_)
743 self.repo_settings.delete_ui(id_)
744 else:
744 else:
745 # raise error as if we wouldn't find this option
745 # raise error as if we wouldn't find this option
746 self.repo_settings.delete_ui(-1)
746 self.repo_settings.delete_ui(-1)
747
747
748 def delete_global_svn_pattern(self, id_):
748 def delete_global_svn_pattern(self, id_):
749 self.global_settings.delete_ui(id_)
749 self.global_settings.delete_ui(id_)
750
750
751 @assert_repo_settings
751 @assert_repo_settings
752 def get_repo_ui_settings(self, section=None, key=None):
752 def get_repo_ui_settings(self, section=None, key=None):
753 global_uis = self.global_settings.get_ui(section, key)
753 global_uis = self.global_settings.get_ui(section, key)
754 repo_uis = self.repo_settings.get_ui(section, key)
754 repo_uis = self.repo_settings.get_ui(section, key)
755
755
756 filtered_repo_uis = self._filter_ui_settings(repo_uis)
756 filtered_repo_uis = self._filter_ui_settings(repo_uis)
757 filtered_repo_uis_keys = [
757 filtered_repo_uis_keys = [
758 (s.section, s.key) for s in filtered_repo_uis]
758 (s.section, s.key) for s in filtered_repo_uis]
759
759
760 def _is_global_ui_filtered(ui):
760 def _is_global_ui_filtered(ui):
761 return (
761 return (
762 (ui.section, ui.key) in filtered_repo_uis_keys
762 (ui.section, ui.key) in filtered_repo_uis_keys
763 or ui.section in self._svn_sections)
763 or ui.section in self._svn_sections)
764
764
765 filtered_global_uis = [
765 filtered_global_uis = [
766 ui for ui in global_uis if not _is_global_ui_filtered(ui)]
766 ui for ui in global_uis if not _is_global_ui_filtered(ui)]
767
767
768 return filtered_global_uis + filtered_repo_uis
768 return filtered_global_uis + filtered_repo_uis
769
769
770 def get_global_ui_settings(self, section=None, key=None):
770 def get_global_ui_settings(self, section=None, key=None):
771 return self.global_settings.get_ui(section, key)
771 return self.global_settings.get_ui(section, key)
772
772
773 def get_ui_settings_as_config_obj(self, section=None, key=None):
773 def get_ui_settings_as_config_obj(self, section=None, key=None):
774 config = base.Config()
774 config = base.Config()
775
775
776 ui_settings = self.get_ui_settings(section=section, key=key)
776 ui_settings = self.get_ui_settings(section=section, key=key)
777
777
778 for entry in ui_settings:
778 for entry in ui_settings:
779 config.set(entry.section, entry.key, entry.value)
779 config.set(entry.section, entry.key, entry.value)
780
780
781 return config
781 return config
782
782
783 def get_ui_settings(self, section=None, key=None):
783 def get_ui_settings(self, section=None, key=None):
784 if not self.repo_settings or self.inherit_global_settings:
784 if not self.repo_settings or self.inherit_global_settings:
785 return self.get_global_ui_settings(section, key)
785 return self.get_global_ui_settings(section, key)
786 else:
786 else:
787 return self.get_repo_ui_settings(section, key)
787 return self.get_repo_ui_settings(section, key)
788
788
789 def get_svn_patterns(self, section=None):
789 def get_svn_patterns(self, section=None):
790 if not self.repo_settings:
790 if not self.repo_settings:
791 return self.get_global_ui_settings(section)
791 return self.get_global_ui_settings(section)
792 else:
792 else:
793 return self.get_repo_ui_settings(section)
793 return self.get_repo_ui_settings(section)
794
794
795 @assert_repo_settings
795 @assert_repo_settings
796 def get_repo_general_settings(self):
796 def get_repo_general_settings(self):
797 global_settings = self.global_settings.get_all_settings()
797 global_settings = self.global_settings.get_all_settings()
798 repo_settings = self.repo_settings.get_all_settings()
798 repo_settings = self.repo_settings.get_all_settings()
799 filtered_repo_settings = self._filter_general_settings(repo_settings)
799 filtered_repo_settings = self._filter_general_settings(repo_settings)
800 global_settings.update(filtered_repo_settings)
800 global_settings.update(filtered_repo_settings)
801 return global_settings
801 return global_settings
802
802
803 def get_global_general_settings(self):
803 def get_global_general_settings(self):
804 return self.global_settings.get_all_settings()
804 return self.global_settings.get_all_settings()
805
805
806 def get_general_settings(self):
806 def get_general_settings(self):
807 if not self.repo_settings or self.inherit_global_settings:
807 if not self.repo_settings or self.inherit_global_settings:
808 return self.get_global_general_settings()
808 return self.get_global_general_settings()
809 else:
809 else:
810 return self.get_repo_general_settings()
810 return self.get_repo_general_settings()
811
811
812 def get_repos_location(self):
812 def get_repos_location(self):
813 return self.global_settings.get_ui_by_key('/').ui_value
813 return self.global_settings.get_ui_by_key('/').ui_value
814
814
815 def _filter_ui_settings(self, settings):
815 def _filter_ui_settings(self, settings):
816 filtered_settings = [
816 filtered_settings = [
817 s for s in settings if self._should_keep_setting(s)]
817 s for s in settings if self._should_keep_setting(s)]
818 return filtered_settings
818 return filtered_settings
819
819
820 def _should_keep_setting(self, setting):
820 def _should_keep_setting(self, setting):
821 keep = (
821 keep = (
822 (setting.section, setting.key) in self._ui_settings or
822 (setting.section, setting.key) in self._ui_settings or
823 setting.section in self._svn_sections)
823 setting.section in self._svn_sections)
824 return keep
824 return keep
825
825
826 def _filter_general_settings(self, settings):
826 def _filter_general_settings(self, settings):
827 keys = [f'rhodecode_{key}' for key in self.GENERAL_SETTINGS]
827 keys = [f'rhodecode_{key}' for key in self.GENERAL_SETTINGS]
828 return {
828 return {
829 k: settings[k]
829 k: settings[k]
830 for k in settings if k in keys}
830 for k in settings if k in keys}
831
831
832 def _collect_all_settings(self, global_=False):
832 def _collect_all_settings(self, global_=False):
833 settings = self.global_settings if global_ else self.repo_settings
833 settings = self.global_settings if global_ else self.repo_settings
834 result = {}
834 result = {}
835
835
836 for section, key in self._ui_settings:
836 for section, key in self._ui_settings:
837 ui = settings.get_ui_by_section_and_key(section, key)
837 ui = settings.get_ui_by_section_and_key(section, key)
838 result_key = self._get_form_ui_key(section, key)
838 result_key = self._get_form_ui_key(section, key)
839
839
840 if ui:
840 if ui:
841 if section in ('hooks', 'extensions'):
841 if section in ('hooks', 'extensions'):
842 result[result_key] = ui.ui_active
842 result[result_key] = ui.ui_active
843 elif result_key in ['vcs_git_lfs_enabled']:
843 elif result_key in ['vcs_git_lfs_enabled']:
844 result[result_key] = ui.ui_active
844 result[result_key] = ui.ui_active
845 else:
845 else:
846 result[result_key] = ui.ui_value
846 result[result_key] = ui.ui_value
847
847
848 for name in self.GENERAL_SETTINGS:
848 for name in self.GENERAL_SETTINGS:
849 setting = settings.get_setting_by_name(name)
849 setting = settings.get_setting_by_name(name)
850 if setting:
850 if setting:
851 result_key = f'rhodecode_{name}'
851 result_key = f'rhodecode_{name}'
852 result[result_key] = setting.app_settings_value
852 result[result_key] = setting.app_settings_value
853
853
854 return result
854 return result
855
855
856 def _get_form_ui_key(self, section, key):
856 def _get_form_ui_key(self, section, key):
857 return '{section}_{key}'.format(
857 return '{section}_{key}'.format(
858 section=section, key=key.replace('.', '_'))
858 section=section, key=key.replace('.', '_'))
859
859
860 def _create_or_update_ui(
860 def _create_or_update_ui(
861 self, settings, section, key, value=None, active=None):
861 self, settings, section, key, value=None, active=None):
862 ui = settings.get_ui_by_section_and_key(section, key)
862 ui = settings.get_ui_by_section_and_key(section, key)
863 if not ui:
863 if not ui:
864 active = True if active is None else active
864 active = True if active is None else active
865 settings.create_ui_section_value(
865 settings.create_ui_section_value(
866 section, value, key=key, active=active)
866 section, value, key=key, active=active)
867 else:
867 else:
868 if active is not None:
868 if active is not None:
869 ui.ui_active = active
869 ui.ui_active = active
870 if value is not None:
870 if value is not None:
871 ui.ui_value = value
871 ui.ui_value = value
872 Session().add(ui)
872 Session().add(ui)
873
873
874 def _create_svn_settings(self, settings, data):
874 def _create_svn_settings(self, settings, data):
875 svn_settings = {
875 svn_settings = {
876 'new_svn_branch': self.SVN_BRANCH_SECTION,
876 'new_svn_branch': self.SVN_BRANCH_SECTION,
877 'new_svn_tag': self.SVN_TAG_SECTION
877 'new_svn_tag': self.SVN_TAG_SECTION
878 }
878 }
879 for key in svn_settings:
879 for key in svn_settings:
880 if data.get(key):
880 if data.get(key):
881 settings.create_ui_section_value(svn_settings[key], data[key])
881 settings.create_ui_section_value(svn_settings[key], data[key])
882
882
883 def _create_or_update_general_settings(self, settings, data):
883 def _create_or_update_general_settings(self, settings, data):
884 for name in self.GENERAL_SETTINGS:
884 for name in self.GENERAL_SETTINGS:
885 data_key = f'rhodecode_{name}'
885 data_key = f'rhodecode_{name}'
886 if data_key not in data:
886 if data_key not in data:
887 raise ValueError(
887 raise ValueError(
888 f'The given data does not contain {data_key} key')
888 f'The given data does not contain {data_key} key')
889 setting = settings.create_or_update_setting(
889 setting = settings.create_or_update_setting(
890 name, data[data_key], 'bool')
890 name, data[data_key], 'bool')
891 Session().add(setting)
891 Session().add(setting)
892
892
893 def _get_settings_keys(self, settings, data):
893 def _get_settings_keys(self, settings, data):
894 data_keys = [self._get_form_ui_key(*s) for s in settings]
894 data_keys = [self._get_form_ui_key(*s) for s in settings]
895 for data_key in data_keys:
895 for data_key in data_keys:
896 if data_key not in data:
896 if data_key not in data:
897 raise ValueError(
897 raise ValueError(
898 f'The given data does not contain {data_key} key')
898 f'The given data does not contain {data_key} key')
899 return data_keys
899 return data_keys
900
900
901 def create_largeobjects_dirs_if_needed(self, repo_store_path):
901 def create_largeobjects_dirs_if_needed(self, repo_store_path):
902 """
902 """
903 This is subscribed to the `pyramid.events.ApplicationCreated` event. It
903 This is subscribed to the `pyramid.events.ApplicationCreated` event. It
904 does a repository scan if enabled in the settings.
904 does a repository scan if enabled in the settings.
905 """
905 """
906
906
907 from rhodecode.lib.vcs.backends.hg import largefiles_store
907 from rhodecode.lib.vcs.backends.hg import largefiles_store
908 from rhodecode.lib.vcs.backends.git import lfs_store
908 from rhodecode.lib.vcs.backends.git import lfs_store
909
909
910 paths = [
910 paths = [
911 largefiles_store(repo_store_path),
911 largefiles_store(repo_store_path),
912 lfs_store(repo_store_path)]
912 lfs_store(repo_store_path)]
913
913
914 for path in paths:
914 for path in paths:
915 if os.path.isdir(path):
915 if os.path.isdir(path):
916 continue
916 continue
917 if os.path.isfile(path):
917 if os.path.isfile(path):
918 continue
918 continue
919 # not a file nor dir, we try to create it
919 # not a file nor dir, we try to create it
920 try:
920 try:
921 os.makedirs(path)
921 os.makedirs(path)
922 except Exception:
922 except Exception:
923 log.warning('Failed to create largefiles dir:%s', path)
923 log.warning('Failed to create largefiles dir:%s', path)
General Comments 0
You need to be logged in to leave comments. Login now