2020-02-15 03:52:41 +01:00
# File: Modules.pm
# Author: pragma_
# 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 PBot::Modules ;
2020-02-15 23:38:32 +01:00
2020-02-15 03:52:41 +01:00
use parent 'PBot::Class' ;
use warnings ; use strict ;
use feature 'unicode_strings' ;
use IPC::Run qw/run timeout/ ;
use Encode ;
sub initialize {
2020-02-15 23:38:32 +01:00
my ( $ self , % conf ) = @ _ ;
2020-05-04 22:21:35 +02:00
$ self - > { pbot } - > { commands } - > register ( sub { $ self - > cmd_load ( @ _ ) } , "load" , 1 ) ;
$ self - > { pbot } - > { commands } - > register ( sub { $ self - > cmd_unload ( @ _ ) } , "unload" , 1 ) ;
2020-02-15 03:52:41 +01:00
}
2020-05-04 22:21:35 +02:00
sub cmd_load {
my ( $ self , $ context ) = @ _ ;
2020-02-15 23:38:32 +01:00
my $ factoids = $ self - > { pbot } - > { factoids } - > { factoids } ;
2020-05-02 05:59:51 +02:00
my ( $ keyword , $ module ) = $ self - > { pbot } - > { interpreter } - > split_args ( $ context - > { arglist } , 2 ) ;
2020-02-15 23:38:32 +01:00
return "Usage: load <keyword> <module>" if not defined $ module ;
if ( $ factoids - > exists ( '.*' , $ keyword ) ) { return 'There is already a keyword named ' . $ factoids - > get_data ( '.*' , $ keyword , '_name' ) . '.' ; }
2020-05-04 22:21:35 +02:00
$ self - > { pbot } - > { factoids } - > add_factoid ( 'module' , '.*' , $ context - > { hostmask } , $ keyword , $ module , 1 ) ;
2020-02-15 23:38:32 +01:00
$ factoids - > set ( '.*' , $ keyword , 'add_nick' , 1 , 1 ) ;
$ factoids - > set ( '.*' , $ keyword , 'nooverride' , 1 ) ;
2020-05-04 22:21:35 +02:00
$ self - > { pbot } - > { logger } - > log ( "$context->{hostmask} loaded module $keyword => $module\n" ) ;
2020-02-15 23:38:32 +01:00
return "Loaded module $keyword => $module" ;
2020-02-15 03:52:41 +01:00
}
2020-05-04 22:21:35 +02:00
sub cmd_unload {
my ( $ self , $ context ) = @ _ ;
2020-05-02 05:59:51 +02:00
my $ module = $ self - > { pbot } - > { interpreter } - > shift_arg ( $ context - > { arglist } ) ;
2020-02-15 23:38:32 +01:00
return "Usage: unload <keyword>" if not defined $ module ;
my $ factoids = $ self - > { pbot } - > { factoids } - > { factoids } ;
return "/say $module not found." if not $ factoids - > exists ( '.*' , $ module ) ;
if ( $ factoids - > get_data ( '.*' , $ module , 'type' ) ne 'module' ) { return "/say " . $ factoids - > get_data ( '.*' , $ module , '_name' ) . ' is not a module.' ; }
my $ name = $ factoids - > get_data ( '.*' , $ module , '_name' ) ;
$ factoids - > remove ( '.*' , $ module ) ;
2020-05-04 22:21:35 +02:00
$ self - > { pbot } - > { logger } - > log ( "$context->{hostmask} unloaded module $module\n" ) ;
2020-02-15 23:38:32 +01:00
return "/say $name unloaded." ;
2020-02-15 03:52:41 +01:00
}
sub execute_module {
2020-05-02 05:59:51 +02:00
my ( $ self , $ context ) = @ _ ;
2020-02-15 23:38:32 +01:00
my $ text ;
if ( $ self - > { pbot } - > { registry } - > get_value ( 'general' , 'debugcontext' ) ) {
use Data::Dumper ;
$ Data:: Dumper:: Sortkeys = 1 ;
$ self - > { pbot } - > { logger } - > log ( "execute_module\n" ) ;
2020-05-02 05:59:51 +02:00
$ self - > { pbot } - > { logger } - > log ( Dumper $ context ) ;
2020-02-15 23:38:32 +01:00
}
2020-02-15 03:52:41 +01:00
2020-05-02 05:59:51 +02:00
$ self - > { pbot } - > { process_manager } - > execute_process ( $ context , sub { $ self - > launch_module ( @ _ ) } ) ;
2020-02-15 03:52:41 +01:00
}
sub launch_module {
2020-05-02 05:59:51 +02:00
my ( $ self , $ context ) = @ _ ;
$ context - > { arguments } = "" if not defined $ context - > { arguments } ;
my @ factoids = $ self - > { pbot } - > { factoids } - > find_factoid ( $ context - > { from } , $ context - > { keyword } , exact_channel = > 2 , exact_trigger = > 2 ) ;
2020-02-15 23:38:32 +01:00
if ( not @ factoids or not $ factoids [ 0 ] ) {
2020-05-02 05:59:51 +02:00
$ context - > { checkflood } = 1 ;
$ self - > { pbot } - > { interpreter } - > handle_result ( $ context , "/msg $context->{nick} Failed to find module for '$context->{keyword}' in channel $context->{from}\n" ) ;
2020-02-15 23:38:32 +01:00
return ;
2020-02-15 03:52:41 +01:00
}
2020-02-15 23:38:32 +01:00
my ( $ channel , $ trigger ) = ( $ factoids [ 0 ] - > [ 0 ] , $ factoids [ 0 ] - > [ 1 ] ) ;
2020-05-02 05:59:51 +02:00
$ context - > { channel } = $ channel ;
$ context - > { keyword } = $ trigger ;
$ context - > { trigger } = $ trigger ;
2020-02-15 23:38:32 +01:00
my $ module = $ self - > { pbot } - > { factoids } - > { factoids } - > get_data ( $ channel , $ trigger , 'action' ) ;
2020-05-22 04:23:30 +02:00
$ self - > { pbot } - > { logger } - > log (
"(" . ( defined $ context - > { from } ? $ context - > { from } : "(undef)" )
. "): $context->{nick}!$context->{user}\@$context->{host}: Executing module [$context->{command}] $module $context->{arguments}\n"
) ;
2020-06-21 05:55:22 +02:00
$ context - > { arguments } = $ self - > { pbot } - > { factoids } - > expand_factoid_vars ( $ context , $ context - > { arguments } ) ;
2020-02-15 23:38:32 +01:00
my $ module_dir = $ self - > { pbot } - > { registry } - > get_value ( 'general' , 'module_dir' ) ;
if ( not chdir $ module_dir ) {
$ self - > { pbot } - > { logger } - > log ( "Could not chdir to '$module_dir': $!\n" ) ;
Carp:: croak ( "Could not chdir to '$module_dir': $!" ) ;
2020-02-15 03:52:41 +01:00
}
2020-02-15 23:38:32 +01:00
if ( $ self - > { pbot } - > { factoids } - > { factoids } - > exists ( $ channel , $ trigger , 'workdir' ) ) {
chdir $ self - > { pbot } - > { factoids } - > { factoids } - > get_data ( $ channel , $ trigger , 'workdir' ) ;
}
# FIXME -- add check to ensure $module exists
my ( $ exitval , $ stdout , $ stderr ) = eval {
2020-05-02 05:59:51 +02:00
my $ args = $ context - > { arguments } ;
if ( not $ context - > { args_utf8 } ) { $ args = encode ( 'UTF-8' , $ args ) ; }
2020-02-15 23:38:32 +01:00
my @ cmdline = ( "./$module" , $ self - > { pbot } - > { interpreter } - > split_line ( $ args ) ) ;
my $ timeout = $ self - > { pbot } - > { registry } - > get_value ( 'general' , 'module_timeout' ) // 30 ;
my ( $ stdin , $ stdout , $ stderr ) ;
run \ @ cmdline , \ $ stdin , \ $ stdout , \ $ stderr , timeout ( $ timeout ) ;
my $ exitval = $? >> 8 ;
utf8:: decode ( $ stdout ) ;
utf8:: decode ( $ stderr ) ;
return ( $ exitval , $ stdout , $ stderr ) ;
} ;
if ( $@ ) {
my $ error = $@ ;
2020-05-02 05:59:51 +02:00
if ( $ error =~ m/timeout on timer/ ) { ( $ exitval , $ stdout , $ stderr ) = ( - 1 , "$context->{trigger}: timed-out" , '' ) ; }
2020-02-15 23:38:32 +01:00
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" ) ;
}
2020-02-15 03:52:41 +01:00
}
2020-05-02 05:59:51 +02:00
$ context - > { result } = $ stdout ;
chomp $ context - > { result } ;
2020-02-15 03:52:41 +01:00
}
1 ;