1998-10-17 01:54:40 +00:00
|
|
|
#!/usr/bonsaitools/bin/perl5 -w
|
|
|
|
# -*- Mode: perl; indent-tabs-mode: nil -*-
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla Public License
|
|
|
|
# Version 1.0 (the "License"); you may not use this file except in
|
|
|
|
# compliance with the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS"
|
|
|
|
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing rights and limitations
|
|
|
|
# under the License.
|
|
|
|
#
|
|
|
|
# The Original Code is the Bugzilla Bug Tracking System.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is Netscape Communications
|
|
|
|
# Corporation. Portions created by Netscape are Copyright (C) 1998
|
|
|
|
# Netscape Communications Corporation. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s): Harrison Page <harrison@netscape.com>
|
|
|
|
# Terry Weissman <terry@mozilla.org>
|
|
|
|
|
|
|
|
#
|
|
|
|
# mozbot.pl harrison@netscape.com 10/14/98
|
|
|
|
# "irc bot for the gang on #mozilla"
|
|
|
|
#
|
|
|
|
# features: reports tinderbox status upon request.
|
|
|
|
# remembers urls. tells you the phase of the moon.
|
1998-10-29 11:01:29 +00:00
|
|
|
# grabs mozillaZine headlines. fetches slashdot.org
|
|
|
|
# news. bot will auto-op based on nick and remote host.
|
1998-10-17 01:54:40 +00:00
|
|
|
#
|
|
|
|
# hack on me! required reading:
|
|
|
|
#
|
|
|
|
# Net::IRC web page:
|
|
|
|
# http://netirc.betterbox.net/
|
|
|
|
# (free software)
|
|
|
|
# or get it from CPAN @ http://www.perl.com/CPAN
|
|
|
|
#
|
|
|
|
# RFC 1459 (Internet Relay Chat Protocol):
|
|
|
|
# http://sunsite.cnlab-switch.ch/ftp/doc/standard/rfc/14xx/1459
|
|
|
|
|
|
|
|
|
|
|
|
$SIG{'INT'} = 'killed';
|
|
|
|
$SIG{'KILL'} = 'killed';
|
|
|
|
$SIG{'TERM'} = 'killed';
|
|
|
|
|
1998-10-22 22:01:42 +00:00
|
|
|
use strict;
|
|
|
|
use diagnostics;
|
1998-10-17 01:54:40 +00:00
|
|
|
use lib ".";
|
|
|
|
use Net::IRC;
|
1998-10-22 02:45:27 +00:00
|
|
|
use LWP::Simple;
|
1998-10-17 01:54:40 +00:00
|
|
|
use Tinderbox;
|
|
|
|
use Carp;
|
1998-11-06 20:53:22 +00:00
|
|
|
use Chatbot::Eliza;
|
1998-10-17 01:54:40 +00:00
|
|
|
|
|
|
|
$|++;
|
|
|
|
|
1999-01-29 20:56:23 +00:00
|
|
|
my $VERSION = "1.27"; # keep me in sync with the mozilla.org cvs repository
|
1998-10-22 02:45:27 +00:00
|
|
|
my $debug = 1; # debug output also includes warnings, errors
|
1998-10-17 01:54:40 +00:00
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
my %msgcmds = (
|
|
|
|
"url" => \&bot_urls,
|
|
|
|
);
|
|
|
|
|
|
|
|
my %pubcmds = (
|
|
|
|
"(help|about)" => \&bot_about,
|
|
|
|
"(hi|hello|lo|sup)" => \&bot_hi,
|
|
|
|
"moon" => \&bot_moon,
|
|
|
|
"up" => \&bot_up,
|
|
|
|
"trees" => \&bot_tinderbox,
|
|
|
|
"(slashdot|sd|\/\.)" => \&bot_slashdot,
|
1999-01-07 23:21:44 +00:00
|
|
|
"(freshmeat|fm)" => \&bot_freshmeat,,
|
1998-11-04 01:19:08 +00:00
|
|
|
"(mozillazine|zine|mz)" => \&bot_mozillazine,
|
1998-12-31 18:38:54 +00:00
|
|
|
"(mozillaorg|mozilla|mo)" => \&bot_mozillaorg,
|
|
|
|
"debug" => \&bot_debug,
|
1999-01-07 22:33:01 +00:00
|
|
|
"stocks" => \&bot_stocks,
|
1998-10-29 18:59:22 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
my %admincmds = (
|
|
|
|
"bless" => \&bot_bless,
|
|
|
|
"unbless" => \&bot_unbless,
|
|
|
|
"shutdown" => \&bot_shutdown,
|
|
|
|
"say" => \&bot_say,
|
|
|
|
"list" => \&bot_list,
|
|
|
|
);
|
1998-10-17 01:54:40 +00:00
|
|
|
|
1998-10-17 02:50:48 +00:00
|
|
|
@::origargv = @ARGV;
|
|
|
|
|
1998-10-17 01:54:40 +00:00
|
|
|
my $server = shift;
|
|
|
|
my $port = shift;
|
|
|
|
my $nick = shift;
|
|
|
|
my $channel = shift;
|
|
|
|
|
1999-01-07 22:33:01 +00:00
|
|
|
my $stockf = "stocklist";
|
|
|
|
my %stocklist = ();
|
|
|
|
my %stockvals = ();
|
|
|
|
my %stockhist;
|
|
|
|
|
1998-10-17 01:54:40 +00:00
|
|
|
$server = $server || "irc.mozilla.org";
|
|
|
|
$port = $port || "6667";
|
|
|
|
$nick = $nick || "mozbot";
|
|
|
|
$channel = $channel || "#mozilla";
|
|
|
|
|
1999-03-05 06:28:58 +00:00
|
|
|
&debug ("mozbot $VERSION starting up");
|
1998-10-17 01:54:40 +00:00
|
|
|
|
1999-01-07 22:42:42 +00:00
|
|
|
LoadStockList();
|
|
|
|
|
1998-10-22 02:45:27 +00:00
|
|
|
&create_pid_file;
|
1998-10-17 01:54:40 +00:00
|
|
|
|
1998-10-22 02:45:27 +00:00
|
|
|
# read admin list
|
1998-10-29 11:01:29 +00:00
|
|
|
my %admins = ( "sar" => "netscape.com", "terry" => "netscape.com" );
|
1998-10-22 22:01:42 +00:00
|
|
|
my $adminf = ".mozbot-admins";
|
1998-10-22 02:45:27 +00:00
|
|
|
&fetch_admin_conf (\%admins);
|
1998-10-17 01:54:40 +00:00
|
|
|
|
|
|
|
my $uptime = 0;
|
|
|
|
|
1998-10-22 22:01:42 +00:00
|
|
|
$::moon = "./moon";
|
|
|
|
$::moon = (-f $::moon) ? $::moon : "";
|
1998-10-29 18:59:22 +00:00
|
|
|
delete $pubcmds{'moon'} if (! $::moon);
|
1998-10-17 01:54:40 +00:00
|
|
|
|
|
|
|
my $phase;
|
1998-10-22 02:45:27 +00:00
|
|
|
my $last_moon = 0;
|
1998-10-17 01:54:40 +00:00
|
|
|
|
|
|
|
# leave @trees empty if you don't want tinderbox details
|
|
|
|
|
1998-12-31 23:27:49 +00:00
|
|
|
my @trees = qw (Mozilla-External SeaMonkey);
|
1998-10-17 01:54:40 +00:00
|
|
|
my $trees;
|
1998-10-22 02:45:27 +00:00
|
|
|
my $status;
|
1998-10-17 01:54:40 +00:00
|
|
|
my $last_tree;
|
|
|
|
my %broken;
|
|
|
|
my @urls;
|
|
|
|
|
1998-10-22 02:45:27 +00:00
|
|
|
my $greet = 0;
|
|
|
|
my @greetings =
|
|
|
|
(
|
|
|
|
"g'day", "bonjour", "guten tag", "moshi, moshi",
|
1998-12-31 23:29:48 +00:00
|
|
|
"hello", "hola", "hi", "buono giorno", "aloha",
|
1998-10-22 02:45:27 +00:00
|
|
|
"hey", "'sup", "lo", "howdy", "saluton", "hei",
|
1998-12-31 23:29:48 +00:00
|
|
|
"hallo", "word", "yo yo yo", "rheeet", "bom dia",
|
|
|
|
"ciao"
|
1998-10-22 02:45:27 +00:00
|
|
|
);
|
1998-10-17 01:54:40 +00:00
|
|
|
|
1998-10-29 11:01:29 +00:00
|
|
|
# leave $slashdot tuned to undef if you don't want slashdot
|
|
|
|
# headlines checked every two hours
|
|
|
|
|
|
|
|
my $slashdot = "http://slashdot.org/ultramode.txt";
|
|
|
|
my @slashdot;
|
1998-11-04 01:19:08 +00:00
|
|
|
my $last_slashdot = 0;
|
1998-10-29 11:01:29 +00:00
|
|
|
|
1999-01-07 23:21:44 +00:00
|
|
|
# leave $freshmeat tuned to undef if you don't want freshmeat
|
|
|
|
# headlines checked every two hours
|
|
|
|
|
1999-01-22 22:15:08 +00:00
|
|
|
my $freshmeat = "http://freshmeat.net/files/freshmeat/recentnews.txt";
|
1999-01-07 23:21:44 +00:00
|
|
|
my @freshmeat;
|
|
|
|
my $last_freshmeat = 0;
|
|
|
|
|
1998-10-29 11:01:29 +00:00
|
|
|
# leave $mozillazine undef'd if you don't want mozillazine
|
|
|
|
# headlines checked every eight hours
|
1998-10-22 02:45:27 +00:00
|
|
|
|
1998-11-16 18:58:24 +00:00
|
|
|
my $mozillazine = "http://www.mozillazine.org/index.html";
|
1998-10-29 11:01:29 +00:00
|
|
|
my @mozillazine;
|
1998-11-04 01:19:08 +00:00
|
|
|
my $last_mozillazine = 0;
|
1998-10-22 02:45:27 +00:00
|
|
|
|
1998-12-31 18:38:54 +00:00
|
|
|
|
|
|
|
my $mozillaorg = "http://www.mozilla.org/news.txt";
|
|
|
|
my @mozillaorg;
|
|
|
|
my $last_mozillaorg = 0;
|
|
|
|
|
|
|
|
|
1998-10-22 02:45:27 +00:00
|
|
|
my $irc = new Net::IRC or confess "$0: duh?";
|
1998-10-17 01:54:40 +00:00
|
|
|
|
|
|
|
my $bot = $irc->newconn
|
|
|
|
(
|
|
|
|
Server => $server,
|
|
|
|
Port => $port,
|
|
|
|
Nick => $nick,
|
1998-10-22 02:45:27 +00:00
|
|
|
Ircname => "mozilla.org bot/thing $VERSION",
|
1998-10-17 01:54:40 +00:00
|
|
|
Username => $nick,
|
|
|
|
)
|
|
|
|
or die "$0: can't connect to $server, port $port";
|
|
|
|
|
|
|
|
&debug ("adding global handlers");
|
|
|
|
$bot->add_global_handler ([ 251,252,253,254,302,255 ], \&on_startup);
|
|
|
|
$bot->add_global_handler (376, \&on_connect);
|
|
|
|
$bot->add_global_handler (433, \&on_nick_taken);
|
|
|
|
$bot->add_global_handler ([ 'disconnect', 'kill', 474, 465 ], \&on_boot);
|
|
|
|
|
|
|
|
&debug ("adding more handlers");
|
|
|
|
$bot->add_handler ('msg', \&on_msg);
|
1998-10-22 02:45:27 +00:00
|
|
|
$bot->add_handler ('public', \&on_public);
|
|
|
|
$bot->add_handler ('join', \&on_join);
|
1998-10-17 01:54:40 +00:00
|
|
|
|
1998-10-22 02:45:27 +00:00
|
|
|
&debug ("scheduling stuff");
|
1998-10-17 01:54:40 +00:00
|
|
|
$bot->schedule (0, \&tinderbox);
|
1998-10-17 02:50:48 +00:00
|
|
|
$bot->schedule (0, \&checksourcechange);
|
1998-10-22 02:45:27 +00:00
|
|
|
$bot->schedule (0, \&mozillazine);
|
1998-12-31 18:38:54 +00:00
|
|
|
$bot->schedule (0, \&mozillaorg);
|
1998-10-29 11:01:29 +00:00
|
|
|
$bot->schedule (0, \&slashdot);
|
1999-01-22 22:15:08 +00:00
|
|
|
# $bot->schedule (0, \&freshmeat);
|
1999-01-07 22:33:01 +00:00
|
|
|
$bot->schedule (0, \&stocks);
|
1998-10-17 01:54:40 +00:00
|
|
|
|
|
|
|
&debug ("connecting to $server $port as $nick on $channel");
|
|
|
|
$irc->start;
|
|
|
|
|
|
|
|
# and done.
|
|
|
|
|
|
|
|
################################
|
|
|
|
# Net::IRC handler subroutines #
|
|
|
|
################################
|
|
|
|
|
|
|
|
sub on_startup
|
|
|
|
{
|
|
|
|
my ($self, $event) = @_;
|
|
|
|
my (@args) = ($event->args);
|
|
|
|
shift (@args);
|
|
|
|
|
|
|
|
&debug ("@args\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
sub on_connect
|
|
|
|
{
|
|
|
|
my $self = shift;
|
|
|
|
&debug ("startup took " . (time - $^T) . " seconds");
|
|
|
|
|
|
|
|
$self->join ($channel);
|
|
|
|
|
|
|
|
$uptime = time;
|
|
|
|
}
|
|
|
|
|
|
|
|
# on_nick_taken: or do something smarter
|
|
|
|
|
|
|
|
sub on_nick_taken
|
|
|
|
{
|
|
|
|
die "hey! somebody took my nick!";
|
|
|
|
}
|
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
|
|
|
|
sub do_command {
|
|
|
|
my ($hashref, $nick, $cmd, $rest) = (@_);
|
|
|
|
foreach my $m (keys %$hashref) {
|
|
|
|
if ($cmd =~ m/^$m$/) {
|
|
|
|
&{$hashref->{$m}} ($nick, $cmd, $rest);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
1998-10-17 01:54:40 +00:00
|
|
|
# on_msg: private message received via /msg
|
|
|
|
|
1998-11-06 20:53:22 +00:00
|
|
|
sub on_msg {
|
|
|
|
my ($self, $event) = @_;
|
|
|
|
my ($nick) = $event->nick;
|
|
|
|
my ($arg) = $event->args;
|
1998-10-29 18:59:22 +00:00
|
|
|
my @arglist = split(' ', $arg);
|
|
|
|
my $cmd = shift @arglist;
|
|
|
|
my $rest = join(' ', @arglist);
|
|
|
|
$::speaker = $nick; # Hack!!!
|
1998-10-17 01:54:40 +00:00
|
|
|
|
1998-10-29 16:56:30 +00:00
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
if (exists $admins{$nick}) {
|
|
|
|
if (do_command(\%admincmds, $nick, $cmd, $rest)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (do_command(\%pubcmds, $nick, $cmd, $rest)) {
|
|
|
|
return;
|
|
|
|
}
|
1998-11-06 20:53:22 +00:00
|
|
|
if (do_command(\%msgcmds, $nick, $cmd, $rest)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
do_unknown($nick, $cmd, $rest);
|
1998-10-29 18:59:22 +00:00
|
|
|
}
|
1998-10-29 16:56:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
sub bot_bless {
|
|
|
|
my ($nick, $cmd, $rest) = (@_);
|
|
|
|
my ($who, $where) = split(' ', $rest);
|
|
|
|
if (! $who or ! $where) {
|
|
|
|
$bot->privmsg ($nick, "usage: bless [ user ] [ host ] " .
|
|
|
|
"(example: bless marca netscape.com)");
|
|
|
|
return;
|
1998-10-29 16:56:30 +00:00
|
|
|
}
|
1998-10-29 18:59:22 +00:00
|
|
|
$admins{$who} = $where;
|
|
|
|
&debug ("$nick blessed $who ($where)");
|
|
|
|
&store_admin_conf (\%admins);
|
|
|
|
$bot->privmsg ($nick,
|
|
|
|
"mozbot admins: " . join ' ', (sort keys %admins));
|
|
|
|
}
|
|
|
|
|
|
|
|
sub bot_unbless {
|
|
|
|
my ($nick, $cmd, $rest) = (@_);
|
|
|
|
my ($who) = ($rest);
|
|
|
|
if (exists ($admins{$who})) {
|
|
|
|
delete $admins{$who};
|
|
|
|
&debug ("$nick unblessed $who");
|
|
|
|
&store_admin_conf (\%admins);
|
|
|
|
$bot->privmsg ($nick,
|
|
|
|
"mozbot admins: " . join ' ', (sort keys %admins));
|
|
|
|
return;
|
1998-10-29 16:56:30 +00:00
|
|
|
}
|
1998-10-29 18:59:22 +00:00
|
|
|
$bot->privmsg($nick, "Can only unbless one of: " .
|
|
|
|
join(' ', (sort keys %admins)));
|
|
|
|
}
|
|
|
|
|
|
|
|
sub bot_shutdown {
|
|
|
|
my ($nick, $cmd, $rest) = (@_);
|
|
|
|
if ($rest ne "yes") {
|
|
|
|
$bot->privmsg ($nick, "usage: shutdown yes");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
&debug ("forced shutdown from $nick");
|
|
|
|
$::dontQuitOnSignal++;
|
|
|
|
$bot->quit ("$nick told me to shutdown");
|
|
|
|
exit (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sub bot_say {
|
|
|
|
my ($nick, $cmd, $rest) = (@_);
|
|
|
|
my $text = $rest;
|
|
|
|
if ($text =~ m@^/me (.*)@) {
|
|
|
|
$bot->me($channel, $1);
|
1998-10-29 16:56:30 +00:00
|
|
|
} else {
|
1998-10-29 18:59:22 +00:00
|
|
|
$bot->privmsg ($channel, $text);
|
1998-10-29 16:56:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
sub bot_list {
|
|
|
|
my ($nick, $cmd, $rest) = (@_);
|
|
|
|
foreach (sort keys %admins) {
|
|
|
|
$bot->privmsg ($nick, "$_ $admins{$_}");
|
1998-10-29 16:56:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
sub on_public {
|
|
|
|
my ($self, $event) = @_;
|
|
|
|
my ($to) = $event->to;
|
1998-10-17 01:54:40 +00:00
|
|
|
my ($arg) = $event->args;
|
|
|
|
my ($nick, $me) = ($event->nick, $self->nick);
|
1998-10-29 18:59:22 +00:00
|
|
|
$::speaker = $nick; # Hack!!!
|
1998-10-17 01:54:40 +00:00
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
# catch urls, stick them in a list for mozbot's url command
|
|
|
|
|
|
|
|
if ($arg =~ /(http|ftp|gopher):/i && $nick ne $me) {
|
|
|
|
push @urls, "$arg (" . &logdate() . ")";
|
|
|
|
while ($#urls > 10) {
|
|
|
|
shift @urls;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (my ($cmd, $rest) = $arg =~ /^$me[:,]?\s+(\S+)(?:\s+(.*))?$/i) {
|
|
|
|
if (do_command(\%pubcmds, $channel, $cmd, $rest)) {
|
|
|
|
return;
|
|
|
|
} else {
|
1998-11-06 20:53:22 +00:00
|
|
|
do_unknown($channel, $cmd, $rest);
|
1998-10-17 01:54:40 +00:00
|
|
|
}
|
1998-10-29 18:59:22 +00:00
|
|
|
}
|
|
|
|
}
|
1998-10-17 01:54:40 +00:00
|
|
|
|
|
|
|
|
1998-11-06 20:53:22 +00:00
|
|
|
sub do_unknown {
|
|
|
|
my ($nick, $cmd, $rest) = (@_);
|
|
|
|
if (!defined $::eliza) {
|
|
|
|
$::eliza = new Chatbot::Eliza;
|
|
|
|
}
|
|
|
|
my $result = $::eliza->transform("$cmd $rest");
|
|
|
|
$bot->privmsg($nick, $result);
|
|
|
|
}
|
1998-10-29 18:59:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
sub saylongline {
|
|
|
|
my ($nick, $str, $spacer) = (@_);
|
|
|
|
my $MAXPROTOCOLLENGTH = 255;
|
1998-12-31 18:38:54 +00:00
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
while (length ($str) > $MAXPROTOCOLLENGTH) {
|
|
|
|
my $pos;
|
|
|
|
$pos = rindex($str, $spacer, $MAXPROTOCOLLENGTH - length($spacer));
|
|
|
|
if ($pos < 0) {
|
|
|
|
$pos = rindex($str, " ", $MAXPROTOCOLLENGTH - 1);
|
|
|
|
if ($pos < 0) {
|
|
|
|
$pos = $MAXPROTOCOLLENGTH - 1;
|
|
|
|
}
|
1998-10-17 01:54:40 +00:00
|
|
|
}
|
1998-10-29 18:59:22 +00:00
|
|
|
$bot->privmsg($nick, substr($str, 0, $pos));
|
|
|
|
$str = substr($str, $pos);
|
|
|
|
if (index($str, $spacer) == 0) {
|
|
|
|
$str = substr($str, length($spacer));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($str ne "") {
|
|
|
|
$bot->privmsg($nick, $str);
|
1998-10-17 01:54:40 +00:00
|
|
|
}
|
1998-10-29 18:59:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub do_headlines {
|
|
|
|
my ($nick, $header, $ref) = (@_);
|
|
|
|
my $spacer = " ... ";
|
|
|
|
my $str = $header . ": " . join($spacer, @$ref);
|
|
|
|
saylongline($nick, $str, $spacer);
|
|
|
|
}
|
1998-12-31 18:38:54 +00:00
|
|
|
|
|
|
|
sub reportDiffs {
|
|
|
|
my ($name, $url, $ref) = (@_);
|
|
|
|
|
|
|
|
my $firsttime = 0;
|
|
|
|
if (!exists $::headCache{$name}) {
|
|
|
|
$firsttime = 1;
|
|
|
|
$::headCache{$name} = {};
|
|
|
|
}
|
|
|
|
my $spacer = " ... ";
|
|
|
|
my $outstr = "";
|
|
|
|
foreach my $i (@$ref) {
|
|
|
|
if ($i =~ /^last update/) {
|
|
|
|
next;
|
|
|
|
}
|
|
|
|
if (!exists $::headCache{$name}->{$i}) {
|
|
|
|
$::headCache{$name}->{$i} = 1;
|
|
|
|
if ($outstr eq "") {
|
|
|
|
$outstr = "Just appeared in $name ($url): ";
|
|
|
|
} else {
|
|
|
|
$outstr .= $spacer;
|
|
|
|
}
|
|
|
|
$outstr .= $i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!$firsttime) {
|
|
|
|
saylongline($channel, $outstr, $spacer);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
|
1998-11-04 01:19:08 +00:00
|
|
|
sub bot_debug
|
|
|
|
{
|
|
|
|
my ($nick, $cmd, $rest) = (@_);
|
|
|
|
|
|
|
|
my @list;
|
|
|
|
my %last =
|
|
|
|
(
|
|
|
|
"slashdot" => $last_slashdot,
|
1999-01-07 23:21:44 +00:00
|
|
|
"freshmeat" => $last_freshmeat,
|
1998-11-04 01:19:08 +00:00
|
|
|
"mozillazine" => $last_mozillazine,
|
1998-12-31 18:38:54 +00:00
|
|
|
"mozillaorg" => $last_mozillaorg,
|
1998-11-04 01:19:08 +00:00
|
|
|
"tinderbox" => $last_tree,
|
|
|
|
"moon" => $last_moon,
|
|
|
|
);
|
|
|
|
|
|
|
|
foreach (keys %last)
|
|
|
|
{
|
|
|
|
if ($last{$_} != 0)
|
|
|
|
{
|
|
|
|
push @list, "$_ updated: " . &logdate ($last{$_}) . ", " .
|
|
|
|
&days ($last{$_});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
push @list, "$_ never updated!";
|
|
|
|
}
|
|
|
|
}
|
1998-10-29 18:59:22 +00:00
|
|
|
|
1998-11-04 01:19:08 +00:00
|
|
|
do_headlines ($nick, "Boring Debug Information", \@list);
|
|
|
|
}
|
1998-10-29 18:59:22 +00:00
|
|
|
|
|
|
|
sub bot_slashdot {
|
|
|
|
my ($nick, $cmd, $rest) = (@_);
|
1998-10-30 16:28:56 +00:00
|
|
|
do_headlines($nick, "Headlines from Slashdot (http://slashdot.org/)", \@slashdot);
|
1998-10-29 18:59:22 +00:00
|
|
|
}
|
|
|
|
|
1999-01-07 23:21:44 +00:00
|
|
|
sub bot_freshmeat {
|
|
|
|
my ($nick, $cmd, $rest) = (@_);
|
|
|
|
do_headlines($nick, "Today in freshmeat (http://freshmeat.net/)", \@freshmeat);
|
|
|
|
}
|
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
|
1998-11-16 18:58:24 +00:00
|
|
|
sub bot_mozillazine{
|
1998-10-29 18:59:22 +00:00
|
|
|
my ($nick, $cmd, $rest) = (@_);
|
|
|
|
do_headlines($nick,
|
|
|
|
"Headlines from mozillaZine (http://www.mozillazine.org/)",
|
|
|
|
\@mozillazine);
|
|
|
|
}
|
|
|
|
|
1998-12-31 18:38:54 +00:00
|
|
|
sub bot_mozillaorg {
|
|
|
|
my ($nick, $cmd, $rest) = (@_);
|
|
|
|
do_headlines($nick,
|
|
|
|
"Headlines from mozilla.org (http://www.mozilla.org/)",
|
|
|
|
\@mozillaorg);
|
|
|
|
}
|
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
|
|
|
|
sub bot_hi {
|
|
|
|
my ($nick, $cmd, $rest) = (@_);
|
|
|
|
$bot->privmsg($nick, $greetings[$greet++] . " $::speaker");
|
|
|
|
$greet = 0 if ($greet > $#greetings);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-10-17 01:54:40 +00:00
|
|
|
|
1998-10-22 02:45:27 +00:00
|
|
|
sub on_join
|
|
|
|
{
|
|
|
|
my ($self, $event) = @_;
|
|
|
|
my ($channel) = ($event->to)[0];
|
|
|
|
my $nick = $event->nick;
|
|
|
|
my $userhost = $event->userhost;
|
|
|
|
|
|
|
|
# auto-op if user is a mozbot admin and coming in from
|
|
|
|
# the right host
|
|
|
|
|
|
|
|
if (exists $admins{$nick} && $userhost =~ /$admins{$nick}$/i)
|
|
|
|
{
|
|
|
|
$self->mode ($channel, "+o", $nick);
|
|
|
|
&debug ("auto-op for $nick on $channel");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-10-17 02:50:48 +00:00
|
|
|
$::dontQuitOnSignal = 0;
|
1998-10-17 01:54:40 +00:00
|
|
|
sub on_boot
|
|
|
|
{
|
1998-10-17 03:06:52 +00:00
|
|
|
if (!$::dontQuitOnSignal) {
|
|
|
|
die "$0: disconnected from network";
|
|
|
|
}
|
1998-10-17 01:54:40 +00:00
|
|
|
}
|
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
|
|
|
|
sub listcmds {
|
|
|
|
my ($hashref) = (@_);
|
|
|
|
my @list;
|
|
|
|
foreach my $k (keys %$hashref) {
|
|
|
|
if ($k =~ m/^\(([a-z]+)\|/) {
|
|
|
|
push @list, $1;
|
|
|
|
} else {
|
|
|
|
push @list, $k;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return join(' ', sort(@list));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1998-10-17 01:54:40 +00:00
|
|
|
################
|
|
|
|
# bot commands #
|
|
|
|
################
|
|
|
|
|
|
|
|
# bot_about: it's either an about box or the
|
|
|
|
# address of the guy to blame when the bot
|
|
|
|
# breaks
|
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
sub bot_about {
|
|
|
|
my ($nick, $cmd, $rest) = @_;
|
|
|
|
$bot->privmsg($::speaker, "i am mozbot version $VERSION. hack on me! " .
|
1998-10-22 02:45:27 +00:00
|
|
|
"harrison\@netscape.com 10/16/98. " .
|
1998-10-17 01:54:40 +00:00
|
|
|
"connected to $server since " .
|
1998-10-29 18:59:22 +00:00
|
|
|
&logdate ($uptime) . " (" . &days ($uptime) . "). " .
|
1998-10-22 02:45:27 +00:00
|
|
|
"see http://cvs-mirror.mozilla.org/webtools/bonsai/cvsquery.cgi?branch=HEAD&file=mozilla/webtools/mozbot/&date=week " .
|
1998-10-29 18:59:22 +00:00
|
|
|
"for a changelog.");
|
|
|
|
$bot->privmsg($::speaker, "Known commands are: " .
|
|
|
|
listcmds(\%pubcmds));
|
|
|
|
$bot->privmsg($::speaker, "If you /msg me, I'll also respond to: " .
|
|
|
|
listcmds(\%msgcmds));
|
|
|
|
if (exists $admins{$::speaker}) {
|
|
|
|
$bot->privmsg($::speaker, "And you're an admin, so you can also do: " .
|
|
|
|
listcmds(\%admincmds));
|
1998-10-17 01:54:40 +00:00
|
|
|
}
|
1998-10-29 18:59:22 +00:00
|
|
|
if ($nick eq $channel) {
|
|
|
|
$bot->privmsg($nick, "[ Directions on talking to me have been sent to $::speaker ]");
|
1998-10-17 01:54:40 +00:00
|
|
|
}
|
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
}
|
|
|
|
|
1998-10-17 01:54:40 +00:00
|
|
|
# bot_moon: goodnight moon
|
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
sub get_moon_str
|
1998-10-17 01:54:40 +00:00
|
|
|
{
|
|
|
|
return "- no moon -" if (! defined $::moon);
|
|
|
|
return $phase if ($phase && (time - $last_moon > (60 * 60 * 24)));
|
|
|
|
|
|
|
|
# we only want to run this once/day
|
|
|
|
$phase = `$::moon`;
|
|
|
|
$last_moon = time;
|
|
|
|
return $phase;
|
|
|
|
}
|
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
sub bot_moon {
|
|
|
|
my ($nick, $cmd, $rest) = @_;
|
|
|
|
$bot->privmsg($nick, get_moon_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-10-17 01:54:40 +00:00
|
|
|
# bot_up: report uptime
|
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
sub bot_up {
|
|
|
|
my ($nick, $cmd, $rest) = @_;
|
|
|
|
$bot->privmsg($nick, &logdate ($uptime) . " (" . &days ($uptime) . ")");
|
|
|
|
}
|
1998-10-17 01:54:40 +00:00
|
|
|
|
|
|
|
# bot_urls: show last ten urls caught by mozbot
|
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
sub bot_urls {
|
|
|
|
my ($nick, $cmd, $rest) = @_;
|
|
|
|
if ($#urls == -1) {
|
1999-03-05 06:28:58 +00:00
|
|
|
$bot->privmsg($nick, "- mozbot has seen no URLs yet -");
|
1998-10-29 18:59:22 +00:00
|
|
|
} else {
|
|
|
|
foreach my $m (@urls) {
|
|
|
|
$bot->privmsg($nick, $m);
|
|
|
|
}
|
1998-10-17 01:54:40 +00:00
|
|
|
}
|
1998-10-29 18:59:22 +00:00
|
|
|
}
|
1998-10-17 01:54:40 +00:00
|
|
|
|
|
|
|
# show tinderbox status
|
|
|
|
#
|
|
|
|
# this is a messy little function but it works.
|
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
sub bot_tinderbox {
|
|
|
|
my ($nick, $cmd, $rest) = @_;
|
1998-10-17 01:54:40 +00:00
|
|
|
my $bustage;
|
|
|
|
my $buf;
|
|
|
|
my @buf;
|
|
|
|
my @tree;
|
1998-10-29 18:59:22 +00:00
|
|
|
|
|
|
|
my $terse = (defined $rest && $rest eq "all");
|
|
|
|
if ($nick eq $channel) {
|
|
|
|
$terse = 1;
|
|
|
|
}
|
1998-10-17 01:54:40 +00:00
|
|
|
|
|
|
|
# user can supply a list of trees separated
|
|
|
|
# by whitespace, default is all trees
|
|
|
|
|
|
|
|
push @tree, $rest ? (split /\s+/, $rest) : @trees;
|
|
|
|
|
|
|
|
# loop through requested trees
|
|
|
|
|
1998-10-22 22:01:42 +00:00
|
|
|
push @buf, "Tinderbox status from http://cvs-mirror.mozilla.org/webtools/tinderbox/showbuilds.cgi";
|
|
|
|
|
1998-10-17 01:54:40 +00:00
|
|
|
foreach my $t (@tree)
|
|
|
|
{
|
|
|
|
$bustage = 0;
|
1998-10-22 02:45:27 +00:00
|
|
|
$buf = "$t " . ($$status{$t} ? "<$$status{$t}> " : "") . ": ";
|
1998-10-17 01:54:40 +00:00
|
|
|
|
|
|
|
# politely report failures
|
|
|
|
if (! exists $$trees{$t})
|
|
|
|
{
|
|
|
|
$buf .= "unknown tree \"$t\", trees include @trees. ";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
foreach my $e (sort keys %{$$trees{$t}})
|
|
|
|
{
|
1998-10-23 06:11:07 +00:00
|
|
|
next if ($terse && $$trees{$t}{$e} ne "Horked");
|
1998-10-17 01:54:40 +00:00
|
|
|
$buf .= "[$e: $$trees{$t}{$e}] ";
|
|
|
|
$bustage++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$buf .= "- no known bustage -" if (! $bustage);
|
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
push @buf, $buf;
|
1998-10-17 01:54:40 +00:00
|
|
|
}
|
|
|
|
|
1998-10-22 02:45:27 +00:00
|
|
|
$buf = $buf ||
|
|
|
|
"something broke. report a bug here: " .
|
|
|
|
"http://cvs-mirror.mozilla.org/webtools/bugzilla/enter_bug.cgi " .
|
1998-10-22 22:01:42 +00:00
|
|
|
"with product of Webtools and component set to Mozbot";
|
1998-10-22 02:45:27 +00:00
|
|
|
|
1998-10-17 01:54:40 +00:00
|
|
|
push @buf, "last update: " .
|
|
|
|
&logdate ($last_tree) . " (" . &days ($last_tree) . " ago)";
|
1998-10-29 18:59:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
foreach my $m (@buf) {
|
|
|
|
$bot->privmsg($nick, $m);
|
1998-10-17 01:54:40 +00:00
|
|
|
}
|
|
|
|
|
1998-10-29 18:59:22 +00:00
|
|
|
}
|
|
|
|
|
1998-10-17 01:54:40 +00:00
|
|
|
#############
|
|
|
|
# utilities #
|
|
|
|
#############
|
|
|
|
|
|
|
|
sub debug
|
|
|
|
{
|
|
|
|
return if (! $debug);
|
|
|
|
|
|
|
|
foreach (@_)
|
|
|
|
{
|
|
|
|
chomp;
|
|
|
|
print &logdate() . " $_ [$$]\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# logdate: return nice looking date (10/16/98 18:29)
|
|
|
|
|
|
|
|
sub logdate
|
|
|
|
{
|
|
|
|
my $t = shift;
|
|
|
|
$t = time unless ($t);
|
|
|
|
my ($sec,$min,$hour,$mday,$mon,$year) = localtime ($t);
|
|
|
|
|
|
|
|
return sprintf ("%02d/%02d/%02d %02d:%02d",
|
|
|
|
$mon + 1, $mday, $year, $hour, $min);
|
|
|
|
}
|
|
|
|
|
|
|
|
# days: how long ago was that?
|
|
|
|
|
|
|
|
sub days
|
|
|
|
{
|
|
|
|
my ($then) = shift;
|
|
|
|
|
|
|
|
my $seconds = time - $then;
|
|
|
|
my $minutes = int ($seconds / 60);
|
|
|
|
my $hours = int ($minutes / 60);
|
|
|
|
my $days = int ($hours / 24);
|
|
|
|
|
|
|
|
if ($seconds < 60)
|
|
|
|
{ return (sprintf "%d second%s", $seconds, $seconds == 1 ? "" : "s"); }
|
|
|
|
elsif ($minutes < 60)
|
|
|
|
{ return (sprintf "%d minute%s", $minutes, $minutes == 1 ? "" : "s"); }
|
|
|
|
elsif ($hours < 24)
|
|
|
|
{ return (sprintf "%d hour%s", $hours, $hours == 1 ? "" : "s"); }
|
|
|
|
else
|
|
|
|
{ return (sprintf "%d day%s", $days, $days == 1 ? "" : "s"); }
|
|
|
|
}
|
|
|
|
|
|
|
|
# signal handler
|
|
|
|
|
|
|
|
sub killed
|
|
|
|
{
|
|
|
|
confess "i have received a signal of some manner. good night.\n\n";
|
|
|
|
}
|
|
|
|
|
1998-10-22 02:45:27 +00:00
|
|
|
# write admin list
|
|
|
|
|
|
|
|
sub store_admin_conf
|
|
|
|
{
|
|
|
|
my $admins = shift;
|
|
|
|
my $when = localtime (time) . " by $$";
|
|
|
|
|
|
|
|
if (open ADMINS, ">$adminf")
|
|
|
|
{
|
|
|
|
print ADMINS <<FIN;
|
|
|
|
# mozbot admin list file
|
|
|
|
#
|
|
|
|
# this file is generated. do not edit.
|
|
|
|
# generated $when
|
|
|
|
#
|
|
|
|
# version: 1.0
|
|
|
|
|
|
|
|
FIN
|
|
|
|
|
|
|
|
foreach (sort keys %admins)
|
|
|
|
{
|
|
|
|
print ADMINS "$_ $admins{$_}\n";
|
|
|
|
}
|
|
|
|
close ADMINS;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
&debug ("&store_admin_conf $adminf: $!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# fetch list of admins
|
|
|
|
|
|
|
|
sub fetch_admin_conf
|
|
|
|
{
|
|
|
|
my $admins = shift;
|
|
|
|
|
|
|
|
if (open ADMINS, $adminf)
|
|
|
|
{
|
|
|
|
while (<ADMINS>)
|
|
|
|
{
|
|
|
|
chomp;
|
|
|
|
next if ($_ =~ /^#/ or ! $_);
|
|
|
|
my ($user, $host) = split /\s+/, $_;
|
|
|
|
$$admins{$user} = $host;
|
|
|
|
}
|
|
|
|
&debug ("admins: " . keys %$admins);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
&debug ("&fetch_admin_conf $adminf: $!");
|
|
|
|
}
|
|
|
|
|
|
|
|
close ADMINS;
|
|
|
|
}
|
|
|
|
|
|
|
|
# create a pid file if we can
|
|
|
|
|
|
|
|
sub create_pid_file
|
|
|
|
{
|
1998-10-22 22:01:42 +00:00
|
|
|
my $pid = ".mozbot-pid";
|
1998-10-22 02:45:27 +00:00
|
|
|
|
|
|
|
if (open PID, ">$pid")
|
|
|
|
{
|
|
|
|
print PID "$$\n";
|
|
|
|
close PID;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
&debug ("warning: problem creating pid file: $pid, $!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-10-29 11:01:29 +00:00
|
|
|
sub slashdot
|
1998-11-08 21:12:12 +00:00
|
|
|
{
|
1998-10-29 11:01:29 +00:00
|
|
|
return if (! defined $slashdot);
|
|
|
|
&debug ("fetching slashdot headlines");
|
|
|
|
|
1998-12-31 18:38:54 +00:00
|
|
|
$bot->schedule (60*60 + 30, \&slashdot);
|
1998-11-08 21:12:12 +00:00
|
|
|
my $output = get $slashdot;
|
1998-11-04 01:19:08 +00:00
|
|
|
$last_slashdot = time;
|
1998-11-08 21:12:12 +00:00
|
|
|
return if (! $output);
|
|
|
|
my @sd = split /\n/, $output;
|
|
|
|
|
|
|
|
@slashdot = ();
|
1998-10-29 11:01:29 +00:00
|
|
|
|
1998-11-08 21:12:12 +00:00
|
|
|
foreach my $i (0 .. $#sd)
|
1998-10-29 11:01:29 +00:00
|
|
|
{
|
1998-11-08 21:12:12 +00:00
|
|
|
push @slashdot, $sd[$i+1] if ($sd[$i] eq "%%" && $i != $#sd);
|
1998-10-29 11:01:29 +00:00
|
|
|
}
|
1998-11-04 01:19:08 +00:00
|
|
|
push @slashdot, "last updated: " . &logdate ($last_slashdot);
|
1998-12-31 18:38:54 +00:00
|
|
|
|
|
|
|
reportDiffs("SlashDot", "http://www.slashdot.org/", \@slashdot);
|
|
|
|
|
1998-11-08 21:12:12 +00:00
|
|
|
}
|
1998-10-29 11:01:29 +00:00
|
|
|
|
1999-01-07 23:21:44 +00:00
|
|
|
sub freshmeat
|
|
|
|
{
|
|
|
|
return if (! defined $freshmeat);
|
|
|
|
&debug ("fetching freshmeat headlines");
|
|
|
|
|
|
|
|
$bot->schedule (60*60 + 30, \&freshmeat);
|
|
|
|
my $output = get $freshmeat;
|
|
|
|
$last_freshmeat = time;
|
|
|
|
return if (! $output);
|
|
|
|
my @sd = split /\n/, $output;
|
|
|
|
|
|
|
|
@freshmeat = ();
|
|
|
|
|
|
|
|
foreach my $i (0 .. $#sd)
|
|
|
|
{
|
|
|
|
push @freshmeat, $sd[$i] if ($i % 3 == 0);
|
|
|
|
}
|
|
|
|
push @freshmeat, "last updated: " . &logdate ($last_freshmeat);
|
|
|
|
|
|
|
|
reportDiffs("FreshMeat", "http://freshmeat.net/", \@freshmeat);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
1998-10-22 02:45:27 +00:00
|
|
|
# fetches headlines from mozillaZine
|
|
|
|
#
|
|
|
|
# this should be a more general feature, to grab
|
|
|
|
# content. if you feel like it, implement a
|
|
|
|
# grabber for slashdot headlines:
|
|
|
|
#
|
|
|
|
# http://slashdot.org/ultramode.txt
|
|
|
|
|
|
|
|
sub mozillazine
|
|
|
|
{
|
|
|
|
return if (! defined $mozillazine);
|
1998-10-29 11:01:29 +00:00
|
|
|
&debug ("fetching mozillazine headlines");
|
|
|
|
|
1998-10-22 02:45:27 +00:00
|
|
|
my $output = get $mozillazine;
|
|
|
|
return if (! $output);
|
1998-11-04 01:19:08 +00:00
|
|
|
$last_mozillazine = time;
|
1998-10-22 02:45:27 +00:00
|
|
|
my @mz = split /\n/, $output;
|
|
|
|
|
1998-10-29 11:01:29 +00:00
|
|
|
@mozillazine = ();
|
1998-10-22 02:45:27 +00:00
|
|
|
|
|
|
|
foreach (@mz)
|
|
|
|
{
|
1998-11-16 18:58:24 +00:00
|
|
|
if (m@<!--head-->([^<>]+)<!--head-end-->@)
|
1998-10-22 02:45:27 +00:00
|
|
|
{
|
1998-11-16 18:58:24 +00:00
|
|
|
my $h = $1;
|
|
|
|
$h =~ s/ //g;
|
1998-10-29 11:01:29 +00:00
|
|
|
push @mozillazine, $h;
|
1998-10-22 02:45:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-12-31 18:38:54 +00:00
|
|
|
$bot->schedule (60 * 60 + 60, \&mozillazine);
|
|
|
|
push @mozillazine, "last updated: " . &logdate ($last_mozillazine);
|
|
|
|
reportDiffs("mozillaZine", "http://www.mozillazine.org/", \@mozillazine);
|
1998-10-22 02:45:27 +00:00
|
|
|
}
|
|
|
|
|
1998-12-31 18:38:54 +00:00
|
|
|
sub mozillaorg
|
|
|
|
{
|
|
|
|
return if (! defined $mozillaorg);
|
|
|
|
&debug ("fetching mozilla.org headlines");
|
|
|
|
|
|
|
|
$bot->schedule (60*60, \&mozillaorg);
|
|
|
|
my $output = get $mozillaorg;
|
|
|
|
$last_mozillaorg = time;
|
|
|
|
return if (! $output);
|
|
|
|
my @m = split /\n/, $output;
|
|
|
|
|
|
|
|
@mozillaorg = ();
|
|
|
|
|
|
|
|
foreach my $i (@m) {
|
|
|
|
if ($i =~ /^summary:(.*)$/) {
|
|
|
|
push @mozillaorg, $1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
push @mozillaorg, "last updated: " . &logdate ($last_mozillaorg);
|
|
|
|
|
|
|
|
reportDiffs("mozilla.org", "http://www.mozilla.org/", \@mozillaorg);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
1998-10-17 01:54:40 +00:00
|
|
|
# fetch tinderbox details
|
|
|
|
|
|
|
|
sub tinderbox
|
|
|
|
{
|
|
|
|
&debug ("fetching tinderbox status");
|
1998-10-22 02:45:27 +00:00
|
|
|
my ($newtrees, $newstatus) = Tinderbox::status (\@trees);
|
|
|
|
|
|
|
|
if (! $newtrees)
|
|
|
|
{
|
|
|
|
$bot->schedule (90, \&tinderbox);
|
|
|
|
&debug ("hmm, couldn't get tinderbox status");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1998-10-17 01:54:40 +00:00
|
|
|
$last_tree = time;
|
1998-10-22 02:45:27 +00:00
|
|
|
|
|
|
|
if (defined $status)
|
|
|
|
{
|
|
|
|
foreach my $s (keys %$newstatus)
|
|
|
|
{
|
|
|
|
if (defined $$newstatus{$s} && $$status{$s} ne $$newstatus{$s})
|
|
|
|
{
|
|
|
|
$bot->privmsg ($channel,
|
|
|
|
"$s changed state from $$status{$s} to $$newstatus{$s}");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-10-17 03:39:20 +00:00
|
|
|
if (defined $trees) {
|
|
|
|
foreach my $t (@trees) {
|
|
|
|
foreach my $e (sort keys %{$$newtrees{$t}}) {
|
|
|
|
if (!defined $$trees{$t}{$e}) {
|
|
|
|
$bot->privmsg($channel, "$t: A new column '$e' has appeared ($$newtrees{$t}{$e})");
|
|
|
|
} else {
|
|
|
|
if ($$trees{$t}{$e} ne $$newtrees{$t}{$e}) {
|
|
|
|
$bot->privmsg($channel, "$t: '$e' has changed state from $$trees{$t}{$e} to $$newtrees{$t}{$e}");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$trees = $newtrees;
|
1998-10-22 02:45:27 +00:00
|
|
|
$status = $newstatus;
|
1998-10-17 01:54:40 +00:00
|
|
|
|
|
|
|
$bot->schedule (360, \&tinderbox);
|
|
|
|
}
|
|
|
|
|
1998-10-17 02:50:48 +00:00
|
|
|
|
|
|
|
# See if someone has changed our source.
|
|
|
|
|
|
|
|
$::ourdate = 0;
|
|
|
|
$::tinderboxdate = 0;
|
|
|
|
|
|
|
|
sub checksourcechange {
|
1998-10-17 03:06:52 +00:00
|
|
|
my ($self) = @_;
|
|
|
|
my $lastourdate = $::ourdate;
|
|
|
|
my $lasttinderboxdate = $::tinderboxdate;
|
1998-10-17 02:50:48 +00:00
|
|
|
my ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
|
|
|
|
$atime,$mtime,$ctime,$blksize,$blocks)
|
|
|
|
= stat("./mozbot.pl");
|
1998-10-17 03:06:52 +00:00
|
|
|
$::ourdate = $mtime;
|
1998-10-17 02:50:48 +00:00
|
|
|
($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,
|
|
|
|
$atime,$mtime,$ctime,$blksize,$blocks)
|
|
|
|
= stat("./Tinderbox.pm");
|
1998-10-17 03:06:52 +00:00
|
|
|
$::tinderboxdate = $mtime;
|
1998-10-22 02:45:27 +00:00
|
|
|
|
|
|
|
if (defined $lastourdate &&
|
|
|
|
($::ourdate > $lastourdate ||
|
1998-10-17 03:06:52 +00:00
|
|
|
$::tinderboxdate > $lasttinderboxdate)) {
|
|
|
|
$::dontQuitOnSignal = 1;
|
|
|
|
$self->quit("someone seems to have changed my source code. Be right back");
|
|
|
|
&debug ("restarting self");
|
|
|
|
exec "$0 @::origargv";
|
|
|
|
}
|
1998-10-17 02:50:48 +00:00
|
|
|
$bot->schedule (60, \&checksourcechange);
|
|
|
|
}
|
1999-01-07 22:33:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
sub stocks {
|
|
|
|
$bot->schedule(15 * 60, \&stocks);
|
|
|
|
|
|
|
|
my $url = "http://quote.yahoo.com/d/quotes.csv?f=sl1d1t1c1ohgv&e=.csv&s=" .
|
|
|
|
join("+", sort(keys %stocklist));
|
|
|
|
&debug ("fetching stock quotes");
|
|
|
|
my $output = get $url;
|
|
|
|
return if (!$output);
|
|
|
|
%stockvals = ();
|
|
|
|
foreach my $line (split(/\n/, $output)) {
|
|
|
|
my @list = split(/,/, $line);
|
|
|
|
my $name = shift(@list);
|
|
|
|
$name =~ s/"(.*)"/$1/;
|
|
|
|
&debug ("parsing stock quote $name ($list[0])");
|
|
|
|
$stockvals{$name} = \@list;
|
|
|
|
foreach my $ref (@{$stockhist{$name}}) {
|
|
|
|
my $oldval = $ref->[0];
|
|
|
|
my $newval = $list[0];
|
|
|
|
my $ratio = $newval / $oldval;
|
|
|
|
if ($ratio > 1.05 || $ratio < 0.95) {
|
|
|
|
foreach my $who ($stocklist{$name}) {
|
|
|
|
ReportStock($who, $name, "Large Stock Change");
|
|
|
|
}
|
|
|
|
$stockhist{$name} = [];
|
|
|
|
last;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!exists $stockhist{$name}) {
|
|
|
|
$stockhist{$name} = [];
|
|
|
|
}
|
|
|
|
push (@{$stockhist{$name}}, \@list);
|
|
|
|
while (30 < @{$stockhist{$name}}) {
|
|
|
|
shift @{$stockhist{$name}};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sub LoadStockList {
|
1999-01-29 20:56:23 +00:00
|
|
|
%stocklist = ("NSCP" => [$channel],
|
|
|
|
"AOL" => [$channel]);
|
1999-01-07 22:33:01 +00:00
|
|
|
|
|
|
|
if (open(LIST, $stockf)) {
|
|
|
|
%stocklist = ();
|
|
|
|
while (<LIST>) {
|
|
|
|
my @list = split(/\|/, $_);
|
|
|
|
my $name = shift(@list);
|
|
|
|
$stocklist{$name} = \@list;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sub FracStr {
|
|
|
|
my ($num, $needplus) = (@_);
|
|
|
|
my $sign;
|
|
|
|
if ($num < 0) {
|
|
|
|
$sign = "-";
|
|
|
|
$num = - $num;
|
|
|
|
} else {
|
|
|
|
$sign = $needplus ? "+" : "";
|
|
|
|
}
|
|
|
|
|
|
|
|
my $bdot = int($num);
|
|
|
|
my $adot = $num - $bdot;
|
|
|
|
|
|
|
|
if ($adot == 0) {
|
|
|
|
return "$sign$bdot";
|
|
|
|
}
|
|
|
|
|
|
|
|
my $base = 64;
|
|
|
|
$num = int($adot * $base);
|
|
|
|
|
|
|
|
while ($num % 2 == 0 && $base > 1) {
|
|
|
|
$base /= 2;
|
|
|
|
$num /= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($adot == $num / $base) {
|
|
|
|
if ($bdot == 0) {
|
|
|
|
$bdot = "";
|
|
|
|
} else {
|
|
|
|
$bdot .= " ";
|
|
|
|
}
|
|
|
|
return "$sign$bdot$num/$base";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sub ReportStock {
|
|
|
|
my ($nick, $name, $title) = (@_);
|
|
|
|
if ($title ne "") {
|
|
|
|
$title .= ": ";
|
|
|
|
}
|
|
|
|
my $ref = $stockvals{$name};
|
|
|
|
my $a = FracStr($ref->[0], 0);
|
|
|
|
my $b = FracStr($ref->[3], 1);
|
|
|
|
$bot->privmsg($nick, "$title$name at $a ($b)");
|
|
|
|
}
|
|
|
|
|
|
|
|
sub bot_stocks {
|
|
|
|
my ($nick, $cmd, $rest) = (@_);
|
|
|
|
foreach my $name (sort(keys %stocklist)) {
|
|
|
|
foreach my $who (@{$stocklist{$name}}) {
|
|
|
|
if ($who eq $nick || $who eq $channel) {
|
|
|
|
ReportStock($nick, $name, "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|