starting to work...
[freeside.git] / rt / share / html / REST / 1.0 / Forms / transaction / default
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 %# 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 = RT::Transactions->new($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 = RT::Transaction->new($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 = RT::User->new($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               my $name = (defined $a->Filename and length $a->Filename) ? $a->Filename : "untitled";
111               $attachlist .= "\n" . $a->Id.": $name ($size)";
112             }
113             push @data, [Attachments => $attachlist];
114       }
115       
116     } else {
117       push @data, [ id    => $t->Id   ];
118       push @data, [ Description    => $t->Description   ];
119     }
120
121     my %k = map {@$_} @data;
122     $o = [ map {$_->[0]} @data ];
123     $k = \%k;
124 }
125 #else {
126 #    my (@data, $tids);
127 #    $format ||= "s";
128 #    $format = "l" if (%$fields);
129 #
130 #    while (my $t = $trans->Next) {
131 #           my $tid = $t->Id;
132 #           if ($format eq "l") {
133 #             $tids .= "," if $tids;
134 #             $tids .= $tid;
135 #           } else {
136 #             push @$o, $tid;
137 #             $k->{$tid} = $t->Description;
138 #           }
139 #    }
140 #}
141
142 return [ $c, $o, $k, $e ];
143
144 </%INIT>