optionally scale to the page width when printing, #71301
[freeside.git] / httemplate / pref / pref-process.html
index 84f0832..b622efc 100644 (file)
@@ -7,37 +7,38 @@
 % }
 <%init>
 
+my $access_user = $FS::CurrentUser::CurrentUser;
+
 if ( FS::Conf->new->exists('disable_acl_changes') ) {
   errorpage("Preference changes disabled in public demo");
   die "shouldn't be reached";
 }
 
 my $error = '';
-my $access_user = '';
 
-if ( grep { $cgi->param($_) !~ /^\s*$/ }
-          qw(_password new_password new_password2)
+if ( FS::Auth->auth_class->can('change_password')
+       && grep { $cgi->param($_) !~ /^\s*$/ }
+            qw(_password new_password new_password2)
    ) {
 
-  $access_user = qsearchs( 'access_user', {
-    'username'  => getotaker,
-    '_password' => scalar($cgi->param('_password')),
-  } );
+  my $oldpass = $cgi->param('_password');
+  my $newpass = $cgi->param('new_password');
 
-  $error = 'Current password incorrect; password not changed'
-    unless $access_user;
+  if ( $newpass ne $cgi->param('new_password2') ) {
+    $error = "New passwords don't match";
 
-  $error ||= "New passwords don't match"
-    unless $cgi->param('new_password') eq $cgi->param('new_password2');
+  } elsif ( ! length($newpass) ) {
+    $error = 'No new password entered';
 
-  $error ||= "No new password entered"
-   unless length($cgi->param('new_password'));
+  } elsif ( ! FS::Auth->authenticate( $access_user, $oldpass ) ) {
+    $error = 'Current password incorrect; password not changed';
 
-  $access_user->_password($cgi->param('new_password')) unless $error;
+  } else {
 
-} else {
+    $error = $access_user->is_password_allowed($newpass)
+          || $access_user->change_password($newpass);
 
-  $access_user = $FS::CurrentUser::CurrentUser;
+  }
 
 }
 
@@ -49,9 +50,12 @@ unless ( $error ) { # if ($access_user) {
 
   #XXX autogen
   my @paramlist = qw( locale menu_position default_customer_view 
+                      history_order
                       spreadsheet_format mobile_menu
-                      enable_fuzzy_on_exact
                       disable_html_editor disable_enter_submit_onetimecharge
+                      enable_mask_clipboard_hack dashboard_customers
+                      customer_view_emails
+                      printtofit
                       email_address
                       snom-ip snom-username snom-password
                       vonage-fromnumber vonage-username vonage-password
@@ -81,7 +85,7 @@ if ( !$error and ($FS::TicketSystem::system || '') eq 'RT_Internal' ) {
   FS::TicketSystem->init;
   my $UserObj = FS::TicketSystem->session('')->{'CurrentUser'}->UserObj;
   # Bypass RT ModifySelf ACL
-  $UserObj->CurrentUser( RT::SystemUser );
+  $UserObj->CurrentUser( $RT::SystemUser );
   if ( $UserObj->Lang ne $locale ) {
     my ($val, $msg) = $UserObj->SetLang($locale);
     $error = $msg if !$val;