import of rt 3.0.4
[freeside.git] / rt / lib / RT / Condition / BeforeDue.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 package RT::Condition::BeforeDue;
25 require RT::Condition::Generic;
26
27 use RT::Date;
28
29 use strict;
30 use vars qw/@ISA/;
31 @ISA = qw(RT::Condition::Generic);
32
33
34 sub IsApplicable {
35     my $self = shift;
36
37     # Parse date string.  Format is "1d2h3m4s" for 1 day and 2 hours
38     # and 3 minutes and 4 seconds.
39     my %e;
40     foreach (qw(d h m s)) {
41         my @vals = $self->Argument =~ m/(\d+)$_/;
42         $e{$_} = pop @vals || 0;
43     }
44     my $elapse = $e{'d'} * 24*60*60 + $e{'h'} * 60*60 + $e{'m'} * 60 + $e{'s'};
45
46     my $cur = new RT::Date( $RT::SystemUser );
47     $cur->SetToNow();
48     my $due = $self->TicketObj->DueObj;
49     return (undef) if $due->Unix <= 0;
50
51     my $diff = $due->Diff($cur);
52     if ( $diff >= 0 and $diff <= $elapse ) {
53         return(1);
54     } else {
55         return(undef);
56     }
57 }
58
59 eval "require RT::Condition::BeforeDue_Vendor";
60 die $@ if ($@ && $@ !~ qr{^Can't locate RT/Condition/BeforeDue_Vendor.pm});
61 eval "require RT::Condition::BeforeDue_Local";
62 die $@ if ($@ && $@ !~ qr{^Can't locate RT/Condition/BeforeDue_Local.pm});
63
64 1;