2010-03-22 08:33:44 +01:00
|
|
|
# File: FactoidModuleLauncher.pm
|
2010-03-24 07:47:40 +01:00
|
|
|
# Author: pragma_
|
2010-03-22 08:33:44 +01:00
|
|
|
#
|
|
|
|
# Purpose: Handles forking and execution of module processes
|
|
|
|
|
2017-03-05 22:33:31 +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/.
|
|
|
|
|
2010-03-22 08:33:44 +01:00
|
|
|
package PBot::FactoidModuleLauncher;
|
|
|
|
|
|
|
|
use warnings;
|
|
|
|
use strict;
|
|
|
|
|
2019-07-11 03:40:53 +02:00
|
|
|
use feature 'unicode_strings';
|
|
|
|
|
2019-06-10 20:53:04 +02:00
|
|
|
use POSIX qw(WNOHANG);
|
2010-03-22 08:33:44 +01:00
|
|
|
use Carp ();
|
2010-05-14 00:12:04 +02:00
|
|
|
use Text::Balanced qw(extract_delimited);
|
2017-10-11 02:19:02 +02:00
|
|
|
use JSON;
|
2019-07-06 08:00:53 +02:00
|
|
|
use IPC::Run qw/run timeout/;
|
2019-07-11 03:40:53 +02:00
|
|
|
use Encode;
|
2010-03-22 08:33:44 +01:00
|
|
|
|
|
|
|
# automatically reap children processes in background
|
2019-05-28 18:19:42 +02:00
|
|
|
$SIG{CHLD} = sub { while (waitpid(-1, WNOHANG) > 0) {} };
|
2010-03-22 08:33:44 +01:00
|
|
|
|
|
|
|
sub new {
|
2019-05-28 18:19:42 +02:00
|
|
|
if (ref($_[1]) eq 'HASH') {
|
2010-03-22 08:33:44 +01:00
|
|
|
Carp::croak("Options to Commands should be key/value pairs, not hash reference");
|
|
|
|
}
|
|
|
|
|
|
|
|
my ($class, %conf) = @_;
|
|
|
|
|
|
|
|
my $self = bless {}, $class;
|
|
|
|
$self->initialize(%conf);
|
|
|
|
return $self;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub initialize {
|
|
|
|
my ($self, %conf) = @_;
|
|
|
|
|
|
|
|
my $pbot = delete $conf{pbot};
|
2019-05-28 18:19:42 +02:00
|
|
|
if (not defined $pbot) {
|
2010-03-22 08:33:44 +01:00
|
|
|
Carp::croak("Missing pbot reference to PBot::FactoidModuleLauncher");
|
|
|
|
}
|
|
|
|
|
|
|
|
$self->{pbot} = $pbot;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub execute_module {
|
2017-11-16 18:23:58 +01:00
|
|
|
my ($self, $stuff) = @_;
|
2010-03-22 08:33:44 +01:00
|
|
|
my $text;
|
|
|
|
|
2017-11-21 01:10:48 +01:00
|
|
|
if ($self->{pbot}->{registry}->get_value('general', 'debugcontext')) {
|
|
|
|
use Data::Dumper;
|
|
|
|
$Data::Dumper::Sortkeys = 1;
|
|
|
|
$self->{pbot}->{logger}->log("FML::execute_module\n");
|
|
|
|
$self->{pbot}->{logger}->log(Dumper $stuff);
|
|
|
|
}
|
|
|
|
|
2017-11-16 18:23:58 +01:00
|
|
|
$stuff->{arguments} = "" if not defined $stuff->{arguments};
|
2010-03-22 08:33:44 +01:00
|
|
|
|
2019-06-10 01:33:27 +02:00
|
|
|
my @factoids = $self->{pbot}->{factoids}->find_factoid($stuff->{from}, $stuff->{keyword}, exact_channel => 2, exact_trigger => 2);
|
2015-07-22 00:07:56 +02:00
|
|
|
|
2019-05-28 18:19:42 +02:00
|
|
|
if (not @factoids or not $factoids[0]) {
|
2017-11-16 18:23:58 +01:00
|
|
|
$stuff->{checkflood} = 1;
|
|
|
|
$self->{pbot}->{interpreter}->handle_result($stuff, "/msg $stuff->{nick} Failed to find module for '$stuff->{keyword}' in channel $stuff->{from}\n");
|
2014-03-14 11:05:11 +01:00
|
|
|
return;
|
2010-06-20 08:16:48 +02:00
|
|
|
}
|
2010-03-22 08:33:44 +01:00
|
|
|
|
2015-07-22 00:07:56 +02:00
|
|
|
my ($channel, $trigger) = ($factoids[0]->[0], $factoids[0]->[1]);
|
|
|
|
|
2017-11-16 18:23:58 +01:00
|
|
|
$stuff->{channel} = $channel;
|
|
|
|
$stuff->{keyword} = $trigger;
|
|
|
|
$stuff->{trigger} = $trigger;
|
2017-10-11 02:19:02 +02:00
|
|
|
|
2020-01-15 03:10:53 +01:00
|
|
|
my $module = $self->{pbot}->{factoids}->{factoids}->{hash}->{$channel}->{$trigger}->{action};
|
2014-05-17 22:08:19 +02:00
|
|
|
my $module_dir = $self->{pbot}->{registry}->get_value('general', 'module_dir');
|
2010-05-14 01:28:38 +02:00
|
|
|
|
2017-11-16 18:23:58 +01:00
|
|
|
$self->{pbot}->{logger}->log("(" . (defined $stuff->{from} ? $stuff->{from} : "(undef)") . "): $stuff->{nick}!$stuff->{user}\@$stuff->{host}: Executing module [$stuff->{command}] $module $stuff->{arguments}\n");
|
2010-03-22 08:33:44 +01:00
|
|
|
|
2017-11-16 18:23:58 +01:00
|
|
|
$stuff->{arguments} = $self->{pbot}->{factoids}->expand_special_vars($stuff->{from}, $stuff->{nick}, $stuff->{root_keyword}, $stuff->{arguments});
|
2010-05-14 00:12:04 +02:00
|
|
|
|
2014-03-14 11:05:11 +01:00
|
|
|
pipe(my $reader, my $writer);
|
2010-03-22 08:33:44 +01:00
|
|
|
my $pid = fork;
|
2014-03-14 11:05:11 +01:00
|
|
|
|
2019-05-28 18:19:42 +02:00
|
|
|
if (not defined $pid) {
|
2014-05-18 22:09:05 +02:00
|
|
|
$self->{pbot}->{logger}->log("Could not fork module: $!\n");
|
2014-03-14 11:05:11 +01:00
|
|
|
close $reader;
|
|
|
|
close $writer;
|
2017-11-16 18:23:58 +01:00
|
|
|
$stuff->{checkflood} = 1;
|
|
|
|
$self->{pbot}->{interpreter}->handle_result($stuff, "/me groans loudly.\n");
|
2019-06-26 18:34:19 +02:00
|
|
|
return;
|
2010-03-22 08:33:44 +01:00
|
|
|
}
|
|
|
|
|
2014-03-14 11:05:11 +01:00
|
|
|
# FIXME -- add check to ensure $module exists
|
2010-03-22 08:33:44 +01:00
|
|
|
|
2019-05-28 18:19:42 +02:00
|
|
|
if ($pid == 0) { # start child block
|
2014-03-14 11:05:11 +01:00
|
|
|
close $reader;
|
2019-06-26 18:34:19 +02:00
|
|
|
|
2011-01-22 09:35:31 +01:00
|
|
|
# don't quit the IRC client when the child dies
|
2010-05-27 11:19:11 +02:00
|
|
|
no warnings;
|
2011-01-22 09:35:31 +01:00
|
|
|
*PBot::IRC::Connection::DESTROY = sub { return; };
|
2010-05-27 11:19:11 +02:00
|
|
|
use warnings;
|
|
|
|
|
2019-05-28 18:19:42 +02:00
|
|
|
if (not chdir $module_dir) {
|
2014-05-18 22:09:05 +02:00
|
|
|
$self->{pbot}->{logger}->log("Could not chdir to '$module_dir': $!\n");
|
2010-05-27 11:29:17 +02:00
|
|
|
Carp::croak("Could not chdir to '$module_dir': $!");
|
|
|
|
}
|
|
|
|
|
2020-01-15 03:10:53 +01:00
|
|
|
if (exists $self->{pbot}->{factoids}->{factoids}->{hash}->{$channel}->{$trigger}->{workdir}) {
|
|
|
|
chdir $self->{pbot}->{factoids}->{factoids}->{hash}->{$channel}->{$trigger}->{workdir};
|
2015-01-28 08:49:30 +01:00
|
|
|
}
|
2014-02-24 01:58:00 +01:00
|
|
|
|
2019-07-06 08:00:53 +02:00
|
|
|
my ($exitval, $stdout, $stderr) = eval {
|
2019-07-11 03:40:53 +02:00
|
|
|
my $args = $stuff->{arguments};
|
|
|
|
if (not $stuff->{args_utf8}) {
|
|
|
|
$args = encode('UTF-8', $args);
|
|
|
|
}
|
|
|
|
my @cmdline = ("./$module", $self->{pbot}->{interpreter}->split_line($args));
|
2019-07-06 08:10:57 +02:00
|
|
|
my $timeout = $self->{pbot}->{registry}->get_value('general', 'module_timeout') // 30;
|
2019-07-06 08:00:53 +02:00
|
|
|
my ($stdin, $stdout, $stderr);
|
2019-07-06 08:10:57 +02:00
|
|
|
run \@cmdline, \$stdin, \$stdout, \$stderr, timeout($timeout);
|
2019-07-06 08:00:53 +02:00
|
|
|
my $exitval = $? >> 8;
|
2019-07-11 03:40:53 +02:00
|
|
|
utf8::decode($stdout);
|
|
|
|
utf8::decode($stderr);
|
2019-07-06 08:00:53 +02:00
|
|
|
return ($exitval, $stdout, $stderr);
|
|
|
|
};
|
|
|
|
|
|
|
|
if ($@) {
|
|
|
|
my $error = $@;
|
|
|
|
if ($error =~ m/timeout on timer/) {
|
|
|
|
($exitval, $stdout, $stderr) = (-1, "$stuff->{trigger}: timed-out", '');
|
|
|
|
} else {
|
|
|
|
($exitval, $stdout, $stderr) = (-1, '', $error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (length $stderr) {
|
|
|
|
if (open(my $fh, '>>', "$module-stderr")) {
|
|
|
|
print $fh $stderr;
|
|
|
|
close $fh;
|
|
|
|
} else {
|
|
|
|
$self->{pbot}->{logger}->log("Failed to open $module-stderr: $!\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$stuff->{result} = $stdout;
|
2017-11-16 18:23:58 +01:00
|
|
|
chomp $stuff->{result};
|
2010-03-22 08:33:44 +01:00
|
|
|
|
2017-11-16 18:23:58 +01:00
|
|
|
my $json = encode_json $stuff;
|
2017-10-11 02:19:02 +02:00
|
|
|
print $writer "$json\n";
|
2014-03-14 11:05:11 +01:00
|
|
|
exit 0;
|
2010-03-22 08:33:44 +01:00
|
|
|
} # end child block
|
2010-03-23 04:09:03 +01:00
|
|
|
else {
|
2014-03-14 11:05:11 +01:00
|
|
|
close $writer;
|
|
|
|
$self->{pbot}->{select_handler}->add_reader($reader, sub { $self->module_pipe_reader(@_) });
|
|
|
|
return "";
|
2010-03-23 04:09:03 +01:00
|
|
|
}
|
2014-03-14 11:05:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
sub module_pipe_reader {
|
|
|
|
my ($self, $buf) = @_;
|
2017-10-11 02:19:02 +02:00
|
|
|
|
2017-11-21 01:10:48 +01:00
|
|
|
my $stuff = decode_json $buf or do {
|
|
|
|
$self->{pbot}->{logger}->log("Failed to decode bad json: [$buf]\n");
|
|
|
|
return;
|
|
|
|
};
|
2017-10-11 02:19:02 +02:00
|
|
|
|
|
|
|
if (not defined $stuff->{result} or not length $stuff->{result}) {
|
|
|
|
$self->{pbot}->{logger}->log("No result from module.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($stuff->{referenced}) {
|
|
|
|
return if $stuff->{result} =~ m/(?:no results)/i;
|
|
|
|
}
|
|
|
|
|
2017-11-28 04:17:28 +01:00
|
|
|
if (exists $stuff->{special} and $stuff->{special} eq 'code-factoid') {
|
2017-10-11 02:19:02 +02:00
|
|
|
$stuff->{result} =~ s/\s+$//g;
|
|
|
|
$self->{pbot}->{logger}->log("No text result from code-factoid.\n") and return if not length $stuff->{result};
|
|
|
|
|
2017-11-16 18:23:58 +01:00
|
|
|
$stuff->{original_keyword} = $stuff->{root_keyword};
|
|
|
|
|
|
|
|
$stuff->{result} = $self->{pbot}->{factoids}->handle_action($stuff, $stuff->{result});
|
2017-10-11 02:19:02 +02:00
|
|
|
}
|
|
|
|
|
2017-11-16 18:23:58 +01:00
|
|
|
$stuff->{checkflood} = 0;
|
|
|
|
|
|
|
|
if (defined $stuff->{nickoverride}) {
|
2017-11-26 05:00:55 +01:00
|
|
|
$self->{pbot}->{interpreter}->handle_result($stuff, $stuff->{result});
|
2017-10-11 02:19:02 +02:00
|
|
|
} else {
|
2017-11-26 05:00:55 +01:00
|
|
|
# don't override nick if already set
|
2020-01-15 03:10:53 +01:00
|
|
|
if (exists $stuff->{special} and $stuff->{special} ne 'code-factoid' and exists $self->{pbot}->{factoids}->{factoids}->{hash}->{$stuff->{channel}}->{$stuff->{trigger}}->{add_nick} and $self->{pbot}->{factoids}->{factoids}->{hash}->{$stuff->{channel}}->{$stuff->{trigger}}->{add_nick} != 0) {
|
2017-11-26 05:00:55 +01:00
|
|
|
$stuff->{nickoverride} = $stuff->{nick};
|
2018-01-23 22:58:03 +01:00
|
|
|
$stuff->{no_nickoverride} = 0;
|
|
|
|
$stuff->{force_nickoverride} = 1;
|
2017-10-11 02:19:02 +02:00
|
|
|
} else {
|
2019-06-26 18:34:19 +02:00
|
|
|
# extract nick-like thing from module result
|
2017-11-26 05:00:55 +01:00
|
|
|
if ($stuff->{result} =~ s/^(\S+): //) {
|
|
|
|
my $nick = $1;
|
|
|
|
if (lc $nick eq "usage") {
|
|
|
|
# put it back on result if it's a usage message
|
|
|
|
$stuff->{result} = "$nick: $stuff->{result}";
|
|
|
|
} else {
|
2017-11-28 04:17:28 +01:00
|
|
|
my $present = $self->{pbot}->{nicklist}->is_present($stuff->{channel}, $nick);
|
2017-11-26 05:00:55 +01:00
|
|
|
if ($present) {
|
|
|
|
# nick is present in channel
|
|
|
|
$stuff->{nickoverride} = $present;
|
|
|
|
} else {
|
|
|
|
# nick not present, put it back on result
|
|
|
|
$stuff->{result} = "$nick: $stuff->{result}";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-10-11 02:19:02 +02:00
|
|
|
}
|
2017-11-26 05:00:55 +01:00
|
|
|
$self->{pbot}->{interpreter}->handle_result($stuff, $stuff->{result});
|
2017-10-11 02:19:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
my $text = $self->{pbot}->{interpreter}->truncate_result($stuff->{channel}, $self->{pbot}->{registry}->get_value('irc', 'botnick'), 'undef', $stuff->{result}, $stuff->{result}, 0);
|
2020-01-04 05:37:58 +01:00
|
|
|
$self->{pbot}->{antiflood}->check_flood($stuff->{from}, $self->{pbot}->{registry}->get_value('irc', 'botnick'), $self->{pbot}->{registry}->get_value('irc', 'username'), 'pbot', $text, 0, 0, 0);
|
2010-03-22 08:33:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
1;
|