##// END OF EJS Templates
pyramid: stop relying on pylons translation object in helpers....
marcink -
r1914:59359988 default
parent child Browse files
Show More
@@ -1,2040 +1,2026 b''
1 1 # -*- coding: utf-8 -*-
2 2
3 3 # Copyright (C) 2010-2017 RhodeCode GmbH
4 4 #
5 5 # This program is free software: you can redistribute it and/or modify
6 6 # it under the terms of the GNU Affero General Public License, version 3
7 7 # (only), as published by the Free Software Foundation.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU Affero General Public License
15 15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16 16 #
17 17 # This program is dual-licensed. If you wish to learn more about the
18 18 # RhodeCode Enterprise Edition, including its added features, Support services,
19 19 # and proprietary license terms, please see https://rhodecode.com/licenses/
20 20
21 21 """
22 22 Helper functions
23 23
24 24 Consists of functions to typically be used within templates, but also
25 25 available to Controllers. This module is available to both as 'h'.
26 26 """
27 27
28 28 import random
29 29 import hashlib
30 30 import StringIO
31 31 import urllib
32 32 import math
33 33 import logging
34 34 import re
35 35 import urlparse
36 36 import time
37 37 import string
38 38 import hashlib
39 39 from collections import OrderedDict
40 40
41 41 import pygments
42 42 import itertools
43 43 import fnmatch
44 44
45 45 from datetime import datetime
46 46 from functools import partial
47 47 from pygments.formatters.html import HtmlFormatter
48 48 from pygments import highlight as code_highlight
49 49 from pygments.lexers import (
50 50 get_lexer_by_name, get_lexer_for_filename, get_lexer_for_mimetype)
51 from pylons.i18n.translation import _, ungettext
51
52 52 from pyramid.threadlocal import get_current_request
53 53
54 54 from webhelpers.html import literal, HTML, escape
55 55 from webhelpers.html.tools import *
56 56 from webhelpers.html.builder import make_tag
57 57 from webhelpers.html.tags import auto_discovery_link, checkbox, css_classes, \
58 58 end_form, file, form as wh_form, hidden, image, javascript_link, link_to, \
59 59 link_to_if, link_to_unless, ol, required_legend, select, stylesheet_link, \
60 60 submit, text, password, textarea, title, ul, xml_declaration, radio
61 61 from webhelpers.html.tools import auto_link, button_to, highlight, \
62 62 js_obfuscate, mail_to, strip_links, strip_tags, tag_re
63 63 from webhelpers.pylonslib import Flash as _Flash
64 64 from webhelpers.text import chop_at, collapse, convert_accented_entities, \
65 65 convert_misc_entities, lchop, plural, rchop, remove_formatting, \
66 66 replace_whitespace, urlify, truncate, wrap_paragraphs
67 67 from webhelpers.date import time_ago_in_words
68 68 from webhelpers.paginate import Page as _Page
69 69 from webhelpers.html.tags import _set_input_attrs, _set_id_attr, \
70 70 convert_boolean_attrs, NotGiven, _make_safe_id_component
71 71 from webhelpers2.number import format_byte_size
72 72
73 73 from rhodecode.lib.action_parser import action_parser
74 74 from rhodecode.lib.ext_json import json
75 75 from rhodecode.lib.utils import repo_name_slug, get_custom_lexer
76 76 from rhodecode.lib.utils2 import str2bool, safe_unicode, safe_str, \
77 77 get_commit_safe, datetime_to_time, time_to_datetime, time_to_utcdatetime, \
78 78 AttributeDict, safe_int, md5, md5_safe
79 79 from rhodecode.lib.markup_renderer import MarkupRenderer, relative_links
80 80 from rhodecode.lib.vcs.exceptions import CommitDoesNotExistError
81 81 from rhodecode.lib.vcs.backends.base import BaseChangeset, EmptyCommit
82 82 from rhodecode.config.conf import DATE_FORMAT, DATETIME_FORMAT
83 83 from rhodecode.model.changeset_status import ChangesetStatusModel
84 84 from rhodecode.model.db import Permission, User, Repository
85 85 from rhodecode.model.repo_group import RepoGroupModel
86 86 from rhodecode.model.settings import IssueTrackerSettingsModel
87 87
88 88 log = logging.getLogger(__name__)
89 89
90 90
91 91 DEFAULT_USER = User.DEFAULT_USER
92 92 DEFAULT_USER_EMAIL = User.DEFAULT_USER_EMAIL
93 93
94 94
95 95 def url(*args, **kw):
96 96 from pylons import url as pylons_url
97 97 return pylons_url(*args, **kw)
98 98
99 99
100 100 def pylons_url_current(*args, **kw):
101 101 """
102 102 This function overrides pylons.url.current() which returns the current
103 103 path so that it will also work from a pyramid only context. This
104 104 should be removed once port to pyramid is complete.
105 105 """
106 106 from pylons import url as pylons_url
107 107 if not args and not kw:
108 108 request = get_current_request()
109 109 return request.path
110 110 return pylons_url.current(*args, **kw)
111 111
112 112 url.current = pylons_url_current
113 113
114 114
115 115 def url_replace(**qargs):
116 116 """ Returns the current request url while replacing query string args """
117 117
118 118 request = get_current_request()
119 119 new_args = request.GET.mixed()
120 120 new_args.update(qargs)
121 121 return url('', **new_args)
122 122
123 123
124 124 def asset(path, ver=None, **kwargs):
125 125 """
126 126 Helper to generate a static asset file path for rhodecode assets
127 127
128 128 eg. h.asset('images/image.png', ver='3923')
129 129
130 130 :param path: path of asset
131 131 :param ver: optional version query param to append as ?ver=
132 132 """
133 133 request = get_current_request()
134 134 query = {}
135 135 query.update(kwargs)
136 136 if ver:
137 137 query = {'ver': ver}
138 138 return request.static_path(
139 139 'rhodecode:public/{}'.format(path), _query=query)
140 140
141 141
142 142 default_html_escape_table = {
143 143 ord('&'): u'&amp;',
144 144 ord('<'): u'&lt;',
145 145 ord('>'): u'&gt;',
146 146 ord('"'): u'&quot;',
147 147 ord("'"): u'&#39;',
148 148 }
149 149
150 150
151 151 def html_escape(text, html_escape_table=default_html_escape_table):
152 152 """Produce entities within text."""
153 153 return text.translate(html_escape_table)
154 154
155 155
156 156 def chop_at_smart(s, sub, inclusive=False, suffix_if_chopped=None):
157 157 """
158 158 Truncate string ``s`` at the first occurrence of ``sub``.
159 159
160 160 If ``inclusive`` is true, truncate just after ``sub`` rather than at it.
161 161 """
162 162 suffix_if_chopped = suffix_if_chopped or ''
163 163 pos = s.find(sub)
164 164 if pos == -1:
165 165 return s
166 166
167 167 if inclusive:
168 168 pos += len(sub)
169 169
170 170 chopped = s[:pos]
171 171 left = s[pos:].strip()
172 172
173 173 if left and suffix_if_chopped:
174 174 chopped += suffix_if_chopped
175 175
176 176 return chopped
177 177
178 178
179 179 def shorter(text, size=20):
180 180 postfix = '...'
181 181 if len(text) > size:
182 182 return text[:size - len(postfix)] + postfix
183 183 return text
184 184
185 185
186 186 def _reset(name, value=None, id=NotGiven, type="reset", **attrs):
187 187 """
188 188 Reset button
189 189 """
190 190 _set_input_attrs(attrs, type, name, value)
191 191 _set_id_attr(attrs, id, name)
192 192 convert_boolean_attrs(attrs, ["disabled"])
193 193 return HTML.input(**attrs)
194 194
195 195 reset = _reset
196 196 safeid = _make_safe_id_component
197 197
198 198
199 199 def branding(name, length=40):
200 200 return truncate(name, length, indicator="")
201 201
202 202
203 203 def FID(raw_id, path):
204 204 """
205 205 Creates a unique ID for filenode based on it's hash of path and commit
206 206 it's safe to use in urls
207 207
208 208 :param raw_id:
209 209 :param path:
210 210 """
211 211
212 212 return 'c-%s-%s' % (short_id(raw_id), md5_safe(path)[:12])
213 213
214 214
215 215 class _GetError(object):
216 216 """Get error from form_errors, and represent it as span wrapped error
217 217 message
218 218
219 219 :param field_name: field to fetch errors for
220 220 :param form_errors: form errors dict
221 221 """
222 222
223 223 def __call__(self, field_name, form_errors):
224 224 tmpl = """<span class="error_msg">%s</span>"""
225 225 if form_errors and field_name in form_errors:
226 226 return literal(tmpl % form_errors.get(field_name))
227 227
228 228 get_error = _GetError()
229 229
230 230
231 231 class _ToolTip(object):
232 232
233 233 def __call__(self, tooltip_title, trim_at=50):
234 234 """
235 235 Special function just to wrap our text into nice formatted
236 236 autowrapped text
237 237
238 238 :param tooltip_title:
239 239 """
240 240 tooltip_title = escape(tooltip_title)
241 241 tooltip_title = tooltip_title.replace('<', '&lt;').replace('>', '&gt;')
242 242 return tooltip_title
243 243 tooltip = _ToolTip()
244 244
245 245
246 246 def files_breadcrumbs(repo_name, commit_id, file_path):
247 247 if isinstance(file_path, str):
248 248 file_path = safe_unicode(file_path)
249 249
250 250 # TODO: johbo: Is this always a url like path, or is this operating
251 251 # system dependent?
252 252 path_segments = file_path.split('/')
253 253
254 254 repo_name_html = escape(repo_name)
255 255 if len(path_segments) == 1 and path_segments[0] == '':
256 256 url_segments = [repo_name_html]
257 257 else:
258 258 url_segments = [
259 259 link_to(
260 260 repo_name_html,
261 261 url('files_home',
262 262 repo_name=repo_name,
263 263 revision=commit_id,
264 264 f_path=''),
265 265 class_='pjax-link')]
266 266
267 267 last_cnt = len(path_segments) - 1
268 268 for cnt, segment in enumerate(path_segments):
269 269 if not segment:
270 270 continue
271 271 segment_html = escape(segment)
272 272
273 273 if cnt != last_cnt:
274 274 url_segments.append(
275 275 link_to(
276 276 segment_html,
277 277 url('files_home',
278 278 repo_name=repo_name,
279 279 revision=commit_id,
280 280 f_path='/'.join(path_segments[:cnt + 1])),
281 281 class_='pjax-link'))
282 282 else:
283 283 url_segments.append(segment_html)
284 284
285 285 return literal('/'.join(url_segments))
286 286
287 287
288 288 class CodeHtmlFormatter(HtmlFormatter):
289 289 """
290 290 My code Html Formatter for source codes
291 291 """
292 292
293 293 def wrap(self, source, outfile):
294 294 return self._wrap_div(self._wrap_pre(self._wrap_code(source)))
295 295
296 296 def _wrap_code(self, source):
297 297 for cnt, it in enumerate(source):
298 298 i, t = it
299 299 t = '<div id="L%s">%s</div>' % (cnt + 1, t)
300 300 yield i, t
301 301
302 302 def _wrap_tablelinenos(self, inner):
303 303 dummyoutfile = StringIO.StringIO()
304 304 lncount = 0
305 305 for t, line in inner:
306 306 if t:
307 307 lncount += 1
308 308 dummyoutfile.write(line)
309 309
310 310 fl = self.linenostart
311 311 mw = len(str(lncount + fl - 1))
312 312 sp = self.linenospecial
313 313 st = self.linenostep
314 314 la = self.lineanchors
315 315 aln = self.anchorlinenos
316 316 nocls = self.noclasses
317 317 if sp:
318 318 lines = []
319 319
320 320 for i in range(fl, fl + lncount):
321 321 if i % st == 0:
322 322 if i % sp == 0:
323 323 if aln:
324 324 lines.append('<a href="#%s%d" class="special">%*d</a>' %
325 325 (la, i, mw, i))
326 326 else:
327 327 lines.append('<span class="special">%*d</span>' % (mw, i))
328 328 else:
329 329 if aln:
330 330 lines.append('<a href="#%s%d">%*d</a>' % (la, i, mw, i))
331 331 else:
332 332 lines.append('%*d' % (mw, i))
333 333 else:
334 334 lines.append('')
335 335 ls = '\n'.join(lines)
336 336 else:
337 337 lines = []
338 338 for i in range(fl, fl + lncount):
339 339 if i % st == 0:
340 340 if aln:
341 341 lines.append('<a href="#%s%d">%*d</a>' % (la, i, mw, i))
342 342 else:
343 343 lines.append('%*d' % (mw, i))
344 344 else:
345 345 lines.append('')
346 346 ls = '\n'.join(lines)
347 347
348 348 # in case you wonder about the seemingly redundant <div> here: since the
349 349 # content in the other cell also is wrapped in a div, some browsers in
350 350 # some configurations seem to mess up the formatting...
351 351 if nocls:
352 352 yield 0, ('<table class="%stable">' % self.cssclass +
353 353 '<tr><td><div class="linenodiv" '
354 354 'style="background-color: #f0f0f0; padding-right: 10px">'
355 355 '<pre style="line-height: 125%">' +
356 356 ls + '</pre></div></td><td id="hlcode" class="code">')
357 357 else:
358 358 yield 0, ('<table class="%stable">' % self.cssclass +
359 359 '<tr><td class="linenos"><div class="linenodiv"><pre>' +
360 360 ls + '</pre></div></td><td id="hlcode" class="code">')
361 361 yield 0, dummyoutfile.getvalue()
362 362 yield 0, '</td></tr></table>'
363 363
364 364
365 365 class SearchContentCodeHtmlFormatter(CodeHtmlFormatter):
366 366 def __init__(self, **kw):
367 367 # only show these line numbers if set
368 368 self.only_lines = kw.pop('only_line_numbers', [])
369 369 self.query_terms = kw.pop('query_terms', [])
370 370 self.max_lines = kw.pop('max_lines', 5)
371 371 self.line_context = kw.pop('line_context', 3)
372 372 self.url = kw.pop('url', None)
373 373
374 374 super(CodeHtmlFormatter, self).__init__(**kw)
375 375
376 376 def _wrap_code(self, source):
377 377 for cnt, it in enumerate(source):
378 378 i, t = it
379 379 t = '<pre>%s</pre>' % t
380 380 yield i, t
381 381
382 382 def _wrap_tablelinenos(self, inner):
383 383 yield 0, '<table class="code-highlight %stable">' % self.cssclass
384 384
385 385 last_shown_line_number = 0
386 386 current_line_number = 1
387 387
388 388 for t, line in inner:
389 389 if not t:
390 390 yield t, line
391 391 continue
392 392
393 393 if current_line_number in self.only_lines:
394 394 if last_shown_line_number + 1 != current_line_number:
395 395 yield 0, '<tr>'
396 396 yield 0, '<td class="line">...</td>'
397 397 yield 0, '<td id="hlcode" class="code"></td>'
398 398 yield 0, '</tr>'
399 399
400 400 yield 0, '<tr>'
401 401 if self.url:
402 402 yield 0, '<td class="line"><a href="%s#L%i">%i</a></td>' % (
403 403 self.url, current_line_number, current_line_number)
404 404 else:
405 405 yield 0, '<td class="line"><a href="">%i</a></td>' % (
406 406 current_line_number)
407 407 yield 0, '<td id="hlcode" class="code">' + line + '</td>'
408 408 yield 0, '</tr>'
409 409
410 410 last_shown_line_number = current_line_number
411 411
412 412 current_line_number += 1
413 413
414 414
415 415 yield 0, '</table>'
416 416
417 417
418 418 def extract_phrases(text_query):
419 419 """
420 420 Extracts phrases from search term string making sure phrases
421 421 contained in double quotes are kept together - and discarding empty values
422 422 or fully whitespace values eg.
423 423
424 424 'some text "a phrase" more' => ['some', 'text', 'a phrase', 'more']
425 425
426 426 """
427 427
428 428 in_phrase = False
429 429 buf = ''
430 430 phrases = []
431 431 for char in text_query:
432 432 if in_phrase:
433 433 if char == '"': # end phrase
434 434 phrases.append(buf)
435 435 buf = ''
436 436 in_phrase = False
437 437 continue
438 438 else:
439 439 buf += char
440 440 continue
441 441 else:
442 442 if char == '"': # start phrase
443 443 in_phrase = True
444 444 phrases.append(buf)
445 445 buf = ''
446 446 continue
447 447 elif char == ' ':
448 448 phrases.append(buf)
449 449 buf = ''
450 450 continue
451 451 else:
452 452 buf += char
453 453
454 454 phrases.append(buf)
455 455 phrases = [phrase.strip() for phrase in phrases if phrase.strip()]
456 456 return phrases
457 457
458 458
459 459 def get_matching_offsets(text, phrases):
460 460 """
461 461 Returns a list of string offsets in `text` that the list of `terms` match
462 462
463 463 >>> get_matching_offsets('some text here', ['some', 'here'])
464 464 [(0, 4), (10, 14)]
465 465
466 466 """
467 467 offsets = []
468 468 for phrase in phrases:
469 469 for match in re.finditer(phrase, text):
470 470 offsets.append((match.start(), match.end()))
471 471
472 472 return offsets
473 473
474 474
475 475 def normalize_text_for_matching(x):
476 476 """
477 477 Replaces all non alnum characters to spaces and lower cases the string,
478 478 useful for comparing two text strings without punctuation
479 479 """
480 480 return re.sub(r'[^\w]', ' ', x.lower())
481 481
482 482
483 483 def get_matching_line_offsets(lines, terms):
484 484 """ Return a set of `lines` indices (starting from 1) matching a
485 485 text search query, along with `context` lines above/below matching lines
486 486
487 487 :param lines: list of strings representing lines
488 488 :param terms: search term string to match in lines eg. 'some text'
489 489 :param context: number of lines above/below a matching line to add to result
490 490 :param max_lines: cut off for lines of interest
491 491 eg.
492 492
493 493 text = '''
494 494 words words words
495 495 words words words
496 496 some text some
497 497 words words words
498 498 words words words
499 499 text here what
500 500 '''
501 501 get_matching_line_offsets(text, 'text', context=1)
502 502 {3: [(5, 9)], 6: [(0, 4)]]
503 503
504 504 """
505 505 matching_lines = {}
506 506 phrases = [normalize_text_for_matching(phrase)
507 507 for phrase in extract_phrases(terms)]
508 508
509 509 for line_index, line in enumerate(lines, start=1):
510 510 match_offsets = get_matching_offsets(
511 511 normalize_text_for_matching(line), phrases)
512 512 if match_offsets:
513 513 matching_lines[line_index] = match_offsets
514 514
515 515 return matching_lines
516 516
517 517
518 518 def hsv_to_rgb(h, s, v):
519 519 """ Convert hsv color values to rgb """
520 520
521 521 if s == 0.0:
522 522 return v, v, v
523 523 i = int(h * 6.0) # XXX assume int() truncates!
524 524 f = (h * 6.0) - i
525 525 p = v * (1.0 - s)
526 526 q = v * (1.0 - s * f)
527 527 t = v * (1.0 - s * (1.0 - f))
528 528 i = i % 6
529 529 if i == 0:
530 530 return v, t, p
531 531 if i == 1:
532 532 return q, v, p
533 533 if i == 2:
534 534 return p, v, t
535 535 if i == 3:
536 536 return p, q, v
537 537 if i == 4:
538 538 return t, p, v
539 539 if i == 5:
540 540 return v, p, q
541 541
542 542
543 543 def unique_color_generator(n=10000, saturation=0.10, lightness=0.95):
544 544 """
545 545 Generator for getting n of evenly distributed colors using
546 546 hsv color and golden ratio. It always return same order of colors
547 547
548 548 :param n: number of colors to generate
549 549 :param saturation: saturation of returned colors
550 550 :param lightness: lightness of returned colors
551 551 :returns: RGB tuple
552 552 """
553 553
554 554 golden_ratio = 0.618033988749895
555 555 h = 0.22717784590367374
556 556
557 557 for _ in xrange(n):
558 558 h += golden_ratio
559 559 h %= 1
560 560 HSV_tuple = [h, saturation, lightness]
561 561 RGB_tuple = hsv_to_rgb(*HSV_tuple)
562 562 yield map(lambda x: str(int(x * 256)), RGB_tuple)
563 563
564 564
565 565 def color_hasher(n=10000, saturation=0.10, lightness=0.95):
566 566 """
567 567 Returns a function which when called with an argument returns a unique
568 568 color for that argument, eg.
569 569
570 570 :param n: number of colors to generate
571 571 :param saturation: saturation of returned colors
572 572 :param lightness: lightness of returned colors
573 573 :returns: css RGB string
574 574
575 575 >>> color_hash = color_hasher()
576 576 >>> color_hash('hello')
577 577 'rgb(34, 12, 59)'
578 578 >>> color_hash('hello')
579 579 'rgb(34, 12, 59)'
580 580 >>> color_hash('other')
581 581 'rgb(90, 224, 159)'
582 582 """
583 583
584 584 color_dict = {}
585 585 cgenerator = unique_color_generator(
586 586 saturation=saturation, lightness=lightness)
587 587
588 588 def get_color_string(thing):
589 589 if thing in color_dict:
590 590 col = color_dict[thing]
591 591 else:
592 592 col = color_dict[thing] = cgenerator.next()
593 593 return "rgb(%s)" % (', '.join(col))
594 594
595 595 return get_color_string
596 596
597 597
598 598 def get_lexer_safe(mimetype=None, filepath=None):
599 599 """
600 600 Tries to return a relevant pygments lexer using mimetype/filepath name,
601 601 defaulting to plain text if none could be found
602 602 """
603 603 lexer = None
604 604 try:
605 605 if mimetype:
606 606 lexer = get_lexer_for_mimetype(mimetype)
607 607 if not lexer:
608 608 lexer = get_lexer_for_filename(filepath)
609 609 except pygments.util.ClassNotFound:
610 610 pass
611 611
612 612 if not lexer:
613 613 lexer = get_lexer_by_name('text')
614 614
615 615 return lexer
616 616
617 617
618 618 def get_lexer_for_filenode(filenode):
619 619 lexer = get_custom_lexer(filenode.extension) or filenode.lexer
620 620 return lexer
621 621
622 622
623 623 def pygmentize(filenode, **kwargs):
624 624 """
625 625 pygmentize function using pygments
626 626
627 627 :param filenode:
628 628 """
629 629 lexer = get_lexer_for_filenode(filenode)
630 630 return literal(code_highlight(filenode.content, lexer,
631 631 CodeHtmlFormatter(**kwargs)))
632 632
633 633
634 634 def is_following_repo(repo_name, user_id):
635 635 from rhodecode.model.scm import ScmModel
636 636 return ScmModel().is_following_repo(repo_name, user_id)
637 637
638 638
639 639 class _Message(object):
640 640 """A message returned by ``Flash.pop_messages()``.
641 641
642 642 Converting the message to a string returns the message text. Instances
643 643 also have the following attributes:
644 644
645 645 * ``message``: the message text.
646 646 * ``category``: the category specified when the message was created.
647 647 """
648 648
649 649 def __init__(self, category, message):
650 650 self.category = category
651 651 self.message = message
652 652
653 653 def __str__(self):
654 654 return self.message
655 655
656 656 __unicode__ = __str__
657 657
658 658 def __html__(self):
659 659 return escape(safe_unicode(self.message))
660 660
661 661
662 662 class Flash(_Flash):
663 663
664 664 def pop_messages(self, request=None):
665 665 """Return all accumulated messages and delete them from the session.
666 666
667 667 The return value is a list of ``Message`` objects.
668 668 """
669 669 messages = []
670 670
671 671 if request:
672 672 session = request.session
673 673 else:
674 674 from pylons import session
675 675
676 676 # Pop the 'old' pylons flash messages. They are tuples of the form
677 677 # (category, message)
678 678 for cat, msg in session.pop(self.session_key, []):
679 679 messages.append(_Message(cat, msg))
680 680
681 681 # Pop the 'new' pyramid flash messages for each category as list
682 682 # of strings.
683 683 for cat in self.categories:
684 684 for msg in session.pop_flash(queue=cat):
685 685 messages.append(_Message(cat, msg))
686 686 # Map messages from the default queue to the 'notice' category.
687 687 for msg in session.pop_flash():
688 688 messages.append(_Message('notice', msg))
689 689
690 690 session.save()
691 691 return messages
692 692
693 693 def json_alerts(self):
694 694 payloads = []
695 695 messages = flash.pop_messages()
696 696 if messages:
697 697 for message in messages:
698 698 subdata = {}
699 699 if hasattr(message.message, 'rsplit'):
700 700 flash_data = message.message.rsplit('|DELIM|', 1)
701 701 org_message = flash_data[0]
702 702 if len(flash_data) > 1:
703 703 subdata = json.loads(flash_data[1])
704 704 else:
705 705 org_message = message.message
706 706 payloads.append({
707 707 'message': {
708 708 'message': u'{}'.format(org_message),
709 709 'level': message.category,
710 710 'force': True,
711 711 'subdata': subdata
712 712 }
713 713 })
714 714 return json.dumps(payloads)
715 715
716 716 flash = Flash()
717 717
718 718 #==============================================================================
719 719 # SCM FILTERS available via h.
720 720 #==============================================================================
721 721 from rhodecode.lib.vcs.utils import author_name, author_email
722 722 from rhodecode.lib.utils2 import credentials_filter, age as _age
723 723 from rhodecode.model.db import User, ChangesetStatus
724 724
725 725 age = _age
726 726 capitalize = lambda x: x.capitalize()
727 727 email = author_email
728 728 short_id = lambda x: x[:12]
729 729 hide_credentials = lambda x: ''.join(credentials_filter(x))
730 730
731 731
732 732 def age_component(datetime_iso, value=None, time_is_local=False):
733 733 title = value or format_date(datetime_iso)
734 734 tzinfo = '+00:00'
735 735
736 736 # detect if we have a timezone info, otherwise, add it
737 737 if isinstance(datetime_iso, datetime) and not datetime_iso.tzinfo:
738 738 if time_is_local:
739 739 tzinfo = time.strftime("+%H:%M",
740 740 time.gmtime(
741 741 (datetime.now() - datetime.utcnow()).seconds + 1
742 742 )
743 743 )
744 744
745 745 return literal(
746 746 '<time class="timeago tooltip" '
747 747 'title="{1}{2}" datetime="{0}{2}">{1}</time>'.format(
748 748 datetime_iso, title, tzinfo))
749 749
750 750
751 751 def _shorten_commit_id(commit_id):
752 752 from rhodecode import CONFIG
753 753 def_len = safe_int(CONFIG.get('rhodecode_show_sha_length', 12))
754 754 return commit_id[:def_len]
755 755
756 756
757 757 def show_id(commit):
758 758 """
759 759 Configurable function that shows ID
760 760 by default it's r123:fffeeefffeee
761 761
762 762 :param commit: commit instance
763 763 """
764 764 from rhodecode import CONFIG
765 765 show_idx = str2bool(CONFIG.get('rhodecode_show_revision_number', True))
766 766
767 767 raw_id = _shorten_commit_id(commit.raw_id)
768 768 if show_idx:
769 769 return 'r%s:%s' % (commit.idx, raw_id)
770 770 else:
771 771 return '%s' % (raw_id, )
772 772
773 773
774 774 def format_date(date):
775 775 """
776 776 use a standardized formatting for dates used in RhodeCode
777 777
778 778 :param date: date/datetime object
779 779 :return: formatted date
780 780 """
781 781
782 782 if date:
783 783 _fmt = "%a, %d %b %Y %H:%M:%S"
784 784 return safe_unicode(date.strftime(_fmt))
785 785
786 786 return u""
787 787
788 788
789 789 class _RepoChecker(object):
790 790
791 791 def __init__(self, backend_alias):
792 792 self._backend_alias = backend_alias
793 793
794 794 def __call__(self, repository):
795 795 if hasattr(repository, 'alias'):
796 796 _type = repository.alias
797 797 elif hasattr(repository, 'repo_type'):
798 798 _type = repository.repo_type
799 799 else:
800 800 _type = repository
801 801 return _type == self._backend_alias
802 802
803 803 is_git = _RepoChecker('git')
804 804 is_hg = _RepoChecker('hg')
805 805 is_svn = _RepoChecker('svn')
806 806
807 807
808 808 def get_repo_type_by_name(repo_name):
809 809 repo = Repository.get_by_repo_name(repo_name)
810 810 return repo.repo_type
811 811
812 812
813 813 def is_svn_without_proxy(repository):
814 814 if is_svn(repository):
815 815 from rhodecode.model.settings import VcsSettingsModel
816 816 conf = VcsSettingsModel().get_ui_settings_as_config_obj()
817 817 return not str2bool(conf.get('vcs_svn_proxy', 'http_requests_enabled'))
818 818 return False
819 819
820 820
821 821 def discover_user(author):
822 822 """
823 823 Tries to discover RhodeCode User based on the autho string. Author string
824 824 is typically `FirstName LastName <email@address.com>`
825 825 """
826 826
827 827 # if author is already an instance use it for extraction
828 828 if isinstance(author, User):
829 829 return author
830 830
831 831 # Valid email in the attribute passed, see if they're in the system
832 832 _email = author_email(author)
833 833 if _email != '':
834 834 user = User.get_by_email(_email, case_insensitive=True, cache=True)
835 835 if user is not None:
836 836 return user
837 837
838 838 # Maybe it's a username, we try to extract it and fetch by username ?
839 839 _author = author_name(author)
840 840 user = User.get_by_username(_author, case_insensitive=True, cache=True)
841 841 if user is not None:
842 842 return user
843 843
844 844 return None
845 845
846 846
847 847 def email_or_none(author):
848 848 # extract email from the commit string
849 849 _email = author_email(author)
850 850
851 851 # If we have an email, use it, otherwise
852 852 # see if it contains a username we can get an email from
853 853 if _email != '':
854 854 return _email
855 855 else:
856 856 user = User.get_by_username(
857 857 author_name(author), case_insensitive=True, cache=True)
858 858
859 859 if user is not None:
860 860 return user.email
861 861
862 862 # No valid email, not a valid user in the system, none!
863 863 return None
864 864
865 865
866 866 def link_to_user(author, length=0, **kwargs):
867 867 user = discover_user(author)
868 868 # user can be None, but if we have it already it means we can re-use it
869 869 # in the person() function, so we save 1 intensive-query
870 870 if user:
871 871 author = user
872 872
873 873 display_person = person(author, 'username_or_name_or_email')
874 874 if length:
875 875 display_person = shorter(display_person, length)
876 876
877 877 if user:
878 878 return link_to(
879 879 escape(display_person),
880 880 route_path('user_profile', username=user.username),
881 881 **kwargs)
882 882 else:
883 883 return escape(display_person)
884 884
885 885
886 886 def person(author, show_attr="username_and_name"):
887 887 user = discover_user(author)
888 888 if user:
889 889 return getattr(user, show_attr)
890 890 else:
891 891 _author = author_name(author)
892 892 _email = email(author)
893 893 return _author or _email
894 894
895 895
896 896 def author_string(email):
897 897 if email:
898 898 user = User.get_by_email(email, case_insensitive=True, cache=True)
899 899 if user:
900 900 if user.first_name or user.last_name:
901 901 return '%s %s &lt;%s&gt;' % (
902 902 user.first_name, user.last_name, email)
903 903 else:
904 904 return email
905 905 else:
906 906 return email
907 907 else:
908 908 return None
909 909
910 910
911 911 def person_by_id(id_, show_attr="username_and_name"):
912 912 # attr to return from fetched user
913 913 person_getter = lambda usr: getattr(usr, show_attr)
914 914
915 915 #maybe it's an ID ?
916 916 if str(id_).isdigit() or isinstance(id_, int):
917 917 id_ = int(id_)
918 918 user = User.get(id_)
919 919 if user is not None:
920 920 return person_getter(user)
921 921 return id_
922 922
923 923
924 924 def gravatar_with_user(author, show_disabled=False):
925 925 from rhodecode.lib.utils import PartialRenderer
926 926 _render = PartialRenderer('base/base.mako')
927 927 return _render('gravatar_with_user', author, show_disabled=show_disabled)
928 928
929 929
930 930 def desc_stylize(value):
931 931 """
932 932 converts tags from value into html equivalent
933 933
934 934 :param value:
935 935 """
936 936 if not value:
937 937 return ''
938 938
939 939 value = re.sub(r'\[see\ \=\>\ *([a-zA-Z0-9\/\=\?\&\ \:\/\.\-]*)\]',
940 940 '<div class="metatag" tag="see">see =&gt; \\1 </div>', value)
941 941 value = re.sub(r'\[license\ \=\>\ *([a-zA-Z0-9\/\=\?\&\ \:\/\.\-]*)\]',
942 942 '<div class="metatag" tag="license"><a href="http:\/\/www.opensource.org/licenses/\\1">\\1</a></div>', value)
943 943 value = re.sub(r'\[(requires|recommends|conflicts|base)\ \=\>\ *([a-zA-Z0-9\-\/]*)\]',
944 944 '<div class="metatag" tag="\\1">\\1 =&gt; <a href="/\\2">\\2</a></div>', value)
945 945 value = re.sub(r'\[(lang|language)\ \=\>\ *([a-zA-Z\-\/\#\+]*)\]',
946 946 '<div class="metatag" tag="lang">\\2</div>', value)
947 947 value = re.sub(r'\[([a-z]+)\]',
948 948 '<div class="metatag" tag="\\1">\\1</div>', value)
949 949
950 950 return value
951 951
952 952
953 953 def escaped_stylize(value):
954 954 """
955 955 converts tags from value into html equivalent, but escaping its value first
956 956 """
957 957 if not value:
958 958 return ''
959 959
960 960 # Using default webhelper escape method, but has to force it as a
961 961 # plain unicode instead of a markup tag to be used in regex expressions
962 962 value = unicode(escape(safe_unicode(value)))
963 963
964 964 value = re.sub(r'\[see\ \=\&gt;\ *([a-zA-Z0-9\/\=\?\&amp;\ \:\/\.\-]*)\]',
965 965 '<div class="metatag" tag="see">see =&gt; \\1 </div>', value)
966 966 value = re.sub(r'\[license\ \=\&gt;\ *([a-zA-Z0-9\/\=\?\&amp;\ \:\/\.\-]*)\]',
967 967 '<div class="metatag" tag="license"><a href="http:\/\/www.opensource.org/licenses/\\1">\\1</a></div>', value)
968 968 value = re.sub(r'\[(requires|recommends|conflicts|base)\ \=\&gt;\ *([a-zA-Z0-9\-\/]*)\]',
969 969 '<div class="metatag" tag="\\1">\\1 =&gt; <a href="/\\2">\\2</a></div>', value)
970 970 value = re.sub(r'\[(lang|language)\ \=\&gt;\ *([a-zA-Z\-\/\#\+]*)\]',
971 971 '<div class="metatag" tag="lang">\\2</div>', value)
972 972 value = re.sub(r'\[([a-z]+)\]',
973 973 '<div class="metatag" tag="\\1">\\1</div>', value)
974 974
975 975 return value
976 976
977 977
978 978 def bool2icon(value):
979 979 """
980 980 Returns boolean value of a given value, represented as html element with
981 981 classes that will represent icons
982 982
983 983 :param value: given value to convert to html node
984 984 """
985 985
986 986 if value: # does bool conversion
987 987 return HTML.tag('i', class_="icon-true")
988 988 else: # not true as bool
989 989 return HTML.tag('i', class_="icon-false")
990 990
991 991
992 992 #==============================================================================
993 993 # PERMS
994 994 #==============================================================================
995 995 from rhodecode.lib.auth import HasPermissionAny, HasPermissionAll, \
996 996 HasRepoPermissionAny, HasRepoPermissionAll, HasRepoGroupPermissionAll, \
997 997 HasRepoGroupPermissionAny, HasRepoPermissionAnyApi, get_csrf_token, \
998 998 csrf_token_key
999 999
1000 1000
1001 1001 #==============================================================================
1002 1002 # GRAVATAR URL
1003 1003 #==============================================================================
1004 1004 class InitialsGravatar(object):
1005 1005 def __init__(self, email_address, first_name, last_name, size=30,
1006 1006 background=None, text_color='#fff'):
1007 1007 self.size = size
1008 1008 self.first_name = first_name
1009 1009 self.last_name = last_name
1010 1010 self.email_address = email_address
1011 1011 self.background = background or self.str2color(email_address)
1012 1012 self.text_color = text_color
1013 1013
1014 1014 def get_color_bank(self):
1015 1015 """
1016 1016 returns a predefined list of colors that gravatars can use.
1017 1017 Those are randomized distinct colors that guarantee readability and
1018 1018 uniqueness.
1019 1019
1020 1020 generated with: http://phrogz.net/css/distinct-colors.html
1021 1021 """
1022 1022 return [
1023 1023 '#bf3030', '#a67f53', '#00ff00', '#5989b3', '#392040', '#d90000',
1024 1024 '#402910', '#204020', '#79baf2', '#a700b3', '#bf6060', '#7f5320',
1025 1025 '#008000', '#003059', '#ee00ff', '#ff0000', '#8c4b00', '#007300',
1026 1026 '#005fb3', '#de73e6', '#ff4040', '#ffaa00', '#3df255', '#203140',
1027 1027 '#47004d', '#591616', '#664400', '#59b365', '#0d2133', '#83008c',
1028 1028 '#592d2d', '#bf9f60', '#73e682', '#1d3f73', '#73006b', '#402020',
1029 1029 '#b2862d', '#397341', '#597db3', '#e600d6', '#a60000', '#736039',
1030 1030 '#00b318', '#79aaf2', '#330d30', '#ff8080', '#403010', '#16591f',
1031 1031 '#002459', '#8c4688', '#e50000', '#ffbf40', '#00732e', '#102340',
1032 1032 '#bf60ac', '#8c4646', '#cc8800', '#00a642', '#1d3473', '#b32d98',
1033 1033 '#660e00', '#ffd580', '#80ffb2', '#7391e6', '#733967', '#d97b6c',
1034 1034 '#8c5e00', '#59b389', '#3967e6', '#590047', '#73281d', '#665200',
1035 1035 '#00e67a', '#2d50b3', '#8c2377', '#734139', '#b2982d', '#16593a',
1036 1036 '#001859', '#ff00aa', '#a65e53', '#ffcc00', '#0d3321', '#2d3959',
1037 1037 '#731d56', '#401610', '#4c3d00', '#468c6c', '#002ca6', '#d936a3',
1038 1038 '#d94c36', '#403920', '#36d9a3', '#0d1733', '#592d4a', '#993626',
1039 1039 '#cca300', '#00734d', '#46598c', '#8c005e', '#7f1100', '#8c7000',
1040 1040 '#00a66f', '#7382e6', '#b32d74', '#d9896c', '#ffe680', '#1d7362',
1041 1041 '#364cd9', '#73003d', '#d93a00', '#998a4d', '#59b3a1', '#5965b3',
1042 1042 '#e5007a', '#73341d', '#665f00', '#00b38f', '#0018b3', '#59163a',
1043 1043 '#b2502d', '#bfb960', '#00ffcc', '#23318c', '#a6537f', '#734939',
1044 1044 '#b2a700', '#104036', '#3d3df2', '#402031', '#e56739', '#736f39',
1045 1045 '#79f2ea', '#000059', '#401029', '#4c1400', '#ffee00', '#005953',
1046 1046 '#101040', '#990052', '#402820', '#403d10', '#00ffee', '#0000d9',
1047 1047 '#ff80c4', '#a66953', '#eeff00', '#00ccbe', '#8080ff', '#e673a1',
1048 1048 '#a62c00', '#474d00', '#1a3331', '#46468c', '#733950', '#662900',
1049 1049 '#858c23', '#238c85', '#0f0073', '#b20047', '#d9986c', '#becc00',
1050 1050 '#396f73', '#281d73', '#ff0066', '#ff6600', '#dee673', '#59adb3',
1051 1051 '#6559b3', '#590024', '#b2622d', '#98b32d', '#36ced9', '#332d59',
1052 1052 '#40001a', '#733f1d', '#526600', '#005359', '#242040', '#bf6079',
1053 1053 '#735039', '#cef23d', '#007780', '#5630bf', '#66001b', '#b24700',
1054 1054 '#acbf60', '#1d6273', '#25008c', '#731d34', '#a67453', '#50592d',
1055 1055 '#00ccff', '#6600ff', '#ff0044', '#4c1f00', '#8a994d', '#79daf2',
1056 1056 '#a173e6', '#d93662', '#402310', '#aaff00', '#2d98b3', '#8c40ff',
1057 1057 '#592d39', '#ff8c40', '#354020', '#103640', '#1a0040', '#331a20',
1058 1058 '#331400', '#334d00', '#1d5673', '#583973', '#7f0022', '#4c3626',
1059 1059 '#88cc00', '#36a3d9', '#3d0073', '#d9364c', '#33241a', '#698c23',
1060 1060 '#5995b3', '#300059', '#e57382', '#7f3300', '#366600', '#00aaff',
1061 1061 '#3a1659', '#733941', '#663600', '#74b32d', '#003c59', '#7f53a6',
1062 1062 '#73000f', '#ff8800', '#baf279', '#79caf2', '#291040', '#a6293a',
1063 1063 '#b2742d', '#587339', '#0077b3', '#632699', '#400009', '#d9a66c',
1064 1064 '#294010', '#2d4a59', '#aa00ff', '#4c131b', '#b25f00', '#5ce600',
1065 1065 '#267399', '#a336d9', '#990014', '#664e33', '#86bf60', '#0088ff',
1066 1066 '#7700b3', '#593a16', '#073300', '#1d4b73', '#ac60bf', '#e59539',
1067 1067 '#4f8c46', '#368dd9', '#5c0073'
1068 1068 ]
1069 1069
1070 1070 def rgb_to_hex_color(self, rgb_tuple):
1071 1071 """
1072 1072 Converts an rgb_tuple passed to an hex color.
1073 1073
1074 1074 :param rgb_tuple: tuple with 3 ints represents rgb color space
1075 1075 """
1076 1076 return '#' + ("".join(map(chr, rgb_tuple)).encode('hex'))
1077 1077
1078 1078 def email_to_int_list(self, email_str):
1079 1079 """
1080 1080 Get every byte of the hex digest value of email and turn it to integer.
1081 1081 It's going to be always between 0-255
1082 1082 """
1083 1083 digest = md5_safe(email_str.lower())
1084 1084 return [int(digest[i * 2:i * 2 + 2], 16) for i in range(16)]
1085 1085
1086 1086 def pick_color_bank_index(self, email_str, color_bank):
1087 1087 return self.email_to_int_list(email_str)[0] % len(color_bank)
1088 1088
1089 1089 def str2color(self, email_str):
1090 1090 """
1091 1091 Tries to map in a stable algorithm an email to color
1092 1092
1093 1093 :param email_str:
1094 1094 """
1095 1095 color_bank = self.get_color_bank()
1096 1096 # pick position (module it's length so we always find it in the
1097 1097 # bank even if it's smaller than 256 values
1098 1098 pos = self.pick_color_bank_index(email_str, color_bank)
1099 1099 return color_bank[pos]
1100 1100
1101 1101 def normalize_email(self, email_address):
1102 1102 import unicodedata
1103 1103 # default host used to fill in the fake/missing email
1104 1104 default_host = u'localhost'
1105 1105
1106 1106 if not email_address:
1107 1107 email_address = u'%s@%s' % (User.DEFAULT_USER, default_host)
1108 1108
1109 1109 email_address = safe_unicode(email_address)
1110 1110
1111 1111 if u'@' not in email_address:
1112 1112 email_address = u'%s@%s' % (email_address, default_host)
1113 1113
1114 1114 if email_address.endswith(u'@'):
1115 1115 email_address = u'%s%s' % (email_address, default_host)
1116 1116
1117 1117 email_address = unicodedata.normalize('NFKD', email_address)\
1118 1118 .encode('ascii', 'ignore')
1119 1119 return email_address
1120 1120
1121 1121 def get_initials(self):
1122 1122 """
1123 1123 Returns 2 letter initials calculated based on the input.
1124 1124 The algorithm picks first given email address, and takes first letter
1125 1125 of part before @, and then the first letter of server name. In case
1126 1126 the part before @ is in a format of `somestring.somestring2` it replaces
1127 1127 the server letter with first letter of somestring2
1128 1128
1129 1129 In case function was initialized with both first and lastname, this
1130 1130 overrides the extraction from email by first letter of the first and
1131 1131 last name. We add special logic to that functionality, In case Full name
1132 1132 is compound, like Guido Von Rossum, we use last part of the last name
1133 1133 (Von Rossum) picking `R`.
1134 1134
1135 1135 Function also normalizes the non-ascii characters to they ascii
1136 1136 representation, eg Δ„ => A
1137 1137 """
1138 1138 import unicodedata
1139 1139 # replace non-ascii to ascii
1140 1140 first_name = unicodedata.normalize(
1141 1141 'NFKD', safe_unicode(self.first_name)).encode('ascii', 'ignore')
1142 1142 last_name = unicodedata.normalize(
1143 1143 'NFKD', safe_unicode(self.last_name)).encode('ascii', 'ignore')
1144 1144
1145 1145 # do NFKD encoding, and also make sure email has proper format
1146 1146 email_address = self.normalize_email(self.email_address)
1147 1147
1148 1148 # first push the email initials
1149 1149 prefix, server = email_address.split('@', 1)
1150 1150
1151 1151 # check if prefix is maybe a 'first_name.last_name' syntax
1152 1152 _dot_split = prefix.rsplit('.', 1)
1153 1153 if len(_dot_split) == 2:
1154 1154 initials = [_dot_split[0][0], _dot_split[1][0]]
1155 1155 else:
1156 1156 initials = [prefix[0], server[0]]
1157 1157
1158 1158 # then try to replace either first_name or last_name
1159 1159 fn_letter = (first_name or " ")[0].strip()
1160 1160 ln_letter = (last_name.split(' ', 1)[-1] or " ")[0].strip()
1161 1161
1162 1162 if fn_letter:
1163 1163 initials[0] = fn_letter
1164 1164
1165 1165 if ln_letter:
1166 1166 initials[1] = ln_letter
1167 1167
1168 1168 return ''.join(initials).upper()
1169 1169
1170 1170 def get_img_data_by_type(self, font_family, img_type):
1171 1171 default_user = """
1172 1172 <svg xmlns="http://www.w3.org/2000/svg"
1173 1173 version="1.1" x="0px" y="0px" width="{size}" height="{size}"
1174 1174 viewBox="-15 -10 439.165 429.164"
1175 1175
1176 1176 xml:space="preserve"
1177 1177 style="background:{background};" >
1178 1178
1179 1179 <path d="M204.583,216.671c50.664,0,91.74-48.075,
1180 1180 91.74-107.378c0-82.237-41.074-107.377-91.74-107.377
1181 1181 c-50.668,0-91.74,25.14-91.74,107.377C112.844,
1182 1182 168.596,153.916,216.671,
1183 1183 204.583,216.671z" fill="{text_color}"/>
1184 1184 <path d="M407.164,374.717L360.88,
1185 1185 270.454c-2.117-4.771-5.836-8.728-10.465-11.138l-71.83-37.392
1186 1186 c-1.584-0.823-3.502-0.663-4.926,0.415c-20.316,
1187 1187 15.366-44.203,23.488-69.076,23.488c-24.877,
1188 1188 0-48.762-8.122-69.078-23.488
1189 1189 c-1.428-1.078-3.346-1.238-4.93-0.415L58.75,
1190 1190 259.316c-4.631,2.41-8.346,6.365-10.465,11.138L2.001,374.717
1191 1191 c-3.191,7.188-2.537,15.412,1.75,22.005c4.285,
1192 1192 6.592,11.537,10.526,19.4,10.526h362.861c7.863,0,15.117-3.936,
1193 1193 19.402-10.527 C409.699,390.129,
1194 1194 410.355,381.902,407.164,374.717z" fill="{text_color}"/>
1195 1195 </svg>""".format(
1196 1196 size=self.size,
1197 1197 background='#979797', # @grey4
1198 1198 text_color=self.text_color,
1199 1199 font_family=font_family)
1200 1200
1201 1201 return {
1202 1202 "default_user": default_user
1203 1203 }[img_type]
1204 1204
1205 1205 def get_img_data(self, svg_type=None):
1206 1206 """
1207 1207 generates the svg metadata for image
1208 1208 """
1209 1209
1210 1210 font_family = ','.join([
1211 1211 'proximanovaregular',
1212 1212 'Proxima Nova Regular',
1213 1213 'Proxima Nova',
1214 1214 'Arial',
1215 1215 'Lucida Grande',
1216 1216 'sans-serif'
1217 1217 ])
1218 1218 if svg_type:
1219 1219 return self.get_img_data_by_type(font_family, svg_type)
1220 1220
1221 1221 initials = self.get_initials()
1222 1222 img_data = """
1223 1223 <svg xmlns="http://www.w3.org/2000/svg" pointer-events="none"
1224 1224 width="{size}" height="{size}"
1225 1225 style="width: 100%; height: 100%; background-color: {background}"
1226 1226 viewBox="0 0 {size} {size}">
1227 1227 <text text-anchor="middle" y="50%" x="50%" dy="0.35em"
1228 1228 pointer-events="auto" fill="{text_color}"
1229 1229 font-family="{font_family}"
1230 1230 style="font-weight: 400; font-size: {f_size}px;">{text}
1231 1231 </text>
1232 1232 </svg>""".format(
1233 1233 size=self.size,
1234 1234 f_size=self.size/1.85, # scale the text inside the box nicely
1235 1235 background=self.background,
1236 1236 text_color=self.text_color,
1237 1237 text=initials.upper(),
1238 1238 font_family=font_family)
1239 1239
1240 1240 return img_data
1241 1241
1242 1242 def generate_svg(self, svg_type=None):
1243 1243 img_data = self.get_img_data(svg_type)
1244 1244 return "data:image/svg+xml;base64,%s" % img_data.encode('base64')
1245 1245
1246 1246
1247 1247 def initials_gravatar(email_address, first_name, last_name, size=30):
1248 1248 svg_type = None
1249 1249 if email_address == User.DEFAULT_USER_EMAIL:
1250 1250 svg_type = 'default_user'
1251 1251 klass = InitialsGravatar(email_address, first_name, last_name, size)
1252 1252 return klass.generate_svg(svg_type=svg_type)
1253 1253
1254 1254
1255 1255 def gravatar_url(email_address, size=30, request=None):
1256 1256 request = get_current_request()
1257 1257 if request and hasattr(request, 'call_context'):
1258 1258 _use_gravatar = request.call_context.visual.use_gravatar
1259 1259 _gravatar_url = request.call_context.visual.gravatar_url
1260 1260 else:
1261 1261 # doh, we need to re-import those to mock it later
1262 1262 from pylons import tmpl_context as c
1263 1263
1264 1264 _use_gravatar = c.visual.use_gravatar
1265 1265 _gravatar_url = c.visual.gravatar_url
1266 1266
1267 1267 _gravatar_url = _gravatar_url or User.DEFAULT_GRAVATAR_URL
1268 1268
1269 1269 email_address = email_address or User.DEFAULT_USER_EMAIL
1270 1270 if isinstance(email_address, unicode):
1271 1271 # hashlib crashes on unicode items
1272 1272 email_address = safe_str(email_address)
1273 1273
1274 1274 # empty email or default user
1275 1275 if not email_address or email_address == User.DEFAULT_USER_EMAIL:
1276 1276 return initials_gravatar(User.DEFAULT_USER_EMAIL, '', '', size=size)
1277 1277
1278 1278 if _use_gravatar:
1279 1279 # TODO: Disuse pyramid thread locals. Think about another solution to
1280 1280 # get the host and schema here.
1281 1281 request = get_current_request()
1282 1282 tmpl = safe_str(_gravatar_url)
1283 1283 tmpl = tmpl.replace('{email}', email_address)\
1284 1284 .replace('{md5email}', md5_safe(email_address.lower())) \
1285 1285 .replace('{netloc}', request.host)\
1286 1286 .replace('{scheme}', request.scheme)\
1287 1287 .replace('{size}', safe_str(size))
1288 1288 return tmpl
1289 1289 else:
1290 1290 return initials_gravatar(email_address, '', '', size=size)
1291 1291
1292 1292
1293 1293 class Page(_Page):
1294 1294 """
1295 1295 Custom pager to match rendering style with paginator
1296 1296 """
1297 1297
1298 1298 def _get_pos(self, cur_page, max_page, items):
1299 1299 edge = (items / 2) + 1
1300 1300 if (cur_page <= edge):
1301 1301 radius = max(items / 2, items - cur_page)
1302 1302 elif (max_page - cur_page) < edge:
1303 1303 radius = (items - 1) - (max_page - cur_page)
1304 1304 else:
1305 1305 radius = items / 2
1306 1306
1307 1307 left = max(1, (cur_page - (radius)))
1308 1308 right = min(max_page, cur_page + (radius))
1309 1309 return left, cur_page, right
1310 1310
1311 1311 def _range(self, regexp_match):
1312 1312 """
1313 1313 Return range of linked pages (e.g. '1 2 [3] 4 5 6 7 8').
1314 1314
1315 1315 Arguments:
1316 1316
1317 1317 regexp_match
1318 1318 A "re" (regular expressions) match object containing the
1319 1319 radius of linked pages around the current page in
1320 1320 regexp_match.group(1) as a string
1321 1321
1322 1322 This function is supposed to be called as a callable in
1323 1323 re.sub.
1324 1324
1325 1325 """
1326 1326 radius = int(regexp_match.group(1))
1327 1327
1328 1328 # Compute the first and last page number within the radius
1329 1329 # e.g. '1 .. 5 6 [7] 8 9 .. 12'
1330 1330 # -> leftmost_page = 5
1331 1331 # -> rightmost_page = 9
1332 1332 leftmost_page, _cur, rightmost_page = self._get_pos(self.page,
1333 1333 self.last_page,
1334 1334 (radius * 2) + 1)
1335 1335 nav_items = []
1336 1336
1337 1337 # Create a link to the first page (unless we are on the first page
1338 1338 # or there would be no need to insert '..' spacers)
1339 1339 if self.page != self.first_page and self.first_page < leftmost_page:
1340 1340 nav_items.append(self._pagerlink(self.first_page, self.first_page))
1341 1341
1342 1342 # Insert dots if there are pages between the first page
1343 1343 # and the currently displayed page range
1344 1344 if leftmost_page - self.first_page > 1:
1345 1345 # Wrap in a SPAN tag if nolink_attr is set
1346 1346 text = '..'
1347 1347 if self.dotdot_attr:
1348 1348 text = HTML.span(c=text, **self.dotdot_attr)
1349 1349 nav_items.append(text)
1350 1350
1351 1351 for thispage in xrange(leftmost_page, rightmost_page + 1):
1352 1352 # Hilight the current page number and do not use a link
1353 1353 if thispage == self.page:
1354 1354 text = '%s' % (thispage,)
1355 1355 # Wrap in a SPAN tag if nolink_attr is set
1356 1356 if self.curpage_attr:
1357 1357 text = HTML.span(c=text, **self.curpage_attr)
1358 1358 nav_items.append(text)
1359 1359 # Otherwise create just a link to that page
1360 1360 else:
1361 1361 text = '%s' % (thispage,)
1362 1362 nav_items.append(self._pagerlink(thispage, text))
1363 1363
1364 1364 # Insert dots if there are pages between the displayed
1365 1365 # page numbers and the end of the page range
1366 1366 if self.last_page - rightmost_page > 1:
1367 1367 text = '..'
1368 1368 # Wrap in a SPAN tag if nolink_attr is set
1369 1369 if self.dotdot_attr:
1370 1370 text = HTML.span(c=text, **self.dotdot_attr)
1371 1371 nav_items.append(text)
1372 1372
1373 1373 # Create a link to the very last page (unless we are on the last
1374 1374 # page or there would be no need to insert '..' spacers)
1375 1375 if self.page != self.last_page and rightmost_page < self.last_page:
1376 1376 nav_items.append(self._pagerlink(self.last_page, self.last_page))
1377 1377
1378 1378 ## prerender links
1379 1379 #_page_link = url.current()
1380 1380 #nav_items.append(literal('<link rel="prerender" href="%s?page=%s">' % (_page_link, str(int(self.page)+1))))
1381 1381 #nav_items.append(literal('<link rel="prefetch" href="%s?page=%s">' % (_page_link, str(int(self.page)+1))))
1382 1382 return self.separator.join(nav_items)
1383 1383
1384 1384 def pager(self, format='~2~', page_param='page', partial_param='partial',
1385 1385 show_if_single_page=False, separator=' ', onclick=None,
1386 1386 symbol_first='<<', symbol_last='>>',
1387 1387 symbol_previous='<', symbol_next='>',
1388 1388 link_attr={'class': 'pager_link', 'rel': 'prerender'},
1389 1389 curpage_attr={'class': 'pager_curpage'},
1390 1390 dotdot_attr={'class': 'pager_dotdot'}, **kwargs):
1391 1391
1392 1392 self.curpage_attr = curpage_attr
1393 1393 self.separator = separator
1394 1394 self.pager_kwargs = kwargs
1395 1395 self.page_param = page_param
1396 1396 self.partial_param = partial_param
1397 1397 self.onclick = onclick
1398 1398 self.link_attr = link_attr
1399 1399 self.dotdot_attr = dotdot_attr
1400 1400
1401 1401 # Don't show navigator if there is no more than one page
1402 1402 if self.page_count == 0 or (self.page_count == 1 and not show_if_single_page):
1403 1403 return ''
1404 1404
1405 1405 from string import Template
1406 1406 # Replace ~...~ in token format by range of pages
1407 1407 result = re.sub(r'~(\d+)~', self._range, format)
1408 1408
1409 1409 # Interpolate '%' variables
1410 1410 result = Template(result).safe_substitute({
1411 1411 'first_page': self.first_page,
1412 1412 'last_page': self.last_page,
1413 1413 'page': self.page,
1414 1414 'page_count': self.page_count,
1415 1415 'items_per_page': self.items_per_page,
1416 1416 'first_item': self.first_item,
1417 1417 'last_item': self.last_item,
1418 1418 'item_count': self.item_count,
1419 1419 'link_first': self.page > self.first_page and \
1420 1420 self._pagerlink(self.first_page, symbol_first) or '',
1421 1421 'link_last': self.page < self.last_page and \
1422 1422 self._pagerlink(self.last_page, symbol_last) or '',
1423 1423 'link_previous': self.previous_page and \
1424 1424 self._pagerlink(self.previous_page, symbol_previous) \
1425 1425 or HTML.span(symbol_previous, class_="pg-previous disabled"),
1426 1426 'link_next': self.next_page and \
1427 1427 self._pagerlink(self.next_page, symbol_next) \
1428 1428 or HTML.span(symbol_next, class_="pg-next disabled")
1429 1429 })
1430 1430
1431 1431 return literal(result)
1432 1432
1433 1433
1434 1434 #==============================================================================
1435 1435 # REPO PAGER, PAGER FOR REPOSITORY
1436 1436 #==============================================================================
1437 1437 class RepoPage(Page):
1438 1438
1439 1439 def __init__(self, collection, page=1, items_per_page=20,
1440 1440 item_count=None, url=None, **kwargs):
1441 1441
1442 1442 """Create a "RepoPage" instance. special pager for paging
1443 1443 repository
1444 1444 """
1445 1445 self._url_generator = url
1446 1446
1447 1447 # Safe the kwargs class-wide so they can be used in the pager() method
1448 1448 self.kwargs = kwargs
1449 1449
1450 1450 # Save a reference to the collection
1451 1451 self.original_collection = collection
1452 1452
1453 1453 self.collection = collection
1454 1454
1455 1455 # The self.page is the number of the current page.
1456 1456 # The first page has the number 1!
1457 1457 try:
1458 1458 self.page = int(page) # make it int() if we get it as a string
1459 1459 except (ValueError, TypeError):
1460 1460 self.page = 1
1461 1461
1462 1462 self.items_per_page = items_per_page
1463 1463
1464 1464 # Unless the user tells us how many items the collections has
1465 1465 # we calculate that ourselves.
1466 1466 if item_count is not None:
1467 1467 self.item_count = item_count
1468 1468 else:
1469 1469 self.item_count = len(self.collection)
1470 1470
1471 1471 # Compute the number of the first and last available page
1472 1472 if self.item_count > 0:
1473 1473 self.first_page = 1
1474 1474 self.page_count = int(math.ceil(float(self.item_count) /
1475 1475 self.items_per_page))
1476 1476 self.last_page = self.first_page + self.page_count - 1
1477 1477
1478 1478 # Make sure that the requested page number is the range of
1479 1479 # valid pages
1480 1480 if self.page > self.last_page:
1481 1481 self.page = self.last_page
1482 1482 elif self.page < self.first_page:
1483 1483 self.page = self.first_page
1484 1484
1485 1485 # Note: the number of items on this page can be less than
1486 1486 # items_per_page if the last page is not full
1487 1487 self.first_item = max(0, (self.item_count) - (self.page *
1488 1488 items_per_page))
1489 1489 self.last_item = ((self.item_count - 1) - items_per_page *
1490 1490 (self.page - 1))
1491 1491
1492 1492 self.items = list(self.collection[self.first_item:self.last_item + 1])
1493 1493
1494 1494 # Links to previous and next page
1495 1495 if self.page > self.first_page:
1496 1496 self.previous_page = self.page - 1
1497 1497 else:
1498 1498 self.previous_page = None
1499 1499
1500 1500 if self.page < self.last_page:
1501 1501 self.next_page = self.page + 1
1502 1502 else:
1503 1503 self.next_page = None
1504 1504
1505 1505 # No items available
1506 1506 else:
1507 1507 self.first_page = None
1508 1508 self.page_count = 0
1509 1509 self.last_page = None
1510 1510 self.first_item = None
1511 1511 self.last_item = None
1512 1512 self.previous_page = None
1513 1513 self.next_page = None
1514 1514 self.items = []
1515 1515
1516 1516 # This is a subclass of the 'list' type. Initialise the list now.
1517 1517 list.__init__(self, reversed(self.items))
1518 1518
1519 1519
1520 def changed_tooltip(nodes):
1521 """
1522 Generates a html string for changed nodes in commit page.
1523 It limits the output to 30 entries
1524
1525 :param nodes: LazyNodesGenerator
1526 """
1527 if nodes:
1528 pref = ': <br/> '
1529 suf = ''
1530 if len(nodes) > 30:
1531 suf = '<br/>' + _(' and %s more') % (len(nodes) - 30)
1532 return literal(pref + '<br/> '.join([safe_unicode(x.path)
1533 for x in nodes[:30]]) + suf)
1534 else:
1535 return ': ' + _('No Files')
1536
1537
1538 1520 def breadcrumb_repo_link(repo):
1539 1521 """
1540 1522 Makes a breadcrumbs path link to repo
1541 1523
1542 1524 ex::
1543 1525 group >> subgroup >> repo
1544 1526
1545 1527 :param repo: a Repository instance
1546 1528 """
1547 1529
1548 1530 path = [
1549 1531 link_to(group.name, route_path('repo_group_home', repo_group_name=group.group_name))
1550 1532 for group in repo.groups_with_parents
1551 1533 ] + [
1552 1534 link_to(repo.just_name, route_path('repo_summary', repo_name=repo.repo_name))
1553 1535 ]
1554 1536
1555 1537 return literal(' &raquo; '.join(path))
1556 1538
1557 1539
1558 1540 def format_byte_size_binary(file_size):
1559 1541 """
1560 1542 Formats file/folder sizes to standard.
1561 1543 """
1562 1544 formatted_size = format_byte_size(file_size, binary=True)
1563 1545 return formatted_size
1564 1546
1565 1547
1566 1548 def urlify_text(text_, safe=True):
1567 1549 """
1568 1550 Extrac urls from text and make html links out of them
1569 1551
1570 1552 :param text_:
1571 1553 """
1572 1554
1573 1555 url_pat = re.compile(r'''(http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@#.&+]'''
1574 1556 '''|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)''')
1575 1557
1576 1558 def url_func(match_obj):
1577 1559 url_full = match_obj.groups()[0]
1578 1560 return '<a href="%(url)s">%(url)s</a>' % ({'url': url_full})
1579 1561 _newtext = url_pat.sub(url_func, text_)
1580 1562 if safe:
1581 1563 return literal(_newtext)
1582 1564 return _newtext
1583 1565
1584 1566
1585 1567 def urlify_commits(text_, repository):
1586 1568 """
1587 1569 Extract commit ids from text and make link from them
1588 1570
1589 1571 :param text_:
1590 1572 :param repository: repo name to build the URL with
1591 1573 """
1592 1574 from pylons import url # doh, we need to re-import url to mock it later
1593 1575 URL_PAT = re.compile(r'(^|\s)([0-9a-fA-F]{12,40})($|\s)')
1594 1576
1595 1577 def url_func(match_obj):
1596 1578 commit_id = match_obj.groups()[1]
1597 1579 pref = match_obj.groups()[0]
1598 1580 suf = match_obj.groups()[2]
1599 1581
1600 1582 tmpl = (
1601 1583 '%(pref)s<a class="%(cls)s" href="%(url)s">'
1602 1584 '%(commit_id)s</a>%(suf)s'
1603 1585 )
1604 1586 return tmpl % {
1605 1587 'pref': pref,
1606 1588 'cls': 'revision-link',
1607 1589 'url': url('changeset_home', repo_name=repository,
1608 1590 revision=commit_id, qualified=True),
1609 1591 'commit_id': commit_id,
1610 1592 'suf': suf
1611 1593 }
1612 1594
1613 1595 newtext = URL_PAT.sub(url_func, text_)
1614 1596
1615 1597 return newtext
1616 1598
1617 1599
1618 1600 def _process_url_func(match_obj, repo_name, uid, entry,
1619 1601 return_raw_data=False, link_format='html'):
1620 1602 pref = ''
1621 1603 if match_obj.group().startswith(' '):
1622 1604 pref = ' '
1623 1605
1624 1606 issue_id = ''.join(match_obj.groups())
1625 1607
1626 1608 if link_format == 'html':
1627 1609 tmpl = (
1628 1610 '%(pref)s<a class="%(cls)s" href="%(url)s">'
1629 1611 '%(issue-prefix)s%(id-repr)s'
1630 1612 '</a>')
1631 1613 elif link_format == 'rst':
1632 1614 tmpl = '`%(issue-prefix)s%(id-repr)s <%(url)s>`_'
1633 1615 elif link_format == 'markdown':
1634 1616 tmpl = '[%(issue-prefix)s%(id-repr)s](%(url)s)'
1635 1617 else:
1636 1618 raise ValueError('Bad link_format:{}'.format(link_format))
1637 1619
1638 1620 (repo_name_cleaned,
1639 1621 parent_group_name) = RepoGroupModel().\
1640 1622 _get_group_name_and_parent(repo_name)
1641 1623
1642 1624 # variables replacement
1643 1625 named_vars = {
1644 1626 'id': issue_id,
1645 1627 'repo': repo_name,
1646 1628 'repo_name': repo_name_cleaned,
1647 1629 'group_name': parent_group_name
1648 1630 }
1649 1631 # named regex variables
1650 1632 named_vars.update(match_obj.groupdict())
1651 1633 _url = string.Template(entry['url']).safe_substitute(**named_vars)
1652 1634
1653 1635 data = {
1654 1636 'pref': pref,
1655 1637 'cls': 'issue-tracker-link',
1656 1638 'url': _url,
1657 1639 'id-repr': issue_id,
1658 1640 'issue-prefix': entry['pref'],
1659 1641 'serv': entry['url'],
1660 1642 }
1661 1643 if return_raw_data:
1662 1644 return {
1663 1645 'id': issue_id,
1664 1646 'url': _url
1665 1647 }
1666 1648 return tmpl % data
1667 1649
1668 1650
1669 1651 def process_patterns(text_string, repo_name, link_format='html'):
1670 1652 allowed_formats = ['html', 'rst', 'markdown']
1671 1653 if link_format not in allowed_formats:
1672 1654 raise ValueError('Link format can be only one of:{} got {}'.format(
1673 1655 allowed_formats, link_format))
1674 1656
1675 1657 repo = None
1676 1658 if repo_name:
1677 1659 # Retrieving repo_name to avoid invalid repo_name to explode on
1678 1660 # IssueTrackerSettingsModel but still passing invalid name further down
1679 1661 repo = Repository.get_by_repo_name(repo_name, cache=True)
1680 1662
1681 1663 settings_model = IssueTrackerSettingsModel(repo=repo)
1682 1664 active_entries = settings_model.get_settings(cache=True)
1683 1665
1684 1666 issues_data = []
1685 1667 newtext = text_string
1686 1668
1687 1669 for uid, entry in active_entries.items():
1688 1670 log.debug('found issue tracker entry with uid %s' % (uid,))
1689 1671
1690 1672 if not (entry['pat'] and entry['url']):
1691 1673 log.debug('skipping due to missing data')
1692 1674 continue
1693 1675
1694 1676 log.debug('issue tracker entry: uid: `%s` PAT:%s URL:%s PREFIX:%s'
1695 1677 % (uid, entry['pat'], entry['url'], entry['pref']))
1696 1678
1697 1679 try:
1698 1680 pattern = re.compile(r'%s' % entry['pat'])
1699 1681 except re.error:
1700 1682 log.exception(
1701 1683 'issue tracker pattern: `%s` failed to compile',
1702 1684 entry['pat'])
1703 1685 continue
1704 1686
1705 1687 data_func = partial(
1706 1688 _process_url_func, repo_name=repo_name, entry=entry, uid=uid,
1707 1689 return_raw_data=True)
1708 1690
1709 1691 for match_obj in pattern.finditer(text_string):
1710 1692 issues_data.append(data_func(match_obj))
1711 1693
1712 1694 url_func = partial(
1713 1695 _process_url_func, repo_name=repo_name, entry=entry, uid=uid,
1714 1696 link_format=link_format)
1715 1697
1716 1698 newtext = pattern.sub(url_func, newtext)
1717 1699 log.debug('processed prefix:uid `%s`' % (uid,))
1718 1700
1719 1701 return newtext, issues_data
1720 1702
1721 1703
1722 1704 def urlify_commit_message(commit_text, repository=None):
1723 1705 """
1724 1706 Parses given text message and makes proper links.
1725 1707 issues are linked to given issue-server, and rest is a commit link
1726 1708
1727 1709 :param commit_text:
1728 1710 :param repository:
1729 1711 """
1730 1712 from pylons import url # doh, we need to re-import url to mock it later
1731 1713
1732 1714 def escaper(string):
1733 1715 return string.replace('<', '&lt;').replace('>', '&gt;')
1734 1716
1735 1717 newtext = escaper(commit_text)
1736 1718
1737 1719 # extract http/https links and make them real urls
1738 1720 newtext = urlify_text(newtext, safe=False)
1739 1721
1740 1722 # urlify commits - extract commit ids and make link out of them, if we have
1741 1723 # the scope of repository present.
1742 1724 if repository:
1743 1725 newtext = urlify_commits(newtext, repository)
1744 1726
1745 1727 # process issue tracker patterns
1746 1728 newtext, issues = process_patterns(newtext, repository or '')
1747 1729
1748 1730 return literal(newtext)
1749 1731
1750 1732
1751 1733 def render_binary(repo_name, file_obj):
1752 1734 """
1753 1735 Choose how to render a binary file
1754 1736 """
1755 1737 filename = file_obj.name
1756 1738
1757 1739 # images
1758 1740 for ext in ['*.png', '*.jpg', '*.ico', '*.gif']:
1759 1741 if fnmatch.fnmatch(filename, pat=ext):
1760 1742 alt = filename
1761 1743 src = url('files_raw_home', repo_name=repo_name,
1762 1744 revision=file_obj.commit.raw_id, f_path=file_obj.path)
1763 1745 return literal('<img class="rendered-binary" alt="{}" src="{}">'.format(alt, src))
1764 1746
1765 1747
1766 1748 def renderer_from_filename(filename, exclude=None):
1767 1749 """
1768 1750 choose a renderer based on filename, this works only for text based files
1769 1751 """
1770 1752
1771 1753 # ipython
1772 1754 for ext in ['*.ipynb']:
1773 1755 if fnmatch.fnmatch(filename, pat=ext):
1774 1756 return 'jupyter'
1775 1757
1776 1758 is_markup = MarkupRenderer.renderer_from_filename(filename, exclude=exclude)
1777 1759 if is_markup:
1778 1760 return is_markup
1779 1761 return None
1780 1762
1781 1763
1782 1764 def render(source, renderer='rst', mentions=False, relative_url=None,
1783 1765 repo_name=None):
1784 1766
1785 1767 def maybe_convert_relative_links(html_source):
1786 1768 if relative_url:
1787 1769 return relative_links(html_source, relative_url)
1788 1770 return html_source
1789 1771
1790 1772 if renderer == 'rst':
1791 1773 if repo_name:
1792 1774 # process patterns on comments if we pass in repo name
1793 1775 source, issues = process_patterns(
1794 1776 source, repo_name, link_format='rst')
1795 1777
1796 1778 return literal(
1797 1779 '<div class="rst-block">%s</div>' %
1798 1780 maybe_convert_relative_links(
1799 1781 MarkupRenderer.rst(source, mentions=mentions)))
1800 1782 elif renderer == 'markdown':
1801 1783 if repo_name:
1802 1784 # process patterns on comments if we pass in repo name
1803 1785 source, issues = process_patterns(
1804 1786 source, repo_name, link_format='markdown')
1805 1787
1806 1788 return literal(
1807 1789 '<div class="markdown-block">%s</div>' %
1808 1790 maybe_convert_relative_links(
1809 1791 MarkupRenderer.markdown(source, flavored=True,
1810 1792 mentions=mentions)))
1811 1793 elif renderer == 'jupyter':
1812 1794 return literal(
1813 1795 '<div class="ipynb">%s</div>' %
1814 1796 maybe_convert_relative_links(
1815 1797 MarkupRenderer.jupyter(source)))
1816 1798
1817 1799 # None means just show the file-source
1818 1800 return None
1819 1801
1820 1802
1821 1803 def commit_status(repo, commit_id):
1822 1804 return ChangesetStatusModel().get_status(repo, commit_id)
1823 1805
1824 1806
1825 1807 def commit_status_lbl(commit_status):
1826 1808 return dict(ChangesetStatus.STATUSES).get(commit_status)
1827 1809
1828 1810
1829 1811 def commit_time(repo_name, commit_id):
1830 1812 repo = Repository.get_by_repo_name(repo_name)
1831 1813 commit = repo.get_commit(commit_id=commit_id)
1832 1814 return commit.date
1833 1815
1834 1816
1835 1817 def get_permission_name(key):
1836 1818 return dict(Permission.PERMS).get(key)
1837 1819
1838 1820
1839 def journal_filter_help():
1821 def journal_filter_help(request):
1822 _ = request.translate
1823
1840 1824 return _(
1841 1825 'Example filter terms:\n' +
1842 1826 ' repository:vcs\n' +
1843 1827 ' username:marcin\n' +
1844 1828 ' username:(NOT marcin)\n' +
1845 1829 ' action:*push*\n' +
1846 1830 ' ip:127.0.0.1\n' +
1847 1831 ' date:20120101\n' +
1848 1832 ' date:[20120101100000 TO 20120102]\n' +
1849 1833 '\n' +
1850 1834 'Generate wildcards using \'*\' character:\n' +
1851 1835 ' "repository:vcs*" - search everything starting with \'vcs\'\n' +
1852 1836 ' "repository:*vcs*" - search for repository containing \'vcs\'\n' +
1853 1837 '\n' +
1854 1838 'Optional AND / OR operators in queries\n' +
1855 1839 ' "repository:vcs OR repository:test"\n' +
1856 1840 ' "username:test AND repository:test*"\n'
1857 1841 )
1858 1842
1859 1843
1860 def search_filter_help(searcher):
1844 def search_filter_help(searcher, request):
1845 _ = request.translate
1861 1846
1862 1847 terms = ''
1863 1848 return _(
1864 1849 'Example filter terms for `{searcher}` search:\n' +
1865 1850 '{terms}\n' +
1866 1851 'Generate wildcards using \'*\' character:\n' +
1867 1852 ' "repo_name:vcs*" - search everything starting with \'vcs\'\n' +
1868 1853 ' "repo_name:*vcs*" - search for repository containing \'vcs\'\n' +
1869 1854 '\n' +
1870 1855 'Optional AND / OR operators in queries\n' +
1871 1856 ' "repo_name:vcs OR repo_name:test"\n' +
1872 1857 ' "owner:test AND repo_name:test*"\n' +
1873 1858 'More: {search_doc}'
1874 1859 ).format(searcher=searcher.name,
1875 1860 terms=terms, search_doc=searcher.query_lang_doc)
1876 1861
1877 1862
1878 1863 def not_mapped_error(repo_name):
1864 from rhodecode.translation import _
1879 1865 flash(_('%s repository is not mapped to db perhaps'
1880 1866 ' it was created or renamed from the filesystem'
1881 1867 ' please run the application again'
1882 1868 ' in order to rescan repositories') % repo_name, category='error')
1883 1869
1884 1870
1885 1871 def ip_range(ip_addr):
1886 1872 from rhodecode.model.db import UserIpMap
1887 1873 s, e = UserIpMap._get_ip_range(ip_addr)
1888 1874 return '%s - %s' % (s, e)
1889 1875
1890 1876
1891 1877 def form(url, method='post', needs_csrf_token=True, **attrs):
1892 1878 """Wrapper around webhelpers.tags.form to prevent CSRF attacks."""
1893 1879 if method.lower() != 'get' and needs_csrf_token:
1894 1880 raise Exception(
1895 1881 'Forms to POST/PUT/DELETE endpoints should have (in general) a ' +
1896 1882 'CSRF token. If the endpoint does not require such token you can ' +
1897 1883 'explicitly set the parameter needs_csrf_token to false.')
1898 1884
1899 1885 return wh_form(url, method=method, **attrs)
1900 1886
1901 1887
1902 1888 def secure_form(url, method="POST", multipart=False, **attrs):
1903 1889 """Start a form tag that points the action to an url. This
1904 1890 form tag will also include the hidden field containing
1905 1891 the auth token.
1906 1892
1907 1893 The url options should be given either as a string, or as a
1908 1894 ``url()`` function. The method for the form defaults to POST.
1909 1895
1910 1896 Options:
1911 1897
1912 1898 ``multipart``
1913 1899 If set to True, the enctype is set to "multipart/form-data".
1914 1900 ``method``
1915 1901 The method to use when submitting the form, usually either
1916 1902 "GET" or "POST". If "PUT", "DELETE", or another verb is used, a
1917 1903 hidden input with name _method is added to simulate the verb
1918 1904 over POST.
1919 1905
1920 1906 """
1921 1907 from webhelpers.pylonslib.secure_form import insecure_form
1922 1908 form = insecure_form(url, method, multipart, **attrs)
1923 1909 token = csrf_input()
1924 1910 return literal("%s\n%s" % (form, token))
1925 1911
1926 1912 def csrf_input():
1927 1913 return literal(
1928 1914 '<input type="hidden" id="{}" name="{}" value="{}">'.format(
1929 1915 csrf_token_key, csrf_token_key, get_csrf_token()))
1930 1916
1931 1917 def dropdownmenu(name, selected, options, enable_filter=False, **attrs):
1932 1918 select_html = select(name, selected, options, **attrs)
1933 1919 select2 = """
1934 1920 <script>
1935 1921 $(document).ready(function() {
1936 1922 $('#%s').select2({
1937 1923 containerCssClass: 'drop-menu',
1938 1924 dropdownCssClass: 'drop-menu-dropdown',
1939 1925 dropdownAutoWidth: true%s
1940 1926 });
1941 1927 });
1942 1928 </script>
1943 1929 """
1944 1930 filter_option = """,
1945 1931 minimumResultsForSearch: -1
1946 1932 """
1947 1933 input_id = attrs.get('id') or name
1948 1934 filter_enabled = "" if enable_filter else filter_option
1949 1935 select_script = literal(select2 % (input_id, filter_enabled))
1950 1936
1951 1937 return literal(select_html+select_script)
1952 1938
1953 1939
1954 1940 def get_visual_attr(tmpl_context_var, attr_name):
1955 1941 """
1956 1942 A safe way to get a variable from visual variable of template context
1957 1943
1958 1944 :param tmpl_context_var: instance of tmpl_context, usually present as `c`
1959 1945 :param attr_name: name of the attribute we fetch from the c.visual
1960 1946 """
1961 1947 visual = getattr(tmpl_context_var, 'visual', None)
1962 1948 if not visual:
1963 1949 return
1964 1950 else:
1965 1951 return getattr(visual, attr_name, None)
1966 1952
1967 1953
1968 1954 def get_last_path_part(file_node):
1969 1955 if not file_node.path:
1970 1956 return u''
1971 1957
1972 1958 path = safe_unicode(file_node.path.split('/')[-1])
1973 1959 return u'../' + path
1974 1960
1975 1961
1976 1962 def route_url(*args, **kwargs):
1977 1963 """
1978 1964 Wrapper around pyramids `route_url` (fully qualified url) function.
1979 1965 It is used to generate URLs from within pylons views or templates.
1980 1966 This will be removed when pyramid migration if finished.
1981 1967 """
1982 1968 req = get_current_request()
1983 1969 return req.route_url(*args, **kwargs)
1984 1970
1985 1971
1986 1972 def route_path(*args, **kwargs):
1987 1973 """
1988 1974 Wrapper around pyramids `route_path` function. It is used to generate
1989 1975 URLs from within pylons views or templates. This will be removed when
1990 1976 pyramid migration if finished.
1991 1977 """
1992 1978 req = get_current_request()
1993 1979 return req.route_path(*args, **kwargs)
1994 1980
1995 1981
1996 1982 def route_path_or_none(*args, **kwargs):
1997 1983 try:
1998 1984 return route_path(*args, **kwargs)
1999 1985 except KeyError:
2000 1986 return None
2001 1987
2002 1988
2003 1989 def static_url(*args, **kwds):
2004 1990 """
2005 1991 Wrapper around pyramids `route_path` function. It is used to generate
2006 1992 URLs from within pylons views or templates. This will be removed when
2007 1993 pyramid migration if finished.
2008 1994 """
2009 1995 req = get_current_request()
2010 1996 return req.static_url(*args, **kwds)
2011 1997
2012 1998
2013 1999 def resource_path(*args, **kwds):
2014 2000 """
2015 2001 Wrapper around pyramids `route_path` function. It is used to generate
2016 2002 URLs from within pylons views or templates. This will be removed when
2017 2003 pyramid migration if finished.
2018 2004 """
2019 2005 req = get_current_request()
2020 2006 return req.resource_path(*args, **kwds)
2021 2007
2022 2008
2023 2009 def api_call_example(method, args):
2024 2010 """
2025 2011 Generates an API call example via CURL
2026 2012 """
2027 2013 args_json = json.dumps(OrderedDict([
2028 2014 ('id', 1),
2029 2015 ('auth_token', 'SECRET'),
2030 2016 ('method', method),
2031 2017 ('args', args)
2032 2018 ]))
2033 2019 return literal(
2034 2020 "curl {api_url} -X POST -H 'content-type:text/plain' --data-binary '{data}'"
2035 2021 "<br/><br/>SECRET can be found in <a href=\"{token_url}\">auth-tokens</a> page, "
2036 2022 "and needs to be of `api calls` role."
2037 2023 .format(
2038 2024 api_url=route_url('apiv2'),
2039 2025 token_url=route_url('my_account_auth_tokens'),
2040 2026 data=args_json))
@@ -1,40 +1,40 b''
1 1 ## -*- coding: utf-8 -*-
2 2 <%inherit file="/base/base.mako"/>
3 3
4 4 <%def name="title()">
5 5 ${_('Admin audit logs')}
6 6 %if c.rhodecode_name:
7 7 &middot; ${h.branding(c.rhodecode_name)}
8 8 %endif
9 9 </%def>
10 10
11 11 <%def name="breadcrumbs_links()">
12 12 ${h.form(None, id_="filter_form", method="get")}
13 13 <input class="q_filter_box ${'' if c.search_term else 'initial'}" id="j_filter" size="15" type="text" name="filter" value="${c.search_term or ''}" placeholder="${_('filter...')}"/>
14 14 <input type='submit' value="${_('filter')}" class="btn" />
15 15 ${_('Audit logs')} - ${_ungettext('%s entry', '%s entries', c.audit_logs.item_count) % (c.audit_logs.item_count)}
16 16 ${h.end_form()}
17 <p class="tooltip filterexample" title="${h.tooltip(h.journal_filter_help())}">${_('Example Queries')}</p>
17 <p class="tooltip filterexample" title="${h.tooltip(h.journal_filter_help(request))}">${_('Example Queries')}</p>
18 18 </%def>
19 19
20 20 <%def name="menu_bar_nav()">
21 21 ${self.menu_items(active='admin')}
22 22 </%def>
23 23 <%def name="main()">
24 24 <div class="box">
25 25 <!-- box / title -->
26 26 <div class="title">
27 27 ${self.breadcrumbs()}
28 28 </div>
29 29 <!-- end box / title -->
30 30 <div class="table">
31 31 <div id="user_log">
32 32 <%include file="/admin/admin_log_base.mako" />
33 33 </div>
34 34 </div>
35 35 </div>
36 36
37 37 <script>
38 38 $('#j_filter').autoGrowInput();
39 39 </script>
40 40 </%def>
@@ -1,22 +1,22 b''
1 1 ## -*- coding: utf-8 -*-
2 2 <%namespace name="base" file="/base/base.mako"/>
3 3
4 4
5 5 <div class="panel panel-default">
6 6 <div class="panel-heading">
7 7 <h3 class="panel-title">${_('User Audit Logs')} -
8 8 ${_ungettext('%s entry', '%s entries', c.audit_logs.item_count) % (c.audit_logs.item_count)}
9 9 </h3>
10 10 </div>
11 11 <div class="panel-body">
12 12
13 13 ${h.form(None, id_="filter_form", method="get")}
14 14 <input class="q_filter_box ${'' if c.filter_term else 'initial'}" id="j_filter" size="15" type="text" name="filter" value="${c.filter_term or ''}" placeholder="${_('audit filter...')}"/>
15 15 <input type='submit' value="${_('filter')}" class="btn" />
16 16 ${h.end_form()}
17 <p class="tooltip filterexample" style="position: inherit" title="${h.tooltip(h.journal_filter_help())}">${_('Example Queries')}</p>
17 <p class="tooltip filterexample" style="position: inherit" title="${h.tooltip(h.journal_filter_help(request))}">${_('Example Queries')}</p>
18 18
19 19 <%include file="/admin/admin_log_base.mako" />
20 20
21 21 </div>
22 22 </div>
@@ -1,54 +1,54 b''
1 1 ## -*- coding: utf-8 -*-
2 2 <%inherit file="/base/base.mako"/>
3 3 <%def name="title()">
4 4 ${_('Journal')}
5 5 %if c.rhodecode_name:
6 6 &middot; ${h.branding(c.rhodecode_name)}
7 7 %endif
8 8 </%def>
9 9 <%def name="breadcrumbs()">
10 10 <h1 class="block-left">
11 11 ${h.form(None, id_="filter_form", method="get")}
12 12 <input class="q_filter_box ${'' if c.search_term else 'initial'}" id="j_filter" size="15" type="text" name="filter" value="${c.search_term}" placeholder="${_('quick filter...')}"/>
13 13 <input type='submit' value="${_('Filter')}" class="btn" />
14 14 ${_('Journal')} - ${ungettext('%s entry', '%s entries', c.journal_pager.item_count) % (c.journal_pager.item_count)}
15 15 ${h.end_form()}
16 16 </h1>
17 <p class="tooltip filterexample" title="${h.tooltip(h.journal_filter_help())}">${_('Example Queries')}</p>
17 <p class="tooltip filterexample" title="${h.tooltip(h.journal_filter_help(request))}">${_('Example Queries')}</p>
18 18 </%def>
19 19 <%def name="menu_bar_nav()">
20 20 ${self.menu_items(active='journal')}
21 21 </%def>
22 22 <%def name="head_extra()">
23 23 <link href="${h.url('journal_atom', auth_token=c.rhodecode_user.feed_token)}" rel="alternate" title="${_('ATOM journal feed')}" type="application/atom+xml" />
24 24 <link href="${h.url('journal_rss', auth_token=c.rhodecode_user.feed_token)}" rel="alternate" title="${_('RSS journal feed')}" type="application/rss+xml" />
25 25 </%def>
26 26 <%def name="main()">
27 27
28 28 <div class="box">
29 29 <!-- box / title -->
30 30 <div class="title journal">
31 31 ${self.breadcrumbs()}
32 32 <ul class="links icon-only-links block-right">
33 33 <li>
34 34 <span><a id="refresh" href="${h.url('journal')}"><i class="icon-refresh"></i></a></span>
35 35 </li>
36 36 <li>
37 37 <span><a href="${h.url('journal_atom', auth_token=c.rhodecode_user.feed_token)}"><i class="icon-rss-sign"></i></a></span>
38 38 </li>
39 39 </ul>
40 40 </div>
41 41 <div id="journal">${c.journal_data}</div>
42 42 </div>
43 43
44 44 <script type="text/javascript">
45 45
46 46 $('#j_filter').autoGrowInput();
47 47 $(document).on('pjax:success',function(){
48 48 show_more_event();
49 49 });
50 50 $(document).pjax('#refresh', '#journal',
51 51 {url: "${h.url.current(filter=c.search_term)}", push: false});
52 52
53 53 </script>
54 54 </%def>
@@ -1,108 +1,108 b''
1 1 ## -*- coding: utf-8 -*-
2 2 <%inherit file="/base/base.mako"/>
3 3
4 4 <%def name="title()">
5 5 %if c.repo_name:
6 6 ${_('Search inside repository %(repo_name)s') % {'repo_name': c.repo_name}}
7 7 %else:
8 8 ${_('Search inside all accessible repositories')}
9 9 %endif
10 10 %if c.rhodecode_name:
11 11 &middot; ${h.branding(c.rhodecode_name)}
12 12 %endif
13 13 </%def>
14 14
15 15 <%def name="breadcrumbs_links()">
16 16 %if c.repo_name:
17 17 ${_('Search inside repository %(repo_name)s') % {'repo_name': c.repo_name}}
18 18 %else:
19 19 ${_('Search inside all accessible repositories')}
20 20 %endif
21 21 %if c.cur_query:
22 22 &raquo;
23 23 ${c.cur_query}
24 24 %endif
25 25 </%def>
26 26
27 27 <%def name="menu_bar_nav()">
28 28 %if c.repo_name:
29 29 ${self.menu_items(active='repositories')}
30 30 %else:
31 31 ${self.menu_items(active='search')}
32 32 %endif
33 33 </%def>
34 34
35 35 <%def name="menu_bar_subnav()">
36 36 %if c.repo_name:
37 37 ${self.repo_menu(active='options')}
38 38 %endif
39 39 </%def>
40 40
41 41 <%def name="main()">
42 42 <div class="box">
43 43 %if c.repo_name:
44 44 <!-- box / title -->
45 45 <div class="title">
46 46 ${self.repo_page_title(c.rhodecode_db_repo)}
47 47 </div>
48 48 ${h.form(h.route_path('search_repo',repo_name=c.repo_name),method='get')}
49 49 %else:
50 50 <!-- box / title -->
51 51 <div class="title">
52 52 ${self.breadcrumbs()}
53 53 <ul class="links">&nbsp;</ul>
54 54 </div>
55 55 <!-- end box / title -->
56 56 ${h.form(h.route_path('search'), method='get')}
57 57 %endif
58 58 <div class="form search-form">
59 59 <div class="fields">
60 60 <label for="q">${_('Search item')}:</label>
61 61 ${h.text('q', c.cur_query)}
62 62
63 63 ${h.select('type',c.search_type,[('content',_('File contents')), ('commit',_('Commit messages')), ('path',_('File names')),],id='id_search_type')}
64 64 <input type="submit" value="${_('Search')}" class="btn"/>
65 65 <br/>
66 66
67 67 <div class="search-feedback-items">
68 68 % for error in c.errors:
69 69 <span class="error-message">
70 70 % for k,v in error.asdict().items():
71 71 ${k} - ${v}
72 72 % endfor
73 73 </span>
74 74 % endfor
75 75 <div class="field">
76 76 <p class="filterexample" style="position: inherit" onclick="$('#search-help').toggle()">${_('Example Queries')}</p>
77 <pre id="search-help" style="display: none">${h.tooltip(h.search_filter_help(c.searcher))}</pre>
77 <pre id="search-help" style="display: none">${h.tooltip(h.search_filter_help(c.searcher, request))}</pre>
78 78 </div>
79 79
80 80 <div class="field">${c.runtime}</div>
81 81 </div>
82 82 </div>
83 83 </div>
84 84
85 85 ${h.end_form()}
86 86 <div class="search">
87 87 % if c.search_type == 'content':
88 88 <%include file='search_content.mako'/>
89 89 % elif c.search_type == 'path':
90 90 <%include file='search_path.mako'/>
91 91 % elif c.search_type == 'commit':
92 92 <%include file='search_commit.mako'/>
93 93 % elif c.search_type == 'repository':
94 94 <%include file='search_repository.mako'/>
95 95 % endif
96 96 </div>
97 97 </div>
98 98 <script>
99 99 $(document).ready(function(){
100 100 $("#id_search_type").select2({
101 101 'containerCssClass': "drop-menu",
102 102 'dropdownCssClass': "drop-menu-dropdown",
103 103 'dropdownAutoWidth': true,
104 104 'minimumResultsForSearch': -1
105 105 });
106 106 })
107 107 </script>
108 108 </%def>
General Comments 0
You need to be logged in to leave comments. Login now