add "with email address(es)" and "without postal mail invoices" to adv. customer...
[freeside.git] / FS / FS / cust_main / Search.pm
1 package FS::cust_main::Search;
2
3 use strict;
4 use base qw( Exporter );
5 use vars qw( @EXPORT_OK $DEBUG $me $conf @fuzzyfields );
6 use String::Approx qw(amatch);
7 use FS::UID qw( dbh );
8 use FS::Record qw( qsearch );
9 use FS::cust_main;
10 use FS::cust_main_invoice;
11 use FS::svc_acct;
12
13 @EXPORT_OK = qw( smart_search );
14
15 # 1 is mostly method/subroutine entry and options
16 # 2 traces progress of some operations
17 # 3 is even more information including possibly sensitive data
18 $DEBUG = 0;
19 $me = '[FS::cust_main::Search]';
20
21 @fuzzyfields = ( 'first', 'last', 'company', 'address1' );
22
23 install_callback FS::UID sub { 
24   $conf = new FS::Conf;
25   #yes, need it for stuff below (prolly should be cached)
26 };
27
28 =head1 NAME
29
30 FS::cust_main::Search - Customer searching
31
32 =head1 SYNOPSIS
33
34   use FS::cust_main::Search;
35
36   FS::cust_main::Search::smart_search(%options);
37
38   FS::cust_main::Search::email_search(%options);
39
40   FS::cust_main::Search->search( \%options );
41   
42   FS::cust_main::Search->fuzzy_search( \%fuzzy_hashref );
43
44 =head1 SUBROUTINES
45
46 =over 4
47
48 =item smart_search OPTION => VALUE ...
49
50 Accepts the following options: I<search>, the string to search for.  The string
51 will be searched for as a customer number, phone number, name or company name,
52 as an exact, or, in some cases, a substring or fuzzy match (see the source code
53 for the exact heuristics used); I<no_fuzzy_on_exact>, causes smart_search to
54 skip fuzzy matching when an exact match is found.
55
56 Any additional options are treated as an additional qualifier on the search
57 (i.e. I<agentnum>).
58
59 Returns a (possibly empty) array of FS::cust_main objects.
60
61 =cut
62
63 sub smart_search {
64   my %options = @_;
65
66   #here is the agent virtualization
67   my $agentnums_sql = 
68     $FS::CurrentUser::CurrentUser->agentnums_sql(table => 'cust_main');
69
70   my @cust_main = ();
71
72   my $skip_fuzzy = delete $options{'no_fuzzy_on_exact'};
73   my $search = delete $options{'search'};
74   ( my $alphanum_search = $search ) =~ s/\W//g;
75   
76   if ( $alphanum_search =~ /^1?(\d{3})(\d{3})(\d{4})(\d*)$/ ) { #phone# search
77
78     #false laziness w/Record::ut_phone
79     my $phonen = "$1-$2-$3";
80     $phonen .= " x$4" if $4;
81
82     push @cust_main, qsearch( {
83       'table'   => 'cust_main',
84       'hashref' => { %options },
85       'extra_sql' => ( scalar(keys %options) ? ' AND ' : ' WHERE ' ).
86                      ' ( '.
87                          join(' OR ', map "$_ = '$phonen'",
88                                           qw( daytime night mobile fax )
89                              ).
90                      ' ) '.
91                      " AND $agentnums_sql", #agent virtualization
92     } );
93
94     unless ( @cust_main || $phonen =~ /x\d+$/ ) { #no exact match
95       #try looking for matches with extensions unless one was specified
96
97       push @cust_main, qsearch( {
98         'table'   => 'cust_main',
99         'hashref' => { %options },
100         'extra_sql' => ( scalar(keys %options) ? ' AND ' : ' WHERE ' ).
101                        ' ( '.
102                            join(' OR ', map "$_ LIKE '$phonen\%'",
103                                             qw( daytime night )
104                                ).
105                        ' ) '.
106                        " AND $agentnums_sql", #agent virtualization
107       } );
108
109     }
110
111   # custnum search (also try agent_custid), with some tweaking options if your
112   # legacy cust "numbers" have letters
113   } 
114   
115   
116   if ( $search =~ /@/ ) {
117       push @cust_main,
118           map $_->cust_main,
119               qsearch( {
120                          'table'     => 'cust_main_invoice',
121                          'hashref'   => { 'dest' => $search },
122                        }
123                      );
124   } elsif ( $search =~ /^\s*(\d+)\s*$/
125          || ( $conf->config('cust_main-agent_custid-format') eq 'ww?d+'
126               && $search =~ /^\s*(\w\w?\d+)\s*$/
127             )
128          || ( $conf->config('cust_main-custnum-display_special')
129            # it's not currently possible for special prefixes to contain
130            # digits, so just strip off any alphabetic prefix and match 
131            # the rest to custnum
132               && $search =~ /^\s*[[:alpha:]]*(\d+)\s*$/
133             )
134          || ( $conf->exists('address1-search' )
135               && $search =~ /^\s*(\d+\-?\w*)\s*$/ #i.e. 1234A or 9432-D
136             )
137      )
138   {
139
140     my $num = $1;
141
142     if ( $num =~ /^(\d+)$/ && $num <= 2147483647 ) { #need a bigint custnum? wow
143       my $agent_custid_null = $conf->exists('cust_main-default_agent_custid')
144                                 ? ' AND agent_custid IS NULL ' : '';
145       push @cust_main, qsearch( {
146         'table'     => 'cust_main',
147         'hashref'   => { 'custnum' => $num, %options },
148         'extra_sql' => " AND $agentnums_sql $agent_custid_null",
149       } );
150     }
151
152     # for all agents this user can see, if any of them have custnum prefixes 
153     # that match the search string, include customers that match the rest 
154     # of the custnum and belong to that agent
155     foreach my $agentnum ( $FS::CurrentUser::CurrentUser->agentnums ) {
156       my $p = $conf->config('cust_main-custnum-display_prefix', $agentnum);
157       next if !$p;
158       if ( $p eq substr($num, 0, length($p)) ) {
159         push @cust_main, qsearch( {
160           'table'   => 'cust_main',
161           'hashref' => { 'custnum' => 0 + substr($num, length($p)),
162                          'agentnum' => $agentnum,
163                           %options,
164                        },
165         } );
166       }
167     }
168
169     push @cust_main, qsearch( {
170         'table'     => 'cust_main',
171         'hashref'   => { 'agent_custid' => $num, %options },
172         'extra_sql' => " AND $agentnums_sql", #agent virtualization
173     } );
174
175     if ( $conf->exists('address1-search') ) {
176       my $len = length($num);
177       $num = lc($num);
178       # probably the Right Thing: return customers that have any associated
179       # locations matching the string, not just bill/ship location
180       push @cust_main, qsearch( {
181         'table'     => 'cust_main',
182         'addl_from' => ' JOIN cust_location USING (custnum) ',
183         'hashref'   => { %options, },
184         'extra_sql' => 
185           ( keys(%options) ? ' AND ' : ' WHERE ' ).
186           " LOWER(SUBSTRING(cust_location.address1 FROM 1 FOR $len)) = '$num' ".
187           " AND $agentnums_sql",
188       } );
189     }
190
191   } elsif ( $search =~ /^\s*(\S.*\S)\s+\((.+), ([^,]+)\)\s*$/ ) {
192
193     my($company, $last, $first) = ( $1, $2, $3 );
194
195     # "Company (Last, First)"
196     #this is probably something a browser remembered,
197     #so just do an exact search (but case-insensitive, so USPS standardization
198     #doesn't throw a wrench in the works)
199
200     push @cust_main, qsearch( {
201         'table'     => 'cust_main',
202         'hashref'   => { %options },
203         'extra_sql' => 
204         ( keys(%options) ? ' AND ' : ' WHERE ' ).
205         join(' AND ',
206           " LOWER(first)   = ". dbh->quote(lc($first)),
207           " LOWER(last)    = ". dbh->quote(lc($last)),
208           " LOWER(company) = ". dbh->quote(lc($company)),
209           $agentnums_sql,
210         ),
211       } ),
212     #contacts?
213
214   } elsif ( $search =~ /^\s*(\S.*\S)\s*$/ ) { # value search
215                                               # try (ship_){last,company}
216
217     my $value = lc($1);
218
219     # # remove "(Last, First)" in "Company (Last, First)", otherwise the
220     # # full strings the browser remembers won't work
221     # $value =~ s/\([\w \,\.\-\']*\)$//; #false laziness w/Record::ut_name
222
223     use Lingua::EN::NameParse;
224     my $NameParse = new Lingua::EN::NameParse(
225              auto_clean     => 1,
226              allow_reversed => 1,
227     );
228
229     my($last, $first) = ( '', '' );
230     #maybe disable this too and just rely on NameParse?
231     if ( $value =~ /^(.+),\s*([^,]+)$/ ) { # Last, First
232     
233       ($last, $first) = ( $1, $2 );
234     
235     #} elsif  ( $value =~ /^(.+)\s+(.+)$/ ) {
236     } elsif ( ! $NameParse->parse($value) ) {
237
238       my %name = $NameParse->components;
239       $first = $name{'given_name_1'} || $name{'initials_1'}; #wtf NameParse, Ed?
240       $last  = $name{'surname_1'};
241
242     }
243
244     if ( $first && $last ) {
245
246       my($q_last, $q_first) = ( dbh->quote($last), dbh->quote($first) );
247
248       #exact
249       my $sql = scalar(keys %options) ? ' AND ' : ' WHERE ';
250       $sql .= "( LOWER(cust_main.last) = $q_last AND LOWER(cust_main.first) = $q_first )";
251
252       push @cust_main, qsearch( {
253         'table'     => 'cust_main',
254         'hashref'   => \%options,
255         'extra_sql' => "$sql AND $agentnums_sql", #agent virtualization
256       } );
257       #contacts?
258
259       # or it just be something that was typed in... (try that in a sec)
260
261     }
262
263     my $q_value = dbh->quote($value);
264
265     #exact
266     my $sql = scalar(keys %options) ? ' AND ' : ' WHERE ';
267     $sql .= " (    LOWER(last)          = $q_value
268                 OR LOWER(company)       = $q_value
269             ";
270     #yes, it's a kludge
271     $sql .= "   OR EXISTS( 
272                 SELECT 1 FROM cust_location 
273                 WHERE LOWER(cust_location.address1) = $q_value
274                   AND cust_location.custnum = cust_main.custnum
275             )
276             "
277       if $conf->exists('address1-search');
278     $sql .= " )";
279
280     push @cust_main, qsearch( {
281       'table'     => 'cust_main',
282       'hashref'   => \%options,
283       'extra_sql' => "$sql AND $agentnums_sql", #agent virtualization
284     } );
285
286     #no exact match, trying substring/fuzzy
287     #always do substring & fuzzy (unless they're explicity config'ed off)
288     #getting complaints searches are not returning enough
289     unless ( @cust_main  && $skip_fuzzy || $conf->exists('disable-fuzzy') ) {
290
291       #still some false laziness w/search (was search/cust_main.cgi)
292
293       #substring
294
295       my @hashrefs = (
296         { 'company'      => { op=>'ILIKE', value=>"%$value%" }, },
297       );
298
299       if ( $first && $last ) {
300         #contacts? ship_first/ship_last are gone
301
302         push @hashrefs,
303           { 'first'        => { op=>'ILIKE', value=>"%$first%" },
304             'last'         => { op=>'ILIKE', value=>"%$last%" },
305           },
306         ;
307
308       } else {
309
310         push @hashrefs,
311           { 'last'         => { op=>'ILIKE', value=>"%$value%" }, },
312         ;
313       }
314
315       foreach my $hashref ( @hashrefs ) {
316
317         push @cust_main, qsearch( {
318           'table'     => 'cust_main',
319           'hashref'   => { %$hashref,
320                            %options,
321                          },
322           'extra_sql' => " AND $agentnums_sql", #agent virtualizaiton
323         } );
324
325       }
326
327       if ( $conf->exists('address1-search') ) {
328
329         push @cust_main, qsearch( {
330           'table'     => 'cust_main',
331           'addl_from' => 'JOIN cust_location USING (custnum)',
332           'extra_sql' => 'WHERE cust_location.address1 ILIKE '.
333                           dbh->quote("%$value%"),
334         } );
335
336       }
337
338       #fuzzy
339       my %fuzopts = (
340         'hashref'   => \%options,
341         'select'    => '',
342         'extra_sql' => " AND $agentnums_sql",    #agent virtualization
343       );
344
345       if ( $first && $last ) {
346         push @cust_main, FS::cust_main::Search->fuzzy_search(
347           { 'last'   => $last,    #fuzzy hashref
348             'first'  => $first }, #
349           %fuzopts
350         );
351       }
352       foreach my $field ( 'last', 'company' ) {
353         push @cust_main,
354           FS::cust_main::Search->fuzzy_search( { $field => $value }, %fuzopts );
355       }
356       if ( $conf->exists('address1-search') ) {
357         push @cust_main,
358           FS::cust_main::Search->fuzzy_search( { 'address1' => $value }, %fuzopts );
359       }
360
361     }
362
363   }
364
365   #eliminate duplicates
366   my %saw = ();
367   @cust_main = grep { !$saw{$_->custnum}++ } @cust_main;
368
369   @cust_main;
370
371 }
372
373 =item email_search
374
375 Accepts the following options: I<email>, the email address to search for.  The
376 email address will be searched for as an email invoice destination and as an
377 svc_acct account.
378
379 #Any additional options are treated as an additional qualifier on the search
380 #(i.e. I<agentnum>).
381
382 Returns a (possibly empty) array of FS::cust_main objects (but usually just
383 none or one).
384
385 =cut
386
387 sub email_search {
388   my %options = @_;
389
390   local($DEBUG) = 1;
391
392   my $email = delete $options{'email'};
393
394   #we're only being used by RT at the moment... no agent virtualization yet
395   #my $agentnums_sql = $FS::CurrentUser::CurrentUser->agentnums_sql;
396
397   my @cust_main = ();
398
399   if ( $email =~ /([^@]+)\@([^@]+)/ ) {
400
401     my ( $user, $domain ) = ( $1, $2 );
402
403     warn "$me smart_search: searching for $user in domain $domain"
404       if $DEBUG;
405
406     push @cust_main,
407       map $_->cust_main,
408           qsearch( {
409                      'table'     => 'cust_main_invoice',
410                      'hashref'   => { 'dest' => $email },
411                    }
412                  );
413
414     push @cust_main,
415       map  $_->cust_main,
416       grep $_,
417       map  $_->cust_svc->cust_pkg,
418           qsearch( {
419                      'table'     => 'svc_acct',
420                      'hashref'   => { 'username' => $user, },
421                      'extra_sql' =>
422                        'AND ( SELECT domain FROM svc_domain
423                                 WHERE svc_acct.domsvc = svc_domain.svcnum
424                             ) = '. dbh->quote($domain),
425                    }
426                  );
427   }
428
429   my %saw = ();
430   @cust_main = grep { !$saw{$_->custnum}++ } @cust_main;
431
432   warn "$me smart_search: found ". scalar(@cust_main). " unique customers"
433     if $DEBUG;
434
435   @cust_main;
436
437 }
438
439 =back
440
441 =head1 CLASS METHODS
442
443 =over 4
444
445 =item search HASHREF
446
447 (Class method)
448
449 Returns a qsearch hash expression to search for parameters specified in
450 HASHREF.  Valid parameters are
451
452 =over 4
453
454 =item agentnum
455
456 =item status
457
458 =item address
459
460 =item zip
461
462 =item refnum
463
464 =item cancelled_pkgs
465
466 bool
467
468 =item signupdate
469
470 listref of start date, end date
471
472 =item birthdate
473
474 listref of start date, end date
475
476 =item spouse_birthdate
477
478 listref of start date, end date
479
480 =item anniversary_date
481
482 listref of start date, end date
483
484 =item payby
485
486 listref
487
488 =item paydate_year
489
490 =item paydate_month
491
492 =item current_balance
493
494 listref (list returned by FS::UI::Web::parse_lt_gt($cgi, 'current_balance'))
495
496 =item cust_fields
497
498 =item flattened_pkgs
499
500 bool
501
502 =back
503
504 =cut
505
506 sub search {
507   my ($class, $params) = @_;
508
509   my $dbh = dbh;
510
511   my @where = ();
512   my $orderby;
513
514   # initialize these to prevent warnings
515   $params = {
516     'custnum'       => '',
517     'agentnum'      => '',
518     'usernum'       => '',
519     'status'        => '',
520     'address'       => '',
521     'zip'           => '',
522     'paydate_year'  => '',
523     'invoice_terms' => '',
524     'custbatch'     => '',
525     %$params
526   };
527
528   ##
529   # explicit custnum(s)
530   ##
531
532   if ( $params->{'custnum'} ) {
533     my @custnums = ref($params->{'custnum'}) ? 
534                       @{ $params->{'custnum'} } : 
535                       $params->{'custnum'};
536     push @where, 
537       'cust_main.custnum IN (' . 
538       join(',', map { $_ =~ /^(\d+)$/ ? $1 : () } @custnums ) .
539       ')' if scalar(@custnums) > 0;
540   }
541
542   ##
543   # parse agent
544   ##
545
546   if ( $params->{'agentnum'} =~ /^(\d+)$/ and $1 ) {
547     push @where,
548       "cust_main.agentnum = $1";
549   }
550
551   ##
552   # do the same for user
553   ##
554
555   if ( $params->{'usernum'} =~ /^(\d+)$/ and $1 ) {
556     push @where,
557       "cust_main.usernum = $1";
558   }
559
560   ##
561   # parse status
562   ##
563
564   #prospect ordered active inactive suspended cancelled
565   if ( grep { $params->{'status'} eq $_ } FS::cust_main->statuses() ) {
566     my $method = $params->{'status'}. '_sql';
567     #push @where, $class->$method();
568     push @where, FS::cust_main->$method();
569   }
570
571   ##
572   # address
573   ##
574   if ( $params->{'address'} =~ /\S/ ) {
575     my $address = dbh->quote('%'. lc($params->{'address'}). '%');
576     push @where, "EXISTS(
577       SELECT 1 FROM cust_location 
578       WHERE cust_location.custnum = cust_main.custnum
579         AND (LOWER(cust_location.address1) LIKE $address OR
580              LOWER(cust_location.address2) LIKE $address)
581     )";
582   }
583
584   ##
585   # zipcode
586   ##
587   if ( $params->{'zip'} =~ /\S/ ) {
588     my $zip = dbh->quote($params->{'zip'} . '%');
589     push @where, "EXISTS(
590       SELECT 1 FROM cust_location
591       WHERE cust_location.custnum = cust_main.custnum
592         AND cust_location.zip LIKE $zip
593     )";
594   }
595
596   ###
597   # refnum
598   ###
599   if ( $params->{'refnum'}  ) {
600
601     my @refnum = ref( $params->{'refnum'} )
602                    ? @{ $params->{'refnum'} }
603                    :  ( $params->{'refnum'} );
604
605     @refnum = grep /^(\d*)$/, @refnum;
606
607     push @where, '( '. join(' OR ', map "cust_main.refnum = $_", @refnum ). ' )'
608       if @refnum;
609
610   }
611
612   ##
613   # parse cancelled package checkbox
614   ##
615
616   my $pkgwhere = "";
617
618   $pkgwhere .= "AND (cancel = 0 or cancel is null)"
619     unless $params->{'cancelled_pkgs'};
620
621   ##
622   # parse without census tract checkbox
623   ##
624
625   push @where, "(censustract = '' or censustract is null)"
626     if $params->{'no_censustract'};
627
628   ##
629   # parse with hardcoded tax location checkbox
630   ##
631
632   push @where, "geocode is not null"
633     if $params->{'with_geocode'};
634
635   ##
636   # "with email address(es)" checkbox
637   ##
638
639   push @where,
640     'EXISTS ( SELECT 1 FROM cust_main_invoice
641                 WHERE cust_main_invoice.custnum = cust_main.custnum
642                   AND length(dest) > 5
643             )'  # AND dest LIKE '%@%'
644     if $params->{'with_email'};
645
646   ##
647   # "without postal mail invoices" checkbox
648   ##
649
650   push @where,
651     "NOT EXISTS ( SELECT 1 FROM cust_main_invoice
652                     WHERE cust_main_invoice.custnum = cust_main.custnum
653                       AND dest = 'POST' )"
654     if $params->{'no_POST'};
655
656   ##
657   # dates
658   ##
659
660   foreach my $field (qw( signupdate birthdate spouse_birthdate anniversary_date )) {
661
662     next unless exists($params->{$field});
663
664     my($beginning, $ending, $hour) = @{$params->{$field}};
665
666     push @where,
667       "cust_main.$field IS NOT NULL",
668       "cust_main.$field >= $beginning",
669       "cust_main.$field <= $ending";
670
671     if($field eq 'signupdate' && defined $hour) {
672       if ($dbh->{Driver}->{Name} =~ /Pg/i) {
673         push @where, "extract(hour from to_timestamp(cust_main.$field)) = $hour";
674       }
675       elsif( $dbh->{Driver}->{Name} =~ /mysql/i) {
676         push @where, "hour(from_unixtime(cust_main.$field)) = $hour"
677       }
678       else {
679         warn "search by time of day not supported on ".$dbh->{Driver}->{Name}." databases";
680       }
681     }
682
683     $orderby ||= "ORDER BY cust_main.$field";
684
685   }
686
687   ###
688   # classnum
689   ###
690
691   if ( $params->{'classnum'} ) {
692
693     my @classnum = ref( $params->{'classnum'} )
694                      ? @{ $params->{'classnum'} }
695                      :  ( $params->{'classnum'} );
696
697     @classnum = grep /^(\d*)$/, @classnum;
698
699     if ( @classnum ) {
700       push @where, '( '. join(' OR ', map {
701                                             $_ ? "cust_main.classnum = $_"
702                                                : "cust_main.classnum IS NULL"
703                                           }
704                                           @classnum
705                              ).
706                    ' )';
707     }
708
709   }
710
711   ###
712   # payby
713   ###
714
715   if ( $params->{'payby'} ) {
716
717     my @payby = ref( $params->{'payby'} )
718                   ? @{ $params->{'payby'} }
719                   :  ( $params->{'payby'} );
720
721     @payby = grep /^([A-Z]{4})$/, @payby;
722
723     push @where, '( '. join(' OR ', map "cust_main.payby = '$_'", @payby). ' )'
724       if @payby;
725
726   }
727
728   ###
729   # paydate_year / paydate_month
730   ###
731
732   if ( $params->{'paydate_year'} =~ /^(\d{4})$/ ) {
733     my $year = $1;
734     $params->{'paydate_month'} =~ /^(\d\d?)$/
735       or die "paydate_year without paydate_month?";
736     my $month = $1;
737
738     push @where,
739       'paydate IS NOT NULL',
740       "paydate != ''",
741       "CAST(paydate AS timestamp) < CAST('$year-$month-01' AS timestamp )"
742 ;
743   }
744
745   ###
746   # invoice terms
747   ###
748
749   if ( $params->{'invoice_terms'} =~ /^([\w ]+)$/ ) {
750     my $terms = $1;
751     if ( $1 eq 'NULL' ) {
752       push @where,
753         "( cust_main.invoice_terms IS NULL OR cust_main.invoice_terms = '' )";
754     } else {
755       push @where,
756         "cust_main.invoice_terms IS NOT NULL",
757         "cust_main.invoice_terms = '$1'";
758     }
759   }
760
761   ##
762   # amounts
763   ##
764
765   if ( $params->{'current_balance'} ) {
766
767     #my $balance_sql = $class->balance_sql();
768     my $balance_sql = FS::cust_main->balance_sql();
769
770     my @current_balance =
771       ref( $params->{'current_balance'} )
772       ? @{ $params->{'current_balance'} }
773       :  ( $params->{'current_balance'} );
774
775     push @where, map { s/current_balance/$balance_sql/; $_ }
776                      @current_balance;
777
778   }
779
780   ##
781   # custbatch
782   ##
783
784   if ( $params->{'custbatch'} =~ /^([\w\/\-\:\.]+)$/ and $1 ) {
785     push @where,
786       "cust_main.custbatch = '$1'";
787   }
788   
789   if ( $params->{'tagnum'} ) {
790     my @tagnums = ref( $params->{'tagnum'} ) ? @{ $params->{'tagnum'} } : ( $params->{'tagnum'} );
791
792     @tagnums = grep /^(\d+)$/, @tagnums;
793
794     if ( @tagnums ) {
795         my $tags_where = "0 < (select count(1) from cust_tag where " 
796                 . " cust_tag.custnum = cust_main.custnum and tagnum in ("
797                 . join(',', @tagnums) . "))";
798
799         push @where, $tags_where;
800     }
801   }
802
803
804   ##
805   # setup queries, subs, etc. for the search
806   ##
807
808   $orderby ||= 'ORDER BY custnum';
809
810   # here is the agent virtualization
811   push @where,
812     $FS::CurrentUser::CurrentUser->agentnums_sql(table => 'cust_main');
813
814   my $extra_sql = scalar(@where) ? ' WHERE '. join(' AND ', @where) : '';
815
816   my $addl_from = '';
817
818   my $count_query = "SELECT COUNT(*) FROM cust_main $extra_sql";
819
820   my @select = (
821                  'cust_main.custnum',
822                  # there's a good chance that we'll need these
823                  'cust_main.bill_locationnum',
824                  'cust_main.ship_locationnum',
825                  FS::UI::Web::cust_sql_fields($params->{'cust_fields'}),
826                );
827
828   my(@extra_headers) = ();
829   my(@extra_fields)  = ();
830
831   if ($params->{'flattened_pkgs'}) {
832
833     #my $pkg_join = '';
834     $addl_from .= ' LEFT JOIN cust_pkg USING ( custnum ) ';
835
836     if ($dbh->{Driver}->{Name} eq 'Pg') {
837
838       push @select, "
839         ARRAY_TO_STRING(
840           ARRAY(
841             SELECT pkg FROM cust_pkg LEFT JOIN part_pkg USING ( pkgpart )
842               WHERE cust_main.custnum = cust_pkg.custnum $pkgwhere
843           ), '|'
844         ) AS magic
845       ";
846
847     } elsif ($dbh->{Driver}->{Name} =~ /^mysql/i) {
848       push @select, "GROUP_CONCAT(part_pkg.pkg SEPARATOR '|') as magic";
849       $addl_from .= ' LEFT JOIN part_pkg USING ( pkgpart ) ';
850       #$pkg_join  .= ' LEFT JOIN part_pkg USING ( pkgpart ) ';
851     } else {
852       warn "warning: unknown database type ". $dbh->{Driver}->{Name}. 
853            "omitting package information from report.";
854     }
855
856     my $header_query = "
857       SELECT COUNT(cust_pkg.custnum = cust_main.custnum) AS count
858         FROM cust_main $addl_from $extra_sql $pkgwhere
859           GROUP BY cust_main.custnum ORDER BY count DESC LIMIT 1
860     ";
861
862     my $sth = dbh->prepare($header_query) or die dbh->errstr;
863     $sth->execute() or die $sth->errstr;
864     my $headerrow = $sth->fetchrow_arrayref;
865     my $headercount = $headerrow ? $headerrow->[0] : 0;
866     while($headercount) {
867       unshift @extra_headers, "Package ". $headercount;
868       unshift @extra_fields, eval q!sub {my $c = shift;
869                                          my @a = split '\|', $c->magic;
870                                          my $p = $a[!.--$headercount. q!];
871                                          $p;
872                                         };!;
873     }
874
875   }
876
877   if ( $params->{'with_geocode'} ) {
878
879     unshift @extra_headers, 'Tax location override', 'Calculated tax location';
880     unshift @extra_fields, sub { my $c = shift; $c->get('geocode'); },
881                            sub { my $c = shift;
882                                  $c->set('geocode', '');
883                                  $c->geocode('cch'); #XXX only cch right now
884                                };
885     push @select, 'geocode';
886     push @select, 'zip' unless grep { $_ eq 'zip' } @select;
887     push @select, 'ship_zip' unless grep { $_ eq 'ship_zip' } @select;
888   }
889
890   my $select = join(', ', @select);
891
892   my $sql_query = {
893     'table'         => 'cust_main',
894     'select'        => $select,
895     'addl_from'     => $addl_from,
896     'hashref'       => {},
897     'extra_sql'     => $extra_sql,
898     'order_by'      => $orderby,
899     'count_query'   => $count_query,
900     'extra_headers' => \@extra_headers,
901     'extra_fields'  => \@extra_fields,
902   };
903
904 }
905
906 =item fuzzy_search FUZZY_HASHREF [ OPTS ]
907
908 Performs a fuzzy (approximate) search and returns the matching FS::cust_main
909 records.  Currently, I<first>, I<last>, I<company> and/or I<address1> may be
910 specified.
911
912 Additional options are the same as FS::Record::qsearch
913
914 =cut
915
916 sub fuzzy_search {
917   my( $self, $fuzzy ) = @_;
918   # sensible defaults, then merge in any passed options
919   my %fuzopts = (
920     'table'     => 'cust_main',
921     'addl_from' => '',
922     'extra_sql' => '',
923     'hashref'   => {},
924     @_
925   );
926
927   my @cust_main = ();
928
929   check_and_rebuild_fuzzyfiles();
930   foreach my $field ( keys %$fuzzy ) {
931
932     my $all = $self->all_X($field);
933     next unless scalar(@$all);
934
935     my %match = ();
936     $match{$_}=1 foreach ( amatch( $fuzzy->{$field}, ['i'], @$all ) );
937
938     my @fcust = ();
939     foreach ( keys %match ) {
940       if ( $field eq 'address1' ) {
941         #because it lives outside the table
942         my $addl_from = $fuzopts{addl_from} .
943                         'JOIN cust_location USING (custnum)';
944         my $extra_sql = $fuzopts{extra_sql} .
945                         " AND cust_location.address1 = ".dbh->quote($_);
946         push @fcust, qsearch({
947             %fuzopts,
948             'addl_from' => $addl_from,
949             'extra_sql' => $extra_sql,
950         });
951       } else {
952         my $hash = $fuzopts{hashref};
953         $hash->{$field} = $_;
954         push @fcust, qsearch({
955             %fuzopts,
956             'hashref' => $hash
957         });
958       }
959     }
960     my %fsaw = ();
961     push @cust_main, grep { ! $fsaw{$_->custnum}++ } @fcust;
962   }
963
964   # we want the components of $fuzzy ANDed, not ORed, but still don't want dupes
965   my %saw = ();
966   @cust_main = grep { ++$saw{$_->custnum} == scalar(keys %$fuzzy) } @cust_main;
967
968   @cust_main;
969
970 }
971
972 =back
973
974 =head1 UTILITY SUBROUTINES
975
976 =over 4
977
978 =item check_and_rebuild_fuzzyfiles
979
980 =cut
981
982 sub check_and_rebuild_fuzzyfiles {
983   my $dir = $FS::UID::conf_dir. "/cache.". $FS::UID::datasrc;
984   rebuild_fuzzyfiles() if grep { ! -e "$dir/cust_main.$_" } @fuzzyfields;
985 }
986
987 =item rebuild_fuzzyfiles
988
989 =cut
990
991 sub rebuild_fuzzyfiles {
992
993   use Fcntl qw(:flock);
994
995   my $dir = $FS::UID::conf_dir. "/cache.". $FS::UID::datasrc;
996   mkdir $dir, 0700 unless -d $dir;
997
998   foreach my $fuzzy ( @fuzzyfields ) {
999
1000     open(LOCK,">>$dir/cust_main.$fuzzy")
1001       or die "can't open $dir/cust_main.$fuzzy: $!";
1002     flock(LOCK,LOCK_EX)
1003       or die "can't lock $dir/cust_main.$fuzzy: $!";
1004
1005     open (CACHE, '>:encoding(UTF-8)', "$dir/cust_main.$fuzzy.tmp")
1006       or die "can't open $dir/cust_main.$fuzzy.tmp: $!";
1007
1008     foreach my $field ( $fuzzy, "ship_$fuzzy" ) {
1009       my $sth = dbh->prepare("SELECT $field FROM cust_main".
1010                              " WHERE $field != '' AND $field IS NOT NULL");
1011       $sth->execute or die $sth->errstr;
1012
1013       while ( my $row = $sth->fetchrow_arrayref ) {
1014         print CACHE $row->[0]. "\n";
1015       }
1016
1017     } 
1018
1019     close CACHE or die "can't close $dir/cust_main.$fuzzy.tmp: $!";
1020   
1021     rename "$dir/cust_main.$fuzzy.tmp", "$dir/cust_main.$fuzzy";
1022     close LOCK;
1023   }
1024
1025 }
1026
1027 =item append_fuzzyfiles FIRSTNAME LASTNAME COMPANY ADDRESS1
1028
1029 =cut
1030
1031 sub append_fuzzyfiles {
1032   #my( $first, $last, $company ) = @_;
1033
1034   check_and_rebuild_fuzzyfiles();
1035
1036   use Fcntl qw(:flock);
1037
1038   my $dir = $FS::UID::conf_dir. "/cache.". $FS::UID::datasrc;
1039
1040   foreach my $field (@fuzzyfields) {
1041     my $value = shift;
1042
1043     if ( $value ) {
1044
1045       open(CACHE, '>>:encoding(UTF-8)', "$dir/cust_main.$field" )
1046         or die "can't open $dir/cust_main.$field: $!";
1047       flock(CACHE,LOCK_EX)
1048         or die "can't lock $dir/cust_main.$field: $!";
1049
1050       print CACHE "$value\n";
1051
1052       flock(CACHE,LOCK_UN)
1053         or die "can't unlock $dir/cust_main.$field: $!";
1054       close CACHE;
1055     }
1056
1057   }
1058
1059   1;
1060 }
1061
1062 =item all_X
1063
1064 =cut
1065
1066 sub all_X {
1067   my( $self, $field ) = @_;
1068   my $dir = $FS::UID::conf_dir. "/cache.". $FS::UID::datasrc;
1069   open(CACHE, '<:encoding(UTF-8)', "$dir/cust_main.$field")
1070     or die "can't open $dir/cust_main.$field: $!";
1071   my @array = map { chomp; $_; } <CACHE>;
1072   close CACHE;
1073   \@array;
1074 }
1075
1076 =head1 BUGS
1077
1078 Bed bugs
1079
1080 =head1 SEE ALSO
1081
1082 L<FS::cust_main>, L<FS::Record>
1083
1084 =cut
1085
1086 1;
1087