2010-03-17 07:36:54 +01:00
|
|
|
# File: PBot.pm
|
|
|
|
# Author: pragma_
|
|
|
|
#
|
|
|
|
# Purpose: IRC Bot (3rd generation)
|
|
|
|
|
2017-03-05 22:33:31 +01:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2010-03-17 07:36:54 +01:00
|
|
|
package PBot::PBot;
|
|
|
|
|
2020-02-08 20:04:13 +01:00
|
|
|
use strict; use warnings;
|
2019-07-11 03:40:53 +02:00
|
|
|
use feature 'unicode_strings';
|
|
|
|
|
2010-03-17 07:36:54 +01:00
|
|
|
# unbuffer stdout
|
|
|
|
STDOUT->autoflush(1);
|
|
|
|
|
|
|
|
use Carp ();
|
|
|
|
use PBot::Logger;
|
2018-01-23 08:48:25 +01:00
|
|
|
use PBot::VERSION;
|
2020-02-08 20:04:13 +01:00
|
|
|
use PBot::HashObject;
|
|
|
|
use PBot::DualIndexHashObject;
|
2020-02-26 11:29:02 +01:00
|
|
|
use PBot::DualIndexSQLiteObject;
|
2014-05-17 22:08:19 +02:00
|
|
|
use PBot::Registry;
|
2020-02-03 18:50:38 +01:00
|
|
|
use PBot::Capabilities;
|
2014-03-14 06:51:15 +01:00
|
|
|
use PBot::SelectHandler;
|
2010-03-17 07:36:54 +01:00
|
|
|
use PBot::StdinReader;
|
2011-01-22 09:35:31 +01:00
|
|
|
use PBot::IRC;
|
2014-11-01 01:15:21 +01:00
|
|
|
use PBot::EventDispatcher;
|
2010-03-22 08:33:44 +01:00
|
|
|
use PBot::IRCHandlers;
|
2010-03-23 19:24:02 +01:00
|
|
|
use PBot::Channels;
|
2020-04-29 06:33:49 +02:00
|
|
|
use PBot::BanList;
|
2014-11-15 02:18:33 +01:00
|
|
|
use PBot::NickList;
|
2011-01-25 00:56:55 +01:00
|
|
|
use PBot::LagChecker;
|
2014-05-13 12:15:52 +02:00
|
|
|
use PBot::MessageHistory;
|
2010-03-17 07:36:54 +01:00
|
|
|
use PBot::AntiFlood;
|
2018-08-06 07:41:08 +02:00
|
|
|
use PBot::AntiSpam;
|
2010-03-22 08:33:44 +01:00
|
|
|
use PBot::Interpreter;
|
|
|
|
use PBot::Commands;
|
|
|
|
use PBot::ChanOps;
|
2019-06-26 18:34:19 +02:00
|
|
|
use PBot::Factoids;
|
2020-01-25 21:28:05 +01:00
|
|
|
use PBot::Users;
|
2010-03-22 08:33:44 +01:00
|
|
|
use PBot::IgnoreList;
|
2015-03-17 05:08:25 +01:00
|
|
|
use PBot::BlackList;
|
2010-03-22 08:33:44 +01:00
|
|
|
use PBot::Timer;
|
2015-06-16 04:55:46 +02:00
|
|
|
use PBot::Refresher;
|
2017-12-06 06:05:44 +01:00
|
|
|
use PBot::WebPaste;
|
2019-06-07 06:46:00 +02:00
|
|
|
use PBot::Utils::ParseDate;
|
2020-02-15 03:52:41 +01:00
|
|
|
use PBot::Plugins;
|
2020-02-14 07:36:05 +01:00
|
|
|
use PBot::Functions;
|
2020-02-15 03:52:41 +01:00
|
|
|
use PBot::Modules;
|
2020-02-15 03:41:00 +01:00
|
|
|
use PBot::ProcessManager;
|
2020-04-21 02:53:32 +02:00
|
|
|
use PBot::Updater;
|
2010-03-17 07:36:54 +01:00
|
|
|
|
|
|
|
sub new {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($proto, %conf) = @_;
|
|
|
|
my $class = ref($proto) || $proto;
|
|
|
|
my $self = bless {}, $class;
|
|
|
|
$self->initialize(%conf);
|
|
|
|
return $self;
|
2010-03-22 08:33:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sub initialize {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self, %conf) = @_;
|
|
|
|
$self->{startup_timestamp} = time;
|
|
|
|
|
2020-04-21 02:53:32 +02:00
|
|
|
my $data_dir = $conf{data_dir};
|
|
|
|
my $module_dir = $conf{module_dir};
|
|
|
|
my $plugin_dir = $conf{plugin_dir};
|
|
|
|
my $update_dir = $conf{update_dir};
|
2020-02-15 23:38:32 +01:00
|
|
|
|
2020-05-27 04:21:11 +02:00
|
|
|
# process command-line arguments
|
2020-02-15 23:38:32 +01:00
|
|
|
foreach my $arg (@ARGV) {
|
2020-04-21 02:53:32 +02:00
|
|
|
if ($arg =~ m/^-?(?:general\.)?((?:data|module|plugin|update)_dir)=(.*)$/) {
|
2020-05-27 04:21:11 +02:00
|
|
|
# check command-line arguments for directory overrides
|
2020-04-21 02:53:32 +02:00
|
|
|
my $override = $1;
|
|
|
|
my $value = $2;
|
2020-05-30 03:57:22 +02:00
|
|
|
$value =~ s/[\\\/]$//; # strip trailing directory separator
|
2020-04-21 02:53:32 +02:00
|
|
|
$data_dir = $value if $override eq 'data_dir';
|
|
|
|
$module_dir = $value if $override eq 'module_dir';
|
|
|
|
$plugin_dir = $value if $override eq 'plugin_dir';
|
|
|
|
$update_dir = $value if $override eq 'update_dir';
|
2020-05-27 04:21:11 +02:00
|
|
|
} else {
|
|
|
|
# check command-line arguments for registry overrides
|
|
|
|
my ($item, $value) = split /=/, $arg, 2;
|
|
|
|
|
|
|
|
if (not defined $item or not defined $value) {
|
|
|
|
print STDERR "Fatal error: unknown argument `$arg`; arguments must be in the form of `section.key=value` (e.g.: irc.botnick=newnick)\n";
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
my ($section, $key) = split /\./, $item, 2;
|
|
|
|
if (not defined $section or not defined $key) {
|
|
|
|
print STDERR "Fatal error: bad argument `$arg`; registry entries must be in the form of section.key (e.g.: irc.botnick)\n";
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
$section =~ s/^-//; # remove a leading - to allow arguments like -irc.botnick due to habitual use of -args
|
|
|
|
$self->{overrides}->{"$section.$key"} = $value;
|
2020-02-15 23:38:32 +01:00
|
|
|
}
|
2019-12-22 04:04:39 +01:00
|
|
|
}
|
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
# let modules register signal handlers
|
|
|
|
$self->{atexit} = PBot::Registerable->new(%conf, pbot => $self);
|
|
|
|
$self->register_signal_handlers;
|
|
|
|
|
2020-04-20 19:53:35 +02:00
|
|
|
# make sure the data directory exists
|
2020-02-15 23:38:32 +01:00
|
|
|
if (not -d $data_dir) {
|
2020-04-20 19:53:35 +02:00
|
|
|
print STDERR "Data directory ($data_dir) does not exist; aborting...\n";
|
2020-02-15 23:38:32 +01:00
|
|
|
exit;
|
2020-02-14 22:32:12 +01:00
|
|
|
}
|
|
|
|
|
2020-04-20 19:53:35 +02:00
|
|
|
# create logger
|
|
|
|
$self->{logger} = PBot::Logger->new(pbot => $self, filename => "$data_dir/log/log", %conf);
|
|
|
|
|
|
|
|
# make sure the rest of the environment is sane
|
2020-02-15 23:38:32 +01:00
|
|
|
if (not -d $module_dir) {
|
|
|
|
$self->{logger}->log("Modules directory ($module_dir) does not exist; aborting...\n");
|
|
|
|
exit;
|
2020-02-14 22:32:12 +01:00
|
|
|
}
|
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
if (not -d $plugin_dir) {
|
|
|
|
$self->{logger}->log("Plugins directory ($plugin_dir) does not exist; aborting...\n");
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2020-04-21 02:53:32 +02:00
|
|
|
if (not -d $update_dir) {
|
|
|
|
$self->{logger}->log("Updates directory ($update_dir) does not exist; aborting...\n");
|
2020-04-20 19:53:35 +02:00
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2020-04-21 02:53:32 +02:00
|
|
|
$self->{updater} = PBot::Updater->new(pbot => $self, data_dir => $data_dir, update_dir => $update_dir);
|
2020-04-20 19:53:35 +02:00
|
|
|
|
2020-04-21 02:53:32 +02:00
|
|
|
# update any data files to new locations/formats
|
|
|
|
if ($self->{updater}->update) {
|
|
|
|
$self->{logger}->log("Update failed.\n");
|
2020-04-20 19:53:35 +02:00
|
|
|
exit 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
# create capabilities so commands can add new capabilities
|
2020-02-15 23:38:32 +01:00
|
|
|
$self->{capabilities} = PBot::Capabilities->new(pbot => $self, filename => "$data_dir/capabilities", %conf);
|
|
|
|
|
2020-04-20 19:53:35 +02:00
|
|
|
# create commands so the modules can register new commands
|
2020-02-15 23:38:32 +01:00
|
|
|
$self->{commands} = PBot::Commands->new(pbot => $self, filename => "$data_dir/commands", %conf);
|
|
|
|
|
|
|
|
# add some commands
|
2020-05-04 22:21:35 +02:00
|
|
|
$self->{commands}->register(sub { $self->cmd_list(@_) }, "list");
|
|
|
|
$self->{commands}->register(sub { $self->cmd_die(@_) }, "die", 1);
|
|
|
|
$self->{commands}->register(sub { $self->cmd_export(@_) }, "export", 1);
|
|
|
|
$self->{commands}->register(sub { $self->cmd_reload(@_) }, "reload", 1);
|
|
|
|
$self->{commands}->register(sub { $self->cmd_eval(@_) }, "eval", 1);
|
|
|
|
$self->{commands}->register(sub { $self->cmd_sl(@_) }, "sl", 1);
|
2020-02-15 23:38:32 +01:00
|
|
|
|
|
|
|
# add 'cap' capability command
|
2020-05-04 22:21:35 +02:00
|
|
|
$self->{commands}->register(sub { $self->{capabilities}->cmd_cap(@_) }, "cap");
|
2020-02-15 23:38:32 +01:00
|
|
|
|
|
|
|
# prepare the version
|
|
|
|
$self->{version} = PBot::VERSION->new(pbot => $self, %conf);
|
|
|
|
$self->{logger}->log($self->{version}->version . "\n");
|
|
|
|
$self->{logger}->log("Args: @ARGV\n") if @ARGV;
|
|
|
|
|
|
|
|
$self->{logger}->log("module_dir: $module_dir\n");
|
|
|
|
$self->{logger}->log("plugin_dir: $plugin_dir\n");
|
2020-04-20 19:53:35 +02:00
|
|
|
$self->{logger}->log("data_dir: $data_dir\n");
|
2020-04-21 02:53:32 +02:00
|
|
|
$self->{logger}->log("update_dir: $update_dir\n");
|
2020-04-20 19:53:35 +02:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
|
2020-03-06 22:28:06 +01:00
|
|
|
$self->{timer} = PBot::Timer->new(pbot => $self, timeout => 10, name => 'PBot Timer', %conf);
|
2020-02-15 23:38:32 +01:00
|
|
|
$self->{modules} = PBot::Modules->new(pbot => $self, %conf);
|
|
|
|
$self->{functions} = PBot::Functions->new(pbot => $self, %conf);
|
|
|
|
$self->{refresher} = PBot::Refresher->new(pbot => $self);
|
|
|
|
|
|
|
|
# create registry and set some defaults
|
|
|
|
$self->{registry} = PBot::Registry->new(pbot => $self, filename => "$data_dir/registry", %conf);
|
|
|
|
|
2020-04-21 02:53:32 +02:00
|
|
|
$self->{registry}->add_default('text', 'general', 'data_dir', $data_dir);
|
|
|
|
$self->{registry}->add_default('text', 'general', 'module_dir', $module_dir);
|
|
|
|
$self->{registry}->add_default('text', 'general', 'plugin_dir', $plugin_dir);
|
|
|
|
$self->{registry}->add_default('text', 'general', 'update_dir', $update_dir);
|
2020-04-20 19:53:35 +02:00
|
|
|
$self->{registry}->add_default('text', 'general', 'trigger', $conf{trigger} // '!');
|
2020-02-15 23:38:32 +01:00
|
|
|
|
|
|
|
$self->{registry}->add_default('text', 'irc', 'debug', $conf{irc_debug} // 0);
|
|
|
|
$self->{registry}->add_default('text', 'irc', 'show_motd', $conf{show_motd} // 1);
|
|
|
|
$self->{registry}->add_default('text', 'irc', 'max_msg_len', $conf{max_msg_len} // 425);
|
|
|
|
$self->{registry}->add_default('text', 'irc', 'server', $conf{server} // "irc.freenode.net");
|
|
|
|
$self->{registry}->add_default('text', 'irc', 'port', $conf{port} // 6667);
|
|
|
|
$self->{registry}->add_default('text', 'irc', 'SSL', $conf{SSL} // 0);
|
|
|
|
$self->{registry}->add_default('text', 'irc', 'SSL_ca_file', $conf{SSL_ca_file} // 'none');
|
|
|
|
$self->{registry}->add_default('text', 'irc', 'SSL_ca_path', $conf{SSL_ca_path} // 'none');
|
|
|
|
$self->{registry}->add_default('text', 'irc', 'botnick', $conf{botnick} // "");
|
|
|
|
$self->{registry}->add_default('text', 'irc', 'username', $conf{username} // "pbot3");
|
|
|
|
$self->{registry}->add_default('text', 'irc', 'realname', $conf{realname} // "https://github.com/pragma-/pbot");
|
|
|
|
$self->{registry}->add_default('text', 'irc', 'identify_password', $conf{identify_password} // '');
|
|
|
|
$self->{registry}->add_default('text', 'irc', 'log_default_handler', 1);
|
|
|
|
|
|
|
|
$self->{registry}->set_default('irc', 'SSL_ca_file', 'private', 1);
|
|
|
|
$self->{registry}->set_default('irc', 'SSL_ca_path', 'private', 1);
|
|
|
|
$self->{registry}->set_default('irc', 'identify_password', 'private', 1);
|
|
|
|
|
|
|
|
# load existing registry entries from file (if exists) to overwrite defaults
|
|
|
|
if (-e $self->{registry}->{registry}->{filename}) { $self->{registry}->load; }
|
|
|
|
|
|
|
|
# update important paths
|
2020-04-21 02:53:32 +02:00
|
|
|
$self->{registry}->set('general', 'data_dir', 'value', $data_dir, 0, 1);
|
|
|
|
$self->{registry}->set('general', 'module_dir', 'value', $module_dir, 0, 1);
|
|
|
|
$self->{registry}->set('general', 'plugin_dir', 'value', $plugin_dir, 0, 1);
|
|
|
|
$self->{registry}->set('general', 'update_dir', 'value', $update_dir, 0, 1);
|
2020-02-15 23:38:32 +01:00
|
|
|
|
|
|
|
# override registry entries with command-line arguments, if any
|
|
|
|
foreach my $override (keys %{$self->{overrides}}) {
|
|
|
|
my ($section, $key) = split /\./, $override;
|
|
|
|
my $value = $self->{overrides}->{$override};
|
|
|
|
$self->{logger}->log("Overriding $section.$key to $value\n");
|
|
|
|
$self->{registry}->set($section, $key, 'value', $value, 0, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
# registry triggers fire when value changes
|
|
|
|
$self->{registry}->add_trigger('irc', 'botnick', sub { $self->change_botnick_trigger(@_) });
|
|
|
|
$self->{registry}->add_trigger('irc', 'debug', sub { $self->irc_debug_trigger(@_) });
|
|
|
|
|
|
|
|
# ensure user has attempted to configure the bot
|
|
|
|
if (not length $self->{registry}->get_value('irc', 'botnick')) {
|
|
|
|
$self->{logger}->log("Fatal error: IRC nickname not defined; please set registry key irc.botnick in $data_dir/registry to continue.\n");
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
$self->{event_dispatcher} = PBot::EventDispatcher->new(pbot => $self, %conf);
|
|
|
|
$self->{process_manager} = PBot::ProcessManager->new(pbot => $self, %conf);
|
|
|
|
$self->{irchandlers} = PBot::IRCHandlers->new(pbot => $self, %conf);
|
|
|
|
$self->{select_handler} = PBot::SelectHandler->new(pbot => $self, %conf);
|
|
|
|
$self->{users} = PBot::Users->new(pbot => $self, filename => "$data_dir/users", %conf);
|
|
|
|
$self->{stdin_reader} = PBot::StdinReader->new(pbot => $self, %conf);
|
|
|
|
$self->{lagchecker} = PBot::LagChecker->new(pbot => $self, %conf);
|
|
|
|
$self->{messagehistory} = PBot::MessageHistory->new(pbot => $self, filename => "$data_dir/message_history.sqlite3", %conf);
|
|
|
|
$self->{antiflood} = PBot::AntiFlood->new(pbot => $self, %conf);
|
|
|
|
$self->{antispam} = PBot::AntiSpam->new(pbot => $self, %conf);
|
|
|
|
$self->{ignorelist} = PBot::IgnoreList->new(pbot => $self, filename => "$data_dir/ignorelist", %conf);
|
|
|
|
$self->{blacklist} = PBot::BlackList->new(pbot => $self, filename => "$data_dir/blacklist", %conf);
|
|
|
|
$self->{irc} = PBot::IRC->new();
|
|
|
|
$self->{channels} = PBot::Channels->new(pbot => $self, filename => "$data_dir/channels", %conf);
|
|
|
|
$self->{chanops} = PBot::ChanOps->new(pbot => $self, %conf);
|
2020-04-29 06:33:49 +02:00
|
|
|
$self->{banlist} = PBot::BanList->new(pbot => $self, %conf);
|
2020-02-15 23:38:32 +01:00
|
|
|
$self->{nicklist} = PBot::NickList->new(pbot => $self, %conf);
|
|
|
|
$self->{webpaste} = PBot::WebPaste->new(pbot => $self, %conf);
|
|
|
|
$self->{parsedate} = PBot::Utils::ParseDate->new(pbot => $self, %conf);
|
|
|
|
|
|
|
|
$self->{interpreter} = PBot::Interpreter->new(pbot => $self, %conf);
|
|
|
|
$self->{interpreter}->register(sub { $self->{commands}->interpreter(@_) });
|
|
|
|
$self->{interpreter}->register(sub { $self->{factoids}->interpreter(@_) });
|
|
|
|
|
2020-02-26 11:29:02 +01:00
|
|
|
$self->{factoids} = PBot::Factoids->new(pbot => $self, filename => "$data_dir/factoids.sqlite3", %conf);
|
2020-02-15 23:38:32 +01:00
|
|
|
|
|
|
|
$self->{plugins} = PBot::Plugins->new(pbot => $self, %conf);
|
|
|
|
|
|
|
|
# load available plugins
|
|
|
|
$self->{plugins}->autoload(%conf);
|
|
|
|
|
|
|
|
# give botowner all capabilities
|
|
|
|
$self->{capabilities}->rebuild_botowner_capabilities();
|
2020-05-15 01:57:34 +02:00
|
|
|
|
|
|
|
# flush all pending save events to disk at exit
|
|
|
|
$self->{atexit}->register(sub {
|
2020-05-30 05:48:53 +02:00
|
|
|
$self->{timer}->execute_and_dequeue_event('save *');
|
2020-05-15 01:57:34 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
);
|
2010-03-17 07:36:54 +01:00
|
|
|
}
|
|
|
|
|
2015-01-11 00:56:43 +01:00
|
|
|
sub random_nick {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self, $length) = @_;
|
|
|
|
$length //= 9;
|
|
|
|
my @chars = ("A" .. "Z", "a" .. "z", "0" .. "9");
|
|
|
|
my $nick = $chars[rand @chars - 10]; # nicks cannot start with a digit
|
|
|
|
$nick .= $chars[rand @chars] for 1 .. $length;
|
|
|
|
return $nick;
|
2015-01-11 00:56:43 +01:00
|
|
|
}
|
2010-03-17 07:36:54 +01:00
|
|
|
|
2015-01-11 00:56:43 +01:00
|
|
|
# TODO: add disconnect subroutine
|
2010-03-17 07:36:54 +01:00
|
|
|
sub connect {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self, $server) = @_;
|
|
|
|
|
|
|
|
if ($self->{connected}) {
|
|
|
|
# TODO: disconnect, clean-up, etc
|
|
|
|
}
|
|
|
|
|
|
|
|
$server = $self->{registry}->get_value('irc', 'server') if not defined $server;
|
|
|
|
|
|
|
|
$self->{logger}->log("Connecting to $server ...\n");
|
|
|
|
|
|
|
|
while (
|
|
|
|
not $self->{conn} = $self->{irc}->newconn(
|
|
|
|
Nick => $self->{registry}->get_value('irc', 'randomize_nick') ? $self->random_nick : $self->{registry}->get_value('irc', 'botnick'),
|
|
|
|
Username => $self->{registry}->get_value('irc', 'username'),
|
|
|
|
Ircname => $self->{registry}->get_value('irc', 'realname'),
|
|
|
|
Server => $server,
|
|
|
|
Pacing => 1,
|
|
|
|
UTF8 => 1,
|
|
|
|
SSL => $self->{registry}->get_value('irc', 'SSL'),
|
|
|
|
SSL_ca_file => $self->{registry}->get_value('irc', 'SSL_ca_file'),
|
|
|
|
SSL_ca_path => $self->{registry}->get_value('irc', 'SSL_ca_path'),
|
|
|
|
Port => $self->{registry}->get_value('irc', 'port')
|
|
|
|
)
|
|
|
|
)
|
|
|
|
{
|
|
|
|
$self->{logger}->log("$0: Can't connect to $server:" . $self->{registry}->get_value('irc', 'port') . ". Retrying in 15 seconds...\n");
|
|
|
|
sleep 15;
|
|
|
|
}
|
|
|
|
|
|
|
|
$self->{connected} = 1;
|
|
|
|
|
|
|
|
# start timer once connected
|
|
|
|
$self->{timer}->start;
|
|
|
|
|
|
|
|
# set up handlers for the IRC engine
|
|
|
|
$self->{conn}->add_default_handler(sub { $self->{irchandlers}->default_handler(@_) }, 1);
|
|
|
|
$self->{conn}->add_handler([251, 252, 253, 254, 255, 302], sub { $self->{irchandlers}->on_init(@_) });
|
|
|
|
|
|
|
|
# ignore these events
|
|
|
|
$self->{conn}->add_handler(
|
|
|
|
[
|
|
|
|
'whoisserver',
|
|
|
|
'whoiscountry',
|
|
|
|
'whoischannels',
|
|
|
|
'whoisidle',
|
|
|
|
'motdstart',
|
|
|
|
'endofmotd',
|
|
|
|
'away',
|
|
|
|
],
|
|
|
|
sub { }
|
|
|
|
);
|
2010-03-17 07:36:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#main loop
|
|
|
|
sub do_one_loop {
|
2020-02-15 23:38:32 +01:00
|
|
|
my $self = shift;
|
|
|
|
$self->{irc}->do_one_loop();
|
|
|
|
$self->{select_handler}->do_select();
|
2010-03-22 08:33:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sub start {
|
2020-02-15 23:38:32 +01:00
|
|
|
my $self = shift;
|
|
|
|
while (1) {
|
|
|
|
$self->connect() if not $self->{connected};
|
|
|
|
$self->do_one_loop() if $self->{connected};
|
|
|
|
}
|
2010-03-17 07:36:54 +01:00
|
|
|
}
|
|
|
|
|
2014-05-17 00:11:31 +02:00
|
|
|
sub register_signal_handlers {
|
2020-02-15 23:38:32 +01:00
|
|
|
my $self = shift;
|
|
|
|
$SIG{INT} = sub { $self->atexit; exit 0; };
|
2014-05-17 00:11:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub atexit {
|
2020-02-15 23:38:32 +01:00
|
|
|
my $self = shift;
|
|
|
|
$self->{atexit}->execute_all;
|
2020-02-26 11:11:42 +01:00
|
|
|
alarm 0;
|
2014-05-17 00:11:31 +02:00
|
|
|
}
|
|
|
|
|
2014-05-31 03:03:42 +02:00
|
|
|
sub irc_debug_trigger {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self, $section, $item, $newvalue) = @_;
|
|
|
|
$self->{irc}->debug($newvalue);
|
|
|
|
$self->{conn}->debug($newvalue) if $self->{connected};
|
2014-05-31 03:03:42 +02:00
|
|
|
}
|
|
|
|
|
2014-05-17 22:08:19 +02:00
|
|
|
sub change_botnick_trigger {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self, $section, $item, $newvalue) = @_;
|
|
|
|
$self->{conn}->nick($newvalue) if $self->{connected};
|
2010-03-23 19:24:02 +01:00
|
|
|
}
|
|
|
|
|
2020-05-04 22:21:35 +02:00
|
|
|
sub cmd_list {
|
|
|
|
my ($self, $context) = @_;
|
2020-02-15 23:38:32 +01:00
|
|
|
my $text;
|
|
|
|
|
|
|
|
my $usage = "Usage: list <modules|commands>";
|
|
|
|
|
2020-05-04 22:21:35 +02:00
|
|
|
return $usage if not length $context->{arguments};
|
2020-02-15 23:38:32 +01:00
|
|
|
|
2020-05-04 22:21:35 +02:00
|
|
|
if ($context->{arguments} =~ /^modules$/i) {
|
2020-02-15 23:38:32 +01:00
|
|
|
$text = "Loaded modules: ";
|
|
|
|
foreach my $channel (sort $self->{factoids}->{factoids}->get_keys) {
|
|
|
|
foreach my $command (sort $self->{factoids}->{factoids}->get_keys($channel)) {
|
|
|
|
next if $command eq '_name';
|
|
|
|
if ($self->{factoids}->{factoids}->get_data($channel, $command, 'type') eq 'module') {
|
|
|
|
$text .= $self->{factoids}->{factoids}->get_data($channel, $command, '_name') . ' ';
|
|
|
|
}
|
|
|
|
}
|
2020-01-25 21:28:05 +01:00
|
|
|
}
|
2020-05-04 22:21:35 +02:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
return $text;
|
2020-01-25 21:28:05 +01:00
|
|
|
}
|
2020-02-15 23:38:32 +01:00
|
|
|
|
2020-05-04 22:21:35 +02:00
|
|
|
if ($context->{arguments} =~ /^commands$/i) {
|
2020-02-15 23:38:32 +01:00
|
|
|
$text = "Registered commands: ";
|
|
|
|
foreach my $command (sort { $a->{name} cmp $b->{name} } @{$self->{commands}->{handlers}}) {
|
|
|
|
if ($command->{requires_cap}) { $text .= "+$command->{name} "; }
|
|
|
|
else { $text .= "$command->{name} "; }
|
|
|
|
}
|
|
|
|
return $text;
|
2020-01-25 21:28:05 +01:00
|
|
|
}
|
2020-02-15 23:38:32 +01:00
|
|
|
return $usage;
|
2020-01-25 21:28:05 +01:00
|
|
|
}
|
|
|
|
|
2020-05-04 22:21:35 +02:00
|
|
|
sub cmd_sl {
|
|
|
|
my ($self, $context) = @_;
|
|
|
|
return "Usage: sl <ircd command>" if not length $context->{arguments};
|
|
|
|
$self->{conn}->sl($context->{arguments});
|
|
|
|
return "/msg $context->{nick} sl: command sent. See log for result.";
|
2020-01-25 21:28:05 +01:00
|
|
|
}
|
|
|
|
|
2020-05-04 22:21:35 +02:00
|
|
|
sub cmd_die {
|
|
|
|
my ($self, $context) = @_;
|
|
|
|
$self->{logger}->log("$context->{hostmask} made me exit.\n");
|
2020-02-15 23:38:32 +01:00
|
|
|
$self->atexit();
|
2020-05-04 22:21:35 +02:00
|
|
|
$self->{conn}->privmsg($context->{from}, "Good-bye.") if defined $context->{from};
|
|
|
|
$self->{conn}->quit("Departure requested.") if defined $self->{conn};
|
2020-02-15 23:38:32 +01:00
|
|
|
exit 0;
|
2020-01-25 21:28:05 +01:00
|
|
|
}
|
|
|
|
|
2020-05-04 22:21:35 +02:00
|
|
|
sub cmd_export {
|
|
|
|
my ($self, $context) = @_;
|
|
|
|
return "Usage: export <factoids>" if not length $context->{arguments};
|
|
|
|
if ($context->{arguments} =~ /^factoids$/i) { return $self->{factoids}->export_factoids; }
|
2020-01-25 21:28:05 +01:00
|
|
|
}
|
|
|
|
|
2020-05-04 22:21:35 +02:00
|
|
|
sub cmd_eval {
|
|
|
|
my ($self, $context) = @_;
|
2020-01-25 21:28:05 +01:00
|
|
|
|
2020-05-04 22:21:35 +02:00
|
|
|
$self->{logger}->log("eval: $context->{from} $context->{hostmask} evaluating `$context->{arguments}`\n");
|
2020-01-25 21:28:05 +01:00
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
my $ret = '';
|
2020-05-04 22:21:35 +02:00
|
|
|
my $result = eval $context->{arguments};
|
2020-02-15 23:38:32 +01:00
|
|
|
if ($@) {
|
|
|
|
if (length $result) { $ret .= "[Error: $@] "; }
|
|
|
|
else { $ret .= "Error: $@"; }
|
|
|
|
$ret =~ s/ at \(eval \d+\) line 1.//;
|
2020-01-25 21:28:05 +01:00
|
|
|
}
|
2020-02-15 23:38:32 +01:00
|
|
|
$result = 'Undefined.' if not defined $result;
|
|
|
|
$result = 'No output.' if not length $result;
|
|
|
|
return "/say $ret $result";
|
2020-01-25 21:28:05 +01:00
|
|
|
}
|
|
|
|
|
2020-05-04 22:21:35 +02:00
|
|
|
sub cmd_reload {
|
|
|
|
my ($self, $context) = @_;
|
2020-02-15 23:38:32 +01:00
|
|
|
|
|
|
|
my %reloadables = (
|
|
|
|
'capabilities' => sub {
|
|
|
|
$self->{capabilities}->{caps}->load;
|
|
|
|
return "Capabilities reloaded.";
|
|
|
|
},
|
|
|
|
|
|
|
|
'commands' => sub {
|
|
|
|
$self->{commands}->{metadata}->load;
|
|
|
|
return "Commands metadata reloaded.";
|
|
|
|
},
|
|
|
|
|
|
|
|
'blacklist' => sub {
|
|
|
|
$self->{blacklist}->load_blacklist;
|
|
|
|
return "Blacklist reloaded.";
|
|
|
|
},
|
|
|
|
|
|
|
|
'ban-exemptions' => sub {
|
|
|
|
$self->{antiflood}->{'ban-exemptions'}->load;
|
|
|
|
return "Ban exemptions reloaded.";
|
|
|
|
},
|
|
|
|
|
|
|
|
'ignores' => sub {
|
2020-03-04 22:24:40 +01:00
|
|
|
$self->{ignorelist}->{ignorelist}->load;
|
2020-02-15 23:38:32 +01:00
|
|
|
return "Ignore list reloaded.";
|
|
|
|
},
|
|
|
|
|
|
|
|
'users' => sub {
|
|
|
|
$self->{users}->load;
|
|
|
|
return "Users reloaded.";
|
|
|
|
},
|
|
|
|
|
|
|
|
'channels' => sub {
|
|
|
|
$self->{channels}->{channels}->load;
|
|
|
|
return "Channels reloaded.";
|
|
|
|
},
|
|
|
|
|
2020-04-29 06:33:49 +02:00
|
|
|
'banlist' => sub {
|
|
|
|
$self->{timer}->dequeue_event('unban #.*');
|
|
|
|
$self->{timer}->dequeue_event('unmute #.*');
|
|
|
|
$self->{banlist}->{banlist}->load;
|
|
|
|
$self->{banlist}->{quietlist}->load;
|
2020-05-02 11:38:39 +02:00
|
|
|
$self->{banlist}->enqueue_timeouts($self->{banlist}->{banlist}, 'b');
|
|
|
|
$self->{banlist}->enqueue_timeouts($self->{banlist}->{quietlist}, 'q');
|
2020-04-29 06:33:49 +02:00
|
|
|
return "Ban list reloaded.";
|
2020-02-15 23:38:32 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
'registry' => sub {
|
|
|
|
$self->{registry}->load;
|
|
|
|
return "Registry reloaded.";
|
|
|
|
},
|
|
|
|
|
|
|
|
'factoids' => sub {
|
|
|
|
$self->{factoids}->load_factoids;
|
|
|
|
return "Factoids reloaded.";
|
|
|
|
}
|
|
|
|
);
|
2020-01-25 21:28:05 +01:00
|
|
|
|
2020-05-04 22:21:35 +02:00
|
|
|
if (not length $context->{arguments} or not exists $reloadables{$context->{arguments}}) {
|
2020-02-15 23:38:32 +01:00
|
|
|
my $usage = 'Usage: reload <';
|
|
|
|
$usage .= join '|', sort keys %reloadables;
|
|
|
|
$usage .= '>';
|
|
|
|
return $usage;
|
|
|
|
}
|
2020-01-25 21:28:05 +01:00
|
|
|
|
2020-05-04 22:21:35 +02:00
|
|
|
return $reloadables{$context->{arguments}}();
|
2020-01-25 21:28:05 +01:00
|
|
|
}
|
|
|
|
|
2010-03-17 07:36:54 +01:00
|
|
|
1;
|