X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=Bot.pm;h=078563d8bdfa3e85e0f78da7c48d5cbd30b35799;hb=6e09408e9745c52f46cfb9fbf337a3935a03dc07;hp=0a65f8fbafc11c7f84f7774579bb36e9818f1dd2;hpb=14fe324122bee271d8153f3db81491240a87895c;p=NDIRC.git diff --git a/Bot.pm b/Bot.pm index 0a65f8f..078563d 100644 --- a/Bot.pm +++ b/Bot.pm @@ -26,6 +26,7 @@ use Moose; use POE::Component::IRC::Common qw/irc_to_utf8/; use POE::Session; +use POE::Kernel; use POE::Component::IRC::Plugin::Logger; use POE::Component::IRC::Plugin::BotTraffic; use POE::Component::IRC::Plugin::Connector; @@ -67,6 +68,12 @@ has discord_channels => ( default => sub { {} } ); +has targets => ( + is => 'ro', + isa => 'HashRef[ArrayRef[Str]]', + default => sub{ {} }, +); + # We registered for all events, this will produce some debug info. sub _default { my ($event, $args) = @_[ARG0 .. $#_]; @@ -84,11 +91,16 @@ sub _default { return 0; } +my $irc; +sub irc { + return $irc; +} + sub _start { my ($self,$kernel,$heap,$session) = @_[OBJECT,KERNEL,HEAP,SESSION]; # retrieve our component's object from the heap where we stashed it - my $irc = $heap->{irc}; + $irc = $heap->{irc}; $kernel->sig( DIE => 'sig_DIE' ); $kernel->sig( USR1 => 'sig_usr1' ); $kernel->sig( USR2 => 'sig_usr2' ); @@ -109,13 +121,12 @@ sub _start { )); $heap->{connector} = POE::Component::IRC::Plugin::Connector->new( - servers => [['irc.netgamers.org'], ['underworld.no.eu.netgamers.org'] - ,['firefly.no.eu.netgamers.org'], ['underworld.ca.us.netgamers.org'] ] + servers => [['chronos.fr.eu.netgamers.org'], ['underworld.no.eu.netgamers.org']] ); $irc->plugin_add( 'Connector' => $heap->{connector} ); $irc->yield( register => 'all' ); - $irc->yield( connect => { server => 'irc.netgamers.org' } ); + #$irc->yield( connect => { server => 'chronos.fr.eu.netgamers.org' } ); $kernel->delay( refresh => 60 ); @@ -130,15 +141,16 @@ sub _start { 'name' => $user, 'url' => 'https://nd.ruin.nu', 'version' => '1.0', - 'callbacks' => { - 'READY' => sub { $self->discord_ready(@_) }, - 'MESSAGE_CREATE' => sub { $self->discord_message_create(@_) }, - 'GUILD_CREATE' => sub { $self->discord_guild_create(@_) }, - 'CHANNEL_CREATE' => sub { $self->discord_channel_create(@_) }, - }, 'reconnect' => 1, 'verbose' => 1, + 'logdir' => '/tmp', )); + + $self->discord->gw->on('MESSAGE_CREATE' => sub { $self->discord_message_create(@_) }); + $self->discord->gw->on('READY' => sub { $self->discord_ready(@_) }); + $self->discord->gw->on('GUILD_CREATE' => sub { $self->discord_guild_create(@_) }); + $self->discord->gw->on('CHANNEL_CREATE' => sub { $self->discord_channel_create(@_) }); + $self->discord->init(); } return; @@ -235,13 +247,16 @@ sub _build_disp { $disp->load(@commands); } + %{$self->targets} = (); my $channels = new IO::File 'channels' or die $!;; while (<$channels>){ my ($chan, @types) = split /\s+/; say "$chan - @types"; if ($chan =~ /^(.*):(.*)$/){ $chan = $1; - $disp->set_target($2,$chan); + $self->targets->{$2} = [] unless exists $self->targets->{$2}; + push @{$self->targets->{$2}},lc $chan; + say "$2 - @{$self->targets->{$2}}"; } $disp->add_channel($chan,\@types); } @@ -324,8 +339,8 @@ sub irc_join { } sub discord_ready { - my $self = shift; - my $hash = shift; + my ($self, $gw, $hash) = @_; + $self->discord_id($hash->{user}{id}); $self->discord_name($hash->{user}{username}); @@ -336,8 +351,7 @@ sub discord_message_create { } sub discord_guild_create { - my $self = shift; - my $hash = shift; + my ($self, $gw, $hash) = @_; for my $chan (@{$hash->{channels}}) { say localtime(time) . " - $chan->{id} - $chan->{name}"; @@ -346,8 +360,7 @@ sub discord_guild_create { } sub discord_channel_create { - my $self = shift; - my $chan = shift; + my ($self, $gw, $chan) = @_; for my $key (keys %{$chan}) { say localtime(time) . " - $key - $chan->{$key}"; @@ -355,6 +368,26 @@ sub discord_channel_create { $self->discord_channels->{$chan->{id}} = $chan; } +sub handleCommand { + my ($self, $c, $msg) = @_; + + my ($p,$command,$args) = ($msg =~ /^([.])(\S+)(?: (.+))?/); + + if ($msg =~ m{https?://[\w.]+/.+?scan(_id|_grp)?=(\w+)}){ + if (!$command || $command =~ m{^https?://}){ + ($p,$command,$args) = ('.','addscan',$msg); + }elsif($command ne 'addscan'){ + $self->handleCommand ($c, ".addscan $msg") + } + } + + return 0 unless $self->disp->has_command($command,$c->channel); + + say localtime(time) . " - $msg"; + + return $self->disp->run_command($c,$command,$args); +} + sub parseCommand { my ($self, $msg, $server, $nick, $address, $channel, $model) = @_; @@ -394,10 +427,51 @@ sub parseCommand { disp => $self->disp, model => $model, server => $server, + bot => $self, reply_string => $reply_string, }); return $self->disp->run_command($c,$command,$args); } +sub toTarget { + my ($self, $target, $msg) = @_; + + return unless exists $self->targets->{$target}; + + $self->message($msg, @{$self->targets->{$target}}); + +} + +sub message { + my ($self, $msg, @targets) = @_; + + for (@targets) { + when (/^D-(\d+)$/i) { + $self->discordMessage($1, $msg); + } + default { + $self->ircMessage(privmsg => $_, $msg); + } + } +} + +sub ircMessage { + my ($self, $command, $target, $msg) = @_; + + $msg =~ s`(.*?)`${\(chr(2))}$1${\(chr(15))}`gi; + $msg =~ s`(.*?)`${\(chr(3))}$1$2${\(chr(15))}`gi; + + $self->irc->yield($command, $target, $msg); +} + +sub discordMessage { + my ($self, $target, $msg) = @_; + + $msg =~ s`(.*?)`**$1**`gi; + $msg =~ s`(.*?)`*$2*`gi; + + $self->discord->send_message($target, $msg ); +} + 1;