summaryrefslogtreecommitdiffstats
path: root/src/lib/Gitolite/Hooks/PostUpdate.pm
blob: a76d1d95e7344ba228e6cec293a5e8c5ce969bd9 (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
package Gitolite::Hooks::PostUpdate;

# everything to do with the post-update hook
# ----------------------------------------------------------------------

@EXPORT = qw(
  post_update
  post_update_hook
);

use Exporter 'import';

use Gitolite::Rc;
use Gitolite::Common;

use strict;
use warnings;

# ----------------------------------------------------------------------

sub post_update {
    trace( 3, 'post-up', @ARGV );
    exit 0 unless grep( m(^refs/heads/master$), @ARGV );
    # this is the *real* post_update hook for gitolite

    tsh_try("git ls-tree --name-only master");
    _die "no files/dirs called 'hooks' or 'logs' are allowed" if tsh_text() =~ /^(hooks|logs)$/m;

    my $hooks_changed = 0;
    {
        local $ENV{GIT_WORK_TREE} = $rc{GL_ADMIN_BASE};

        tsh_try("git diff --name-only master");
        $hooks_changed++ if tsh_text() =~ m(/hooks/common/);
        # the leading slash ensure that this hooks/common directory is below
        # some top level directory, not *at* the top.  That's LOCAL_CODE, and
        # it's actual name could be anything but it doesn't matter to us.

        tsh_try("git checkout -f --quiet master");
    }
    _system("gitolite compile");
    _system("gitolite setup --hooks-only") if $hooks_changed;
    _system("gitolite trigger POST_COMPILE");

    exit 0;
}

{
    my $text = '';

    sub post_update_hook {
        if ( not $text ) {
            local $/ = undef;
            $text = <DATA>;
        }
        return $text;
    }
}

1;

__DATA__
#!/usr/bin/perl

use strict;
use warnings;

use lib $ENV{GL_LIBDIR};
use Gitolite::Hooks::PostUpdate;

# gitolite post-update hook (only for the admin repo)
# ----------------------------------------------------------------------

post_update();          # is not expected to return
exit 1;                 # so if it does, something is wrong