summaryrefslogtreecommitdiff
path: root/rt/webrt/Ticket/Elements/ShowTransaction
blob: a0da008b3aac5e2aed61fac1af38be37401f84e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<TR bgcolor="<%$rowbgcolor%>">
<TD bgcolor="<%$bgcolor%>"><A NAME="#<%$Transaction->Id%>"></A>&nbsp&nbsp;</TD>
<TD>&nbsp&nbsp;</TD>
<TD><font size=-2><% $transdate|n %></font>&nbsp;</TD>
<TD ALIGN="LEFT"><b><%$Transaction->CreatorObj->Name%> - <%$TicketString%> <%$Transaction->BriefDescription%>

</b></TD>
<TD><%$TimeTaken%>&nbsp;</TD>
<TD ALIGN="RIGHT"><font size=-1><%$titlebar_commands|n%></font></TD>
</TR>
<%PERL>

unless ($Collapsed) {
 $attachments->GotoFirstItem;
 while (my $message=$attachments->Next) {
     #we don't want to show any empty transactions, unless they have kids
     next unless (length $message->Content || $message->Children->Count);
     my ($headers, $content);
     
    </%PERL>


<%PERL>
  if ($message->Parent == 0) {
      if ($ShowHeaders == $Ticket->Id) {
	  $headers = $message->Headers;
      } else {
	  $headers = $message->NiceHeaders;
      }
      chomp $headers;
      $headers .= "\n\n" if ($headers);
  }
     # 13456 is a random # of about the biggest size we want to see inline text
     my $MAX_INLINE_BODY = 13456;
     if ($message->ContentType =~ m{^(text/plain|message|text$)}i && 
				    length($message->Content)< $MAX_INLINE_BODY ) {

	 $content = $message->Content;

	 my $wrapper = new Text::Wrapper (columns=>85);
	 $content = $wrapper->wrap($content);
         $content =~ s/&/&amp;/g;
	 $content =~ s/</&lt;/g;
	 $content =~ s/>/&gt;/g;
         $content =~ s!((?:http|https|ftp|mailto):\S*?)([\s"']|&gt;|\.[\n])!<A HREF=\"$1\" TARGET=new>$1</A>$2!g;


     }
     else {
	 $content = "&nbsp;";
     }
        
</%PERL>
<TR BGCOLOR="<%$rowbgcolor%>">
      <TD BGCOLOR="<%$bgcolor%>">&nbsp;&nbsp;</TD>
      <TD>&nbsp&nbsp;</TD>
      <TD COLSPAN=3 VALIGN=TOP>
	<PRE>
<%$headers%><%$content|n%>
</PRE>
      </TD>
      <TD VALIGN=TOP ALIGN=RIGHT>
	
% if ($message->Parent == 0  ) {
<BR>
% }
<%PERL>
my $size = length($message->Content());

if ($size) {
    if ($size > 1024) {
	$size = int($size/102.4)/10 . "k";
    }
    else {
	$size = $size ."b";
    }
</%PERL>
<font size=-1><A HREF="Attachment/<%$Transaction->Id%>/<%$message->Id%>/<%$message->Filename%>">Download <%$message->Filename|| '(untitled)'%></a> <% $size %></font>
% }
</TD>
</TR>
% }
% }



<%ARGS>
$Ticket => undef
$Transaction => undef
$ShowHeaders => undef
$Collapsed => undef
$ShowTitleBarCommands => 1
$RowNum => 1
</%ARGS>

<%INIT>


my ($TimeTaken, $TicketString, $bgcolor, $rowbgcolor);

my $transdate = $Transaction->CreatedAsString();
$transdate =~ s/\s/&nbsp;/g;

if ($RowNum % 2) {
	$rowbgcolor="#cccccc";
} else {
	$rowbgcolor="#ffffff";
}

if ($Transaction->Type =~ /^(Create|Correspond|Comment$)/) {
	if ($Transaction->IsInbound) {
		$bgcolor="#336699";
	}
	else {
		$bgcolor="#339999";
	}
} elsif (($Transaction->Field =~ /^Owner$/) or 
	 ($Transaction->Type =~ /^(AddWatcher|DelWatcher)$/)) {
	$bgcolor="#333399";

} elsif ($Transaction->Type =~ /^(AddLink|DeleteLink)$/) {
	$bgcolor="#336633";
} elsif ($Transaction->Type =~ /^(Status|Set|Keyword|Told)$/) {
	if ($Transaction->Field =~ /^(Told|Starts|Started|Due)$/) {
		$bgcolor="#663366";	
	}
	else {
		$bgcolor="#993333";
	}
}
else {
	$bgcolor="#cccccc";
}

if ($Ticket->Id != $Transaction->Ticket) {
	$TicketString = "Ticket ".$Transaction->Ticket .": ";
}

if ($Transaction->TimeTaken > 0) {
	$TimeTaken = $Transaction->TimeTaken." min"
}
my $attachments = $Transaction->Attachments;

my $titlebar_commands='&nbsp;';

# If the transaction has anything attached to it at all
if ($Transaction->Message->First && $ShowTitleBarCommands) {
	if ($Transaction->TicketObj->CurrentUserHasRight('ReplyToTicket')) {
		$titlebar_commands .= 
	  	  "[<a href=\"Update.html?id=".
		  $Transaction->Ticket . "&QuoteTransaction=".$Transaction->Id.
		  "&Action=Respond\">Reply</a>]&nbsp;";
	}
	if ($Transaction->TicketObj->CurrentUserHasRight('CommentOnTicket')) {
	     $titlebar_commands .= 
	     "[<a href=\"Update.html?id=".$Transaction->Ticket. 
	     "&QuoteTransaction=".$Transaction->Id.
	     "&Action=Comment\">Comment</a>]";
	}
}

</%INIT>