X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=rt%2Flib%2FRT%2FSavedSearches.pm;h=c060701bdc240a72f9cfadf721e605a236a6a825;hp=2a336497608c9d6eaa4d53cf7cf63f23bf6299aa;hb=9aee669886202be7035e6c6049fc71bc99dd3013;hpb=0fb307c305e4bc2c9c27dc25a3308beae3a4d33c diff --git a/rt/lib/RT/SavedSearches.pm b/rt/lib/RT/SavedSearches.pm index 2a3364976..c060701bd 100644 --- a/rt/lib/RT/SavedSearches.pm +++ b/rt/lib/RT/SavedSearches.pm @@ -2,7 +2,7 @@ # # COPYRIGHT: # -# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC +# This software is Copyright (c) 1996-2015 Best Practical Solutions, LLC # # # (Except where explicitly superseded by other copyright notices) @@ -52,7 +52,7 @@ =head1 SYNOPSIS - use RT::SavedSearch + use RT::SavedSearches =head1 DESCRIPTION @@ -67,20 +67,14 @@ package RT::SavedSearches; +use strict; +use warnings; +use base 'RT::SharedSettings'; + use RT::SavedSearch; -use strict; -use base 'RT::Base'; - -sub new { - my $proto = shift; - my $class = ref($proto) || $proto; - my $self = {}; - bless ($self, $class); - $self->CurrentUser(@_); - $self->{'idx'} = 0; - $self->{'objects'} = []; - return $self; +sub RecordClass { + return 'RT::SavedSearch'; } =head2 LimitToPrivacy @@ -102,81 +96,19 @@ sub LimitToPrivacy { my $object = $self->_GetObject($privacy); if ($object) { - $self->{'objects'} = []; - my @search_atts = $object->Attributes->Named('SavedSearch'); - foreach my $att (@search_atts) { - my $search = RT::SavedSearch->new($self->CurrentUser); - $search->Load($privacy, $att->Id); - next if $type && $search->Type ne $type; - push(@{$self->{'objects'}}, $search); - } + $self->{'objects'} = []; + my @search_atts = $object->Attributes->Named('SavedSearch'); + foreach my $att (@search_atts) { + my $search = RT::SavedSearch->new($self->CurrentUser); + $search->Load($privacy, $att->Id); + next if $type && $search->Type && $search->Type ne $type; + push(@{$self->{'objects'}}, $search); + } } else { - $RT::Logger->error("Could not load object $privacy"); + $RT::Logger->error("Could not load object $privacy"); } } -### Accessor methods - -=head2 Next - -Returns the next object in the collection. - -=cut - -sub Next { - my $self = shift; - my $search = $self->{'objects'}->[$self->{'idx'}]; - if ($search) { - $self->{'idx'}++; - } else { - # We have run out of objects; reset the counter. - $self->{'idx'} = 0; - } - return $search; -} - -=head2 Count - -Returns the number of search objects found. - -=cut - -sub Count { - my $self = shift; - return scalar @{$self->{'objects'}}; -} - -### Internal methods - -# _GetObject: helper routine to load the correct object whose parameters -# have been passed. - -sub _GetObject { - my $self = shift; - my $privacy = shift; - - return RT::SavedSearch->new($self->CurrentUser)->_GetObject($privacy); -} - -### Internal methods - -# _PrivacyObjects: returns a list of objects that can be used to load saved searches from. - -sub _PrivacyObjects { - my $self = shift; - my $CurrentUser = $self->CurrentUser; - - my $groups = RT::Groups->new($CurrentUser); - $groups->LimitToUserDefinedGroups; - $groups->WithMember( PrincipalId => $CurrentUser->Id, - Recursively => 1 ); - - return ( $CurrentUser->UserObj, @{ $groups->ItemsArrayRef() } ); -} - -eval "require RT::SavedSearches_Vendor"; -die $@ if ($@ && $@ !~ qr{^Can't locate RT/SavedSearches_Vendor.pm}); -eval "require RT::SavedSearches_Local"; -die $@ if ($@ && $@ !~ qr{^Can't locate RT/SavedSearches_Local.pm}); +RT::Base->_ImportOverlays(); 1;