1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
%# BEGIN LICENSE BLOCK
%#
%# Copyright (c) 2002-2003 Jesse Vincent <jesse@bestpractical.com>
%#
%# This program is free software; you can redistribute it and/or modify
%# it under the terms of version 2 of the GNU General Public License
%# as published by the Free Software Foundation.
%#
%# A copy of that license should have arrived with this
%# software, but in any event can be snarfed from www.gnu.org.
%#
%# This program is distributed in the hope that it will be useful,
%# but WITHOUT ANY WARRANTY; without even the implied warranty of
%# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
%# GNU General Public License for more details.
%#
%# END LICENSE BLOCK
<& /RTFM/Admin/Elements/CustomFieldTabs, id => $id, current_tab =>
"RTFM/Admin/CustomFields/UserRights.html?id=".$id, Title =>
loc('Modify user rights for custom field [_1]', $CustomFieldObj->Name) &>
<& /Elements/ListActions, actions => \@results &>
<FORM METHOD=POST ACTION="UserRights.html">
<INPUT TYPE=HIDDEN NAME=id VALUE="<% $CustomFieldObj->id %>">
<TABLE>
% while (my $Member = $Users->Next()) {
% my $UserObj = $Member->MemberObj->Object();
% my $group = RT::Group->new($session{'CurrentUser'});
% $group->LoadACLEquivalenceGroup($Member->MemberObj);
<TR ALIGN=RIGHT>
<TD VALIGN=TOP>
<% $UserObj->Name %>
</TD>
<TD>
<& /Admin/Elements/SelectRights, PrincipalId=> $group->PrincipalId,
Object => $CustomFieldObj &>
</TD>
</TR>
% }
</TABLE>
<& /Elements/Submit, Caption => loc("Be sure to save your changes"), Reset => 1 &>
</FORM>
<%INIT>
#Update the acls.
my @results;
foreach my $arg (keys %ARGS) {
if ($arg =~ /GrantRight-(\d+)-(.*?)-(\d+)$/) {
my $principal_id = $1;
my $object_type = $2;
my $object_id = $3;
my $rights = $ARGS{$arg};
my $principal = RT::Principal->new($session{'CurrentUser'});
$principal->Load($principal_id);
my $obj;
if ($object_type eq 'RT::FM::CustomField') {
$obj = RT::FM::CustomField->new($session{'CurrentUser'});
$obj->Load($object_id);
} else {
push (@results, loc("System Error").
loc("Rights could not be granted for [_1]",
$object_type));
next;
}
my @rights = ref($ARGS{$arg}) eq 'ARRAY' ? @{$ARGS{$arg}} :
($ARGS{$arg});
foreach my $right (@rights) {
next unless ($right);
my ($val, $msg) = $principal->GrantRight(Object => $obj, Right
=> $right);
push (@results, $msg);
}
}
elsif ($arg =~ /RevokeRight-(\d+)-(.*?)-(\d+)-(.*?)$/) {
my $principal_id = $1;
my $object_type = $2;
my $object_id = $3;
my $right = $4;
my $principal = RT::Principal->new($session{'CurrentUser'});
$principal->Load($principal_id);
next unless ($right);
my $obj;
if ($object_type eq 'RT::Class') {
$obj = RT::Class->new($session{'CurrentUser'});
$obj->Load($object_id);
} else {
push (@results, loc("System Error").
loc("Rights could not be revoked for [_1]",
$object_type));
next;
}
my ($val, $msg) = $principal->RevokeRight(Object => $obj, Right =>
$right);
push (@results, $msg);
}
}
# {{{ Deal with setting up the display of current rights.
if (!defined $id) {
$m->comp("/RTFM/Elements/Error", Why => loc("No Class defined"));
}
my $CustomFieldObj = RT::FM::CustomField->new($session{'CurrentUser'});
$CustomFieldObj->Load($id) || $m->comp("/RTFM/Elements/Error", Why => loc("Couldn't load Class [_1]",$id));
# Find out which users we want to display ACL selects for
my $Privileged = RT::Group->new($session{'CurrentUser'});
$Privileged->LoadSystemInternalGroup('Privileged');
my $Users = $Privileged->MembersObj();
# }}}
</%INIT>
<%ARGS>
$id => undef
$UserString => undef
$UserOp => undef
$UserField => undef
</%ARGS>
|