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