96110ef3a7b5b95e0cf7004d934193d064a9b4dd
[freeside.git] / FS / FS / ClientAPI / passwd.pm
1 package FS::ClientAPI::passwd;
2
3 use strict;
4 use FS::Record qw(qsearchs);
5 use FS::svc_acct;
6 #use FS::svc_domain;
7
8 use FS::ClientAPI; #hmm
9 FS::ClientAPI->register_handlers(
10   'passwd/passwd' => \&passwd,
11   'passwd/chfn' => \&chfn,
12   'passwd/chsh' => \&chsh,
13 );
14
15 sub passwd {
16   my $packet = shift;
17
18   my $domain = $FS::ClientAPI::domain || $packet->{'domain'};
19   my $svc_domain = qsearchs('svc_domain', { 'domain' => $domain } )
20     or return { error => "Domain $domain not found" };
21
22   my $old_password = $packet->{'old_password'};
23   my $new_password = $packet->{'new_password'};
24   my $new_gecos = $packet->{'new_gecos'};
25   my $new_shell = $packet->{'new_shell'};
26
27   #false laziness w/FS::ClientAPI::MyAccount::login
28
29   my $svc_acct = qsearchs( 'svc_acct', { 'username'  => $packet->{'username'},
30                                          'domsvc'    => $svc_domain->svcnum, }
31                          );
32   return { error => 'User not found.' } unless $svc_acct;
33   return { error => 'Incorrect password.' }
34     unless $svc_acct->check_password($old_password);
35
36   my %hash = $svc_acct->hash;
37   my $new_svc_acct = new FS::svc_acct ( \%hash );
38   $new_svc_acct->setfield('_password', $new_password ) 
39     if $new_password && $new_password ne $old_password;
40   $new_svc_acct->setfield('finger',$new_gecos) if $new_gecos;
41   $new_svc_acct->setfield('shell',$new_shell) if $new_shell;
42   my $error = $new_svc_acct->replace($svc_acct);
43
44   return { error => $error };
45
46 }
47
48 sub chfn {}
49
50 sub chsh {}
51
52 1;
53