]> git.uio.no Git - usit-rt.git/blame - lib/RT/Shredder/GroupMember.pm
Upgrade to 4.2.8
[usit-rt.git] / lib / RT / Shredder / GroupMember.pm
CommitLineData
84fb5b46
MKG
1# BEGIN BPS TAGGED BLOCK {{{
2#
3# COPYRIGHT:
4#
3ffc5f4f 5# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC
84fb5b46
MKG
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
84fb5b46 49package RT::GroupMember;
3ffc5f4f 50use RT::GroupMember ();
84fb5b46
MKG
51
52use strict;
53use warnings;
54use warnings FATAL => 'redefine';
55
56use RT::Shredder::Constants;
57use RT::Shredder::Exceptions;
58use RT::Shredder::Dependencies;
59
60# No dependencies that should be deleted with record
61
62sub __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!
3ffc5f4f 90 unless( ($group->Name || '') eq 'Owner' &&
84fb5b46
MKG
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);
3ffc5f4f 109 return unless ($group->Name || '') eq 'Owner';
84fb5b46
MKG
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 );
84fb5b46 121
84fb5b46
MKG
122 RT::Shredder::Exception->throw( $msg ) unless $status;
123
124 return;
125 },
126 );
127
128 return $self->SUPER::__DependsOn( %args );
129}
130
84fb5b46 1311;