# File: Plugins.pm # # Purpose: Loads and manages external plugins. # SPDX-FileCopyrightText: 2021 Pragmatic Software # SPDX-License-Identifier: MIT package PBot::Plugins; use parent 'PBot::Class'; use PBot::Imports; use File::Basename; sub initialize { my ($self, %conf) = @_; # loaded plugins $self->{plugins} = {}; # plugin management bot commands $self->{pbot}->{commands}->register(sub { $self->cmd_plug(@_) }, "plug", 1); $self->{pbot}->{commands}->register(sub { $self->cmd_unplug(@_) }, "unplug", 1); $self->{pbot}->{commands}->register(sub { $self->cmd_replug(@_) }, "replug", 1); $self->{pbot}->{commands}->register(sub { $self->cmd_pluglist(@_) }, "pluglist", 0); # autoload plugins listed in `$data_dir/plugins_autoload` file $self->autoload(%conf); } sub cmd_plug { my ($self, $context) = @_; my $plugin = $context->{arguments}; if (not length $plugin) { return "Usage: plug "; } if ($self->load($plugin)) { return "Loaded $plugin plugin."; } else { return "Plugin $plugin failed to load."; } } sub cmd_unplug { my ($self, $context) = @_; my $plugin = $context->{arguments}; if (not length $plugin) { return "Usage: unplug "; } if ($self->unload($plugin)) { return "Unloaded $plugin plugin."; } else { return "Plugin $plugin is not loaded."; } } sub cmd_replug { my ($self, $context) = @_; my $plugin = $context->{arguments}; if (not length $plugin) { return "Usage: replug "; } my $unload_result = $self->cmd_unplug($context); my $load_result = $self->cmd_plug($context); my $result; $result .= "$unload_result " if $unload_result =~ m/^Unloaded/; $result .= $load_result; return $result; } sub cmd_pluglist { my ($self, $context) = @_; my @plugins = sort keys %{$self->{plugins}}; return "No plugins loaded." if not @plugins; return scalar @plugins . ' plugin' . (@plugins == 1 ? '' : 's') . ' loaded: ' . join (', ', @plugins); } sub autoload { my ($self, %conf) = @_; return if $self->{pbot}->{registry}->get_value('plugins', 'noautoload'); my $data_dir = $self->{pbot}->{registry}->get_value('general', 'data_dir'); $self->{pbot}->{logger}->log("Loading plugins ...\n"); my $plugin_count = 0; my $fh; if (not open $fh, "<$data_dir/plugin_autoload") { $self->{pbot}->{logger}->log("warning: file $data_dir/plugin_autoload does not exist; skipping autoloading of Plugins\n"); return; } chomp(my @plugins = <$fh>); close $fh; foreach my $plugin (sort @plugins) { # do not load plugins that begin with a comment next if $plugin =~ m/^\s*#/; next if not length $plugin; $plugin = basename $plugin; $plugin =~ s/.pm$//; $plugin_count++ if $self->load($plugin, %conf); } $self->{pbot}->{logger}->log("$plugin_count plugin" . ($plugin_count == 1 ? '' : 's') . " loaded.\n"); } sub load { my ($self, $plugin, %conf) = @_; $self->unload($plugin); return if $self->{pbot}->{registry}->get_value('plugins', 'disabled'); my $module = "PBot/Plugin/$plugin.pm"; $self->{pbot}->{refresher}->{refresher}->refresh_module($module); my $ret = eval { require "$module"; if (my $exception = $@) { $self->{pbot}->{logger}->log("Error loading $plugin: $exception"); return 0; } $self->{pbot}->{logger}->log("Loading $plugin\n"); my $class = "PBot::Plugin::$plugin"; $self->{plugins}->{$plugin} = $class->new(pbot => $self->{pbot}, %conf); $self->{pbot}->{refresher}->{refresher}->update_cache($module); return 1; }; if (my $exception = $@) { $self->{pbot}->{logger}->log("Error loading $plugin: $exception"); return 0; } return $ret; } sub unload { my ($self, $plugin) = @_; if (exists $self->{plugins}->{$plugin}) { eval { $self->{plugins}->{$plugin}->unload; delete $self->{plugins}->{$plugin}; }; if (my $exception = $@) { $self->{pbot}->{logger}->log("Warning: got error unloading plugin $plugin: $exception"); } my $module = "PBot/Plugin/$plugin.pm"; $self->{pbot}->{refresher}->{refresher}->unload_module($module); $self->{pbot}->{logger}->log("Plugin $plugin unloaded.\n"); return 1; } else { return 0; } } 1;