aboutsummaryrefslogtreecommitdiff
path: root/gitosis/run_hook.py
blob: e535e6ac7a8a9e262405487232d756bf3296b3eb (plain)
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
"""
Perform gitosis actions for a git hook.
"""
 
import errno
import logging
import os
import sys
import shutil
 
from gitosis import repository
from gitosis import ssh
from gitosis import gitweb
from gitosis import gitdaemon
from gitosis import app
from gitosis import util
 
def post_update(cfg, git_dir):
    export = os.path.join(git_dir'gitosis-export')
    try:
        shutil.rmtree(export)
    except OSErrore:
        if e.errno == errno.ENOENT:
            pass
        else:
            raise
    repository.export(git_dir=git_dir, path=export)
    os.rename(
        os.path.join(export'gitosis.conf'),
        os.path.join(export'..''gitosis.conf'),
        )
    # re-read config to get up-to-date settings 
    cfg.read(os.path.join(export'..''gitosis.conf'))
    gitweb.set_descriptions(
        config=cfg,
        )
    generated = util.getGeneratedFilesDir(config=cfg)
    gitweb.generate_project_list(
        config=cfg,
        path=os.path.join(generated'projects.list'),
        )
    gitdaemon.set_export_ok(
        config=cfg,
        )
    authorized_keys = util.getSSHAuthorizedKeysPath(config=cfg)
    ssh.writeAuthorizedKeys(
        path=authorized_keys,
        keydir=os.path.join(export'keydir'),
        )
 
class Main(app.App):
    def create_parser(self):
        parser = super(Mainself).create_parser()
        parser.set_usage('%prog [OPTS] HOOK')
        parser.set_description(
            'Perform gitosis actions for a git hook')
        return parser
 
    def handle_args(self, parser, cfg, options, args):
        try:
            (hook,) = args
        except ValueError:
            parser.error('Missing argument HOOK.')
 
        log = logging.getLogger('gitosis.run_hook')
        os.umask(0022)
 
        git_dir = os.environ.get('GIT_DIR')
        if git_dir is None:
            log.error('Must have GIT_DIR set in enviroment')
            sys.exit(1)
 
        if hook == 'post-update':
            log.info('Running hook %s'hook)
            post_update(cfggit_dir)
            log.info('Done.')
        else:
            log.warning('Ignoring unknown hook: %r'hook)