summaryrefslogtreecommitdiffstats
path: root/lib/Crawl/Bot/Plugin/Commit.pm
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2012-01-02 22:38:21 -0500
committerNeil Moore <neil@s-z.org>2012-01-02 22:38:21 -0500
commit2ccf5107e0d93c9bcf92a1232e5a83329b90f1b4 (patch)
tree3330f8a8a416bc1c8d0f7adca97d5cf2826a19d8 /lib/Crawl/Bot/Plugin/Commit.pm
parent23c1498b3817a6959c85787b5f962734da9095a6 (diff)
downloadcrawlbot-2ccf5107e0d93c9bcf92a1232e5a83329b90f1b4.tar.gz
crawlbot-2ccf5107e0d93c9bcf92a1232e5a83329b90f1b4.zip
Send responses to the correct channel/user, not everyone.
Diffstat (limited to 'lib/Crawl/Bot/Plugin/Commit.pm')
-rw-r--r--lib/Crawl/Bot/Plugin/Commit.pm10
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/Crawl/Bot/Plugin/Commit.pm b/lib/Crawl/Bot/Plugin/Commit.pm
index 7f51848..70b7278 100644
--- a/lib/Crawl/Bot/Plugin/Commit.pm
+++ b/lib/Crawl/Bot/Plugin/Commit.pm
@@ -45,6 +45,8 @@ sub said {
my $self = shift;
my ($args) = @_;
+ my @keys = (who => $args->{who}, channel => $args->{channel}, "body");
+
if ($args->{body} =~ /^%git(?:\s+(.*))?$/) {
my $rev = $1;
$rev = "HEAD" unless $rev;
@@ -53,11 +55,13 @@ sub said {
my $abbr = substr($commit->{hash}, 0, 12);
my $pl = ($commit->{nfiles} == 1 ? "" : "s");
- $self->say_all("$commit->{author} * r$abbr: $commit->{subject} "
- . "($commit->{date}, $commit->{nfiles} file$pl, $commit->{nins}+ $commit->{ndel}-)");
+ $self->say(@keys, "$commit->{author} * r$abbr: $commit->{subject} "
+ . "($commit->{date}, $commit->{nfiles} file$pl, "
+ . "$commit->{nins}+ $commit->{ndel}-)"
+ );
} else {
my $ev = $? >> 8;
- $self->say_all("Could not find commit $rev (git returned $ev)");
+ $self->say(@keys, "Could not find commit $rev (git returned $ev)");
}
}
}