X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Flib%2FRT%2FCustomFieldValues%2FExternal.pm;h=e6bf2f87deef0836253e2b4254ed62210d3696cd;hb=7588a4ac90a9b07c08a3107cd1107d773be1c991;hp=bd60674f8d606f97d4eaf1902f2eeb75c5fe4855;hpb=0fb307c305e4bc2c9c27dc25a3308beae3a4d33c;p=freeside.git diff --git a/rt/lib/RT/CustomFieldValues/External.pm b/rt/lib/RT/CustomFieldValues/External.pm index bd60674f8..e6bf2f87d 100644 --- a/rt/lib/RT/CustomFieldValues/External.pm +++ b/rt/lib/RT/CustomFieldValues/External.pm @@ -2,7 +2,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2013 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) @@ -82,7 +82,7 @@ C. =head1 SEE ALSO -L +F =cut @@ -123,57 +123,49 @@ sub __BuildLimitCheck { my ($self, %args) = (@_); return undef unless $args{'FIELD'} =~ /^(?:Name|Description)$/; - $args{'OPERATOR'} ||= '='; - my $quoted_value = $args{'VALUE'}; - if ( $quoted_value ) { - $quoted_value =~ s/'/\\'/g; - $quoted_value = "'$quoted_value'"; - } - - my $code = <$args{'FIELD'}; -my \$condition = $quoted_value; -END - - if ( $args{'OPERATOR'} =~ /^(?:=|!=|<>)$/ ) { - $code .= 'return 0 unless defined $value;'; - my %h = ( '=' => ' eq ', '!=' => ' ne ', '<>' => ' ne ' ); - $code .= 'return 0 unless $value'. $h{ $args{'OPERATOR'} } .'$condition;'; - $code .= 'return 1;' - } - elsif ( $args{'OPERATOR'} =~ /^(?:LIKE|NOT LIKE)$/i ) { - $code .= 'return 0 unless defined $value;'; - my %h = ( 'LIKE' => ' =~ ', 'NOT LIKE' => ' !~ ' ); - $code .= 'return 0 unless $value'. $h{ uc $args{'OPERATOR'} } .'/\Q$condition/i;'; - $code .= 'return 1;' - } - else { - $code .= 'return 0;' - } - $code = "sub {$code}"; - my $cb = eval "$code"; - $RT::Logger->error( "Couldn't build callback '$code': $@" ) if $@; - return $cb; + my $condition = $args{VALUE}; + my $op = $args{'OPERATOR'} || '='; + my $field = $args{FIELD}; + + return sub { + my $record = shift; + my $value = $record->$field; + return 0 unless defined $value; + if ($op eq "=") { + return 0 unless $value eq $condition; + } elsif ($op eq "!=" or $op eq "<>") { + return 0 unless $value ne $condition; + } elsif (uc($op) eq "LIKE") { + return 0 unless $value =~ /\Q$condition\E/i; + } elsif (uc($op) eq "NOT LIKE") { + return 0 unless $value !~ /\Q$condition\E/i; + } else { + return 0; + } + return 1; + }; } sub __BuildAggregatorsCheck { my $self = shift; + my @cbs = grep {$_->{CALLBACK}} @{ $self->{'__external_cf_limits'} }; + return undef unless @cbs; - my %h = ( OR => ' || ', AND => ' && ' ); - - my $code = ''; - for( my $i = 0; $i < @{ $self->{'__external_cf_limits'} }; $i++ ) { - next unless $self->{'__external_cf_limits'}->[$i]->{'CALLBACK'}; - $code .= $h{ uc($self->{'__external_cf_limits'}->[$i]->{'ENTRYAGGREGATOR'} || 'OR') } if $code; - $code .= '$sb->{\'__external_cf_limits\'}->['. $i .']->{\'CALLBACK\'}->($record)'; - } - return unless $code; + my %h = ( + OR => sub { defined $_[0] ? ($_[0] || $_[1]) : $_[1] }, + AND => sub { defined $_[0] ? ($_[0] && $_[1]) : $_[1] }, + ); - $code = "sub { my (\$sb,\$record) = (\@_); return $code }"; - my $cb = eval "$code"; - $RT::Logger->error( "Couldn't build callback '$code': $@" ) if $@; - return $cb; + return sub { + my ($sb, $record) = @_; + my $ok; + for my $limit ( @cbs ) { + $ok = $h{$limit->{ENTRYAGGREGATOR} || 'OR'}->( + $ok, $limit->{CALLBACK}->($record), + ); + } + return $ok; + }; } sub _DoSearch { @@ -187,9 +179,9 @@ sub _DoSearch { customfield => $self->{'__external_cf'}, sortorder => 0, description => '', - creator => $RT::SystemUser->id, + creator => RT->SystemUser->id, created => undef, - lastupdatedby => $RT::SystemUser->id, + lastupdatedby => RT->SystemUser->id, lastupdated => undef, ); @@ -222,14 +214,6 @@ sub LimitToCustomField { return $self->SUPER::LimitToCustomField( @_ ); } -eval "require RT::CustomFieldValues::External_Vendor"; -if ($@ && $@ !~ qr{^Can't locate RT/CustomFieldValues/External_Vendor.pm}) { - die $@; -}; - -eval "require RT::CustomFieldValues::External_Local"; -if ($@ && $@ !~ qr{^Can't locate RT/CustomFieldValues/External_Local.pm}) { - die $@; -}; +RT::Base->_ImportOverlays(); 1;