import of rt 3.0.4
[freeside.git] / rt / lib / RT / Action / UserDefined.pm
1 # BEGIN LICENSE BLOCK
2
3 # Copyright (c) 1996-2003 Jesse Vincent <jesse@bestpractical.com>
4
5 # (Except where explictly superceded by other copyright notices)
6
7 # This work is made available to you under the terms of Version 2 of
8 # the GNU General Public License. A copy of that license should have
9 # been provided with this software, but in any event can be snarfed
10 # from www.gnu.org.
11
12 # This work 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 GNU
15 # General Public License for more details.
16
17 # Unless otherwise specified, all modifications, corrections or
18 # extensions to this work which alter its source code become the
19 # property of Best Practical Solutions, LLC when submitted for
20 # inclusion in the work.
21
22
23 # END LICENSE BLOCK
24  
25
26 package RT::Action::UserDefined;
27 use RT::Action::Generic;
28
29 use strict;
30 use vars qw/@ISA/;
31 @ISA = qw(RT::Action::Generic);
32
33 =head2 Prepare
34
35 This happens on every transaction. it's always applicable
36
37 =cut
38
39 sub Prepare {
40     my $self = shift;
41     my $retval = eval $self->ScripObj->CustomPrepareCode;
42     if ($@) {
43         $RT::Logger->error("Scrip ".$self->ScripObj->Id. " Prepare failed: ".$@);
44         return (undef);
45     }
46     return ($retval);
47 }
48
49 =head2 Commit
50
51 This happens on every transaction. it's always applicable
52
53 =cut
54
55 sub Commit {
56     my $self = shift;
57     my $retval = eval $self->ScripObj->CustomCommitCode;
58     if ($@) {
59         $RT::Logger->error("Scrip ".$self->ScripObj->Id. " Commit failed: ".$@);
60         return (undef);
61     }
62     return ($retval);
63 }
64
65 eval "require RT::Action::UserDefined_Vendor";
66 die $@ if ($@ && $@ !~ qr{^Can't locate RT/Action/UserDefined_Vendor.pm});
67 eval "require RT::Action::UserDefined_Local";
68 die $@ if ($@ && $@ !~ qr{^Can't locate RT/Action/UserDefined_Local.pm});
69
70 1;
71