60b5b183582f969c10772693ea09a97f766212a4
[freeside.git] / rt / lib / RT / Shredder / Plugin.pm
1 # BEGIN BPS TAGGED BLOCK {{{
2 #
3 # COPYRIGHT:
4 #
5 # This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
6 #                                          <sales@bestpractical.com>
7 #
8 # (Except where explicitly superseded by other copyright notices)
9 #
10 #
11 # LICENSE:
12 #
13 # This work is made available to you under the terms of Version 2 of
14 # the GNU General Public License. A copy of that license should have
15 # been provided with this software, but in any event can be snarfed
16 # from www.gnu.org.
17 #
18 # This work is distributed in the hope that it will be useful, but
19 # WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 # General Public License for more details.
22 #
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software
25 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
26 # 02110-1301 or visit their web page on the internet at
27 # http://www.gnu.org/licenses/old-licenses/gpl-2.0.html.
28 #
29 #
30 # CONTRIBUTION SUBMISSION POLICY:
31 #
32 # (The following paragraph is not intended to limit the rights granted
33 # to you to modify and distribute this software under the terms of
34 # the GNU General Public License and is only of importance to you if
35 # you choose to contribute your changes and enhancements to the
36 # community by submitting them to Best Practical Solutions, LLC.)
37 #
38 # By intentionally submitting any modifications, corrections or
39 # derivatives to this work, or any other work intended for use with
40 # Request Tracker, to Best Practical Solutions, LLC, you confirm that
41 # you are the copyright holder for those contributions and you grant
42 # Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
43 # royalty-free, perpetual, license to use, copy, create derivative
44 # works based on those contributions, and sublicense and distribute
45 # those contributions and any derivatives thereof.
46 #
47 # END BPS TAGGED BLOCK }}}
48
49 package RT::Shredder::Plugin;
50
51 use strict;
52 use warnings FATAL => 'all';
53 use File::Spec ();
54
55 =head1 NAME
56
57 RT::Shredder::Plugin - interface to access shredder plugins
58
59 =head1 SYNOPSIS
60
61   use RT::Shredder::Plugin;
62
63   # get list of the plugins
64   my %plugins = RT::Shredder::Plugin->List;
65
66   # load plugin by name
67   my $plugin = new RT::Shredder::Plugin;
68   my( $status, $msg ) = $plugin->LoadByName( 'Tickets' );
69   unless( $status ) {
70       print STDERR "Couldn't load plugin 'Tickets': $msg\n";
71       exit(1);
72   }
73
74   # load plugin by preformatted string
75   my $plugin = new RT::Shredder::Plugin;
76   my( $status, $msg ) = $plugin->LoadByString( 'Tickets=status,deleted' );
77   unless( $status ) {
78       print STDERR "Couldn't load plugin: $msg\n";
79       exit(1);
80   }
81
82 =head1 METHODS
83
84 =head2 new
85
86 Object constructor, returns new object. Takes optional hash
87 as arguments, it's not required and this class doesn't use it,
88 but plugins could define some arguments and can handle them
89 after your've load it.
90
91 =cut
92
93 sub new
94 {
95     my $proto = shift;
96     my $self = bless( {}, ref $proto || $proto );
97     $self->_Init( @_ );
98     return $self;
99 }
100
101 sub _Init
102 {
103     my $self = shift;
104     my %args = ( @_ );
105     $self->{'opt'} = \%args;
106 }
107
108 =head2 List
109
110 Returns hash with names of the available plugins as keys and path to
111 library files as values. Method has no arguments. Can be used as class
112 method too.
113
114 Takes optional argument C<type> and leaves in the result hash only
115 plugins of that type.
116
117 =cut
118
119 sub List
120 {
121     my $self = shift;
122     my $type = shift;
123
124     my @files;
125     foreach my $root( @INC ) {
126         my $mask = File::Spec->catfile( $root, qw(RT Shredder Plugin *.pm) );
127         push @files, glob $mask;
128     }
129
130     my %res = map { $_ =~ m/([^\\\/]+)\.pm$/; $1 => $_ } reverse @files;
131
132     return %res unless $type;
133
134     delete $res{'Base'};
135     foreach my $name( keys %res ) {
136         my $class = join '::', qw(RT Shredder Plugin), $name;
137         unless( eval "require $class" ) {
138             delete $res{ $name };
139             next;
140         }
141         next if lc $class->Type eq lc $type;
142         delete $res{ $name };
143     }
144
145     return %res;
146 }
147
148 =head2 LoadByName
149
150 Takes name of the plugin as first argument, loads plugin,
151 creates new plugin object and reblesses self into plugin
152 if all steps were successfuly finished, then you don't need to
153 create new object for the plugin.
154
155 Other arguments are sent to the constructor of the plugin
156 (method new.)
157
158 Returns C<$status> and C<$message>. On errors status
159 is C<false> value.
160
161 =cut
162
163 sub LoadByName
164 {
165     my $self = shift;
166     my $name = shift or return (0, "Name not specified");
167
168     local $@;
169     my $plugin = "RT::Shredder::Plugin::$name";
170     eval "require $plugin" or return( 0, $@ );
171     return( 0, "Plugin '$plugin' has no method new") unless $plugin->can('new');
172
173     my $obj = eval { $plugin->new( @_ ) };
174     return( 0, $@ ) if $@;
175     return( 0, 'constructor returned empty object' ) unless $obj;
176
177     $self->Rebless( $obj );
178     return( 1, "successfuly load plugin" );
179 }
180
181 =head2 LoadByString
182
183 Takes formatted string as first argument and which is used to
184 load plugin. The format of the string is
185
186   <plugin name>[=<arg>,<val>[;<arg>,<val>]...]
187
188 exactly like in the L<rt-shredder> script. All other
189 arguments are sent to the plugins constructor.
190
191 Method does the same things as C<LoadByName>, but also
192 checks if the plugin supports arguments and values are correct,
193 so you can C<Run> specified plugin immediatly.
194
195 Returns list with C<$status> and C<$message>. On errors status
196 is C<false>.
197
198 =cut
199
200 sub LoadByString
201 {
202     my $self = shift;
203     my ($plugin, $args) = split /=/, ( shift || '' ), 2;
204
205     my ($status, $msg) = $self->LoadByName( $plugin, @_ );
206     return( $status, $msg ) unless $status;
207
208     my %args;
209     foreach( split /\s*;\s*/, ( $args || '' ) ) {
210         my( $k,$v ) = split /\s*,\s*/, ( $_ || '' ), 2;
211         unless( $args{$k} ) {
212             $args{$k} = $v;
213             next;
214         }
215
216         $args{$k} = [ $args{$k} ] unless UNIVERSAL::isa( $args{ $k }, 'ARRAY');
217         push @{ $args{$k} }, $v;
218     }
219
220     ($status, $msg) = $self->HasSupportForArgs( keys %args );
221     return( $status, $msg ) unless $status;
222
223     ($status, $msg) = $self->TestArgs( %args );
224     return( $status, $msg ) unless $status;
225
226     return( 1, "successfuly load plugin" );
227 }
228
229 =head2 Rebless
230
231 Instance method that takes one object as argument and rebless
232 the current object into into class of the argument and copy data
233 of the former. Returns nothing.
234
235 Method is used by C<Load*> methods to automaticaly rebless
236 C<RT::Shredder::Plugin> object into class of the loaded
237 plugin.
238
239 =cut
240
241 sub Rebless
242 {
243     my( $self, $obj ) = @_;
244     bless( $self, ref $obj );
245     %{$self} = %{$obj};
246     return;
247 }
248
249 1;