rt 4.0.23
[freeside.git] / rt / share / html / Admin / Queues / Modify.html
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %#
3 %# COPYRIGHT:
4 %#
5 %# This software is Copyright (c) 1996-2015 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 <& /Admin/Elements/Header, Title => $title &>
49 <& /Elements/Tabs &>
50 <& /Elements/ListActions, actions => \@results &>
51
52
53
54 <form action="<%RT->Config->Get('WebPath')%>/Admin/Queues/Modify.html" name="ModifyQueue" method="post" enctype="multipart/form-data">
55 <input type="hidden" class="hidden" name="SetEnabled" value="1" />
56 <input type="hidden" class="hidden" name="id" value="<% $Create? 'new': $QueueObj->Id %>" />
57
58 <table>
59 <tr><td align="right"><&|/l&>Queue Name</&>:</td>
60 <td colspan="3"><input name="Name" value="<% $Create ? "" : $QueueObj->Name || $Name %>" /></td>
61 </tr>
62
63 <tr><td align="right"><&|/l&>Description</&>:</td>
64 <td colspan="3"><input name="Description" value="<% $Create ? "" : $QueueObj->Description || $Description || '' %>" size="60" /></td>
65 </tr>
66
67 <tr><td align="right"><&|/l&>Lifecycle</&>:</td>
68 <td colspan="3"><& /Widgets/Form/Select:InputOnly,
69     Name         => 'Lifecycle',
70     Values       => [ sort { loc($a) cmp loc($b) } RT::Lifecycle->List ],
71     CurrentValue => $Create ? "default" : $QueueObj->Lifecycle || $ARGS{'Lifecycle'},
72     Default      => 0,
73 &></td>
74 </tr>
75
76 <tr><td align="right"><&|/l&>Subject Tag</&>:</td>
77 <td colspan="3"><input name="SubjectTag" value="<% $ARGS{'SubjectTag'} || ($Create ? "" : $QueueObj->SubjectTag || '' ) %>" size="60" /></td>
78 </tr>
79
80 <tr><td align="right"><&|/l&>Reply Address</&>:</td>
81 <td><input name="CorrespondAddress" value="<% $Create ? "" : $QueueObj->CorrespondAddress || $CorrespondAddress || '' %>" />
82 <br /><span><em><&|/l , RT->Config->Get('CorrespondAddress')&>(If left blank, will default to [_1])</&></em></span></td>
83 <td align="right"><&|/l&>Comment Address</&>:</td>
84 <td><input name="CommentAddress" value="<% $Create ? "" : $QueueObj->CommentAddress || $CommentAddress || '' %>" />
85 <br /><span><em><&|/l , RT->Config->Get('CommentAddress')&>(If left blank, will default to [_1])</&></em></span></td>
86 </tr>
87
88 <tr><td align="right"><&|/l&>Priority starts at</&>:</td>
89 <td><& /Elements/SelectPriority,
90     Name => "InitialPriority",
91     Default => $Create? 0: $QueueObj->InitialPriority || $InitialPriority,
92 &></td>
93 <td align="right"><&|/l&>Over time, priority moves toward</&>:</td>
94 <td><& /Elements/SelectPriority,
95     Name => "FinalPriority",
96     Default => $Create? 0: $QueueObj->FinalPriority || $FinalPriority,
97 &><br /><span><em><&|/l&>requires running rt-crontool</&></em></span></td>
98 </tr>
99
100 <tr><td align="right"><&|/l&>Requests should be due in</&>:</td>
101 <td colspan="3"><input name="DefaultDueIn" value="<% ($Create) ? "" : $QueueObj->DefaultDueIn || $DefaultDueIn || "" %>" /> <&|/l&>days</&>.</td>
102 </tr>
103
104 % my $CFs = $QueueObj->CustomFields;
105 % while (my $CF = $CFs->Next) {
106 <tr valign="top"><td align="right">
107 <% loc($CF->Name) %>:
108 </td><td>
109 <& /Elements/EditCustomField, CustomField => $CF, 
110                               Object => $QueueObj, 
111                               ($Create ? (NamePrefix => 'Object-RT::Queue--CustomField-') 
112                                        : () )&>
113 </td></tr>
114 % }
115
116 % if ( RT->Config->Get('GnuPG')->{'Enable'} ) {
117 <tr><td align="right"><input type="checkbox" class="checkbox" name="Sign" value="1" <% $QueueObj->Sign? 'checked="checked"': '' |n%> /></td>
118 <td><&|/l&>Sign by default</&></td>
119 <td align="right"><input type="checkbox" class="checkbox" name="Encrypt" value="1" <% $QueueObj->Encrypt? 'checked="checked"': '' |n%> /></td>
120 <td><&|/l&>Encrypt by default</&></td>
121 </tr>
122 <tr><td align="right"><input type="checkbox" class="checkbox" name="SignAuto" value="1" <% $QueueObj->SignAuto? 'checked="checked"': '' |n%> /></td>
123 <td colspan="3"><&|/l_unsafe, "<b>","</b>","<i>","</i>"&>Sign all auto-generated mail.  [_1]Caution[_2]: Enabling this option alters the signature from providing [_3]authentication[_4] to providing [_3]integrity[_4].</&></td></tr>
124 % }
125
126 <tr><td align="right"><input type="checkbox" class="checkbox" name="Enabled" value="1" <%$EnabledChecked|n%> /></td>
127 <td colspan="3"><&|/l&>Enabled (Unchecking this box disables this queue)</&><br />
128 % $m->callback( %ARGS, QueueObj => $QueueObj, results => \@results );
129 </td></tr>
130
131 % if ( RT->Config->Get('GnuPG')->{'Enable'} ) {
132 <tr><td colspan="4">
133 % if ( my $email = $QueueObj->CorrespondAddress || RT->Config->Get('CorrespondAddress') ) {
134 <& /Admin/Elements/ShowKeyInfo, Type => 'private', EmailAddress => $email &>
135 % } else {
136 <&|/Widgets/TitleBox, title => loc( 'GnuPG private keys') &>
137 <i><&|/l&>You have enabled GnuPG support but have not set a correspondence address for this queue.</&>
138 <&|/l&>You must set a correspondence address for this queue in order to configure a GnuPG private key.</&></i>
139 </&>
140 % }
141 </td></tr>
142 <tr><td colspan="4">
143 % if ( my $email = $QueueObj->CommentAddress || RT->Config->Get('CommentAddress') ) {
144 <& /Admin/Elements/ShowKeyInfo, Type => 'private', EmailAddress => $email &>
145 % } else {
146 <&|/Widgets/TitleBox, title => loc( 'GnuPG private keys') &>
147 <i><&|/l&>You have enabled GnuPG support but have not set a comment address for this queue.</&>
148 <&|/l&>You must set a comment address for this queue in order to configure a GnuPG private key.</&></i>
149 </&>
150 %}
151 </td></tr>
152 % }
153
154 </table>
155 % if ( $Create ) {
156 <& /Elements/Submit, Label => loc('Create') &>
157 % } else {
158 <& /Elements/Submit, Label => loc('Save Changes') &>
159 % }
160 </form>
161
162
163
164 <%INIT>
165 my ($title, @results, @no_redirect_results, $Disabled, $EnabledChecked);
166 my $QueueObj = RT::Queue->new( $session{'CurrentUser'} );
167 $QueueObj->Load( $id ) if !$id || $id eq 'new';
168
169 $EnabledChecked = 'checked="checked"';
170
171 unless ($Create) {
172     if ( defined $id && $id eq 'new' ) {
173         my ($val, $msg) = $QueueObj->Create( Name => $Name );
174         if (!$val) {
175             $Create = 1; # Create failed, so bring us back to step 1
176         }
177         push @results, $msg;
178     } else {
179         $QueueObj->Load($id) || $QueueObj->Load($Name) || Abort(loc("Couldn't load queue '[_1]'", $Name));
180     }
181 }
182
183 if ( $QueueObj->Id ) {
184     $title = loc('Configuration for queue [_1]', $QueueObj->Name );
185     my @attribs= qw(Description CorrespondAddress CommentAddress Name
186         InitialPriority FinalPriority DefaultDueIn Sign SignAuto Encrypt Lifecycle SubjectTag Disabled);
187
188     # we're asking about enabled on the web page but really care about disabled
189     if ( $SetEnabled ) {
190         $Disabled = $ARGS{'Disabled'} = $Enabled? 0: 1;
191         $ARGS{$_} = 0 foreach grep !defined $ARGS{$_} || !length $ARGS{$_},
192             qw(Sign SignAuto Encrypt Disabled);
193     }
194
195     $m->callback(
196         CallbackName => 'BeforeUpdate',
197         Queue => $QueueObj,
198         AttributesRef => \@attribs,
199         ARGSRef => \%ARGS,
200     );
201
202     push @results, UpdateRecordObject(
203         AttributesRef => \@attribs,
204         Object => $QueueObj,
205         ARGSRef => \%ARGS
206     );
207
208     $Disabled = $ARGS{'Disabled'} = $Enabled? 0: 1;
209
210     $EnabledChecked = "" if $QueueObj->Disabled;
211
212     my @linkresults;
213     $m->callback(
214         results      => \@linkresults,
215         RecordObj    => $QueueObj,
216         ARGSRef      => \%ARGS, 
217         CallbackName => 'ProcessLinks'
218     );
219     push @results, @linkresults;
220     push @results, ProcessObjectCustomFieldUpdates( ARGSRef => \%ARGS, Object => $QueueObj );
221     if ( RT->Config->Get('RTAddressRegexp') ) {
222         foreach my $address ( $QueueObj->CorrespondAddress, $QueueObj->CommentAddress ) {
223             next unless defined $address && length $address;
224             next if RT::EmailParser->IsRTAddress( $address );
225             push @no_redirect_results, loc("RTAddressRegexp option in the config doesn't match [_1]", $address );
226         }
227     }
228 } else {
229     $title = loc("Create a queue");
230 }
231
232 # This code does automatic redirection if any updates happen.
233 MaybeRedirectForResults(
234     Actions   => \@results,
235     Arguments => { id => $QueueObj->Id },
236 ) if $QueueObj->id;
237
238 push @results, @no_redirect_results;
239 </%INIT>
240
241
242 <%ARGS>
243 $id => undef
244 $result => undef
245 $Name => undef
246 $Create => undef
247 $Description => undef
248 $CorrespondAddress => undef
249 $CommentAddress => undef
250 $InitialPriority => undef
251 $FinalPriority => undef
252 $DefaultDueIn => undef
253 $SetEnabled => undef
254 $Enabled => undef
255 </%ARGS>