]> ruin.nu Git - NDIRC.git/blobdiff - Bot.pm
Initial Discord support
[NDIRC.git] / Bot.pm
diff --git a/Bot.pm b/Bot.pm
index dde08adc2b42ff6dc1acaf027b51f686ef990905..89ec47d7c1e75ae9d7c3cb397b07e0b92b6a2026 100644 (file)
--- a/Bot.pm
+++ b/Bot.pm
@@ -32,7 +32,11 @@ use POE::Component::IRC::Plugin::Connector;
 use POE::Component::IRC::Plugin::AutoJoin;
 use POE::Component::IRC::Plugin::NickReclaim;
 
+use Mojo::Discord;
+use Mojo::IOLoop;
+
 use NDIRC::Dispatcher;
+use NDIRC::Context;
 
 use IO::File;
 
@@ -42,6 +46,21 @@ has disp => (
        lazy_build => 1
 );
 
+has discord => (
+       is => 'rw',
+       isa => 'Object'
+);
+
+has discord_name => (
+       is => 'rw',
+       isa => 'Str'
+);
+
+has discord_id => (
+       is => 'rw',
+       isa => 'Str'
+);
+
 # We registered for all events, this will produce some debug info.
 sub _default {
        my ($event, $args) = @_[ARG0 .. $#_];
@@ -60,7 +79,7 @@ sub _default {
 }
 
 sub _start {
-       my ($kernel,$heap,$session) = @_[KERNEL,HEAP,SESSION];
+       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};
@@ -93,6 +112,28 @@ sub _start {
        $irc->yield( connect => { server => 'irc.netgamers.org' } );
 
        $kernel->delay( refresh => 60 );
+
+       if (my $f =  new IO::File 'discord'){
+               my $user = <$f>;
+               chomp $user;
+               my $token = <$f>;
+               chomp $token;
+
+               $self->discord(Mojo::Discord->new(
+                               'token'     => $token,
+                               '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(@_) },
+                               },
+                               'reconnect' => 1,
+                               'verbose'   => 1,
+                       ));
+               $self->discord->init();
+       }
        return;
 }
 
@@ -114,9 +155,66 @@ sub sig_usr1 {
        $kernel->yield( 'refresh' );
 }
 
+sub clear_constraint {
+       my $tc = shift;
+
+       while (1) {
+               if (ref $tc eq 'MooseX::Meta::TypeConstraint::Structured'){
+                       for my $t (@{$tc->{type_constraints}}){
+                               clear_constraint($t);
+                       }
+
+               }
+               if (ref $tc eq 'Moose::Meta::TypeConstraint::Parameterized'){
+                       clear_constraint($tc->{type_parameter});
+               }
+               last if ref $tc eq 'HASH';
+               last if ref $tc eq '';
+               if (defined $tc->{_type_constraint}){
+                       $tc = $tc->{_type_constraint};
+               }elsif(defined $tc->{__type_constraint}){
+                       $tc = $tc->{__type_constraint};
+               }else{
+                       last;
+               }
+       }
+}
+
+sub clear_metains {
+       my $ins = shift;
+
+       for my $a (@{$ins->{attributes}}){
+               for my $m (@{$a->{associated_methods}}){
+                       $m->{body} = undef;
+               }
+               clear_constraint($a->{isa});
+       }
+}
+
+sub clear_cycles {
+       my $c = shift;
+
+       for my $m (values %{$c->meta->{methods}}){
+               clear_constraint($m->{type_constraint});
+
+               my $ps = $m->{parsed_signature};
+               for my $p (@{$ps->{_positional_params}->{params}}){
+                       clear_metains($p->{__MOP__}->{_meta_instance});
+               }
+
+               $m->{body} = undef;
+       }
+       clear_metains($c->meta->{_meta_instance});
+}
+
+
 sub sig_usr2 {
        my $self = shift @_;
 
+       for my $c (values %{$self->disp->commands}){
+               clear_cycles($c);
+       }
+
        $self->disp($self->_build_disp);
 }
 
@@ -218,6 +316,21 @@ sub  refresh {
 sub irc_join {
 }
 
+sub discord_ready {
+       my $self = shift;
+       my $hash = shift;
+       $self->discord_id($hash->{user}{id});
+       $self->discord_name($hash->{user}{username});
+
+       say localtime(time) . " - Connected to Discord. $self->{discord_id}";
+}
+
+sub discord_message_create {
+}
+
+sub discord_guild_create {
+}
+
 sub parseCommand {
        my ($self, $msg, $server, $nick, $address, $channel, $model) = @_;
 
@@ -226,8 +339,8 @@ sub parseCommand {
 
        my ($p,$command,$args) = ($msg =~ /^([.!~])(\S+)(?: (.+))?/);
 
-       if ($msg =~ m{http://[\w.]+/.+?scan(_id|_grp)?=(\w+)}){
-               if (!$command || $command =~ m{^http://}){
+       if ($msg =~ m{https?://[\w.]+/.+?scan(_id|_grp)?=(\w+)}){
+               if (!$command || $command =~ m{^https?://}){
                        ($p,$command,$args) = ('.','addscan',$msg);
                }elsif($command ne 'addscan'){
                        $self->parseCommand (".addscan $msg", $server, $nick, $address, $channel, $model)