X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fedit%2Fprocess%2Faccess_user.html;h=3a5d95198ee0f98c93e37a3a9142b341939cf630;hb=a3fc8a9a062757f2c288a36eece7367e8f653e5f;hp=d8a752adced2e7fad3351ae696c7ea4eeb5404e3;hpb=b7c723f64f35ad8049fc6605437a17b262b0d17c;p=freeside.git diff --git a/httemplate/edit/process/access_user.html b/httemplate/edit/process/access_user.html index d8a752adc..3a5d95198 100644 --- a/httemplate/edit/process/access_user.html +++ b/httemplate/edit/process/access_user.html @@ -1,6 +1,3 @@ -% if ( FS::Conf->new->exists('disable_acl_changes') ) { - ACL changes disabled in public demo. -% } else { % if ( $cgi->param('_password') ne $cgi->param('_password2') ) { % $cgi->param('error', "The passwords do not match"); % print $cgi->redirect(popurl(2) . "access_user.html?" . $cgi->query_string); @@ -13,13 +10,61 @@ 'process_m2m' => { 'link_table' => 'access_usergroup', 'target_table' => 'access_group', }, + 'precheck_callback'=> \&precheck_callback, + 'noerror_callback' => \&noerror_callback, ) %> % } -% } <%init> die "access denied" unless $FS::CurrentUser::CurrentUser->access_right('Configuration'); +if ( FS::Conf->new->exists('disable_acl_changes') ) { + errorpage('ACL changes disabled in public demo.'); + die "shouldn't be reached"; +} + +sub precheck_callback { + my $cgi = shift; + my $o = FS::access_user->new({username => $cgi->param('username')}); + if( $o->is_system_user and !$cgi->param('usernum') ) { + $cgi->param('username',''); + return "username '".$o->username."' reserved for system account." + } + return ''; +} + +sub noerror_callback { + my( $cgi, $access_user ) = @_; + + #handle installer checkbox + my @sched_item = $access_user->sched_item; + my $sched_item = $sched_item[0]; + if ( $cgi->param('sched_item_enabled') ) { + + if ( ! $sched_item ) { + my $sched_item = new FS::sched_item { + 'usernum' => $access_user->usernum, + }; + my $error = $sched_item->insert; + die $error if $error; #wtf? shouldn't happen + } elsif ( $sched_item->disabled ) { + $sched_item->disabled(''); + my $error = $sched_item->replace; + die $error if $error; #wtf? shouldn't happen + } + + } elsif ( ! $cgi->param('sched_item_enabled') + && $sched_item + && ! $sched_item->disabled + ) + { + $sched_item->disabled('Y'); + my $error = $sched_item->replace; + die $error if $error; #wtf? shouldn't happen + } + +} +