import rt 3.8.7
[freeside.git] / rt / share / html / REST / 1.0 / search / ticket
1 %# BEGIN BPS TAGGED BLOCK {{{
2 %# 
3 %# COPYRIGHT:
4 %# 
5 %# This software is Copyright (c) 1996-2009 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/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/search/ticket
49 %#
50 <%ARGS>
51 $query
52 $format => undef
53 $orderby => undef
54 $fields => undef
55 </%ARGS>
56 <%INIT>
57 use RT::Interface::REST;
58 my $output = "";
59 my $status = "200 Ok";
60 my $tickets = new RT::Tickets $session{CurrentUser};
61
62 # Parse and validate any field specifications.
63 my $field  = RT::Interface::REST->field_spec;
64 my (%fields, @fields);
65 if ($fields) {
66     $format ||= "l";
67     unless ($fields =~ /^(?:$field,)*$field$/) {
68         $status = "400 Bad Request";
69         $output = "Invalid field specification: $fields";
70         goto OUTPUT;
71     }
72     @fields = map lc, split /,/, $fields;
73     @fields{@fields} = ();
74     unless (exists $fields{id}) {
75         unshift @fields, "id";
76         $fields{id} = ();
77     }
78 }
79
80 $format ||= "s";
81 if ($format !~ /^[isl]$/) {
82     $status = "400 Bad request";
83     $output = "Unknown listing format: $format. (Use i, s, or l.)\n";
84     goto OUTPUT;
85 }
86
87 my ($n, $s);
88 eval {
89     ($n, $s) = $tickets->FromSQL($query);
90 };
91 my $sortstring = "";
92 if ($orderby) {
93     $sortstring = 'FIELD => ';
94     my $order = substr($orderby, 0, 1);
95     if ($order eq '+' || $order eq '-') {
96         $sortstring .= 'substr($orderby, 1)';
97         if ($order eq '+') {
98             $sortstring .= ", ORDER => 'ASC'";
99         } elsif ($order eq '-') {
100             $sortstring .= ", ORDER => 'DESC'";
101         }
102     } else {
103         $sortstring .= '$orderby';
104     }
105     my $foo = 'FIELD => ';
106     $foo .= '$orderby';
107     $tickets->OrderBy(eval $sortstring);
108 }
109 if ($@ || $n == 0) {
110     $s ||= $@;
111     $status = "400 Bad request";
112     $output = "Invalid query: '$s'.\n";
113     goto OUTPUT;
114 }
115
116 $n = 0;
117 my @output;
118 while (my $ticket = $tickets->Next) {
119     $n++;
120
121         my $id = $ticket->Id;
122     if ($format eq "i") {
123         $output .= "ticket/" . $id . "\n";
124     }
125     elsif ($format eq "s") {
126         if ($fields) {
127                 my $result = $m->comp("/REST/1.0/Forms/ticket/default", id => $id, format => $format, fields => \%fields);
128                 my ($notes, $order, $key_values, $errors) = @$result;
129                 # If it's the first time through, add our header
130                 if ($n == 1) {
131                         $output .= join("\t",@$order)."\n";
132                 }
133                 # Cut off the annoying ticket/ before the id;
134                 $key_values->{'id'} = $id;
135                 $output .= join("\t", map {$key_values->{$_}} @$order)."\n";
136         
137
138         } else {        
139                 $output .= $ticket->Id . ": ". $ticket->Subject . "\n";
140         }
141     }
142     else {
143         my $d = $m->comp("/REST/1.0/Forms/ticket/default", id => $id, format => $format, fields => \%fields);
144         my ($c, $o, $k, $e) = @$d;
145         push @output, [ $c, $o, $k ];
146     }
147 }
148 if ($n == 0 && $format ne "i") {
149     $output = "No matching results.\n";
150 }
151
152 $output = form_compose(\@output) if @output;
153
154 OUTPUT:
155 $m->out("RT/". $RT::VERSION . " " . $status ."\n\n");
156
157 $m->out($output );
158 return();
159 </%INIT>