codeStriker(及与svn、bugzilla集成)使用过程记录 续

下面是codeStriker与svn、bugzilla集成使用的脚本(放在codestriker安装目录的bin下):

 

#!/usr/bin/perl -w
#########################################################################
# Create codestriker topic based on subversion commit.
# Install as a post-commit subversion hook.
# dmp 03/23/07
#########################################################################

# Absolute path of file mapping the author of a commit to a reviewer for it.
# Each line of the file should contain an author email address,
# followed by whitespace, followed by a reviewer email address.
# Lines starting with '#' are comments.
$REVIEWERS_FILE = "D:/hooks/reviewers.txt";

# Reviewer email to use if no mapping found in REVIEWERS_FILE
$DEFAULT_REVIEWER = "username/@hotmail.com";

# Suffix to add to username to get email address.
# TODO:  Would be better to get mappings from a file.
$EMAIL_SUFFIX = "/@hotmail.com";

# Codestriker specific parameters for topic creation.
$CODESTRIKER_URL = 'http://localhost/codestriker/codestriker.pl?action=create';
$CODESTRIKER_PROJECT = '2';
$CODESTRIKER_REPOSITORY = 'svn:file:///D:/svnroo';
$CODESTRIKER_CC = '';

# Used for development - write verbosely to log file
$DEBUG = 1;
$LOGFILE = "D:/codestriker-1.9.8/bin/post-commit-codestriker.log";

use lib 'D:/codestriker-1.9.8/bin';
########################################################################
# Shouldn't need to change anything under here.

# Codestriker-specific imports.
use CodestrikerClient;

use LWP::UserAgent;
use HTTP::Request;
use HTTP::Request::Common;

# Print message to stdout if DEBUG is set.
sub debug {
    local($msg) = @_;

    if ($DEBUG) {
        open(LOG, ">>$LOGFILE") || die ("Cannot open log file $LOGFILE: $!/n");
        print(LOG $msg, "/n");
        close(LOG);
    }
}

# Get the email address for the given username.  Currently this just adds
# $EMAIL_SUFFIX to the username, but it would be better to use a mapping file.
# param username
# return email address
sub get_email {
    local($username) = @_;
    return $username . $EMAIL_SUFFIX;
}

# Determine reviewer for review, based on mappings in
# REVIEWERS file.
# param:  author email address
# returns: the reviewer email address from the file, or DEFAULT_REVIEWER
sub determine_reviewer {
    local($author_email) = @_;
    my $reviewer = '';

    debug("author email is: " . $author_email);
    debug("attempting to open reviewers file: $REVIEWERS_FILE");
    open (RECLIST, "< $REVIEWERS_FILE") ||
        return $DEFAULT_REVIEWER;

    while (<RECLIST>) {
        # skip comment lines
        if (/^#/) {
            next;
        }

        @fields = split;
        if ($fields[0] eq $author_email) {
            $reviewer = $fields[1];
            debug("The reviewer for " . $author_email . " is: " . $reviewer);
            last;
        }
    }

    close RECLIST;

    if (! $reviewer) {
        $reviewer = $DEFAULT_REVIEWER;
        debug("Assigned default reviewer: " . $reviewer);
    }

    return $reviewer;
}

########################################################################
# Main program

my $repo=$ARGV[0];
my $rev=$ARGV[1];

debug("repos=$repo; rev=$rev");

my @svninfo_out=split("/n", `svnlook info -r $rev $repo`);
my $user=$svninfo_out[0];
my $date=$svninfo_out[1];
my $loglength=$svninfo_out[2];
my $topic_title = "SVN commit: " . $svninfo_out[3];
my $mesg=join("/n", @svninfo_out[3..$#svninfo_out]);

debug("user=$user");
debug("date=$date");
debug("loglength=$loglength");
debug("mesg=$mesg");

my $createTopic = 0;
if ($mesg =~ /REVIEW/) {
    debug("Found REVIEW - creating topic.");
    $createTopic = 1;
}

# Look for bug numbers in the log message, which need to be in the form:
# " Bug: 4250 " (without quotes, case insensitive, colon and space optional).
my @bugs = ();
my $bug_ids = $mesg;
while ($bug_ids =~ //b[Bb][Uu][Gg]:?/s*(/d+)/b/g) {
    push @bugs, $1;
    debug("Found bug number $1; creating topic.");
    $createTopic = 1;
}

if ($createTopic) {
    # Truncate the title if necessary.
    if (length($topic_title) > 57) {
        $topic_title = substr($topic_title, 0, 57) . "...";
    }

    my $reviewer = determine_reviewer(get_email($user));

    debug("Creating topic...");
    my $ua = new LWP::UserAgent;
    my $content = [ action => 'submit_new_topic',
                topic_title => $topic_title,
                topic_description => $mesg,
                projectid => $CODESTRIKER_PROJECT,
                repository => $CODESTRIKER_REPOSITORY,
                bug_ids => join(", ", @bugs),
                email => get_email($user),
                reviewers => $reviewer,
                cc => $CODESTRIKER_CC,
  topic_state => 'Open',
                module => "/",
                start_tag => $rev - 1,
                end_tag => $rev];
    my $response =
        $ua->request(HTTP::Request::Common::POST($CODESTRIKER_URL,
                             Content_Type => 'form-data',
                             Content => $content));

    # Indicate if the operation was successful.
    my $response_content = $response->content;
    my $rc = $response_content =~ /Topic URL: /<A HREF=/"(.*)/"/i;
    print STDERR "Failed to create topic, response: " .
                    $response_content . "/n" if $rc == 0;

} else {
    debug("Not creating topic.");
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值