This commit was generated by cvs2svn to compensate for changes in r4888,
[freeside.git] / FS / FS / TicketSystem / RT_External.pm
1 package FS::TicketSystem::RT_External;
2
3 use strict;
4 use vars qw( $conf $default_queueid
5              $priority_field $priority_field_queue $field
6              $dbh $external_url );
7 use URI::Escape;
8 use FS::UID qw(dbh);
9 use FS::Record qw(qsearchs);
10 use FS::cust_main;
11
12 FS::UID->install_callback( sub { 
13   $conf = new FS::Conf;
14   $default_queueid = $conf->config('ticket_system-default_queueid');
15   $priority_field =
16     $conf->config('ticket_system-custom_priority_field');
17   if ( $priority_field ) {
18     $priority_field_queue =
19       $conf->config('ticket_system-custom_priority_field_queue');
20     $field = $priority_field_queue
21                   ? $priority_field_queue. '.%7B'. $priority_field. '%7D'
22                   : $priority_field;
23   } else {
24     $priority_field_queue = '';
25     $field = '';
26   }
27
28   $external_url = '';
29   $dbh = dbh;
30   if ($conf->config('ticket_system') eq 'RT_External') {
31     my ($datasrc, $user, $pass) = $conf->config('ticket_system-rt_external_datasrc');
32     $dbh = DBI->connect($datasrc, $user, $pass, { 'ChopBlanks' => 1 })
33       or die "RT_External DBI->connect error: $DBI::errstr\n";
34
35     $external_url = $conf->config('ticket_system-rt_external_url');
36   }
37
38 } );
39
40 sub num_customer_tickets {
41   my( $self, $custnum, $priority ) = @_;
42
43   my( $from_sql, @param) = $self->_from_customer( $custnum, $priority );
44
45   my $sql = "SELECT COUNT(*) $from_sql";
46   my $sth = $dbh->prepare($sql) or die $dbh->errstr. " preparing $sql";
47   $sth->execute(@param)         or die $sth->errstr. " executing $sql";
48
49   $sth->fetchrow_arrayref->[0];
50
51 }
52
53 sub customer_tickets {
54   my( $self, $custnum, $limit, $priority ) = @_;
55   $limit ||= 0;
56
57   my( $from_sql, @param) = $self->_from_customer( $custnum, $priority );
58   my $sql = "SELECT tickets.*, queues.name".
59             ( length($priority) ? ", objectcustomfieldvalues.content" : '' ).
60             " $from_sql ORDER BY priority, id DESC LIMIT $limit";
61   my $sth = $dbh->prepare($sql) or die $dbh->errstr. "preparing $sql";
62   $sth->execute(@param)         or die $sth->errstr. "executing $sql";
63
64   #munge column names???  #httemplate/view/cust_main/tickets.html has column
65   #names that might not make sense now...
66   $sth->fetchall_arrayref({});
67
68 }
69
70 sub _from_customer {
71   my( $self, $custnum, $priority ) = @_;
72
73   my @param = ();
74   my $join = '';
75   my $where = '';
76   if ( defined($priority) ) {
77
78     my $queue_sql = " ObjectCustomFields.ObjectId = ( SELECT id FROM queues
79                                                        WHERE queues.name = ? )
80                       OR ( ? = '' AND ObjectCustomFields.ObjectId = 0 )";
81
82     my $customfield_sql =
83       "customfield = ( 
84         SELECT CustomFields.Id FROM CustomFields
85                   JOIN ObjectCustomFields
86                     ON ( CustomFields.id = ObjectCustomFields.CustomField )
87          WHERE LookupType = 'RT::Queue-RT::Ticket'
88            AND name = ?
89            AND ( $queue_sql )
90        )";
91
92     push @param, $priority_field,
93                  $priority_field_queue,
94                  $priority_field_queue;
95
96     if ( length($priority) ) {
97       #$where = "    
98       #  and ? = ( select content from TicketCustomFieldValues
99       #             where ticket = tickets.id
100       #               and customfield = ( select id from customfields
101       #                                    where name = ?
102       #                                      and ( $queue_sql )
103       #                                 )
104       #          )
105       #";
106       unshift @param, $priority;
107
108       $join = "JOIN ObjectCustomFieldValues
109                  ON ( tickets.id = ObjectCustomFieldValues.ObjectId )";
110       
111       $where = " AND content = ?
112                  AND ObjectCustomFieldValues.disabled != 1
113                  AND ObjectType = 'RT::Ticket'
114                  AND $customfield_sql";
115
116     } else {
117
118       $where =
119                "AND 0 = ( SELECT count(*) FROM ObjectCustomFieldValues
120                            WHERE ObjectId    = tickets.id
121                              AND ObjectType  = 'RT::Ticket'
122                              AND $customfield_sql
123                         )
124                ";
125     }
126
127   }
128
129   my $sql = "
130                     FROM tickets
131                     JOIN queues ON ( tickets.queue = queues.id )
132                     JOIN links ON ( tickets.id = links.localbase )
133                     $join 
134        WHERE ( ". join(' OR ', map "status = '$_'", $self->statuses ). " )
135          AND target = 'freeside://freeside/cust_main/$custnum'
136          $where
137   ";
138
139   ( $sql, @param );
140
141 }
142
143 sub statuses {
144   #my $self = shift;
145   my @statuses = grep { ! /^\s*$/ } $conf->config('cust_main-ticket_statuses');
146   @statuses = (qw( new open stalled )) unless scalar(@statuses);
147   @statuses;
148 }
149
150 sub href_customer_tickets {
151   my( $self, $custnum, $priority ) = @_;
152
153   #my $href = $self->baseurl;
154
155   #i snarfed this from an RT bookmarked search, then unescaped (some of) it with
156   #perl -npe 's/%([0-9A-F]{2})/pack('C', hex($1))/eg;'
157
158   my $href .= 
159     "Search/Results.html?Order=ASC&".
160     "Query= MemberOf = 'freeside://freeside/cust_main/$custnum' ".
161     #" AND ( Status = 'open'  OR Status = 'new'  OR Status = 'stalled' )"
162     " AND ( ". join(' OR ', map "Status = '$_'", $self->statuses ). " ) "
163   ;
164
165   if ( defined($priority) && $field && $priority_field_queue ) {
166     $href .= " AND Queue = '$priority_field_queue' ";
167   }
168   if ( defined($priority) && $field ) {
169     $href .= " AND 'CF.$field' ";
170     if ( $priority ) {
171       $href .= "= '$priority' ";
172     } else {
173       $href .= "IS 'NULL' "; #this is "RTQL", not SQL
174     }
175   }
176
177   #$href = 
178   uri_escape($href);
179   #eventually should unescape all of it...
180
181   $href .= '&Rows=100'.
182            '&OrderBy=id&Page=1'.
183            '&Format=%27%20%20%20%3Cb%3E%3Ca%20href%3D%22'.
184            $self->baseurl.
185            'Ticket%2FDisplay.html%3Fid%3D__id__%22%3E__id__%3C%2Fa%3E%3C%2Fb%3E%2FTITLE%3A%23%27%2C%20%0A%27%3Cb%3E%3Ca%20href%3D%22'.
186            $self->baseurl.
187            'Ticket%2FDisplay.html%3Fid%3D__id__%22%3E__Subject__%3C%2Fa%3E%3C%2Fb%3E%2FTITLE%3ASubject%27%2C%20%0A%27__Status__%27%2C%20';
188
189   if ( defined($priority) && $field ) {
190     $href .= '%0A%27__CustomField.'. $field. '__%2FTITLE%3ASeverity%27%2C%20';
191   }
192
193   $href .= '%0A%27__QueueName__%27%2C%20%0A%27__OwnerName__%27%2C%20%0A%27__Priority__%27%2C%20%0A%27__NEWLINE__%27%2C%20%0A%27%27%2C%20%0A%27%3Csmall%3E__Requestors__%3C%2Fsmall%3E%27%2C%20%0A%27%3Csmall%3E__CreatedRelative__%3C%2Fsmall%3E%27%2C';
194
195   if ( defined($priority) && $field ) {
196     $href .=   '%20%0A%27__-__%27%2C';
197   }
198
199   $href .= '%20%0A%27%3Csmall%3E__ToldRelative__%3C%2Fsmall%3E%27%2C%20%0A%27%3Csmall%3E__LastUpdatedRelative__%3C%2Fsmall%3E%27%2C%20%0A%27%3Csmall%3E__TimeLeft__%3C%2Fsmall%3E%27';
200
201   #$href =
202   #uri_escape($href);
203
204   $self->baseurl. $href;
205
206 }
207
208 sub href_new_ticket {
209   my( $self, $custnum_or_cust_main, $requestors ) = @_;
210
211   my( $custnum, $cust_main );
212   if ( ref($custnum_or_cust_main) ) {
213     $cust_main = $custnum_or_cust_main;
214     $custnum = $cust_main->custnum;
215   } else {
216     $custnum = $custnum_or_cust_main;
217     $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } );
218   }
219   my $queueid = $cust_main->agent->ticketing_queueid || $default_queueid;
220
221   $self->baseurl.
222   'Ticket/Create.html?'.
223     "Queue=$queueid".
224     "&new-MemberOf=freeside://freeside/cust_main/$custnum".
225     ( $requestors ? '&Requestors='. uri_escape($requestors) : '' )
226     ;
227 }
228
229 sub href_ticket {
230   my($self, $ticketnum) = @_;
231   $self->baseurl. 'Ticket/Display.html?id='.$ticketnum;
232 }
233
234 sub queues {
235   my($self) = @_;
236
237   my $sql = "SELECT id, name FROM queues WHERE disabled = 0";
238   my $sth = $dbh->prepare($sql) or die $dbh->errstr. " preparing $sql";
239   $sth->execute()               or die $sth->errstr. " executing $sql";
240
241   map { $_->[0] => $_->[1] } @{ $sth->fetchall_arrayref([]) };
242
243 }
244
245 sub queue {
246   my($self, $queueid) = @_;
247
248   return '' unless $queueid;
249
250   my $sql = "SELECT name FROM queues WHERE id = ?";
251   my $sth = $dbh->prepare($sql) or die $dbh->errstr. " preparing $sql";
252   $sth->execute($queueid)       or die $sth->errstr. " executing $sql";
253
254   $sth->fetchrow_arrayref->[0];
255
256 }
257
258 sub baseurl {
259   #my $self = shift;
260   $external_url;
261 }
262
263 1;
264