version 1.49, 2008/05/08 22:13:32
|
version 1.50, 2008/05/14 20:21:34
|
Line 1543 sub print_usercreation {
|
Line 1543 sub print_usercreation {
|
&Apache::lonnet::inst_userrules($dom,'username'); |
&Apache::lonnet::inst_userrules($dom,'username'); |
my %lt = &usercreation_types(); |
my %lt = &usercreation_types(); |
my %checked; |
my %checked; |
|
my @selfcreate; |
if (ref($settings) eq 'HASH') { |
if (ref($settings) eq 'HASH') { |
if (ref($settings->{'cancreate'}) eq 'HASH') { |
if (ref($settings->{'cancreate'}) eq 'HASH') { |
foreach my $item (@creators) { |
foreach my $item (@creators) { |
$checked{$item} = $settings->{'cancreate'}{$item}; |
$checked{$item} = $settings->{'cancreate'}{$item}; |
} |
} |
|
if (ref($settings->{'cancreate'}{'selfcreate'}) eq 'ARRAY') { |
|
@selfcreate = @{$settings->{'cancreate'}{'selfcreate'}}; |
|
} elsif ($settings->{'cancreate'}{'selfcreate'} ne '') { |
|
if ($settings->{'cancreate'}{'selfcreate'} eq 'any') { |
|
@selfcreate = ('email','login','sso'); |
|
} elsif ($settings->{'cancreate'}{'selfcreate'} ne 'none') { |
|
@selfcreate = ($settings->{'cancreate'}{'selfcreate'}); |
|
} |
|
} |
} elsif (ref($settings->{'cancreate'}) eq 'ARRAY') { |
} elsif (ref($settings->{'cancreate'}) eq 'ARRAY') { |
foreach my $item (@creators) { |
foreach my $item (@creators) { |
if (grep(/^\Q$item\E$/,@{$settings->{'cancreate'}})) { |
if (grep(/^\Q$item\E$/,@{$settings->{'cancreate'}})) { |
Line 1559 sub print_usercreation {
|
Line 1569 sub print_usercreation {
|
my $rownum = 0; |
my $rownum = 0; |
foreach my $item (@creators) { |
foreach my $item (@creators) { |
$rownum ++; |
$rownum ++; |
if ($checked{$item} eq '') { |
if ($item ne 'selfcreate') { |
if ($item eq 'selfcreate') { |
if ($checked{$item} eq '') { |
$checked{$item} = 'none'; |
|
} else { |
|
$checked{$item} = 'any'; |
$checked{$item} = 'any'; |
} |
} |
} |
} |
Line 1575 sub print_usercreation {
|
Line 1583 sub print_usercreation {
|
$datatable .= '<tr'.$css_class.'>'. |
$datatable .= '<tr'.$css_class.'>'. |
'<td><span class="LC_nobreak">'.$lt{$item}. |
'<td><span class="LC_nobreak">'.$lt{$item}. |
'</span></td><td align="right">'; |
'</span></td><td align="right">'; |
my @options = ('any'); |
my @options; |
if ($item eq 'selfcreate') { |
if ($item eq 'selfcreate') { |
push(@options,('email','login','sso')); |
push(@options,('email','login','sso')); |
} else { |
} else { |
|
@options = ('any'); |
if (ref($rules) eq 'HASH') { |
if (ref($rules) eq 'HASH') { |
if (keys(%{$rules}) > 0) { |
if (keys(%{$rules}) > 0) { |
push(@options,('official','unofficial')); |
push(@options,('official','unofficial')); |
} |
} |
} |
} |
|
push(@options,'none'); |
} |
} |
push(@options,'none'); |
|
foreach my $option (@options) { |
foreach my $option (@options) { |
|
my $type = 'radio'; |
my $check = ' '; |
my $check = ' '; |
if ($checked{$item} eq $option) { |
if ($item eq 'selfcreate') { |
$check = ' checked="checked" '; |
$type = 'checkbox'; |
|
if (grep(/^\Q$option\E$/,@selfcreate)) { |
|
$check = ' checked="checked" '; |
|
} |
|
} else { |
|
if ($checked{$item} eq $option) { |
|
$check = ' checked="checked" '; |
|
} |
} |
} |
$datatable .= '<span class="LC_nobreak"><label>'. |
$datatable .= '<span class="LC_nobreak"><label>'. |
'<input type="radio" name="can_createuser_'. |
'<input type="'.$type.'" name="can_createuser_'. |
$item.'" value="'.$option.'"'.$check.'/> '. |
$item.'" value="'.$option.'"'.$check.'/> '. |
$lt{$option}.'</label> </span>'; |
$lt{$option}.'</label> </span>'; |
} |
} |
Line 3640 sub modify_usercreation {
|
Line 3657 sub modify_usercreation {
|
my @email_rule = &Apache::loncommon::get_env_multiple('form.email_rule'); |
my @email_rule = &Apache::loncommon::get_env_multiple('form.email_rule'); |
my @contexts = ('author','course','selfcreate'); |
my @contexts = ('author','course','selfcreate'); |
foreach my $item(@contexts) { |
foreach my $item(@contexts) { |
$cancreate{$item} = $env{'form.can_createuser_'.$item}; |
|
if ($item eq 'selfcreate') { |
if ($item eq 'selfcreate') { |
|
@{$cancreate{$item}} = &Apache::loncommon::get_env_multiple('form.can_createuser_'.$item); |
my %domdefaults = &Apache::lonnet::get_domain_defaults($dom); |
my %domdefaults = &Apache::lonnet::get_domain_defaults($dom); |
if (!((($domdefaults{'auth_def'} =~/^krb/) && ($domdefaults{'auth_arg_def'} ne '')) || ($domdefaults{'auth_def'} eq 'localauth'))) { |
if (!((($domdefaults{'auth_def'} =~/^krb/) && ($domdefaults{'auth_arg_def'} ne '')) || ($domdefaults{'auth_def'} eq 'localauth'))) { |
if (($cancreate{$item} eq 'any') || ($cancreate{$item} eq 'login')) { |
if (ref($cancreate{$item}) eq 'ARRAY') { |
$warningmsg = &mt('Although account creation has been set to be available for institutional logins, currently default authentication in this domain has not been set to support this.').' '.&mt('You need to set the default authentication type to Kerberos 4 or 5 (with a Kerberos domain specified), or to Local authentication, if the localauth module has been customized in your domain to authenticate institutional logins.'); |
if (grep(/^login$/,@{$cancreate{$item}})) { |
|
$warningmsg = &mt('Although account creation has been set to be available for institutional logins, currently default authentication in this domain has not been set to support this.').' '.&mt('You need to set the default authentication type to Kerberos 4 or 5 (with a Kerberos domain specified), or to Local authentication, if the localauth module has been customized in your domain to authenticate institutional logins.'); |
|
} |
} |
} |
} |
} |
|
} else { |
|
$cancreate{$item} = $env{'form.can_createuser_'.$item}; |
} |
} |
} |
} |
if (ref($curr_usercreation{'cancreate'}) eq 'HASH') { |
if (ref($curr_usercreation{'cancreate'}) eq 'HASH') { |
foreach my $item (@contexts) { |
foreach my $item (@contexts) { |
if ($curr_usercreation{'cancreate'}{$item} ne $cancreate{$item}) { |
if ($item eq 'selfcreate') { |
push(@{$changes{'cancreate'}},$item); |
if (ref($curr_usercreation{'cancreate'}{$item}) eq 'ARRAY') { |
} |
foreach my $curr (@{$curr_usercreation{'cancreate'}{$item}}) { |
|
if (!grep(/^$curr$/,@{$cancreate{$item}})) { |
|
if (!grep(/^$item$/,@{$changes{'cancreate'}})) { |
|
push(@{$changes{'cancreate'}},$item); |
|
} |
|
} |
|
} |
|
} else { |
|
if ($curr_usercreation{'cancreate'}{$item} eq '') { |
|
if (@{$cancreate{$item}} > 0) { |
|
if (!grep(/^$item$/,@{$changes{'cancreate'}})) { |
|
push(@{$changes{'cancreate'}},$item); |
|
} |
|
} |
|
} else { |
|
if ($curr_usercreation{'cancreate'}{$item} eq 'any') { |
|
if (@{$cancreate{$item}} < 3) { |
|
if (!grep(/^$item$/,@{$changes{'cancreate'}})) { |
|
push(@{$changes{'cancreate'}},$item); |
|
} |
|
} |
|
} elsif ($curr_usercreation{'cancreate'}{$item} eq 'none') { |
|
if (@{$cancreate{$item}} > 0) { |
|
if (!grep(/^$item$/,@{$changes{'cancreate'}})) { |
|
push(@{$changes{'cancreate'}},$item); |
|
} |
|
} |
|
} elsif (!grep(/^$curr_usercreation{'cancreate'}{$item}$/,@{$cancreate{$item}})) { |
|
if (!grep(/^$item$/,@{$changes{'cancreate'}})) { |
|
push(@{$changes{'cancreate'}},$item); |
|
} |
|
} |
|
} |
|
} |
|
if (!grep(/^$item$/,@{$changes{'cancreate'}})) { |
|
foreach my $type (@{$cancreate{$item}}) { |
|
if (ref($curr_usercreation{'cancreate'}{$item}) eq 'ARRAY') { |
|
if (!grep(/^$type$/,@{$curr_usercreation{'cancreate'}{$item}})) { |
|
if (!grep(/^$item$/,@{$changes{'cancreate'}})) { |
|
push(@{$changes{'cancreate'}},$item); |
|
} |
|
} |
|
} elsif (($curr_usercreation{'cancreate'}{$item} ne 'any') && |
|
($curr_usercreation{'cancreate'}{$item} ne 'none')) { |
|
if ($curr_usercreation{'cancreate'}{$item} ne $type) { |
|
if (!grep(/^$item$/,@{$changes{'cancreate'}})) { |
|
push(@{$changes{'cancreate'}},$item); |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} else { |
|
if ($curr_usercreation{'cancreate'}{$item} ne $cancreate{$item}) { |
|
push(@{$changes{'cancreate'}},$item); |
|
} |
|
} |
} |
} |
} elsif (ref($curr_usercreation{'cancreate'}) eq 'ARRAY') { |
} elsif (ref($curr_usercreation{'cancreate'}) eq 'ARRAY') { |
foreach my $item (@contexts) { |
foreach my $item (@contexts) { |
Line 3761 sub modify_usercreation {
|
Line 3838 sub modify_usercreation {
|
|
|
my $putresult = &Apache::lonnet::put_dom('configuration',\%usercreation_hash, |
my $putresult = &Apache::lonnet::put_dom('configuration',\%usercreation_hash, |
$dom); |
$dom); |
|
|
|
my %selfcreatetypes = ( |
|
sso => 'users authenticated by institutional single sign on', |
|
login => 'users authenticated by institutional log-in', |
|
email => 'users who provide a valid e-mail address for use as the username', |
|
); |
if ($putresult eq 'ok') { |
if ($putresult eq 'ok') { |
if (keys(%changes) > 0) { |
if (keys(%changes) > 0) { |
$resulttext = &mt('Changes made:').'<ul>'; |
$resulttext = &mt('Changes made:').'<ul>'; |
Line 3769 sub modify_usercreation {
|
Line 3852 sub modify_usercreation {
|
foreach my $type (@{$changes{'cancreate'}}) { |
foreach my $type (@{$changes{'cancreate'}}) { |
my $chgtext = $lt{$type}.', '; |
my $chgtext = $lt{$type}.', '; |
if ($type eq 'selfcreate') { |
if ($type eq 'selfcreate') { |
if ($cancreate{$type} eq 'none') { |
if (@{$cancreate{$type}} == 0) { |
$chgtext .= &mt('creation of a new user account is not permitted.'); |
$chgtext .= &mt('creation of a new user account is not permitted.'); |
} elsif ($cancreate{$type} eq 'any') { |
} else { |
$chgtext .= &mt('creation of a new account is permitted for users authenticated by institutional log-in and SSO, and also for e-mail addresses used as usernames.'); |
$chgtext .= &mt('creation of a new account is permitted for:<ul>'); |
} elsif ($cancreate{$type} eq 'login') { |
foreach my $case (@{$cancreate{$type}}) { |
$chgtext .= &mt('creation of a new account is only permitted for users authenticated by institutional log-in.'); |
$chgtext .= '<li>'.$selfcreatetypes{$case}.'</li>'; |
} elsif ($cancreate{$type} eq 'sso') { |
} |
$chgtext .= &mt('creation of a new account is only permitted for users authenticated by institutional single sign on.'); |
$chgtext .= '</ul>'; |
} elsif ($cancreate{$type} eq 'email') { |
|
$chgtext .= &mt('creation of a new account is only permitted for users who provide a valid e-mail address for use as the username.'); |
|
} |
} |
} else { |
} else { |
if ($cancreate{$type} eq 'none') { |
if ($cancreate{$type} eq 'none') { |