hooks.py
116 lines
| 3.4 KiB
| text/x-python
|
PythonLexer
r913 | # -*- 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. | ||||
""" | ||||
r547 | # 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; version 2 | ||||
# of the License or (at your opinion) any later version of the license. | ||||
# | ||||
# 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, write to the Free Software | ||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||||
# MA 02110-1301, USA. | ||||
r913 | import os | |||
import sys | ||||
import getpass | ||||
r547 | ||||
r654 | from mercurial.cmdutil import revrange | |||
from mercurial.node import nullrev | ||||
r913 | ||||
r654 | from rhodecode.lib import helpers as h | |||
from rhodecode.lib.utils import action_logger | ||||
r547 | ||||
def repo_size(ui, repo, hooktype=None, **kwargs): | ||||
r913 | """Presents size of repository after push | |||
:param ui: | ||||
:param repo: | ||||
:param hooktype: | ||||
""" | ||||
r547 | ||||
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: | ||||
r675 | try: | |||
size_hg += os.path.getsize(os.path.join(path, f)) | ||||
except OSError: | ||||
pass | ||||
r547 | else: | |||
for f in files: | ||||
r675 | try: | |||
size_root += os.path.getsize(os.path.join(path, f)) | ||||
except OSError: | ||||
pass | ||||
r547 | 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)) | ||||
r675 | ||||
r654 | def log_pull_action(ui, repo, **kwargs): | |||
r913 | """Logs user last pull action | |||
r654 | :param ui: | |||
:param repo: | ||||
""" | ||||
r675 | ||||
r654 | extra_params = dict(repo.ui.configitems('rhodecode_extras')) | |||
username = extra_params['username'] | ||||
repository = extra_params['repository'] | ||||
action = 'pull' | ||||
r675 | ||||
r654 | action_logger(username, action, repository, extra_params['ip']) | |||
r675 | ||||
r654 | return 0 | |||
r547 | ||||
r654 | def log_push_action(ui, repo, **kwargs): | |||
r913 | """Maps user last push action to new changeset id, from mercurial | |||
r604 | :param ui: | |||
:param repo: | ||||
r547 | """ | |||
r675 | ||||
r654 | extra_params = dict(repo.ui.configitems('rhodecode_extras')) | |||
username = extra_params['username'] | ||||
repository = extra_params['repository'] | ||||
r1114 | action = extra_params['action'] + ':%s' | |||
r654 | node = kwargs['node'] | |||
r675 | ||||
r654 | def get_revs(repo, rev_opt): | |||
if rev_opt: | ||||
revs = revrange(repo, rev_opt) | ||||
r675 | ||||
r654 | if len(revs) == 0: | |||
return (nullrev, nullrev) | ||||
return (max(revs), min(revs)) | ||||
else: | ||||
return (len(repo) - 1, 0) | ||||
r675 | ||||
r654 | stop, start = get_revs(repo, [node + ':']) | |||
r675 | ||||
r654 | revs = (str(repo[r]) for r in xrange(start, stop + 1)) | |||
r675 | ||||
r654 | action = action % ','.join(revs) | |||
r675 | ||||
r654 | action_logger(username, action, repository, extra_params['ip']) | |||
r675 | ||||
r654 | return 0 | |||
r675 | ||||