support multiple internal_prefixen, RT#3985
[freeside.git] / FS / FS / part_pkg / voip_cdr.pm
1 package FS::part_pkg::voip_cdr;
2
3 use strict;
4 use vars qw(@ISA $DEBUG %info);
5 use Date::Format;
6 use Tie::IxHash;
7 use FS::Conf;
8 use FS::Record qw(qsearchs qsearch);
9 use FS::part_pkg::flat;
10 use FS::cdr;
11 #use FS::rate;
12 #use FS::rate_prefix;
13
14 @ISA = qw(FS::part_pkg::flat);
15
16 $DEBUG = 1;
17
18 tie my %rating_method, 'Tie::IxHash',
19   'prefix' => 'Rate calls by using destination prefix to look up a region and rate according to the internal prefix and rate tables',
20   'upstream' => 'Rate calls based on upstream data: If the call type is "1", map the upstream rate ID directly to an internal rate (rate_detail), otherwise, pass the upstream price through directly.',
21   'upstream_simple' => 'Simply pass through and charge the "upstream_price" amount.',
22 ;
23
24 #tie my %cdr_location, 'Tie::IxHash',
25 #  'internal' => 'Internal: CDR records imported into the internal CDR table',
26 #  'external' => 'External: CDR records queried directly from an external '.
27 #                'Asterisk (or other?) CDR table',
28 #;
29
30 tie my %temporalities, 'Tie::IxHash',
31   'upcoming'  => "Upcoming (future)",
32   'preceding' => "Preceding (past)",
33 ;
34
35 %info = (
36   'name' => 'VoIP rating by plan of CDR records in an internal (or external) SQL table',
37   'shortname' => 'VoIP/telco CDR rating (standard)',
38   'fields' => {
39     'setup_fee'     => { 'name' => 'Setup fee for this package',
40                          'default' => 0,
41                        },
42     'recur_fee'     => { 'name' => 'Base recurring fee for this package',
43                          'default' => 0,
44                        },
45
46     #false laziness w/flat.pm
47     'recur_temporality' => { 'name' => 'Charge recurring fee for period',
48                              'type' => 'select',
49                              'select_options' => \%temporalities,
50                            },
51
52     'unused_credit' => { 'name' => 'Credit the customer for the unused portion'.
53                                    ' of service at cancellation',
54                          'type' => 'checkbox',
55                        },
56     'ratenum'   => { 'name' => 'Rate plan',
57                      'type' => 'select',
58                      'select_table' => 'rate',
59                      'select_key'   => 'ratenum',
60                      'select_label' => 'ratename',
61                    },
62     'rating_method' => { 'name' => 'Region rating method',
63                          'type' => 'radio',
64                          'options' => \%rating_method,
65                        },
66
67     'default_prefix' => { 'name'    => 'Default prefix optionally prepended to customer DID numbers when searching for CDR records',
68                           'default' => '+1',
69                         },
70
71     'disable_src' => { 'name' => 'Disable rating of CDR records based on the "src" field in addition to "charged_party"',
72                        'type' => 'checkbox'
73                      },
74
75     'domestic_prefix' => { 'name'    => 'Destination prefix for domestic CDR records',
76                            'default' => '1',
77                          },
78
79 #    'domestic_prefix_required' => { 'name' => 'Require explicit destination prefix for domestic CDR records',
80 #                                    'type' => 'checkbox',
81 #                                  },
82
83     'international_prefix' => { 'name'    => 'Destination prefix(es) for international CDR records.  Separate multiple options with commas.',
84                                 'default' => '011',
85                               },
86
87     'use_amaflags' => { 'name' => 'Do not charge for CDRs where the amaflags field is not set to "2" ("BILL"/"BILLING").',
88                         'type' => 'checkbox',
89                       },
90
91     'use_disposition' => { 'name' => 'Do not charge for CDRs where the disposition flag is not set to "ANSWERED".',
92                            'type' => 'checkbox',
93                          },
94
95     'use_disposition_taqua' => { 'name' => 'Do not charge for CDRs where the disposition is not set to "100" (Taqua).',
96                                  'type' => 'checkbox',
97                                },
98
99     'use_carrierid' => { 'name' => 'Do not charge for CDRs where the Carrier ID is not set to: ',
100                          },
101
102     'use_cdrtypenum' => { 'name' => 'Do not charge for CDRs where the CDR Type is not set to: ',
103                          },
104
105     '411_rewrite' => { 'name' => 'Rewrite these (comma-separated) destination numbers to 411 for rating purposes: ',
106                       },
107
108     'output_format' => { 'name' => 'Simple output format',
109                          'type' => 'select',
110                          'select_options' => { FS::cdr::invoice_formats() },
111                        },
112
113     'usage_section' => { 'name' => 'Section in which to place separate usage charges',
114                        },
115
116     'summarize_usage' => { 'name' => 'Include usage summary with recurring charges when usage is in separate section',
117                           'type' => 'checkbox',
118                         },
119
120     #XXX also have option for an external db
121 #    'cdr_location' => { 'name' => 'CDR database location'
122 #                        'type' => 'select',
123 #                        'select_options' => \%cdr_location,
124 #                        'select_callback' => {
125 #                          'external' => {
126 #                            'enable' => [ 'datasrc', 'username', 'password' ],
127 #                          },
128 #                          'internal' => {
129 #                            'disable' => [ 'datasrc', 'username', 'password' ],
130 #                          }
131 #                        },
132 #                      },
133 #    'datasrc' => { 'name' => 'DBI data source for external CDR table',
134 #                   'disabled' => 'Y',
135 #                 },
136 #    'username' => { 'name' => 'External database username',
137 #                    'disabled' => 'Y',
138 #                  },
139 #    'password' => { 'name' => 'External database password',
140 #                    'disabled' => 'Y',
141 #                  },
142
143   },
144   'fieldorder' => [qw(
145                        setup_fee recur_fee recur_temporality unused_credit
146                        rating_method ratenum 
147                        default_prefix
148                        disable_src
149                        domestic_prefix international_prefix
150                        use_amaflags use_disposition
151                        use_disposition_taqua use_carrierid use_cdrtypenum
152                        411_rewrite
153                        output_format summarize_usage usage_section
154                      )
155                   ],
156   'weight' => 40,
157 );
158
159 sub calc_setup {
160   my($self, $cust_pkg ) = @_;
161   $self->option('setup_fee');
162 }
163
164 #false laziness w/voip_sqlradacct calc_recur resolve it if that one ever gets used again
165 sub calc_recur {
166   my($self, $cust_pkg, $sdate, $details, $param ) = @_;
167
168   #my $last_bill = $cust_pkg->last_bill;
169   my $last_bill = $cust_pkg->get('last_bill'); #->last_bill falls back to setup
170
171   return 0
172     if $self->option('recur_temporality', 1) eq 'preceding' && $last_bill == 0;
173
174   my $ratenum = $cust_pkg->part_pkg->option('ratenum');
175
176   my $spool_cdr = $cust_pkg->cust_main->spool_cdr;
177
178   my %included_min = ();
179
180   my $charges = 0;
181
182   my $downstream_cdr = '';
183
184   my $output_format = $self->option('output_format', 'Hush!')
185                       || 'simple';
186
187   eval "use Text::CSV_XS;";
188   die $@ if $@;
189   my $csv = new Text::CSV_XS;
190
191   foreach my $cust_svc (
192     grep { $_->part_svc->svcdb eq 'svc_phone' } $cust_pkg->cust_svc
193   ) {
194
195     foreach my $cdr (
196       $cust_svc->get_cdrs_for_update( 'disable_src'    => $self->option('disable_src'),
197                                       'default_prefix' => $self->option('default_prefix'),
198                                     )  # $last_bill, $$sdate )
199     ) {
200       if ( $DEBUG > 1 ) {
201         warn "rating CDR $cdr\n".
202              join('', map { "  $_ => ". $cdr->{$_}. "\n" } keys %$cdr );
203       }
204
205       my $rate_detail;
206       my( $rate_region, $regionnum );
207       my $pretty_destnum;
208       my $charge = '';
209       my $classnum = '';
210       my @call_details = ();
211       if ( $self->option('rating_method') eq 'prefix'
212            || ! $self->option('rating_method')
213          )
214       {
215
216         #should have some better way of checking these options than a long
217         #if-else tree...
218         my $notchg = "not charging for CDR";
219
220         if ( $self->option('use_amaflags') && $cdr->amaflags != 2 ) {
221
222           warn "$notchg (amaflags != 2)\n" if $DEBUG;
223           $charge = 0;
224
225         } elsif ( $self->option('use_disposition')
226                   && $cdr->disposition ne 'ANSWERED' ) {
227
228           warn "$notchg (disposition != ANSWERED)\n" if $DEBUG;
229           $charge = 0;
230
231         } elsif ( $self->option('use_disposition_taqua')
232                   && $cdr->disposition != 100 ) {
233
234           warn "$notchg (disposition != 100)\n" if $DEBUG;
235           $charge = 0;
236
237         } elsif ( $self->option('use_carrierid')
238                   && $cdr->carrierid != $self->option('use_carrierid') ) {
239
240           warn "$notchg (carrierid != ". $self->option('use_carrierid'). ")\n"
241             if $DEBUG;
242           $charge = 0;
243
244         } elsif ( $self->option('use_cdrtypenum')
245                   && $cdr->cdrtypenum != $self->option('use_cdrtypenum') ) {
246
247           warn "$notchg (cdrtypenum != ". $self->option('use_cdrtypenum'). ")\n"
248             if $DEBUG;
249           $charge = 0;
250
251         } else {
252
253           ###
254           # look up rate details based on called station id
255           # (or calling station id for toll free calls)
256           ###
257
258           if ( $self->option('411_rewrite') ) {
259             my @dirass = split(/\s*,\s*/, $self->option('411_rewrite'));
260             $cdr->dst('411') if grep $cdr->dst eq $_, @dirass;
261           }
262
263           my( $to_or_from, $number );
264           if ( $cdr->dst =~ /^(\+?1)?8([02-8])\1/ ) { #tollfree call
265             $to_or_from = 'from';
266             $number = $cdr->src;
267           } else { #regular call
268             $to_or_from = 'to';
269             $number = $cdr->dst;
270           }
271
272           #remove non-phone# stuff and whitespace
273           $number =~ s/\s//g;
274 #          my $proto = '';
275 #          $dest =~ s/^(\w+):// and $proto = $1; #sip:
276 #          my $siphost = '';
277 #          $dest =~ s/\@(.*)$// and $siphost = $1; # @10.54.32.1, @sip.example.com
278
279           my $intl = $self->option('international_prefix') || '011';
280           my @intl = ();
281           if ( $intl =~ /,/ ) {
282             @intl = split(/\s*,\s*/, $intl);
283           } else {
284             @intl = ($intl);
285           }
286
287           #determine the country code
288           my $countrycode;
289           if ( grep { $number =~ /^$_(((\d)(\d))(\d))(\d+)$/ } @intl
290                || $number =~ /^\+(((\d)(\d))(\d))(\d+)$/
291              )
292           {
293
294             my( $three, $two, $one, $u1, $u2, $rest ) = ( $1,$2,$3,$4,$5,$6 );
295             #first look for 1 digit country code
296             if ( qsearch('rate_prefix', { 'countrycode' => $one } ) ) {
297               $countrycode = $one;
298               $number = $u1.$u2.$rest;
299             } elsif ( qsearch('rate_prefix', { 'countrycode' => $two } ) ) { #or 2
300               $countrycode = $two;
301               $number = $u2.$rest;
302             } else { #3 digit country code
303               $countrycode = $three;
304               $number = $rest;
305             }
306
307           } else {
308             $countrycode = $self->option('domestic_prefix') || '1';
309             $number =~ s/^$countrycode//;# if length($number) > 10;
310           }
311
312           warn "rating call $to_or_from +$countrycode $number\n" if $DEBUG;
313           $pretty_destnum = "+$countrycode $number";
314
315           #find a rate prefix, first look at most specific (4 digits) then 3, etc.,
316           # finally trying the country code only
317           my $rate_prefix = '';
318           for my $len ( reverse(1..6) ) {
319             $rate_prefix = qsearchs('rate_prefix', {
320               'countrycode' => $countrycode,
321               #'npa'         => { op=> 'LIKE', value=> substr($number, 0, $len) }
322               'npa'         => substr($number, 0, $len),
323             } ) and last;
324           }
325           $rate_prefix ||= qsearchs('rate_prefix', {
326             'countrycode' => $countrycode,
327             'npa'         => '',
328           });
329
330           #
331           die "Can't find rate for call $to_or_from +$countrycode $number\n"
332             unless $rate_prefix;
333
334           $regionnum = $rate_prefix->regionnum;
335           $rate_detail = qsearchs('rate_detail', {
336             'ratenum'        => $ratenum,
337             'dest_regionnum' => $regionnum,
338           } );
339
340           $rate_region = $rate_prefix->rate_region;
341
342           warn "  found rate for regionnum $regionnum ".
343                "and rate detail $rate_detail\n"
344             if $DEBUG;
345
346         }
347
348       } elsif ( $self->option('rating_method') eq 'upstream' ) {
349
350         if ( $cdr->cdrtypenum == 1 ) { #rate based on upstream rateid
351
352           $rate_detail = $cdr->cdr_upstream_rate->rate_detail;
353
354           $regionnum = $rate_detail->dest_regionnum;
355           $rate_region = $rate_detail->dest_region;
356
357           $pretty_destnum = $cdr->dst;
358
359           warn "  found rate for regionnum $regionnum and ".
360                "rate detail $rate_detail\n"
361             if $DEBUG;
362
363         } else { #pass upstream price through
364
365           $charge = sprintf('%.2f', $cdr->upstream_price);
366           $charges += $charge;
367  
368           @call_details = (
369             #time2str("%Y %b %d - %r", $cdr->calldate_unix ),
370             time2str("%c", $cdr->calldate_unix),  #XXX this should probably be a config option dropdown so they can select US vs- rest of world dates or whatnot
371             'N/A', #minutes...
372             '$'.$charge,
373             #$pretty_destnum,
374             $cdr->description, #$rate_region->regionname,
375           );
376
377         }
378
379       } elsif ( $self->option('rating_method') eq 'upstream_simple' ) {
380
381         #XXX $charge = sprintf('%.2f', $cdr->upstream_price);
382         $charge = sprintf('%.3f', $cdr->upstream_price);
383         $charges += $charge;
384
385         @call_details = ($cdr->downstream_csv( 'format' => $output_format ));
386
387       } else {
388         die "don't know how to rate CDRs using method: ".
389             $self->option('rating_method'). "\n";
390       }
391
392       ###
393       # find the price and add detail to the invoice
394       ###
395
396       # if $rate_detail is not found, skip this CDR... i.e. 
397       # don't add it to invoice, don't set its status to NULL,
398       # don't call downstream_csv or something on it...
399       # but DO emit a warning...
400       #if ( ! $rate_detail && ! scalar(@call_details) ) {
401       if ( ! $rate_detail && $charge eq '' ) {
402
403         warn "no rate_detail found for CDR.acctid:  ". $cdr->acctid.
404              "; skipping\n"
405
406       } else { # there *is* a rate_detail (or call_details), proceed...
407
408         unless ( @call_details || ( $charge ne '' && $charge == 0 ) ) {
409
410           $included_min{$regionnum} = $rate_detail->min_included
411             unless exists $included_min{$regionnum};
412
413           my $granularity = $rate_detail->sec_granularity;
414           my $seconds = $cdr->billsec; # length($cdr->billsec) ? $cdr->billsec : $cdr->duration;
415           $seconds += $granularity - ( $seconds % $granularity )
416             if $seconds      # don't granular-ize 0 billsec calls (bills them)
417             && $granularity; # 0 is per call
418           my $minutes = sprintf("%.1f", $seconds / 60);
419           $minutes =~ s/\.0$// if $granularity == 60;
420
421           # per call rather than per minute
422           $minutes = 1 unless $granularity;
423
424           $included_min{$regionnum} -= $minutes;
425
426           if ( $included_min{$regionnum} < 0 ) {
427             my $charge_min = 0 - $included_min{$regionnum};
428             $included_min{$regionnum} = 0;
429             $charge = sprintf('%.2f', $rate_detail->min_charge * $charge_min );
430             $charges += $charge;
431           }
432
433           # this is why we need regionnum/rate_region....
434           warn "  (rate region $rate_region)\n" if $DEBUG;
435
436           @call_details = (
437             #time2str("%Y %b %d - %r", $cdr->calldate_unix ),
438             time2str("%c", $cdr->calldate_unix),  #XXX this should probably be a config option dropdown so they can select US vs- rest of world dates or whatnot
439             $granularity ? $minutes.'m' : $minutes.' call',
440             '$'.$charge,
441             $pretty_destnum,
442             $rate_region->regionname,
443           );
444
445           $classnum = $rate_detail->classnum;
446
447         }
448
449         if ( $charge > 0 ) {
450           #just use FS::cust_bill_pkg_detail objects?
451           my $call_details;
452           if ( $self->option('rating_method') eq 'upstream_simple' ) {
453             $call_details = [ 'C', $call_details[0], $charge, $classnum ];
454           }else{
455             $csv->combine(@call_details);
456             $call_details = [ 'C', $csv->string, $charge, $classnum ];
457           }
458           warn "  adding details on charge to invoice: [ ".
459               join(', ', @{$call_details} ). " ]"
460             if ( $DEBUG && ref($call_details) );
461           push @$details, $call_details; #\@call_details,
462         }
463
464         # if the customer flag is on, call "downstream_csv" or something
465         # like it to export the call downstream!
466         # XXX price plan option to pick format, or something...
467         $downstream_cdr .= $cdr->downstream_csv( 'format' => 'convergent' )
468           if $spool_cdr;
469
470         my $error = $cdr->set_status_and_rated_price('done', $charge);
471         die $error if $error;
472
473       }
474
475     } # $cdr
476
477     unshift @$details, [ 'C', FS::cdr::invoice_header( $output_format) ]
478       if (@$details && $self->option('rating_method') eq 'upstream_simple' );
479
480   } # $cust_svc
481
482   if ( $spool_cdr && length($downstream_cdr) ) {
483
484     use FS::UID qw(datasrc);
485     my $dir = '/usr/local/etc/freeside/export.'. datasrc. '/cdr';
486     mkdir $dir, 0700 unless -d $dir;
487     $dir .= '/'. $cust_pkg->custnum.
488     mkdir $dir, 0700 unless -d $dir;
489     my $filename = time2str("$dir/CDR%Y%m%d-spool.CSV", time); #XXX invoice date instead?  would require changing the order things are generated in cust_main::bill insert cust_bill first - with transactions it could be done though
490
491     push @{ $param->{'precommit_hooks'} },
492          sub {
493                #lock the downstream spool file and append the records 
494                use Fcntl qw(:flock);
495                use IO::File;
496                my $spool = new IO::File ">>$filename"
497                  or die "can't open $filename: $!\n";
498                flock( $spool, LOCK_EX)
499                  or die "can't lock $filename: $!\n";
500                seek($spool, 0, 2)
501                  or die "can't seek to end of $filename: $!\n";
502                print $spool $downstream_cdr;
503                flock( $spool, LOCK_UN );
504                close $spool;
505              };
506
507   } #if ( $spool_cdr && length($downstream_cdr) )
508
509   $self->option('recur_fee') + $charges;
510
511 }
512
513 sub is_free {
514   0;
515 }
516
517 sub base_recur {
518   my($self, $cust_pkg) = @_;
519   $self->option('recur_fee');
520 }
521
522 #  This equates svc_phone records; perhaps svc_phone should have a field
523 #  to indicate it represents a line
524 sub calc_units {    
525   my($self, $cust_pkg ) = @_;
526   scalar(grep { $_->part_svc->svcdb eq 'svc_phone' } $cust_pkg->cust_svc);
527 }
528
529 1;
530