src/mercurialserver/servelog.py
author Paul Crowley <paul@lshift.net>
Mon, 09 Nov 2009 15:52:58 +0000
changeset 170 0f5e30c85fc3
parent 78 2a3407a14654
child 242 03d8f07230b3
permissions -rw-r--r--
Update README to cover using the makefile

# Copyright 2008-2009 LShift Ltd
#
# Authors:
# Paul Crowley <paul@lshift.net>
#
# This software may be used and distributed according to the terms
# of the GNU General Public License, incorporated herein by reference.

from mercurial.i18n import _
import mercurial.util
import mercurial.node

import os
import time
from mercurialserver import ruleset, changes

def hook(ui, repo, hooktype, node=None, source=None, **kwargs):
    if hooktype == 'changegroup':
        op = "push"
    elif hooktype == 'outgoing':
        op = "pull"
    else:
        raise mercurial.util.Abort(_('servelog installed as wrong hook type,'
            ' must be changegroup or outgoing but is %s') % hooktype)
    t = time.strftime("%Y-%m-%d_%H:%M:%S", time.gmtime())
    user = ruleset.rules.get('user')
    # FIXME: lock it
    log = open(repo.join("serve-log"), "a+")
    try:
        for ctx in changes.changes(repo, node):
            log.write("%s %s key=%s changeset=%s\n" % 
                (t, op, user, mercurial.node.hex(ctx.node())))
    finally:
        log.close()