Bug 26434: Fix plugin dirs addition to @INC
[koha.git] / Koha / Plugins.pm
1 package Koha::Plugins;
2
3 # Copyright 2012 Kyle Hall
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
16 #
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>.
19
20 use Modern::Perl;
21
22 use Array::Utils qw(array_minus);
23 use Class::Inspector;
24 use List::MoreUtils qw(any);
25 use Module::Load::Conditional qw(can_load);
26 use Module::Load qw(load);
27 use Module::Pluggable search_path => ['Koha::Plugin'], except => qr/::Edifact(|::Line|::Message|::Order|::Segment|::Transport)$/;
28
29 use C4::Context;
30 use C4::Output;
31 use Koha::Plugins::Methods;
32
33 BEGIN {
34     my $pluginsdir = C4::Context->config("pluginsdir");
35     my @pluginsdir = ref($pluginsdir) eq 'ARRAY' ? @$pluginsdir : $pluginsdir;
36     push @INC, array_minus(@pluginsdir, @INC) ;
37     pop @INC if $INC[-1] eq '.';
38 }
39
40 =head1 NAME
41
42 Koha::Plugins - Module for loading and managing plugins.
43
44 =cut
45
46 sub new {
47     my ( $class, $args ) = @_;
48
49     return unless ( C4::Context->config("enable_plugins") || $args->{'enable_plugins'} );
50
51     $args->{'pluginsdir'} = C4::Context->config("pluginsdir");
52
53     return bless( $args, $class );
54 }
55
56 =head2 GetPlugins
57
58 This will return a list of all available plugins, optionally limited by
59 method or metadata value.
60
61     my @plugins = Koha::Plugins::GetPlugins({
62         method => 'some_method',
63         metadata => { some_key => 'some_value' },
64     });
65
66 The method and metadata parameters are optional.
67 Available methods currently are: 'report', 'tool', 'to_marc', 'edifact'.
68 If you pass multiple keys in the metadata hash, all keys must match.
69
70 =cut
71
72 sub GetPlugins {
73     my ( $self, $params ) = @_;
74
75     my $method       = $params->{method};
76     my $req_metadata = $params->{metadata} // {};
77
78     my $filter = ( $method ) ? { plugin_method => $method } : undef;
79
80     my $plugin_classes = Koha::Plugins::Methods->search(
81         $filter,
82         {   columns  => 'plugin_class',
83             distinct => 1
84         }
85     )->_resultset->get_column('plugin_class');
86
87     my @plugins;
88
89     # Loop through all plugins that implement at least a method
90     while ( my $plugin_class = $plugin_classes->next ) {
91
92         load $plugin_class;
93         my $plugin = $plugin_class->new({
94             enable_plugins => $self->{'enable_plugins'}
95                 # loads even if plugins are disabled
96                 # FIXME: is this for testing without bothering to mock config?
97         });
98
99         next unless $plugin->is_enabled or
100                     defined($params->{all}) && $params->{all};
101
102         # filter the plugin out by metadata
103         my $plugin_metadata = $plugin->get_metadata;
104         next
105             if $plugin_metadata
106             and %$req_metadata
107             and any { !$plugin_metadata->{$_} || $plugin_metadata->{$_} ne $req_metadata->{$_} } keys %$req_metadata;
108
109         push @plugins, $plugin;
110
111     }
112
113     return @plugins;
114 }
115
116 =head2 InstallPlugins
117
118 Koha::Plugins::InstallPlugins()
119
120 This method iterates through all plugins physically present on a system.
121 For each plugin module found, it will test that the plugin can be loaded,
122 and if it can, will store its available methods in the plugin_methods table.
123
124 NOTE: We re-load all plugins here as a protective measure in case someone
125 has removed a plugin directly from the system without using the UI
126
127 =cut
128
129 sub InstallPlugins {
130     my ( $self, $params ) = @_;
131
132     my @plugin_classes = $self->plugins();
133     my @plugins;
134
135     foreach my $plugin_class (@plugin_classes) {
136         if ( can_load( modules => { $plugin_class => undef }, nocache => 1 ) ) {
137             next unless $plugin_class->isa('Koha::Plugins::Base');
138
139             my $plugin = $plugin_class->new({ enable_plugins => $self->{'enable_plugins'} });
140
141             Koha::Plugins::Methods->search({ plugin_class => $plugin_class })->delete();
142
143             foreach my $method ( @{ Class::Inspector->methods( $plugin_class, 'public' ) } ) {
144                 Koha::Plugins::Method->new(
145                     {
146                         plugin_class  => $plugin_class,
147                         plugin_method => $method,
148                     }
149                 )->store();
150             }
151
152             push @plugins, $plugin;
153         } else {
154             my $error = $Module::Load::Conditional::ERROR;
155             # Do not warn the error if the plugin has been uninstalled
156             warn $error unless $error =~ m|^Could not find or check module '$plugin_class'|;
157         }
158     }
159     return @plugins;
160 }
161
162 1;
163 __END__
164
165 =head1 AUTHOR
166
167 Kyle M Hall <kyle.m.hall@gmail.com>
168
169 =cut