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