3 # Copyright 2012 Kyle Hall
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22 use Module
::Load
::Conditional
qw(can_load);
23 use Module
::Pluggable search_path
=> ['Koha::Plugin'], except
=> qr/::Edifact(|::Line|::Message|::Order|::Segment|::Transport)$/;
24 use List
::MoreUtils
qw( any );
30 my $pluginsdir = C4
::Context
->config("pluginsdir");
31 my @pluginsdir = ref($pluginsdir) eq 'ARRAY' ? @
$pluginsdir : $pluginsdir;
32 push( @INC, @pluginsdir );
33 pop @INC if $INC[-1] eq '.';
38 Koha::Plugins - Module for loading and managing plugins.
43 my ( $class, $args ) = @_;
45 return unless ( C4
::Context
->config("enable_plugins") || $args->{'enable_plugins'} );
47 $args->{'pluginsdir'} = C4
::Context
->config("pluginsdir");
49 return bless( $args, $class );
54 This will return a list of all available plugins, optionally limited by
55 method or metadata value.
57 my @plugins = Koha::Plugins::GetPlugins({
58 method => 'some_method',
59 metadata => { some_key => 'some_value' },
62 The method and metadata parameters are optional.
63 Available methods currently are: 'report', 'tool', 'to_marc', 'edifact'.
64 If you pass multiple keys in the metadata hash, all keys must match.
69 my ( $self, $params ) = @_;
70 my $method = $params->{method
};
71 my $req_metadata = $params->{metadata
} // {};
73 my @plugin_classes = $self->plugins();
76 foreach my $plugin_class (@plugin_classes) {
77 if ( can_load
( modules
=> { $plugin_class => undef }, nocache
=> 1 ) ) {
78 next unless $plugin_class->isa('Koha::Plugins::Base');
80 my $plugin = $plugin_class->new({ enable_plugins
=> $self->{'enable_plugins'} });
82 # Limit results by method or metadata
83 next if $method && !$plugin->can($method);
84 my $plugin_metadata = $plugin->get_metadata;
85 next if $plugin_metadata
87 and any
{ !$plugin_metadata->{$_} || $plugin_metadata->{$_} ne $req_metadata->{$_} } keys %$req_metadata;
88 push @plugins, $plugin;
90 my $error = $Module::Load
::Conditional
::ERROR
;
91 # Do not warn the error if the plugin has been uninstalled
92 warn $error unless $error =~ m
|^Could
not find
or check module
'$plugin_class'|;
103 Kyle M Hall <kyle.m.hall@gmail.com>