]> git.uio.no Git - usit-rt.git/blob - lib/RT/Shredder/GroupMember.pm
5f06fae0baeb5fadf86f43c8af6726f802c459d3
[usit-rt.git] / lib / RT / Shredder / GroupMember.pm
1 # BEGIN BPS TAGGED BLOCK {{{
2 #
3 # COPYRIGHT:
4 #
5 # This software is Copyright (c) 1996-2012 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 use RT::GroupMember ();
50 package RT::GroupMember;
51
52 use strict;
53 use warnings;
54 use warnings FATAL => 'redefine';
55
56 use RT::Shredder::Constants;
57 use RT::Shredder::Exceptions;
58 use RT::Shredder::Dependencies;
59
60 # No dependencies that should be deleted with record
61
62 sub __DependsOn
63 {
64     my $self = shift;
65     my %args = (
66             Shredder => undef,
67             Dependencies => undef,
68             @_,
69            );
70     my $deps = $args{'Dependencies'};
71     my $list = [];
72
73     my $objs = RT::CachedGroupMembers->new( $self->CurrentUser );
74     $objs->Limit( FIELD => 'MemberId', VALUE => $self->MemberId );
75     $objs->Limit( FIELD => 'ImmediateParentId', VALUE => $self->GroupId );
76     push( @$list, $objs );
77
78     # XXX: right delegations should be cleaned here
79
80     $deps->_PushDependencies(
81             BaseObject => $self,
82             Flags => DEPENDS_ON,
83             TargetObjects => $list,
84             Shredder => $args{'Shredder'}
85         );
86
87     my $group = $self->GroupObj->Object;
88     # XXX: If we delete member of the ticket owner role group then we should also
89     # fix ticket object, but only if we don't plan to delete group itself!
90     unless( ($group->Type || '') eq 'Owner' &&
91         ($group->Domain || '') eq 'RT::Ticket-Role' ) {
92         return $self->SUPER::__DependsOn( %args );
93     }
94
95     # we don't delete group, so we have to fix Ticket and Group
96     $deps->_PushDependencies(
97                 BaseObject => $self,
98                 Flags => DEPENDS_ON | VARIABLE,
99                 TargetObjects => $group,
100                 Shredder => $args{'Shredder'}
101         );
102     $args{'Shredder'}->PutResolver(
103             BaseClass => ref $self,
104             TargetClass => ref $group,
105             Code => sub {
106                 my %args = (@_);
107                 my $group = $args{'TargetObject'};
108                 return if $args{'Shredder'}->GetState( Object => $group ) & (WIPED|IN_WIPING);
109                 return unless ($group->Type || '') eq 'Owner';
110                 return unless ($group->Domain || '') eq 'RT::Ticket-Role';
111
112                 return if $group->MembersObj->Count > 1;
113
114                 my $group_member = $args{'BaseObject'};
115
116                 if( $group_member->MemberObj->id == RT->Nobody->id ) {
117                     RT::Shredder::Exception->throw( "Couldn't delete Nobody from owners role group" );
118                 }
119
120                 my( $status, $msg ) = $group->AddMember( RT->Nobody->id );
121                 RT::Shredder::Exception->throw( $msg ) unless $status;
122
123                 my $ticket = RT::Ticket->new( $group->CurrentUser );
124                 $ticket->Load( $group->Instance );
125                 RT::Shredder::Exception->throw( "Couldn't load ticket" ) unless $ticket->id;
126
127                 ( $status, $msg ) = $ticket->_Set( Field => 'Owner',
128                                    Value => RT->Nobody->id,
129                                  );
130                 RT::Shredder::Exception->throw( $msg ) unless $status;
131
132                 return;
133             },
134         );
135
136     return $self->SUPER::__DependsOn( %args );
137 }
138
139
140 #TODO: If we plan write export tool we also should fetch parent groups
141 # now we only wipeout things.
142
143 sub __Relates
144 {
145     my $self = shift;
146     my %args = (
147             Shredder => undef,
148             Dependencies => undef,
149             @_,
150            );
151     my $deps = $args{'Dependencies'};
152     my $list = [];
153
154     my $obj = $self->MemberObj;
155     if( $obj && $obj->id ) {
156         push( @$list, $obj );
157     } else {
158         my $rec = $args{'Shredder'}->GetRecord( Object => $self );
159         $self = $rec->{'Object'};
160         $rec->{'State'} |= INVALID;
161         $rec->{'Description'} = "Have no related Principal #". $self->MemberId ." object.";
162     }
163
164     $obj = $self->GroupObj;
165     if( $obj && $obj->id ) {
166         push( @$list, $obj );
167     } else {
168         my $rec = $args{'Shredder'}->GetRecord( Object => $self );
169         $self = $rec->{'Object'};
170         $rec->{'State'} |= INVALID;
171         $rec->{'Description'} = "Have no related Principal #". $self->GroupId ." object.";
172     }
173
174     $deps->_PushDependencies(
175             BaseObject => $self,
176             Flags => RELATES,
177             TargetObjects => $list,
178             Shredder => $args{'Shredder'}
179         );
180     return $self->SUPER::__Relates( %args );
181 }
182
183 1;