X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=Bot.pm;h=5693dd4d0b353c392d51a173736421262ba3f74d;hb=48c2e7d852234548bdce239b4441b7a98de408a2;hp=b3b4c9d563c73915e09c77a5696a3e7f3af16bb7;hpb=57b44cc65d33c9bcb7f1ffcd91778689d30f9a5b;p=NDIRC.git diff --git a/Bot.pm b/Bot.pm index b3b4c9d..5693dd4 100644 --- a/Bot.pm +++ b/Bot.pm @@ -33,6 +33,7 @@ use POE::Component::IRC::Plugin::AutoJoin; use POE::Component::IRC::Plugin::NickReclaim; use NDIRC::Dispatcher; +use NDIRC::Context; use IO::File; @@ -80,6 +81,7 @@ sub _start { Sort_by_date => 1, Strip_color => 1, Strip_formatting => 1, + Notices => 1, )); $heap->{connector} = POE::Component::IRC::Plugin::Connector->new( @@ -113,9 +115,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); } @@ -225,8 +284,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)