import rt 3.2.2
[freeside.git] / rt / html / Ticket / Elements / ShowTransactionAttachments
1 %# {{{ BEGIN BPS TAGGED BLOCK
2 %# 
3 %# COPYRIGHT:
4 %#  
5 %# This software is Copyright (c) 1996-2004 Best Practical Solutions, LLC 
6 %#                                          <jesse@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., 675 Mass Ave, Cambridge, MA 02139, USA.
26 %# 
27 %# 
28 %# CONTRIBUTION SUBMISSION POLICY:
29 %# 
30 %# (The following paragraph is not intended to limit the rights granted
31 %# to you to modify and distribute this software under the terms of
32 %# the GNU General Public License and is only of importance to you if
33 %# you choose to contribute your changes and enhancements to the
34 %# community by submitting them to Best Practical Solutions, LLC.)
35 %# 
36 %# By intentionally submitting any modifications, corrections or
37 %# derivatives to this work, or any other work intended for use with
38 %# Request Tracker, to Best Practical Solutions, LLC, you confirm that
39 %# you are the copyright holder for those contributions and you grant
40 %# Best Practical Solutions,  LLC a nonexclusive, worldwide, irrevocable,
41 %# royalty-free, perpetual, license to use, copy, create derivative
42 %# works based on those contributions, and sublicense and distribute
43 %# those contributions and any derivatives thereof.
44 %# 
45 %# }}} END BPS TAGGED BLOCK
46 <%perl>
47 # Find all the attachments which have parent $Parent
48 # For each of these attachments
49 foreach my $message ( grep { $_->Parent == $Parent } @$Attachments ) {
50
51     # {{{    show the headers
52     my $headers = $message->Headers;
53     chomp $headers;
54
55     # localize the common headers (like 'Subject:'), too.
56     $headers =~ s/^([^:]+)(?=:)/loc($1)/em;
57     $m->comp(
58         'ShowMessageHeaders',
59         Headers        => $headers,
60         Transaction    => $Transaction,
61         DisplayHeaders => \@DisplayHeaders
62     );
63
64     # }}}
65     # {{{ if there's any size at all, show the download link
66     my $size = $message->ContentLength;
67     if ($size) {
68         
69 </%perl> 
70 <div class="downloadattachment">
71 <%perl>
72
73      #     show a download link
74      if ( $size > 1024 ) {
75          $size = loc( "[_1]k", int( $size / 102.4 ) / 10 );
76      }
77      else {
78         $size = loc( "[_1]b", $size );
79      }
80         
81 </%PERL> 
82 <A HREF="<%$AttachPath%>/<%$Transaction->Id%>/<%$message->Id%>/<%$message->Filename | u%>"><&|/l&>Download</&><%$message->Filename || loc('(untitled)') %></a> 
83 <div class="downloadcontenttype">
84 <%$message->ContentType%> <% $size %> 
85 </div> 
86 </div>
87 %}
88
89 % # }}}
90 <div class="messagebody">
91 <%perl>
92 # {{{   if it's got content-disposition inline, show it inline
93     my $content;
94
95     # If it's text
96     if ( $message->ContentType =~ m{^(text|message)}i ) {
97
98         if (
99
100             # it's a toplevel object
101             !$ParentObj
102
103             # or its parent isn't a multipart alternative
104             || ( $ParentObj->ContentType !~ m{^multipart/alternative$}i )
105
106             # or it's of our prefered alterative type
107             || (
108                 (
109                     $RT::PreferRichText
110                     && ( $message->ContentType =~ m{^text/(?:html|enriched)$} )
111                 )
112                 || ( !$RT::PreferRichText
113                     && ( $message->ContentType !~ m{^text/(?:html|enriched)$} )
114                 )
115             )
116           )
117         {
118
119             if ( $AttachmentContent->{ $message->id } ) {
120                 $content = $AttachmentContent->{ $message->id }->Content;
121             }
122             else {
123                 $content = $message->Content;
124             }
125
126             # if it's a text/html clean the body and show it
127             if ( $message->ContentType =~ m{^text/(?:html|enriched)$}i ) {
128                 $content =
129                   $m->comp( '/Elements/ScrubHTML', Content => $content );
130                 $m->out( $content );
131             }
132
133             # if it's a text/plain show the body
134             elsif ( $message->ContentType =~ m{^(text|message|text)}i ) {
135
136                 eval { $content = Text::Quoted::extract($content); };
137                 if ($@) { 1; }
138
139                 $m->comp(
140                     'ShowMessageStanza',
141                     Depth       => 0,
142                     Message     => $content,
143                     Transaction => $Transaction
144                 );
145             }
146         }
147
148     }
149         # if it's an image, show it as an image
150         elsif ( $message->ContentType =~ /^image\//i ) {
151             $m->out('<img src="'
152                   . $AttachPath . '/'
153                   . $Transaction->Id . '/'
154                   . $message->Id
155                   . '/">' );
156         }
157
158
159     # }}}
160
161     $m->comp( 'ShowTransactionAttachments', %ARGS,
162           Parent    => $message->id,
163           ParentObj => $message );
164
165
166 }
167 </%PERL>
168 </div>
169 <%ARGS>
170 $Ticket => undef
171 $Transaction => undef
172 $ShowHeaders => 0
173 $Collapsed => undef
174 $ShowTitleBarCommands => 1
175 $RowNum => 1
176 $AttachPath => $RT::WebPath."/Ticket/Attachment"
177 $UpdatePath => $RT::WebPath."/Ticket/Update.html"
178 $EmailRecordPath => $RT::WebPath."/Ticket/ShowEmailRecord.html"
179 $Attachments => undef
180 $AttachmentContent => undef
181 $ShowBody => 1
182 $Parent => 0
183 $ParentObj => 0
184 </%ARGS>
185 <%INIT>
186 my @DisplayHeaders=qw( _all);
187
188 if ( $Transaction->Type =~ /EmailRecord$/ ) {
189     @DisplayHeaders = qw(To Cc Bcc);
190 }
191
192 # If the transaction has anything attached to it at all
193 elsif (!$ShowHeaders)  {
194         @DisplayHeaders = qw(To From RT-Send-Cc Cc Bcc Date Subject);
195 }
196 </%INIT>