2020-01-31 10:56:20 +01:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
|
|
|
package Plugins::TypoSub;
|
2020-02-09 04:48:05 +01:00
|
|
|
use parent 'Plugins::Plugin';
|
2020-01-31 10:56:20 +01:00
|
|
|
|
|
|
|
# purpose: Replaces "typos" with "corrections".
|
|
|
|
#
|
|
|
|
# Examples:
|
|
|
|
#
|
|
|
|
# <alice> i like dogs
|
|
|
|
# <bob> s/dogs/cats/
|
|
|
|
# <PBot> bob thinks alice meant to say: i like cats
|
|
|
|
#
|
|
|
|
# <alice> i like candy
|
|
|
|
# <alice> s/like/love/
|
|
|
|
# <PBot> alice meant to say: i love candy
|
|
|
|
|
2020-02-09 04:48:05 +01:00
|
|
|
use warnings; use strict;
|
2020-01-31 10:56:20 +01:00
|
|
|
use feature 'unicode_strings';
|
|
|
|
|
|
|
|
sub initialize {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self, %conf) = @_;
|
|
|
|
$self->{pbot}->{event_dispatcher}->register_handler('irc.public', sub { $self->on_public(@_) });
|
|
|
|
$self->{pbot}->{event_dispatcher}->register_handler('irc.caction', sub { $self->on_public(@_) });
|
2020-01-31 10:56:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sub unload {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self) = @_;
|
|
|
|
$self->{pbot}->{event_dispatcher}->remove_handler('irc.public');
|
|
|
|
$self->{pbot}->{event_dispatcher}->remove_handler('irc.caction');
|
2020-01-31 10:56:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sub on_public {
|
2020-02-15 23:38:32 +01:00
|
|
|
my ($self, $event_type, $event) = @_;
|
|
|
|
my ($nick, $user, $host, $msg) = ($event->{event}->nick, $event->{event}->user, $event->{event}->host, $event->{event}->args);
|
|
|
|
my $channel = lc $event->{event}->{to}[0];
|
|
|
|
|
|
|
|
($nick, $user, $host) = $self->{pbot}->{irchandlers}->normalize_hostmask($nick, $user, $host);
|
|
|
|
|
2020-04-09 20:42:17 +02:00
|
|
|
return 0 if $self->{pbot}->{ignorelist}->is_ignored($channel, "$nick!$user\@$host");
|
2020-02-15 23:38:32 +01:00
|
|
|
my $nosubs = $self->{pbot}->{registry}->get_value($channel, 'notyposub');
|
2020-03-10 04:19:44 +01:00
|
|
|
return 0 if defined $nosubs and $nosubs;
|
2020-02-15 23:38:32 +01:00
|
|
|
|
2020-07-08 23:48:30 +02:00
|
|
|
return 0 if $self->{pbot}->{users}->get_loggedin_user_metadata($channel, "$nick!$user\@$host", 'no-typosub');
|
|
|
|
|
2020-02-15 23:38:32 +01:00
|
|
|
return 0 if $channel !~ m/^#/;
|
|
|
|
return 0 if $event->{interpreted};
|
|
|
|
|
|
|
|
if ($msg =~ m/^\s*s([[:punct:]])/) {
|
|
|
|
my $separator = $1;
|
|
|
|
my $sep = quotemeta $separator;
|
|
|
|
if ($msg =~ m/^\s*s${sep}(.*?)(?<!\\)${sep}(.*?)(?<!\\)${sep}([g]*).*$/ or $msg =~ m/^\s*s${sep}(.*?)(?<!\\)${sep}(.*)$/) {
|
|
|
|
my ($regex, $replacement, $modifiers) = ($1, $2, $3);
|
|
|
|
eval {
|
2020-02-27 23:20:42 +01:00
|
|
|
use re::engine::RE2 -strict => 1;
|
2020-02-15 23:38:32 +01:00
|
|
|
my $rx = qr/$regex/;
|
|
|
|
|
|
|
|
my $messages = $self->{pbot}->{messagehistory}->{database}->get_recent_messages_from_channel($channel, 50, $self->{pbot}->{messagehistory}->{MSG_CHAT}, 'DESC');
|
|
|
|
|
|
|
|
my $botnick = $self->{pbot}->{registry}->get_value('irc', 'botnick');
|
|
|
|
|
|
|
|
my $bot_trigger = $self->{pbot}->{registry}->get_value($channel, 'trigger') // $self->{pbot}->{registry}->get_value('general', 'trigger');
|
|
|
|
|
|
|
|
my $ignore_commands = $self->{pbot}->{registry}->get_value($channel, 'typosub_ignore_commands') // $self->{pbot}->{registry}->get_value('typosub', 'ignore_commands')
|
|
|
|
// 1;
|
|
|
|
|
|
|
|
foreach my $message (@$messages) {
|
|
|
|
next if $ignore_commands and $message->{msg} =~ m/^(?:$bot_trigger|$botnick.?)/;
|
|
|
|
next if $message->{msg} =~ m/^\s*s[[:punct:]](.*?)[[:punct:]](.*?)[[:punct:]]?g?\s*$/;
|
|
|
|
|
|
|
|
if ($message->{msg} =~ /$rx/) {
|
|
|
|
my $hostmask = $self->{pbot}->{messagehistory}->{database}->find_message_account_by_id($message->{id});
|
|
|
|
my ($target) = $hostmask =~ m/([^!]+)/;
|
|
|
|
my $result;
|
|
|
|
if ($nick eq $target) { $result = "$nick meant to say: "; }
|
|
|
|
else { $result = "$nick thinks $target meant to say: "; }
|
|
|
|
my $text = $message->{msg};
|
|
|
|
if ($modifiers =~ m/g/) {
|
2020-02-22 16:19:43 +01:00
|
|
|
$text =~ s{$rx}
|
|
|
|
{
|
|
|
|
my @stuff = ($1, $2, $3, $4, $5, $6, $7, $8, $9);
|
|
|
|
my $t = $replacement;
|
|
|
|
my $i = 0;
|
2020-02-22 16:26:23 +01:00
|
|
|
defined $_ || last, ++$i, $t =~ s|[\$\\]$i|$_|g for @stuff;
|
2020-02-22 16:19:43 +01:00
|
|
|
$t
|
|
|
|
}gxe;
|
2020-02-27 23:20:42 +01:00
|
|
|
$text = substr($text, 0, 350);
|
2020-02-15 23:38:32 +01:00
|
|
|
} else {
|
2020-02-22 16:19:43 +01:00
|
|
|
$text =~ s{$rx}
|
|
|
|
{
|
|
|
|
my $i = 0;
|
|
|
|
my @stuff = ($1, $2, $3, $4, $5, $6, $7, $8, $9);
|
|
|
|
my $t = $replacement;
|
2020-02-22 16:26:23 +01:00
|
|
|
defined $_ || last, ++$i, $t =~ s|[\$\\]$i|$_|g for @stuff;
|
2020-02-22 16:19:43 +01:00
|
|
|
$t
|
|
|
|
}xe;
|
2020-02-15 23:38:32 +01:00
|
|
|
}
|
|
|
|
$event->{conn}->privmsg($channel, "$result$text");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if ($@) {
|
|
|
|
my $error = "Error in `s${separator}${regex}${separator}${replacement}${separator}${modifiers}`: $@";
|
|
|
|
$error =~ s/ at .*$//;
|
|
|
|
$event->{conn}->privmsg($nick, $error);
|
|
|
|
return 0;
|
2020-01-31 10:56:20 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-02-15 23:38:32 +01:00
|
|
|
return 0;
|
2020-01-31 10:56:20 +01:00
|
|
|
}
|
|
|
|
1;
|