rt 4.0.23
[freeside.git] / rt / share / html / m / ticket / reply
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 <&|/m/_elements/wrapper, title => loc('Update ticket #[_1]', $t->id) &>
49 <& /m/_elements/ticket_menu, ticket => $t &>
50 <& /Elements/ListActions, actions => \@results &>
51 <div class="ticket-reply">
52 <&|/Widgets/TitleBox &>
53 <form action="reply" id="update"
54     method="post" enctype="multipart/form-data">
55 <input type="hidden" class="hidden" name="DefaultStatus" value="<% $DefaultStatus ||''%>" />
56 <input type="hidden" class="hidden" name="Action" value="<% $ARGS{Action}||'' %>" />
57
58 % if ($gnupg_widget) {
59 <& /Elements/GnuPG/SignEncryptWidget:ShowIssues, self => $gnupg_widget &>
60 % }
61
62 <div class="entry"><span class="label"><&|/l&>Status</&>:</span>
63 <div class="value">
64 <& /Elements/SelectStatus, Name=>"Status", TicketObj => $t, DefaultLabel => loc("[_1] (Unchanged)", loc($t->Status)), Default => $ARGS{'Status'} || ($t->Status eq $DefaultStatus ? undef : $DefaultStatus)&>
65 </div></div>
66
67 <div class="entry"><span class="label"><&|/l&>Owner</&>:</span>
68 <div class="value">
69 <& /Elements/SelectOwner,
70     Name         => "Owner",
71     TicketObj    => $t,
72     QueueObj     => $t->QueueObj,
73     DefaultLabel => loc("[_1] (Unchanged)", $m->scomp('/Elements/ShowUser', User => $t->OwnerObj)),
74     Default      => $ARGS{'Owner'}
75 &>
76 </div></div>
77 <div class="entry timefield"><span class="label"><&|/l&>Worked</&>:</span><span class="value">
78 <& /Elements/EditTimeValue,
79     Name => 'UpdateTimeWorked',
80     Default => $ARGS{UpdateTimeWorked}||'',
81     InUnits => $ARGS{'UpdateTimeWorked-TimeUnits'}||'minutes',
82 &>
83 </span></div>
84 % $m->callback( %ARGS, CallbackName => 'AfterWorked', Ticket => $t );
85 <input type="hidden" class="hidden" name="id" value="<%$t->Id%>" /><br />
86 <div class="entry"><span class="label"><&|/l&>Update Type</&>:</span>
87 <div class="value"><select name="UpdateType">
88 % if ($CanComment) {
89 <option value="private" <% ($ARGS{'UpdateType'} &&  $ARGS{'UpdateType'} eq "private") ? qq[ selected="selected"] : !$ARGS{'UpdateType'}&&$CommentDefault |n %>><&|/l&>Comments (Not sent to requestors)</&></option>
90 % }
91 % if ($CanRespond) {
92 <option value="response" <% ($ARGS{'UpdateType'} && $ARGS{'UpdateType'} eq "response") ? qq[ selected="selected"] : !$ARGS{'UpdateType'}&&$ResponseDefault |n %>><&|/l&>Reply to requestors</&></option>
93 % }
94 </select> 
95 </div></div>
96 <div class="entry"><span class="label"><&|/l&>Subject</&>:</span><div class="value"> <input type="text" name="UpdateSubject" size="60" value="<% $ARGS{UpdateSubject} || $t->Subject()%>" />
97 % $m->callback( %ARGS, CallbackName => 'AfterSubject' );
98 </div></div>
99
100 <div class="entry"><span class="label"><&|/l&>One-time Cc</&>:</span><span class="value"><& /Elements/EmailInput, Name => 'UpdateCc', Size => '60', Default => $ARGS{UpdateCc} &></span></div>
101
102 <div class="entry"><span class="label"><&|/l&>One-time Bcc</&>:</span><span class="value"><& /Elements/EmailInput, Name => 'UpdateBcc', Size => '60', Default => $ARGS{UpdateBcc} &></span></div>
103
104 <div class="entry"><span class="label" ><&|/l&>Message</&>:</span><div class="value">
105 % if (exists $ARGS{UpdateContent}) {
106 % # preserve QuoteTransaction so we can use it to set up sane references/in/reply to
107 % my $temp = $ARGS{'QuoteTransaction'};
108 % delete $ARGS{'QuoteTransaction'};
109 <& /Elements/MessageBox, Name=>"UpdateContent", Default=>$ARGS{UpdateContent}, IncludeSignature => 0, %ARGS&>
110 % $ARGS{'QuoteTransaction'} = $temp;
111 % } else {
112 % my $IncludeSignature = 1;
113 % $IncludeSignature = 0 if $Action ne 'Respond' && !RT->Config->Get('MessageBoxIncludeSignatureOnComment');
114 <& /Elements/MessageBox, Name=>"UpdateContent", IncludeSignature => $IncludeSignature, %ARGS &>
115 % }
116 </div></div>
117
118 % if (exists $session{'Attachments'}) {
119
120 <%loc("Attached file") %>
121
122 <%loc("Check box to delete")%><br />
123 % foreach my $attach_name (keys %{$session{'Attachments'}}) {
124 <input type="checkbox" class="checkbox" name="DeleteAttach-<%$attach_name%>" value="1" /><%$attach_name%><br />
125 % } # end of foreach
126
127
128 % } # end of if
129
130 <div class="entry">
131 <span class="label"><&|/l&>Attach file</&>:</span>
132 <div class="value">
133 <input type="file" name="Attach" />
134 <input type="submit" class="button" name="AddMoreAttach" value="<% loc("Add More Files") %>" />
135 <input type="hidden" class="hidden" name="UpdateAttach" value="1" />
136 </div>
137 </div>
138
139 % if ( $gnupg_widget ) {
140 <& /Elements/GnuPG/SignEncryptWidget, self => $gnupg_widget, QueueObj => $t->QueueObj &>
141 % }
142
143 <& /Elements/Submit, Label => loc('Update Ticket'), Name => 'SubmitTicket' &>
144 </form>
145 </&>
146 </div>
147 </&>
148 <%INIT>
149 my $CanRespond = 0;
150 my $CanComment = 0;
151 my $checks_failure = 0;
152 my $title;
153
154 my $t = LoadTicket($id);
155
156 my @results;
157
158 $m->callback( Ticket => $t, ARGSRef => \%ARGS, results => \@results, CallbackName => 'Initial' );
159
160 unless($DefaultStatus){
161     $DefaultStatus=($ARGS{'Status'} ||$t->Status());
162 }
163
164 if ($DefaultStatus eq 'new'){
165     $DefaultStatus='open';
166 }
167
168 if ($DefaultStatus eq 'resolved') {
169     $title = loc("Resolve ticket #[_1] ([_2])", $t->id, $t->Subject);
170 } else {
171     $title = loc("Update ticket #[_1] ([_2])", $t->id, $t->Subject);
172 }
173
174 # Things needed in the template - we'll do the processing here, just
175 # for the convenience:
176
177 my ($CommentDefault, $ResponseDefault);
178 if ($Action ne 'Respond') {
179     $CommentDefault = qq[ selected="selected"]; 
180     $ResponseDefault = "";
181 } else {
182     $CommentDefault = ""; 
183     $ResponseDefault = qq[ selected="selected"];
184 }
185
186
187
188 $CanRespond = 1 if ( $t->CurrentUserHasRight('ReplyToTicket') or
189                      $t->CurrentUserHasRight('ModifyTicket') ); 
190
191 $CanComment = 1 if ( $t->CurrentUserHasRight('CommentOnTicket') or
192                      $t->CurrentUserHasRight('ModifyTicket') ); 
193
194 ProcessAttachments(ARGSRef => \%ARGS);
195
196 # check email addresses for RT's
197 {
198     foreach my $field ( qw(UpdateCc UpdateBcc) ) {
199         my $value = $ARGS{ $field };
200         next unless defined $value && length $value;
201
202         my @emails = Email::Address->parse( $value );
203         foreach my $email ( grep RT::EmailParser->IsRTAddress($_->address), @emails ) {
204             push @results, loc("[_1] is an address RT receives mail at. Adding it as a '[_2]' would create a mail loop", $email->format, loc(substr($field, 6)) );
205             $checks_failure = 1;
206             $email = undef;
207         }
208         $ARGS{ $field } = join ', ', map $_->format, grep defined, @emails;
209     }
210 }
211
212 my $gnupg_widget = $m->comp('/Elements/GnuPG/SignEncryptWidget:new', Arguments => \%ARGS );
213 $m->comp( '/Elements/GnuPG/SignEncryptWidget:Process',
214     self => $gnupg_widget,
215     TicketObj => $t,
216 );
217
218 my $skip_update = 0;
219 $m->callback( CallbackName => 'BeforeUpdate', ARGSRef => \%ARGS, skip_update => \$skip_update,
220               checks_failure => $checks_failure, results => \@results, TicketObj => $t );
221
222 if ( !$checks_failure && !$skip_update && exists $ARGS{SubmitTicket} ) {
223     my $status = $m->comp('/Elements/GnuPG/SignEncryptWidget:Check',
224         self      => $gnupg_widget,
225         TicketObj => $t,
226     );
227     $checks_failure = 1 unless $status;
228     $m->callback( Ticket => $t, ARGSRef => \%ARGS, CallbackName => 'BeforeDisplay' );
229     return $m->comp('/m/ticket/show', TicketObj => $t, %ARGS);
230 }
231 </%INIT>
232
233 <%ARGS>
234 $id => undef
235 $Action => 'Respond'
236 $DefaultStatus => undef
237 </%ARGS>