5a1ac2bce1e4dd497e4865c52fd71c6f5e11ee8f
[freeside.git] / FS / FS / Upgrade.pm
1 package FS::Upgrade;
2
3 use strict;
4 use vars qw( @ISA @EXPORT_OK $DEBUG );
5 use Exporter;
6 use Tie::IxHash;
7 use File::Slurp;
8 use FS::UID qw( dbh driver_name );
9 use FS::Conf;
10 use FS::Record qw(qsearchs qsearch str2time_sql);
11 use FS::queue;
12 use FS::upgrade_journal;
13 use FS::Setup qw( enable_banned_pay_pad );
14
15 use FS::svc_domain;
16 $FS::svc_domain::whois_hack = 1;
17
18 @ISA = qw( Exporter );
19 @EXPORT_OK = qw( upgrade_schema upgrade_config upgrade upgrade_sqlradius );
20
21 $DEBUG = 1;
22
23 =head1 NAME
24
25 FS::Upgrade - Database upgrade routines
26
27 =head1 SYNOPSIS
28
29   use FS::Upgrade;
30
31 =head1 DESCRIPTION
32
33 Currently this module simply provides a place to store common subroutines for
34 database upgrades.
35
36 =head1 SUBROUTINES
37
38 =over 4
39
40 =item upgrade_config
41
42 =cut
43
44 #config upgrades
45 sub upgrade_config {
46   my %opt = @_;
47
48   my $conf = new FS::Conf;
49
50   $conf->touch('payment_receipt')
51     if $conf->exists('payment_receipt_email')
52     || $conf->config('payment_receipt_msgnum');
53
54   $conf->touch('geocode-require_nw_coordinates')
55     if $conf->exists('svc_broadband-require-nw-coordinates');
56
57   unless ( $conf->config('echeck-country') ) {
58     if ( $conf->exists('cust_main-require-bank-branch') ) {
59       $conf->set('echeck-country', 'CA');
60     } elsif ( $conf->exists('echeck-nonus') ) {
61       $conf->set('echeck-country', 'XX');
62     } else {
63       $conf->set('echeck-country', 'US');
64     }
65   }
66
67   my @agents = qsearch('agent', {});
68
69   upgrade_overlimit_groups($conf);
70   map { upgrade_overlimit_groups($conf,$_->agentnum) } @agents;
71
72   upgrade_invoice_from($conf);
73   foreach my $agent (@agents) {
74     upgrade_invoice_from($conf,$agent->agentnum,1);
75   }
76
77   my $DIST_CONF = '/usr/local/etc/freeside/default_conf/';#DIST_CONF in Makefile
78   $conf->set($_, scalar(read_file( "$DIST_CONF/$_" )) )
79     foreach grep { ! $conf->exists($_) && -s "$DIST_CONF/$_" }
80       qw( quotation_html quotation_latex quotation_latexnotes );
81
82   # change 'fslongtable' to 'longtable'
83   # in invoice and quotation main templates, and also in all secondary 
84   # invoice templates
85   my @latex_confs =
86     qsearch('conf', { 'name' => {op=>'LIKE', value=>'%latex%'} });
87
88   foreach my $c (@latex_confs) {
89     my $value = $c->value;
90     if (length($value) and $value =~ /fslongtable/) {
91       $value =~ s/fslongtable/longtable/g;
92       $conf->set($c->name, $value, $c->agentnum);
93     }
94   }
95
96   # if there's a USPS tools login, assume that's the standardization method
97   # you want to use
98   $conf->set('address_standardize_method', 'usps')
99     if $conf->exists('usps_webtools-userid')
100     && length($conf->config('usps_webtools-userid')) > 0
101     && ! $conf->exists('address_standardize_method');
102
103   # this option has been renamed/expanded
104   if ( $conf->exists('cust_main-enable_spouse_birthdate') ) {
105     $conf->touch('cust_main-enable_spouse');
106     $conf->delete('cust_main-enable_spouse_birthdate');
107   }
108
109   # renamed/repurposed
110   if ( $conf->exists('cust_pkg-show_fcc_voice_grade_equivalent') ) {
111     $conf->touch('part_pkg-show_fcc_options');
112     $conf->delete('cust_pkg-show_fcc_voice_grade_equivalent');
113     warn "
114 You have FCC Form 477 package options enabled.
115
116 Starting with the October 2014 filing date, the FCC has redesigned 
117 Form 477 and introduced new service categories.  See bin/convert-477-options
118 to update your package configuration for the new report.
119
120 If you need to continue using the old Form 477 report, turn on the
121 'old_fcc_report' configuration option.
122 ";
123   }
124
125   # boolean invoice_sections_by_location option is now
126   # invoice_sections_method = 'location'
127   my @invoice_sections_confs =
128     qsearch('conf', { 'name' => { op=>'LIKE', value=>'%sections_by_location' } });
129   foreach my $c (@invoice_sections_confs) {
130     $c->name =~ /^(\w+)sections_by_location$/;
131     $conf->delete($c->name);
132     my $newname = $1.'sections_method';
133     $conf->set($newname, 'location');
134   }
135
136   # boolean enable_taxproducts is now tax_data_vendor = 'cch'
137   if ( $conf->exists('enable_taxproducts') ) {
138
139     $conf->delete('enable_taxproducts');
140     $conf->set('tax_data_vendor', 'cch');
141
142   }
143
144   # boolean tax-cust_exempt-groups-require_individual_nums is now -num_req all
145   if ( $conf->exists('tax-cust_exempt-groups-require_individual_nums') ) {
146     $conf->set('tax-cust_exempt-groups-num_req', 'all');
147     $conf->delete('tax-cust_exempt-groups-require_individual_nums');
148   }
149
150   # boolean+text previous_balance-exclude_from_total is now two separate options
151   my $total_new_charges = $conf->config('previous_balance-exclude_from_total');
152   if (length($total_new_charges) > 0) {
153     $conf->set('previous_balance-text-total_new_charges', $total_new_charges);
154     $conf->set('previous_balance-exclude_from_total', '');
155   }
156
157   # switch from specifying an email address to boolean check
158   if ( $conf->exists('batch-errors_to') ) {
159     $conf->touch('batch-errors_not_fatal');
160     $conf->delete('batch-errors_to');
161   }
162
163   if ( $conf->exists('voip-cust_email_csv_cdr') ) {
164     $conf->set('voip_cdr_email_attach', 'csv');
165     $conf->delete('voip-cust_email_csv_cdr') ;
166   }
167
168   if ($conf->exists('unsuspendauto') && !$conf->config('unsuspend_balance')) {
169     $conf->set('unsuspend_balance','Zero');
170     $conf->delete('unsuspendauto');
171   }
172
173   if ($conf->config('cust-fields') =~ / \| Payment Type/) {
174     my $cust_fields = $conf->config('cust-fields');
175     # so we can potentially use 'Payment Types' or somesuch in the future
176     $cust_fields =~ s/ \| Payment Type( \|)/$1/;
177     $cust_fields =~ s/ \| Payment Type$//;
178     $conf->set('cust-fields',$cust_fields);
179   }
180
181   enable_banned_pay_pad() unless length($conf->config('banned_pay-pad'));
182
183   # if translate-auto-insert is enabled for a locale, ensure that invoice
184   # terms are in the msgcat (is there a better place for this?)
185   if (my $auto_locale = $conf->config('translate-auto-insert')) {
186     my $lh = FS::L10N->get_handle($auto_locale);
187     foreach (@FS::Conf::invoice_terms) {
188       $lh->maketext($_) if length($_);
189     }
190   }
191 }
192
193 sub upgrade_overlimit_groups {
194     my $conf = shift;
195     my $agentnum = shift;
196     my @groups = $conf->config('overlimit_groups',$agentnum); 
197     if(scalar(@groups)) {
198         my $groups = join(',',@groups);
199         my @groupnums;
200         my $error = '';
201         if ( $groups !~ /^[\d,]+$/ ) {
202             foreach my $groupname ( @groups ) {
203                 my $g = qsearchs('radius_group', { 'groupname' => $groupname } );
204                 unless ( $g ) {
205                     $g = new FS::radius_group {
206                                     'groupname' => $groupname,
207                                     'description' => $groupname,
208                                     };
209                     $error = $g->insert;
210                     die $error if $error;
211                 }
212                 push @groupnums, $g->groupnum;
213             }
214             $conf->set('overlimit_groups',join("\n",@groupnums),$agentnum);
215         }
216     }
217 }
218
219 sub upgrade_invoice_from {
220   my ($conf, $agentnum, $agentonly) = @_;
221   if (
222           ! $conf->exists('invoice_from_name',$agentnum,$agentonly)
223        && $conf->exists('invoice_from',$agentnum,$agentonly)
224        && $conf->config('invoice_from',$agentnum,$agentonly) =~ /\<(.*)\>/
225   ) {
226     my $realemail = $1;
227     $realemail =~ s/^\s*//; # remove leading spaces
228     $realemail =~ s/\s*$//; # remove trailing spaces
229     my $realname = $conf->config('invoice_from',$agentnum);
230     $realname =~ s/\<.*\>//; # remove email address
231     $realname =~ s/^\s*//; # remove leading spaces
232     $realname =~ s/\s*$//; # remove trailing spaces
233     # properly quote names that contain punctuation
234     if (($realname =~ /[^[:alnum:][:space:]]/) && ($realname !~ /^\".*\"$/)) {
235       $realname = '"' . $realname . '"';
236     }
237     $conf->set('invoice_from_name', $realname, $agentnum);
238     $conf->set('invoice_from', $realemail, $agentnum);
239   }
240 }
241
242 =item upgrade
243
244 =cut
245
246 sub upgrade {
247   my %opt = @_;
248
249   my $data = upgrade_data(%opt);
250
251   my $oldAutoCommit = $FS::UID::AutoCommit;
252   local $FS::UID::AutoCommit = 0;
253   local $FS::UID::AutoCommit = 0;
254
255   local $FS::cust_pkg::upgrade = 1; #go away after setup+start dates cleaned up for old customers
256
257
258   foreach my $table ( keys %$data ) {
259
260     my $class = "FS::$table";
261     eval "use $class;";
262     die $@ if $@;
263
264     if ( $class->can('_upgrade_data') ) {
265       warn "Upgrading $table...\n";
266
267       my $start = time;
268
269       $class->_upgrade_data(%opt);
270
271       # New interface for async upgrades: a class can declare a 
272       # "queueable_upgrade" method, which will run as part of the normal 
273       # upgrade, but if the -j option is passed, will instead be run from 
274       # the job queue.
275       if ( $class->can('queueable_upgrade') ) {
276         my $jobname = $class . '::queueable_upgrade';
277         my $num_jobs = FS::queue->count("job = '$jobname' and status != 'failed'");
278         if ($num_jobs > 0) {
279           warn "$class upgrade already scheduled.\n";
280         } else {
281           if ( $opt{'queue'} ) {
282             warn "Scheduling $class upgrade.\n";
283             my $job = FS::queue->new({ job => $jobname });
284             $job->insert($class, %opt);
285           } else {
286             $class->queueable_upgrade(%opt);
287           }
288         } #$num_jobs == 0
289       }
290
291       if ( $oldAutoCommit ) {
292         warn "  committing\n";
293         dbh->commit or die dbh->errstr;
294       }
295       
296       #warn "\e[1K\rUpgrading $table... done in ". (time-$start). " seconds\n";
297       warn "  done in ". (time-$start). " seconds\n";
298
299     } else {
300       warn "WARNING: asked for upgrade of $table,".
301            " but FS::$table has no _upgrade_data method\n";
302     }
303
304 #    my @records = @{ $data->{$table} };
305 #
306 #    foreach my $record ( @records ) {
307 #      my $args = delete($record->{'_upgrade_args'}) || [];
308 #      my $object = $class->new( $record );
309 #      my $error = $object->insert( @$args );
310 #      die "error inserting record into $table: $error\n"
311 #        if $error;
312 #    }
313
314   }
315
316   local($FS::cust_main::ignore_expired_card) = 1;
317   #this is long-gone... would need to set an equivalent in cust_location #local($FS::cust_main::ignore_illegal_zip) = 1;
318   local($FS::cust_main::ignore_banned_card) = 1;
319   local($FS::cust_main::skip_fuzzyfiles) = 1;
320
321   local($FS::cust_payby::ignore_expired_card) = 1;
322   local($FS::cust_payby::ignore_banned_card) = 1;
323
324   # decrypt inadvertantly-encrypted payinfo where payby != CARD,DCRD,CHEK,DCHK
325   # kind of a weird spot for this, but it's better than duplicating
326   # all this code in each class...
327   my @decrypt_tables = qw( cust_main cust_pay_void cust_pay cust_refund cust_pay_pending );
328   foreach my $table ( @decrypt_tables ) {
329       my @objects = qsearch({
330         'table'     => $table,
331         'hashref'   => {},
332         'extra_sql' => "WHERE payby NOT IN ( 'CARD', 'DCRD', 'CHEK', 'DCHK' ) ".
333                        " AND LENGTH(payinfo) > 100",
334       });
335       foreach my $object ( @objects ) {
336           my $payinfo = $object->decrypt($object->payinfo);
337           die "error decrypting payinfo" if $payinfo eq $object->payinfo;
338           $object->payinfo($payinfo);
339           my $error = $object->replace;
340           die $error if $error;
341       }
342   }
343
344 }
345
346 =item upgrade_data
347
348 =cut
349
350 sub upgrade_data {
351   my %opt = @_;
352
353   tie my %hash, 'Tie::IxHash', 
354
355     #remap log levels
356         'log' => [],
357
358     #payby conditions to new ones
359     'part_event_condition' => [],
360
361     #payby actions to new ones
362     'part_event' => [],
363
364     #fix whitespace - before cust_main
365     'cust_location' => [],
366
367     #cust_main (remove paycvv from history, locations, cust_payby, etc)
368     'cust_main' => [],
369
370     #contact -> cust_contact / prospect_contact
371     'contact' => [],
372
373     #msgcat
374     'msgcat' => [],
375
376     #reason type and reasons
377     'reason_type'     => [],
378     'cust_pkg_reason' => [],
379
380     #need part_pkg before cust_credit...
381     'part_pkg' => [],
382
383     #customer credits
384     'cust_credit' => [],
385
386     # reason / void_reason migration to reasonnum / void_reasonnum
387     'cust_credit_void' => [],
388     'cust_bill_void' => [],
389     # also fix some tax allocation records
390     'cust_bill_pkg_void' => [],
391
392     #duplicate history records
393     'h_cust_svc'  => [],
394
395     #populate cust_pay.otaker
396     'cust_pay'    => [],
397
398     #populate part_pkg_taxclass for starters
399     'part_pkg_taxclass' => [],
400
401     #remove bad pending records
402     'cust_pay_pending' => [],
403
404     #replace invnum and pkgnum with billpkgnum
405     'cust_bill_pkg_detail' => [],
406
407     #usage_classes if we have none
408     'usage_class' => [],
409
410     #phone_type if we have none
411     'phone_type' => [],
412
413     #fixup access rights
414     'access_right' => [],
415
416     #change recur_flat and enable_prorate
417     'part_pkg_option' => [],
418
419     #add weights to pkg_category
420     'pkg_category' => [],
421
422     #cdrbatch fixes
423     'cdr' => [],
424
425     #otaker->usernum
426     'cust_attachment' => [],
427     #'cust_credit' => [],
428     #'cust_main' => [],
429     'cust_main_note' => [],
430     #'cust_pay' => [],
431     'cust_pay_void' => [],
432     'cust_pkg' => [],
433     #'cust_pkg_reason' => [],
434     'cust_pkg_discount' => [],
435     'cust_refund' => [],
436     'banned_pay' => [],
437
438     #paycardtype
439     'cust_payby' => [],
440
441     #default namespace
442     'payment_gateway' => [],
443
444     #migrate to templates
445     'msg_template' => [],
446
447     #return unprovisioned numbers to availability
448     'phone_avail' => [],
449
450     #insert scripcondition
451     'TicketSystem' => [],
452     
453     #insert LATA data if not already present
454     'lata' => [],
455     
456     #insert MSA data if not already present
457     'msa' => [],
458
459     # migrate to radius_group and groupnum instead of groupname
460     'radius_usergroup' => [],
461     'part_svc'         => [],
462     'part_export'      => [],
463
464     #insert default tower_sector if not present
465     'tower' => [],
466
467     #repair improperly deleted services
468     'cust_svc' => [],
469
470     #routernum/blocknum
471     'svc_broadband' => [],
472
473     #set up payment gateways if needed
474     'pay_batch' => [],
475
476     #flag monthly tax exemptions
477     'cust_tax_exempt_pkg' => [],
478
479     #kick off tax location history upgrade
480     'cust_bill_pkg' => [],
481
482     #fix taxable line item links
483     'cust_bill_pkg_tax_location' => [],
484
485     #populate state FIPS codes if not already done
486     'state' => [],
487
488     #set default locations on quoted packages
489     'quotation_pkg' => [],
490
491     #populate tax statuses
492     'tax_status' => [],
493
494     #mark certain taxes as system-maintained,
495     # and fix whitespace
496     'cust_main_county' => [],
497   ;
498
499   \%hash;
500
501 }
502
503 =item upgrade_schema
504
505 =cut
506
507 sub upgrade_schema {
508   my %opt = @_;
509
510   my $data = upgrade_schema_data(%opt);
511
512   my $oldAutoCommit = $FS::UID::AutoCommit;
513   local $FS::UID::AutoCommit = 0;
514   local $FS::UID::AutoCommit = 0;
515
516   foreach my $table ( keys %$data ) {
517
518     my $class = "FS::$table";
519     eval "use $class;";
520     die $@ if $@;
521
522     if ( $class->can('_upgrade_schema') ) {
523       warn "Upgrading $table schema...\n";
524
525       my $start = time;
526
527       $class->_upgrade_schema(%opt);
528
529       if ( $oldAutoCommit ) {
530         warn "  committing\n";
531         dbh->commit or die dbh->errstr;
532       }
533       
534       #warn "\e[1K\rUpgrading $table... done in ". (time-$start). " seconds\n";
535       warn "  done in ". (time-$start). " seconds\n";
536
537     } else {
538       warn "WARNING: asked for schema upgrade of $table,".
539            " but FS::$table has no _upgrade_schema method\n";
540     }
541
542   }
543
544 }
545
546 =item upgrade_schema_data
547
548 =cut
549
550 sub upgrade_schema_data {
551   my %opt = @_;
552
553   tie my %hash, 'Tie::IxHash', 
554
555     #fix classnum character(1)
556     'cust_bill_pkg_detail' => [],
557     #add necessary columns to RT schema
558     'TicketSystem' => [],
559     #remove possible dangling records
560     'password_history' => [],
561     'cust_pay_pending' => [],
562   ;
563
564   \%hash;
565
566 }
567
568 sub upgrade_sqlradius {
569   #my %opt = @_;
570
571   my $conf = new FS::Conf;
572
573   my @part_export = FS::part_export::sqlradius->all_sqlradius_withaccounting();
574
575   foreach my $part_export ( @part_export ) {
576
577     my $errmsg = 'Error adding FreesideStatus to '.
578                  $part_export->option('datasrc'). ': ';
579
580     my $dbh = DBI->connect(
581       ( map $part_export->option($_), qw ( datasrc username password ) ),
582       { PrintError => 0, PrintWarn => 0 }
583     ) or do {
584       warn $errmsg.$DBI::errstr;
585       next;
586     };
587
588     my $str2time = str2time_sql( $dbh->{Driver}->{Name} );
589     my $group = "UserName";
590     $group .= ",Realm"
591       if ref($part_export) =~ /withdomain/
592       || $dbh->{Driver}->{Name} =~ /^Pg/; #hmm
593
594     my $sth_alter = $dbh->prepare(
595       "ALTER TABLE radacct ADD COLUMN FreesideStatus varchar(32) NULL"
596     );
597     if ( $sth_alter ) {
598       if ( $sth_alter->execute ) {
599         my $sth_update = $dbh->prepare(
600          "UPDATE radacct SET FreesideStatus = 'done' WHERE FreesideStatus IS NULL"
601         ) or die $errmsg.$dbh->errstr;
602         $sth_update->execute or die $errmsg.$sth_update->errstr;
603       } else {
604         my $error = $sth_alter->errstr;
605         warn $errmsg.$error
606           unless $error =~ /Duplicate column name/i  #mysql
607               || $error =~ /already exists/i;        #Pg
608 ;
609       }
610     } else {
611       my $error = $dbh->errstr;
612       warn $errmsg.$error; #unless $error =~ /exists/i;
613     }
614
615     my $sth_index = $dbh->prepare(
616       "CREATE INDEX FreesideStatus ON radacct ( FreesideStatus )"
617     );
618     if ( $sth_index ) {
619       unless ( $sth_index->execute ) {
620         my $error = $sth_index->errstr;
621         warn $errmsg.$error
622           unless $error =~ /Duplicate key name/i #mysql
623               || $error =~ /already exists/i;    #Pg
624       }
625     } else {
626       my $error = $dbh->errstr;
627       warn $errmsg.$error. ' (preparing statement)';#unless $error =~ /exists/i;
628     }
629
630     my $times = ($dbh->{Driver}->{Name} =~ /^mysql/)
631       ? ' AcctStartTime != 0 AND AcctStopTime != 0 '
632       : ' AcctStartTime IS NOT NULL AND AcctStopTime IS NOT NULL ';
633
634     my $sth = $dbh->prepare("SELECT UserName,
635                                     Realm,
636                                     $str2time max(AcctStartTime)),
637                                     $str2time max(AcctStopTime))
638                               FROM radacct
639                               WHERE FreesideStatus = 'done'
640                                 AND $times
641                               GROUP BY $group
642                             ")
643       or die $errmsg.$dbh->errstr;
644     $sth->execute() or die $errmsg.$sth->errstr;
645   
646     while (my $row = $sth->fetchrow_arrayref ) {
647       my ($username, $realm, $start, $stop) = @$row;
648   
649       $username = lc($username) unless $conf->exists('username-uppercase');
650
651       my $exportnum = $part_export->exportnum;
652       my $extra_sql = " AND exportnum = $exportnum ".
653                       " AND exportsvcnum IS NOT NULL ";
654
655       if ( ref($part_export) =~ /withdomain/ ) {
656         $extra_sql = " AND '$realm' = ( SELECT domain FROM svc_domain
657                          WHERE svc_domain.svcnum = svc_acct.domsvc ) ";
658       }
659   
660       my $svc_acct = qsearchs({
661         'select'    => 'svc_acct.*',
662         'table'     => 'svc_acct',
663         'addl_from' => 'LEFT JOIN cust_svc   USING ( svcnum )'.
664                        'LEFT JOIN export_svc USING ( svcpart )',
665         'hashref'   => { 'username' => $username },
666         'extra_sql' => $extra_sql,
667       });
668
669       if ($svc_acct) {
670         $svc_acct->last_login($start)
671           if $start && (!$svc_acct->last_login || $start > $svc_acct->last_login);
672         $svc_acct->last_logout($stop)
673           if $stop && (!$svc_acct->last_logout || $stop > $svc_acct->last_logout);
674       }
675     }
676   }
677
678 }
679
680 =back
681
682 =head1 BUGS
683
684 Sure.
685
686 =head1 SEE ALSO
687
688 =cut
689
690 1;
691