import rt 3.6.4
[freeside.git] / rt / html / REST / 1.0 / Forms / transaction / default
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %# 
3 %# COPYRIGHT:
4 %#  
5 %# This software is Copyright (c) 1996-2007 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., 51 Franklin Street, Fifth Floor, Boston, MA
26 %# 02110-1301 or visit their web page on the internet at
27 %# http://www.gnu.org/copyleft/gpl.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 %# REST/1.0/Forms/transaction
49 %#
50 <%ARGS>
51 $id
52 $args => undef
53 $format => undef
54 $fields => undef
55 </%ARGS>
56 <%INIT>
57 my $trans = new RT::Transactions $session{CurrentUser};
58 my ($c, $o, $k, $e) = ("", [], {} , "");
59
60 chomp $args;
61 my @arglist = split('/', $args);
62 my $tid = $id;
63
64 $trans->Limit(FIELD => 'Id', OPERATOR => '=', VALUE => $tid);
65
66 if ($tid) {
67     my @data;
68     my $t = new RT::Transaction $session{CurrentUser};
69     $t->Load($tid);
70     if ($format eq "l") {
71       push @data, [ id    => $t->Id   ];
72       push @data, [ Ticket    => $t->Ticket   ]
73             if (!%$fields || exists $fields->{lc 'Ticket'});
74       push @data, [ TimeTaken    => $t->TimeTaken   ]
75             if (!%$fields || exists $fields->{lc 'TimeTaken'});
76       push @data, [ Type    => $t->Type   ]
77         if (!%$fields || exists $fields->{lc 'Type'});
78       push @data, [ Field    => $t->Field   ]
79         if (!%$fields || exists $fields->{lc 'Field'});
80       push @data, [ OldValue    => $t->OldValue   ]
81         if (!%$fields || exists $fields->{lc 'OldValue'});
82       push @data, [ NewValue    => $t->NewValue   ]
83         if (!%$fields || exists $fields->{lc 'NewValue'});
84       push @data, [ Data    => $t->Data   ]
85             if (!%$fields || exists $fields->{lc 'Data'});
86       push @data, [ Description    => $t->Description   ]
87             if (!%$fields || exists $fields->{lc 'Description'});
88       push @data, [ Content    => $t->Content   ]
89         if (!%$fields || exists $fields->{lc 'Content'});
90       
91       if (!%$fields || exists $fields->{lc 'Content'}) {    
92             my $creator = new RT::User $session{CurrentUser};
93             $creator->Load($t->Creator);
94             push @data, [ Creator    => $creator->Name   ];
95       }
96       push @data, [ Created    => $t->Created   ]
97             if (!%$fields || exists $fields->{lc 'Created'});
98   
99       if (!%$fields || exists $fields->{lc 'Attachments'}) {
100             my $attachlist;
101             my $attachments = $t->Attachments;
102             while (my $a = $attachments->Next) {
103               my $size = length($a->Content);
104               if ($size > 1024) {
105                 $size  = int($size/102.4)/10 . "k";
106               }
107               else {
108                 $size .= "b";
109               }
110               $attachlist .= "\n" . $a->Id.": ".($a->Filename || "untitled")." (".$size.")";
111             }
112             push @data, [Attachments => $attachlist];
113       }
114       
115     } else {
116       push @data, [ id    => $t->Id   ];
117       push @data, [ Description    => $t->Description   ];
118     }
119
120     my %k = map {@$_} @data;
121     $o = [ map {$_->[0]} @data ];
122     $k = \%k;
123 }
124 #else {
125 #    my (@data, $tids);
126 #    $format ||= "s";
127 #    $format = "l" if (%$fields);
128 #
129 #    while (my $t = $trans->Next) {
130 #           my $tid = $t->Id;
131 #           if ($format eq "l") {
132 #             $tids .= "," if $tids;
133 #             $tids .= $tid;
134 #           } else {
135 #             push @$o, $tid;
136 #             $k->{$tid} = $t->Description;
137 #           }
138 #    }
139 #}
140
141 return [ $c, $o, $k, $e ];
142
143 </%INIT>