summaryrefslogtreecommitdiff
path: root/BitKeeper/triggers/post-outgoing.ciabot
blob: 25c2284832fa6c52a355deb8b3d169e2aeef1497 (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
#!/bin/sh

# Copyright (C) 2004 Chris Larson <kergoth@handhelds.org>
#
# Sanity checks taken from the scripts on commits.bkbits.net
# 	Copyright (C) 2003 Leonard Norrgard <leonard.norrgard@refactor.fi>
#
# 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 2 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, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.

check_sanity () {
    if [ X$BK_STATUS = XDRYRUN -o X$BK_STATUS = XNOTHING ]; then
        return 1
    fi

    # In order to make sure only pushes to public BitKeeper repositories
    # are broadcasted to #commits, we check that a) the parent repository
    # is on bkbits.net and b) we are the client.
    
    # Is parent a public BitKeeper repository at bkbits.net?
    if !(echo $BKD_HOST|grep -q bitkeeper.com); then
        return 1
    fi
    
    if [ $BK_SIDE != client ]; then
        return 1
    fi
}

# Check sanity - do we need to send anything?
check_sanity || exit 0

if (grep -q 'ChangeSet' $BK_CSETLIST); then
    # new, correct csets-out format
    nums=`bk changes -d":REV: " - < $BK_CSETLIST`
else

    # Convert numbers from the cset list into something useful
    nums=
    for s in `cat $BK_CSETLIST`; do
        # translate cset serial to cset #
        n=`bk prs -h -d"\\$if(:DS: -eq $s){:REV:}" ChangeSet`
        # dont send notifications about empty ChangeSets
        if test -z `bk prs -h -r"$n" -d'$if(:LI: -eq 0){$if(:LD: -eq 0){:REV:}}' ChangeSet`; then
        	nums="$n $nums"
        fi
    done
fi

# Send notifications to CIA
if test -n "$nums"; then
    echo "Sending notification to CIA irc bot (cia.navi.cx)."
    (
        for n in $nums; do
            $BK_ROOT/BitKeeper/triggers/ciabot_bk.sh $n
        done
    ) &
fi
exit 0