##// END OF EJS Templates
white space cleanup
marcink -
r3149:68f9c216 beta
parent child Browse files
Show More
@@ -1,1173 +1,1172 b''
1 """Helper functions
1 """Helper functions
2
2
3 Consists of functions to typically be used within templates, but also
3 Consists of functions to typically be used within templates, but also
4 available to Controllers. This module is available to both as 'h'.
4 available to Controllers. This module is available to both as 'h'.
5 """
5 """
6 import random
6 import random
7 import hashlib
7 import hashlib
8 import StringIO
8 import StringIO
9 import urllib
9 import urllib
10 import math
10 import math
11 import logging
11 import logging
12 import re
12 import re
13 import urlparse
13 import urlparse
14 import textwrap
14 import textwrap
15
15
16 from datetime import datetime
16 from datetime import datetime
17 from pygments.formatters.html import HtmlFormatter
17 from pygments.formatters.html import HtmlFormatter
18 from pygments import highlight as code_highlight
18 from pygments import highlight as code_highlight
19 from pylons import url, request, config
19 from pylons import url, request, config
20 from pylons.i18n.translation import _, ungettext
20 from pylons.i18n.translation import _, ungettext
21 from hashlib import md5
21 from hashlib import md5
22
22
23 from webhelpers.html import literal, HTML, escape
23 from webhelpers.html import literal, HTML, escape
24 from webhelpers.html.tools import *
24 from webhelpers.html.tools import *
25 from webhelpers.html.builder import make_tag
25 from webhelpers.html.builder import make_tag
26 from webhelpers.html.tags import auto_discovery_link, checkbox, css_classes, \
26 from webhelpers.html.tags import auto_discovery_link, checkbox, css_classes, \
27 end_form, file, form, hidden, image, javascript_link, link_to, \
27 end_form, file, form, hidden, image, javascript_link, link_to, \
28 link_to_if, link_to_unless, ol, required_legend, select, stylesheet_link, \
28 link_to_if, link_to_unless, ol, required_legend, select, stylesheet_link, \
29 submit, text, password, textarea, title, ul, xml_declaration, radio
29 submit, text, password, textarea, title, ul, xml_declaration, radio
30 from webhelpers.html.tools import auto_link, button_to, highlight, \
30 from webhelpers.html.tools import auto_link, button_to, highlight, \
31 js_obfuscate, mail_to, strip_links, strip_tags, tag_re
31 js_obfuscate, mail_to, strip_links, strip_tags, tag_re
32 from webhelpers.number import format_byte_size, format_bit_size
32 from webhelpers.number import format_byte_size, format_bit_size
33 from webhelpers.pylonslib import Flash as _Flash
33 from webhelpers.pylonslib import Flash as _Flash
34 from webhelpers.pylonslib.secure_form import secure_form
34 from webhelpers.pylonslib.secure_form import secure_form
35 from webhelpers.text import chop_at, collapse, convert_accented_entities, \
35 from webhelpers.text import chop_at, collapse, convert_accented_entities, \
36 convert_misc_entities, lchop, plural, rchop, remove_formatting, \
36 convert_misc_entities, lchop, plural, rchop, remove_formatting, \
37 replace_whitespace, urlify, truncate, wrap_paragraphs
37 replace_whitespace, urlify, truncate, wrap_paragraphs
38 from webhelpers.date import time_ago_in_words
38 from webhelpers.date import time_ago_in_words
39 from webhelpers.paginate import Page
39 from webhelpers.paginate import Page
40 from webhelpers.html.tags import _set_input_attrs, _set_id_attr, \
40 from webhelpers.html.tags import _set_input_attrs, _set_id_attr, \
41 convert_boolean_attrs, NotGiven, _make_safe_id_component
41 convert_boolean_attrs, NotGiven, _make_safe_id_component
42
42
43 from rhodecode.lib.annotate import annotate_highlight
43 from rhodecode.lib.annotate import annotate_highlight
44 from rhodecode.lib.utils import repo_name_slug
44 from rhodecode.lib.utils import repo_name_slug
45 from rhodecode.lib.utils2 import str2bool, safe_unicode, safe_str, \
45 from rhodecode.lib.utils2 import str2bool, safe_unicode, safe_str, \
46 get_changeset_safe, datetime_to_time, time_to_datetime, AttributeDict
46 get_changeset_safe, datetime_to_time, time_to_datetime, AttributeDict
47 from rhodecode.lib.markup_renderer import MarkupRenderer
47 from rhodecode.lib.markup_renderer import MarkupRenderer
48 from rhodecode.lib.vcs.exceptions import ChangesetDoesNotExistError
48 from rhodecode.lib.vcs.exceptions import ChangesetDoesNotExistError
49 from rhodecode.lib.vcs.backends.base import BaseChangeset, EmptyChangeset
49 from rhodecode.lib.vcs.backends.base import BaseChangeset, EmptyChangeset
50 from rhodecode.config.conf import DATE_FORMAT, DATETIME_FORMAT
50 from rhodecode.config.conf import DATE_FORMAT, DATETIME_FORMAT
51 from rhodecode.model.changeset_status import ChangesetStatusModel
51 from rhodecode.model.changeset_status import ChangesetStatusModel
52 from rhodecode.model.db import URL_SEP, Permission
52 from rhodecode.model.db import URL_SEP, Permission
53
53
54 log = logging.getLogger(__name__)
54 log = logging.getLogger(__name__)
55
55
56
56
57 html_escape_table = {
57 html_escape_table = {
58 "&": "&",
58 "&": "&",
59 '"': """,
59 '"': """,
60 "'": "'",
60 "'": "'",
61 ">": ">",
61 ">": ">",
62 "<": "&lt;",
62 "<": "&lt;",
63 }
63 }
64
64
65
65
66 def html_escape(text):
66 def html_escape(text):
67 """Produce entities within text."""
67 """Produce entities within text."""
68 return "".join(html_escape_table.get(c, c) for c in text)
68 return "".join(html_escape_table.get(c, c) for c in text)
69
69
70
70
71 def shorter(text, size=20):
71 def shorter(text, size=20):
72 postfix = '...'
72 postfix = '...'
73 if len(text) > size:
73 if len(text) > size:
74 return text[:size - len(postfix)] + postfix
74 return text[:size - len(postfix)] + postfix
75 return text
75 return text
76
76
77
77
78 def _reset(name, value=None, id=NotGiven, type="reset", **attrs):
78 def _reset(name, value=None, id=NotGiven, type="reset", **attrs):
79 """
79 """
80 Reset button
80 Reset button
81 """
81 """
82 _set_input_attrs(attrs, type, name, value)
82 _set_input_attrs(attrs, type, name, value)
83 _set_id_attr(attrs, id, name)
83 _set_id_attr(attrs, id, name)
84 convert_boolean_attrs(attrs, ["disabled"])
84 convert_boolean_attrs(attrs, ["disabled"])
85 return HTML.input(**attrs)
85 return HTML.input(**attrs)
86
86
87 reset = _reset
87 reset = _reset
88 safeid = _make_safe_id_component
88 safeid = _make_safe_id_component
89
89
90
90
91 def FID(raw_id, path):
91 def FID(raw_id, path):
92 """
92 """
93 Creates a uniqe ID for filenode based on it's hash of path and revision
93 Creates a uniqe ID for filenode based on it's hash of path and revision
94 it's safe to use in urls
94 it's safe to use in urls
95
95
96 :param raw_id:
96 :param raw_id:
97 :param path:
97 :param path:
98 """
98 """
99
99
100 return 'C-%s-%s' % (short_id(raw_id), md5(safe_str(path)).hexdigest()[:12])
100 return 'C-%s-%s' % (short_id(raw_id), md5(safe_str(path)).hexdigest()[:12])
101
101
102
102
103 def get_token():
103 def get_token():
104 """Return the current authentication token, creating one if one doesn't
104 """Return the current authentication token, creating one if one doesn't
105 already exist.
105 already exist.
106 """
106 """
107 token_key = "_authentication_token"
107 token_key = "_authentication_token"
108 from pylons import session
108 from pylons import session
109 if not token_key in session:
109 if not token_key in session:
110 try:
110 try:
111 token = hashlib.sha1(str(random.getrandbits(128))).hexdigest()
111 token = hashlib.sha1(str(random.getrandbits(128))).hexdigest()
112 except AttributeError: # Python < 2.4
112 except AttributeError: # Python < 2.4
113 token = hashlib.sha1(str(random.randrange(2 ** 128))).hexdigest()
113 token = hashlib.sha1(str(random.randrange(2 ** 128))).hexdigest()
114 session[token_key] = token
114 session[token_key] = token
115 if hasattr(session, 'save'):
115 if hasattr(session, 'save'):
116 session.save()
116 session.save()
117 return session[token_key]
117 return session[token_key]
118
118
119
119
120 class _GetError(object):
120 class _GetError(object):
121 """Get error from form_errors, and represent it as span wrapped error
121 """Get error from form_errors, and represent it as span wrapped error
122 message
122 message
123
123
124 :param field_name: field to fetch errors for
124 :param field_name: field to fetch errors for
125 :param form_errors: form errors dict
125 :param form_errors: form errors dict
126 """
126 """
127
127
128 def __call__(self, field_name, form_errors):
128 def __call__(self, field_name, form_errors):
129 tmpl = """<span class="error_msg">%s</span>"""
129 tmpl = """<span class="error_msg">%s</span>"""
130 if form_errors and field_name in form_errors:
130 if form_errors and field_name in form_errors:
131 return literal(tmpl % form_errors.get(field_name))
131 return literal(tmpl % form_errors.get(field_name))
132
132
133 get_error = _GetError()
133 get_error = _GetError()
134
134
135
135
136 class _ToolTip(object):
136 class _ToolTip(object):
137
137
138 def __call__(self, tooltip_title, trim_at=50):
138 def __call__(self, tooltip_title, trim_at=50):
139 """
139 """
140 Special function just to wrap our text into nice formatted
140 Special function just to wrap our text into nice formatted
141 autowrapped text
141 autowrapped text
142
142
143 :param tooltip_title:
143 :param tooltip_title:
144 """
144 """
145 tooltip_title = escape(tooltip_title)
145 tooltip_title = escape(tooltip_title)
146 tooltip_title = tooltip_title.replace('<', '&lt;').replace('>', '&gt;')
146 tooltip_title = tooltip_title.replace('<', '&lt;').replace('>', '&gt;')
147 return tooltip_title
147 return tooltip_title
148 tooltip = _ToolTip()
148 tooltip = _ToolTip()
149
149
150
150
151 class _FilesBreadCrumbs(object):
151 class _FilesBreadCrumbs(object):
152
152
153 def __call__(self, repo_name, rev, paths):
153 def __call__(self, repo_name, rev, paths):
154 if isinstance(paths, str):
154 if isinstance(paths, str):
155 paths = safe_unicode(paths)
155 paths = safe_unicode(paths)
156 url_l = [link_to(repo_name, url('files_home',
156 url_l = [link_to(repo_name, url('files_home',
157 repo_name=repo_name,
157 repo_name=repo_name,
158 revision=rev, f_path=''),
158 revision=rev, f_path=''),
159 class_='ypjax-link')]
159 class_='ypjax-link')]
160 paths_l = paths.split('/')
160 paths_l = paths.split('/')
161 for cnt, p in enumerate(paths_l):
161 for cnt, p in enumerate(paths_l):
162 if p != '':
162 if p != '':
163 url_l.append(link_to(p,
163 url_l.append(link_to(p,
164 url('files_home',
164 url('files_home',
165 repo_name=repo_name,
165 repo_name=repo_name,
166 revision=rev,
166 revision=rev,
167 f_path='/'.join(paths_l[:cnt + 1])
167 f_path='/'.join(paths_l[:cnt + 1])
168 ),
168 ),
169 class_='ypjax-link'
169 class_='ypjax-link'
170 )
170 )
171 )
171 )
172
172
173 return literal('/'.join(url_l))
173 return literal('/'.join(url_l))
174
174
175 files_breadcrumbs = _FilesBreadCrumbs()
175 files_breadcrumbs = _FilesBreadCrumbs()
176
176
177
177
178 class CodeHtmlFormatter(HtmlFormatter):
178 class CodeHtmlFormatter(HtmlFormatter):
179 """
179 """
180 My code Html Formatter for source codes
180 My code Html Formatter for source codes
181 """
181 """
182
182
183 def wrap(self, source, outfile):
183 def wrap(self, source, outfile):
184 return self._wrap_div(self._wrap_pre(self._wrap_code(source)))
184 return self._wrap_div(self._wrap_pre(self._wrap_code(source)))
185
185
186 def _wrap_code(self, source):
186 def _wrap_code(self, source):
187 for cnt, it in enumerate(source):
187 for cnt, it in enumerate(source):
188 i, t = it
188 i, t = it
189 t = '<div id="L%s">%s</div>' % (cnt + 1, t)
189 t = '<div id="L%s">%s</div>' % (cnt + 1, t)
190 yield i, t
190 yield i, t
191
191
192 def _wrap_tablelinenos(self, inner):
192 def _wrap_tablelinenos(self, inner):
193 dummyoutfile = StringIO.StringIO()
193 dummyoutfile = StringIO.StringIO()
194 lncount = 0
194 lncount = 0
195 for t, line in inner:
195 for t, line in inner:
196 if t:
196 if t:
197 lncount += 1
197 lncount += 1
198 dummyoutfile.write(line)
198 dummyoutfile.write(line)
199
199
200 fl = self.linenostart
200 fl = self.linenostart
201 mw = len(str(lncount + fl - 1))
201 mw = len(str(lncount + fl - 1))
202 sp = self.linenospecial
202 sp = self.linenospecial
203 st = self.linenostep
203 st = self.linenostep
204 la = self.lineanchors
204 la = self.lineanchors
205 aln = self.anchorlinenos
205 aln = self.anchorlinenos
206 nocls = self.noclasses
206 nocls = self.noclasses
207 if sp:
207 if sp:
208 lines = []
208 lines = []
209
209
210 for i in range(fl, fl + lncount):
210 for i in range(fl, fl + lncount):
211 if i % st == 0:
211 if i % st == 0:
212 if i % sp == 0:
212 if i % sp == 0:
213 if aln:
213 if aln:
214 lines.append('<a href="#%s%d" class="special">%*d</a>' %
214 lines.append('<a href="#%s%d" class="special">%*d</a>' %
215 (la, i, mw, i))
215 (la, i, mw, i))
216 else:
216 else:
217 lines.append('<span class="special">%*d</span>' % (mw, i))
217 lines.append('<span class="special">%*d</span>' % (mw, i))
218 else:
218 else:
219 if aln:
219 if aln:
220 lines.append('<a href="#%s%d">%*d</a>' % (la, i, mw, i))
220 lines.append('<a href="#%s%d">%*d</a>' % (la, i, mw, i))
221 else:
221 else:
222 lines.append('%*d' % (mw, i))
222 lines.append('%*d' % (mw, i))
223 else:
223 else:
224 lines.append('')
224 lines.append('')
225 ls = '\n'.join(lines)
225 ls = '\n'.join(lines)
226 else:
226 else:
227 lines = []
227 lines = []
228 for i in range(fl, fl + lncount):
228 for i in range(fl, fl + lncount):
229 if i % st == 0:
229 if i % st == 0:
230 if aln:
230 if aln:
231 lines.append('<a href="#%s%d">%*d</a>' % (la, i, mw, i))
231 lines.append('<a href="#%s%d">%*d</a>' % (la, i, mw, i))
232 else:
232 else:
233 lines.append('%*d' % (mw, i))
233 lines.append('%*d' % (mw, i))
234 else:
234 else:
235 lines.append('')
235 lines.append('')
236 ls = '\n'.join(lines)
236 ls = '\n'.join(lines)
237
237
238 # in case you wonder about the seemingly redundant <div> here: since the
238 # in case you wonder about the seemingly redundant <div> here: since the
239 # content in the other cell also is wrapped in a div, some browsers in
239 # content in the other cell also is wrapped in a div, some browsers in
240 # some configurations seem to mess up the formatting...
240 # some configurations seem to mess up the formatting...
241 if nocls:
241 if nocls:
242 yield 0, ('<table class="%stable">' % self.cssclass +
242 yield 0, ('<table class="%stable">' % self.cssclass +
243 '<tr><td><div class="linenodiv" '
243 '<tr><td><div class="linenodiv" '
244 'style="background-color: #f0f0f0; padding-right: 10px">'
244 'style="background-color: #f0f0f0; padding-right: 10px">'
245 '<pre style="line-height: 125%">' +
245 '<pre style="line-height: 125%">' +
246 ls + '</pre></div></td><td id="hlcode" class="code">')
246 ls + '</pre></div></td><td id="hlcode" class="code">')
247 else:
247 else:
248 yield 0, ('<table class="%stable">' % self.cssclass +
248 yield 0, ('<table class="%stable">' % self.cssclass +
249 '<tr><td class="linenos"><div class="linenodiv"><pre>' +
249 '<tr><td class="linenos"><div class="linenodiv"><pre>' +
250 ls + '</pre></div></td><td id="hlcode" class="code">')
250 ls + '</pre></div></td><td id="hlcode" class="code">')
251 yield 0, dummyoutfile.getvalue()
251 yield 0, dummyoutfile.getvalue()
252 yield 0, '</td></tr></table>'
252 yield 0, '</td></tr></table>'
253
253
254
254
255 def pygmentize(filenode, **kwargs):
255 def pygmentize(filenode, **kwargs):
256 """pygmentize function using pygments
256 """pygmentize function using pygments
257
257
258 :param filenode:
258 :param filenode:
259 """
259 """
260
260
261 return literal(code_highlight(filenode.content,
261 return literal(code_highlight(filenode.content,
262 filenode.lexer, CodeHtmlFormatter(**kwargs)))
262 filenode.lexer, CodeHtmlFormatter(**kwargs)))
263
263
264
264
265 def pygmentize_annotation(repo_name, filenode, **kwargs):
265 def pygmentize_annotation(repo_name, filenode, **kwargs):
266 """
266 """
267 pygmentize function for annotation
267 pygmentize function for annotation
268
268
269 :param filenode:
269 :param filenode:
270 """
270 """
271
271
272 color_dict = {}
272 color_dict = {}
273
273
274 def gen_color(n=10000):
274 def gen_color(n=10000):
275 """generator for getting n of evenly distributed colors using
275 """generator for getting n of evenly distributed colors using
276 hsv color and golden ratio. It always return same order of colors
276 hsv color and golden ratio. It always return same order of colors
277
277
278 :returns: RGB tuple
278 :returns: RGB tuple
279 """
279 """
280
280
281 def hsv_to_rgb(h, s, v):
281 def hsv_to_rgb(h, s, v):
282 if s == 0.0:
282 if s == 0.0:
283 return v, v, v
283 return v, v, v
284 i = int(h * 6.0) # XXX assume int() truncates!
284 i = int(h * 6.0) # XXX assume int() truncates!
285 f = (h * 6.0) - i
285 f = (h * 6.0) - i
286 p = v * (1.0 - s)
286 p = v * (1.0 - s)
287 q = v * (1.0 - s * f)
287 q = v * (1.0 - s * f)
288 t = v * (1.0 - s * (1.0 - f))
288 t = v * (1.0 - s * (1.0 - f))
289 i = i % 6
289 i = i % 6
290 if i == 0:
290 if i == 0:
291 return v, t, p
291 return v, t, p
292 if i == 1:
292 if i == 1:
293 return q, v, p
293 return q, v, p
294 if i == 2:
294 if i == 2:
295 return p, v, t
295 return p, v, t
296 if i == 3:
296 if i == 3:
297 return p, q, v
297 return p, q, v
298 if i == 4:
298 if i == 4:
299 return t, p, v
299 return t, p, v
300 if i == 5:
300 if i == 5:
301 return v, p, q
301 return v, p, q
302
302
303 golden_ratio = 0.618033988749895
303 golden_ratio = 0.618033988749895
304 h = 0.22717784590367374
304 h = 0.22717784590367374
305
305
306 for _ in xrange(n):
306 for _ in xrange(n):
307 h += golden_ratio
307 h += golden_ratio
308 h %= 1
308 h %= 1
309 HSV_tuple = [h, 0.95, 0.95]
309 HSV_tuple = [h, 0.95, 0.95]
310 RGB_tuple = hsv_to_rgb(*HSV_tuple)
310 RGB_tuple = hsv_to_rgb(*HSV_tuple)
311 yield map(lambda x: str(int(x * 256)), RGB_tuple)
311 yield map(lambda x: str(int(x * 256)), RGB_tuple)
312
312
313 cgenerator = gen_color()
313 cgenerator = gen_color()
314
314
315 def get_color_string(cs):
315 def get_color_string(cs):
316 if cs in color_dict:
316 if cs in color_dict:
317 col = color_dict[cs]
317 col = color_dict[cs]
318 else:
318 else:
319 col = color_dict[cs] = cgenerator.next()
319 col = color_dict[cs] = cgenerator.next()
320 return "color: rgb(%s)! important;" % (', '.join(col))
320 return "color: rgb(%s)! important;" % (', '.join(col))
321
321
322 def url_func(repo_name):
322 def url_func(repo_name):
323
323
324 def _url_func(changeset):
324 def _url_func(changeset):
325 author = changeset.author
325 author = changeset.author
326 date = changeset.date
326 date = changeset.date
327 message = tooltip(changeset.message)
327 message = tooltip(changeset.message)
328
328
329 tooltip_html = ("<div style='font-size:0.8em'><b>Author:</b>"
329 tooltip_html = ("<div style='font-size:0.8em'><b>Author:</b>"
330 " %s<br/><b>Date:</b> %s</b><br/><b>Message:"
330 " %s<br/><b>Date:</b> %s</b><br/><b>Message:"
331 "</b> %s<br/></div>")
331 "</b> %s<br/></div>")
332
332
333 tooltip_html = tooltip_html % (author, date, message)
333 tooltip_html = tooltip_html % (author, date, message)
334 lnk_format = '%5s:%s' % ('r%s' % changeset.revision,
334 lnk_format = '%5s:%s' % ('r%s' % changeset.revision,
335 short_id(changeset.raw_id))
335 short_id(changeset.raw_id))
336 uri = link_to(
336 uri = link_to(
337 lnk_format,
337 lnk_format,
338 url('changeset_home', repo_name=repo_name,
338 url('changeset_home', repo_name=repo_name,
339 revision=changeset.raw_id),
339 revision=changeset.raw_id),
340 style=get_color_string(changeset.raw_id),
340 style=get_color_string(changeset.raw_id),
341 class_='tooltip',
341 class_='tooltip',
342 title=tooltip_html
342 title=tooltip_html
343 )
343 )
344
344
345 uri += '\n'
345 uri += '\n'
346 return uri
346 return uri
347 return _url_func
347 return _url_func
348
348
349 return literal(annotate_highlight(filenode, url_func(repo_name), **kwargs))
349 return literal(annotate_highlight(filenode, url_func(repo_name), **kwargs))
350
350
351
351
352 def is_following_repo(repo_name, user_id):
352 def is_following_repo(repo_name, user_id):
353 from rhodecode.model.scm import ScmModel
353 from rhodecode.model.scm import ScmModel
354 return ScmModel().is_following_repo(repo_name, user_id)
354 return ScmModel().is_following_repo(repo_name, user_id)
355
355
356 flash = _Flash()
356 flash = _Flash()
357
357
358 #==============================================================================
358 #==============================================================================
359 # SCM FILTERS available via h.
359 # SCM FILTERS available via h.
360 #==============================================================================
360 #==============================================================================
361 from rhodecode.lib.vcs.utils import author_name, author_email
361 from rhodecode.lib.vcs.utils import author_name, author_email
362 from rhodecode.lib.utils2 import credentials_filter, age as _age
362 from rhodecode.lib.utils2 import credentials_filter, age as _age
363 from rhodecode.model.db import User, ChangesetStatus
363 from rhodecode.model.db import User, ChangesetStatus
364
364
365 age = lambda x: _age(x)
365 age = lambda x: _age(x)
366 capitalize = lambda x: x.capitalize()
366 capitalize = lambda x: x.capitalize()
367 email = author_email
367 email = author_email
368 short_id = lambda x: x[:12]
368 short_id = lambda x: x[:12]
369 hide_credentials = lambda x: ''.join(credentials_filter(x))
369 hide_credentials = lambda x: ''.join(credentials_filter(x))
370
370
371
371
372 def fmt_date(date):
372 def fmt_date(date):
373 if date:
373 if date:
374 _fmt = _(u"%a, %d %b %Y %H:%M:%S").encode('utf8')
374 _fmt = _(u"%a, %d %b %Y %H:%M:%S").encode('utf8')
375 return date.strftime(_fmt).decode('utf8')
375 return date.strftime(_fmt).decode('utf8')
376
376
377 return ""
377 return ""
378
378
379
379
380 def is_git(repository):
380 def is_git(repository):
381 if hasattr(repository, 'alias'):
381 if hasattr(repository, 'alias'):
382 _type = repository.alias
382 _type = repository.alias
383 elif hasattr(repository, 'repo_type'):
383 elif hasattr(repository, 'repo_type'):
384 _type = repository.repo_type
384 _type = repository.repo_type
385 else:
385 else:
386 _type = repository
386 _type = repository
387 return _type == 'git'
387 return _type == 'git'
388
388
389
389
390 def is_hg(repository):
390 def is_hg(repository):
391 if hasattr(repository, 'alias'):
391 if hasattr(repository, 'alias'):
392 _type = repository.alias
392 _type = repository.alias
393 elif hasattr(repository, 'repo_type'):
393 elif hasattr(repository, 'repo_type'):
394 _type = repository.repo_type
394 _type = repository.repo_type
395 else:
395 else:
396 _type = repository
396 _type = repository
397 return _type == 'hg'
397 return _type == 'hg'
398
398
399
399
400 def email_or_none(author):
400 def email_or_none(author):
401 # extract email from the commit string
401 # extract email from the commit string
402 _email = email(author)
402 _email = email(author)
403 if _email != '':
403 if _email != '':
404 # check it against RhodeCode database, and use the MAIN email for this
404 # check it against RhodeCode database, and use the MAIN email for this
405 # user
405 # user
406 user = User.get_by_email(_email, case_insensitive=True, cache=True)
406 user = User.get_by_email(_email, case_insensitive=True, cache=True)
407 if user is not None:
407 if user is not None:
408 return user.email
408 return user.email
409 return _email
409 return _email
410
410
411 # See if it contains a username we can get an email from
411 # See if it contains a username we can get an email from
412 user = User.get_by_username(author_name(author), case_insensitive=True,
412 user = User.get_by_username(author_name(author), case_insensitive=True,
413 cache=True)
413 cache=True)
414 if user is not None:
414 if user is not None:
415 return user.email
415 return user.email
416
416
417 # No valid email, not a valid user in the system, none!
417 # No valid email, not a valid user in the system, none!
418 return None
418 return None
419
419
420
420
421 def person(author, show_attr="username_and_name"):
421 def person(author, show_attr="username_and_name"):
422 # attr to return from fetched user
422 # attr to return from fetched user
423 person_getter = lambda usr: getattr(usr, show_attr)
423 person_getter = lambda usr: getattr(usr, show_attr)
424
424
425 # Valid email in the attribute passed, see if they're in the system
425 # Valid email in the attribute passed, see if they're in the system
426 _email = email(author)
426 _email = email(author)
427 if _email != '':
427 if _email != '':
428 user = User.get_by_email(_email, case_insensitive=True, cache=True)
428 user = User.get_by_email(_email, case_insensitive=True, cache=True)
429 if user is not None:
429 if user is not None:
430 return person_getter(user)
430 return person_getter(user)
431 return _email
431 return _email
432
432
433 # Maybe it's a username?
433 # Maybe it's a username?
434 _author = author_name(author)
434 _author = author_name(author)
435 user = User.get_by_username(_author, case_insensitive=True,
435 user = User.get_by_username(_author, case_insensitive=True,
436 cache=True)
436 cache=True)
437 if user is not None:
437 if user is not None:
438 return person_getter(user)
438 return person_getter(user)
439
439
440 # Still nothing? Just pass back the author name then
440 # Still nothing? Just pass back the author name then
441 return _author
441 return _author
442
442
443
443
444 def person_by_id(id_, show_attr="username_and_name"):
444 def person_by_id(id_, show_attr="username_and_name"):
445 # attr to return from fetched user
445 # attr to return from fetched user
446 person_getter = lambda usr: getattr(usr, show_attr)
446 person_getter = lambda usr: getattr(usr, show_attr)
447
447
448 #maybe it's an ID ?
448 #maybe it's an ID ?
449 if str(id_).isdigit() or isinstance(id_, int):
449 if str(id_).isdigit() or isinstance(id_, int):
450 id_ = int(id_)
450 id_ = int(id_)
451 user = User.get(id_)
451 user = User.get(id_)
452 if user is not None:
452 if user is not None:
453 return person_getter(user)
453 return person_getter(user)
454 return id_
454 return id_
455
455
456
456
457 def desc_stylize(value):
457 def desc_stylize(value):
458 """
458 """
459 converts tags from value into html equivalent
459 converts tags from value into html equivalent
460
460
461 :param value:
461 :param value:
462 """
462 """
463 value = re.sub(r'\[see\ \=\>\ *([a-zA-Z0-9\/\=\?\&\ \:\/\.\-]*)\]',
463 value = re.sub(r'\[see\ \=\>\ *([a-zA-Z0-9\/\=\?\&\ \:\/\.\-]*)\]',
464 '<div class="metatag" tag="see">see =&gt; \\1 </div>', value)
464 '<div class="metatag" tag="see">see =&gt; \\1 </div>', value)
465 value = re.sub(r'\[license\ \=\>\ *([a-zA-Z0-9\/\=\?\&\ \:\/\.\-]*)\]',
465 value = re.sub(r'\[license\ \=\>\ *([a-zA-Z0-9\/\=\?\&\ \:\/\.\-]*)\]',
466 '<div class="metatag" tag="license"><a href="http:\/\/www.opensource.org/licenses/\\1">\\1</a></div>', value)
466 '<div class="metatag" tag="license"><a href="http:\/\/www.opensource.org/licenses/\\1">\\1</a></div>', value)
467 value = re.sub(r'\[(requires|recommends|conflicts|base)\ \=\>\ *([a-zA-Z\-\/]*)\]',
467 value = re.sub(r'\[(requires|recommends|conflicts|base)\ \=\>\ *([a-zA-Z\-\/]*)\]',
468 '<div class="metatag" tag="\\1">\\1 =&gt; <a href="/\\2">\\2</a></div>', value)
468 '<div class="metatag" tag="\\1">\\1 =&gt; <a href="/\\2">\\2</a></div>', value)
469 value = re.sub(r'\[(lang|language)\ \=\>\ *([a-zA-Z\-\/\#\+]*)\]',
469 value = re.sub(r'\[(lang|language)\ \=\>\ *([a-zA-Z\-\/\#\+]*)\]',
470 '<div class="metatag" tag="lang">\\2</div>', value)
470 '<div class="metatag" tag="lang">\\2</div>', value)
471 value = re.sub(r'\[([a-z]+)\]',
471 value = re.sub(r'\[([a-z]+)\]',
472 '<div class="metatag" tag="\\1">\\1</div>', value)
472 '<div class="metatag" tag="\\1">\\1</div>', value)
473
473
474 return value
474 return value
475
475
476
476
477 def bool2icon(value):
477 def bool2icon(value):
478 """Returns True/False values represented as small html image of true/false
478 """Returns True/False values represented as small html image of true/false
479 icons
479 icons
480
480
481 :param value: bool value
481 :param value: bool value
482 """
482 """
483
483
484 if value is True:
484 if value is True:
485 return HTML.tag('img', src=url("/images/icons/accept.png"),
485 return HTML.tag('img', src=url("/images/icons/accept.png"),
486 alt=_('True'))
486 alt=_('True'))
487
487
488 if value is False:
488 if value is False:
489 return HTML.tag('img', src=url("/images/icons/cancel.png"),
489 return HTML.tag('img', src=url("/images/icons/cancel.png"),
490 alt=_('False'))
490 alt=_('False'))
491
491
492 return value
492 return value
493
493
494
494
495 def action_parser(user_log, feed=False, parse_cs=False):
495 def action_parser(user_log, feed=False, parse_cs=False):
496 """
496 """
497 This helper will action_map the specified string action into translated
497 This helper will action_map the specified string action into translated
498 fancy names with icons and links
498 fancy names with icons and links
499
499
500 :param user_log: user log instance
500 :param user_log: user log instance
501 :param feed: use output for feeds (no html and fancy icons)
501 :param feed: use output for feeds (no html and fancy icons)
502 :param parse_cs: parse Changesets into VCS instances
502 :param parse_cs: parse Changesets into VCS instances
503 """
503 """
504
504
505 action = user_log.action
505 action = user_log.action
506 action_params = ' '
506 action_params = ' '
507
507
508 x = action.split(':')
508 x = action.split(':')
509
509
510 if len(x) > 1:
510 if len(x) > 1:
511 action, action_params = x
511 action, action_params = x
512
512
513 def get_cs_links():
513 def get_cs_links():
514 revs_limit = 3 # display this amount always
514 revs_limit = 3 # display this amount always
515 revs_top_limit = 50 # show upto this amount of changesets hidden
515 revs_top_limit = 50 # show upto this amount of changesets hidden
516 revs_ids = action_params.split(',')
516 revs_ids = action_params.split(',')
517 deleted = user_log.repository is None
517 deleted = user_log.repository is None
518 if deleted:
518 if deleted:
519 return ','.join(revs_ids)
519 return ','.join(revs_ids)
520
520
521 repo_name = user_log.repository.repo_name
521 repo_name = user_log.repository.repo_name
522
522
523 def lnk(rev, repo_name):
523 def lnk(rev, repo_name):
524 if isinstance(rev, BaseChangeset) or isinstance(rev, AttributeDict):
524 if isinstance(rev, BaseChangeset) or isinstance(rev, AttributeDict):
525 lazy_cs = True
525 lazy_cs = True
526 if getattr(rev, 'op', None) and getattr(rev, 'ref_name', None):
526 if getattr(rev, 'op', None) and getattr(rev, 'ref_name', None):
527 lazy_cs = False
527 lazy_cs = False
528 lbl = '?'
528 lbl = '?'
529 if rev.op == 'delete_branch':
529 if rev.op == 'delete_branch':
530 lbl = '%s' % _('Deleted branch: %s') % rev.ref_name
530 lbl = '%s' % _('Deleted branch: %s') % rev.ref_name
531 title = ''
531 title = ''
532 elif rev.op == 'tag':
532 elif rev.op == 'tag':
533 lbl = '%s' % _('Created tag: %s') % rev.ref_name
533 lbl = '%s' % _('Created tag: %s') % rev.ref_name
534 title = ''
534 title = ''
535 _url = '#'
535 _url = '#'
536
536
537 else:
537 else:
538 lbl = '%s' % (rev.short_id[:8])
538 lbl = '%s' % (rev.short_id[:8])
539 _url = url('changeset_home', repo_name=repo_name,
539 _url = url('changeset_home', repo_name=repo_name,
540 revision=rev.raw_id)
540 revision=rev.raw_id)
541 title = tooltip(rev.message)
541 title = tooltip(rev.message)
542 else:
542 else:
543 ## changeset cannot be found/striped/removed etc.
543 ## changeset cannot be found/striped/removed etc.
544 lbl = ('%s' % rev)[:12]
544 lbl = ('%s' % rev)[:12]
545 _url = '#'
545 _url = '#'
546 title = _('Changeset not found')
546 title = _('Changeset not found')
547 if parse_cs:
547 if parse_cs:
548 return link_to(lbl, _url, title=title, class_='tooltip')
548 return link_to(lbl, _url, title=title, class_='tooltip')
549 return link_to(lbl, _url, raw_id=rev.raw_id, repo_name=repo_name,
549 return link_to(lbl, _url, raw_id=rev.raw_id, repo_name=repo_name,
550 class_='lazy-cs' if lazy_cs else '')
550 class_='lazy-cs' if lazy_cs else '')
551
551
552 revs = []
552 revs = []
553 if len(filter(lambda v: v != '', revs_ids)) > 0:
553 if len(filter(lambda v: v != '', revs_ids)) > 0:
554 repo = None
554 repo = None
555 for rev in revs_ids[:revs_top_limit]:
555 for rev in revs_ids[:revs_top_limit]:
556 _op = _name = None
556 _op = _name = None
557 if len(rev.split('=>')) == 2:
557 if len(rev.split('=>')) == 2:
558 _op, _name = rev.split('=>')
558 _op, _name = rev.split('=>')
559
559
560 # we want parsed changesets, or new log store format is bad
560 # we want parsed changesets, or new log store format is bad
561 if parse_cs:
561 if parse_cs:
562 try:
562 try:
563 if repo is None:
563 if repo is None:
564 repo = user_log.repository.scm_instance
564 repo = user_log.repository.scm_instance
565 _rev = repo.get_changeset(rev)
565 _rev = repo.get_changeset(rev)
566 revs.append(_rev)
566 revs.append(_rev)
567 except ChangesetDoesNotExistError:
567 except ChangesetDoesNotExistError:
568 log.error('cannot find revision %s in this repo' % rev)
568 log.error('cannot find revision %s in this repo' % rev)
569 revs.append(rev)
569 revs.append(rev)
570 continue
570 continue
571 else:
571 else:
572 _rev = AttributeDict({
572 _rev = AttributeDict({
573 'short_id': rev[:12],
573 'short_id': rev[:12],
574 'raw_id': rev,
574 'raw_id': rev,
575 'message': '',
575 'message': '',
576 'op': _op,
576 'op': _op,
577 'ref_name': _name
577 'ref_name': _name
578 })
578 })
579 revs.append(_rev)
579 revs.append(_rev)
580 cs_links = []
580 cs_links = []
581 cs_links.append(" " + ', '.join(
581 cs_links.append(" " + ', '.join(
582 [lnk(rev, repo_name) for rev in revs[:revs_limit]]
582 [lnk(rev, repo_name) for rev in revs[:revs_limit]]
583 )
583 )
584 )
584 )
585
585
586 compare_view = (
586 compare_view = (
587 ' <div class="compare_view tooltip" title="%s">'
587 ' <div class="compare_view tooltip" title="%s">'
588 '<a href="%s">%s</a> </div>' % (
588 '<a href="%s">%s</a> </div>' % (
589 _('Show all combined changesets %s->%s') % (
589 _('Show all combined changesets %s->%s') % (
590 revs_ids[0][:12], revs_ids[-1][:12]
590 revs_ids[0][:12], revs_ids[-1][:12]
591 ),
591 ),
592 url('changeset_home', repo_name=repo_name,
592 url('changeset_home', repo_name=repo_name,
593 revision='%s...%s' % (revs_ids[0], revs_ids[-1])
593 revision='%s...%s' % (revs_ids[0], revs_ids[-1])
594 ),
594 ),
595 _('compare view')
595 _('compare view')
596 )
596 )
597 )
597 )
598
598
599 # if we have exactly one more than normally displayed
599 # if we have exactly one more than normally displayed
600 # just display it, takes less space than displaying
600 # just display it, takes less space than displaying
601 # "and 1 more revisions"
601 # "and 1 more revisions"
602 if len(revs_ids) == revs_limit + 1:
602 if len(revs_ids) == revs_limit + 1:
603 rev = revs[revs_limit]
603 rev = revs[revs_limit]
604 cs_links.append(", " + lnk(rev, repo_name))
604 cs_links.append(", " + lnk(rev, repo_name))
605
605
606 # hidden-by-default ones
606 # hidden-by-default ones
607 if len(revs_ids) > revs_limit + 1:
607 if len(revs_ids) > revs_limit + 1:
608 uniq_id = revs_ids[0]
608 uniq_id = revs_ids[0]
609 html_tmpl = (
609 html_tmpl = (
610 '<span> %s <a class="show_more" id="_%s" '
610 '<span> %s <a class="show_more" id="_%s" '
611 'href="#more">%s</a> %s</span>'
611 'href="#more">%s</a> %s</span>'
612 )
612 )
613 if not feed:
613 if not feed:
614 cs_links.append(html_tmpl % (
614 cs_links.append(html_tmpl % (
615 _('and'),
615 _('and'),
616 uniq_id, _('%s more') % (len(revs_ids) - revs_limit),
616 uniq_id, _('%s more') % (len(revs_ids) - revs_limit),
617 _('revisions')
617 _('revisions')
618 )
618 )
619 )
619 )
620
620
621 if not feed:
621 if not feed:
622 html_tmpl = '<span id="%s" style="display:none">, %s </span>'
622 html_tmpl = '<span id="%s" style="display:none">, %s </span>'
623 else:
623 else:
624 html_tmpl = '<span id="%s"> %s </span>'
624 html_tmpl = '<span id="%s"> %s </span>'
625
625
626 morelinks = ', '.join(
626 morelinks = ', '.join(
627 [lnk(rev, repo_name) for rev in revs[revs_limit:]]
627 [lnk(rev, repo_name) for rev in revs[revs_limit:]]
628 )
628 )
629
629
630 if len(revs_ids) > revs_top_limit:
630 if len(revs_ids) > revs_top_limit:
631 morelinks += ', ...'
631 morelinks += ', ...'
632
632
633 cs_links.append(html_tmpl % (uniq_id, morelinks))
633 cs_links.append(html_tmpl % (uniq_id, morelinks))
634 if len(revs) > 1:
634 if len(revs) > 1:
635 cs_links.append(compare_view)
635 cs_links.append(compare_view)
636 return ''.join(cs_links)
636 return ''.join(cs_links)
637
637
638 def get_fork_name():
638 def get_fork_name():
639 repo_name = action_params
639 repo_name = action_params
640 _url = url('summary_home', repo_name=repo_name)
640 _url = url('summary_home', repo_name=repo_name)
641 return _('fork name %s') % link_to(action_params, _url)
641 return _('fork name %s') % link_to(action_params, _url)
642
642
643 def get_user_name():
643 def get_user_name():
644 user_name = action_params
644 user_name = action_params
645 return user_name
645 return user_name
646
646
647 def get_users_group():
647 def get_users_group():
648 group_name = action_params
648 group_name = action_params
649 return group_name
649 return group_name
650
650
651 def get_pull_request():
651 def get_pull_request():
652 pull_request_id = action_params
652 pull_request_id = action_params
653 deleted = user_log.repository is None
653 deleted = user_log.repository is None
654 if deleted:
654 if deleted:
655 repo_name = user_log.repository_name
655 repo_name = user_log.repository_name
656 else:
656 else:
657 repo_name = user_log.repository.repo_name
657 repo_name = user_log.repository.repo_name
658 return link_to(_('Pull request #%s') % pull_request_id,
658 return link_to(_('Pull request #%s') % pull_request_id,
659 url('pullrequest_show', repo_name=repo_name,
659 url('pullrequest_show', repo_name=repo_name,
660 pull_request_id=pull_request_id))
660 pull_request_id=pull_request_id))
661
661
662 # action : translated str, callback(extractor), icon
662 # action : translated str, callback(extractor), icon
663 action_map = {
663 action_map = {
664 'user_deleted_repo': (_('[deleted] repository'),
664 'user_deleted_repo': (_('[deleted] repository'),
665 None, 'database_delete.png'),
665 None, 'database_delete.png'),
666 'user_created_repo': (_('[created] repository'),
666 'user_created_repo': (_('[created] repository'),
667 None, 'database_add.png'),
667 None, 'database_add.png'),
668 'user_created_fork': (_('[created] repository as fork'),
668 'user_created_fork': (_('[created] repository as fork'),
669 None, 'arrow_divide.png'),
669 None, 'arrow_divide.png'),
670 'user_forked_repo': (_('[forked] repository'),
670 'user_forked_repo': (_('[forked] repository'),
671 get_fork_name, 'arrow_divide.png'),
671 get_fork_name, 'arrow_divide.png'),
672 'user_updated_repo': (_('[updated] repository'),
672 'user_updated_repo': (_('[updated] repository'),
673 None, 'database_edit.png'),
673 None, 'database_edit.png'),
674 'admin_deleted_repo': (_('[delete] repository'),
674 'admin_deleted_repo': (_('[delete] repository'),
675 None, 'database_delete.png'),
675 None, 'database_delete.png'),
676 'admin_created_repo': (_('[created] repository'),
676 'admin_created_repo': (_('[created] repository'),
677 None, 'database_add.png'),
677 None, 'database_add.png'),
678 'admin_forked_repo': (_('[forked] repository'),
678 'admin_forked_repo': (_('[forked] repository'),
679 None, 'arrow_divide.png'),
679 None, 'arrow_divide.png'),
680 'admin_updated_repo': (_('[updated] repository'),
680 'admin_updated_repo': (_('[updated] repository'),
681 None, 'database_edit.png'),
681 None, 'database_edit.png'),
682 'admin_created_user': (_('[created] user'),
682 'admin_created_user': (_('[created] user'),
683 get_user_name, 'user_add.png'),
683 get_user_name, 'user_add.png'),
684 'admin_updated_user': (_('[updated] user'),
684 'admin_updated_user': (_('[updated] user'),
685 get_user_name, 'user_edit.png'),
685 get_user_name, 'user_edit.png'),
686 'admin_created_users_group': (_('[created] users group'),
686 'admin_created_users_group': (_('[created] users group'),
687 get_users_group, 'group_add.png'),
687 get_users_group, 'group_add.png'),
688 'admin_updated_users_group': (_('[updated] users group'),
688 'admin_updated_users_group': (_('[updated] users group'),
689 get_users_group, 'group_edit.png'),
689 get_users_group, 'group_edit.png'),
690 'user_commented_revision': (_('[commented] on revision in repository'),
690 'user_commented_revision': (_('[commented] on revision in repository'),
691 get_cs_links, 'comment_add.png'),
691 get_cs_links, 'comment_add.png'),
692 'user_commented_pull_request': (_('[commented] on pull request for'),
692 'user_commented_pull_request': (_('[commented] on pull request for'),
693 get_pull_request, 'comment_add.png'),
693 get_pull_request, 'comment_add.png'),
694 'user_closed_pull_request': (_('[closed] pull request for'),
694 'user_closed_pull_request': (_('[closed] pull request for'),
695 get_pull_request, 'tick.png'),
695 get_pull_request, 'tick.png'),
696 'push': (_('[pushed] into'),
696 'push': (_('[pushed] into'),
697 get_cs_links, 'script_add.png'),
697 get_cs_links, 'script_add.png'),
698 'push_local': (_('[committed via RhodeCode] into repository'),
698 'push_local': (_('[committed via RhodeCode] into repository'),
699 get_cs_links, 'script_edit.png'),
699 get_cs_links, 'script_edit.png'),
700 'push_remote': (_('[pulled from remote] into repository'),
700 'push_remote': (_('[pulled from remote] into repository'),
701 get_cs_links, 'connect.png'),
701 get_cs_links, 'connect.png'),
702 'pull': (_('[pulled] from'),
702 'pull': (_('[pulled] from'),
703 None, 'down_16.png'),
703 None, 'down_16.png'),
704 'started_following_repo': (_('[started following] repository'),
704 'started_following_repo': (_('[started following] repository'),
705 None, 'heart_add.png'),
705 None, 'heart_add.png'),
706 'stopped_following_repo': (_('[stopped following] repository'),
706 'stopped_following_repo': (_('[stopped following] repository'),
707 None, 'heart_delete.png'),
707 None, 'heart_delete.png'),
708 }
708 }
709
709
710 action_str = action_map.get(action, action)
710 action_str = action_map.get(action, action)
711 if feed:
711 if feed:
712 action = action_str[0].replace('[', '').replace(']', '')
712 action = action_str[0].replace('[', '').replace(']', '')
713 else:
713 else:
714 action = action_str[0]\
714 action = action_str[0]\
715 .replace('[', '<span class="journal_highlight">')\
715 .replace('[', '<span class="journal_highlight">')\
716 .replace(']', '</span>')
716 .replace(']', '</span>')
717
717
718 action_params_func = lambda: ""
718 action_params_func = lambda: ""
719
719
720 if callable(action_str[1]):
720 if callable(action_str[1]):
721 action_params_func = action_str[1]
721 action_params_func = action_str[1]
722
722
723 def action_parser_icon():
723 def action_parser_icon():
724 action = user_log.action
724 action = user_log.action
725 action_params = None
725 action_params = None
726 x = action.split(':')
726 x = action.split(':')
727
727
728 if len(x) > 1:
728 if len(x) > 1:
729 action, action_params = x
729 action, action_params = x
730
730
731 tmpl = """<img src="%s%s" alt="%s"/>"""
731 tmpl = """<img src="%s%s" alt="%s"/>"""
732 ico = action_map.get(action, ['', '', ''])[2]
732 ico = action_map.get(action, ['', '', ''])[2]
733 return literal(tmpl % ((url('/images/icons/')), ico, action))
733 return literal(tmpl % ((url('/images/icons/')), ico, action))
734
734
735 # returned callbacks we need to call to get
735 # returned callbacks we need to call to get
736 return [lambda: literal(action), action_params_func, action_parser_icon]
736 return [lambda: literal(action), action_params_func, action_parser_icon]
737
737
738
738
739
739
740 #==============================================================================
740 #==============================================================================
741 # PERMS
741 # PERMS
742 #==============================================================================
742 #==============================================================================
743 from rhodecode.lib.auth import HasPermissionAny, HasPermissionAll, \
743 from rhodecode.lib.auth import HasPermissionAny, HasPermissionAll, \
744 HasRepoPermissionAny, HasRepoPermissionAll
744 HasRepoPermissionAny, HasRepoPermissionAll
745
745
746
746
747 #==============================================================================
747 #==============================================================================
748 # GRAVATAR URL
748 # GRAVATAR URL
749 #==============================================================================
749 #==============================================================================
750
750
751 def gravatar_url(email_address, size=30):
751 def gravatar_url(email_address, size=30):
752 from pylons import url # doh, we need to re-import url to mock it later
752 from pylons import url # doh, we need to re-import url to mock it later
753
753
754 if (not str2bool(config['app_conf'].get('use_gravatar')) or
754 if (not str2bool(config['app_conf'].get('use_gravatar')) or
755 not email_address or email_address == 'anonymous@rhodecode.org'):
755 not email_address or email_address == 'anonymous@rhodecode.org'):
756 f = lambda a, l: min(l, key=lambda x: abs(x - a))
756 f = lambda a, l: min(l, key=lambda x: abs(x - a))
757 return url("/images/user%s.png" % f(size, [14, 16, 20, 24, 30]))
757 return url("/images/user%s.png" % f(size, [14, 16, 20, 24, 30]))
758
758
759 if(str2bool(config['app_conf'].get('use_gravatar')) and
759 if(str2bool(config['app_conf'].get('use_gravatar')) and
760 config['app_conf'].get('alternative_gravatar_url')):
760 config['app_conf'].get('alternative_gravatar_url')):
761 tmpl = config['app_conf'].get('alternative_gravatar_url', '')
761 tmpl = config['app_conf'].get('alternative_gravatar_url', '')
762 parsed_url = urlparse.urlparse(url.current(qualified=True))
762 parsed_url = urlparse.urlparse(url.current(qualified=True))
763 tmpl = tmpl.replace('{email}', email_address)\
763 tmpl = tmpl.replace('{email}', email_address)\
764 .replace('{md5email}', hashlib.md5(email_address.lower()).hexdigest()) \
764 .replace('{md5email}', hashlib.md5(email_address.lower()).hexdigest()) \
765 .replace('{netloc}', parsed_url.netloc)\
765 .replace('{netloc}', parsed_url.netloc)\
766 .replace('{scheme}', parsed_url.scheme)\
766 .replace('{scheme}', parsed_url.scheme)\
767 .replace('{size}', str(size))
767 .replace('{size}', str(size))
768 return tmpl
768 return tmpl
769
769
770 ssl_enabled = 'https' == request.environ.get('wsgi.url_scheme')
770 ssl_enabled = 'https' == request.environ.get('wsgi.url_scheme')
771 default = 'identicon'
771 default = 'identicon'
772 baseurl_nossl = "http://www.gravatar.com/avatar/"
772 baseurl_nossl = "http://www.gravatar.com/avatar/"
773 baseurl_ssl = "https://secure.gravatar.com/avatar/"
773 baseurl_ssl = "https://secure.gravatar.com/avatar/"
774 baseurl = baseurl_ssl if ssl_enabled else baseurl_nossl
774 baseurl = baseurl_ssl if ssl_enabled else baseurl_nossl
775
775
776 if isinstance(email_address, unicode):
776 if isinstance(email_address, unicode):
777 #hashlib crashes on unicode items
777 #hashlib crashes on unicode items
778 email_address = safe_str(email_address)
778 email_address = safe_str(email_address)
779 # construct the url
779 # construct the url
780 gravatar_url = baseurl + hashlib.md5(email_address.lower()).hexdigest() + "?"
780 gravatar_url = baseurl + hashlib.md5(email_address.lower()).hexdigest() + "?"
781 gravatar_url += urllib.urlencode({'d': default, 's': str(size)})
781 gravatar_url += urllib.urlencode({'d': default, 's': str(size)})
782
782
783 return gravatar_url
783 return gravatar_url
784
784
785
785
786 #==============================================================================
786 #==============================================================================
787 # REPO PAGER, PAGER FOR REPOSITORY
787 # REPO PAGER, PAGER FOR REPOSITORY
788 #==============================================================================
788 #==============================================================================
789 class RepoPage(Page):
789 class RepoPage(Page):
790
790
791 def __init__(self, collection, page=1, items_per_page=20,
791 def __init__(self, collection, page=1, items_per_page=20,
792 item_count=None, url=None, **kwargs):
792 item_count=None, url=None, **kwargs):
793
793
794 """Create a "RepoPage" instance. special pager for paging
794 """Create a "RepoPage" instance. special pager for paging
795 repository
795 repository
796 """
796 """
797 self._url_generator = url
797 self._url_generator = url
798
798
799 # Safe the kwargs class-wide so they can be used in the pager() method
799 # Safe the kwargs class-wide so they can be used in the pager() method
800 self.kwargs = kwargs
800 self.kwargs = kwargs
801
801
802 # Save a reference to the collection
802 # Save a reference to the collection
803 self.original_collection = collection
803 self.original_collection = collection
804
804
805 self.collection = collection
805 self.collection = collection
806
806
807 # The self.page is the number of the current page.
807 # The self.page is the number of the current page.
808 # The first page has the number 1!
808 # The first page has the number 1!
809 try:
809 try:
810 self.page = int(page) # make it int() if we get it as a string
810 self.page = int(page) # make it int() if we get it as a string
811 except (ValueError, TypeError):
811 except (ValueError, TypeError):
812 self.page = 1
812 self.page = 1
813
813
814 self.items_per_page = items_per_page
814 self.items_per_page = items_per_page
815
815
816 # Unless the user tells us how many items the collections has
816 # Unless the user tells us how many items the collections has
817 # we calculate that ourselves.
817 # we calculate that ourselves.
818 if item_count is not None:
818 if item_count is not None:
819 self.item_count = item_count
819 self.item_count = item_count
820 else:
820 else:
821 self.item_count = len(self.collection)
821 self.item_count = len(self.collection)
822
822
823 # Compute the number of the first and last available page
823 # Compute the number of the first and last available page
824 if self.item_count > 0:
824 if self.item_count > 0:
825 self.first_page = 1
825 self.first_page = 1
826 self.page_count = int(math.ceil(float(self.item_count) /
826 self.page_count = int(math.ceil(float(self.item_count) /
827 self.items_per_page))
827 self.items_per_page))
828 self.last_page = self.first_page + self.page_count - 1
828 self.last_page = self.first_page + self.page_count - 1
829
829
830 # Make sure that the requested page number is the range of
830 # Make sure that the requested page number is the range of
831 # valid pages
831 # valid pages
832 if self.page > self.last_page:
832 if self.page > self.last_page:
833 self.page = self.last_page
833 self.page = self.last_page
834 elif self.page < self.first_page:
834 elif self.page < self.first_page:
835 self.page = self.first_page
835 self.page = self.first_page
836
836
837 # Note: the number of items on this page can be less than
837 # Note: the number of items on this page can be less than
838 # items_per_page if the last page is not full
838 # items_per_page if the last page is not full
839 self.first_item = max(0, (self.item_count) - (self.page *
839 self.first_item = max(0, (self.item_count) - (self.page *
840 items_per_page))
840 items_per_page))
841 self.last_item = ((self.item_count - 1) - items_per_page *
841 self.last_item = ((self.item_count - 1) - items_per_page *
842 (self.page - 1))
842 (self.page - 1))
843
843
844 self.items = list(self.collection[self.first_item:self.last_item + 1])
844 self.items = list(self.collection[self.first_item:self.last_item + 1])
845
845
846 # Links to previous and next page
846 # Links to previous and next page
847 if self.page > self.first_page:
847 if self.page > self.first_page:
848 self.previous_page = self.page - 1
848 self.previous_page = self.page - 1
849 else:
849 else:
850 self.previous_page = None
850 self.previous_page = None
851
851
852 if self.page < self.last_page:
852 if self.page < self.last_page:
853 self.next_page = self.page + 1
853 self.next_page = self.page + 1
854 else:
854 else:
855 self.next_page = None
855 self.next_page = None
856
856
857 # No items available
857 # No items available
858 else:
858 else:
859 self.first_page = None
859 self.first_page = None
860 self.page_count = 0
860 self.page_count = 0
861 self.last_page = None
861 self.last_page = None
862 self.first_item = None
862 self.first_item = None
863 self.last_item = None
863 self.last_item = None
864 self.previous_page = None
864 self.previous_page = None
865 self.next_page = None
865 self.next_page = None
866 self.items = []
866 self.items = []
867
867
868 # This is a subclass of the 'list' type. Initialise the list now.
868 # This is a subclass of the 'list' type. Initialise the list now.
869 list.__init__(self, reversed(self.items))
869 list.__init__(self, reversed(self.items))
870
870
871
871
872 def changed_tooltip(nodes):
872 def changed_tooltip(nodes):
873 """
873 """
874 Generates a html string for changed nodes in changeset page.
874 Generates a html string for changed nodes in changeset page.
875 It limits the output to 30 entries
875 It limits the output to 30 entries
876
876
877 :param nodes: LazyNodesGenerator
877 :param nodes: LazyNodesGenerator
878 """
878 """
879 if nodes:
879 if nodes:
880 pref = ': <br/> '
880 pref = ': <br/> '
881 suf = ''
881 suf = ''
882 if len(nodes) > 30:
882 if len(nodes) > 30:
883 suf = '<br/>' + _(' and %s more') % (len(nodes) - 30)
883 suf = '<br/>' + _(' and %s more') % (len(nodes) - 30)
884 return literal(pref + '<br/> '.join([safe_unicode(x.path)
884 return literal(pref + '<br/> '.join([safe_unicode(x.path)
885 for x in nodes[:30]]) + suf)
885 for x in nodes[:30]]) + suf)
886 else:
886 else:
887 return ': ' + _('No Files')
887 return ': ' + _('No Files')
888
888
889
889
890 def repo_link(groups_and_repos, last_url=None):
890 def repo_link(groups_and_repos, last_url=None):
891 """
891 """
892 Makes a breadcrumbs link to repo within a group
892 Makes a breadcrumbs link to repo within a group
893 joins &raquo; on each group to create a fancy link
893 joins &raquo; on each group to create a fancy link
894
894
895 ex::
895 ex::
896 group >> subgroup >> repo
896 group >> subgroup >> repo
897
897
898 :param groups_and_repos:
898 :param groups_and_repos:
899 :param last_url:
899 :param last_url:
900 """
900 """
901 groups, repo_name = groups_and_repos
901 groups, repo_name = groups_and_repos
902 last_link = link_to(repo_name, last_url) if last_url else repo_name
902 last_link = link_to(repo_name, last_url) if last_url else repo_name
903
903
904 if not groups:
904 if not groups:
905 if last_url:
905 if last_url:
906 return last_link
906 return last_link
907 return repo_name
907 return repo_name
908 else:
908 else:
909 def make_link(group):
909 def make_link(group):
910 return link_to(group.name,
910 return link_to(group.name,
911 url('repos_group_home', group_name=group.group_name))
911 url('repos_group_home', group_name=group.group_name))
912 return literal(' &raquo; '.join(map(make_link, groups) + [last_link]))
912 return literal(' &raquo; '.join(map(make_link, groups) + [last_link]))
913
913
914
914
915 def fancy_file_stats(stats):
915 def fancy_file_stats(stats):
916 """
916 """
917 Displays a fancy two colored bar for number of added/deleted
917 Displays a fancy two colored bar for number of added/deleted
918 lines of code on file
918 lines of code on file
919
919
920 :param stats: two element list of added/deleted lines of code
920 :param stats: two element list of added/deleted lines of code
921 """
921 """
922 def cgen(l_type, a_v, d_v):
922 def cgen(l_type, a_v, d_v):
923 mapping = {'tr': 'top-right-rounded-corner-mid',
923 mapping = {'tr': 'top-right-rounded-corner-mid',
924 'tl': 'top-left-rounded-corner-mid',
924 'tl': 'top-left-rounded-corner-mid',
925 'br': 'bottom-right-rounded-corner-mid',
925 'br': 'bottom-right-rounded-corner-mid',
926 'bl': 'bottom-left-rounded-corner-mid'}
926 'bl': 'bottom-left-rounded-corner-mid'}
927 map_getter = lambda x: mapping[x]
927 map_getter = lambda x: mapping[x]
928
928
929 if l_type == 'a' and d_v:
929 if l_type == 'a' and d_v:
930 #case when added and deleted are present
930 #case when added and deleted are present
931 return ' '.join(map(map_getter, ['tl', 'bl']))
931 return ' '.join(map(map_getter, ['tl', 'bl']))
932
932
933 if l_type == 'a' and not d_v:
933 if l_type == 'a' and not d_v:
934 return ' '.join(map(map_getter, ['tr', 'br', 'tl', 'bl']))
934 return ' '.join(map(map_getter, ['tr', 'br', 'tl', 'bl']))
935
935
936 if l_type == 'd' and a_v:
936 if l_type == 'd' and a_v:
937 return ' '.join(map(map_getter, ['tr', 'br']))
937 return ' '.join(map(map_getter, ['tr', 'br']))
938
938
939 if l_type == 'd' and not a_v:
939 if l_type == 'd' and not a_v:
940 return ' '.join(map(map_getter, ['tr', 'br', 'tl', 'bl']))
940 return ' '.join(map(map_getter, ['tr', 'br', 'tl', 'bl']))
941
941
942 a, d = stats[0], stats[1]
942 a, d = stats[0], stats[1]
943 width = 100
943 width = 100
944
944
945 if a == 'b':
945 if a == 'b':
946 #binary mode
946 #binary mode
947 b_d = '<div class="bin%s %s" style="width:100%%">%s</div>' % (d, cgen('a', a_v='', d_v=0), 'bin')
947 b_d = '<div class="bin%s %s" style="width:100%%">%s</div>' % (d, cgen('a', a_v='', d_v=0), 'bin')
948 b_a = '<div class="bin1" style="width:0%%">%s</div>' % ('bin')
948 b_a = '<div class="bin1" style="width:0%%">%s</div>' % ('bin')
949 return literal('<div style="width:%spx">%s%s</div>' % (width, b_a, b_d))
949 return literal('<div style="width:%spx">%s%s</div>' % (width, b_a, b_d))
950
950
951 t = stats[0] + stats[1]
951 t = stats[0] + stats[1]
952 unit = float(width) / (t or 1)
952 unit = float(width) / (t or 1)
953
953
954 # needs > 9% of width to be visible or 0 to be hidden
954 # needs > 9% of width to be visible or 0 to be hidden
955 a_p = max(9, unit * a) if a > 0 else 0
955 a_p = max(9, unit * a) if a > 0 else 0
956 d_p = max(9, unit * d) if d > 0 else 0
956 d_p = max(9, unit * d) if d > 0 else 0
957 p_sum = a_p + d_p
957 p_sum = a_p + d_p
958
958
959 if p_sum > width:
959 if p_sum > width:
960 #adjust the percentage to be == 100% since we adjusted to 9
960 #adjust the percentage to be == 100% since we adjusted to 9
961 if a_p > d_p:
961 if a_p > d_p:
962 a_p = a_p - (p_sum - width)
962 a_p = a_p - (p_sum - width)
963 else:
963 else:
964 d_p = d_p - (p_sum - width)
964 d_p = d_p - (p_sum - width)
965
965
966 a_v = a if a > 0 else ''
966 a_v = a if a > 0 else ''
967 d_v = d if d > 0 else ''
967 d_v = d if d > 0 else ''
968
968
969 d_a = '<div class="added %s" style="width:%s%%">%s</div>' % (
969 d_a = '<div class="added %s" style="width:%s%%">%s</div>' % (
970 cgen('a', a_v, d_v), a_p, a_v
970 cgen('a', a_v, d_v), a_p, a_v
971 )
971 )
972 d_d = '<div class="deleted %s" style="width:%s%%">%s</div>' % (
972 d_d = '<div class="deleted %s" style="width:%s%%">%s</div>' % (
973 cgen('d', a_v, d_v), d_p, d_v
973 cgen('d', a_v, d_v), d_p, d_v
974 )
974 )
975 return literal('<div style="width:%spx">%s%s</div>' % (width, d_a, d_d))
975 return literal('<div style="width:%spx">%s%s</div>' % (width, d_a, d_d))
976
976
977
977
978 def urlify_text(text_):
978 def urlify_text(text_):
979
979
980 url_pat = re.compile(r'''(http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]'''
980 url_pat = re.compile(r'''(http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]'''
981 '''|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)''')
981 '''|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+)''')
982
982
983 def url_func(match_obj):
983 def url_func(match_obj):
984 url_full = match_obj.groups()[0]
984 url_full = match_obj.groups()[0]
985 return '<a href="%(url)s">%(url)s</a>' % ({'url': url_full})
985 return '<a href="%(url)s">%(url)s</a>' % ({'url': url_full})
986
986
987 return literal(url_pat.sub(url_func, text_))
987 return literal(url_pat.sub(url_func, text_))
988
988
989
989
990 def urlify_changesets(text_, repository):
990 def urlify_changesets(text_, repository):
991 """
991 """
992 Extract revision ids from changeset and make link from them
992 Extract revision ids from changeset and make link from them
993
993
994 :param text_:
994 :param text_:
995 :param repository:
995 :param repository:
996 """
996 """
997
997
998 URL_PAT = re.compile(r'([0-9a-fA-F]{12,})')
998 URL_PAT = re.compile(r'([0-9a-fA-F]{12,})')
999
999
1000 def url_func(match_obj):
1000 def url_func(match_obj):
1001 rev = match_obj.groups()[0]
1001 rev = match_obj.groups()[0]
1002 pref = ''
1002 pref = ''
1003 if match_obj.group().startswith(' '):
1003 if match_obj.group().startswith(' '):
1004 pref = ' '
1004 pref = ' '
1005 tmpl = (
1005 tmpl = (
1006 '%(pref)s<a class="%(cls)s" href="%(url)s">'
1006 '%(pref)s<a class="%(cls)s" href="%(url)s">'
1007 '%(rev)s'
1007 '%(rev)s'
1008 '</a>'
1008 '</a>'
1009 )
1009 )
1010 return tmpl % {
1010 return tmpl % {
1011 'pref': pref,
1011 'pref': pref,
1012 'cls': 'revision-link',
1012 'cls': 'revision-link',
1013 'url': url('changeset_home', repo_name=repository, revision=rev),
1013 'url': url('changeset_home', repo_name=repository, revision=rev),
1014 'rev': rev,
1014 'rev': rev,
1015 }
1015 }
1016
1016
1017 newtext = URL_PAT.sub(url_func, text_)
1017 newtext = URL_PAT.sub(url_func, text_)
1018
1018
1019 return newtext
1019 return newtext
1020
1020
1021
1021
1022 def urlify_commit(text_, repository=None, link_=None):
1022 def urlify_commit(text_, repository=None, link_=None):
1023 """
1023 """
1024 Parses given text message and makes proper links.
1024 Parses given text message and makes proper links.
1025 issues are linked to given issue-server, and rest is a changeset link
1025 issues are linked to given issue-server, and rest is a changeset link
1026 if link_ is given, in other case it's a plain text
1026 if link_ is given, in other case it's a plain text
1027
1027
1028 :param text_:
1028 :param text_:
1029 :param repository:
1029 :param repository:
1030 :param link_: changeset link
1030 :param link_: changeset link
1031 """
1031 """
1032 import traceback
1032 import traceback
1033
1033
1034 def escaper(string):
1034 def escaper(string):
1035 return string.replace('<', '&lt;').replace('>', '&gt;')
1035 return string.replace('<', '&lt;').replace('>', '&gt;')
1036
1036
1037 def linkify_others(t, l):
1037 def linkify_others(t, l):
1038 urls = re.compile(r'(\<a.*?\<\/a\>)',)
1038 urls = re.compile(r'(\<a.*?\<\/a\>)',)
1039 links = []
1039 links = []
1040 for e in urls.split(t):
1040 for e in urls.split(t):
1041 if not urls.match(e):
1041 if not urls.match(e):
1042 links.append('<a class="message-link" href="%s">%s</a>' % (l, e))
1042 links.append('<a class="message-link" href="%s">%s</a>' % (l, e))
1043 else:
1043 else:
1044 links.append(e)
1044 links.append(e)
1045
1045
1046 return ''.join(links)
1046 return ''.join(links)
1047
1047
1048 # urlify changesets - extrac revisions and make link out of them
1048 # urlify changesets - extrac revisions and make link out of them
1049 newtext = urlify_changesets(escaper(text_), repository)
1049 newtext = urlify_changesets(escaper(text_), repository)
1050
1050
1051 try:
1051 try:
1052 conf = config['app_conf']
1052 conf = config['app_conf']
1053
1053
1054 # allow multiple issue servers to be used
1054 # allow multiple issue servers to be used
1055 valid_indices = [
1055 valid_indices = [
1056 x.group(1)
1056 x.group(1)
1057 for x in map(lambda x: re.match(r'issue_pat(.*)', x), conf.keys())
1057 for x in map(lambda x: re.match(r'issue_pat(.*)', x), conf.keys())
1058 if x and 'issue_server_link%s' % x.group(1) in conf
1058 if x and 'issue_server_link%s' % x.group(1) in conf
1059 and 'issue_prefix%s' % x.group(1) in conf
1059 and 'issue_prefix%s' % x.group(1) in conf
1060 ]
1060 ]
1061
1061
1062 log.debug('found issue server suffixes `%s` during valuation of: %s'
1062 log.debug('found issue server suffixes `%s` during valuation of: %s'
1063 % (','.join(valid_indices), newtext))
1063 % (','.join(valid_indices), newtext))
1064
1064
1065 for pattern_index in valid_indices:
1065 for pattern_index in valid_indices:
1066 ISSUE_PATTERN = conf.get('issue_pat%s' % pattern_index)
1066 ISSUE_PATTERN = conf.get('issue_pat%s' % pattern_index)
1067 ISSUE_SERVER_LNK = conf.get('issue_server_link%s' % pattern_index)
1067 ISSUE_SERVER_LNK = conf.get('issue_server_link%s' % pattern_index)
1068 ISSUE_PREFIX = conf.get('issue_prefix%s' % pattern_index)
1068 ISSUE_PREFIX = conf.get('issue_prefix%s' % pattern_index)
1069
1069
1070 log.debug('pattern suffix `%s` PAT:%s SERVER_LINK:%s PREFIX:%s'
1070 log.debug('pattern suffix `%s` PAT:%s SERVER_LINK:%s PREFIX:%s'
1071 % (pattern_index, ISSUE_PATTERN, ISSUE_SERVER_LNK,
1071 % (pattern_index, ISSUE_PATTERN, ISSUE_SERVER_LNK,
1072 ISSUE_PREFIX))
1072 ISSUE_PREFIX))
1073
1073
1074 URL_PAT = re.compile(r'%s' % ISSUE_PATTERN)
1074 URL_PAT = re.compile(r'%s' % ISSUE_PATTERN)
1075
1075
1076 def url_func(match_obj):
1076 def url_func(match_obj):
1077 pref = ''
1077 pref = ''
1078 if match_obj.group().startswith(' '):
1078 if match_obj.group().startswith(' '):
1079 pref = ' '
1079 pref = ' '
1080
1080
1081 issue_id = ''.join(match_obj.groups())
1081 issue_id = ''.join(match_obj.groups())
1082 tmpl = (
1082 tmpl = (
1083 '%(pref)s<a class="%(cls)s" href="%(url)s">'
1083 '%(pref)s<a class="%(cls)s" href="%(url)s">'
1084 '%(issue-prefix)s%(id-repr)s'
1084 '%(issue-prefix)s%(id-repr)s'
1085 '</a>'
1085 '</a>'
1086 )
1086 )
1087 url = ISSUE_SERVER_LNK.replace('{id}', issue_id)
1087 url = ISSUE_SERVER_LNK.replace('{id}', issue_id)
1088 if repository:
1088 if repository:
1089 url = url.replace('{repo}', repository)
1089 url = url.replace('{repo}', repository)
1090 repo_name = repository.split(URL_SEP)[-1]
1090 repo_name = repository.split(URL_SEP)[-1]
1091 url = url.replace('{repo_name}', repo_name)
1091 url = url.replace('{repo_name}', repo_name)
1092
1092
1093 return tmpl % {
1093 return tmpl % {
1094 'pref': pref,
1094 'pref': pref,
1095 'cls': 'issue-tracker-link',
1095 'cls': 'issue-tracker-link',
1096 'url': url,
1096 'url': url,
1097 'id-repr': issue_id,
1097 'id-repr': issue_id,
1098 'issue-prefix': ISSUE_PREFIX,
1098 'issue-prefix': ISSUE_PREFIX,
1099 'serv': ISSUE_SERVER_LNK,
1099 'serv': ISSUE_SERVER_LNK,
1100 }
1100 }
1101 newtext = URL_PAT.sub(url_func, newtext)
1101 newtext = URL_PAT.sub(url_func, newtext)
1102 log.debug('processed prefix:`%s` => %s' % (pattern_index, newtext))
1102 log.debug('processed prefix:`%s` => %s' % (pattern_index, newtext))
1103
1103
1104 # if we actually did something above
1104 # if we actually did something above
1105 if link_:
1105 if link_:
1106 # wrap not links into final link => link_
1106 # wrap not links into final link => link_
1107 newtext = linkify_others(newtext, link_)
1107 newtext = linkify_others(newtext, link_)
1108 except:
1108 except:
1109 log.error(traceback.format_exc())
1109 log.error(traceback.format_exc())
1110 pass
1110 pass
1111
1111
1112 return literal(newtext)
1112 return literal(newtext)
1113
1113
1114
1114
1115 def rst(source):
1115 def rst(source):
1116 return literal('<div class="rst-block">%s</div>' %
1116 return literal('<div class="rst-block">%s</div>' %
1117 MarkupRenderer.rst(source))
1117 MarkupRenderer.rst(source))
1118
1118
1119
1119
1120 def rst_w_mentions(source):
1120 def rst_w_mentions(source):
1121 """
1121 """
1122 Wrapped rst renderer with @mention highlighting
1122 Wrapped rst renderer with @mention highlighting
1123
1123
1124 :param source:
1124 :param source:
1125 """
1125 """
1126 return literal('<div class="rst-block">%s</div>' %
1126 return literal('<div class="rst-block">%s</div>' %
1127 MarkupRenderer.rst_with_mentions(source))
1127 MarkupRenderer.rst_with_mentions(source))
1128
1128
1129
1129
1130 def changeset_status(repo, revision):
1130 def changeset_status(repo, revision):
1131 return ChangesetStatusModel().get_status(repo, revision)
1131 return ChangesetStatusModel().get_status(repo, revision)
1132
1132
1133
1133
1134 def changeset_status_lbl(changeset_status):
1134 def changeset_status_lbl(changeset_status):
1135 return dict(ChangesetStatus.STATUSES).get(changeset_status)
1135 return dict(ChangesetStatus.STATUSES).get(changeset_status)
1136
1136
1137
1137
1138 def get_permission_name(key):
1138 def get_permission_name(key):
1139 return dict(Permission.PERMS).get(key)
1139 return dict(Permission.PERMS).get(key)
1140
1140
1141
1141
1142 def journal_filter_help():
1142 def journal_filter_help():
1143 return _(textwrap.dedent('''
1143 return _(textwrap.dedent('''
1144 Example filter terms:
1144 Example filter terms:
1145 repository:vcs
1145 repository:vcs
1146 username:marcin
1146 username:marcin
1147 action:*push*
1147 action:*push*
1148 ip:127.0.0.1
1148 ip:127.0.0.1
1149 date:20120101
1149 date:20120101
1150 date:[20120101100000 TO 20120102]
1150 date:[20120101100000 TO 20120102]
1151
1151
1152 Generate wildcards using '*' character:
1152 Generate wildcards using '*' character:
1153 "repositroy:vcs*" - search everything starting with 'vcs'
1153 "repositroy:vcs*" - search everything starting with 'vcs'
1154 "repository:*vcs*" - search for repository containing 'vcs'
1154 "repository:*vcs*" - search for repository containing 'vcs'
1155
1155
1156 Optional AND / OR operators in queries
1156 Optional AND / OR operators in queries
1157 "repository:vcs OR repository:test"
1157 "repository:vcs OR repository:test"
1158 "username:test AND repository:test*"
1158 "username:test AND repository:test*"
1159 '''))
1159 '''))
1160
1160
1161
1161
1162 def not_mapped_error(repo_name):
1162 def not_mapped_error(repo_name):
1163 flash(_('%s repository is not mapped to db perhaps'
1163 flash(_('%s repository is not mapped to db perhaps'
1164 ' it was created or renamed from the filesystem'
1164 ' it was created or renamed from the filesystem'
1165 ' please run the application again'
1165 ' please run the application again'
1166 ' in order to rescan repositories') % repo_name, category='error')
1166 ' in order to rescan repositories') % repo_name, category='error')
1167
1167
1168
1168
1169 def ip_range(ip_addr):
1169 def ip_range(ip_addr):
1170 from rhodecode.model.db import UserIpMap
1170 from rhodecode.model.db import UserIpMap
1171 s, e = UserIpMap._get_ip_range(ip_addr)
1171 s, e = UserIpMap._get_ip_range(ip_addr)
1172 return '%s - %s' % (s, e)
1172 return '%s - %s' % (s, e)
1173
@@ -1,754 +1,754 b''
1 # -*- coding: utf-8 -*-
1 # -*- coding: utf-8 -*-
2 """
2 """
3 rhodecode.lib.utils
3 rhodecode.lib.utils
4 ~~~~~~~~~~~~~~~~~~~
4 ~~~~~~~~~~~~~~~~~~~
5
5
6 Utilities library for RhodeCode
6 Utilities library for RhodeCode
7
7
8 :created_on: Apr 18, 2010
8 :created_on: Apr 18, 2010
9 :author: marcink
9 :author: marcink
10 :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
10 :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com>
11 :license: GPLv3, see COPYING for more details.
11 :license: GPLv3, see COPYING for more details.
12 """
12 """
13 # This program is free software: you can redistribute it and/or modify
13 # This program is free software: you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation, either version 3 of the License, or
15 # the Free Software Foundation, either version 3 of the License, or
16 # (at your option) any later version.
16 # (at your option) any later version.
17 #
17 #
18 # This program is distributed in the hope that it will be useful,
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 # GNU General Public License for more details.
21 # GNU General Public License for more details.
22 #
22 #
23 # You should have received a copy of the GNU General Public License
23 # You should have received a copy of the GNU General Public License
24 # along with this program. If not, see <http://www.gnu.org/licenses/>.
24 # along with this program. If not, see <http://www.gnu.org/licenses/>.
25
25
26 import os
26 import os
27 import re
27 import re
28 import logging
28 import logging
29 import datetime
29 import datetime
30 import traceback
30 import traceback
31 import paste
31 import paste
32 import beaker
32 import beaker
33 import tarfile
33 import tarfile
34 import shutil
34 import shutil
35 import decorator
35 import decorator
36 import warnings
36 import warnings
37 from os.path import abspath
37 from os.path import abspath
38 from os.path import dirname as dn, join as jn
38 from os.path import dirname as dn, join as jn
39
39
40 from paste.script.command import Command, BadCommand
40 from paste.script.command import Command, BadCommand
41
41
42 from mercurial import ui, config
42 from mercurial import ui, config
43
43
44 from webhelpers.text import collapse, remove_formatting, strip_tags
44 from webhelpers.text import collapse, remove_formatting, strip_tags
45
45
46 from rhodecode.lib.vcs import get_backend
46 from rhodecode.lib.vcs import get_backend
47 from rhodecode.lib.vcs.backends.base import BaseChangeset
47 from rhodecode.lib.vcs.backends.base import BaseChangeset
48 from rhodecode.lib.vcs.utils.lazy import LazyProperty
48 from rhodecode.lib.vcs.utils.lazy import LazyProperty
49 from rhodecode.lib.vcs.utils.helpers import get_scm
49 from rhodecode.lib.vcs.utils.helpers import get_scm
50 from rhodecode.lib.vcs.exceptions import VCSError
50 from rhodecode.lib.vcs.exceptions import VCSError
51
51
52 from rhodecode.lib.caching_query import FromCache
52 from rhodecode.lib.caching_query import FromCache
53
53
54 from rhodecode.model import meta
54 from rhodecode.model import meta
55 from rhodecode.model.db import Repository, User, RhodeCodeUi, \
55 from rhodecode.model.db import Repository, User, RhodeCodeUi, \
56 UserLog, RepoGroup, RhodeCodeSetting, CacheInvalidation
56 UserLog, RepoGroup, RhodeCodeSetting, CacheInvalidation
57 from rhodecode.model.meta import Session
57 from rhodecode.model.meta import Session
58 from rhodecode.model.repos_group import ReposGroupModel
58 from rhodecode.model.repos_group import ReposGroupModel
59 from rhodecode.lib.utils2 import safe_str, safe_unicode
59 from rhodecode.lib.utils2 import safe_str, safe_unicode
60 from rhodecode.lib.vcs.utils.fakemod import create_module
60 from rhodecode.lib.vcs.utils.fakemod import create_module
61
61
62 log = logging.getLogger(__name__)
62 log = logging.getLogger(__name__)
63
63
64 REMOVED_REPO_PAT = re.compile(r'rm__\d{8}_\d{6}_\d{6}__.*')
64 REMOVED_REPO_PAT = re.compile(r'rm__\d{8}_\d{6}_\d{6}__.*')
65
65
66
66
67 def recursive_replace(str_, replace=' '):
67 def recursive_replace(str_, replace=' '):
68 """
68 """
69 Recursive replace of given sign to just one instance
69 Recursive replace of given sign to just one instance
70
70
71 :param str_: given string
71 :param str_: given string
72 :param replace: char to find and replace multiple instances
72 :param replace: char to find and replace multiple instances
73
73
74 Examples::
74 Examples::
75 >>> recursive_replace("Mighty---Mighty-Bo--sstones",'-')
75 >>> recursive_replace("Mighty---Mighty-Bo--sstones",'-')
76 'Mighty-Mighty-Bo-sstones'
76 'Mighty-Mighty-Bo-sstones'
77 """
77 """
78
78
79 if str_.find(replace * 2) == -1:
79 if str_.find(replace * 2) == -1:
80 return str_
80 return str_
81 else:
81 else:
82 str_ = str_.replace(replace * 2, replace)
82 str_ = str_.replace(replace * 2, replace)
83 return recursive_replace(str_, replace)
83 return recursive_replace(str_, replace)
84
84
85
85
86 def repo_name_slug(value):
86 def repo_name_slug(value):
87 """
87 """
88 Return slug of name of repository
88 Return slug of name of repository
89 This function is called on each creation/modification
89 This function is called on each creation/modification
90 of repository to prevent bad names in repo
90 of repository to prevent bad names in repo
91 """
91 """
92
92
93 slug = remove_formatting(value)
93 slug = remove_formatting(value)
94 slug = strip_tags(slug)
94 slug = strip_tags(slug)
95
95
96 for c in """`?=[]\;'"<>,/~!@#$%^&*()+{}|: """:
96 for c in """`?=[]\;'"<>,/~!@#$%^&*()+{}|: """:
97 slug = slug.replace(c, '-')
97 slug = slug.replace(c, '-')
98 slug = recursive_replace(slug, '-')
98 slug = recursive_replace(slug, '-')
99 slug = collapse(slug, '-')
99 slug = collapse(slug, '-')
100 return slug
100 return slug
101
101
102
102
103 def get_repo_slug(request):
103 def get_repo_slug(request):
104 _repo = request.environ['pylons.routes_dict'].get('repo_name')
104 _repo = request.environ['pylons.routes_dict'].get('repo_name')
105 if _repo:
105 if _repo:
106 _repo = _repo.rstrip('/')
106 _repo = _repo.rstrip('/')
107 return _repo
107 return _repo
108
108
109
109
110 def get_repos_group_slug(request):
110 def get_repos_group_slug(request):
111 _group = request.environ['pylons.routes_dict'].get('group_name')
111 _group = request.environ['pylons.routes_dict'].get('group_name')
112 if _group:
112 if _group:
113 _group = _group.rstrip('/')
113 _group = _group.rstrip('/')
114 return _group
114 return _group
115
115
116
116
117 def action_logger(user, action, repo, ipaddr='', sa=None, commit=False):
117 def action_logger(user, action, repo, ipaddr='', sa=None, commit=False):
118 """
118 """
119 Action logger for various actions made by users
119 Action logger for various actions made by users
120
120
121 :param user: user that made this action, can be a unique username string or
121 :param user: user that made this action, can be a unique username string or
122 object containing user_id attribute
122 object containing user_id attribute
123 :param action: action to log, should be on of predefined unique actions for
123 :param action: action to log, should be on of predefined unique actions for
124 easy translations
124 easy translations
125 :param repo: string name of repository or object containing repo_id,
125 :param repo: string name of repository or object containing repo_id,
126 that action was made on
126 that action was made on
127 :param ipaddr: optional ip address from what the action was made
127 :param ipaddr: optional ip address from what the action was made
128 :param sa: optional sqlalchemy session
128 :param sa: optional sqlalchemy session
129
129
130 """
130 """
131
131
132 if not sa:
132 if not sa:
133 sa = meta.Session()
133 sa = meta.Session()
134
134
135 try:
135 try:
136 if hasattr(user, 'user_id'):
136 if hasattr(user, 'user_id'):
137 user_obj = User.get(user.user_id)
137 user_obj = User.get(user.user_id)
138 elif isinstance(user, basestring):
138 elif isinstance(user, basestring):
139 user_obj = User.get_by_username(user)
139 user_obj = User.get_by_username(user)
140 else:
140 else:
141 raise Exception('You have to provide a user object or a username')
141 raise Exception('You have to provide a user object or a username')
142
142
143 if hasattr(repo, 'repo_id'):
143 if hasattr(repo, 'repo_id'):
144 repo_obj = Repository.get(repo.repo_id)
144 repo_obj = Repository.get(repo.repo_id)
145 repo_name = repo_obj.repo_name
145 repo_name = repo_obj.repo_name
146 elif isinstance(repo, basestring):
146 elif isinstance(repo, basestring):
147 repo_name = repo.lstrip('/')
147 repo_name = repo.lstrip('/')
148 repo_obj = Repository.get_by_repo_name(repo_name)
148 repo_obj = Repository.get_by_repo_name(repo_name)
149 else:
149 else:
150 repo_obj = None
150 repo_obj = None
151 repo_name = ''
151 repo_name = ''
152
152
153 user_log = UserLog()
153 user_log = UserLog()
154 user_log.user_id = user_obj.user_id
154 user_log.user_id = user_obj.user_id
155 user_log.username = user_obj.username
155 user_log.username = user_obj.username
156 user_log.action = safe_unicode(action)
156 user_log.action = safe_unicode(action)
157
157
158 user_log.repository = repo_obj
158 user_log.repository = repo_obj
159 user_log.repository_name = repo_name
159 user_log.repository_name = repo_name
160
160
161 user_log.action_date = datetime.datetime.now()
161 user_log.action_date = datetime.datetime.now()
162 user_log.user_ip = ipaddr
162 user_log.user_ip = ipaddr
163 sa.add(user_log)
163 sa.add(user_log)
164
164
165 log.info('Logging action %s on %s by %s' %
165 log.info('Logging action %s on %s by %s' %
166 (action, safe_unicode(repo), user_obj))
166 (action, safe_unicode(repo), user_obj))
167 if commit:
167 if commit:
168 sa.commit()
168 sa.commit()
169 except:
169 except:
170 log.error(traceback.format_exc())
170 log.error(traceback.format_exc())
171 raise
171 raise
172
172
173
173
174 def get_repos(path, recursive=False):
174 def get_repos(path, recursive=False):
175 """
175 """
176 Scans given path for repos and return (name,(type,path)) tuple
176 Scans given path for repos and return (name,(type,path)) tuple
177
177
178 :param path: path to scan for repositories
178 :param path: path to scan for repositories
179 :param recursive: recursive search and return names with subdirs in front
179 :param recursive: recursive search and return names with subdirs in front
180 """
180 """
181
181
182 # remove ending slash for better results
182 # remove ending slash for better results
183 path = path.rstrip(os.sep)
183 path = path.rstrip(os.sep)
184
184
185 def _get_repos(p):
185 def _get_repos(p):
186 if not os.access(p, os.W_OK):
186 if not os.access(p, os.W_OK):
187 return
187 return
188 for dirpath in os.listdir(p):
188 for dirpath in os.listdir(p):
189 if os.path.isfile(os.path.join(p, dirpath)):
189 if os.path.isfile(os.path.join(p, dirpath)):
190 continue
190 continue
191 cur_path = os.path.join(p, dirpath)
191 cur_path = os.path.join(p, dirpath)
192 try:
192 try:
193 scm_info = get_scm(cur_path)
193 scm_info = get_scm(cur_path)
194 yield scm_info[1].split(path, 1)[-1].lstrip(os.sep), scm_info
194 yield scm_info[1].split(path, 1)[-1].lstrip(os.sep), scm_info
195 except VCSError:
195 except VCSError:
196 if not recursive:
196 if not recursive:
197 continue
197 continue
198 #check if this dir containts other repos for recursive scan
198 #check if this dir containts other repos for recursive scan
199 rec_path = os.path.join(p, dirpath)
199 rec_path = os.path.join(p, dirpath)
200 if os.path.isdir(rec_path):
200 if os.path.isdir(rec_path):
201 for inner_scm in _get_repos(rec_path):
201 for inner_scm in _get_repos(rec_path):
202 yield inner_scm
202 yield inner_scm
203
203
204 return _get_repos(path)
204 return _get_repos(path)
205
205
206
206
207 def is_valid_repo(repo_name, base_path, scm=None):
207 def is_valid_repo(repo_name, base_path, scm=None):
208 """
208 """
209 Returns True if given path is a valid repository False otherwise.
209 Returns True if given path is a valid repository False otherwise.
210 If scm param is given also compare if given scm is the same as expected
210 If scm param is given also compare if given scm is the same as expected
211 from scm parameter
211 from scm parameter
212
212
213 :param repo_name:
213 :param repo_name:
214 :param base_path:
214 :param base_path:
215 :param scm:
215 :param scm:
216
216
217 :return True: if given path is a valid repository
217 :return True: if given path is a valid repository
218 """
218 """
219 full_path = os.path.join(safe_str(base_path), safe_str(repo_name))
219 full_path = os.path.join(safe_str(base_path), safe_str(repo_name))
220
220
221 try:
221 try:
222 scm_ = get_scm(full_path)
222 scm_ = get_scm(full_path)
223 if scm:
223 if scm:
224 return scm_[0] == scm
224 return scm_[0] == scm
225 return True
225 return True
226 except VCSError:
226 except VCSError:
227 return False
227 return False
228
228
229
229
230 def is_valid_repos_group(repos_group_name, base_path):
230 def is_valid_repos_group(repos_group_name, base_path):
231 """
231 """
232 Returns True if given path is a repos group False otherwise
232 Returns True if given path is a repos group False otherwise
233
233
234 :param repo_name:
234 :param repo_name:
235 :param base_path:
235 :param base_path:
236 """
236 """
237 full_path = os.path.join(safe_str(base_path), safe_str(repos_group_name))
237 full_path = os.path.join(safe_str(base_path), safe_str(repos_group_name))
238
238
239 # check if it's not a repo
239 # check if it's not a repo
240 if is_valid_repo(repos_group_name, base_path):
240 if is_valid_repo(repos_group_name, base_path):
241 return False
241 return False
242
242
243 try:
243 try:
244 # we need to check bare git repos at higher level
244 # we need to check bare git repos at higher level
245 # since we might match branches/hooks/info/objects or possible
245 # since we might match branches/hooks/info/objects or possible
246 # other things inside bare git repo
246 # other things inside bare git repo
247 get_scm(os.path.dirname(full_path))
247 get_scm(os.path.dirname(full_path))
248 return False
248 return False
249 except VCSError:
249 except VCSError:
250 pass
250 pass
251
251
252 # check if it's a valid path
252 # check if it's a valid path
253 if os.path.isdir(full_path):
253 if os.path.isdir(full_path):
254 return True
254 return True
255
255
256 return False
256 return False
257
257
258
258
259 def ask_ok(prompt, retries=4, complaint='Yes or no please!'):
259 def ask_ok(prompt, retries=4, complaint='Yes or no please!'):
260 while True:
260 while True:
261 ok = raw_input(prompt)
261 ok = raw_input(prompt)
262 if ok in ('y', 'ye', 'yes'):
262 if ok in ('y', 'ye', 'yes'):
263 return True
263 return True
264 if ok in ('n', 'no', 'nop', 'nope'):
264 if ok in ('n', 'no', 'nop', 'nope'):
265 return False
265 return False
266 retries = retries - 1
266 retries = retries - 1
267 if retries < 0:
267 if retries < 0:
268 raise IOError
268 raise IOError
269 print complaint
269 print complaint
270
270
271 #propagated from mercurial documentation
271 #propagated from mercurial documentation
272 ui_sections = ['alias', 'auth',
272 ui_sections = ['alias', 'auth',
273 'decode/encode', 'defaults',
273 'decode/encode', 'defaults',
274 'diff', 'email',
274 'diff', 'email',
275 'extensions', 'format',
275 'extensions', 'format',
276 'merge-patterns', 'merge-tools',
276 'merge-patterns', 'merge-tools',
277 'hooks', 'http_proxy',
277 'hooks', 'http_proxy',
278 'smtp', 'patch',
278 'smtp', 'patch',
279 'paths', 'profiling',
279 'paths', 'profiling',
280 'server', 'trusted',
280 'server', 'trusted',
281 'ui', 'web', ]
281 'ui', 'web', ]
282
282
283
283
284 def make_ui(read_from='file', path=None, checkpaths=True, clear_session=True):
284 def make_ui(read_from='file', path=None, checkpaths=True, clear_session=True):
285 """
285 """
286 A function that will read python rc files or database
286 A function that will read python rc files or database
287 and make an mercurial ui object from read options
287 and make an mercurial ui object from read options
288
288
289 :param path: path to mercurial config file
289 :param path: path to mercurial config file
290 :param checkpaths: check the path
290 :param checkpaths: check the path
291 :param read_from: read from 'file' or 'db'
291 :param read_from: read from 'file' or 'db'
292 """
292 """
293
293
294 baseui = ui.ui()
294 baseui = ui.ui()
295
295
296 # clean the baseui object
296 # clean the baseui object
297 baseui._ocfg = config.config()
297 baseui._ocfg = config.config()
298 baseui._ucfg = config.config()
298 baseui._ucfg = config.config()
299 baseui._tcfg = config.config()
299 baseui._tcfg = config.config()
300
300
301 if read_from == 'file':
301 if read_from == 'file':
302 if not os.path.isfile(path):
302 if not os.path.isfile(path):
303 log.debug('hgrc file is not present at %s, skipping...' % path)
303 log.debug('hgrc file is not present at %s, skipping...' % path)
304 return False
304 return False
305 log.debug('reading hgrc from %s' % path)
305 log.debug('reading hgrc from %s' % path)
306 cfg = config.config()
306 cfg = config.config()
307 cfg.read(path)
307 cfg.read(path)
308 for section in ui_sections:
308 for section in ui_sections:
309 for k, v in cfg.items(section):
309 for k, v in cfg.items(section):
310 log.debug('settings ui from file: [%s] %s=%s' % (section, k, v))
310 log.debug('settings ui from file: [%s] %s=%s' % (section, k, v))
311 baseui.setconfig(safe_str(section), safe_str(k), safe_str(v))
311 baseui.setconfig(safe_str(section), safe_str(k), safe_str(v))
312
312
313 elif read_from == 'db':
313 elif read_from == 'db':
314 sa = meta.Session()
314 sa = meta.Session()
315 ret = sa.query(RhodeCodeUi)\
315 ret = sa.query(RhodeCodeUi)\
316 .options(FromCache("sql_cache_short", "get_hg_ui_settings"))\
316 .options(FromCache("sql_cache_short", "get_hg_ui_settings"))\
317 .all()
317 .all()
318
318
319 hg_ui = ret
319 hg_ui = ret
320 for ui_ in hg_ui:
320 for ui_ in hg_ui:
321 if ui_.ui_active:
321 if ui_.ui_active:
322 log.debug('settings ui from db: [%s] %s=%s', ui_.ui_section,
322 log.debug('settings ui from db: [%s] %s=%s', ui_.ui_section,
323 ui_.ui_key, ui_.ui_value)
323 ui_.ui_key, ui_.ui_value)
324 baseui.setconfig(safe_str(ui_.ui_section), safe_str(ui_.ui_key),
324 baseui.setconfig(safe_str(ui_.ui_section), safe_str(ui_.ui_key),
325 safe_str(ui_.ui_value))
325 safe_str(ui_.ui_value))
326 if ui_.ui_key == 'push_ssl':
326 if ui_.ui_key == 'push_ssl':
327 # force set push_ssl requirement to False, rhodecode
327 # force set push_ssl requirement to False, rhodecode
328 # handles that
328 # handles that
329 baseui.setconfig(safe_str(ui_.ui_section), safe_str(ui_.ui_key),
329 baseui.setconfig(safe_str(ui_.ui_section), safe_str(ui_.ui_key),
330 False)
330 False)
331 if clear_session:
331 if clear_session:
332 meta.Session.remove()
332 meta.Session.remove()
333 return baseui
333 return baseui
334
334
335
335
336 def set_rhodecode_config(config):
336 def set_rhodecode_config(config):
337 """
337 """
338 Updates pylons config with new settings from database
338 Updates pylons config with new settings from database
339
339
340 :param config:
340 :param config:
341 """
341 """
342 hgsettings = RhodeCodeSetting.get_app_settings()
342 hgsettings = RhodeCodeSetting.get_app_settings()
343
343
344 for k, v in hgsettings.items():
344 for k, v in hgsettings.items():
345 config[k] = v
345 config[k] = v
346
346
347
347
348 def invalidate_cache(cache_key, *args):
348 def invalidate_cache(cache_key, *args):
349 """
349 """
350 Puts cache invalidation task into db for
350 Puts cache invalidation task into db for
351 further global cache invalidation
351 further global cache invalidation
352 """
352 """
353
353
354 from rhodecode.model.scm import ScmModel
354 from rhodecode.model.scm import ScmModel
355
355
356 if cache_key.startswith('get_repo_cached_'):
356 if cache_key.startswith('get_repo_cached_'):
357 name = cache_key.split('get_repo_cached_')[-1]
357 name = cache_key.split('get_repo_cached_')[-1]
358 ScmModel().mark_for_invalidation(name)
358 ScmModel().mark_for_invalidation(name)
359
359
360
360
361 def map_groups(path):
361 def map_groups(path):
362 """
362 """
363 Given a full path to a repository, create all nested groups that this
363 Given a full path to a repository, create all nested groups that this
364 repo is inside. This function creates parent-child relationships between
364 repo is inside. This function creates parent-child relationships between
365 groups and creates default perms for all new groups.
365 groups and creates default perms for all new groups.
366
366
367 :param paths: full path to repository
367 :param paths: full path to repository
368 """
368 """
369 sa = meta.Session()
369 sa = meta.Session()
370 groups = path.split(Repository.url_sep())
370 groups = path.split(Repository.url_sep())
371 parent = None
371 parent = None
372 group = None
372 group = None
373
373
374 # last element is repo in nested groups structure
374 # last element is repo in nested groups structure
375 groups = groups[:-1]
375 groups = groups[:-1]
376 rgm = ReposGroupModel(sa)
376 rgm = ReposGroupModel(sa)
377 for lvl, group_name in enumerate(groups):
377 for lvl, group_name in enumerate(groups):
378 group_name = '/'.join(groups[:lvl] + [group_name])
378 group_name = '/'.join(groups[:lvl] + [group_name])
379 group = RepoGroup.get_by_group_name(group_name)
379 group = RepoGroup.get_by_group_name(group_name)
380 desc = '%s group' % group_name
380 desc = '%s group' % group_name
381
381
382 # skip folders that are now removed repos
382 # skip folders that are now removed repos
383 if REMOVED_REPO_PAT.match(group_name):
383 if REMOVED_REPO_PAT.match(group_name):
384 break
384 break
385
385
386 if group is None:
386 if group is None:
387 log.debug('creating group level: %s group_name: %s' % (lvl,
387 log.debug('creating group level: %s group_name: %s' % (lvl,
388 group_name))
388 group_name))
389 group = RepoGroup(group_name, parent)
389 group = RepoGroup(group_name, parent)
390 group.group_description = desc
390 group.group_description = desc
391 sa.add(group)
391 sa.add(group)
392 rgm._create_default_perms(group)
392 rgm._create_default_perms(group)
393 sa.flush()
393 sa.flush()
394 parent = group
394 parent = group
395 return group
395 return group
396
396
397
397
398 def repo2db_mapper(initial_repo_list, remove_obsolete=False,
398 def repo2db_mapper(initial_repo_list, remove_obsolete=False,
399 install_git_hook=False):
399 install_git_hook=False):
400 """
400 """
401 maps all repos given in initial_repo_list, non existing repositories
401 maps all repos given in initial_repo_list, non existing repositories
402 are created, if remove_obsolete is True it also check for db entries
402 are created, if remove_obsolete is True it also check for db entries
403 that are not in initial_repo_list and removes them.
403 that are not in initial_repo_list and removes them.
404
404
405 :param initial_repo_list: list of repositories found by scanning methods
405 :param initial_repo_list: list of repositories found by scanning methods
406 :param remove_obsolete: check for obsolete entries in database
406 :param remove_obsolete: check for obsolete entries in database
407 :param install_git_hook: if this is True, also check and install githook
407 :param install_git_hook: if this is True, also check and install githook
408 for a repo if missing
408 for a repo if missing
409 """
409 """
410 from rhodecode.model.repo import RepoModel
410 from rhodecode.model.repo import RepoModel
411 from rhodecode.model.scm import ScmModel
411 from rhodecode.model.scm import ScmModel
412 sa = meta.Session()
412 sa = meta.Session()
413 rm = RepoModel()
413 rm = RepoModel()
414 user = sa.query(User).filter(User.admin == True).first()
414 user = sa.query(User).filter(User.admin == True).first()
415 if user is None:
415 if user is None:
416 raise Exception('Missing administrative account!')
416 raise Exception('Missing administrative account!')
417 added = []
417 added = []
418
418
419 # # clear cache keys
419 # # clear cache keys
420 # log.debug("Clearing cache keys now...")
420 # log.debug("Clearing cache keys now...")
421 # CacheInvalidation.clear_cache()
421 # CacheInvalidation.clear_cache()
422 # sa.commit()
422 # sa.commit()
423
423
424 ##creation defaults
424 ##creation defaults
425 defs = RhodeCodeSetting.get_default_repo_settings(strip_prefix=True)
425 defs = RhodeCodeSetting.get_default_repo_settings(strip_prefix=True)
426 enable_statistics = defs.get('repo_enable_statistics')
426 enable_statistics = defs.get('repo_enable_statistics')
427 enable_locking = defs.get('repo_enable_locking')
427 enable_locking = defs.get('repo_enable_locking')
428 enable_downloads = defs.get('repo_enable_downloads')
428 enable_downloads = defs.get('repo_enable_downloads')
429 private = defs.get('repo_private')
429 private = defs.get('repo_private')
430
430
431 for name, repo in initial_repo_list.items():
431 for name, repo in initial_repo_list.items():
432 group = map_groups(name)
432 group = map_groups(name)
433 db_repo = rm.get_by_repo_name(name)
433 db_repo = rm.get_by_repo_name(name)
434 # found repo that is on filesystem not in RhodeCode database
434 # found repo that is on filesystem not in RhodeCode database
435 if not db_repo:
435 if not db_repo:
436 log.info('repository %s not found, creating now' % name)
436 log.info('repository %s not found, creating now' % name)
437 added.append(name)
437 added.append(name)
438 desc = (repo.description
438 desc = (repo.description
439 if repo.description != 'unknown'
439 if repo.description != 'unknown'
440 else '%s repository' % name)
440 else '%s repository' % name)
441
441
442 new_repo = rm.create_repo(
442 new_repo = rm.create_repo(
443 repo_name=name,
443 repo_name=name,
444 repo_type=repo.alias,
444 repo_type=repo.alias,
445 description=desc,
445 description=desc,
446 repos_group=getattr(group, 'group_id', None),
446 repos_group=getattr(group, 'group_id', None),
447 owner=user,
447 owner=user,
448 just_db=True,
448 just_db=True,
449 enable_locking=enable_locking,
449 enable_locking=enable_locking,
450 enable_downloads=enable_downloads,
450 enable_downloads=enable_downloads,
451 enable_statistics=enable_statistics,
451 enable_statistics=enable_statistics,
452 private=private
452 private=private
453 )
453 )
454 # we added that repo just now, and make sure it has githook
454 # we added that repo just now, and make sure it has githook
455 # installed
455 # installed
456 if new_repo.repo_type == 'git':
456 if new_repo.repo_type == 'git':
457 ScmModel().install_git_hook(new_repo.scm_instance)
457 ScmModel().install_git_hook(new_repo.scm_instance)
458 new_repo.update_changeset_cache()
458 new_repo.update_changeset_cache()
459 elif install_git_hook:
459 elif install_git_hook:
460 if db_repo.repo_type == 'git':
460 if db_repo.repo_type == 'git':
461 ScmModel().install_git_hook(db_repo.scm_instance)
461 ScmModel().install_git_hook(db_repo.scm_instance)
462 # during starting install all cache keys for all repositories in the
462 # during starting install all cache keys for all repositories in the
463 # system, this will register all repos and multiple instances
463 # system, this will register all repos and multiple instances
464 key, _prefix, _org_key = CacheInvalidation._get_key(name)
464 key, _prefix, _org_key = CacheInvalidation._get_key(name)
465 CacheInvalidation.invalidate(name)
465 CacheInvalidation.invalidate(name)
466 log.debug("Creating a cache key for %s, instance_id %s"
466 log.debug("Creating a cache key for %s, instance_id %s"
467 % (name, _prefix or 'unknown'))
467 % (name, _prefix or 'unknown'))
468
468
469 sa.commit()
469 sa.commit()
470 removed = []
470 removed = []
471 if remove_obsolete:
471 if remove_obsolete:
472 # remove from database those repositories that are not in the filesystem
472 # remove from database those repositories that are not in the filesystem
473 for repo in sa.query(Repository).all():
473 for repo in sa.query(Repository).all():
474 if repo.repo_name not in initial_repo_list.keys():
474 if repo.repo_name not in initial_repo_list.keys():
475 log.debug("Removing non-existing repository found in db `%s`" %
475 log.debug("Removing non-existing repository found in db `%s`" %
476 repo.repo_name)
476 repo.repo_name)
477 try:
477 try:
478 sa.delete(repo)
478 sa.delete(repo)
479 sa.commit()
479 sa.commit()
480 removed.append(repo.repo_name)
480 removed.append(repo.repo_name)
481 except:
481 except:
482 #don't hold further removals on error
482 #don't hold further removals on error
483 log.error(traceback.format_exc())
483 log.error(traceback.format_exc())
484 sa.rollback()
484 sa.rollback()
485
485
486 return added, removed
486 return added, removed
487
487
488
488
489 # set cache regions for beaker so celery can utilise it
489 # set cache regions for beaker so celery can utilise it
490 def add_cache(settings):
490 def add_cache(settings):
491 cache_settings = {'regions': None}
491 cache_settings = {'regions': None}
492 for key in settings.keys():
492 for key in settings.keys():
493 for prefix in ['beaker.cache.', 'cache.']:
493 for prefix in ['beaker.cache.', 'cache.']:
494 if key.startswith(prefix):
494 if key.startswith(prefix):
495 name = key.split(prefix)[1].strip()
495 name = key.split(prefix)[1].strip()
496 cache_settings[name] = settings[key].strip()
496 cache_settings[name] = settings[key].strip()
497 if cache_settings['regions']:
497 if cache_settings['regions']:
498 for region in cache_settings['regions'].split(','):
498 for region in cache_settings['regions'].split(','):
499 region = region.strip()
499 region = region.strip()
500 region_settings = {}
500 region_settings = {}
501 for key, value in cache_settings.items():
501 for key, value in cache_settings.items():
502 if key.startswith(region):
502 if key.startswith(region):
503 region_settings[key.split('.')[1]] = value
503 region_settings[key.split('.')[1]] = value
504 region_settings['expire'] = int(region_settings.get('expire',
504 region_settings['expire'] = int(region_settings.get('expire',
505 60))
505 60))
506 region_settings.setdefault('lock_dir',
506 region_settings.setdefault('lock_dir',
507 cache_settings.get('lock_dir'))
507 cache_settings.get('lock_dir'))
508 region_settings.setdefault('data_dir',
508 region_settings.setdefault('data_dir',
509 cache_settings.get('data_dir'))
509 cache_settings.get('data_dir'))
510
510
511 if 'type' not in region_settings:
511 if 'type' not in region_settings:
512 region_settings['type'] = cache_settings.get('type',
512 region_settings['type'] = cache_settings.get('type',
513 'memory')
513 'memory')
514 beaker.cache.cache_regions[region] = region_settings
514 beaker.cache.cache_regions[region] = region_settings
515
515
516
516
517 def load_rcextensions(root_path):
517 def load_rcextensions(root_path):
518 import rhodecode
518 import rhodecode
519 from rhodecode.config import conf
519 from rhodecode.config import conf
520
520
521 path = os.path.join(root_path, 'rcextensions', '__init__.py')
521 path = os.path.join(root_path, 'rcextensions', '__init__.py')
522 if os.path.isfile(path):
522 if os.path.isfile(path):
523 rcext = create_module('rc', path)
523 rcext = create_module('rc', path)
524 EXT = rhodecode.EXTENSIONS = rcext
524 EXT = rhodecode.EXTENSIONS = rcext
525 log.debug('Found rcextensions now loading %s...' % rcext)
525 log.debug('Found rcextensions now loading %s...' % rcext)
526
526
527 # Additional mappings that are not present in the pygments lexers
527 # Additional mappings that are not present in the pygments lexers
528 conf.LANGUAGES_EXTENSIONS_MAP.update(getattr(EXT, 'EXTRA_MAPPINGS', {}))
528 conf.LANGUAGES_EXTENSIONS_MAP.update(getattr(EXT, 'EXTRA_MAPPINGS', {}))
529
529
530 #OVERRIDE OUR EXTENSIONS FROM RC-EXTENSIONS (if present)
530 #OVERRIDE OUR EXTENSIONS FROM RC-EXTENSIONS (if present)
531
531
532 if getattr(EXT, 'INDEX_EXTENSIONS', []) != []:
532 if getattr(EXT, 'INDEX_EXTENSIONS', []) != []:
533 log.debug('settings custom INDEX_EXTENSIONS')
533 log.debug('settings custom INDEX_EXTENSIONS')
534 conf.INDEX_EXTENSIONS = getattr(EXT, 'INDEX_EXTENSIONS', [])
534 conf.INDEX_EXTENSIONS = getattr(EXT, 'INDEX_EXTENSIONS', [])
535
535
536 #ADDITIONAL MAPPINGS
536 #ADDITIONAL MAPPINGS
537 log.debug('adding extra into INDEX_EXTENSIONS')
537 log.debug('adding extra into INDEX_EXTENSIONS')
538 conf.INDEX_EXTENSIONS.extend(getattr(EXT, 'EXTRA_INDEX_EXTENSIONS', []))
538 conf.INDEX_EXTENSIONS.extend(getattr(EXT, 'EXTRA_INDEX_EXTENSIONS', []))
539
539
540
540
541 #==============================================================================
541 #==============================================================================
542 # TEST FUNCTIONS AND CREATORS
542 # TEST FUNCTIONS AND CREATORS
543 #==============================================================================
543 #==============================================================================
544 def create_test_index(repo_location, config, full_index):
544 def create_test_index(repo_location, config, full_index):
545 """
545 """
546 Makes default test index
546 Makes default test index
547
547
548 :param config: test config
548 :param config: test config
549 :param full_index:
549 :param full_index:
550 """
550 """
551
551
552 from rhodecode.lib.indexers.daemon import WhooshIndexingDaemon
552 from rhodecode.lib.indexers.daemon import WhooshIndexingDaemon
553 from rhodecode.lib.pidlock import DaemonLock, LockHeld
553 from rhodecode.lib.pidlock import DaemonLock, LockHeld
554
554
555 repo_location = repo_location
555 repo_location = repo_location
556
556
557 index_location = os.path.join(config['app_conf']['index_dir'])
557 index_location = os.path.join(config['app_conf']['index_dir'])
558 if not os.path.exists(index_location):
558 if not os.path.exists(index_location):
559 os.makedirs(index_location)
559 os.makedirs(index_location)
560
560
561 try:
561 try:
562 l = DaemonLock(file_=jn(dn(index_location), 'make_index.lock'))
562 l = DaemonLock(file_=jn(dn(index_location), 'make_index.lock'))
563 WhooshIndexingDaemon(index_location=index_location,
563 WhooshIndexingDaemon(index_location=index_location,
564 repo_location=repo_location)\
564 repo_location=repo_location)\
565 .run(full_index=full_index)
565 .run(full_index=full_index)
566 l.release()
566 l.release()
567 except LockHeld:
567 except LockHeld:
568 pass
568 pass
569
569
570
570
571 def create_test_env(repos_test_path, config):
571 def create_test_env(repos_test_path, config):
572 """
572 """
573 Makes a fresh database and
573 Makes a fresh database and
574 install test repository into tmp dir
574 install test repository into tmp dir
575 """
575 """
576 from rhodecode.lib.db_manage import DbManage
576 from rhodecode.lib.db_manage import DbManage
577 from rhodecode.tests import HG_REPO, GIT_REPO, TESTS_TMP_PATH
577 from rhodecode.tests import HG_REPO, GIT_REPO, TESTS_TMP_PATH
578
578
579 # PART ONE create db
579 # PART ONE create db
580 dbconf = config['sqlalchemy.db1.url']
580 dbconf = config['sqlalchemy.db1.url']
581 log.debug('making test db %s' % dbconf)
581 log.debug('making test db %s' % dbconf)
582
582
583 # create test dir if it doesn't exist
583 # create test dir if it doesn't exist
584 if not os.path.isdir(repos_test_path):
584 if not os.path.isdir(repos_test_path):
585 log.debug('Creating testdir %s' % repos_test_path)
585 log.debug('Creating testdir %s' % repos_test_path)
586 os.makedirs(repos_test_path)
586 os.makedirs(repos_test_path)
587
587
588 dbmanage = DbManage(log_sql=True, dbconf=dbconf, root=config['here'],
588 dbmanage = DbManage(log_sql=True, dbconf=dbconf, root=config['here'],
589 tests=True)
589 tests=True)
590 dbmanage.create_tables(override=True)
590 dbmanage.create_tables(override=True)
591 dbmanage.create_settings(dbmanage.config_prompt(repos_test_path))
591 dbmanage.create_settings(dbmanage.config_prompt(repos_test_path))
592 dbmanage.create_default_user()
592 dbmanage.create_default_user()
593 dbmanage.admin_prompt()
593 dbmanage.admin_prompt()
594 dbmanage.create_permissions()
594 dbmanage.create_permissions()
595 dbmanage.populate_default_permissions()
595 dbmanage.populate_default_permissions()
596 Session().commit()
596 Session().commit()
597 # PART TWO make test repo
597 # PART TWO make test repo
598 log.debug('making test vcs repositories')
598 log.debug('making test vcs repositories')
599
599
600 idx_path = config['app_conf']['index_dir']
600 idx_path = config['app_conf']['index_dir']
601 data_path = config['app_conf']['cache_dir']
601 data_path = config['app_conf']['cache_dir']
602
602
603 #clean index and data
603 #clean index and data
604 if idx_path and os.path.exists(idx_path):
604 if idx_path and os.path.exists(idx_path):
605 log.debug('remove %s' % idx_path)
605 log.debug('remove %s' % idx_path)
606 shutil.rmtree(idx_path)
606 shutil.rmtree(idx_path)
607
607
608 if data_path and os.path.exists(data_path):
608 if data_path and os.path.exists(data_path):
609 log.debug('remove %s' % data_path)
609 log.debug('remove %s' % data_path)
610 shutil.rmtree(data_path)
610 shutil.rmtree(data_path)
611
611
612 #CREATE DEFAULT TEST REPOS
612 #CREATE DEFAULT TEST REPOS
613 cur_dir = dn(dn(abspath(__file__)))
613 cur_dir = dn(dn(abspath(__file__)))
614 tar = tarfile.open(jn(cur_dir, 'tests', "vcs_test_hg.tar.gz"))
614 tar = tarfile.open(jn(cur_dir, 'tests', "vcs_test_hg.tar.gz"))
615 tar.extractall(jn(TESTS_TMP_PATH, HG_REPO))
615 tar.extractall(jn(TESTS_TMP_PATH, HG_REPO))
616 tar.close()
616 tar.close()
617
617
618 cur_dir = dn(dn(abspath(__file__)))
618 cur_dir = dn(dn(abspath(__file__)))
619 tar = tarfile.open(jn(cur_dir, 'tests', "vcs_test_git.tar.gz"))
619 tar = tarfile.open(jn(cur_dir, 'tests', "vcs_test_git.tar.gz"))
620 tar.extractall(jn(TESTS_TMP_PATH, GIT_REPO))
620 tar.extractall(jn(TESTS_TMP_PATH, GIT_REPO))
621 tar.close()
621 tar.close()
622
622
623 #LOAD VCS test stuff
623 #LOAD VCS test stuff
624 from rhodecode.tests.vcs import setup_package
624 from rhodecode.tests.vcs import setup_package
625 setup_package()
625 setup_package()
626
626
627
627
628 #==============================================================================
628 #==============================================================================
629 # PASTER COMMANDS
629 # PASTER COMMANDS
630 #==============================================================================
630 #==============================================================================
631 class BasePasterCommand(Command):
631 class BasePasterCommand(Command):
632 """
632 """
633 Abstract Base Class for paster commands.
633 Abstract Base Class for paster commands.
634
634
635 The celery commands are somewhat aggressive about loading
635 The celery commands are somewhat aggressive about loading
636 celery.conf, and since our module sets the `CELERY_LOADER`
636 celery.conf, and since our module sets the `CELERY_LOADER`
637 environment variable to our loader, we have to bootstrap a bit and
637 environment variable to our loader, we have to bootstrap a bit and
638 make sure we've had a chance to load the pylons config off of the
638 make sure we've had a chance to load the pylons config off of the
639 command line, otherwise everything fails.
639 command line, otherwise everything fails.
640 """
640 """
641 min_args = 1
641 min_args = 1
642 min_args_error = "Please provide a paster config file as an argument."
642 min_args_error = "Please provide a paster config file as an argument."
643 takes_config_file = 1
643 takes_config_file = 1
644 requires_config_file = True
644 requires_config_file = True
645
645
646 def notify_msg(self, msg, log=False):
646 def notify_msg(self, msg, log=False):
647 """Make a notification to user, additionally if logger is passed
647 """Make a notification to user, additionally if logger is passed
648 it logs this action using given logger
648 it logs this action using given logger
649
649
650 :param msg: message that will be printed to user
650 :param msg: message that will be printed to user
651 :param log: logging instance, to use to additionally log this message
651 :param log: logging instance, to use to additionally log this message
652
652
653 """
653 """
654 if log and isinstance(log, logging):
654 if log and isinstance(log, logging):
655 log(msg)
655 log(msg)
656
656
657 def run(self, args):
657 def run(self, args):
658 """
658 """
659 Overrides Command.run
659 Overrides Command.run
660
660
661 Checks for a config file argument and loads it.
661 Checks for a config file argument and loads it.
662 """
662 """
663 if len(args) < self.min_args:
663 if len(args) < self.min_args:
664 raise BadCommand(
664 raise BadCommand(
665 self.min_args_error % {'min_args': self.min_args,
665 self.min_args_error % {'min_args': self.min_args,
666 'actual_args': len(args)})
666 'actual_args': len(args)})
667
667
668 # Decrement because we're going to lob off the first argument.
668 # Decrement because we're going to lob off the first argument.
669 # @@ This is hacky
669 # @@ This is hacky
670 self.min_args -= 1
670 self.min_args -= 1
671 self.bootstrap_config(args[0])
671 self.bootstrap_config(args[0])
672 self.update_parser()
672 self.update_parser()
673 return super(BasePasterCommand, self).run(args[1:])
673 return super(BasePasterCommand, self).run(args[1:])
674
674
675 def update_parser(self):
675 def update_parser(self):
676 """
676 """
677 Abstract method. Allows for the class's parser to be updated
677 Abstract method. Allows for the class's parser to be updated
678 before the superclass's `run` method is called. Necessary to
678 before the superclass's `run` method is called. Necessary to
679 allow options/arguments to be passed through to the underlying
679 allow options/arguments to be passed through to the underlying
680 celery command.
680 celery command.
681 """
681 """
682 raise NotImplementedError("Abstract Method.")
682 raise NotImplementedError("Abstract Method.")
683
683
684 def bootstrap_config(self, conf):
684 def bootstrap_config(self, conf):
685 """
685 """
686 Loads the pylons configuration.
686 Loads the pylons configuration.
687 """
687 """
688 from pylons import config as pylonsconfig
688 from pylons import config as pylonsconfig
689
689
690 self.path_to_ini_file = os.path.realpath(conf)
690 self.path_to_ini_file = os.path.realpath(conf)
691 conf = paste.deploy.appconfig('config:' + self.path_to_ini_file)
691 conf = paste.deploy.appconfig('config:' + self.path_to_ini_file)
692 pylonsconfig.init_app(conf.global_conf, conf.local_conf)
692 pylonsconfig.init_app(conf.global_conf, conf.local_conf)
693
693
694
694
695 def check_git_version():
695 def check_git_version():
696 """
696 """
697 Checks what version of git is installed in system, and issues a warning
697 Checks what version of git is installed in system, and issues a warning
698 if it's too old for RhodeCode to properly work.
698 if it's too old for RhodeCode to properly work.
699 """
699 """
700 import subprocess
700 import subprocess
701 from distutils.version import StrictVersion
701 from distutils.version import StrictVersion
702 from rhodecode import BACKENDS
702 from rhodecode import BACKENDS
703
703
704 p = subprocess.Popen('git --version', shell=True,
704 p = subprocess.Popen('git --version', shell=True,
705 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
705 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
706 stdout, stderr = p.communicate()
706 stdout, stderr = p.communicate()
707 ver = (stdout.split(' ')[-1] or '').strip() or '0.0.0'
707 ver = (stdout.split(' ')[-1] or '').strip() or '0.0.0'
708 if len(ver.split('.')) > 3:
708 if len(ver.split('.')) > 3:
709 #StrictVersion needs to be only 3 element type
709 #StrictVersion needs to be only 3 element type
710 ver = '.'.join(ver.split('.')[:3])
710 ver = '.'.join(ver.split('.')[:3])
711 try:
711 try:
712 _ver = StrictVersion(ver)
712 _ver = StrictVersion(ver)
713 except:
713 except:
714 _ver = StrictVersion('0.0.0')
714 _ver = StrictVersion('0.0.0')
715 stderr = traceback.format_exc()
715 stderr = traceback.format_exc()
716
716
717 req_ver = '1.7.4'
717 req_ver = '1.7.4'
718 to_old_git = False
718 to_old_git = False
719 if _ver < StrictVersion(req_ver):
719 if _ver < StrictVersion(req_ver):
720 to_old_git = True
720 to_old_git = True
721
721
722 if 'git' in BACKENDS:
722 if 'git' in BACKENDS:
723 log.debug('GIT version detected: %s' % stdout)
723 log.debug('GIT version detected: %s' % stdout)
724 if stderr:
724 if stderr:
725 log.warning('Unable to detect git version org error was:%r' % stderr)
725 log.warning('Unable to detect git version org error was:%r' % stderr)
726 elif to_old_git:
726 elif to_old_git:
727 log.warning('RhodeCode detected git version %s, which is too old '
727 log.warning('RhodeCode detected git version %s, which is too old '
728 'for the system to function properly. Make sure '
728 'for the system to function properly. Make sure '
729 'its version is at least %s' % (ver, req_ver))
729 'its version is at least %s' % (ver, req_ver))
730 return _ver
730 return _ver
731
731
732
732
733 @decorator.decorator
733 @decorator.decorator
734 def jsonify(func, *args, **kwargs):
734 def jsonify(func, *args, **kwargs):
735 """Action decorator that formats output for JSON
735 """Action decorator that formats output for JSON
736
736
737 Given a function that will return content, this decorator will turn
737 Given a function that will return content, this decorator will turn
738 the result into JSON, with a content-type of 'application/json' and
738 the result into JSON, with a content-type of 'application/json' and
739 output it.
739 output it.
740
740
741 """
741 """
742 from pylons.decorators.util import get_pylons
742 from pylons.decorators.util import get_pylons
743 from rhodecode.lib.ext_json import json
743 from rhodecode.lib.ext_json import json
744 pylons = get_pylons(args)
744 pylons = get_pylons(args)
745 pylons.response.headers['Content-Type'] = 'application/json; charset=utf-8'
745 pylons.response.headers['Content-Type'] = 'application/json; charset=utf-8'
746 data = func(*args, **kwargs)
746 data = func(*args, **kwargs)
747 if isinstance(data, (list, tuple)):
747 if isinstance(data, (list, tuple)):
748 msg = "JSON responses with Array envelopes are susceptible to " \
748 msg = "JSON responses with Array envelopes are susceptible to " \
749 "cross-site data leak attacks, see " \
749 "cross-site data leak attacks, see " \
750 "http://wiki.pylonshq.com/display/pylonsfaq/Warnings"
750 "http://wiki.pylonshq.com/display/pylonsfaq/Warnings"
751 warnings.warn(msg, Warning, 2)
751 warnings.warn(msg, Warning, 2)
752 log.warning(msg)
752 log.warning(msg)
753 log.debug("Returning JSON wrapped action output")
753 log.debug("Returning JSON wrapped action output")
754 return json.dumps(data, encoding='utf-8') No newline at end of file
754 return json.dumps(data, encoding='utf-8')
@@ -1,56 +1,55 b''
1 ## -*- coding: utf-8 -*-
1 ## -*- coding: utf-8 -*-
2 <%inherit file="/base/base.html"/>
2 <%inherit file="/base/base.html"/>
3
3
4 <%def name="title()">
4 <%def name="title()">
5 ${_('Admin journal')} - ${c.rhodecode_name}
5 ${_('Admin journal')} - ${c.rhodecode_name}
6 </%def>
6 </%def>
7
7
8 <%def name="breadcrumbs_links()">
8 <%def name="breadcrumbs_links()">
9 <form id="filter_form">
9 <form id="filter_form">
10 <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 _('journal filter...')}"/>
10 <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 _('journal filter...')}"/>
11 <span class="tooltip" title="${h.tooltip(h.journal_filter_help())}">?</span>
11 <span class="tooltip" title="${h.tooltip(h.journal_filter_help())}">?</span>
12 <input type='submit' value="${_('filter')}" class="ui-btn" style="padding:0px 2px 0px 2px;margin:0px"/>
12 <input type='submit' value="${_('filter')}" class="ui-btn" style="padding:0px 2px 0px 2px;margin:0px"/>
13 ${_('Admin journal')} - ${ungettext('%s entry', '%s entries', c.users_log.item_count) % (c.users_log.item_count)}
13 ${_('Admin journal')} - ${ungettext('%s entry', '%s entries', c.users_log.item_count) % (c.users_log.item_count)}
14 </form>
14 </form>
15 ${h.end_form()}
15 ${h.end_form()}
16 </%def>
16 </%def>
17
17
18 <%def name="page_nav()">
18 <%def name="page_nav()">
19 ${self.menu('admin')}
19 ${self.menu('admin')}
20 </%def>
20 </%def>
21 <%def name="main()">
21 <%def name="main()">
22 <div class="box">
22 <div class="box">
23 <!-- box / title -->
23 <!-- box / title -->
24 <div class="title">
24 <div class="title">
25 ${self.breadcrumbs()}
25 ${self.breadcrumbs()}
26 </div>
26 </div>
27 <!-- end box / title -->
27 <!-- end box / title -->
28 <div class="table">
28 <div class="table">
29 <div id="user_log">
29 <div id="user_log">
30 ${c.log_data}
30 ${c.log_data}
31 </div>
31 </div>
32 </div>
32 </div>
33 </div>
33 </div>
34
34
35 <script>
35 <script>
36 YUE.on('j_filter','click',function(){
36 YUE.on('j_filter','click',function(){
37 var jfilter = YUD.get('j_filter');
37 var jfilter = YUD.get('j_filter');
38 if(YUD.hasClass(jfilter, 'initial')){
38 if(YUD.hasClass(jfilter, 'initial')){
39 jfilter.value = '';
39 jfilter.value = '';
40 }
40 }
41 });
41 });
42 var fix_j_filter_width = function(len){
42 var fix_j_filter_width = function(len){
43 YUD.setStyle(YUD.get('j_filter'),'width',Math.max(80, len*6.50)+'px');
43 YUD.setStyle(YUD.get('j_filter'),'width',Math.max(80, len*6.50)+'px');
44 }
44 }
45 YUE.on('j_filter','keyup',function(){
45 YUE.on('j_filter','keyup',function(){
46 fix_j_filter_width(YUD.get('j_filter').value.length);
46 fix_j_filter_width(YUD.get('j_filter').value.length);
47 });
47 });
48 YUE.on('filter_form','submit',function(e){
48 YUE.on('filter_form','submit',function(e){
49 YUE.preventDefault(e)
49 YUE.preventDefault(e)
50 var val = YUD.get('j_filter').value;
50 var val = YUD.get('j_filter').value;
51 window.location = "${url.current(filter='__FILTER__')}".replace('__FILTER__',val);
51 window.location = "${url.current(filter='__FILTER__')}".replace('__FILTER__',val);
52 });
52 });
53 fix_j_filter_width(YUD.get('j_filter').value.length);
53 fix_j_filter_width(YUD.get('j_filter').value.length);
54 </script>
54 </script>
55 </%def>
55 </%def>
56
@@ -1,19 +1,17 b''
1 ## -*- coding: utf-8 -*-
1 ## -*- coding: utf-8 -*-
2 <%inherit file="main.html"/>
2 <%inherit file="main.html"/>
3
3
4 ${_('User %s opened pull request for repository %s and wants you to review changes.') % (('<b>%s</b>' % pr_user_created),pr_repo_url) |n}
4 ${_('User %s opened pull request for repository %s and wants you to review changes.') % (('<b>%s</b>' % pr_user_created),pr_repo_url) |n}
5 <div>${_('title')}: ${pr_title}</div>
5 <div>${_('title')}: ${pr_title}</div>
6 <div>${_('description')}:</div>
6 <div>${_('description')}:</div>
7 <div>${_('View this pull request here')}: ${pr_url}</div>
7 <div>${_('View this pull request here')}: ${pr_url}</div>
8 <p>
8 <p>
9 ${body}
9 ${body}
10 </p>
10 </p>
11
11
12 <div>${_('revisions for reviewing')}</div>
12 <div>${_('revisions for reviewing')}</div>
13 <ul>
13 <ul>
14 %for r in pr_revisions:
14 %for r in pr_revisions:
15 <li>${r}</li>
15 <li>${r}</li>
16 %endfor
16 %endfor
17 </ul>
17 </ul>
18
19
@@ -1,1 +1,1 b''
1 #TODO; write tests when we activate algo for permissions. No newline at end of file
1 #TODO; write tests when we activate algo for permissions.
General Comments 0
You need to be logged in to leave comments. Login now