]> git.uio.no Git - usit-rt.git/blame - share/html/Admin/Elements/EditRights
Upgrade to 4.0.10.
[usit-rt.git] / share / html / Admin / Elements / EditRights
CommitLineData
84fb5b46
MKG
1%# BEGIN BPS TAGGED BLOCK {{{
2%#
3%# COPYRIGHT:
4%#
403d7b0b 5%# This software is Copyright (c) 1996-2013 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<%args>
49$Context
50$Principals
51$AddPrincipal => undef
52</%args>
53<%init>
54use Scalar::Util qw(blessed);
55
56# Let callbacks get at principals and context before we do anything with them
57$m->callback( Principals => $Principals, Context => $Context );
58
59# Try to detect if we want to include an add user/group box
60unless ( $AddPrincipal ) {
61 my $last = $Principals->[-1];
62 if ( $last->[0] =~ /Groups/i ) {
63 $AddPrincipal = 'group'; # loc
64 }
65 elsif ( $last->[0] =~ /Users/i ) {
66 $AddPrincipal = 'user'; # loc
67 }
68}
403d7b0b
MKG
69
70my $anchor = $DECODED_ARGS->{Anchor} || '';
71if ($anchor =~ /AddPrincipal/) {
72 for my $type ("group", "user") {
73 my $record = _ParseACLNewPrincipal($DECODED_ARGS, $type)
74 or next;
75 if ($record->PrincipalId) {
76 $anchor = "#acl-" . $record->PrincipalId;
77 last;
78 }
79 }
80}
84fb5b46
MKG
81</%init>
82%# Principals is an array of arrays, where the inner arrays are like:
83%# [ 'Category name' => $CollectionObj => 'DisplayColumn' => 1 ]
84%# The last value is a boolen determining if the value of DisplayColumn
85%# should be loc()-ed before display.
86
87<script type="text/javascript">
88 jQuery(function() {
403d7b0b
MKG
89 function sync_anchor(hash) {
90 if (!hash.length) return;
91 window.location.hash = hash;
92 jQuery(".rights-editor input[name=Anchor]").val(hash);
93 }
94 sync_anchor(<% $anchor |n,j %>);
95
84fb5b46
MKG
96 jQuery(".rights-editor").tabs({
97 select: function(ev, ui) {
403d7b0b
MKG
98 sync_anchor(ui.tab.hash);
99 }
100 });
101
102 jQuery(".rights-editor .category-tabs").tabs({
103 cookie: { name: "rights-category-tab" /* saves current tab in cookie */ },
104 show: function(ev, ui) {
105 jQuery(".rights-editor .category-tabs").not(this).each(function() {
106 var item = jQuery(this);
107 var selected = item.tabs("option", "selected") || 0;
108 if (selected != ui.index)
109 item.tabs("select", ui.index);
110 });
84fb5b46
MKG
111 }
112 });
84fb5b46
MKG
113 });
114</script>
115
116<div class="rights-editor clearfix">
403d7b0b
MKG
117 <input type="hidden" value="" name="Anchor" />
118
84fb5b46
MKG
119 <ul>
120<%perl>
121for my $category (@$Principals) {
122 my ($name, $collection, $col, $loc) = @$category;
123</%perl>
124<li class="category"><% loc($name) %></li>
125<%perl>
126 while ( my $obj = $collection->Next ) {
127 my $display = ref $col eq 'CODE' ? $col->($obj) : $obj->$col;
403d7b0b 128 my $id = "acl-" . $obj->PrincipalId;
84fb5b46
MKG
129</%perl>
130<li><a href="#<% $id %>"><% $loc ? loc($display) : $display %></a></li>
131<%perl>
132 }
133}
134</%perl>
135% if ( $AddPrincipal ) {
136 <li class="category"><&|/l, loc($AddPrincipal) &>Add [_1]</&></li>
137 <li class="addprincipal">
138 <a href="#acl-AddPrincipal">
139 <input type="text" value=""
140 name="AddPrincipalForRights-<% lc $AddPrincipal %>"
141 id="AddPrincipalForRights-<% lc $AddPrincipal %>" />
142 <script type="text/javascript">
143 jQuery(function() {
144 jQuery("#AddPrincipalForRights-"+<% lc $AddPrincipal |n,j%>).keyup(function(){
145 toggle_addprincipal_validity(this, true);
146 });
147
148% if (lc $AddPrincipal eq 'group') {
149 jQuery("#AddPrincipalForRights-"+<% lc $AddPrincipal |n,j%>).autocomplete({
150 source: <% RT->Config->Get('WebPath') |n,j%>+"/Helpers/Autocomplete/Groups",
151 select: addprincipal_onselect,
152 change: addprincipal_onchange
153 });
154% }
155 });
156 </script>
157% my $type = lc $AddPrincipal eq 'user' ? loc('username') : loc($AddPrincipal);
158 <span class="warning"><&|/l, $type &>Invalid [_1]</&></span>
159 </a>
160 </li>
161% }
162 </ul>
163
164<%perl>
165# Now generate our rights panels for each principal
166for my $category (@$Principals) {
167 my ($name, $collection, $col, $loc) = @$category;
168 while ( my $obj = $collection->Next ) {
169 my $display = ref $col eq 'CODE' ? $col->($obj) : $obj->$col;
403d7b0b 170 my $id = "acl-" . $obj->PrincipalId;
84fb5b46
MKG
171</%perl>
172
173 <div id="<% $id %>">
174 <h3>
175 <% $loc ? loc($display) : $display %>
176<%perl>
177if ($obj->isa('RT::Group') and $obj->Domain eq 'UserDefined') {
178 my $subgroups = $obj->GroupMembersObj( Recursively => 1 );
179 $subgroups->LimitToUserDefinedGroups;
180 $subgroups->Limit( FIELD => 'Name', OPERATOR => '!=', VALUE => $obj->Name );
181
182 if ( $subgroups->Count ) {
183 my $inc = join ", ", map $_->Name, @{$subgroups->ItemsArrayRef};
184</%perl>
185 <span class="subgroups"><&|/l, $inc &>includes [_1]</&></span>\
186<%perl>
187 }
188}
189</%perl>
190 </h3>
191 <& EditRightsCategoryTabs, Context => $Context, Principal => $obj, id => $id &>
192 </div>
193<%perl>
194 }
195}
196
197if ( $AddPrincipal ) {
198</%perl>
199 <div id="acl-AddPrincipal">
200 <h3><&|/l, loc($AddPrincipal) &>Add rights for this [_1]</&></h3>
201 <& EditRightsCategoryTabs, Context => $Context, id => 'acl-AddPrincipal' &>
202 </div>
203% }
204
205</div>