fix bug with duplicate tickets showing up on customer view listing when the custom...
[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   my $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 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 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 ( status = 'new' OR status = 'open' OR status = 'stalled' )
135          AND target = 'freeside://freeside/cust_main/$custnum'
136          $where
137   ";
138
139   ( $sql, @param );
140
141 }
142
143 sub href_customer_tickets {
144   my( $self, $custnum, $priority ) = @_;
145
146   my $href = $self->baseurl;
147
148   #i snarfed this from an RT bookmarked search, it could be unescaped in the
149   #source for readability and run through uri_escape
150   $href .= 
151     'Search/Results.html?Order=ASC&Query=%20MemberOf%20%3D%20%27freeside%3A%2F%2Ffreeside%2Fcust_main%2F'.
152     $custnum.
153     '%27%20%20AND%20%28%20Status%20%3D%20%27open%27%20%20OR%20Status%20%3D%20%27new%27%20%20OR%20Status%20%3D%20%27stalled%27%20%29%20'
154   ;
155
156   if ( defined($priority) && $field && $priority_field_queue ) {
157     $href .= 'AND%20Queue%20%3D%20%27'. $priority_field_queue. '%27%20';
158   }
159   if ( defined($priority) && $field ) {
160     $href .= '%20AND%20%27CF.'. $field. '%27%20';
161     if ( $priority ) {
162       $href .= '%3D%20%27'. $priority. '%27%20';
163     } else {
164       $href .= 'IS%20%27NULL%27%20';
165     }
166   }
167
168   $href .= '&Rows=100'.
169            '&OrderBy=id&Page=1'.
170            '&Format=%27%20%20%20%3Cb%3E%3Ca%20href%3D%22'.
171            $self->baseurl.
172            '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'.
173            $self->baseurl.
174            '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';
175
176   if ( defined($priority) && $field ) {
177     $href .= '%0A%27__CustomField.'. $field. '__%2FTITLE%3ASeverity%27%2C%20';
178   }
179
180   $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';
181
182   if ( defined($priority) && $field ) {
183     $href .=   '%20%0A%27__-__%27%2C';
184   }
185
186   $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';
187
188   $href;
189
190 }
191
192 sub href_new_ticket {
193   my( $self, $custnum_or_cust_main, $requestors ) = @_;
194
195   my( $custnum, $cust_main );
196   if ( ref($custnum_or_cust_main) ) {
197     $cust_main = $custnum_or_cust_main;
198     $custnum = $cust_main->custnum;
199   } else {
200     $custnum = $custnum_or_cust_main;
201     $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } );
202   }
203   my $queueid = $cust_main->agent->ticketing_queueid || $default_queueid;
204
205   $self->baseurl.
206   'Ticket/Create.html?'.
207     "Queue=$queueid".
208     "&new-MemberOf=freeside://freeside/cust_main/$custnum".
209     ( $requestors ? '&Requestors='. uri_escape($requestors) : '' )
210     ;
211 }
212
213 sub href_ticket {
214   my($self, $ticketnum) = @_;
215   $self->baseurl. 'Ticket/Display.html?id='.$ticketnum;
216 }
217
218 sub queues {
219   my($self) = @_;
220
221   my $sql = "SELECT id, name FROM queues WHERE disabled = 0";
222   my $sth = $dbh->prepare($sql) or die $dbh->errstr. " preparing $sql";
223   $sth->execute()               or die $sth->errstr. " executing $sql";
224
225   map { $_->[0] => $_->[1] } @{ $sth->fetchall_arrayref([]) };
226
227 }
228
229 sub queue {
230   my($self, $queueid) = @_;
231
232   return '' unless $queueid;
233
234   my $sql = "SELECT name FROM queues WHERE id = ?";
235   my $sth = $dbh->prepare($sql) or die $dbh->errstr. " preparing $sql";
236   $sth->execute($queueid)       or die $sth->errstr. " executing $sql";
237
238   $sth->fetchrow_arrayref->[0];
239
240 }
241
242 sub baseurl {
243   #my $self = shift;
244   $external_url;
245 }
246
247 1;
248