X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fcontact.pm;h=936e82132451c19683f5f2ad1a87b9d20fc8d4c9;hb=b32b0020cc9b2323ca2a34ad35b642e343e73f2b;hp=8fcd724a069459a388e49fb6ef42178a1b31eef3;hpb=54a357b171aa44f9399b4c146acd2afd3b686075;p=freeside.git diff --git a/FS/FS/contact.pm b/FS/FS/contact.pm index 8fcd724a0..936e82132 100644 --- a/FS/FS/contact.pm +++ b/FS/FS/contact.pm @@ -1,14 +1,15 @@ package FS::contact; +use base qw( FS::Record ); use strict; -use base qw( FS::Record ); -use FS::Record qw( qsearch qsearchs dbh ); -use FS::prospect_main; -use FS::cust_main; -use FS::contact_class; -use FS::cust_location; +use vars qw( $skip_fuzzyfiles ); +use Scalar::Util qw( blessed ); +use FS::Record qw( qsearchs dbh ); # qw( qsearch qsearchs dbh ); use FS::contact_phone; use FS::contact_email; +use FS::queue; + +$skip_fuzzyfiles = 0; =head1 NAME @@ -68,6 +69,16 @@ title comment +=item selfservice_access + +empty or Y + +=item _password + +=item _password_encoding + +empty or bcrypt + =item disabled disabled @@ -153,6 +164,24 @@ sub insert { } + unless ( $skip_fuzzyfiles ) { #unless ( $import || $skip_fuzzyfiles ) { + #warn " queueing fuzzyfiles update\n" + # if $DEBUG > 1; + $error = $self->queue_fuzzyfiles_update; + if ( $error ) { + $dbh->rollback if $oldAutoCommit; + return "updating fuzzy search cache: $error"; + } + } + + if ( $self->selfservice_access ) { + my $error = $self->send_reset_email( queue=>1 ); + if ( $error ) { + $dbh->rollback if $oldAutoCommit; + return $error; + } + } + $dbh->commit or die $dbh->errstr if $oldAutoCommit; ''; @@ -181,6 +210,15 @@ sub delete { local $FS::UID::AutoCommit = 0; my $dbh = dbh; + foreach my $cust_pkg ( $self->cust_pkg ) { + $cust_pkg->contactnum(''); + my $error = $cust_pkg->replace; + if ( $error ) { + $dbh->rollback if $oldAutoCommit; + return $error; + } + } + foreach my $object ( $self->contact_phone, $self->contact_email ) { my $error = $object->delete; if ( $error ) { @@ -210,6 +248,12 @@ returns the error, otherwise returns false. sub replace { my $self = shift; + my $old = ( blessed($_[0]) && $_[0]->isa('FS::Record') ) + ? shift + : $self->replace_old; + + $self->$_( $self->$_ || $old->$_ ) for qw( _password _password_encoding ); + local $SIG{INT} = 'IGNORE'; local $SIG{QUIT} = 'IGNORE'; local $SIG{TERM} = 'IGNORE'; @@ -220,7 +264,7 @@ sub replace { local $FS::UID::AutoCommit = 0; my $dbh = dbh; - my $error = $self->SUPER::replace(@_); + my $error = $self->SUPER::replace($old); if ( $error ) { $dbh->rollback if $oldAutoCommit; return $error; @@ -249,7 +293,7 @@ sub replace { } } - if ( defined($self->get('emailaddress')) ) { + if ( defined($self->hashref->{'emailaddress'}) ) { #ineffecient but whatever, how many email addresses can there be? @@ -277,6 +321,29 @@ sub replace { } + unless ( $skip_fuzzyfiles ) { #unless ( $import || $skip_fuzzyfiles ) { + #warn " queueing fuzzyfiles update\n" + # if $DEBUG > 1; + $error = $self->queue_fuzzyfiles_update; + if ( $error ) { + $dbh->rollback if $oldAutoCommit; + return "updating fuzzy search cache: $error"; + } + } + + if ( ( $old->selfservice_access eq '' && $self->selfservice_access + && ! $self->_password + ) + || $self->_resend() + ) + { + my $error = $self->send_reset_email( queue=>1 ); + if ( $error ) { + $dbh->rollback if $oldAutoCommit; + return $error; + } + } + $dbh->commit or die $dbh->errstr if $oldAutoCommit; ''; @@ -306,6 +373,44 @@ sub _parse_phonestring { ); } +=item queue_fuzzyfiles_update + +Used by insert & replace to update the fuzzy search cache + +=cut + +use FS::cust_main::Search; +sub queue_fuzzyfiles_update { + my $self = shift; + + local $SIG{HUP} = 'IGNORE'; + local $SIG{INT} = 'IGNORE'; + local $SIG{QUIT} = 'IGNORE'; + local $SIG{TERM} = 'IGNORE'; + local $SIG{TSTP} = 'IGNORE'; + local $SIG{PIPE} = 'IGNORE'; + + my $oldAutoCommit = $FS::UID::AutoCommit; + local $FS::UID::AutoCommit = 0; + my $dbh = dbh; + + foreach my $field ( 'first', 'last' ) { + my $queue = new FS::queue { + 'job' => 'FS::cust_main::Search::append_fuzzyfiles_fuzzyfield' + }; + my @args = "contact.$field", $self->get($field); + my $error = $queue->insert( @args ); + if ( $error ) { + $dbh->rollback if $oldAutoCommit; + return "queueing job (transaction rolled back): $error"; + } + } + + $dbh->commit or die $dbh->errstr if $oldAutoCommit; + ''; + +} + =item check Checks all fields to make sure this is a valid example. If there is @@ -320,6 +425,11 @@ and replace methods. sub check { my $self = shift; + if ( $self->selfservice_access eq 'R' ) { + $self->selfservice_access('Y'); + $self->_resend('Y'); + } + my $error = $self->ut_numbern('contactnum') || $self->ut_foreign_keyn('prospectnum', 'prospect_main', 'prospectnum') @@ -330,6 +440,9 @@ sub check { || $self->ut_namen('first') || $self->ut_textn('title') || $self->ut_textn('comment') + || $self->ut_enum('selfservice_access', [ '', 'Y' ]) + || $self->ut_textn('_password') + || $self->ut_enum('_password_encoding', [ '', 'bcrypt']) || $self->ut_enum('disabled', [ '', 'Y' ]) ; return $error if $error; @@ -353,32 +466,157 @@ sub line { $data; } -sub cust_location { +sub contact_classname { my $self = shift; - return '' unless $self->locationnum; - qsearchs('cust_location', { 'locationnum' => $self->locationnum } ); + my $contact_class = $self->contact_class or return ''; + $contact_class->classname; } -sub contact_class { - my $self = shift; - return '' unless $self->classnum; - qsearchs('contact_class', { 'classnum' => $self->classnum } ); +sub by_selfservice_email { + my($class, $email) = @_; + + my $contact_email = qsearchs({ + 'table' => 'contact_email', + 'addl_from' => ' LEFT JOIN contact USING ( contactnum ) ', + 'hashref' => { 'emailaddress' => $email, }, + 'extra_sql' => " AND selfservice_access = 'Y' ". + " AND ( disabled IS NULL OR disabled = '' )", + }) or return ''; + + $contact_email->contact; + } -sub contact_classname { - my $self = shift; - my $contact_class = $self->contact_class or return ''; - $contact_class->classname; +#these three functions are very much false laziness w/FS/FS/Auth/internal.pm +# and should maybe be libraried in some way for other password needs + +use Crypt::Eksblowfish::Bcrypt qw( bcrypt_hash en_base64 de_base64); + +sub authenticate_password { + my($self, $check_password) = @_; + + if ( $self->_password_encoding eq 'bcrypt' ) { + + my( $cost, $salt, $hash ) = split(',', $self->_password); + + my $check_hash = en_base64( bcrypt_hash( { key_nul => 1, + cost => $cost, + salt => de_base64($salt), + }, + $check_password + ) + ); + + $hash eq $check_hash; + + } else { + + return 0 if $self->_password eq ''; + + $self->_password eq $check_password; + + } + } -sub contact_phone { - my $self = shift; - qsearch('contact_phone', { 'contactnum' => $self->contactnum } ); +sub change_password { + my($self, $new_password) = @_; + + $self->change_password_fields( $new_password ); + + $self->replace; + } -sub contact_email { - my $self = shift; - qsearch('contact_email', { 'contactnum' => $self->contactnum } ); +sub change_password_fields { + my($self, $new_password) = @_; + + $self->_password_encoding('bcrypt'); + + my $cost = 8; + + my $salt = pack( 'C*', map int(rand(256)), 1..16 ); + + my $hash = bcrypt_hash( { key_nul => 1, + cost => $cost, + salt => $salt, + }, + $new_password, + ); + + $self->_password( + join(',', $cost, en_base64($salt), en_base64($hash) ) + ); + +} + +# end of false laziness w/FS/FS/Auth/internal.pm + + +#false laziness w/ClientAPI/MyAccount/reset_passwd +use Digest::SHA qw(sha512_hex); +use FS::Conf; +use FS::ClientAPI_SessionCache; +sub send_reset_email { + my( $self, %opt ) = @_; + + my @contact_email = $self->contact_email or return ''; + + my $reset_session = { + 'contactnum' => $self->contactnum, + 'svcnum' => $opt{'svcnum'}, + }; + + my $timeout = '24 hours'; #? + + my $reset_session_id; + do { + $reset_session_id = sha512_hex(time(). {}. rand(). $$) + } until ( ! defined $self->myaccount_cache->get("reset_passwd_$reset_session_id") ); + #just in case + + $self->myaccount_cache->set( "reset_passwd_$reset_session_id", $reset_session, $timeout ); + + #email it + + my $conf = new FS::Conf; + + my $cust_main = $self->cust_main + or die "no customer"; #reset a password for a prospect contact? someday + + my $msgnum = $conf->config('selfservice-password_reset_msgnum', $cust_main->agentnum); + #die "selfservice-password_reset_msgnum unset" unless $msgnum; + return { 'error' => "selfservice-password_reset_msgnum unset" } unless $msgnum; + my $msg_template = qsearchs('msg_template', { msgnum => $msgnum } ); + my %msg_template = ( + 'to' => join(',', map $_->emailaddress, @contact_email ), + 'cust_main' => $cust_main, + 'object' => $self, + 'substitutions' => { 'session_id' => $reset_session_id } + ); + + if ( $opt{'queue'} ) { #or should queueing just be the default? + + my $queue = new FS::queue { + 'job' => 'FS::Misc::process_send_email', + 'custnum' => $cust_main->custnum, + }; + $queue->insert( $msg_template->prepare( %msg_template ) ); + + } else { + + $msg_template->send( %msg_template ); + + } + +} + +use vars qw( $myaccount_cache ); +sub myaccount_cache { + #my $class = shift; + $myaccount_cache ||= new FS::ClientAPI_SessionCache( { + 'namespace' => 'FS::ClientAPI::MyAccount', + } ); } =back