Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / httemplate / pref / pref-process.html
1 % if ( $error ) {
2 %   $cgi->param('error', $error);
3 <% $cgi->redirect(popurl(1). "pref.html?". $cgi->query_string ) %>
4 % } else {
5 <% include('/elements/header.html', mt('Preferences updated')) %>
6 <% include('/elements/footer.html') %>
7 % }
8 <%init>
9
10 my $access_user = $FS::CurrentUser::CurrentUser;
11
12 if ( FS::Conf->new->exists('disable_acl_changes') ) {
13   errorpage("Preference changes disabled in public demo");
14   die "shouldn't be reached";
15 }
16
17 my $error = '';
18
19 if ( FS::Auth->auth_class->can('change_password')
20        && grep { $cgi->param($_) !~ /^\s*$/ }
21             qw(_password new_password new_password2)
22    ) {
23
24   my $oldpass = $cgi->param('_password');
25   my $newpass = $cgi->param('new_password');
26
27   if ( $newpass ne $cgi->param('new_password2') ) {
28     $error = mt("New passwords don't match");
29
30   } elsif ( ! length($newpass) ) {
31     $error = mt('No new password entered');
32
33   } elsif ( ! FS::Auth->authenticate( $access_user, $oldpass ) ) {
34     $error = mt('Current password incorrect; password not changed');
35
36   } else {
37
38     $error = $access_user->is_password_allowed($newpass)
39           || $access_user->change_password($newpass);
40
41   }
42
43 }
44
45 #well, if you got your password change wrong, you don't get anything else
46 #changed right now.  but it should be sticky on the form
47 unless ( $error ) { # if ($access_user) {
48
49   my %param = $access_user->options;
50
51   #XXX autogen
52   my @paramlist = qw( locale menu_position default_customer_view 
53                       history_order
54                       spreadsheet_format mobile_menu
55                       disable_html_editor disable_enter_submit_onetimecharge
56                       enable_mask_clipboard_hack dashboard_customers
57                       customer_view_emails
58                       printtofit
59                       hide_notify_tickets
60                       email_address
61                       snom-ip snom-username snom-password
62                       vonage-fromnumber vonage-username vonage-password
63                       cust_pkg-display_times
64                       show_pkgnum show_confitem_counts export_getsettings
65                       show_db_profile save_db_profile save_tmp_typesetting
66                       height width availHeight availWidth colorDepth
67                     );
68
69   foreach (@paramlist) {
70     scalar($cgi->param($_)) =~ /^[,.\-\@\w]*$/ && next;
71     $error ||= mt("Illegal value for parameter")." $_";
72     last;
73   }
74
75   foreach (@paramlist) {
76     $param{$_} = scalar($cgi->param($_));
77   }
78
79   $error ||= $access_user->replace( \%param );
80
81 }
82
83 if ( !$error and ($FS::TicketSystem::system || '') eq 'RT_Internal' ) {
84   # sync RT user locale on every update
85   my $locale = $access_user->option('locale');
86   FS::TicketSystem->init;
87   my $UserObj = FS::TicketSystem->session('')->{'CurrentUser'}->UserObj;
88   # Bypass RT ModifySelf ACL
89   $UserObj->CurrentUser( $RT::SystemUser );
90   if ( $UserObj->Lang ne $locale ) {
91     my ($val, $msg) = $UserObj->SetLang($locale);
92     $error = $msg if !$val;
93   }
94 }
95 </%init>