hooks.py
259 lines
| 7.6 KiB
| text/x-python
|
PythonLexer
r913 | # -*- coding: utf-8 -*- | |||
""" | ||||
rhodecode.lib.hooks | ||||
~~~~~~~~~~~~~~~~~~~ | ||||
Hooks runned by rhodecode | ||||
r1203 | ||||
r913 | :created_on: Aug 6, 2010 | |||
:author: marcink | ||||
r1824 | :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com> | |||
r913 | :license: GPLv3, see COPYING for more details. | |||
""" | ||||
r1206 | # 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. | ||||
r1203 | # | |||
r547 | # 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. | ||||
r1203 | # | |||
r547 | # You should have received a copy of the GNU General Public License | |||
r1206 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
r913 | import os | |||
import sys | ||||
r2324 | import binascii | |||
from inspect import isfunction | ||||
r547 | ||||
r1415 | from mercurial.scmutil import revrange | |||
r654 | from mercurial.node import nullrev | |||
r2324 | ||||
r654 | from rhodecode.lib import helpers as h | |||
from rhodecode.lib.utils import action_logger | ||||
r2404 | from rhodecode.lib.vcs.backends.base import EmptyChangeset | |||
r547 | ||||
r1307 | ||||
r2196 | def _get_scm_size(alias, root_path): | |||
if not alias.startswith('.'): | ||||
alias += '.' | ||||
size_scm, size_root = 0, 0 | ||||
for path, dirs, files in os.walk(root_path): | ||||
if path.find(alias) != -1: | ||||
for f in files: | ||||
try: | ||||
size_scm += 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_scm_f = h.format_byte_size(size_scm) | ||||
size_root_f = h.format_byte_size(size_root) | ||||
size_total_f = h.format_byte_size(size_root + size_scm) | ||||
return size_scm_f, size_root_f, size_total_f | ||||
r547 | def repo_size(ui, repo, hooktype=None, **kwargs): | |||
r1722 | """ | |||
Presents size of repository after push | ||||
r1203 | ||||
r913 | :param ui: | |||
:param repo: | ||||
:param hooktype: | ||||
""" | ||||
r547 | ||||
r2196 | size_hg_f, size_root_f, size_total_f = _get_scm_size('.hg', repo.root) | |||
r1814 | ||||
last_cs = repo[len(repo) - 1] | ||||
msg = ('Repository size .hg:%s repo:%s total:%s\n' | ||||
'Last revision is now r%s:%s\n') % ( | ||||
size_hg_f, size_root_f, size_total_f, last_cs.rev(), last_cs.hex()[:12] | ||||
) | ||||
sys.stdout.write(msg) | ||||
r675 | ||||
r1307 | ||||
r654 | def log_pull_action(ui, repo, **kwargs): | |||
r1722 | """ | |||
Logs user last pull action | ||||
r1203 | ||||
r654 | :param ui: | |||
:param repo: | ||||
""" | ||||
r2105 | extras = dict(repo.ui.configitems('rhodecode_extras')) | |||
username = extras['username'] | ||||
repository = extras['repository'] | ||||
r2203 | scm = extras['scm'] | |||
r654 | action = 'pull' | |||
r675 | ||||
r2105 | action_logger(username, action, repository, extras['ip'], commit=True) | |||
# extension hook call | ||||
r2406 | from rhodecode import EXTENSIONS | |||
r2105 | callback = getattr(EXTENSIONS, 'PULL_HOOK', None) | |||
r675 | ||||
r2105 | if isfunction(callback): | |||
kw = {} | ||||
kw.update(extras) | ||||
callback(**kw) | ||||
r654 | return 0 | |||
r547 | ||||
r1307 | ||||
r654 | def log_push_action(ui, repo, **kwargs): | |||
r1722 | """ | |||
Maps user last push action to new changeset id, from mercurial | ||||
r1203 | ||||
r604 | :param ui: | |||
r2236 | :param repo: repo object containing the `ui` object | |||
r547 | """ | |||
r675 | ||||
r2105 | extras = dict(repo.ui.configitems('rhodecode_extras')) | |||
username = extras['username'] | ||||
repository = extras['repository'] | ||||
action = extras['action'] + ':%s' | ||||
r2203 | scm = extras['scm'] | |||
r675 | ||||
r2203 | if scm == 'hg': | |||
node = kwargs['node'] | ||||
def get_revs(repo, rev_opt): | ||||
if rev_opt: | ||||
revs = revrange(repo, rev_opt) | ||||
r675 | ||||
r2203 | if len(revs) == 0: | |||
return (nullrev, nullrev) | ||||
return (max(revs), min(revs)) | ||||
else: | ||||
return (len(repo) - 1, 0) | ||||
r675 | ||||
r2203 | stop, start = get_revs(repo, [node + ':']) | |||
r2324 | h = binascii.hexlify | |||
r2407 | revs = [h(repo[r].node()) for r in xrange(start, stop + 1)] | |||
r2203 | elif scm == 'git': | |||
r2402 | revs = kwargs.get('_git_revs', []) | |||
if '_git_revs' in kwargs: | ||||
kwargs.pop('_git_revs') | ||||
r675 | ||||
r654 | action = action % ','.join(revs) | |||
r675 | ||||
r2105 | action_logger(username, action, repository, extras['ip'], commit=True) | |||
r675 | ||||
r2105 | # extension hook call | |||
r2406 | from rhodecode import EXTENSIONS | |||
r2105 | callback = getattr(EXTENSIONS, 'PUSH_HOOK', None) | |||
if isfunction(callback): | ||||
kw = {'pushed_revs': revs} | ||||
kw.update(extras) | ||||
callback(**kw) | ||||
r654 | return 0 | |||
r1972 | ||||
def log_create_repository(repository_dict, created_by, **kwargs): | ||||
""" | ||||
Post create repository Hook. This is a dummy function for admins to re-use | ||||
r2109 | if needed. It's taken from rhodecode-extensions module and executed | |||
r2105 | if present | |||
r1972 | ||||
r1982 | :param repository: dict dump of repository object | |||
r1972 | :param created_by: username who created repository | |||
:param created_date: date of creation | ||||
available keys of repository_dict: | ||||
'repo_type', | ||||
'description', | ||||
'private', | ||||
'created_on', | ||||
'enable_downloads', | ||||
'repo_id', | ||||
'user_id', | ||||
'enable_statistics', | ||||
'clone_uri', | ||||
'fork_id', | ||||
'group_id', | ||||
'repo_name' | ||||
""" | ||||
r2406 | from rhodecode import EXTENSIONS | |||
r2105 | callback = getattr(EXTENSIONS, 'CREATE_REPO_HOOK', None) | |||
if isfunction(callback): | ||||
kw = {} | ||||
kw.update(repository_dict) | ||||
kw.update({'created_by': created_by}) | ||||
kw.update(kwargs) | ||||
return callback(**kw) | ||||
r1972 | ||||
r1982 | return 0 | |||
r2402 | ||||
def handle_git_post_receive(repo_path, revs, env): | ||||
""" | ||||
r2407 | A really hacky method that is runned by git post-receive hook and logs | |||
r2409 | an push action together with pushed revisions. It's executed by subprocess | |||
thus needs all info to be able to create a on the fly pylons enviroment, | ||||
connect to database and run the logging code. Hacky as sh*t but works. | ||||
r2402 | ||||
:param repo_path: | ||||
:type repo_path: | ||||
:param revs: | ||||
:type revs: | ||||
:param env: | ||||
:type env: | ||||
""" | ||||
from paste.deploy import appconfig | ||||
from sqlalchemy import engine_from_config | ||||
from rhodecode.config.environment import load_environment | ||||
from rhodecode.model import init_model | ||||
from rhodecode.model.db import RhodeCodeUi | ||||
from rhodecode.lib.utils import make_ui | ||||
from rhodecode.model.db import Repository | ||||
path, ini_name = os.path.split(env['RHODECODE_CONFIG_FILE']) | ||||
conf = appconfig('config:%s' % ini_name, relative_to=path) | ||||
load_environment(conf.global_conf, conf.local_conf) | ||||
engine = engine_from_config(conf, 'sqlalchemy.db1.') | ||||
init_model(engine) | ||||
baseui = make_ui('db') | ||||
repo = Repository.get_by_full_path(repo_path) | ||||
_hooks = dict(baseui.configitems('hooks')) or {} | ||||
# if push hook is enabled via web interface | ||||
if _hooks.get(RhodeCodeUi.HOOK_PUSH): | ||||
extras = { | ||||
'username': env['RHODECODE_USER'], | ||||
'repository': repo.repo_name, | ||||
'scm': 'git', | ||||
'action': 'push', | ||||
'ip': env['RHODECODE_CONFIG_IP'], | ||||
} | ||||
for k, v in extras.items(): | ||||
baseui.setconfig('rhodecode_extras', k, v) | ||||
repo = repo.scm_instance | ||||
repo.ui = baseui | ||||
r2404 | old_rev, new_rev, ref = revs | |||
if old_rev == EmptyChangeset().raw_id: | ||||
cmd = "for-each-ref --format='%(refname)' 'refs/heads/*'" | ||||
heads = repo.run_git_command(cmd)[0] | ||||
heads = heads.replace(ref, '') | ||||
r2408 | heads = ' '.join(map(lambda c: c.strip('\n').strip(), | |||
heads.splitlines())) | ||||
cmd = ('log ' + new_rev + | ||||
' --reverse --pretty=format:"%H" --not ' + heads) | ||||
r2404 | else: | |||
r2408 | cmd = ('log ' + old_rev + '..' + new_rev + | |||
' --reverse --pretty=format:"%H"') | ||||
r2402 | git_revs = repo.run_git_command(cmd)[0].splitlines() | |||
log_push_action(baseui, repo, _git_revs=git_revs) | ||||