Files @ 09fd90d91b6a
Branch filter:

Location: kallithea/rhodecode/lib/hooks.py - annotation

Marcin Kuzminski
merge with beta
d173938d711b
d173938d711b
d173938d711b
d173938d711b
d173938d711b
d173938d711b
6832ef664673
d173938d711b
d173938d711b
89efedac4e6c
d173938d711b
d173938d711b
a671db5bdd58
a671db5bdd58
a671db5bdd58
a671db5bdd58
6832ef664673
1e757ac98988
1e757ac98988
1e757ac98988
1e757ac98988
6832ef664673
1e757ac98988
a671db5bdd58
d173938d711b
d173938d711b
1e757ac98988
677408ee9355
7f5976da192c
926f55b038bc
7f5976da192c
7f5976da192c
926f55b038bc
1e757ac98988
c1516b35f91d
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
7ccf403b9c3f
1e757ac98988
e7eef7a1db6a
e7eef7a1db6a
6832ef664673
d173938d711b
d173938d711b
d173938d711b
d173938d711b
1e757ac98988
7ccf403b9c3f
9de452afbe01
9de452afbe01
9de452afbe01
9de452afbe01
9de452afbe01
9de452afbe01
9de452afbe01
9de452afbe01
9de452afbe01
59670f091c76
c1516b35f91d
7f5976da192c
e7eef7a1db6a
e7eef7a1db6a
6832ef664673
7f5976da192c
7f5976da192c
7f5976da192c
59670f091c76
926f55b038bc
926f55b038bc
926f55b038bc
d9972f76322e
7f5976da192c
59670f091c76
926f55b038bc
926f55b038bc
926f55b038bc
59670f091c76
926f55b038bc
926f55b038bc
926f55b038bc
926f55b038bc
7f5976da192c
1e757ac98988
c1516b35f91d
7f5976da192c
e7eef7a1db6a
e7eef7a1db6a
6832ef664673
5cc96df705b9
37c143aa8616
1e757ac98988
59670f091c76
926f55b038bc
926f55b038bc
926f55b038bc
926f55b038bc
d9972f76322e
59670f091c76
d9972f76322e
d9972f76322e
d9972f76322e
d9972f76322e
d9972f76322e
d9972f76322e
59670f091c76
d9972f76322e
d9972f76322e
d9972f76322e
d9972f76322e
d9972f76322e
59670f091c76
d9972f76322e
59670f091c76
d9972f76322e
d9972f76322e
d9972f76322e
59670f091c76
7f5976da192c
59670f091c76
926f55b038bc
59670f091c76
926f55b038bc
926f55b038bc
926f55b038bc
926f55b038bc
926f55b038bc
926f55b038bc
7f5976da192c
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
8ecfed1d8f8b
926f55b038bc
27abf546aa8a
87f0800abc7b
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
27abf546aa8a
926f55b038bc
926f55b038bc
926f55b038bc
926f55b038bc
926f55b038bc
926f55b038bc
926f55b038bc
27abf546aa8a
87f0800abc7b
# -*- coding: utf-8 -*-
"""
    rhodecode.lib.hooks
    ~~~~~~~~~~~~~~~~~~~

    Hooks runned by rhodecode

    :created_on: Aug 6, 2010
    :author: marcink
    :copyright: (C) 2010-2012 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

from mercurial.scmutil import revrange
from mercurial.node import nullrev
from rhodecode import EXTENSIONS
from rhodecode.lib import helpers as h
from rhodecode.lib.utils import action_logger
from inspect import isfunction


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


def repo_size(ui, repo, hooktype=None, **kwargs):
    """
    Presents size of repository after push

    :param ui:
    :param repo:
    :param hooktype:
    """

    size_hg_f, size_root_f, size_total_f = _get_scm_size('.hg', repo.root)

    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)


def log_pull_action(ui, repo, **kwargs):
    """
    Logs user last pull action

    :param ui:
    :param repo:
    """

    extras = dict(repo.ui.configitems('rhodecode_extras'))
    username = extras['username']
    repository = extras['repository']
    scm = extras['scm']
    action = 'pull'

    action_logger(username, action, repository, extras['ip'], commit=True)
    # extension hook call
    callback = getattr(EXTENSIONS, 'PULL_HOOK', None)

    if isfunction(callback):
        kw = {}
        kw.update(extras)
        callback(**kw)
    return 0


def log_push_action(ui, repo, **kwargs):
    """
    Maps user last push action to new changeset id, from mercurial

    :param ui:
    :param repo: repo object containing the `ui` object
    """

    extras = dict(repo.ui.configitems('rhodecode_extras'))
    username = extras['username']
    repository = extras['repository']
    action = extras['action'] + ':%s'
    scm = extras['scm']

    if scm == 'hg':
        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))
    elif scm == 'git':
        revs = []

    action = action % ','.join(revs)

    action_logger(username, action, repository, extras['ip'], commit=True)

    # extension hook call
    callback = getattr(EXTENSIONS, 'PUSH_HOOK', None)
    if isfunction(callback):
        kw = {'pushed_revs': revs}
        kw.update(extras)
        callback(**kw)
    return 0


def log_create_repository(repository_dict, created_by, **kwargs):
    """
    Post create repository Hook. This is a dummy function for admins to re-use
    if needed. It's taken from rhodecode-extensions module and executed
    if present

    :param repository: dict dump of repository object
    :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'

    """

    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)

    return 0