Files
@ 4f2c4fcc770b
Branch filter:
Location: kallithea/rhodecode/lib/hooks.py - annotation
4f2c4fcc770b
3.3 KiB
text/x-python
fixed Python2.5 socket error
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | d173938d711b d173938d711b d173938d711b d173938d711b d173938d711b d173938d711b 6832ef664673 d173938d711b d173938d711b 6832ef664673 d173938d711b d173938d711b a671db5bdd58 a671db5bdd58 a671db5bdd58 a671db5bdd58 6832ef664673 1e757ac98988 1e757ac98988 1e757ac98988 1e757ac98988 6832ef664673 1e757ac98988 a671db5bdd58 d173938d711b d173938d711b d173938d711b 1e757ac98988 7f5976da192c 7f5976da192c d173938d711b 7f5976da192c 7f5976da192c 1e757ac98988 c1516b35f91d 1e757ac98988 d173938d711b 6832ef664673 d173938d711b d173938d711b d173938d711b d173938d711b 1e757ac98988 1e757ac98988 1e757ac98988 1e757ac98988 1e757ac98988 1e757ac98988 1e757ac98988 59670f091c76 59670f091c76 59670f091c76 59670f091c76 1e757ac98988 1e757ac98988 59670f091c76 59670f091c76 59670f091c76 59670f091c76 59670f091c76 1e757ac98988 1e757ac98988 1e757ac98988 1e757ac98988 1e757ac98988 59670f091c76 c1516b35f91d 7f5976da192c d173938d711b 6832ef664673 7f5976da192c 7f5976da192c 7f5976da192c 59670f091c76 7f5976da192c 7f5976da192c 7f5976da192c 7f5976da192c 59670f091c76 7f5976da192c 59670f091c76 7f5976da192c 1e757ac98988 c1516b35f91d 7f5976da192c d173938d711b 6832ef664673 5cc96df705b9 5cc96df705b9 1e757ac98988 59670f091c76 7f5976da192c 7f5976da192c 7f5976da192c 4de3fa6290a7 7f5976da192c 59670f091c76 7f5976da192c 7f5976da192c 7f5976da192c 59670f091c76 7f5976da192c 7f5976da192c 7f5976da192c 7f5976da192c 7f5976da192c 59670f091c76 7f5976da192c 59670f091c76 7f5976da192c 59670f091c76 7f5976da192c 59670f091c76 7f5976da192c 59670f091c76 7f5976da192c | # -*- coding: utf-8 -*-
"""
rhodecode.lib.hooks
~~~~~~~~~~~~~~~~~~~
Hooks runned by rhodecode
:created_on: Aug 6, 2010
:author: marcink
:copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
:license: GPLv3, see COPYING for more details.
"""
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
import sys
import getpass
from mercurial.cmdutil import revrange
from mercurial.node import nullrev
from rhodecode.lib import helpers as h
from rhodecode.lib.utils import action_logger
def repo_size(ui, repo, hooktype=None, **kwargs):
"""Presents size of repository after push
:param ui:
:param repo:
:param hooktype:
"""
if hooktype != 'changegroup':
return False
size_hg, size_root = 0, 0
for path, dirs, files in os.walk(repo.root):
if path.find('.hg') != -1:
for f in files:
try:
size_hg += os.path.getsize(os.path.join(path, f))
except OSError:
pass
else:
for f in files:
try:
size_root += os.path.getsize(os.path.join(path, f))
except OSError:
pass
size_hg_f = h.format_byte_size(size_hg)
size_root_f = h.format_byte_size(size_root)
size_total_f = h.format_byte_size(size_root + size_hg)
sys.stdout.write('Repository size .hg:%s repo:%s total:%s\n' \
% (size_hg_f, size_root_f, size_total_f))
def log_pull_action(ui, repo, **kwargs):
"""Logs user last pull action
:param ui:
:param repo:
"""
extra_params = dict(repo.ui.configitems('rhodecode_extras'))
username = extra_params['username']
repository = extra_params['repository']
action = 'pull'
action_logger(username, action, repository, extra_params['ip'])
return 0
def log_push_action(ui, repo, **kwargs):
"""Maps user last push action to new changeset id, from mercurial
:param ui:
:param repo:
"""
extra_params = dict(repo.ui.configitems('rhodecode_extras'))
username = extra_params['username']
repository = extra_params['repository']
action = extra_params['action'] + ':%s'
node = kwargs['node']
def get_revs(repo, rev_opt):
if rev_opt:
revs = revrange(repo, rev_opt)
if len(revs) == 0:
return (nullrev, nullrev)
return (max(revs), min(revs))
else:
return (len(repo) - 1, 0)
stop, start = get_revs(repo, [node + ':'])
revs = (str(repo[r]) for r in xrange(start, stop + 1))
action = action % ','.join(revs)
action_logger(username, action, repository, extra_params['ip'])
return 0
|