mirror of
https://github.com/pragma-/pbot.git
synced 2024-11-29 15:29:32 +01:00
Fix some more Unicode encoding issues
This commit is contained in:
parent
a1dcabf553
commit
3553692b5a
@ -16,6 +16,8 @@ package PBot::AntiFlood;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use feature 'switch';
|
use feature 'switch';
|
||||||
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
||||||
|
|
||||||
@ -405,7 +407,7 @@ sub check_flood {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($self->whitelisted($channel, "$nick!$user\@$host", 'antiflood')) {
|
if ($self->whitelisted($channel, "$nick!$user\@$host", 'antiflood')) {
|
||||||
$self->{pbot}->{logger}->log("$nick!$user\@$host anti-flood whitelisted, disgregarding ban\n");
|
$self->{pbot}->{logger}->log("$nick!$user\@$host anti-flood whitelisted, skipping anti-flood checking\n");
|
||||||
next;
|
next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ package PBot::AntiSpam;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use feature 'switch';
|
use feature 'switch';
|
||||||
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
||||||
|
|
||||||
|
@ -15,6 +15,8 @@ package PBot::BanTracker;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Time::HiRes qw/gettimeofday/;
|
use Time::HiRes qw/gettimeofday/;
|
||||||
use Time::Duration;
|
use Time::Duration;
|
||||||
use Data::Dumper;
|
use Data::Dumper;
|
||||||
|
@ -12,6 +12,8 @@ package PBot::BlackList;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use feature 'switch';
|
use feature 'switch';
|
||||||
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ package PBot::BotAdminCommands;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use feature 'switch';
|
use feature 'switch';
|
||||||
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ package PBot::BotAdmins;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use PBot::DualIndexHashObject;
|
use PBot::DualIndexHashObject;
|
||||||
use PBot::BotAdminCommands;
|
use PBot::BotAdminCommands;
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ package PBot::ChanOpCommands;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
use Time::Duration;
|
use Time::Duration;
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ package PBot::ChanOps;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use PBot::ChanOpCommands;
|
use PBot::ChanOpCommands;
|
||||||
use Time::HiRes qw(gettimeofday);
|
use Time::HiRes qw(gettimeofday);
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ package PBot::Channels;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
use PBot::HashObject;
|
use PBot::HashObject;
|
||||||
|
|
||||||
|
@ -15,6 +15,8 @@ package PBot::Commands;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use base 'PBot::Registerable';
|
use base 'PBot::Registerable';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
@ -13,6 +13,8 @@ package PBot::DualIndexHashObject;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Text::Levenshtein qw(fastdistance);
|
use Text::Levenshtein qw(fastdistance);
|
||||||
use JSON;
|
use JSON;
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
@ -7,6 +7,8 @@ package PBot::EventDispatcher;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use IO::Select;
|
use IO::Select;
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ package PBot::FactoidCommands;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
use Time::Duration;
|
use Time::Duration;
|
||||||
use Time::HiRes qw(gettimeofday);
|
use Time::HiRes qw(gettimeofday);
|
||||||
|
@ -12,11 +12,14 @@ package PBot::FactoidModuleLauncher;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use POSIX qw(WNOHANG);
|
use POSIX qw(WNOHANG);
|
||||||
use Carp ();
|
use Carp ();
|
||||||
use Text::Balanced qw(extract_delimited);
|
use Text::Balanced qw(extract_delimited);
|
||||||
use JSON;
|
use JSON;
|
||||||
use IPC::Run qw/run timeout/;
|
use IPC::Run qw/run timeout/;
|
||||||
|
use Encode;
|
||||||
|
|
||||||
# automatically reap children processes in background
|
# automatically reap children processes in background
|
||||||
$SIG{CHLD} = sub { while (waitpid(-1, WNOHANG) > 0) {} };
|
$SIG{CHLD} = sub { while (waitpid(-1, WNOHANG) > 0) {} };
|
||||||
@ -110,11 +113,17 @@ sub execute_module {
|
|||||||
}
|
}
|
||||||
|
|
||||||
my ($exitval, $stdout, $stderr) = eval {
|
my ($exitval, $stdout, $stderr) = eval {
|
||||||
my @cmdline = ("./$module", $self->{pbot}->{interpreter}->split_line($stuff->{arguments}));
|
my $args = $stuff->{arguments};
|
||||||
|
if (not $stuff->{args_utf8}) {
|
||||||
|
$args = encode('UTF-8', $args);
|
||||||
|
}
|
||||||
|
my @cmdline = ("./$module", $self->{pbot}->{interpreter}->split_line($args));
|
||||||
my $timeout = $self->{pbot}->{registry}->get_value('general', 'module_timeout') // 30;
|
my $timeout = $self->{pbot}->{registry}->get_value('general', 'module_timeout') // 30;
|
||||||
my ($stdin, $stdout, $stderr);
|
my ($stdin, $stdout, $stderr);
|
||||||
run \@cmdline, \$stdin, \$stdout, \$stderr, timeout($timeout);
|
run \@cmdline, \$stdin, \$stdout, \$stderr, timeout($timeout);
|
||||||
my $exitval = $? >> 8;
|
my $exitval = $? >> 8;
|
||||||
|
utf8::decode($stdout);
|
||||||
|
utf8::decode($stderr);
|
||||||
return ($exitval, $stdout, $stderr);
|
return ($exitval, $stdout, $stderr);
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -139,8 +148,6 @@ sub execute_module {
|
|||||||
$stuff->{result} = $stdout;
|
$stuff->{result} = $stdout;
|
||||||
chomp $stuff->{result};
|
chomp $stuff->{result};
|
||||||
|
|
||||||
utf8::decode($stuff->{result});
|
|
||||||
|
|
||||||
my $json = encode_json $stuff;
|
my $json = encode_json $stuff;
|
||||||
print $writer "$json\n";
|
print $writer "$json\n";
|
||||||
exit 0;
|
exit 0;
|
||||||
|
@ -12,6 +12,8 @@ package PBot::Factoids;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use feature 'switch';
|
use feature 'switch';
|
||||||
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
||||||
|
|
||||||
@ -711,6 +713,7 @@ sub execute_code_factoid_using_vm {
|
|||||||
$stuff->{root_channel} = $stuff->{channel};
|
$stuff->{root_channel} = $stuff->{channel};
|
||||||
$stuff->{keyword} = 'compiler';
|
$stuff->{keyword} = 'compiler';
|
||||||
$stuff->{arguments} = $json;
|
$stuff->{arguments} = $json;
|
||||||
|
$stuff->{args_utf8} = 1;
|
||||||
|
|
||||||
$self->{pbot}->{factoids}->{factoidmodulelauncher}->execute_module($stuff);
|
$self->{pbot}->{factoids}->{factoidmodulelauncher}->execute_module($stuff);
|
||||||
return "";
|
return "";
|
||||||
|
@ -13,6 +13,8 @@ package PBot::HashObject;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Text::Levenshtein qw(fastdistance);
|
use Text::Levenshtein qw(fastdistance);
|
||||||
use Carp ();
|
use Carp ();
|
||||||
use JSON;
|
use JSON;
|
||||||
|
@ -23,6 +23,7 @@ use PBot::IRC::EventQueue; # pragma_ 2011/01/21
|
|||||||
use IO::Select;
|
use IO::Select;
|
||||||
use Carp;
|
use Carp;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
# grab the drop-in replacement for time() from Time::HiRes, if it's available
|
# grab the drop-in replacement for time() from Time::HiRes, if it's available
|
||||||
BEGIN {
|
BEGIN {
|
||||||
|
@ -15,6 +15,8 @@
|
|||||||
|
|
||||||
package PBot::IRC::Connection; # pragma_ 2011/21/01
|
package PBot::IRC::Connection; # pragma_ 2011/21/01
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use PBot::IRC::Event; # pragma_ 2011/21/01
|
use PBot::IRC::Event; # pragma_ 2011/21/01
|
||||||
use PBot::IRC::DCC; # pragma_ 2011/21/01
|
use PBot::IRC::DCC; # pragma_ 2011/21/01
|
||||||
use IO::Socket;
|
use IO::Socket;
|
||||||
|
@ -17,7 +17,7 @@ package PBot::IRC::DCC; # pragma_ 2011/21/01
|
|||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
# --- #perl was here! ---
|
# --- #perl was here! ---
|
||||||
#
|
#
|
||||||
|
@ -24,6 +24,8 @@
|
|||||||
|
|
||||||
package PBot::IRC::Event; # pragma_ 2011/21/01
|
package PBot::IRC::Event; # pragma_ 2011/21/01
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
our %_names;
|
our %_names;
|
||||||
|
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
package PBot::IRC::EventQueue; # pragma_ 2011/21/01
|
package PBot::IRC::EventQueue; # pragma_ 2011/21/01
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use PBot::IRC::EventQueue::Entry; # pragma_ 2011/21/01
|
use PBot::IRC::EventQueue::Entry; # pragma_ 2011/21/01
|
||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
@ -2,6 +2,8 @@ package PBot::IRC::EventQueue::Entry; # pragma_ 2011/21/01
|
|||||||
|
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
my $id = 0;
|
my $id = 0;
|
||||||
|
|
||||||
sub new {
|
sub new {
|
||||||
|
@ -12,6 +12,8 @@ package PBot::IRCHandlers;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp();
|
use Carp();
|
||||||
use Time::HiRes qw(gettimeofday);
|
use Time::HiRes qw(gettimeofday);
|
||||||
use Data::Dumper;
|
use Data::Dumper;
|
||||||
|
@ -12,6 +12,8 @@ package PBot::IgnoreList;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use PBot::IgnoreListCommands;
|
use PBot::IgnoreListCommands;
|
||||||
use Time::HiRes qw(gettimeofday);
|
use Time::HiRes qw(gettimeofday);
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ package PBot::IgnoreListCommands;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Time::HiRes qw(gettimeofday);
|
use Time::HiRes qw(gettimeofday);
|
||||||
use Time::Duration;
|
use Time::Duration;
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
@ -12,6 +12,8 @@ package PBot::Interpreter;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use base 'PBot::Registerable';
|
use base 'PBot::Registerable';
|
||||||
|
|
||||||
use Time::HiRes qw/gettimeofday/;
|
use Time::HiRes qw/gettimeofday/;
|
||||||
@ -329,6 +331,7 @@ sub interpret {
|
|||||||
# set arguments as a plain string
|
# set arguments as a plain string
|
||||||
$stuff->{arguments} = $arguments;
|
$stuff->{arguments} = $arguments;
|
||||||
$stuff->{original_arguments} = $arguments;
|
$stuff->{original_arguments} = $arguments;
|
||||||
|
delete $stuff->{args_utf8};
|
||||||
|
|
||||||
# set arguments as an array
|
# set arguments as an array
|
||||||
$stuff->{arglist} = $self->make_args($arguments);
|
$stuff->{arglist} = $self->make_args($arguments);
|
||||||
@ -340,6 +343,7 @@ sub interpret {
|
|||||||
last if defined $result;
|
last if defined $result;
|
||||||
# reset any manipulated arguments
|
# reset any manipulated arguments
|
||||||
$stuff->{arguments} = $stuff->{original_arguments};
|
$stuff->{arguments} = $stuff->{original_arguments};
|
||||||
|
delete $stuff->{args_utf8};
|
||||||
}
|
}
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
@ -13,6 +13,8 @@ package PBot::LagChecker;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use feature 'switch';
|
use feature 'switch';
|
||||||
|
|
||||||
use Time::HiRes qw(gettimeofday tv_interval);
|
use Time::HiRes qw(gettimeofday tv_interval);
|
||||||
|
@ -7,6 +7,8 @@ package PBot::Logger;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
sub new {
|
sub new {
|
||||||
|
@ -16,6 +16,8 @@ package PBot::MessageHistory;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Getopt::Long qw(GetOptionsFromString);
|
use Getopt::Long qw(GetOptionsFromString);
|
||||||
use Time::HiRes qw(gettimeofday tv_interval);
|
use Time::HiRes qw(gettimeofday tv_interval);
|
||||||
use Time::Duration;
|
use Time::Duration;
|
||||||
|
@ -12,6 +12,8 @@ package PBot::MessageHistory_SQLite;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use DBI;
|
use DBI;
|
||||||
use Carp qw(shortmess);
|
use Carp qw(shortmess);
|
||||||
use Time::HiRes qw(gettimeofday);
|
use Time::HiRes qw(gettimeofday);
|
||||||
|
@ -14,6 +14,8 @@ package PBot::NickList;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Text::Levenshtein qw/fastdistance/;
|
use Text::Levenshtein qw/fastdistance/;
|
||||||
use Data::Dumper;
|
use Data::Dumper;
|
||||||
$Data::Dumper::Sortkeys = 1;
|
$Data::Dumper::Sortkeys = 1;
|
||||||
|
@ -12,6 +12,8 @@ package PBot::PBot;
|
|||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
# unbuffer stdout
|
# unbuffer stdout
|
||||||
STDOUT->autoflush(1);
|
STDOUT->autoflush(1);
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ package PBot::Plugins;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use File::Basename;
|
use File::Basename;
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
|
@ -7,6 +7,8 @@ package PBot::Plugins::ActionTrigger;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use feature 'switch';
|
use feature 'switch';
|
||||||
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ package PBot::Plugins::AntiAway;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
sub new {
|
sub new {
|
||||||
|
@ -12,6 +12,8 @@ package PBot::Plugins::AntiKickAutoRejoin;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
use Time::HiRes qw/gettimeofday/;
|
use Time::HiRes qw/gettimeofday/;
|
||||||
use Time::Duration;
|
use Time::Duration;
|
||||||
|
@ -13,6 +13,8 @@ package PBot::Plugins::AntiNickSpam;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
use Time::Duration qw/duration/;
|
use Time::Duration qw/duration/;
|
||||||
use Time::HiRes qw/gettimeofday/;
|
use Time::HiRes qw/gettimeofday/;
|
||||||
|
@ -10,6 +10,8 @@ use strict;
|
|||||||
use feature 'switch';
|
use feature 'switch';
|
||||||
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
use String::LCSS qw/lcss/;
|
use String::LCSS qw/lcss/;
|
||||||
|
@ -13,6 +13,8 @@ package PBot::Plugins::AntiTwitter;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
use Time::HiRes qw/gettimeofday/;
|
use Time::HiRes qw/gettimeofday/;
|
||||||
use Time::Duration qw/duration/;
|
use Time::Duration qw/duration/;
|
||||||
|
@ -12,6 +12,8 @@ package PBot::Plugins::AutoRejoin;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
use Time::HiRes qw/gettimeofday/;
|
use Time::HiRes qw/gettimeofday/;
|
||||||
use Time::Duration;
|
use Time::Duration;
|
||||||
|
@ -10,6 +10,8 @@ use strict;
|
|||||||
use feature 'switch';
|
use feature 'switch';
|
||||||
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
use Time::Duration qw/concise duration/;
|
use Time::Duration qw/concise duration/;
|
||||||
use Data::Dumper;
|
use Data::Dumper;
|
||||||
|
@ -10,6 +10,8 @@ use strict;
|
|||||||
use feature 'switch';
|
use feature 'switch';
|
||||||
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
use Time::Duration qw/concise duration/;
|
use Time::Duration qw/concise duration/;
|
||||||
use Data::Dumper;
|
use Data::Dumper;
|
||||||
|
@ -10,6 +10,8 @@ use strict;
|
|||||||
use feature 'switch';
|
use feature 'switch';
|
||||||
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
use DBI;
|
use DBI;
|
||||||
use Time::Duration qw/duration/;
|
use Time::Duration qw/duration/;
|
||||||
|
@ -12,6 +12,8 @@ package PBot::Plugins::MagicCommand;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
sub new {
|
sub new {
|
||||||
|
@ -9,6 +9,8 @@ package PBot::Plugins::ParseDate;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
use Time::Duration qw/duration/;
|
use Time::Duration qw/duration/;
|
||||||
|
@ -12,6 +12,8 @@ package PBot::Plugins::Quotegrabs;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use HTML::Entities;
|
use HTML::Entities;
|
||||||
use Time::Duration;
|
use Time::Duration;
|
||||||
use Time::HiRes qw(gettimeofday);
|
use Time::HiRes qw(gettimeofday);
|
||||||
|
@ -12,6 +12,8 @@ package PBot::Plugins::Quotegrabs::Quotegrabs_Hashtable;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use HTML::Entities;
|
use HTML::Entities;
|
||||||
use Time::Duration;
|
use Time::Duration;
|
||||||
use Time::HiRes qw(gettimeofday);
|
use Time::HiRes qw(gettimeofday);
|
||||||
|
@ -12,6 +12,8 @@ package PBot::Plugins::Quotegrabs::Quotegrabs_SQLite;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use DBI;
|
use DBI;
|
||||||
use Carp qw(shortmess);
|
use Carp qw(shortmess);
|
||||||
|
|
||||||
|
@ -4,6 +4,8 @@ package PBot::Plugins::RelayUnreg;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
use Time::HiRes qw/gettimeofday/;
|
use Time::HiRes qw/gettimeofday/;
|
||||||
|
@ -7,6 +7,8 @@ package PBot::Plugins::RemindMe;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use feature 'switch';
|
use feature 'switch';
|
||||||
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
||||||
|
|
||||||
|
@ -13,6 +13,8 @@ use lib "$FindBin::RealBin/../..";
|
|||||||
use feature 'switch';
|
use feature 'switch';
|
||||||
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
use JSON;
|
use JSON;
|
||||||
|
|
||||||
@ -1532,7 +1534,7 @@ sub normalize_question {
|
|||||||
sub normalize_text {
|
sub normalize_text {
|
||||||
my ($self, $text) = @_;
|
my ($self, $text) = @_;
|
||||||
|
|
||||||
$text = unidecode decode('utf8', $text);
|
$text = unidecode $text;
|
||||||
|
|
||||||
$text =~ s/^\s+|\s+$//g;
|
$text =~ s/^\s+|\s+$//g;
|
||||||
$text =~ s/\s+/ /g;
|
$text =~ s/\s+/ /g;
|
||||||
|
@ -9,6 +9,8 @@ package PBot::Plugins::Spinach::Rank;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use FindBin;
|
use FindBin;
|
||||||
use lib "$FindBin::RealBin/../../..";
|
use lib "$FindBin::RealBin/../../..";
|
||||||
|
|
||||||
|
@ -9,6 +9,8 @@ package PBot::Plugins::Spinach::Stats;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use DBI;
|
use DBI;
|
||||||
use Carp qw(shortmess);
|
use Carp qw(shortmess);
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ package PBot::Plugins::UrlTitles;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
sub new {
|
sub new {
|
||||||
|
@ -7,6 +7,8 @@ package PBot::Plugins::_Example;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
sub new {
|
sub new {
|
||||||
|
@ -13,6 +13,8 @@ package PBot::Refresher;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Module::Refresh;
|
use Module::Refresh;
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ package PBot::Registerable;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
sub new {
|
sub new {
|
||||||
|
@ -13,6 +13,8 @@ package PBot::Registry;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Time::HiRes qw(gettimeofday);
|
use Time::HiRes qw(gettimeofday);
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ package PBot::RegistryCommands;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
sub new {
|
sub new {
|
||||||
|
@ -13,6 +13,8 @@ package PBot::SQLiteLogger;
|
|||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp;
|
use Carp;
|
||||||
use Time::HiRes qw(gettimeofday);
|
use Time::HiRes qw(gettimeofday);
|
||||||
|
|
||||||
|
@ -12,6 +12,8 @@ package PBot::SQLiteLoggerLayer;
|
|||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
sub PUSHED
|
sub PUSHED
|
||||||
{
|
{
|
||||||
my ($class, $mode, $fh) = @_;
|
my ($class, $mode, $fh) = @_;
|
||||||
|
@ -7,6 +7,8 @@ package PBot::SelectHandler;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use IO::Select;
|
use IO::Select;
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
|
@ -7,6 +7,8 @@ package PBot::StdinReader;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use POSIX qw(tcgetpgrp getpgrp); # to check whether process is in background or foreground
|
use POSIX qw(tcgetpgrp getpgrp); # to check whether process is in background or foreground
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
|
@ -14,6 +14,8 @@ package PBot::Timer;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Carp ();
|
use Carp ();
|
||||||
|
|
||||||
our $min_timeout = 1;
|
our $min_timeout = 1;
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
package PBot::Utils::Indefinite;
|
package PBot::Utils::Indefinite;
|
||||||
use 5.010; use warnings;
|
use 5.010; use warnings;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
require Exporter;
|
require Exporter;
|
||||||
our @ISA = qw/Exporter/;
|
our @ISA = qw/Exporter/;
|
||||||
our @EXPORT = qw/prepend_indefinite_article select_indefinite_article/;
|
our @EXPORT = qw/prepend_indefinite_article select_indefinite_article/;
|
||||||
|
@ -7,6 +7,8 @@
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
package PBot::Utils::ParseDate;
|
package PBot::Utils::ParseDate;
|
||||||
|
|
||||||
use DateTime;
|
use DateTime;
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
package PBot::Utils::SafeFilename;
|
package PBot::Utils::SafeFilename;
|
||||||
use 5.010; use warnings;
|
use 5.010; use warnings;
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
require Exporter;
|
require Exporter;
|
||||||
our @ISA = qw/Exporter/;
|
our @ISA = qw/Exporter/;
|
||||||
|
@ -3,6 +3,8 @@ package PBot::Utils::ValidateString;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
require Exporter;
|
require Exporter;
|
||||||
our @ISA = qw/Exporter/;
|
our @ISA = qw/Exporter/;
|
||||||
our @EXPORT = qw/validate_string/;
|
our @EXPORT = qw/validate_string/;
|
||||||
|
@ -14,6 +14,8 @@ package PBot::VERSION;
|
|||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
BEGIN {
|
BEGIN {
|
||||||
use Exporter;
|
use Exporter;
|
||||||
our @ISA = 'Exporter';
|
our @ISA = 'Exporter';
|
||||||
|
@ -12,6 +12,8 @@ package PBot::WebPaste;
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
use Time::HiRes qw/gettimeofday/;
|
use Time::HiRes qw/gettimeofday/;
|
||||||
use Time::Duration;
|
use Time::Duration;
|
||||||
use LWP::UserAgent;
|
use LWP::UserAgent;
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
# 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/.
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
use warnings;
|
no warnings;
|
||||||
use strict;
|
use strict;
|
||||||
|
|
||||||
use IPC::Open2;
|
use IPC::Open2;
|
||||||
@ -84,6 +84,7 @@ sub execute {
|
|||||||
|
|
||||||
next if not length $line;
|
next if not length $line;
|
||||||
<$out> and next if $line =~ m/^\(gdb\) No line \d+ in/;
|
<$out> and next if $line =~ m/^\(gdb\) No line \d+ in/;
|
||||||
|
next if $line =~ m/No default breakpoint address/;
|
||||||
next if $line =~ m/^\(gdb\) No symbol table/;
|
next if $line =~ m/^\(gdb\) No symbol table/;
|
||||||
next if $line =~ m/^\[Detaching after/;
|
next if $line =~ m/^\[Detaching after/;
|
||||||
next if $line =~ m/^\[New Thread/;
|
next if $line =~ m/^\[New Thread/;
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
use warnings;
|
use warnings;
|
||||||
use strict;
|
use strict;
|
||||||
use feature "switch";
|
use feature "switch";
|
||||||
|
use feature 'unicode_strings';
|
||||||
|
|
||||||
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
no if $] >= 5.018, warnings => "experimental::smartmatch";
|
||||||
|
|
||||||
@ -15,6 +16,7 @@ use Time::HiRes qw/gettimeofday/;
|
|||||||
use Text::Balanced qw/extract_delimited/;
|
use Text::Balanced qw/extract_delimited/;
|
||||||
use JSON;
|
use JSON;
|
||||||
use Getopt::Long qw/GetOptionsFromArray :config pass_through no_ignore_case no_auto_abbrev/;
|
use Getopt::Long qw/GetOptionsFromArray :config pass_through no_ignore_case no_auto_abbrev/;
|
||||||
|
use Encode;
|
||||||
|
|
||||||
my $EXECUTE_PORT = '3333';
|
my $EXECUTE_PORT = '3333';
|
||||||
|
|
||||||
@ -278,7 +280,7 @@ sub paste_ixio {
|
|||||||
return "error pasting: " . $response->status_line;
|
return "error pasting: " . $response->status_line;
|
||||||
}
|
}
|
||||||
|
|
||||||
my $result = $response->content;
|
my $result = $response->decoded_content;
|
||||||
$result =~ s/^\s+//;
|
$result =~ s/^\s+//;
|
||||||
$result =~ s/\s+$//;
|
$result =~ s/\s+$//;
|
||||||
return $result;
|
return $result;
|
||||||
@ -371,7 +373,7 @@ sub execute {
|
|||||||
$compile_in->{'persist-key'} = $self->{'persist-key'} if length $self->{'persist-key'};
|
$compile_in->{'persist-key'} = $self->{'persist-key'} if length $self->{'persist-key'};
|
||||||
|
|
||||||
my $compile_json = encode_json($compile_in);
|
my $compile_json = encode_json($compile_in);
|
||||||
$compile_json .= "\n:end:\n";
|
$compile_json .= encode('UTF-8', "\n:end:\n");
|
||||||
|
|
||||||
my $length = length $compile_json;
|
my $length = length $compile_json;
|
||||||
my $sent = 0;
|
my $sent = 0;
|
||||||
@ -388,7 +390,7 @@ sub execute {
|
|||||||
#print FILE "Sending chunk [$chunk]\n";
|
#print FILE "Sending chunk [$chunk]\n";
|
||||||
$chunks_sent += length $chunk;
|
$chunks_sent += length $chunk;
|
||||||
|
|
||||||
my $ret = syswrite($compiler, "$chunk\n");
|
my $ret = syswrite($compiler, $chunk);
|
||||||
|
|
||||||
if (not defined $ret) {
|
if (not defined $ret) {
|
||||||
print FILE "Error sending: $!\n";
|
print FILE "Error sending: $!\n";
|
||||||
@ -412,7 +414,8 @@ sub execute {
|
|||||||
my $got_result = 0;
|
my $got_result = 0;
|
||||||
|
|
||||||
while(my $line = <$compiler_output>) {
|
while(my $line = <$compiler_output>) {
|
||||||
print STDERR "Read [$line]\n";
|
utf8::decode($line);
|
||||||
|
print STDERR "Read from vm [$line]\n";
|
||||||
|
|
||||||
$line =~ s/[\r\n]+$//;
|
$line =~ s/[\r\n]+$//;
|
||||||
last if $line =~ /^result:end$/;
|
last if $line =~ /^result:end$/;
|
||||||
|
Loading…
Reference in New Issue
Block a user