1 package FS::rate_detail;
2 use base qw(FS::Record);
5 use vars qw( $DEBUG $me );
7 use FS::Record qw( qsearch qsearchs dbh );
13 $me = '[FS::rate_detail]';
17 FS::rate_detail - Object methods for rate_detail records
23 $record = new FS::rate_detail \%hash;
24 $record = new FS::rate_detail { 'column' => 'value' };
26 $error = $record->insert;
28 $error = $new_record->replace($old_record);
30 $error = $record->delete;
32 $error = $record->check;
36 An FS::rate_detail object represents an call plan rate. FS::rate_detail
37 inherits from FS::Record. The following fields are currently supported:
41 =item ratedetailnum - primary key
43 =item ratenum - rate plan (see L<FS::rate>)
45 =item orig_regionnum - call origination region
47 =item dest_regionnum - call destination region
49 =item min_included - included minutes
51 =item min_charge - charge per minute
53 =item sec_granularity - granularity in seconds, i.e. 6 or 60; 0 for per-call
55 =item classnum - usage class (see L<FS::usage_class>) if any for this rate
57 =item ratetimenum - rating time period (see L<FS::rate_time) if any
59 =item cdrtypenum - CDR type (see L<FS::cdr_type>) if any for this rate
61 =item region_group - Group in region group for rate plan
71 Creates a new call plan rate. To add the call plan rate to the database, see
74 Note that this stores the hash reference, not a distinct copy of the hash it
75 points to. You can ask the object for a copy with the I<hash> method.
79 # the new method can be inherited from FS::Record, if a table method is defined
81 sub table { 'rate_detail'; }
85 Adds this record to the database. If there is an error, returns the error,
86 otherwise returns false.
90 # the insert method can be inherited from FS::Record
94 Delete this record from the database.
98 # the delete method can be inherited from FS::Record
100 =item replace OLD_RECORD
102 Replaces the OLD_RECORD with this one in the database. If there is an error,
103 returns the error, otherwise returns false.
107 # the replace method can be inherited from FS::Record
111 Checks all fields to make sure this is a valid call plan rate. If there is
112 an error, returns the error, otherwise returns false. Called by the insert
117 # the check method should currently be supplied - FS::Record contains some
118 # data checking routines
124 $self->ut_numbern('ratedetailnum')
125 || $self->ut_foreign_key('ratenum', 'rate', 'ratenum')
126 || $self->ut_foreign_keyn('orig_regionnum', 'rate_region', 'regionnum' )
127 || $self->ut_foreign_key('dest_regionnum', 'rate_region', 'regionnum' )
128 || $self->ut_number('min_included')
130 #|| $self->ut_money('min_charge')
131 #good enough for now...
132 || $self->ut_float('min_charge')
134 || $self->ut_number('sec_granularity')
136 || $self->ut_foreign_keyn('classnum', 'usage_class', 'classnum' )
137 || $self->ut_enum('region_group', [ '', 'Y' ])
139 return $error if $error;
146 Returns the parent call plan (see L<FS::rate>) associated with this call plan
151 Returns the origination region (see L<FS::rate_region>) associated with this
158 qsearchs('rate_region', { 'regionnum' => $self->orig_regionnum } );
163 Returns the destination region (see L<FS::rate_region>) associated with this
170 qsearchs('rate_region', { 'regionnum' => $self->dest_regionnum } );
173 =item dest_regionname
175 Returns the name of the destination region (see L<FS::rate_region>) associated
176 with this call plan rate.
180 sub dest_regionname {
182 $self->dest_region->regionname;
185 =item dest_regionname
187 Returns a short list of the prefixes for the destination region
188 (see L<FS::rate_region>) associated with this call plan rate.
192 sub dest_prefixes_short {
194 $self->dest_region->prefixes_short;
199 Returns the L<FS::rate_time> object associated with this call
200 plan rate, if there is one.
206 $self->ratetimenum ? FS::rate_time->by_key($self->ratetimenum) : ();
211 Returns the I<ratetimename> field of the L<FS::rate_time> object
212 associated with this rate plan.
218 $self->ratetimenum ? $self->rate_time->ratetimename : '(default)';
223 Returns the name of the usage class (see L<FS::usage_class>) associated with
230 my $usage_class = qsearchs('usage_class', { classnum => $self->classnum });
231 $usage_class ? $usage_class->classname : '';
236 Returns the name of the CDR type (see L<FS::cdr_type) associated with this
237 rate, if there is one. If not, returns the cdrtypenum itself. This will
238 only return an empty string if cdrtypenum is NULL.
244 my $cdrtypenum = $self->cdrtypenum or return '';
245 my $cdr_type = qsearchs('cdr_type', { cdrtypenum => $cdrtypenum });
246 return $cdr_type ? $cdr_type->cdrtypename : $cdrtypenum;
257 Returns an (ordered) hash of granularity => name pairs
261 tie my %granularities, 'Tie::IxHash',
264 '30' => '30 second', # '1/2 minute',
275 Returns an (ordered) hash of conn_sec => name pairs
279 tie my %conn_secs, 'Tie::IxHash',
281 '1' => 'first second',
282 '6' => 'first 6 seconds',
283 '30' => 'first 30 seconds', # '1/2 minute',
284 '60' => 'first minute',
285 '120' => 'first 2 minutes',
286 '180' => 'first 3 minutes',
287 '300' => 'first 5 minutes',
294 =item process_edit_import
298 use Storable qw(thaw);
301 sub process_edit_import {
304 #do we actually belong in rate_detail, like 'table' says? even though we
305 # can possible create new rate records, that's a side effect, mostly we
306 # do edit rate_detail records in batch...
308 my $opt = { 'table' => 'rate_detail',
309 'params' => [], #required, apparantly
310 'formats' => { 'default' => [
319 my( $rate_detail, $g ) = @_;
320 $g = 0 if $g =~ /^\s*(per-)?call\s*$/i;
321 $g = 60 if $g =~ /^\s*minute\s*$/i;
322 $g =~ /^(\d+)/ or die "can't parse granularity: $g".
323 " for record ". Dumper($rate_detail);
324 $rate_detail->sec_granularity($1);
328 'format_headers' => { 'default' => 1, },
329 'format_types' => { 'default' => 'xls' },
333 #FS::Record::process_batch_import( $job, $opt, @_ );
335 my $table = $opt->{table};
336 my @pass_params = @{ $opt->{params} };
337 my %formats = %{ $opt->{formats} };
339 my $param = thaw(decode_base64(shift));
340 warn Dumper($param) if $DEBUG;
342 my $files = $param->{'uploaded_files'}
343 or die "No files provided.\n";
345 my (%files) = map { /^(\w+):([\.\w]+)$/ ? ($1,$2):() } split /,/, $files;
347 my $dir = '%%%FREESIDE_CACHE%%%/cache.'. $FS::UID::datasrc. '/';
348 my $file = $dir. $files{'file'};
352 #FS::Record::batch_import( {
353 FS::rate_detail::edit_import( {
356 formats => \%formats,
357 format_types => $opt->{format_types},
358 format_headers => $opt->{format_headers},
359 format_sep_chars => $opt->{format_sep_chars},
360 format_fixedlength_formats => $opt->{format_fixedlength_formats},
365 format => $param->{format},
366 params => { map { $_ => $param->{$_} } @pass_params },
368 default_csv => $opt->{default_csv},
373 die "$error\n" if $error;
381 #false laziness w/ #FS::Record::batch_import, grep "edit_import" for differences
382 #could be turned into callbacks or something
387 warn "$me edit_import call with params: \n". Dumper($param)
390 my $table = $param->{table};
391 my $formats = $param->{formats};
393 my $job = $param->{job};
394 my $file = $param->{file};
395 my $format = $param->{'format'};
396 my $params = $param->{params} || {};
398 die "unknown format $format" unless exists $formats->{ $format };
400 my $type = $param->{'format_types'}
401 ? $param->{'format_types'}{ $format }
402 : $param->{type} || 'csv';
405 if ( $file =~ /\.(\w+)$/i ) {
409 warn "can't parse file type from filename $file; defaulting to CSV";
413 if $param->{'default_csv'} && $type ne 'xls';
416 my $header = $param->{'format_headers'}
417 ? $param->{'format_headers'}{ $param->{'format'} }
420 my $sep_char = $param->{'format_sep_chars'}
421 ? $param->{'format_sep_chars'}{ $param->{'format'} }
424 my $fixedlength_format =
425 $param->{'format_fixedlength_formats'}
426 ? $param->{'format_fixedlength_formats'}{ $param->{'format'} }
429 my @fields = @{ $formats->{ $format } };
435 my @header = (); #edit_import
436 if ( $type eq 'csv' || $type eq 'fixedlength' ) {
438 if ( $type eq 'csv' ) {
441 $attr{sep_char} = $sep_char if $sep_char;
442 $parser = new Text::CSV_XS \%attr;
444 } elsif ( $type eq 'fixedlength' ) {
446 eval "use Parse::FixedLength;";
448 $parser = new Parse::FixedLength $fixedlength_format;
451 die "Unknown file type $type\n";
454 @buffer = split(/\r?\n/, slurp($file) );
455 splice(@buffer, 0, ($header || 0) );
456 $count = scalar(@buffer);
458 } elsif ( $type eq 'xls' ) {
460 eval "use Spreadsheet::ParseExcel;";
463 eval "use DateTime::Format::Excel;";
464 #for now, just let the error be thrown if it is used, since only CDR
465 # formats bill_west and troop use it, not other excel-parsing things
468 my $excel = Spreadsheet::ParseExcel::Workbook->new->Parse($file);
470 $parser = $excel->{Worksheet}[0]; #first sheet
472 $count = $parser->{MaxRow} || $parser->{MinRow};
477 #edit_import - need some magic to parse the header
479 my @header_row = @{ $parser->{Cells}[$0] };
480 @header = map $_->{Val}, @header_row;
484 die "Unknown file type $type\n";
489 local $SIG{HUP} = 'IGNORE';
490 local $SIG{INT} = 'IGNORE';
491 local $SIG{QUIT} = 'IGNORE';
492 local $SIG{TERM} = 'IGNORE';
493 local $SIG{TSTP} = 'IGNORE';
494 local $SIG{PIPE} = 'IGNORE';
496 my $oldAutoCommit = $FS::UID::AutoCommit;
497 local $FS::UID::AutoCommit = 0;
500 #edit_import - use the header to setup looping over different rates
503 splice(@header,0,4); # # Region Country Prefixes
504 while ( my @next = splice(@header,0,4) ) {
506 if ( $next[0] =~ /^(\d+):\s*([^:]+):/ ) {
507 $rate = qsearchs('rate', { 'ratenum' => $1 } )
508 or die "unknown ratenum $1";
509 } elsif ( $next[0] =~ /^(NEW:)?\s*([^:]+)/i ) {
510 $rate = new FS::rate { 'ratename' => $2 };
511 my $error = $rate->insert;
513 $dbh->rollback if $oldAutoCommit;
514 return "error inserting new rate: $error\n";
524 my( $last, $min_sec ) = ( time, 5 ); #progressbar foo
528 if ( $type eq 'csv' ) {
530 last unless scalar(@buffer);
531 $line = shift(@buffer);
533 $parser->parse($line) or do {
534 $dbh->rollback if $oldAutoCommit;
535 return "can't parse: ". $parser->error_input();
537 @columns = $parser->fields();
539 } elsif ( $type eq 'fixedlength' ) {
541 @columns = $parser->parse($line);
543 } elsif ( $type eq 'xls' ) {
545 last if $row > ($parser->{MaxRow} || $parser->{MinRow})
546 || ! $parser->{Cells}[$row];
548 my @row = @{ $parser->{Cells}[$row] };
549 @columns = map $_->{Val}, @row;
552 #warn $z++. ": $_\n" for @columns;
555 die "Unknown file type $type\n";
560 my @repeat = @columns[0..3];
562 foreach my $rate ( @rate ) {
567 foreach my $field ( @fields ) {
569 my $value = shift @columns;
571 if ( ref($field) eq 'CODE' ) {
572 #&{$field}(\%hash, $value);
573 push @later, $field, $value;
575 } elsif ($field) { #edit_import
576 #??? $hash{$field} = $value if length($value);
577 $hash{$field} = $value if defined($value) && length($value);
582 unshift @columns, @repeat; #edit_import put these back on for next time
584 my $class = "FS::$table";
586 my $record = $class->new( \%hash );
588 $record->ratenum($rate->ratenum); #edit_import
590 #edit_improt n/a my $param = {};
591 while ( scalar(@later) ) {
592 my $sub = shift @later;
593 my $data = shift @later;
594 #&{$sub}($record, $data, $conf, $param);# $record->&{$sub}($data, $conf);
595 &{$sub}($record, $data); #edit_import - don't have $conf
596 #edit_import wrong loop last if exists( $param->{skiprow} );
598 #edit_import wrong loop next if exists( $param->{skiprow} );
600 #edit_import update or insert, not just insert
603 'hashref' => { map { $_ => $record->$_() } qw(ratenum dest_regionnum) },
608 $record->ratedetailnum($old->ratedetailnum);
609 $error = $record->replace($old)
615 $dbh->rollback if $oldAutoCommit;
616 return "can't insert record". ( $line ? " for $line" : '' ). ": $error";
624 if ( $job && time - $min_sec > $last ) { #progress bar
625 $job->update_statustext( int(100 * $imported / $count) );
631 $dbh->commit or die $dbh->errstr if $oldAutoCommit;;
633 return "Empty file!" unless $imported || $param->{empty_ok};
645 L<FS::rate>, L<FS::rate_region>, L<FS::Record>,
646 schema.html from the base documentation.