voip.ms export, #31834
[freeside.git] / FS / FS / svc_phone.pm
1 package FS::svc_phone;
2 use base qw( FS::svc_Domain_Mixin FS::svc_PBX_Mixin 
3              FS::location_Mixin
4              FS::svc_Common
5            );
6
7 use strict;
8 use vars qw( $DEBUG $me @pw_set $conf $phone_name_max
9              $passwordmin $passwordmax
10            );
11 use Data::Dumper;
12 use Scalar::Util qw( blessed );
13 use List::Util qw( min );
14 use Tie::IxHash;
15 use FS::Conf;
16 use FS::Record qw( qsearch qsearchs dbh );
17 use FS::PagedSearch qw( psearch );
18 use FS::Msgcat qw(gettext);
19 use FS::part_svc;
20 use FS::svc_pbx;
21 use FS::svc_domain;
22 use FS::cust_location;
23 use FS::phone_avail;
24
25 $me = '[' . __PACKAGE__ . ']';
26 $DEBUG = 0;
27
28 #avoid l 1 and o O 0
29 @pw_set = ( 'a'..'k', 'm','n', 'p-z', 'A'..'N', 'P'..'Z' , '2'..'9' );
30
31 #ask FS::UID to run this stuff for us later
32 FS::UID->install_callback( sub { 
33   $conf = new FS::Conf;
34   $phone_name_max = $conf->config('svc_phone-phone_name-max_length');
35   $passwordmin = $conf->config('sip_passwordmin') || 0;
36   $passwordmax = $conf->config('sip_passwordmax') || 80;
37 }
38 );
39
40 =head1 NAME
41
42 FS::svc_phone - Object methods for svc_phone records
43
44 =head1 SYNOPSIS
45
46   use FS::svc_phone;
47
48   $record = new FS::svc_phone \%hash;
49   $record = new FS::svc_phone { 'column' => 'value' };
50
51   $error = $record->insert;
52
53   $error = $new_record->replace($old_record);
54
55   $error = $record->delete;
56
57   $error = $record->check;
58
59   $error = $record->suspend;
60
61   $error = $record->unsuspend;
62
63   $error = $record->cancel;
64
65 =head1 DESCRIPTION
66
67 An FS::svc_phone object represents a phone number.  FS::svc_phone inherits
68 from FS::Record.  The following fields are currently supported:
69
70 =over 4
71
72 =item svcnum
73
74 primary key
75
76 =item countrycode
77
78 =item phonenum
79
80 =item sim_imsi
81
82 SIM IMSI (http://en.wikipedia.org/wiki/International_mobile_subscriber_identity)
83
84 =item sip_password
85
86 =item pin
87
88 Voicemail PIN
89
90 =item phone_name
91
92 =item pbxsvc
93
94 Optional svcnum from svc_pbx
95
96 =item forwarddst
97
98 Forwarding destination
99
100 =item email
101
102 Email address for virtual fax (fax-to-email) services
103
104 =item lnp_status
105
106 LNP Status (can be null, native, portedin, portingin, portin-reject,
107 portingout, portout-reject)
108
109 =item portable
110
111 =item lrn
112
113 =item lnp_desired_due_date
114
115 =item lnp_due_date
116
117 =item lnp_other_provider
118
119 If porting the number in or out, name of the losing or winning provider, 
120 respectively.
121
122 =item lnp_other_provider_account
123
124 Account number of other provider. See lnp_other_provider.
125
126 =item lnp_reject_reason
127
128 See lnp_status. If lnp_status is portin-reject or portout-reject, this is an
129 optional reject reason.
130
131 =item e911_class
132
133 Class of Service for E911 service (per the NENA 2.1 standard).
134
135 =item e911_type
136
137 Type of Service for E911 service.
138
139 =item circuit_svcnum
140
141 The L<FS::svc_circuit> record for the physical circuit that transports this
142 phone line.
143
144 =item sip_server
145
146 The hostname of the SIP server that this phone number is routed to.
147
148 =back
149
150 =head1 METHODS
151
152 =over 4
153
154 =item new HASHREF
155
156 Creates a new phone number.  To add the number to the database, see L<"insert">.
157
158 Note that this stores the hash reference, not a distinct copy of the hash it
159 points to.  You can ask the object for a copy with the I<hash> method.
160
161 =cut
162
163 # the new method can be inherited from FS::Record, if a table method is defined
164 #
165 sub table_info {
166  my %dis2 = ( disable_inventory=>1, disable_select=>1 );
167   {
168     'name' => 'Phone number',
169     'sorts' => 'phonenum',
170     'display_weight' => 60,
171     'cancel_weight'  => 80,
172     'fields' => {
173         'svcnum'       => 'Service',
174         'countrycode'  => { label => 'Country code',
175                             type  => 'text',
176                             disable_inventory => 1,
177                             disable_select => 1,
178                           },
179         'phonenum'     => 'Phone number',
180         'sim_imsi'     => 'IMSI', #http://en.wikipedia.org/wiki/International_mobile_subscriber_identity
181         'pin'          => { label => 'Voicemail PIN', #'Personal Identification Number',
182                             type  => 'text',
183                             disable_inventory => 1,
184                             disable_select => 1,
185                           },
186         'sip_password' => 'SIP password',
187         'phone_name'   => 'Name',
188         'pbxsvc'       => { label => 'PBX',
189                             type  => 'select-svc_pbx.html',
190                             disable_inventory => 1,
191                             disable_select => 1, #UI wonky, pry works otherwise
192                           },
193         'domsvc'    => {
194                          label     => 'Domain',
195                          type      => 'select',
196                          select_table => 'svc_domain',
197                          select_key   => 'svcnum',
198                          select_label => 'domain',
199                          disable_inventory => 1,
200                        },
201         'circuit_svcnum'   => { label             => 'Circuit',
202                                 type              => 'select',
203                                 select_table      => 'svc_domain',
204                                 select_key        => 'svcnum',
205                                 select_label      => 'circuit_label',
206                                 disable_inventory => 1,
207                               },
208
209         'sms_carrierid'    => { label             => 'SMS Carrier',
210                                 type              => 'select',
211                                 select_table      => 'cdr_carrier',
212                                 select_key        => 'carrierid',
213                                 select_label      => 'carriername',
214                                 disable_inventory => 1,
215                               },
216         'sms_account'      => { label => 'SMS Carrier Account', },
217         'max_simultaneous' => { label=>'Maximum number of simultaneous users' },
218         'locationnum' => {
219                            label => 'E911 location',
220                            disable_inventory => 1,
221                            disable_select    => 1,
222                          },
223         'forwarddst' => {       label => 'Forward Destination', 
224                                 %dis2,
225                         },
226         'email' => {            label => 'Email',
227                                 %dis2,
228                     },
229         'lnp_status' => {       label => 'LNP Status',
230                                 type => 'select-lnp_status.html',
231                                 %dis2,
232                         },
233         'lnp_reject_reason' => { 
234                                 label => 'LNP Reject Reason',
235                                 %dis2,
236                         },
237         'portable' =>   {       label => 'Portable?', %dis2, },
238         'lrn'   =>      {       label => 'LRN', 
239                                 disable_inventory => 1, 
240                         },
241         'lnp_desired_due_date' =>
242                         { label => 'LNP Desired Due Date', %dis2 },
243         'lnp_due_date' =>
244                         { label => 'LNP Due Date', %dis2 },
245         'lnp_other_provider' =>
246                         {       label => 'LNP Other Provider', 
247                                 disable_inventory => 1, 
248                         },
249         'lnp_other_provider_account' =>
250                         {       label => 'LNP Other Provider Account #', 
251                                 %dis2 
252                         },
253         'e911_class' => {
254                                 label => 'E911 Service Class',
255                                 type  => 'select-e911_class',
256                                 disable_inventory => 1,
257                                 multiple => 1,
258                         },
259         'e911_type' => {
260                                 label => 'E911 Service Type',
261                                 type  => 'select-e911_type',
262                                 disable_inventory => 1,
263                                 multiple => 1,
264                         },
265         'sip_server'  => {
266                                 label => 'SIP Host',
267                                 %dis2,
268                          },
269     },
270   };
271 }
272
273 sub table { 'svc_phone'; }
274
275 sub table_dupcheck_fields { ( 'countrycode', 'phonenum' ); }
276
277 =item search_sql STRING
278
279 Class method which returns an SQL fragment to search for the given string.
280
281 =cut
282
283 sub search_sql {
284   my( $class, $string ) = @_;
285
286   #my $conf = new FS::Conf;
287
288   if ( $conf->exists('svc_phone-allow_alpha_phonenum') ) {
289     $string =~ s/\W//g;
290   } else {
291     $string =~ s/\D//g;
292   }
293
294   my $ccode = (    $conf->exists('default_phone_countrycode')
295                 && $conf->config('default_phone_countrycode')
296               )
297                 ? $conf->config('default_phone_countrycode') 
298                 : '1';
299
300   $string =~ s/^$ccode//;
301
302   $class->search_sql_field('phonenum', $string );
303 }
304
305 =item label
306
307 Returns the phone number.
308
309 =cut
310
311 sub label {
312   my $self = shift;
313   my $phonenum = $self->phonenum; #XXX format it better
314   my $label = $phonenum;
315   $label .= '@'.$self->domain if $self->domsvc;
316   $label .= ' ('.$self->phone_name.')' if $self->phone_name;
317   $label;
318 }
319
320 =item insert
321
322 Adds this phone number to the database.  If there is an error, returns the
323 error, otherwise returns false.
324
325 =cut
326
327 sub insert {
328   my $self = shift;
329   my %options = @_;
330
331   if ( $DEBUG ) {
332     warn "[$me] insert called on $self: ". Dumper($self).
333          "\nwith options: ". Dumper(%options);
334   }
335
336   local $SIG{HUP} = 'IGNORE';
337   local $SIG{INT} = 'IGNORE';
338   local $SIG{QUIT} = 'IGNORE';
339   local $SIG{TERM} = 'IGNORE';
340   local $SIG{TSTP} = 'IGNORE';
341   local $SIG{PIPE} = 'IGNORE';
342
343   my $oldAutoCommit = $FS::UID::AutoCommit;
344   local $FS::UID::AutoCommit = 0;
345   my $dbh = dbh;
346
347   #false laziness w/cust_pkg.pm... move this to location_Mixin?  that would
348   #make it more of a base class than a mixin... :)
349   if ( $options{'cust_location'} ) {
350     my $error = $options{'cust_location'}->find_or_insert;
351     if ( $error ) {
352       $dbh->rollback if $oldAutoCommit;
353       return "inserting cust_location (transaction rolled back): $error";
354     }
355     $self->locationnum( $options{'cust_location'}->locationnum );
356   }
357   #what about on-the-fly edits?  if the ui supports it?
358
359   my $error = $self->SUPER::insert(%options);
360   if ( $error ) {
361     $dbh->rollback if $oldAutoCommit;
362     return $error;
363   }
364
365   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
366   '';
367
368 }
369
370 =item delete
371
372 Delete this record from the database.
373
374 =cut
375
376 sub delete {
377   my $self = shift;
378
379   local $SIG{HUP} = 'IGNORE';
380   local $SIG{INT} = 'IGNORE';
381   local $SIG{QUIT} = 'IGNORE';
382   local $SIG{TERM} = 'IGNORE';
383   local $SIG{TSTP} = 'IGNORE';
384   local $SIG{PIPE} = 'IGNORE';
385
386   my $oldAutoCommit = $FS::UID::AutoCommit;
387   local $FS::UID::AutoCommit = 0;
388   my $dbh = dbh;
389
390   foreach my $phone_device ( $self->phone_device ) {
391     my $error = $phone_device->delete;
392     if ( $error ) {
393       $dbh->rollback if $oldAutoCommit;
394       return $error;
395     }
396   }
397
398   my @phone_avail = qsearch('phone_avail', { 'svcnum' => $self->svcnum } );
399   foreach my $phone_avail ( @phone_avail ) {
400     $phone_avail->svcnum('');
401     my $error = $phone_avail->replace;
402     if ( $error ) {
403       $dbh->rollback if $oldAutoCommit;
404       return $error;
405     }
406   }
407
408   my $error = $self->SUPER::delete;
409   if ( $error ) {
410     $dbh->rollback if $oldAutoCommit;
411     return $error;
412   }
413
414   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
415   '';
416
417 }
418
419 =item replace OLD_RECORD
420
421 Replaces the OLD_RECORD with this one in the database.  If there is an error,
422 returns the error, otherwise returns false.
423
424 =cut
425
426 sub replace {
427   my $new = shift;
428
429   my $old = ( blessed($_[0]) && $_[0]->isa('FS::Record') )
430               ? shift
431               : $new->replace_old;
432
433   my %options = @_;
434
435   if ( $DEBUG ) {
436     warn "[$me] replacing $old with $new\n".
437          "\nwith options: ". Dumper(%options);
438   }
439
440   local $SIG{HUP} = 'IGNORE';
441   local $SIG{INT} = 'IGNORE';
442   local $SIG{QUIT} = 'IGNORE';
443   local $SIG{TERM} = 'IGNORE';
444   local $SIG{TSTP} = 'IGNORE';
445   local $SIG{PIPE} = 'IGNORE';
446
447   my $oldAutoCommit = $FS::UID::AutoCommit;
448   local $FS::UID::AutoCommit = 0;
449   my $dbh = dbh;
450
451   #false laziness w/cust_pkg.pm... move this to location_Mixin?  that would
452   #make it more of a base class than a mixin... :)
453   if ( $options{'cust_location'}
454          && ( ! $new->locationnum || $new->locationnum == -1 ) ) {
455     my $error = $options{'cust_location'}->insert;
456     if ( $error ) {
457       $dbh->rollback if $oldAutoCommit;
458       return "inserting cust_location (transaction rolled back): $error";
459     }
460     $new->locationnum( $options{'cust_location'}->locationnum );
461   }
462   #what about on-the-fly edits?  if the ui supports it?
463
464   # LNP data validation
465  return 'Invalid LNP status' # if someone does really stupid stuff
466     if (  ($old->lnp_status eq 'portingout' && $new->lnp_status eq 'portingin')
467         || ($old->lnp_status eq 'portout-reject' && $new->lnp_status eq 'portingin')
468         || ($old->lnp_status eq 'portin-reject' && $new->lnp_status eq 'portingout')
469         || ($old->lnp_status eq 'portingin' && $new->lnp_status eq 'native')
470         || ($old->lnp_status eq 'portin-reject' && $new->lnp_status eq 'native')
471         || ($old->lnp_status eq 'portingin' && $new->lnp_status eq 'portingout')
472         || ($old->lnp_status eq 'portingout' && $new->lnp_status eq 'portin-reject')
473         );
474
475   my $error = $new->SUPER::replace($old, %options);
476
477   # if this changed the e911 location, notify exports
478   if ($new->locationnum ne $old->locationnum) {
479     my $new_location = $new->cust_location_or_main;
480     my $old_location = $new->cust_location_or_main;
481     $error ||= $new->export('relocate', $new_location, $old_location);
482   }
483
484   if ( $error ) {
485     $dbh->rollback if $oldAutoCommit;
486     return $error if $error;
487   }
488
489
490   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
491   ''; #no error
492 }
493
494 =item suspend
495
496 Called by the suspend method of FS::cust_pkg (see L<FS::cust_pkg>).
497
498 =item unsuspend
499
500 Called by the unsuspend method of FS::cust_pkg (see L<FS::cust_pkg>).
501
502 =item cancel
503
504 Called by the cancel method of FS::cust_pkg (see L<FS::cust_pkg>).
505
506 =item check
507
508 Checks all fields to make sure this is a valid phone number.  If there is
509 an error, returns the error, otherwise returns false.  Called by the insert
510 and replace methods.
511
512 =cut
513
514 # the check method should currently be supplied - FS::Record contains some
515 # data checking routines
516
517 sub check {
518   my $self = shift;
519
520   #my $conf = new FS::Conf;
521
522   my $x = $self->setfixed;
523   return $x unless ref($x);
524   my $part_svc = $x;
525
526   my $phonenum = $self->phonenum;
527   my $phonenum_check_method;
528   if ( $conf->exists('svc_phone-allow_alpha_phonenum') ) {
529     $phonenum =~ s/\W//g;
530     $phonenum_check_method = 'ut_alpha';
531   } else {
532     $phonenum =~ s/\D//g;
533     $phonenum_check_method = 'ut_number';
534   }
535   $self->phonenum($phonenum);
536
537   $self->locationnum('') if !$self->locationnum || $self->locationnum == -1;
538
539   my $error = 
540     $self->ut_numbern('svcnum')
541     || $self->ut_numbern('countrycode')
542     || $self->$phonenum_check_method('phonenum')
543     || $self->ut_numbern('sim_imsi')
544     || $self->ut_anything('sip_password')
545     || $self->ut_numbern('pin')
546     || $self->ut_textn('phone_name')
547     || $self->ut_foreign_keyn('pbxsvc', 'svc_pbx',    'svcnum' )
548     || $self->ut_foreign_keyn('domsvc', 'svc_domain', 'svcnum' )
549     || $self->ut_foreign_keyn('sms_carrierid', 'cdr_carrier', 'carrierid' )
550     || $self->ut_alphan('sms_account')
551     || $self->ut_numbern('max_simultaneous')
552     || $self->ut_foreign_keyn('locationnum', 'cust_location', 'locationnum')
553     || $self->ut_numbern('forwarddst')
554     || $self->ut_textn('email')
555     || $self->ut_numbern('lrn')
556     || $self->ut_numbern('lnp_desired_due_date')
557     || $self->ut_numbern('lnp_due_date')
558     || $self->ut_textn('lnp_other_provider')
559     || $self->ut_textn('lnp_other_provider_account')
560     || $self->ut_enumn('lnp_status', ['','portingin','portingout','portedin',
561                                 'native', 'portin-reject', 'portout-reject'])
562     || $self->ut_enumn('portable', ['','Y'])
563     || $self->ut_textn('lnp_reject_reason')
564     || $self->ut_domainn('sip_server')
565   ;
566   return $error if $error;
567
568   return 'Illegal IMSI (not 14-15 digits)' #shorter?
569     if length($self->sim_imsi)
570     && ( length($self->sim_imsi) < 14 || length($self->sim_imsi) > 15 );
571
572     # LNP data validation
573     return 'Cannot set LNP fields: no LNP in progress'
574         if ( ($self->lnp_desired_due_date || $self->lnp_due_date 
575             || $self->lnp_other_provider || $self->lnp_other_provider_account
576             || $self->lnp_reject_reason) 
577             && (!$self->lnp_status || $self->lnp_status eq 'native') );
578     return 'Cannot set LNP reject reason: no LNP in progress or status is not reject'
579         if ($self->lnp_reject_reason && (!$self->lnp_status 
580                             || $self->lnp_status !~ /^port(in|out)-reject$/) );
581     return 'Cannot port-out a non-portable number' 
582         if (!$self->portable && $self->lnp_status eq 'portingout');
583
584
585   return 'Name ('. $self->phone_name.
586          ") is longer than $phone_name_max characters"
587     if $phone_name_max && length($self->phone_name) > $phone_name_max;
588
589   $self->countrycode(1) unless $self->countrycode;
590
591   unless ( length($self->pin) ) {
592     my $random_pin = $conf->config('svc_phone-random_pin');
593     if ( defined($random_pin) && $random_pin =~ /^\d+$/ ) {
594       $self->pin(
595         join('', map int(rand(10)), 0..($random_pin-1))
596       );
597     }
598   }
599
600   if ( length($self->sip_password) ) {
601
602     return "SIP password must be longer than $passwordmin characters"
603       if length($self->sip_password) < $passwordmin;
604     return "SIP password must be shorter than $passwordmax characters"
605       if length($self->sip_password) > $passwordmax;
606
607   } elsif ( $part_svc->part_svc_column('sip_password')->columnflag ne 'F' ) {
608
609     # option for this?
610     $self->sip_password(
611       join('', map $pw_set[ int(rand $#pw_set) ], (1..min($passwordmax,16)) )
612     );
613
614   }
615
616   if ($self->e911_class and !exists(e911_classes()->{$self->e911_class})) {
617     return "undefined e911 class '".$self->e911_class."'";
618   }
619   if ($self->e911_type and !exists(e911_types()->{$self->e911_type})) {
620     return "undefined e911 type '".$self->e911_type."'";
621   }
622
623   $self->SUPER::check;
624 }
625
626 =item _check duplicate
627
628 Internal method to check for duplicate phone numers.
629
630 =cut
631
632 #false laziness w/svc_acct.pm's _check_duplicate.
633 sub _check_duplicate {
634   my $self = shift;
635
636   my $global_unique = $conf->config('global_unique-phonenum') || 'none';
637   return '' if $global_unique eq 'disabled';
638
639   $self->lock_table;
640
641   my @dup_ccphonenum =
642     grep { !$self->svcnum || $_->svcnum != $self->svcnum }
643     qsearch( 'svc_phone', {
644       'countrycode' => $self->countrycode,
645       'phonenum'    => $self->phonenum,
646     });
647
648   return gettext('phonenum_in_use')
649     if $global_unique eq 'countrycode+phonenum' && @dup_ccphonenum;
650
651   my $part_svc = qsearchs('part_svc', { 'svcpart' => $self->svcpart } );
652   unless ( $part_svc ) {
653     return 'unknown svcpart '. $self->svcpart;
654   }
655
656   if ( @dup_ccphonenum ) {
657
658     my $exports = FS::part_export::export_info('svc_phone');
659     my %conflict_ccphonenum_svcpart = ( $self->svcpart => 'SELF', );
660
661     foreach my $part_export ( $part_svc->part_export ) {
662
663       #this will catch to the same exact export
664       my @svcparts = map { $_->svcpart } $part_export->export_svc;
665
666       $conflict_ccphonenum_svcpart{$_} = $part_export->exportnum
667         foreach @svcparts;
668
669     }
670
671     foreach my $dup_ccphonenum ( @dup_ccphonenum ) {
672       my $dup_svcpart = $dup_ccphonenum->cust_svc->svcpart;
673       if ( exists($conflict_ccphonenum_svcpart{$dup_svcpart}) ) {
674         return "duplicate phone number ".
675                $self->countrycode. ' '. $self->phonenum.
676                ": conflicts with svcnum ". $dup_ccphonenum->svcnum.
677                " via exportnum ". $conflict_ccphonenum_svcpart{$dup_svcpart};
678       }
679     }
680
681   }
682
683   return '';
684
685 }
686
687 =item check_pin
688
689 Checks the supplied PIN against the PIN in the database.  Returns true for a
690 sucessful authentication, false if no match.
691
692 =cut
693
694 sub check_pin {
695   my($self, $check_pin) = @_;
696   length($self->pin) && $check_pin eq $self->pin;
697 }
698
699 =item radius_reply
700
701 =cut
702
703 sub radius_reply {
704   my $self = shift;
705   #XXX Session-Timeout!  holy shit, need rlm_perl to ask for this in realtime
706   ();
707 }
708
709 =item radius_check
710
711 =cut
712
713 sub radius_check {
714   my $self = shift;
715   my %check = ();
716
717   #my $conf = new FS::Conf;
718
719   my $password;
720   if ( $conf->config('svc_phone-radius-password') eq 'countrycode_phonenum' ) {
721     $password = $self->countrycode. $self->phonenum;
722   } else {
723     $password = $conf->config('svc_phone-radius-default_password');
724   }
725   $check{'User-Password'} = $password;
726
727   %check;
728 }
729
730 sub radius_groups {
731   ();
732 }
733
734 =item sms_cdr_carrier
735
736 Returns the L<FS::cdr_carrier> assigned as the SMS carrier for this phone.
737
738 =cut
739
740 sub sms_cdr_carrier {
741   my $self = shift;
742   return '' unless $self->sms_carrierid;
743   qsearchs('cdr_carrier',  { 'carrierid' => $self->sms_carrierid } );
744 }
745
746 =item sms_carriername
747
748 Returns the name of the SMS carrier, or an empty string if there isn't one.
749
750 =cut
751
752 sub sms_carriername {
753   my $self = shift;
754   my $cdr_carrier = $self->sms_cdr_carrier or return '';
755   $cdr_carrier->carriername;
756 }
757
758 =item svc_circuit
759
760 Returns the L<FS::svc_circuit> assigned as the trunk for this phone line.
761
762 =item circuit_label
763
764 Returns the label of the circuit (the part_svc label followed by the 
765 circuit ID), or an empty string if there isn't one.
766
767 =cut
768
769 sub svc_circuit {
770   my $self = shift;
771   my $svcnum = $self->get('circuit_svcnum') or return '';
772   return FS::svc_circuit->by_key($svcnum);
773 }
774
775 sub circuit_label {
776   my $self = shift;
777   my $svc_circuit = $self->svc_circuit or return '';
778   return join(' ', $svc_circuit->part_svc->svc, $svc_circuit->circuit_id);
779 }
780
781 =item phone_device
782
783 Returns any FS::phone_device records associated with this service.
784
785 =cut
786
787 #override location_Mixin version cause we want to try the cust_pkg location
788 #in between us and cust_main
789 # XXX what to do in the unlinked case???  return a pseudo-object that returns
790 # empty fields?
791 sub cust_location_or_main {
792   my $self = shift;
793   return $self->cust_location if $self->locationnum;
794   my $cust_pkg = $self->cust_svc->cust_pkg;
795   $cust_pkg ? $cust_pkg->cust_location_or_main : '';
796 }
797
798 =item phone_name_or_cust
799
800 Returns the C<phone_name> field if it has a value, or the package contact
801 name if there is one, or the customer contact name.
802
803 =cut
804
805 sub phone_name_or_cust {
806   my $self = shift;
807   if ( $self->phone_name ) {
808     return $self->phone_name;
809   }
810   my $cust_pkg = $self->cust_svc->cust_pkg or return '';
811   if ( $cust_pkg->contactnum ) {
812     return $cust_pkg->contact->firstlast;
813   } else {
814     return $cust_pkg->cust_main->name_short;
815   }
816 }
817
818 =item psearch_cdrs OPTIONS
819
820 Returns a paged search (L<FS::PagedSearch>) for Call Detail Records 
821 associated with this service.  By default, "associated with" means that 
822 either the "src" or the "charged_party" field of the CDR matches the 
823 "phonenum" field of the service.  To access the CDRs themselves, call
824 "->fetch" on the resulting object.
825
826 =over 2
827
828 Accepts the following options:
829
830 =item for_update => 1: SELECT the CDRs "FOR UPDATE".
831
832 =item status => "" (or "processing-tiered", "done"): Return only CDRs with that processing status.
833
834 =item inbound => 1: Return CDRs for inbound calls (that is, those that match
835 on 'dst').  With "status", will filter on inbound processing status.
836
837 =item default_prefix => "XXX": Also accept the phone number of the service prepended 
838 with the chosen prefix.
839
840 =item begin, end: Start and end of a date range, as unix timestamp.
841
842 =item cdrtypenum: Only return CDRs with this type.
843
844 =item calltypenum: Only return CDRs with this call type.
845
846 =item disable_src => 1: Only match on 'charged_party', not 'src'.
847
848 =item disable_charged_party => 1: Only match on 'src', not 'charged_party'.
849
850 =item nonzero: Only return CDRs where duration > 0.
851
852 =item by_svcnum: not supported for svc_phone
853
854 =item billsec_sum: Instead of returning all of the CDRs, return a single
855 record (as an L<FS::cdr> object) with the sum of the 'billsec' field over 
856 the entire result set.
857
858 =back
859
860 =cut
861
862 sub psearch_cdrs {
863
864   my($self, %options) = @_;
865   my @fields;
866   my %hash;
867   my @where;
868
869   if ( $options{'inbound'} ) {
870
871     @fields = ( 'dst' );
872     if ( exists($options{'status'}) ) {
873       my $status = $options{'status'};
874       if ( $status ) {
875         push @where, 'EXISTS ( SELECT 1 FROM cdr_termination '.
876           'WHERE cdr.acctid = cdr_termination.acctid '.
877           "AND cdr_termination.status = '$status' ". #quoting kludge
878           'AND cdr_termination.termpart = 1 )';
879       } else {
880         push @where, 'NOT EXISTS ( SELECT 1 FROM cdr_termination '.
881           'WHERE cdr.acctid = cdr_termination.acctid '.
882           'AND cdr_termination.termpart = 1 )';
883       }
884     }
885
886   } else {
887
888     push @fields, 'charged_party' unless $options{'disable_charged_party'};
889     push @fields, 'src' unless $options{'disable_src'};
890     $hash{'freesidestatus'} = $options{'status'}
891       if exists($options{'status'});
892   }
893
894   if ($options{'cdrtypenum'}) {
895     $hash{'cdrtypenum'} = $options{'cdrtypenum'};
896   }
897   if ($options{'calltypenum'}) {
898     $hash{'calltypenum'} = $options{'calltypenum'};
899   }
900   
901   my $for_update = $options{'for_update'} ? 'FOR UPDATE' : '';
902
903   my $number = $self->phonenum;
904
905   my $prefix = $options{'default_prefix'};
906
907   my @orwhere =  map " $_ = '$number'        ", @fields;
908   push @orwhere, map " $_ = '$prefix$number' ", @fields
909     if defined($prefix) && length($prefix);
910   if ( $prefix && $prefix =~ /^\+(\d+)$/ ) {
911     push @orwhere, map " $_ = '$1$number' ", @fields
912   }
913
914   push @where, ' ( '. join(' OR ', @orwhere ). ' ) ';
915
916   if ( $options{'begin'} ) {
917     push @where, 'startdate >= '. $options{'begin'};
918   }
919   if ( $options{'end'} ) {
920     push @where, 'startdate < '.  $options{'end'};
921   }
922   if ( $options{'nonzero'} ) {
923     push @where, 'duration > 0';
924   }
925
926   my $extra_sql = ( keys(%hash) ? ' AND ' : ' WHERE ' ). join(' AND ', @where );
927
928   psearch( {
929       'table'      => 'cdr',
930       'hashref'    => \%hash,
931       'extra_sql'  => $extra_sql,
932       'order_by'   => $options{'billsec_sum'} ? '' : "ORDER BY startdate $for_update",
933       'select'     => $options{'billsec_sum'} ? 'sum(billsec) as billsec_sum' : '*',
934   } );
935 }
936
937 =item get_cdrs (DEPRECATED)
938
939 Like psearch_cdrs, but returns all the L<FS::cdr> objects at once, in a 
940 single list.  Arguments are the same as for psearch_cdrs.  This can take 
941 an unreasonably large amount of memory and is best avoided.
942
943 =cut
944
945 sub get_cdrs {
946   my $self = shift;
947   my $psearch = $self->psearch_cdrs(@_);
948   qsearch ( $psearch->{query} )
949 }
950
951 =item sum_cdrs
952
953 Takes the same options as psearch_cdrs, but returns a single row containing
954 "count" (the number of CDRs) and the sums of the following fields: duration,
955 billsec, rated_price, rated_seconds, rated_minutes.
956
957 Note that if any calls are not rated, their rated_* fields will be null.
958 If you want to use those fields, pass the 'status' option to limit to 
959 calls that have been rated.  This is intentional; please don't "fix" it.
960
961 =cut
962
963 sub sum_cdrs {
964   my $self = shift;
965   my $psearch = $self->psearch_cdrs(@_);
966   $psearch->{query}->{'select'} = join(',',
967     'COUNT(*) AS count',
968     map { "SUM($_) AS $_" }
969       qw(duration billsec rated_price rated_seconds rated_minutes)
970   );
971   # hack
972   $psearch->{query}->{'extra_sql'} =~ s/ ORDER BY.*$//;
973   qsearchs ( $psearch->{query} );
974 }
975
976 =back
977
978 =head1 CLASS METHODS
979
980 =over 4
981
982 =item e911_classes
983
984 Returns a hashref of allowed values and descriptions for the C<e911_class>
985 field.
986
987 =item e911_types
988
989 Returns a hashref of allowed values and descriptions for the C<e911_type>
990 field.
991
992 =cut
993
994 sub e911_classes {
995   tie my %x, 'Tie::IxHash', (
996     1 => 'Residence',
997     2 => 'Business',
998     3 => 'Residence PBX',
999     4 => 'Business PBX',
1000     5 => 'Centrex',
1001     6 => 'Coin 1 Way out',
1002     7 => 'Coin 2 Way',
1003     8 => 'Mobile',
1004     9 => 'Residence OPX',
1005     0 => 'Business OPX',
1006     A => 'Customer Operated Coin Telephone',
1007     #B => not available
1008     G => 'Wireless Phase I',
1009     H => 'Wireless Phase II',
1010     I => 'Wireless Phase II with Phase I information',
1011     V => 'VoIP Services Default',
1012     C => 'VoIP Residence',
1013     D => 'VoIP Business',
1014     E => 'VoIP Coin/Pay Phone',
1015     F => 'VoIP Wireless',
1016     J => 'VoIP Nomadic',
1017     K => 'VoIP Enterprise Services',
1018     T => 'Telematics',
1019   );
1020   \%x;
1021 }
1022
1023 sub e911_types {
1024   tie my %x, 'Tie::IxHash', (
1025     0 => 'Not FX nor Non-Published',
1026     1 => 'FX in 911 serving area',
1027     2 => 'FX outside 911 serving area',
1028     3 => 'Non-Published',
1029     4 => 'Non-Published FX in serving area',
1030     5 => 'Non-Published FX outside serving area',
1031     6 => 'Local Ported Number',
1032     7 => 'Interim Ported Number',
1033   );
1034   \%x;
1035 }
1036
1037 =back
1038
1039 =head1 BUGS
1040
1041 =head1 SEE ALSO
1042
1043 L<FS::svc_Common>, L<FS::Record>, L<FS::cust_svc>, L<FS::part_svc>,
1044 L<FS::cust_pkg>, schema.html from the base documentation.
1045
1046 =cut
1047
1048 1;
1049