4 use base qw( FS::svc_Domain_Mixin
11 use vars qw( $DEBUG $me $conf $skip_fuzzyfiles
12 $dir_prefix @shells $usernamemin
13 $usernamemax $passwordmin $passwordmax
14 $username_ampersand $username_letter $username_letterfirst
15 $username_noperiod $username_nounderscore $username_nodash
16 $username_uppercase $username_percent $username_colon
17 $username_slash $username_equals $username_pound
19 $password_noampersand $password_noexclamation
20 $warning_template $warning_from $warning_subject $warning_mimetype
23 $radius_password $radius_ip
26 use Scalar::Util qw( blessed );
31 use Crypt::PasswdMD5 1.2;
32 use Digest::SHA 'sha1_base64';
33 use Digest::MD5 'md5_base64';
36 use Authen::Passphrase;
37 use FS::UID qw( datasrc driver_name );
39 use FS::Record qw( qsearch qsearchs fields dbh dbdef );
40 use FS::Msgcat qw(gettext);
41 use FS::UI::bytecount;
43 use FS::PagedSearch qw( psearch ); # XXX in v4, replace with FS::Cursor
47 use FS::cust_main_invoice;
52 use FS::radius_usergroup;
63 $me = '[FS::svc_acct]';
65 #ask FS::UID to run this stuff for us later
66 FS::UID->install_callback( sub {
68 $dir_prefix = $conf->config('home');
69 @shells = $conf->config('shells');
70 $usernamemin = $conf->config('usernamemin') || 2;
71 $usernamemax = $conf->config('usernamemax');
72 $passwordmin = $conf->config('passwordmin'); # || 6;
74 $passwordmin = ( defined($passwordmin) && $passwordmin =~ /\d+/ )
77 $passwordmax = $conf->config('passwordmax') || 8;
78 $username_letter = $conf->exists('username-letter');
79 $username_letterfirst = $conf->exists('username-letterfirst');
80 $username_noperiod = $conf->exists('username-noperiod');
81 $username_nounderscore = $conf->exists('username-nounderscore');
82 $username_nodash = $conf->exists('username-nodash');
83 $username_uppercase = $conf->exists('username-uppercase');
84 $username_ampersand = $conf->exists('username-ampersand');
85 $username_percent = $conf->exists('username-percent');
86 $username_colon = $conf->exists('username-colon');
87 $username_slash = $conf->exists('username-slash');
88 $username_equals = $conf->exists('username-equals');
89 $username_pound = $conf->exists('username-pound');
90 $username_exclamation = $conf->exists('username-exclamation');
91 $password_noampersand = $conf->exists('password-noexclamation');
92 $password_noexclamation = $conf->exists('password-noexclamation');
93 $dirhash = $conf->config('dirhash') || 0;
94 if ( $conf->exists('warning_email') ) {
95 $warning_template = new Text::Template (
97 SOURCE => [ map "$_\n", $conf->config('warning_email') ]
98 ) or warn "can't create warning email template: $Text::Template::ERROR";
99 $warning_from = $conf->config('warning_email-from'); # || 'your-isp-is-dum'
100 $warning_subject = $conf->config('warning_email-subject') || 'Warning';
101 $warning_mimetype = $conf->config('warning_email-mimetype') || 'text/plain';
102 $warning_cc = $conf->config('warning_email-cc');
104 $warning_template = '';
106 $warning_subject = '';
107 $warning_mimetype = '';
110 $smtpmachine = $conf->config('smtpmachine');
111 $radius_password = $conf->config('radius-password') || 'Password';
112 $radius_ip = $conf->config('radius-ip') || 'Framed-IP-Address';
113 @pw_set = ( 'A'..'Z' ) if $conf->exists('password-generated-allcaps');
117 @saltset = ( 'a'..'z' , 'A'..'Z' , '0'..'9' , '.' , '/' );
118 @pw_set = ( 'a'..'z', 'A'..'Z', '0'..'9', '(', ')', '#', '.', ',' );
122 my ( $hashref, $cache ) = @_;
123 if ( $hashref->{'svc_acct_svcnum'} ) {
124 $self->{'_domsvc'} = FS::svc_domain->new( {
125 'svcnum' => $hashref->{'domsvc'},
126 'domain' => $hashref->{'svc_acct_domain'},
127 'catchall' => $hashref->{'svc_acct_catchall'},
134 FS::svc_acct - Object methods for svc_acct records
140 $record = new FS::svc_acct \%hash;
141 $record = new FS::svc_acct { 'column' => 'value' };
143 $error = $record->insert;
145 $error = $new_record->replace($old_record);
147 $error = $record->delete;
149 $error = $record->check;
151 $error = $record->suspend;
153 $error = $record->unsuspend;
155 $error = $record->cancel;
157 %hash = $record->radius;
159 %hash = $record->radius_reply;
161 %hash = $record->radius_check;
163 $domain = $record->domain;
165 $svc_domain = $record->svc_domain;
167 $email = $record->email;
169 $seconds_since = $record->seconds_since($timestamp);
173 An FS::svc_acct object represents an account. FS::svc_acct inherits from
174 FS::svc_Common. The following fields are currently supported:
180 Primary key (assigned automatcially for new accounts)
188 =item _password_encoding
190 plain, crypt, ldap (or empty for autodetection)
198 Point of presence (see L<FS::svc_acct_pop>)
210 set automatically if blank (and uid is not)
230 svcnum from svc_domain
234 Optional svcnum from svc_pbx
236 =item radius_I<Radius_Attribute>
238 I<Radius-Attribute> (reply)
240 =item rc_I<Radius_Attribute>
242 I<Radius-Attribute> (check)
252 Creates a new account. To add the account to the database, see L<"insert">.
259 'longname_plural' => 'Access accounts and mailboxes',
260 'sorts' => [ 'username', 'uid', 'seconds', 'last_login' ],
261 'display_weight' => 10,
262 'cancel_weight' => 50,
263 'ip_field' => 'slipip',
265 'dir' => 'Home directory',
268 def_info => 'set to fixed and blank for no UIDs',
271 'slipip' => 'IP address',
272 # 'popnum' => qq!<A HREF="$p/browse/svc_acct_pop.cgi/">POP number</A>!,
274 label => 'Access number',
276 select_table => 'svc_acct_pop',
277 select_key => 'popnum',
278 select_label => 'city',
284 disable_default => 1,
288 'password_selfchange' => { label => 'Password modification',
291 'password_recover' => { label => 'Password recovery',
295 label => 'Quota', #Mail storage limit
297 disable_inventory => 1,
300 label => 'File storage limit',
302 disable_inventory => 1,
305 label => 'Number of files limit',
307 disable_inventory => 1,
310 label => 'File size limit',
312 disable_inventory => 1,
314 '_password' => 'Password',
317 def_info => 'when blank, defaults to UID',
322 def_info => 'set to blank for no shell tracking',
324 #select_list => [ $conf->config('shells') ],
325 select_list => [ $conf ? $conf->config('shells') : () ],
326 disable_inventory => 1,
329 'finger' => 'Real name', # (GECOS)',
333 select_table => 'svc_domain',
334 select_key => 'svcnum',
335 select_label => 'domain',
336 disable_inventory => 1,
338 'pbxsvc' => { label => 'PBX',
339 type => 'select-svc_pbx.html',
340 disable_inventory => 1,
341 disable_select => 1, #UI wonky, pry works otherwise
343 'sectornum' => 'Tower sector',
345 label => 'RADIUS groups',
346 type => 'select-radius_group.html',
347 disable_inventory => 1,
351 'seconds' => { label => 'Seconds',
352 label_sort => 'with Time Remaining',
354 disable_inventory => 1,
356 disable_part_svc_column => 1,
358 'upbytes' => { label => 'Upload',
360 disable_inventory => 1,
362 'format' => \&FS::UI::bytecount::display_bytecount,
363 'parse' => \&FS::UI::bytecount::parse_bytecount,
364 disable_part_svc_column => 1,
366 'downbytes' => { label => 'Download',
368 disable_inventory => 1,
370 'format' => \&FS::UI::bytecount::display_bytecount,
371 'parse' => \&FS::UI::bytecount::parse_bytecount,
372 disable_part_svc_column => 1,
374 'totalbytes'=> { label => 'Total up and download',
376 disable_inventory => 1,
378 'format' => \&FS::UI::bytecount::display_bytecount,
379 'parse' => \&FS::UI::bytecount::parse_bytecount,
380 disable_part_svc_column => 1,
382 'seconds_threshold' => { label => 'Seconds threshold',
384 disable_inventory => 1,
386 disable_part_svc_column => 1,
388 'upbytes_threshold' => { label => 'Upload threshold',
390 disable_inventory => 1,
392 'format' => \&FS::UI::bytecount::display_bytecount,
393 'parse' => \&FS::UI::bytecount::parse_bytecount,
394 disable_part_svc_column => 1,
396 'downbytes_threshold' => { label => 'Download threshold',
398 disable_inventory => 1,
400 'format' => \&FS::UI::bytecount::display_bytecount,
401 'parse' => \&FS::UI::bytecount::parse_bytecount,
402 disable_part_svc_column => 1,
404 'totalbytes_threshold'=> { label => 'Total up and download threshold',
406 disable_inventory => 1,
408 'format' => \&FS::UI::bytecount::display_bytecount,
409 'parse' => \&FS::UI::bytecount::parse_bytecount,
410 disable_part_svc_column => 1,
413 label => 'Last login',
417 label => 'Last logout',
422 label => 'Communigate aliases',
424 disable_inventory => 1,
429 label => 'Communigate account type',
431 select_list => [qw( MultiMailbox TextMailbox MailDirMailbox AGrade BGrade CGrade )],
432 disable_inventory => 1,
435 'cgp_accessmodes' => {
436 label => 'Communigate enabled services',
437 type => 'communigate_pro-accessmodes',
438 disable_inventory => 1,
441 'cgp_rulesallowed' => {
442 label => 'Allowed mail rules',
444 select_list => [ '', 'No', 'Filter Only', 'All But Exec', 'Any' ],
445 disable_inventory => 1,
448 'cgp_rpopallowed' => { label => 'RPOP modifications',
451 'cgp_mailtoall' => { label => 'Accepts mail to "all"',
454 'cgp_addmailtrailer' => { label => 'Add trailer to sent mail',
457 'cgp_archiveafter' => {
458 label => 'Archive messages after',
461 -2 => 'default(730 days)',
468 1209600 => '2 weeks',
469 2592000 => '30 days',
470 7776000 => '90 days',
471 15552000 => '180 days',
472 31536000 => '365 days',
473 63072000 => '730 days',
475 disable_inventory => 1,
481 'cgp_deletemode' => {
482 label => 'Communigate message delete method',
484 select_list => [ 'Move To Trash', 'Immediately', 'Mark' ],
485 disable_inventory => 1,
488 'cgp_emptytrash' => {
489 label => 'Communigate on logout remove trash',
491 select_list => __PACKAGE__->cgp_emptytrash_values,
492 disable_inventory => 1,
496 label => 'Communigate language',
498 select_list => [ '', qw( English Arabic Chinese Dutch French German Hebrew Italian Japanese Portuguese Russian Slovak Spanish Thai ) ],
499 disable_inventory => 1,
503 label => 'Communigate time zone',
505 select_list => __PACKAGE__->cgp_timezone_values,
506 disable_inventory => 1,
510 label => 'Communigate layout',
512 select_list => [ '', '***', 'GoldFleece', 'Skin2' ],
513 disable_inventory => 1,
516 'cgp_prontoskinname' => {
517 label => 'Communigate Pronto style',
519 select_list => [ '', 'Pronto', 'Pronto-darkflame', 'Pronto-steel', 'Pronto-twilight', ],
520 disable_inventory => 1,
523 'cgp_sendmdnmode' => {
524 label => 'Communigate send read receipts',
526 select_list => [ '', 'Never', 'Manually', 'Automatically' ],
527 disable_inventory => 1,
538 sub table { 'svc_acct'; }
540 sub table_dupcheck_fields { ( 'username', 'domsvc' ); }
543 shift->_lastlog('in', @_);
547 shift->_lastlog('out', @_);
551 my( $self, $op, $time ) = @_;
553 if ( defined($time) ) {
554 warn "$me last_log$op called on svcnum ". $self->svcnum.
555 ' ('. $self->email. "): $time\n"
560 my $sql = "UPDATE svc_acct SET last_log$op = ? WHERE svcnum = ?";
564 my $sth = $dbh->prepare( $sql )
565 or die "Error preparing $sql: ". $dbh->errstr;
566 my $rv = $sth->execute($time, $self->svcnum);
567 die "Error executing $sql: ". $sth->errstr
569 die "Can't update last_log$op for svcnum". $self->svcnum
572 $self->{'Hash'}->{"last_log$op"} = $time;
574 $self->getfield("last_log$op");
578 =item search_sql STRING
580 Class method which returns an SQL fragment to search for the given string.
585 my( $class, $string ) = @_;
586 if ( $string =~ /^([^@]+)@([^@]+)$/ ) {
587 my( $username, $domain ) = ( $1, $2 );
588 my $q_username = dbh->quote($username);
589 my @svc_domain = qsearch('svc_domain', { 'domain' => $domain } );
591 "svc_acct.username = $q_username AND ( ".
592 join( ' OR ', map { "svc_acct.domsvc = ". $_->svcnum; } @svc_domain ).
597 } elsif ( $string =~ /^(\d{1,3}\.){3}\d{1,3}$/ ) {
599 $class->search_sql_field('slipip', $string ).
601 $class->search_sql_field('username', $string ).
604 $class->search_sql_field('username', $string);
608 =item label [ END_TIMESTAMP [ START_TIMESTAMP ] ]
610 Returns the "username@domain" string for this account.
612 END_TIMESTAMP and START_TIMESTAMP can optionally be passed when dealing with
622 =item label_long [ END_TIMESTAMP [ START_TIMESTAMP ] ]
624 Returns a longer string label for this acccount ("Real Name <username@domain>"
625 if available, or "username@domain").
627 END_TIMESTAMP and START_TIMESTAMP can optionally be passed when dealing with
634 my $label = $self->label(@_);
635 my $finger = $self->finger;
636 return $label unless $finger =~ /\S/;
637 my $maxlen = 40 - length($label) - length($self->cust_svc->part_svc->svc);
638 $finger = substr($finger, 0, $maxlen-3).'...' if length($finger) > $maxlen;
642 =item insert [ , OPTION => VALUE ... ]
644 Adds this account to the database. If there is an error, returns the error,
645 otherwise returns false.
647 The additional fields pkgnum and svcpart (see L<FS::cust_svc>) should be
648 defined. An FS::cust_svc record will be created and inserted.
650 The additional field I<usergroup> can optionally be defined; if so it should
651 contain an arrayref of group names. See L<FS::radius_usergroup>.
653 The additional field I<child_objects> can optionally be defined; if so it
654 should contain an arrayref of FS::tablename objects. They will have their
655 svcnum fields set and will be inserted after this record, but before any
656 exports are run. Each element of the array can also optionally be a
657 two-element array reference containing the child object and the name of an
658 alternate field to be filled in with the newly-inserted svcnum, for example
659 C<[ $svc_forward, 'srcsvc' ]>
661 Currently available options are: I<depend_jobnum>
663 If I<depend_jobnum> is set (to a scalar jobnum or an array reference of
664 jobnums), all provisioning jobs will have a dependancy on the supplied
665 jobnum(s) (they will not run until the specific job(s) complete(s)).
667 (TODOC: L<FS::queue> and L<freeside-queued>)
669 (TODOC: new exports!)
678 warn "[$me] insert called on $self: ". Dumper($self).
679 "\nwith options: ". Dumper(%options);
682 local $SIG{HUP} = 'IGNORE';
683 local $SIG{INT} = 'IGNORE';
684 local $SIG{QUIT} = 'IGNORE';
685 local $SIG{TERM} = 'IGNORE';
686 local $SIG{TSTP} = 'IGNORE';
687 local $SIG{PIPE} = 'IGNORE';
689 my $oldAutoCommit = $FS::UID::AutoCommit;
690 local $FS::UID::AutoCommit = 0;
694 my $error = $self->SUPER::insert( # usergroup is here
695 'jobnums' => \@jobnums,
696 'child_objects' => $self->child_objects,
700 $dbh->rollback if $oldAutoCommit;
704 unless ( $skip_fuzzyfiles ) {
705 $error = $self->queue_fuzzyfiles_update;
707 $dbh->rollback if $oldAutoCommit;
708 return "updating fuzzy search cache: $error";
712 my $cust_pkg = $self->cust_svc->cust_pkg;
715 my $cust_main = $cust_pkg->cust_main;
716 my $agentnum = $cust_main->agentnum;
718 if ( $conf->exists('emailinvoiceautoalways')
719 || $conf->exists('emailinvoiceauto')
720 && ! $cust_main->invoicing_list_emailonly
722 my @invoicing_list = $cust_main->invoicing_list;
723 push @invoicing_list, $self->email;
724 $cust_main->invoicing_list(\@invoicing_list);
728 my @welcome_exclude_svcparts = $conf->config('svc_acct_welcome_exclude');
729 unless ( grep { $_ eq $self->svcpart } @welcome_exclude_svcparts ) {
731 my $msgnum = $conf->config('welcome_msgnum', $agentnum);
733 my $msg_template = qsearchs('msg_template', { msgnum => $msgnum });
734 $error = $msg_template->send('cust_main' => $cust_main,
738 my ($to,$welcome_template,$welcome_from,$welcome_subject,$welcome_subject_template,$welcome_mimetype)
739 = ('','','','','','');
741 if ( $conf->exists('welcome_email', $agentnum) ) {
742 $welcome_template = new Text::Template (
744 SOURCE => [ map "$_\n", $conf->config('welcome_email', $agentnum) ]
745 ) or warn "can't create welcome email template: $Text::Template::ERROR";
746 $welcome_from = $conf->config('welcome_email-from', $agentnum);
747 # || 'your-isp-is-dum'
748 $welcome_subject = $conf->config('welcome_email-subject', $agentnum)
750 $welcome_subject_template = new Text::Template (
752 SOURCE => $welcome_subject,
753 ) or warn "can't create welcome email subject template: $Text::Template::ERROR";
754 $welcome_mimetype = $conf->config('welcome_email-mimetype', $agentnum)
757 if ( $welcome_template ) {
758 my $to = join(', ', grep { $_ !~ /^(POST|FAX)$/ } $cust_main->invoicing_list );
762 'custnum' => $self->custnum,
763 'username' => $self->username,
764 'password' => $self->_password,
765 'first' => $cust_main->first,
766 'last' => $cust_main->getfield('last'),
767 'pkg' => $cust_pkg->part_pkg->pkg,
769 my $wqueue = new FS::queue {
770 'svcnum' => $self->svcnum,
771 'job' => 'FS::svc_acct::send_email'
773 my $error = $wqueue->insert(
775 'from' => $welcome_from,
776 'subject' => $welcome_subject_template->fill_in( HASH => \%hash, ),
777 'mimetype' => $welcome_mimetype,
778 'body' => $welcome_template->fill_in( HASH => \%hash, ),
781 $dbh->rollback if $oldAutoCommit;
782 return "error queuing welcome email: $error";
785 if ( $options{'depend_jobnum'} ) {
786 warn "$me depend_jobnum found; adding to welcome email dependancies"
788 if ( ref($options{'depend_jobnum'}) ) {
789 warn "$me adding jobs ". join(', ', @{$options{'depend_jobnum'}} ).
790 "to welcome email dependancies"
792 push @jobnums, @{ $options{'depend_jobnum'} };
794 warn "$me adding job $options{'depend_jobnum'} ".
795 "to welcome email dependancies"
797 push @jobnums, $options{'depend_jobnum'};
801 foreach my $jobnum ( @jobnums ) {
802 my $error = $wqueue->depend_insert($jobnum);
804 $dbh->rollback if $oldAutoCommit;
805 return "error queuing welcome email job dependancy: $error";
811 } # if $welcome_template
816 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
820 # set usage fields and thresholds if unset but set in a package def
821 # AND the package already has a last bill date (otherwise they get double added)
822 sub preinsert_hook_first {
825 return '' unless $self->pkgnum;
827 my $cust_pkg = qsearchs( 'cust_pkg', { 'pkgnum' => $self->pkgnum } );
828 return '' unless $cust_pkg && $cust_pkg->last_bill;
830 my $part_pkg = $cust_pkg->part_pkg;
831 return '' unless $part_pkg && $part_pkg->can('usage_valuehash');
833 my %values = $part_pkg->usage_valuehash;
834 my $multiplier = $conf->exists('svc_acct-usage_threshold')
835 ? 1 - $conf->config('svc_acct-usage_threshold')/100
836 : 0.20; #doesn't matter
838 foreach ( keys %values ) {
839 next if $self->getfield($_);
840 $self->setfield( $_, $values{$_} );
841 $self->setfield( $_. '_threshold', int( $values{$_} * $multiplier ) )
842 if $conf->exists('svc_acct-usage_threshold');
850 Deletes this account from the database. If there is an error, returns the
851 error, otherwise returns false.
853 The corresponding FS::cust_svc record will be deleted as well.
855 (TODOC: new exports!)
862 return "can't delete system account" if $self->_check_system;
864 return "Can't delete an account which is a (svc_forward) source!"
865 if qsearch( 'svc_forward', { 'srcsvc' => $self->svcnum } );
867 return "Can't delete an account which is a (svc_forward) destination!"
868 if qsearch( 'svc_forward', { 'dstsvc' => $self->svcnum } );
870 return "Can't delete an account with (svc_www) web service!"
871 if qsearch( 'svc_www', { 'usersvc' => $self->svcnum } );
873 # what about records in session ? (they should refer to history table)
875 local $SIG{HUP} = 'IGNORE';
876 local $SIG{INT} = 'IGNORE';
877 local $SIG{QUIT} = 'IGNORE';
878 local $SIG{TERM} = 'IGNORE';
879 local $SIG{TSTP} = 'IGNORE';
880 local $SIG{PIPE} = 'IGNORE';
882 my $oldAutoCommit = $FS::UID::AutoCommit;
883 local $FS::UID::AutoCommit = 0;
886 foreach my $cust_main_invoice (
887 qsearch( 'cust_main_invoice', { 'dest' => $self->svcnum } )
889 unless ( defined($cust_main_invoice) ) {
890 warn "WARNING: something's wrong with qsearch";
893 my %hash = $cust_main_invoice->hash;
894 $hash{'dest'} = $self->email;
895 my $new = new FS::cust_main_invoice \%hash;
896 my $error = $new->replace($cust_main_invoice);
898 $dbh->rollback if $oldAutoCommit;
903 foreach my $svc_domain (
904 qsearch( 'svc_domain', { 'catchall' => $self->svcnum } )
906 my %hash = new FS::svc_domain->hash;
907 $hash{'catchall'} = '';
908 my $new = new FS::svc_domain \%hash;
909 my $error = $new->replace($svc_domain);
911 $dbh->rollback if $oldAutoCommit;
916 my $error = $self->SUPER::delete; # usergroup here
918 $dbh->rollback if $oldAutoCommit;
922 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
926 =item replace OLD_RECORD
928 Replaces OLD_RECORD with this one in the database. If there is an error,
929 returns the error, otherwise returns false.
931 The additional field I<usergroup> can optionally be defined; if so it should
932 contain an arrayref of group names. See L<FS::radius_usergroup>.
940 my $old = ( blessed($_[0]) && $_[0]->isa('FS::Record') )
944 warn "$me replacing $old with $new\n" if $DEBUG;
948 return "can't modify system account" if $old->_check_system;
951 #no warnings 'numeric'; #alas, a 5.006-ism
954 foreach my $xid (qw( uid gid )) {
956 return "Can't change $xid!"
957 if ! $conf->exists("svc_acct-edit_$xid")
958 && $old->$xid() != $new->$xid()
959 && $new->cust_svc->part_svc->part_svc_column($xid)->columnflag ne 'F'
964 return "can't change username"
965 if $old->username ne $new->username
966 && $conf->exists('svc_acct-no_edit_username');
968 #change homdir when we change username
969 $new->setfield('dir', '') if $old->username ne $new->username;
971 local $SIG{HUP} = 'IGNORE';
972 local $SIG{INT} = 'IGNORE';
973 local $SIG{QUIT} = 'IGNORE';
974 local $SIG{TERM} = 'IGNORE';
975 local $SIG{TSTP} = 'IGNORE';
976 local $SIG{PIPE} = 'IGNORE';
978 my $oldAutoCommit = $FS::UID::AutoCommit;
979 local $FS::UID::AutoCommit = 0;
982 $error = $new->SUPER::replace($old, @_); # usergroup here
984 $dbh->rollback if $oldAutoCommit;
985 return $error if $error;
988 if ( $new->username ne $old->username && ! $skip_fuzzyfiles ) {
989 $error = $new->queue_fuzzyfiles_update;
991 $dbh->rollback if $oldAutoCommit;
992 return "updating fuzzy search cache: $error";
996 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1000 =item queue_fuzzyfiles_update
1002 Used by insert & replace to update the fuzzy search cache
1006 sub queue_fuzzyfiles_update {
1009 local $SIG{HUP} = 'IGNORE';
1010 local $SIG{INT} = 'IGNORE';
1011 local $SIG{QUIT} = 'IGNORE';
1012 local $SIG{TERM} = 'IGNORE';
1013 local $SIG{TSTP} = 'IGNORE';
1014 local $SIG{PIPE} = 'IGNORE';
1016 my $oldAutoCommit = $FS::UID::AutoCommit;
1017 local $FS::UID::AutoCommit = 0;
1020 my $queue = new FS::queue {
1021 'svcnum' => $self->svcnum,
1022 'job' => 'FS::svc_acct::append_fuzzyfiles'
1024 my $error = $queue->insert($self->username);
1026 $dbh->rollback if $oldAutoCommit;
1027 return "queueing job (transaction rolled back): $error";
1030 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1038 Suspends this account by calling export-specific suspend hooks. If there is
1039 an error, returns the error, otherwise returns false.
1041 Called by the suspend method of FS::cust_pkg (see L<FS::cust_pkg>).
1047 return "can't suspend system account" if $self->_check_system;
1048 $self->SUPER::suspend(@_);
1053 Unsuspends this account by by calling export-specific suspend hooks. If there
1054 is an error, returns the error, otherwise returns false.
1056 Called by the unsuspend method of FS::cust_pkg (see L<FS::cust_pkg>).
1062 my %hash = $self->hash;
1063 if ( $hash{_password} =~ /^\*SUSPENDED\* (.*)$/ ) {
1064 $hash{_password} = $1;
1065 my $new = new FS::svc_acct ( \%hash );
1066 my $error = $new->replace($self);
1067 return $error if $error;
1070 $self->SUPER::unsuspend(@_);
1075 Called by the cancel method of FS::cust_pkg (see L<FS::cust_pkg>).
1077 If the B<auto_unset_catchall> configuration option is set, this method will
1078 automatically remove any references to the canceled service in the catchall
1079 field of svc_domain. This allows packages that contain both a svc_domain and
1080 its catchall svc_acct to be canceled in one step.
1085 # Only one thing to do at this level
1087 foreach my $svc_domain (
1088 qsearch( 'svc_domain', { catchall => $self->svcnum } ) ) {
1089 if($conf->exists('auto_unset_catchall')) {
1090 my %hash = $svc_domain->hash;
1091 $hash{catchall} = '';
1092 my $new = new FS::svc_domain ( \%hash );
1093 my $error = $new->replace($svc_domain);
1094 return $error if $error;
1096 return "cannot unprovision svc_acct #".$self->svcnum.
1097 " while assigned as catchall for svc_domain #".$svc_domain->svcnum;
1101 $self->SUPER::cancel(@_);
1107 Checks all fields to make sure this is a valid service. If there is an error,
1108 returns the error, otherwise returns false. Called by the insert and replace
1111 Sets any fixed values; see L<FS::part_svc>.
1118 my($recref) = $self->hashref;
1120 my $x = $self->setfixed;
1121 return $x unless ref($x);
1124 my $error = $self->ut_numbern('svcnum')
1125 #|| $self->ut_number('domsvc')
1126 || $self->ut_foreign_key( 'domsvc', 'svc_domain', 'svcnum' )
1127 || $self->ut_foreign_keyn('pbxsvc', 'svc_pbx', 'svcnum' )
1128 || $self->ut_foreign_keyn('sectornum','tower_sector','sectornum')
1129 || $self->ut_foreign_keyn('routernum','router','routernum')
1130 || $self->ut_foreign_keyn('blocknum','addr_block','blocknum')
1131 || $self->ut_textn('sec_phrase')
1132 || $self->ut_snumbern('seconds')
1133 || $self->ut_snumbern('upbytes')
1134 || $self->ut_snumbern('downbytes')
1135 || $self->ut_snumbern('totalbytes')
1136 || $self->ut_snumbern('seconds_threshold')
1137 || $self->ut_snumbern('upbytes_threshold')
1138 || $self->ut_snumbern('downbytes_threshold')
1139 || $self->ut_snumbern('totalbytes_threshold')
1140 || $self->ut_enum('_password_encoding', ['',qw(plain crypt ldap)])
1141 || $self->ut_enum('password_selfchange', [ '', 'Y' ])
1142 || $self->ut_enum('password_recover', [ '', 'Y' ])
1144 || $self->ut_anything('cf_privatekey')
1146 || $self->ut_textn('cgp_accessmodes')
1147 || $self->ut_alphan('cgp_type')
1148 || $self->ut_textn('cgp_aliases' ) #well
1150 || $self->ut_alphasn('cgp_rulesallowed')
1151 || $self->ut_enum('cgp_rpopallowed', [ '', 'Y' ])
1152 || $self->ut_enum('cgp_mailtoall', [ '', 'Y' ])
1153 || $self->ut_enum('cgp_addmailtrailer', [ '', 'Y' ])
1154 || $self->ut_snumbern('cgp_archiveafter')
1156 || $self->ut_alphasn('cgp_deletemode')
1157 || $self->ut_enum('cgp_emptytrash', $self->cgp_emptytrash_values)
1158 || $self->ut_alphan('cgp_language')
1159 || $self->ut_textn('cgp_timezone')
1160 || $self->ut_textn('cgp_skinname')
1161 || $self->ut_textn('cgp_prontoskinname')
1162 || $self->ut_alphan('cgp_sendmdnmode')
1164 return $error if $error;
1166 # assign IP address, etc.
1167 if ( $conf->exists('svc_acct-ip_addr') ) {
1168 my $error = $self->svc_ip_check;
1169 return $error if $error;
1170 } else { # I think this is correct
1171 $self->routernum('');
1172 $self->blocknum('');
1176 local $username_letter = $username_letter;
1177 local $username_uppercase = $username_uppercase;
1178 if ($self->svcnum) {
1179 my $cust_svc = $self->cust_svc
1180 or return "no cust_svc record found for svcnum ". $self->svcnum;
1181 my $cust_pkg = $cust_svc->cust_pkg;
1183 if ($self->pkgnum) {
1184 $cust_pkg = qsearchs('cust_pkg', { 'pkgnum' => $self->pkgnum } );#complain?
1188 $conf->exists('username-letter', $cust_pkg->cust_main->agentnum);
1189 $username_uppercase =
1190 $conf->exists('username-uppercase', $cust_pkg->cust_main->agentnum);
1193 my $ulen = $usernamemax || $self->dbdef_table->column('username')->length;
1195 $recref->{username} =~ /^([a-z0-9_\-\.\&\%\:\/\=\#\!]{$usernamemin,$ulen})$/i
1196 or return gettext('illegal_username'). " ($usernamemin-$ulen): ". $recref->{username};
1197 $recref->{username} = $1;
1199 my $uerror = gettext('illegal_username'). ': '. $recref->{username};
1201 unless ( $username_uppercase ) {
1202 $recref->{username} =~ /[A-Z]/ and return $uerror;
1204 if ( $username_letterfirst ) {
1205 $recref->{username} =~ /^[a-z]/ or return $uerror;
1206 } elsif ( $username_letter ) {
1207 $recref->{username} =~ /[a-z]/ or return $uerror;
1209 if ( $username_noperiod ) {
1210 $recref->{username} =~ /\./ and return $uerror;
1212 if ( $username_nounderscore ) {
1213 $recref->{username} =~ /_/ and return $uerror;
1215 if ( $username_nodash ) {
1216 $recref->{username} =~ /\-/ and return $uerror;
1218 unless ( $username_ampersand ) {
1219 $recref->{username} =~ /\&/ and return $uerror;
1221 unless ( $username_percent ) {
1222 $recref->{username} =~ /\%/ and return $uerror;
1224 unless ( $username_colon ) {
1225 $recref->{username} =~ /\:/ and return $uerror;
1227 unless ( $username_slash ) {
1228 $recref->{username} =~ /\// and return $uerror;
1230 unless ( $username_equals ) {
1231 $recref->{username} =~ /\=/ and return $uerror;
1233 unless ( $username_pound ) {
1234 $recref->{username} =~ /\#/ and return $uerror;
1236 unless ( $username_exclamation ) {
1237 $recref->{username} =~ /\!/ and return $uerror;
1241 $recref->{popnum} =~ /^(\d*)$/ or return "Illegal popnum: ".$recref->{popnum};
1242 $recref->{popnum} = $1;
1243 return "Unknown popnum" unless
1244 ! $recref->{popnum} ||
1245 qsearchs('svc_acct_pop',{'popnum'=> $recref->{popnum} } );
1247 unless ( $part_svc->part_svc_column('uid')->columnflag eq 'F' ) {
1249 $recref->{uid} =~ /^(\d*)$/ or return "Illegal uid";
1250 $recref->{uid} = $1 eq '' ? $self->unique('uid') : $1;
1252 $recref->{gid} =~ /^(\d*)$/ or return "Illegal gid";
1253 $recref->{gid} = $1 eq '' ? $recref->{uid} : $1;
1254 #not all systems use gid=uid
1255 #you can set a fixed gid in part_svc
1257 return "Only root can have uid 0"
1258 if $recref->{uid} == 0
1259 && $recref->{username} !~ /^(root|toor|smtp)$/;
1261 unless ( $recref->{username} eq 'sync' ) {
1262 if ( grep $_ eq $recref->{shell}, @shells ) {
1263 $recref->{shell} = (grep $_ eq $recref->{shell}, @shells)[0];
1265 return "Illegal shell \`". $self->shell. "\'; ".
1266 "shells configuration value contains: @shells";
1269 $recref->{shell} = '/bin/sync';
1273 $recref->{gid} ne '' ?
1274 return "Can't have gid without uid" : ( $recref->{gid}='' );
1275 #$recref->{dir} ne '' ?
1276 # return "Can't have directory without uid" : ( $recref->{dir}='' );
1277 $recref->{shell} ne '' ?
1278 return "Can't have shell without uid" : ( $recref->{shell}='' );
1281 unless ( $part_svc->part_svc_column('dir')->columnflag eq 'F' ) {
1283 $recref->{dir} =~ /^([\/\w\-\.\&\:\#]*)$/
1284 or return "Illegal directory: ". $recref->{dir};
1285 $recref->{dir} = $1;
1286 return "Illegal directory"
1287 if $recref->{dir} =~ /(^|\/)\.+(\/|$)/; #no .. component
1288 return "Illegal directory"
1289 if $recref->{dir} =~ /\&/ && ! $username_ampersand;
1290 unless ( $recref->{dir} ) {
1291 $recref->{dir} = $dir_prefix . '/';
1292 if ( $dirhash > 0 ) {
1293 for my $h ( 1 .. $dirhash ) {
1294 $recref->{dir} .= substr($recref->{username}, $h-1, 1). '/';
1296 } elsif ( $dirhash < 0 ) {
1297 for my $h ( reverse $dirhash .. -1 ) {
1298 $recref->{dir} .= substr($recref->{username}, $h, 1). '/';
1301 $recref->{dir} .= $recref->{username};
1307 if ( $self->getfield('finger') eq '' ) {
1308 my $cust_pkg = $self->svcnum
1309 ? $self->cust_svc->cust_pkg
1310 : qsearchs('cust_pkg', { 'pkgnum' => $self->getfield('pkgnum') } );
1312 my $cust_main = $cust_pkg->cust_main;
1313 $self->setfield('finger', $cust_main->first.' '.$cust_main->get('last') );
1316 # $error = $self->ut_textn('finger');
1317 # return $error if $error;
1318 $self->getfield('finger') =~ /^([\w \,\.\-\'\&\t\!\@\#\$\%\(\)\+\;\"\?\/\*\<\>]*)$/
1319 or return "Illegal finger: ". $self->getfield('finger');
1320 $self->setfield('finger', $1);
1322 for (qw( quota file_quota file_maxsize )) {
1323 $recref->{$_} =~ /^(\w*)$/ or return "Illegal $_";
1326 $recref->{file_maxnum} =~ /^\s*(\d*)\s*$/ or return "Illegal file_maxnum";
1327 $recref->{file_maxnum} = $1;
1329 unless ( $part_svc->part_svc_column('slipip')->columnflag eq 'F' ) {
1330 if ( $recref->{slipip} eq '' ) {
1331 $recref->{slipip} = ''; # eh?
1332 } elsif ( $recref->{slipip} eq '0e0' ) {
1333 $recref->{slipip} = '0e0';
1335 $recref->{slipip} =~ /^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$/
1336 or return "Illegal slipip: ". $self->slipip;
1337 $recref->{slipip} = $1;
1341 #arbitrary RADIUS stuff; allow ut_textn for now
1342 foreach ( grep /^radius_/, fields('svc_acct') ) {
1343 $self->ut_textn($_);
1346 # First, if _password is blank, generate one and set default encoding.
1347 if ( ! $recref->{_password} ) {
1348 $error = $self->set_password('');
1350 # But if there's a _password but no encoding, assume it's plaintext and
1351 # set it to default encoding.
1352 elsif ( ! $recref->{_password_encoding} ) {
1353 $error = $self->set_password($recref->{_password});
1355 return $error if $error;
1357 # Next, check _password to ensure compliance with the encoding.
1358 if ( $recref->{_password_encoding} eq 'ldap' ) {
1360 if ( $recref->{_password} =~ /^(\{[\w\-]+\})(!?.{0,64})$/ ) {
1361 $recref->{_password} = uc($1).$2;
1363 return 'Illegal (ldap-encoded) password: '. $recref->{_password};
1366 } elsif ( $recref->{_password_encoding} eq 'crypt' ) {
1368 if ( $recref->{_password} =~
1369 #/^(\$\w+\$.*|[\w\+\/]{13}|_[\w\+\/]{19}|\*)$/
1370 /^(!!?)?(\$\w+\$.*|[\w\+\/\.]{13}|_[\w\+\/\.]{19}|\*)$/
1373 $recref->{_password} = ( defined($1) ? $1 : '' ). $2;
1376 return 'Illegal (crypt-encoded) password: '. $recref->{_password};
1379 } elsif ( $recref->{_password_encoding} eq 'plain' ) {
1380 # Password randomization is now in set_password.
1381 # Strip whitespace characters, check length requirements, etc.
1382 if ( $recref->{_password} =~ /^([^\t\n]{$passwordmin,$passwordmax})$/ ) {
1383 $recref->{_password} = $1;
1385 return gettext('illegal_password'). " $passwordmin-$passwordmax ".
1386 FS::Msgcat::_gettext('illegal_password_characters').
1387 ": ". $recref->{_password};
1390 if ( $password_noampersand ) {
1391 $recref->{_password} =~ /\&/ and return gettext('illegal_password');
1393 if ( $password_noexclamation ) {
1394 $recref->{_password} =~ /\!/ and return gettext('illegal_password');
1398 return "invalid password encoding ('".$recref->{_password_encoding}."'";
1401 $self->SUPER::check;
1406 sub _password_encryption {
1408 my $encoding = lc($self->_password_encoding);
1409 return if !$encoding;
1410 return 'plain' if $encoding eq 'plain';
1411 if($encoding eq 'crypt') {
1412 my $pass = $self->_password;
1413 $pass =~ s/^\*SUSPENDED\* //;
1415 return 'md5' if $pass =~ /^\$1\$/;
1416 #return 'blowfish' if $self->_password =~ /^\$2\$/;
1417 return 'des' if length($pass) == 13;
1420 if($encoding eq 'ldap') {
1421 uc($self->_password) =~ /^\{([\w-]+)\}/;
1422 return 'crypt' if $1 eq 'CRYPT' or $1 eq 'DES';
1423 return 'plain' if $1 eq 'PLAIN' or $1 eq 'CLEARTEXT';
1424 return 'md5' if $1 eq 'MD5';
1425 return 'sha1' if $1 eq 'SHA' or $1 eq 'SHA-1';
1432 sub get_cleartext_password {
1434 if($self->_password_encryption eq 'plain') {
1435 if($self->_password_encoding eq 'ldap') {
1436 $self->_password =~ /\{\w+\}(.*)$/;
1440 return $self->_password;
1449 Set the cleartext password for the account. If _password_encoding is set, the
1450 new password will be encoded according to the existing method (including
1451 encryption mode, if it can be determined). Otherwise,
1452 config('default-password-encoding') is used.
1454 If no password is supplied (or a zero-length password when minimum password length
1455 is >0), one will be generated randomly.
1460 my( $self, $pass ) = ( shift, shift );
1462 warn "[$me] set_password (to $pass) called on $self: ". Dumper($self)
1465 my $failure = gettext('illegal_password'). " $passwordmin-$passwordmax ".
1466 FS::Msgcat::_gettext('illegal_password_characters').
1469 my( $encoding, $encryption ) = ('', '');
1471 if ( $self->_password_encoding ) {
1472 $encoding = $self->_password_encoding;
1473 # identify existing encryption method, try to use it.
1474 $encryption = $self->_password_encryption;
1476 # use the system default
1482 # set encoding to system default
1483 ($encoding, $encryption) =
1484 split(/-/, lc($conf->config('default-password-encoding') || ''));
1485 $encoding ||= 'legacy';
1486 $self->_password_encoding($encoding);
1489 if ( $encoding eq 'legacy' ) {
1491 # The legacy behavior from check():
1492 # If the password is blank, randomize it and set encoding to 'plain'.
1493 if(!defined($pass) or (length($pass) == 0 and $passwordmin)) {
1494 $pass = join('',map($pw_set[ int(rand $#pw_set) ], (0..7) ) );
1495 $self->_password_encoding('plain');
1497 # Prefix + valid-length password
1498 if ( $pass =~ /^((\*SUSPENDED\* |!!?)?)([^\t\n]{$passwordmin,$passwordmax})$/ ) {
1500 $self->_password_encoding('plain');
1501 # Prefix + crypt string
1502 } elsif ( $pass =~ /^((\*SUSPENDED\* |!!?)?)([\w\.\/\$\;\+]{13,64})$/ ) {
1504 $self->_password_encoding('crypt');
1505 # Various disabled crypt passwords
1506 } elsif ( $pass eq '*' || $pass eq '!' || $pass eq '!!' ) {
1507 $self->_password_encoding('crypt');
1513 $self->_password($pass);
1519 if $passwordmin && length($pass) < $passwordmin
1520 or $passwordmax && length($pass) > $passwordmax;
1522 if ( $encoding eq 'crypt' ) {
1523 if ($encryption eq 'md5') {
1524 $pass = unix_md5_crypt($pass);
1525 } elsif ($encryption eq 'des') {
1526 $pass = crypt($pass, $saltset[int(rand(64))].$saltset[int(rand(64))]);
1529 } elsif ( $encoding eq 'ldap' ) {
1530 if ($encryption eq 'md5') {
1531 $pass = md5_base64($pass);
1532 } elsif ($encryption eq 'sha1') {
1533 $pass = sha1_base64($pass);
1534 } elsif ($encryption eq 'crypt') {
1535 $pass = crypt($pass, $saltset[int(rand(64))].$saltset[int(rand(64))]);
1537 # else $encryption eq 'plain', do nothing
1538 $pass .= '=' x (4 - length($pass) % 4) #properly padded base64
1539 if $encryption eq 'md5' || $encryption eq 'sha1';
1540 $pass = '{'.uc($encryption).'}'.$pass;
1542 # else encoding eq 'plain'
1544 $self->_password($pass);
1550 Internal function to check the username against the list of system usernames
1551 from the I<system_usernames> configuration value. Returns true if the username
1552 is listed on the system username list.
1558 scalar( grep { $self->username eq $_ || $self->email eq $_ }
1559 $conf->config('system_usernames')
1563 =item _check_duplicate
1565 Internal method to check for duplicates usernames, username@domain pairs and
1568 If the I<global_unique-username> configuration value is set to B<username> or
1569 B<username@domain>, enforces global username or username@domain uniqueness.
1571 In all cases, check for duplicate uids and usernames or username@domain pairs
1572 per export and with identical I<svcpart> values.
1576 sub _check_duplicate {
1579 my $global_unique = $conf->config('global_unique-username') || 'none';
1580 return '' if $global_unique eq 'disabled';
1584 my $part_svc = qsearchs('part_svc', { 'svcpart' => $self->svcpart } );
1585 unless ( $part_svc ) {
1586 return 'unknown svcpart '. $self->svcpart;
1589 my @dup_user = grep { !$self->svcnum || $_->svcnum != $self->svcnum }
1590 qsearch( 'svc_acct', { 'username' => $self->username } );
1591 return gettext('username_in_use')
1592 if $global_unique eq 'username' && @dup_user;
1594 my @dup_userdomain = grep { !$self->svcnum || $_->svcnum != $self->svcnum }
1595 qsearch( 'svc_acct', { 'username' => $self->username,
1596 'domsvc' => $self->domsvc } );
1597 return gettext('username_in_use')
1598 if $global_unique eq 'username@domain' && @dup_userdomain;
1601 if ( $part_svc->part_svc_column('uid')->columnflag ne 'F'
1602 && $self->username !~ /^(toor|(hyla)?fax)$/ ) {
1603 @dup_uid = grep { !$self->svcnum || $_->svcnum != $self->svcnum }
1604 qsearch( 'svc_acct', { 'uid' => $self->uid } );
1609 if ( @dup_user || @dup_userdomain || @dup_uid ) {
1610 my $exports = FS::part_export::export_info('svc_acct');
1611 my %conflict_user_svcpart;
1612 my %conflict_userdomain_svcpart = ( $self->svcpart => 'SELF', );
1614 foreach my $part_export ( $part_svc->part_export ) {
1616 #this will catch to the same exact export
1617 my @svcparts = map { $_->svcpart } $part_export->export_svc;
1619 #this will catch to exports w/same exporthost+type ???
1620 #my @other_part_export = qsearch('part_export', {
1621 # 'machine' => $part_export->machine,
1622 # 'exporttype' => $part_export->exporttype,
1624 #foreach my $other_part_export ( @other_part_export ) {
1625 # push @svcparts, map { $_->svcpart }
1626 # qsearch('export_svc', { 'exportnum' => $part_export->exportnum });
1629 #my $nodomain = $exports->{$part_export->exporttype}{'nodomain'};
1630 #silly kludge to avoid uninitialized value errors
1631 my $nodomain = exists( $exports->{$part_export->exporttype}{'nodomain'} )
1632 ? $exports->{$part_export->exporttype}{'nodomain'}
1634 if ( $nodomain =~ /^Y/i ) {
1635 $conflict_user_svcpart{$_} = $part_export->exportnum
1638 $conflict_userdomain_svcpart{$_} = $part_export->exportnum
1643 foreach my $dup_user ( @dup_user ) {
1644 my $dup_svcpart = $dup_user->cust_svc->svcpart;
1645 if ( exists($conflict_user_svcpart{$dup_svcpart}) ) {
1646 return "duplicate username ". $self->username.
1647 ": conflicts with svcnum ". $dup_user->svcnum.
1648 " via exportnum ". $conflict_user_svcpart{$dup_svcpart};
1652 foreach my $dup_userdomain ( @dup_userdomain ) {
1653 my $dup_svcpart = $dup_userdomain->cust_svc->svcpart;
1654 if ( exists($conflict_userdomain_svcpart{$dup_svcpart}) ) {
1655 return "duplicate username\@domain ". $self->email.
1656 ": conflicts with svcnum ". $dup_userdomain->svcnum.
1657 " via exportnum ". $conflict_userdomain_svcpart{$dup_svcpart};
1661 foreach my $dup_uid ( @dup_uid ) {
1662 my $dup_svcpart = $dup_uid->cust_svc->svcpart;
1663 if ( exists($conflict_user_svcpart{$dup_svcpart})
1664 || exists($conflict_userdomain_svcpart{$dup_svcpart}) ) {
1665 return "duplicate uid ". $self->uid.
1666 ": conflicts with svcnum ". $dup_uid->svcnum.
1668 ( $conflict_user_svcpart{$dup_svcpart}
1669 || $conflict_userdomain_svcpart{$dup_svcpart} );
1681 Depriciated, use radius_reply instead.
1686 carp "FS::svc_acct::radius depriciated, use radius_reply";
1687 $_[0]->radius_reply;
1692 Returns key/value pairs, suitable for assigning to a hash, for any RADIUS
1693 reply attributes of this record.
1695 Note that this is now the preferred method for reading RADIUS attributes -
1696 accessing the columns directly is discouraged, as the column names are
1697 expected to change in the future.
1704 return %{ $self->{'radius_reply'} }
1705 if exists $self->{'radius_reply'};
1710 my($column, $attrib) = ($1, $2);
1711 #$attrib =~ s/_/\-/g;
1712 ( $FS::raddb::attrib{lc($attrib)}, $self->getfield($column) );
1713 } grep { /^radius_/ && $self->getfield($_) } fields( $self->table );
1715 if ( $self->slipip && $self->slipip ne '0e0' ) {
1716 $reply{$radius_ip} = $self->slipip;
1719 if ( $self->seconds !~ /^$/ ) {
1720 $reply{'Session-Timeout'} = $self->seconds;
1723 if ( $conf->exists('radius-chillispot-max') ) {
1724 #http://dev.coova.org/svn/coova-chilli/doc/dictionary.chillispot
1726 #hmm. just because sqlradius.pm says so?
1733 foreach my $what (qw( input output total )) {
1734 my $is = $whatis{$what}.'bytes';
1735 if ( $self->$is() =~ /\d/ ) {
1736 my $big = new Math::BigInt $self->$is();
1737 $big = new Math::BigInt '0' if $big->is_neg();
1738 my $att = "Chillispot-Max-\u$what";
1739 $reply{"$att-Octets"} = $big->copy->band(0xffffffff)->bstr;
1740 $reply{"$att-Gigawords"} = $big->copy->brsft(32)->bstr;
1751 Returns key/value pairs, suitable for assigning to a hash, for any RADIUS
1752 check attributes of this record.
1754 Note that this is now the preferred method for reading RADIUS attributes -
1755 accessing the columns directly is discouraged, as the column names are
1756 expected to change in the future.
1763 return %{ $self->{'radius_check'} }
1764 if exists $self->{'radius_check'};
1769 my($column, $attrib) = ($1, $2);
1770 #$attrib =~ s/_/\-/g;
1771 ( $FS::raddb::attrib{lc($attrib)}, $self->getfield($column) );
1772 } grep { /^rc_/ && $self->getfield($_) } fields( $self->table );
1775 my($pw_attrib, $password) = $self->radius_password;
1776 $check{$pw_attrib} = $password;
1778 my $cust_svc = $self->cust_svc;
1780 my $cust_pkg = $cust_svc->cust_pkg;
1781 if ( $cust_pkg && $cust_pkg->part_pkg->is_prepaid && $cust_pkg->bill ) {
1782 $check{'Expiration'} = time2str('%B %e %Y %T', $cust_pkg->bill ); #http://lists.cistron.nl/pipermail/freeradius-users/2005-January/040184.html
1785 warn "WARNING: no cust_svc record for svc_acct.svcnum ". $self->svcnum.
1786 "; can't set Expiration\n"
1794 =item radius_password
1796 Returns a key/value pair containing the RADIUS attribute name and value
1801 sub radius_password {
1805 if ( $self->_password_encoding eq 'ldap' ) {
1806 $pw_attrib = 'Password-With-Header';
1807 } elsif ( $self->_password_encoding eq 'crypt' ) {
1808 $pw_attrib = 'Crypt-Password';
1809 } elsif ( $self->_password_encoding eq 'plain' ) {
1810 $pw_attrib = $radius_password;
1812 $pw_attrib = length($self->_password) <= 12
1817 ($pw_attrib, $self->_password);
1823 This method instructs the object to "snapshot" or freeze RADIUS check and
1824 reply attributes to the current values.
1828 #bah, my english is too broken this morning
1829 #Of note is the "Expiration" attribute, which, for accounts in prepaid packages, is typically defined on-the-fly as the associated packages cust_pkg.bill. (This is used by
1830 #the FS::cust_pkg's replace method to trigger the correct export updates when
1831 #package dates change)
1836 $self->{$_} = { $self->$_() }
1837 foreach qw( radius_reply radius_check );
1841 =item forget_snapshot
1843 This methos instructs the object to forget any previously snapshotted
1844 RADIUS check and reply attributes.
1848 sub forget_snapshot {
1852 foreach qw( radius_reply radius_check );
1856 =item domain [ END_TIMESTAMP [ START_TIMESTAMP ] ]
1858 Returns the domain associated with this account.
1860 END_TIMESTAMP and START_TIMESTAMP can optionally be passed when dealing with
1867 die "svc_acct.domsvc is null for svcnum ". $self->svcnum unless $self->domsvc;
1868 my $svc_domain = $self->svc_domain(@_)
1869 or die "no svc_domain.svcnum for svc_acct.domsvc ". $self->domsvc;
1870 $svc_domain->domain;
1875 Returns the FS::cust_svc record for this account (see L<FS::cust_svc>).
1879 #inherited from svc_Common
1881 =item email [ END_TIMESTAMP [ START_TIMESTAMP ] ]
1883 Returns an email address associated with the account.
1885 END_TIMESTAMP and START_TIMESTAMP can optionally be passed when dealing with
1892 $self->username. '@'. $self->domain(@_);
1898 Returns an array of FS::acct_snarf records associated with the account.
1902 # unused as originally intended, but now by Communigate Pro "RPOP"
1906 'table' => 'acct_snarf',
1907 'hashref' => { 'svcnum' => $self->svcnum },
1908 #'order_by' => 'ORDER BY priority ASC',
1912 =item cgp_rpop_hashref
1914 Returns an arrayref of RPOP data suitable for Communigate Pro API commands.
1918 sub cgp_rpop_hashref {
1920 { map { $_->snarfname => $_->cgp_hashref } $self->acct_snarf };
1923 =item decrement_upbytes OCTETS
1925 Decrements the I<upbytes> field of this record by the given amount. If there
1926 is an error, returns the error, otherwise returns false.
1930 sub decrement_upbytes {
1931 shift->_op_usage('-', 'upbytes', @_);
1934 =item increment_upbytes OCTETS
1936 Increments the I<upbytes> field of this record by the given amount. If there
1937 is an error, returns the error, otherwise returns false.
1941 sub increment_upbytes {
1942 shift->_op_usage('+', 'upbytes', @_);
1945 =item decrement_downbytes OCTETS
1947 Decrements the I<downbytes> field of this record by the given amount. If there
1948 is an error, returns the error, otherwise returns false.
1952 sub decrement_downbytes {
1953 shift->_op_usage('-', 'downbytes', @_);
1956 =item increment_downbytes OCTETS
1958 Increments the I<downbytes> field of this record by the given amount. If there
1959 is an error, returns the error, otherwise returns false.
1963 sub increment_downbytes {
1964 shift->_op_usage('+', 'downbytes', @_);
1967 =item decrement_totalbytes OCTETS
1969 Decrements the I<totalbytes> field of this record by the given amount. If there
1970 is an error, returns the error, otherwise returns false.
1974 sub decrement_totalbytes {
1975 shift->_op_usage('-', 'totalbytes', @_);
1978 =item increment_totalbytes OCTETS
1980 Increments the I<totalbytes> field of this record by the given amount. If there
1981 is an error, returns the error, otherwise returns false.
1985 sub increment_totalbytes {
1986 shift->_op_usage('+', 'totalbytes', @_);
1989 =item decrement_seconds SECONDS
1991 Decrements the I<seconds> field of this record by the given amount. If there
1992 is an error, returns the error, otherwise returns false.
1996 sub decrement_seconds {
1997 shift->_op_usage('-', 'seconds', @_);
2000 =item increment_seconds SECONDS
2002 Increments the I<seconds> field of this record by the given amount. If there
2003 is an error, returns the error, otherwise returns false.
2007 sub increment_seconds {
2008 shift->_op_usage('+', 'seconds', @_);
2016 my %op2condition = (
2017 '-' => sub { my($self, $column, $amount) = @_;
2018 $self->$column - $amount <= 0;
2020 '+' => sub { my($self, $column, $amount) = @_;
2021 ($self->$column || 0) + $amount > 0;
2024 my %op2warncondition = (
2025 '-' => sub { my($self, $column, $amount) = @_;
2026 my $threshold = $column . '_threshold';
2027 $self->$column - $amount <= $self->$threshold + 0;
2029 '+' => sub { my($self, $column, $amount) = @_;
2030 ($self->$column || 0) + $amount > 0;
2035 my( $self, $op, $column, $amount ) = @_;
2037 warn "$me _op_usage called for $column on svcnum ". $self->svcnum.
2038 ' ('. $self->email. "): $op $amount\n"
2041 return '' unless $amount;
2043 local $SIG{HUP} = 'IGNORE';
2044 local $SIG{INT} = 'IGNORE';
2045 local $SIG{QUIT} = 'IGNORE';
2046 local $SIG{TERM} = 'IGNORE';
2047 local $SIG{TSTP} = 'IGNORE';
2048 local $SIG{PIPE} = 'IGNORE';
2050 my $oldAutoCommit = $FS::UID::AutoCommit;
2051 local $FS::UID::AutoCommit = 0;
2054 my $sql = "UPDATE svc_acct SET $column = ".
2055 " CASE WHEN $column IS NULL THEN 0 ELSE $column END ". #$column||0
2056 " $op ? WHERE svcnum = ?";
2060 my $sth = $dbh->prepare( $sql )
2061 or die "Error preparing $sql: ". $dbh->errstr;
2062 my $rv = $sth->execute($amount, $self->svcnum);
2063 die "Error executing $sql: ". $sth->errstr
2064 unless defined($rv);
2065 die "Can't update $column for svcnum". $self->svcnum
2068 #$self->snapshot; #not necessary, we retain the old values
2069 #create an object with the updated usage values
2070 my $new = qsearchs('svc_acct', { 'svcnum' => $self->svcnum });
2072 my $error = $new->replace($self);
2074 $dbh->rollback if $oldAutoCommit;
2075 return "Error replacing: $error";
2078 #overlimit_action eq 'cancel' handling
2079 my $cust_pkg = $self->cust_svc->cust_pkg;
2081 && $cust_pkg->part_pkg->option('overlimit_action', 1) eq 'cancel'
2082 && $op eq '-' && &{$op2condition{$op}}($self, $column, $amount)
2086 my $error = $cust_pkg->cancel; #XXX should have a reason
2088 $dbh->rollback if $oldAutoCommit;
2089 return "Error cancelling: $error";
2092 #nothing else is relevant if we're cancelling, so commit & return success
2093 warn "$me update successful; committing\n"
2095 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
2100 my $action = $op2action{$op};
2102 if ( &{$op2condition{$op}}($self, $column, $amount) &&
2103 ( $action eq 'suspend' && !$self->overlimit
2104 || $action eq 'unsuspend' && $self->overlimit )
2107 my $error = $self->_op_overlimit($action);
2109 $dbh->rollback if $oldAutoCommit;
2115 if ( $conf->exists("svc_acct-usage_$action")
2116 && &{$op2condition{$op}}($self, $column, $amount) ) {
2117 #my $error = $self->$action();
2118 my $error = $self->cust_svc->cust_pkg->$action();
2119 # $error ||= $self->overlimit($action);
2121 $dbh->rollback if $oldAutoCommit;
2122 return "Error ${action}ing: $error";
2126 if ($warning_template && &{$op2warncondition{$op}}($self, $column, $amount)) {
2127 my $wqueue = new FS::queue {
2128 'svcnum' => $self->svcnum,
2129 'job' => 'FS::svc_acct::reached_threshold',
2134 $to = $warning_cc if &{$op2condition{$op}}($self, $column, $amount);
2138 my $error = $wqueue->insert(
2139 'svcnum' => $self->svcnum,
2141 'column' => $column,
2145 $dbh->rollback if $oldAutoCommit;
2146 return "Error queuing threshold activity: $error";
2150 warn "$me update successful; committing\n"
2152 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
2158 my( $self, $action ) = @_;
2160 local $SIG{HUP} = 'IGNORE';
2161 local $SIG{INT} = 'IGNORE';
2162 local $SIG{QUIT} = 'IGNORE';
2163 local $SIG{TERM} = 'IGNORE';
2164 local $SIG{TSTP} = 'IGNORE';
2165 local $SIG{PIPE} = 'IGNORE';
2167 my $oldAutoCommit = $FS::UID::AutoCommit;
2168 local $FS::UID::AutoCommit = 0;
2171 my $cust_pkg = $self->cust_svc->cust_pkg;
2173 my @conf_overlimit =
2175 ? $conf->config('overlimit_groups', $cust_pkg->cust_main->agentnum )
2176 : $conf->config('overlimit_groups');
2178 foreach my $part_export ( $self->cust_svc->part_svc->part_export ) {
2180 my @groups = scalar(@conf_overlimit) ? @conf_overlimit
2181 : split(' ',$part_export->option('overlimit_groups'));
2182 next unless scalar(@groups);
2184 my $other = new FS::svc_acct $self->hashref;
2185 $other->usergroup(\@groups);
2188 if ($action eq 'suspend') {
2191 } else { # $action eq 'unsuspend'
2196 my $error = $part_export->export_replace($new, $old)
2197 || $self->overlimit($action);
2200 $dbh->rollback if $oldAutoCommit;
2201 return "Error replacing radius groups: $error";
2206 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
2212 my( $self, $valueref, %options ) = @_;
2214 warn "$me set_usage called for svcnum ". $self->svcnum.
2215 ' ('. $self->email. "): ".
2216 join(', ', map { "$_ => " . $valueref->{$_}} keys %$valueref) . "\n"
2219 local $SIG{HUP} = 'IGNORE';
2220 local $SIG{INT} = 'IGNORE';
2221 local $SIG{QUIT} = 'IGNORE';
2222 local $SIG{TERM} = 'IGNORE';
2223 local $SIG{TSTP} = 'IGNORE';
2224 local $SIG{PIPE} = 'IGNORE';
2226 local $FS::svc_Common::noexport_hack = 1;
2227 my $oldAutoCommit = $FS::UID::AutoCommit;
2228 local $FS::UID::AutoCommit = 0;
2233 if ( $options{null} ) {
2234 %handyhash = ( map { ( $_ => undef, $_."_threshold" => undef ) }
2235 qw( seconds upbytes downbytes totalbytes )
2238 foreach my $field (keys %$valueref){
2239 $reset = 1 if $valueref->{$field};
2240 $self->setfield($field, $valueref->{$field});
2241 $self->setfield( $field.'_threshold',
2242 int($self->getfield($field)
2243 * ( $conf->exists('svc_acct-usage_threshold')
2244 ? 1 - $conf->config('svc_acct-usage_threshold')/100
2249 $handyhash{$field} = $self->getfield($field);
2250 $handyhash{$field.'_threshold'} = $self->getfield($field.'_threshold');
2252 #my $error = $self->replace; #NO! we avoid the call to ->check for
2253 #die $error if $error; #services not explicity changed via the UI
2255 my $sql = "UPDATE svc_acct SET " .
2256 join (',', map { "$_ = ?" } (keys %handyhash) ).
2257 " WHERE svcnum = ". $self->svcnum;
2262 if (scalar(keys %handyhash)) {
2263 my $sth = $dbh->prepare( $sql )
2264 or die "Error preparing $sql: ". $dbh->errstr;
2265 my $rv = $sth->execute(values %handyhash);
2266 die "Error executing $sql: ". $sth->errstr
2267 unless defined($rv);
2268 die "Can't update usage for svcnum ". $self->svcnum
2272 #$self->snapshot; #not necessary, we retain the old values
2273 #create an object with the updated usage values
2274 my $new = qsearchs('svc_acct', { 'svcnum' => $self->svcnum });
2275 local($FS::Record::nowarn_identical) = 1;
2276 my $error = $new->replace($self); #call exports
2278 $dbh->rollback if $oldAutoCommit;
2279 return "Error replacing: $error";
2286 $error = $self->_op_overlimit('unsuspend')
2287 if $self->overlimit;;
2289 $error ||= $self->cust_svc->cust_pkg->unsuspend
2290 if $conf->exists("svc_acct-usage_unsuspend");
2293 $dbh->rollback if $oldAutoCommit;
2294 return "Error unsuspending: $error";
2299 warn "$me update successful; committing\n"
2301 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
2307 =item recharge HASHREF
2309 Increments usage columns by the amount specified in HASHREF as
2310 column=>amount pairs.
2315 my ($self, $vhash) = @_;
2318 warn "[$me] recharge called on $self: ". Dumper($self).
2319 "\nwith vhash: ". Dumper($vhash);
2322 my $oldAutoCommit = $FS::UID::AutoCommit;
2323 local $FS::UID::AutoCommit = 0;
2327 foreach my $column (keys %$vhash){
2328 $error ||= $self->_op_usage('+', $column, $vhash->{$column});
2332 $dbh->rollback if $oldAutoCommit;
2334 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
2339 =item is_rechargeable
2341 Returns true if this svc_account can be "recharged" and false otherwise.
2345 sub is_rechargable {
2347 $self->seconds ne ''
2348 || $self->upbytes ne ''
2349 || $self->downbytes ne ''
2350 || $self->totalbytes ne '';
2353 =item seconds_since TIMESTAMP
2355 Returns the number of seconds this account has been online since TIMESTAMP,
2356 according to the session monitor (see L<FS::Session>).
2358 TIMESTAMP is specified as a UNIX timestamp; see L<perlfunc/"time">. Also see
2359 L<Time::Local> and L<Date::Parse> for conversion functions.
2363 #note: POD here, implementation in FS::cust_svc
2366 $self->cust_svc->seconds_since(@_);
2369 =item last_login_text
2371 Returns text describing the time of last login.
2375 sub last_login_text {
2377 $self->last_login ? ctime($self->last_login) : 'unknown';
2380 =item psearch_cdrs OPTIONS
2382 Returns a paged search (L<FS::PagedSearch>) for Call Detail Records
2383 associated with this service. For svc_acct, "associated with" means that
2384 either the "src" or the "charged_party" field of the CDR matches the
2385 "username" field of the service.
2390 my($self, %options) = @_;
2395 my $did = dbh->quote($self->username);
2397 my $prefix = $options{'default_prefix'} || ''; #convergent.au '+61'
2398 my $prefixdid = dbh->quote($prefix . $self->username);
2400 my $for_update = $options{'for_update'} ? 'FOR UPDATE' : '';
2402 if ( $options{inbound} ) {
2403 # these will be selected under their DIDs
2404 push @where, "FALSE";
2408 if (!$options{'disable_charged_party'}) {
2410 "charged_party = $did",
2411 "charged_party = $prefixdid";
2413 if (!$options{'disable_src'}) {
2415 "src = $did AND charged_party IS NULL",
2416 "src = $prefixdid AND charged_party IS NULL";
2418 push @where, '(' . join(' OR ', @orwhere) . ')';
2420 # $options{'status'} = '' is meaningful; for the rest of them it's not
2421 if ( exists $options{'status'} ) {
2422 $hash{'freesidestatus'} = $options{'status'};
2424 if ( $options{'cdrtypenum'} ) {
2425 $hash{'cdrtypenum'} = $options{'cdrtypenum'};
2427 if ( $options{'calltypenum'} ) {
2428 $hash{'calltypenum'} = $options{'calltypenum'};
2430 if ( $options{'begin'} ) {
2431 push @where, 'startdate >= '. $options{'begin'};
2433 if ( $options{'end'} ) {
2434 push @where, 'startdate < '. $options{'end'};
2436 if ( $options{'nonzero'} ) {
2437 push @where, 'duration > 0';
2440 my $extra_sql = join(' AND ', @where);
2443 $extra_sql = " AND ".$extra_sql;
2445 $extra_sql = " WHERE ".$extra_sql;
2451 'hashref' => \%hash,
2452 'extra_sql' => $extra_sql,
2453 'order_by' => "ORDER BY startdate $for_update",
2457 =item get_cdrs (DEPRECATED)
2459 Like psearch_cdrs, but returns all the L<FS::cdr> objects at once, in a
2460 single list. Arguments are the same as for psearch_cdrs.
2466 my $psearch = $self->psearch_cdrs(@_);
2467 qsearch ( $psearch->{query} )
2470 # sub radius_groups has moved to svc_Radius_Mixin
2472 =item clone_suspended
2474 Constructor used by FS::part_export::_export_suspend fallback. Document
2479 sub clone_suspended {
2481 my %hash = $self->hash;
2482 $hash{_password} = join('',map($pw_set[ int(rand $#pw_set) ], (0..7) ) );
2483 new FS::svc_acct \%hash;
2486 =item clone_kludge_unsuspend
2488 Constructor used by FS::part_export::_export_unsuspend fallback. Document
2493 sub clone_kludge_unsuspend {
2495 my %hash = $self->hash;
2496 $hash{_password} = '';
2497 new FS::svc_acct \%hash;
2500 =item check_password
2502 Checks the supplied password against the (possibly encrypted) password in the
2503 database. Returns true for a successful authentication, false for no match.
2505 Currently supported encryptions are: classic DES crypt() and MD5
2509 sub check_password {
2510 my($self, $check_password) = @_;
2512 #remove old-style SUSPENDED kludge, they should be allowed to login to
2513 #self-service and pay up
2514 ( my $password = $self->_password ) =~ s/^\*SUSPENDED\* //;
2516 if ( $self->_password_encoding eq 'ldap' ) {
2518 $password =~ s/^{PLAIN}/{CLEARTEXT}/;
2519 my $auth = from_rfc2307 Authen::Passphrase $password;
2520 return $auth->match($check_password);
2522 } elsif ( $self->_password_encoding eq 'crypt' ) {
2524 my $auth = from_crypt Authen::Passphrase $self->_password;
2525 return $auth->match($check_password);
2527 } elsif ( $self->_password_encoding eq 'plain' ) {
2529 return $check_password eq $password;
2533 #XXX this could be replaced with Authen::Passphrase stuff
2535 if ( $password =~ /^(\*|!!?)$/ ) { #no self-service login
2537 } elsif ( length($password) < 13 ) { #plaintext
2538 $check_password eq $password;
2539 } elsif ( length($password) == 13 ) { #traditional DES crypt
2540 crypt($check_password, $password) eq $password;
2541 } elsif ( $password =~ /^\$1\$/ ) { #MD5 crypt
2542 unix_md5_crypt($check_password, $password) eq $password;
2543 } elsif ( $password =~ /^\$2a?\$/ ) { #Blowfish
2544 warn "Can't check password: Blowfish encryption not yet supported, ".
2545 "svcnum ". $self->svcnum. "\n";
2548 warn "Can't check password: Unrecognized encryption for svcnum ".
2549 $self->svcnum. "\n";
2557 =item crypt_password [ DEFAULT_ENCRYPTION_TYPE ]
2559 Returns an encrypted password, either by passing through an encrypted password
2560 in the database or by encrypting a plaintext password from the database.
2562 The optional DEFAULT_ENCRYPTION_TYPE parameter can be set to I<crypt> (classic
2563 UNIX DES crypt), I<md5> (md5 crypt supported by most modern Linux and BSD
2564 distrubtions), or (eventually) I<blowfish> (blowfish hashing supported by
2565 OpenBSD, SuSE, other Linux distibutions with pam_unix2, etc.). The default
2566 encryption type is only used if the password is not already encrypted in the
2571 sub crypt_password {
2574 if ( $self->_password_encoding eq 'ldap' ) {
2576 if ( $self->_password =~ /^\{(PLAIN|CLEARTEXT)\}(.+)$/ ) {
2579 #XXX this could be replaced with Authen::Passphrase stuff
2581 my $encryption = ( scalar(@_) && $_[0] ) ? shift : 'crypt';
2582 if ( $encryption eq 'crypt' ) {
2585 $saltset[int(rand(64))].$saltset[int(rand(64))]
2587 } elsif ( $encryption eq 'md5' ) {
2588 return unix_md5_crypt( $self->_password );
2589 } elsif ( $encryption eq 'blowfish' ) {
2590 croak "unknown encryption method $encryption";
2592 croak "unknown encryption method $encryption";
2595 } elsif ( $self->_password =~ /^\{CRYPT\}(.+)$/ ) {
2599 } elsif ( $self->_password_encoding eq 'crypt' ) {
2601 return $self->_password;
2603 } elsif ( $self->_password_encoding eq 'plain' ) {
2605 #XXX this could be replaced with Authen::Passphrase stuff
2607 my $encryption = ( scalar(@_) && $_[0] ) ? shift : 'crypt';
2608 if ( $encryption eq 'crypt' ) {
2611 $saltset[int(rand(64))].$saltset[int(rand(64))]
2613 } elsif ( $encryption eq 'md5' ) {
2614 return unix_md5_crypt( $self->_password );
2615 } elsif ( $encryption eq 'sha1_base64' ) { #for acct_sql
2616 my $pass = sha1_base64( $self->_password );
2617 $pass .= '=' x (4 - length($pass) % 4); #properly padded base64
2619 } elsif ( $encryption eq 'blowfish' ) {
2620 croak "unknown encryption method $encryption";
2622 croak "unknown encryption method $encryption";
2627 if ( length($self->_password) == 13
2628 || $self->_password =~ /^\$(1|2a?)\$/
2629 || $self->_password =~ /^(\*|NP|\*LK\*|!!?)$/
2635 #XXX this could be replaced with Authen::Passphrase stuff
2637 my $encryption = ( scalar(@_) && $_[0] ) ? shift : 'crypt';
2638 if ( $encryption eq 'crypt' ) {
2641 $saltset[int(rand(64))].$saltset[int(rand(64))]
2643 } elsif ( $encryption eq 'md5' ) {
2644 return unix_md5_crypt( $self->_password );
2645 } elsif ( $encryption eq 'blowfish' ) {
2646 croak "unknown encryption method $encryption";
2648 croak "unknown encryption method $encryption";
2657 =item ldap_password [ DEFAULT_ENCRYPTION_TYPE ]
2659 Returns an encrypted password in "LDAP" format, with a curly-bracked prefix
2660 describing the format, for example, "{PLAIN}himom", "{CRYPT}94pAVyK/4oIBk" or
2661 "{MD5}5426824942db4253f87a1009fd5d2d4".
2663 The optional DEFAULT_ENCRYPTION_TYPE is not yet used, but the idea is for it
2664 to work the same as the B</crypt_password> method.
2670 #eventually should check a "password-encoding" field
2672 if ( $self->_password_encoding eq 'ldap' ) {
2674 return $self->_password;
2676 } elsif ( $self->_password_encoding eq 'crypt' ) {
2678 if ( length($self->_password) == 13 ) { #crypt
2679 return '{CRYPT}'. $self->_password;
2680 } elsif ( $self->_password =~ /^\$1\$(.*)$/ && length($1) == 31 ) { #passwdMD5
2682 #} elsif ( $self->_password =~ /^\$2a?\$(.*)$/ ) { #Blowfish
2683 # die "Blowfish encryption not supported in this context, svcnum ".
2684 # $self->svcnum. "\n";
2686 warn "encryption method not (yet?) supported in LDAP context";
2687 return '{CRYPT}*'; #unsupported, should not auth
2690 } elsif ( $self->_password_encoding eq 'plain' ) {
2692 return '{PLAIN}'. $self->_password;
2694 #return '{CLEARTEXT}'. $self->_password; #?
2698 if ( length($self->_password) == 13 ) { #crypt
2699 return '{CRYPT}'. $self->_password;
2700 } elsif ( $self->_password =~ /^\$1\$(.*)$/ && length($1) == 31 ) { #passwdMD5
2702 } elsif ( $self->_password =~ /^\$2a?\$(.*)$/ ) { #Blowfish
2703 warn "Blowfish encryption not supported in this context, svcnum ".
2704 $self->svcnum. "\n";
2707 #are these two necessary anymore?
2708 } elsif ( $self->_password =~ /^(\w{48})$/ ) { #LDAP SSHA
2709 return '{SSHA}'. $1;
2710 } elsif ( $self->_password =~ /^(\w{64})$/ ) { #LDAP NS-MTA-MD5
2711 return '{NS-MTA-MD5}'. $1;
2714 return '{PLAIN}'. $self->_password;
2716 #return '{CLEARTEXT}'. $self->_password; #?
2718 #XXX this could be replaced with Authen::Passphrase stuff if it gets used
2719 #my $encryption = ( scalar(@_) && $_[0] ) ? shift : 'crypt';
2720 #if ( $encryption eq 'crypt' ) {
2721 # return '{CRYPT}'. crypt(
2723 # $saltset[int(rand(64))].$saltset[int(rand(64))]
2725 #} elsif ( $encryption eq 'md5' ) {
2726 # unix_md5_crypt( $self->_password );
2727 #} elsif ( $encryption eq 'blowfish' ) {
2728 # croak "unknown encryption method $encryption";
2730 # croak "unknown encryption method $encryption";
2738 =item domain_slash_username
2740 Returns $domain/$username/
2744 sub domain_slash_username {
2746 $self->domain. '/'. $self->username. '/';
2749 =item virtual_maildir
2751 Returns $domain/maildirs/$username/
2755 sub virtual_maildir {
2757 $self->domain. '/maildirs/'. $self->username. '/';
2762 =head1 CLASS METHODS
2766 =item search HASHREF
2768 Class method which returns a qsearch hash expression to search for parameters
2769 specified in HASHREF. Valid parameters are
2783 Arrayref of pkgparts
2789 Arrayref of additional WHERE clauses, will be ANDed together.
2800 my( $class, $params, $from, $where ) = @_;
2802 #these two should probably move to svc_Domain_Mixin ?
2805 if ( $params->{'domain'} ) {
2806 my $svc_domain = qsearchs('svc_domain', { 'domain'=>$params->{'domain'} } );
2807 #preserve previous behavior & bubble up an error if $svc_domain not found?
2808 push @$where, 'domsvc = '. $svc_domain->svcnum if $svc_domain;
2812 if ( $params->{'domsvc'} =~ /^(\d+)$/ ) {
2813 push @$where, "domsvc = $1";
2818 if ( $params->{'popnum'} =~ /^(\d+)$/ ) {
2819 push @$where, "popnum = $1";
2823 #and these in svc_Tower_Mixin, or maybe we never should have done svc_acct
2824 # towers (or, as mark thought, never should have done svc_broadband)
2827 my @where_sector = $class->tower_sector_sql($params);
2828 if ( @where_sector ) {
2829 push @$where, @where_sector;
2830 push @$from, ' LEFT JOIN tower_sector USING ( sectornum )';
2843 This is the FS::svc_acct job-queue-able version. It still uses
2844 FS::Misc::send_email under-the-hood.
2851 eval "use FS::Misc qw(send_email)";
2854 $opt{mimetype} ||= 'text/plain';
2855 $opt{mimetype} .= '; charset="iso-8859-1"' unless $opt{mimetype} =~ /charset/;
2857 my $error = send_email(
2858 'from' => $opt{from},
2860 'subject' => $opt{subject},
2861 'content-type' => $opt{mimetype},
2862 'body' => [ map "$_\n", split("\n", $opt{body}) ],
2864 die $error if $error;
2867 =item check_and_rebuild_fuzzyfiles
2871 sub check_and_rebuild_fuzzyfiles {
2872 my $dir = $FS::UID::conf_dir. "/cache.". $FS::UID::datasrc;
2873 -e "$dir/svc_acct.username"
2874 or &rebuild_fuzzyfiles;
2877 =item rebuild_fuzzyfiles
2881 sub rebuild_fuzzyfiles {
2883 use Fcntl qw(:flock);
2885 my $dir = $FS::UID::conf_dir. "/cache.". $FS::UID::datasrc;
2889 open(USERNAMELOCK,">>$dir/svc_acct.username")
2890 or die "can't open $dir/svc_acct.username: $!";
2891 flock(USERNAMELOCK,LOCK_EX)
2892 or die "can't lock $dir/svc_acct.username: $!";
2894 my @all_username = map $_->getfield('username'), qsearch('svc_acct', {});
2896 open (USERNAMECACHE,">$dir/svc_acct.username.tmp")
2897 or die "can't open $dir/svc_acct.username.tmp: $!";
2898 print USERNAMECACHE join("\n", @all_username), "\n";
2899 close USERNAMECACHE or die "can't close $dir/svc_acct.username.tmp: $!";
2901 rename "$dir/svc_acct.username.tmp", "$dir/svc_acct.username";
2911 my $dir = $FS::UID::conf_dir. "/cache.". $FS::UID::datasrc;
2912 open(USERNAMECACHE,"<$dir/svc_acct.username")
2913 or die "can't open $dir/svc_acct.username: $!";
2914 my @array = map { chomp; $_; } <USERNAMECACHE>;
2915 close USERNAMECACHE;
2919 =item append_fuzzyfiles USERNAME
2923 sub append_fuzzyfiles {
2924 my $username = shift;
2926 &check_and_rebuild_fuzzyfiles;
2928 use Fcntl qw(:flock);
2930 my $dir = $FS::UID::conf_dir. "/cache.". $FS::UID::datasrc;
2932 open(USERNAME,">>$dir/svc_acct.username")
2933 or die "can't open $dir/svc_acct.username: $!";
2934 flock(USERNAME,LOCK_EX)
2935 or die "can't lock $dir/svc_acct.username: $!";
2937 print USERNAME "$username\n";
2939 flock(USERNAME,LOCK_UN)
2940 or die "can't unlock $dir/svc_acct.username: $!";
2947 =item reached_threshold
2949 Performs some activities when svc_acct thresholds (such as number of seconds
2950 remaining) are reached.
2954 sub reached_threshold {
2957 my $svc_acct = qsearchs('svc_acct', { 'svcnum' => $opt{'svcnum'} } );
2958 die "Cannot find svc_acct with svcnum " . $opt{'svcnum'} unless $svc_acct;
2960 if ( $opt{'op'} eq '+' ){
2961 $svc_acct->setfield( $opt{'column'}.'_threshold',
2962 int($svc_acct->getfield($opt{'column'})
2963 * ( $conf->exists('svc_acct-usage_threshold')
2964 ? $conf->config('svc_acct-usage_threshold')/100
2969 my $error = $svc_acct->replace;
2970 die $error if $error;
2971 }elsif ( $opt{'op'} eq '-' ){
2973 my $threshold = $svc_acct->getfield( $opt{'column'}.'_threshold' );
2974 return '' if ($threshold eq '' );
2976 $svc_acct->setfield( $opt{'column'}.'_threshold', 0 );
2977 my $error = $svc_acct->replace;
2978 die $error if $error; # email next time, i guess
2980 if ( $warning_template ) {
2981 eval "use FS::Misc qw(send_email)";
2984 my $cust_pkg = $svc_acct->cust_svc->cust_pkg;
2985 my $cust_main = $cust_pkg->cust_main;
2987 my $to = join(', ', grep { $_ !~ /^(POST|FAX)$/ }
2988 $cust_main->invoicing_list,
2989 ($opt{'to'} ? $opt{'to'} : ())
2992 my $mimetype = $warning_mimetype;
2993 $mimetype .= '; charset="iso-8859-1"' unless $opt{mimetype} =~ /charset/;
2995 my $body = $warning_template->fill_in( HASH => {
2996 'custnum' => $cust_main->custnum,
2997 'username' => $svc_acct->username,
2998 'password' => $svc_acct->_password,
2999 'first' => $cust_main->first,
3000 'last' => $cust_main->getfield('last'),
3001 'pkg' => $cust_pkg->part_pkg->pkg,
3002 'column' => $opt{'column'},
3003 'amount' => $opt{'column'} =~/bytes/
3004 ? FS::UI::bytecount::display_bytecount($svc_acct->getfield($opt{'column'}))
3005 : $svc_acct->getfield($opt{'column'}),
3006 'threshold' => $opt{'column'} =~/bytes/
3007 ? FS::UI::bytecount::display_bytecount($threshold)
3012 my $error = send_email(
3013 'from' => $warning_from,
3015 'subject' => $warning_subject,
3016 'content-type' => $mimetype,
3017 'body' => [ map "$_\n", split("\n", $body) ],
3019 die $error if $error;
3022 die "unknown op: " . $opt{'op'};
3030 The $recref stuff in sub check should be cleaned up.
3032 The suspend, unsuspend and cancel methods update the database, but not the
3033 current object. This is probably a bug as it's unexpected and
3036 insertion of RADIUS group stuff in insert could be done with child_objects now
3037 (would probably clean up export of them too)
3039 _op_usage and set_usage bypass the history... maybe they shouldn't
3043 L<FS::svc_Common>, edit/part_svc.cgi from an installed web interface,
3044 export.html from the base documentation, L<FS::Record>, L<FS::Conf>,
3045 L<FS::cust_svc>, L<FS::part_svc>, L<FS::cust_pkg>, L<FS::queue>,
3046 L<freeside-queued>), L<FS::svc_acct_pop>,
3047 schema.html from the base documentation.