# File: RelayUnreg.pm
#
# Purpose: Relays messages from unidentifed muted people in +q $~a channels
# with reduced-moderation in effect so OPs can see messages that would other-
# wise be blocked. This was made for channels being attacked by spammers. It
# allows unidentified users to still participate in the channel while blocking
# unidentified spammers.

# SPDX-FileCopyrightText: 2018-2023 Pragmatic Software <pragma78@gmail.com>
# SPDX-License-Identifier: MIT

package PBot::Plugin::RelayUnreg;
use parent 'PBot::Plugin::Base';

use PBot::Imports;

use Time::HiRes qw/gettimeofday/;

sub initialize($self, %conf) {
    $self->{pbot}->{event_dispatcher}->register_handler('irc.public', sub { $self->on_public(@_) });
    $self->{queue}    = [];
    $self->{notified} = {};
    $self->{pbot}->{event_queue}->enqueue(sub { $self->check_queue }, 1, 'RelayUnreg');
}

sub unload($self) {
    $self->{pbot}->{event_queue}->dequeue('RelayUnreg');
    $self->{pbot}->{event_dispatcher}->remove_handler('irc.public');
}

sub on_public($self, $event_type, $event) {
    my ($nick, $user, $host, $msg) = ($event->nick, $event->user, $event->host, $event->args);
    my $channel = lc $event->{to}[0];

    $msg =~ s/^\s+|\s+$//g;
    return 0 if not length $msg;

    # exit if channel hasn't muted $~a
    return 0 if not $self->{pbot}->{banlist}->{quietlist}->exists($channel, '$~a');

    # exit if channel isn't +z
    my $chanmodes = $self->{pbot}->{channels}->get_meta($channel, 'MODE');
    return 0 if not defined $chanmodes or not $chanmodes =~ m/z/;

    my $account  = $self->{pbot}->{messagehistory}->{database}->get_message_account($nick, $user, $host);
    my $nickserv = $self->{pbot}->{messagehistory}->{database}->get_current_nickserv_account($account);

    # debug
    # my $nickserv_text = $nickserv ? "is logged into $nickserv" : "is not logged in";
    # $self->{pbot}->{logger}->log("RelayUnreg: $nick!$user\@$host ($account) $nickserv_text.\n");

    # exit if user is identified
    return 0 if defined $nickserv && length $nickserv;

    my @filters = (
        # qr{list of filters},
        # qr{etc},
    );

    # don't notify/relay for spammers
    foreach my $filter (@filters) {
        if ($msg =~ m/$filter/i) {
            $self->{pbot}->{logger}->log("RelayUnreg: Ignoring filtered message.\n");
            return 0;
        }
    }

    # don't notify/relay for spammers
    return 0 if $self->{pbot}->{antispam}->is_spam($channel, $msg, 1);

    # don't notify/relay if user is voiced
    return 0 if $self->{pbot}->{nicklist}->get_meta($channel, $nick, '+v');

    unless (exists $self->{notified}->{lc $nick}) {
        $self->{pbot}->{logger}->log("RelayUnreg: Notifying $nick to register with NickServ in $channel.\n");
        $event->{conn}->privmsg($nick, "Please register your nick to speak in $channel. See https://freenode.net/kb/answer/registration and https://freenode.net/kb/answer/sasl");
        $self->{notified}->{lc $nick} = gettimeofday;
    }

    # don't relay unregistered chat unless enabled
    return 0 if not $self->{pbot}->{registry}->get_value($channel, 'relay_unregistered_chat');

    # add message to delay send queue to see if Sigyn kills them first (or if they leave)
    $self->{pbot}->{logger}->log("RelayUnreg: Queuing unregistered message for $channel: <$nick> $msg\n");
    push @{$self->{queue}}, [gettimeofday + 10, $channel, $nick, $user, $host, $msg];

    return 0;
}

sub check_queue($self) {
    my $now  = gettimeofday;

    if (@{$self->{queue}}) {
        my ($time, $channel, $nick, $user, $host, $msg) = @{$self->{queue}->[0]};

        if ($now >= $time) {
            # if nick is still present in channel, send the message
            if ($self->{pbot}->{nicklist}->is_present($channel, $nick)) {
                # ensure they're not banned (+z allows us to see +q/+b messages as normal ones)
                my $banned = $self->{pbot}->{banlist}->is_banned($nick, $user, $host, $channel);
                $self->{pbot}->{logger}
                  ->log("[RelayUnreg] $nick!$user\@$host $banned->{mode} as $banned->{mask} in $banned->{channel} by $banned->{owner}, not relaying unregistered message\n")
                  if $banned;
                $self->{pbot}->{conn}->privmsg($channel, "(unreg) <$nick> $msg") unless $banned;
            }
            shift @{$self->{queue}};
        }
    }

    # check notification timeouts here too, why not?
    if (keys %{$self->{notified}}) {
        my $timeout = gettimeofday - 60 * 15;
        foreach my $nick (keys %{$self->{notified}}) {
            if ($self->{notified}->{$nick} <= $timeout) { delete $self->{notified}->{$nick}; }
        }
    }
}

1;