Group
Extension

Mojo-Webqq/lib/Mojo/Webqq/Plugin/SmartReply.pm

package Mojo::Webqq::Plugin::SmartReply;
use POSIX qw(strftime);
use Encode;
use List::Util qw(first);
use Mojo::Util;
my $api = 'http://www.tuling123.com/openapi/api';
my %ban;
my @limit_reply = (
    "对不起,请不要这么频繁的艾特我",
    "对不起,您的艾特次数太多",
    "说这么多话不累么,请休息几分钟",
);
sub call{
    my $client = shift;
    my $data   = shift;
    
    my $notice_reply = ref $data->{notice_reply} eq "ARRAY"?$data->{notice_reply}:\@limit_reply;
    my $notice_limit = $data->{notice_limit} || 8;
    my $warn_limit = $data->{warn_limit} || 10;
    my $ban_limit = $data->{ban_limit} || 12;
    my $ban_time = $data->{ban_time} || 1200;
    my $friend_reply = $data->{friend_reply} // 1;
    my $group_reply = $data->{group_reply} // 1;
    my $is_need_at = defined $data->{is_need_at}?$data->{is_need_at}:1;

    my $counter = $client->new_counter(id=>'SmartReply',period=>$data->{period} || 600);
    $client->on(login=>sub{%ban = ();$counter->reset();});
    $client->on(receive_message=>sub{
        my($client,$msg) = @_;
        return if not $msg->allow_plugin;
        return if $msg->type !~ /^friend_message|group_message|sess_message$/;
        return if !$friend_reply and $msg->type eq 'friend_message';
        return if !$group_reply and $msg->type eq 'group_message';
        return if exists $ban{$msg->sender->id};

        my $sender_nick = $msg->sender->displayname;
        my $user_nick = $msg->receiver->displayname;

        my $trigger = 0;

        if($msg->type eq 'group_message'){
            return if ref $data->{ban_group}  eq "ARRAY" and first {$_=~/^\d+$/?$msg->group->uid eq $_:$msg->group->name eq $_} @{$data->{ban_group}};
            return if ref $data->{allow_group}  eq "ARRAY" and !first {$_=~/^\d+$/?$msg->group->uid eq $_:$msg->group->name eq $_} @{$data->{allow_group}};
            return if ref $data->{ban_user} eq "ARRAY" and first {$_=~/^\d+$/?$msg->sender->uid eq $_:$sender_nick eq $_} @{$data->{ban_user}};
            $trigger = 1 if $data->{is_need_at} and $msg->type eq "group_message" and $msg->is_at;
        }
        else{
            return if ref $data->{ban_user} eq "ARRAY" and first {$_=~/^\d+$/?$msg->sender->uid eq $_:$sender_nick eq $_} @{$data->{ban_user}};
        }

        if(ref $data->{keyword} eq "ARRAY" and @{$data->{keyword}} > 0){
            $trigger = 1 if first { $msg->content =~ /\Q$_\E/} @{$data->{keyword}};
        }

        return if not $trigger;

        my $id = ($msg->type eq 'group_message'?$msg->group->id : 'placeholder') . "|" .$msg->sender->id;
        my $limit = $counter->check( $id );
        if($limit >= $ban_limit){
            $ban{$msg->sender->id} = 1;
            $client->reply_message($msg,"\@$sender_nick " . "您已被列入黑名单,$ban_time秒内提问无视",sub{$_[1]->msg_from("bot")});
            $counter->clear( $id );
            $client->timer($ban_time ,sub{delete $ban{$msg->sender->id};});
            return;
        }
        if($limit >= $warn_limit){
            $client->reply_message($msg,"\@$sender_nick " . "警告,您艾特过于频繁,即将被列入黑名单,请克制",sub{$_[1]->from("bot")});
            return;
        }
        if($limit >= $notice_limit){
            $client->reply_message($msg,"\@$sender_nick " . $limit_reply->[int rand(@$limit_reply)],sub{$_[1]->from("bot")});
            return;
        }   

        $msg->allow_plugin(0);

        my $input = $msg->content;
        $input=~s/\@\Q$user_nick\E ?|\[[^\[\]]+\]\x01|\[[^\[\]]+\]//g;
        return unless $input;

        my $json = {
            "key"       =>  $data->{apikey} || "f771372ffd054183bfcdf260d7c7ad5a",
            "userid"    =>  $msg->sender->id,
            "info"      =>  $input,
        };

        $json->{"loc"} = $msg->sender->city if $msg->type eq "group_message" and  $msg->sender->city; 
        $client->http_post($api,{json=>1},json=>$json,sub{
            my $json = shift;
            return unless defined $json;
            return if $json->{code}=~/^4000[1-7]$/;
            my $reply;
            if($json->{code} == 100000){
                return unless $json->{text};
                $reply = $json->{text};
            } 
            elsif($json->{code} == 200000){
                $reply = "$json->{text}$json->{url}";
            }
            else{return}
            $reply=~s#<br(\s*/)?>#\n#g;
            eval{$reply= Mojo::Util::html_unescape($reply);};
            $client->warn("html entities unescape fail: $@") if $@;
            $reply  = "\@$sender_nick " . $reply  if $msg->type eq 'group_message' and rand(100)>20;
            $reply = $client->truncate($reply,max_bytes=>500,max_lines=>8) if ($msg->type eq 'group_message' and $data->{is_truncate_reply});   
            $client->reply_message($msg,$reply,sub{$_[1]->from("bot")}) if $reply;
        });

    }); 
}
1;


Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.