Merge branch 'master' of git.freeside.biz:/home/git/freeside
[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-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 <& /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">
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 % }
123
124 <tr><td align="right"><input type="checkbox" class="checkbox" name="Enabled" value="1" <%$EnabledChecked|n%> /></td>
125 <td colspan="3"><&|/l&>Enabled (Unchecking this box disables this queue)</&><br />
126 % $m->callback( %ARGS, QueueObj => $QueueObj, results => \@results );
127 </td></tr>
128
129 % if ( RT->Config->Get('GnuPG')->{'Enable'} ) {
130 <tr><td colspan="4">
131 % if ( my $email = $QueueObj->CorrespondAddress || RT->Config->Get('CorrespondAddress') ) {
132 <& /Admin/Elements/ShowKeyInfo, Type => 'private', EmailAddress => $email &>
133 % } else {
134 <&|/Widgets/TitleBox, title => loc( 'GnuPG private keys') &>
135 <i><&|/l&>You have enabled GnuPG support but have not set a correspondence address for this queue.</&>
136 <&|/l&>You must set a correspondence address for this queue in order to configure a GnuPG private key.</&></i>
137 </&>
138 % }
139 </td></tr>
140 <tr><td colspan="4">
141 % if ( my $email = $QueueObj->CommentAddress || RT->Config->Get('CommentAddress') ) {
142 <& /Admin/Elements/ShowKeyInfo, Type => 'private', EmailAddress => $email &>
143 % } else {
144 <&|/Widgets/TitleBox, title => loc( 'GnuPG private keys') &>
145 <i><&|/l&>You have enabled GnuPG support but have not set a comment address for this queue.</&>
146 <&|/l&>You must set a comment address for this queue in order to configure a GnuPG private key.</&></i>
147 </&>
148 %}
149 </td></tr>
150 % }
151
152 </table>
153 % if ( $Create ) {
154 <& /Elements/Submit, Label => loc('Create') &>
155 % } else {
156 <& /Elements/Submit, Label => loc('Save Changes') &>
157 % }
158 </form>
159
160
161
162 <%INIT>
163 my ($title, @results, @no_redirect_results, $Disabled, $EnabledChecked);
164 my $QueueObj = RT::Queue->new( $session{'CurrentUser'} );
165 $QueueObj->Load( $id ) if !$id || $id eq 'new';
166
167 $EnabledChecked = 'checked="checked"';
168
169 unless ($Create) {
170     if ( defined $id && $id eq 'new' ) {
171         my ($val, $msg) = $QueueObj->Create( Name => $Name );
172         if (!$val) {
173             $Create = 1; # Create failed, so bring us back to step 1
174         }
175         push @results, $msg;
176     } else {
177         $QueueObj->Load($id) || $QueueObj->Load($Name) || Abort(loc("Couldn't load queue '[_1]'", $Name));
178     }
179 }
180
181 if ( $QueueObj->Id ) {
182     $title = loc('Configuration for queue [_1]', $QueueObj->Name );
183     my @attribs= qw(Description CorrespondAddress CommentAddress Name
184         InitialPriority FinalPriority DefaultDueIn Sign Encrypt Lifecycle SubjectTag Disabled);
185
186     # we're asking about enabled on the web page but really care about disabled
187     if ( $SetEnabled ) {
188         $Disabled = $ARGS{'Disabled'} = $Enabled? 0: 1;
189         $ARGS{$_} = 0 foreach grep !defined $ARGS{$_} || !length $ARGS{$_},
190             qw(Sign Encrypt Disabled);
191     }
192
193     $m->callback(
194         CallbackName => 'BeforeUpdate',
195         Queue => $QueueObj,
196         AttributesRef => \@attribs,
197         ARGSRef => \%ARGS,
198     );
199
200     $ARGS{'Lifecycle'} = undef if defined $ARGS{'Lifecycle'} and $ARGS{'Lifecycle'} eq "default";
201     push @results, UpdateRecordObject(
202         AttributesRef => \@attribs,
203         Object => $QueueObj, 
204         ARGSRef => \%ARGS
205     );
206
207     $Disabled = $ARGS{'Disabled'} = $Enabled? 0: 1;
208
209     $EnabledChecked = "" if $QueueObj->Disabled;
210
211     my @linkresults;
212     $m->callback(
213         results      => \@linkresults,
214         RecordObj    => $QueueObj,
215         ARGSRef      => \%ARGS, 
216         CallbackName => 'ProcessLinks'
217     );
218     push @results, @linkresults;
219     push @results, ProcessObjectCustomFieldUpdates( ARGSRef => \%ARGS, Object => $QueueObj );
220     if ( RT->Config->Get('RTAddressRegexp') ) {
221         foreach my $address ( $QueueObj->CorrespondAddress, $QueueObj->CommentAddress ) {
222             next unless defined $address && length $address;
223             next if RT::EmailParser->IsRTAddress( $address );
224             push @no_redirect_results, loc("RTAddressRegexp option in the config doesn't match [_1]", $address );
225         }
226     }
227 } else {
228     $title = loc("Create a queue");
229 }
230
231 # This code does automatic redirection if any updates happen.
232 MaybeRedirectForResults(
233     Actions   => \@results,
234     Arguments => { id => $QueueObj->Id },
235 ) if $QueueObj->id;
236
237 push @results, @no_redirect_results;
238 </%INIT>
239
240
241 <%ARGS>
242 $id => undef
243 $result => undef
244 $Name => undef
245 $Create => undef
246 $Description => undef
247 $CorrespondAddress => undef
248 $CommentAddress => undef
249 $InitialPriority => undef
250 $FinalPriority => undef
251 $DefaultDueIn => undef
252 $SetEnabled => undef
253 $Enabled => undef
254 </%ARGS>