version 1.197, 2007/12/01 03:49:08
|
version 1.263, 2008/11/18 19:14:22
|
Line 33 package Apache::loncreateuser;
|
Line 33 package Apache::loncreateuser;
|
|
|
=head1 NAME |
=head1 NAME |
|
|
Apache::loncreateuser - handler to create users and custom roles |
Apache::loncreateuser.pm |
|
|
=head1 SYNOPSIS |
=head1 SYNOPSIS |
|
|
Apache::loncreateuser provides an Apache handler for creating users, |
Handler to create users and custom roles |
|
|
|
Provides an Apache handler for creating users, |
editing their login parameters, roles, and removing roles, and |
editing their login parameters, roles, and removing roles, and |
also creating and assigning custom roles. |
also creating and assigning custom roles. |
|
|
Line 76 my $authformfsys;
|
Line 78 my $authformfsys;
|
my $authformloc; |
my $authformloc; |
|
|
sub initialize_authen_forms { |
sub initialize_authen_forms { |
my ($dom,$curr_authtype) = @_; |
my ($dom,$formname,$curr_authtype,$mode) = @_; |
my ($krbdefdom)=( $ENV{'SERVER_NAME'}=~/(\w+\.\w+)$/); |
my ($krbdef,$krbdefdom) = &Apache::loncommon::get_kerberos_defaults($dom); |
$krbdefdom= uc($krbdefdom); |
my %param = ( formname => $formname, |
my %param = ( formname => 'document.cu', |
|
kerb_def_dom => $krbdefdom, |
kerb_def_dom => $krbdefdom, |
|
kerb_def_auth => $krbdef, |
domain => $dom, |
domain => $dom, |
); |
); |
my %abv_auth = &auth_abbrev(); |
my %abv_auth = &auth_abbrev(); |
if ($curr_authtype =~ /^(krb4|krb5|internal|localauth|unix):$/) { |
if ($curr_authtype =~ /^(krb4|krb5|internal|localauth|unix):(.*)$/) { |
my $long_auth = $1; |
my $long_auth = $1; |
|
my $curr_autharg = $2; |
my %abv_auth = &auth_abbrev(); |
my %abv_auth = &auth_abbrev(); |
$param{'curr_authtype'} = $abv_auth{$long_auth}; |
$param{'curr_authtype'} = $abv_auth{$long_auth}; |
if ($long_auth =~ /^krb(4|5)$/) { |
if ($long_auth =~ /^krb(4|5)$/) { |
$param{'curr_kerb_ver'} = $1; |
$param{'curr_kerb_ver'} = $1; |
|
$param{'curr_autharg'} = $curr_autharg; |
|
} |
|
if ($mode eq 'modifyuser') { |
|
$param{'mode'} = $mode; |
} |
} |
} |
} |
# no longer static due to configurable kerberos defaults |
$loginscript = &Apache::loncommon::authform_header(%param); |
# $loginscript = &Apache::loncommon::authform_header(%param); |
$authformkrb = &Apache::loncommon::authform_kerberos(%param); |
$authformnop = &Apache::loncommon::authform_nochange(%param); |
$authformnop = &Apache::loncommon::authform_nochange(%param); |
# no longer static due to configurable kerberos defaults |
|
# $authformkrb = &Apache::loncommon::authform_kerberos(%param); |
|
$authformint = &Apache::loncommon::authform_internal(%param); |
$authformint = &Apache::loncommon::authform_internal(%param); |
$authformfsys = &Apache::loncommon::authform_filesystem(%param); |
$authformfsys = &Apache::loncommon::authform_filesystem(%param); |
$authformloc = &Apache::loncommon::authform_local(%param); |
$authformloc = &Apache::loncommon::authform_local(%param); |
Line 112 sub auth_abbrev {
|
Line 117 sub auth_abbrev {
|
return %abv_auth; |
return %abv_auth; |
} |
} |
|
|
# ==================================================== Figure out author access |
|
|
|
sub authorpriv { |
|
my ($auname,$audom)=@_; |
|
unless ((&Apache::lonnet::allowed('cca',$audom.'/'.$auname)) |
|
|| (&Apache::lonnet::allowed('caa',$audom.'/'.$auname))) { return ''; } |
|
return 1; |
|
} |
|
|
|
# ==================================================== |
# ==================================================== |
|
|
sub portfolio_quota { |
sub portfolio_quota { |
Line 162 END_SCRIPT
|
Line 158 END_SCRIPT
|
$custom_off = ' '; |
$custom_off = ' '; |
$showquota = $currquota; |
$showquota = $currquota; |
if ($longinsttype eq '') { |
if ($longinsttype eq '') { |
$defaultinfo = &mt('For this user, the default quota would be [_1] |
$defaultinfo = &mt('For this user, the default quota would be [_1]' |
Mb.',$defquota); |
.' Mb.',$defquota); |
} else { |
} else { |
$defaultinfo = &mt("For this user, the default quota would be [_1] |
$defaultinfo = &mt("For this user, the default quota would be [_1]". |
Mb, as determined by the user's institutional |
" Mb, as determined by the user's institutional". |
affiliation ([_2]).",$defquota,$longinsttype); |
" affiliation ([_2]).",$defquota,$longinsttype); |
} |
} |
} else { |
} else { |
if ($longinsttype eq '') { |
if ($longinsttype eq '') { |
$defaultinfo = &mt('For this user, the default quota is [_1] |
$defaultinfo = &mt('For this user, the default quota is [_1]' |
Mb.',$defquota); |
.' Mb.',$defquota); |
} else { |
} else { |
$defaultinfo = &mt("For this user, the default quota of [_1] |
$defaultinfo = &mt("For this user, the default quota of [_1]". |
Mb, is determined by the user's institutional |
" Mb, is determined by the user's institutional". |
affiliation ([_2]).",$defquota,$longinsttype); |
" affiliation ([_2]).",$defquota,$longinsttype); |
} |
} |
} |
} |
my $output = $quota_javascript. |
my $output = $quota_javascript. |
Line 206 END_SCRIPT
|
Line 202 END_SCRIPT
|
# =================================================================== Phase one |
# =================================================================== Phase one |
|
|
sub print_username_entry_form { |
sub print_username_entry_form { |
my ($r,$response,$srch,$forcenewuser) = @_; |
my ($r,$context,$response,$srch,$forcenewuser) = @_; |
my $defdom=$env{'request.role.domain'}; |
my $defdom=$env{'request.role.domain'}; |
my $formtoset = 'crtuser'; |
my $formtoset = 'crtuser'; |
if (exists($env{'form.startrolename'})) { |
if (exists($env{'form.startrolename'})) { |
$formtoset = 'docustom'; |
$formtoset = 'docustom'; |
$env{'form.rolename'} = $env{'form.startrolename'}; |
$env{'form.rolename'} = $env{'form.startrolename'}; |
|
} elsif ($env{'form.origform'} eq 'crtusername') { |
|
$formtoset = $env{'form.origform'}; |
} |
} |
|
|
my ($jsback,$elements) = &crumb_utilities(); |
my ($jsback,$elements) = &crumb_utilities(); |
Line 224 sub print_username_entry_form {
|
Line 222 sub print_username_entry_form {
|
my %loaditems = ( |
my %loaditems = ( |
'onload' => "javascript:setFormElements(document.$formtoset)", |
'onload' => "javascript:setFormElements(document.$formtoset)", |
); |
); |
|
my %breadcrumb_text = &singleuser_breadcrumb(); |
my $start_page = |
my $start_page = |
&Apache::loncommon::start_page('User Management', |
&Apache::loncommon::start_page('User Management', |
$jscript,{'add_entries' => \%loaditems,}); |
$jscript,{'add_entries' => \%loaditems,}); |
if ($env{'form.action'} eq 'singleuser') { |
if ($env{'form.action'} eq 'custom') { |
&Apache::lonhtmlcommon::add_breadcrumb |
&Apache::lonhtmlcommon::add_breadcrumb |
({href=>"javascript:backPage(document.crtuser)", |
({href=>"javascript:backPage(document.crtuser)", |
text=>"Single user search", |
text=>"Pick custom role",}); |
faq=>282,bug=>'Instructor Interface',}); |
} else { |
} elsif ($env{'form.action'} eq 'custom') { |
|
&Apache::lonhtmlcommon::add_breadcrumb |
&Apache::lonhtmlcommon::add_breadcrumb |
({href=>"javascript:backPage(document.crtuser)", |
({href=>"javascript:backPage(document.crtuser)", |
text=>"Pick custom role",}); |
text=>$breadcrumb_text{'search'}, |
|
faq=>282,bug=>'Instructor Interface',}); |
|
} |
|
my $helpitem = 'Course_Change_Privileges'; |
|
if ($env{'form.action'} eq 'custom') { |
|
$helpitem = 'Course_Editing_Custom_Roles'; |
|
} elsif ($env{'form.action'} eq 'singlestudent') { |
|
$helpitem = 'Course_Add_Student'; |
} |
} |
my $crumbs = &Apache::lonhtmlcommon::breadcrumbs('User Management'); |
my $crumbs = &Apache::lonhtmlcommon::breadcrumbs('User Management', |
|
$helpitem); |
my %existingroles=&Apache::lonuserutils::my_custom_roles(); |
my %existingroles=&Apache::lonuserutils::my_custom_roles(); |
my $choice=&Apache::loncommon::select_form('make new role','rolename', |
my $choice=&Apache::loncommon::select_form('make new role','rolename', |
('make new role' => 'Generate new role ...',%existingroles)); |
('make new role' => 'Generate new role ...',%existingroles)); |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'srch' => "User Search", |
'srst' => 'Search for a user and enroll as a student', |
or => "or", |
'srad' => 'Search for a user and modify/add user information or roles', |
'usr' => "Username", |
'usr' => "Username", |
'dom' => "Domain", |
'dom' => "Domain", |
'ecrp' => "Edit Custom Role Privileges", |
'ecrp' => "Edit Custom Role Privileges", |
'nr' => "Name of Role", |
'nr' => "Name of Role", |
'cre' => "Custom Role Editor", |
'cre' => "Custom Role Editor", |
'mod' => "to add/modify roles", |
|
); |
); |
my $help = &Apache::loncommon::help_open_menu(undef,undef,282,'Instructor Interface'); |
|
my $helpsiur=&Apache::loncommon::help_open_topic('Course_Change_Privileges'); |
|
my $helpecpr=&Apache::loncommon::help_open_topic('Course_Editing_Custom_Roles'); |
|
my $sellink=&Apache::loncommon::selectstudent_link('crtuser','srchterm','srchdomain'); |
|
if ($sellink) { |
|
$sellink = "$lt{'or'} ".$sellink; |
|
} |
|
$r->print($start_page."\n".$crumbs); |
$r->print($start_page."\n".$crumbs); |
if ($env{'form.action'} eq 'singleuser') { |
if ($env{'form.action'} eq 'custom') { |
$r->print(" |
|
<h3>$lt{'srch'} $sellink $lt{'mod'}$helpsiur</h3> |
|
$response"); |
|
$r->print(&entry_form($defdom,$srch,$forcenewuser)); |
|
} elsif ($env{'form.action'} eq 'custom') { |
|
if (&Apache::lonnet::allowed('mcr','/')) { |
if (&Apache::lonnet::allowed('mcr','/')) { |
$r->print(<<ENDCUSTOM); |
$r->print(<<ENDCUSTOM); |
<form action="/adm/createuser" method="post" name="docustom"> |
<form action="/adm/createuser" method="post" name="docustom"> |
<input type="hidden" name="action" value="$env{'form.action'}" /> |
<input type="hidden" name="action" value="$env{'form.action'}" /> |
<input type="hidden" name="phase" value="selected_custom_edit" /> |
<input type="hidden" name="phase" value="selected_custom_edit" /> |
<h3>$lt{'ecrp'}$helpecpr</h3> |
<h3>$lt{'ecrp'}</h3> |
$lt{'nr'}: $choice <input type="text" size="15" name="newrolename" /><br /> |
$lt{'nr'}: $choice <input type="text" size="15" name="newrolename" /><br /> |
<input name="customeditor" type="submit" value="$lt{'cre'}" /> |
<input name="customeditor" type="submit" value="$lt{'cre'}" /> |
</form> |
</form> |
ENDCUSTOM |
ENDCUSTOM |
} |
} |
|
} else { |
|
my $actiontext = $lt{'srad'}; |
|
if ($env{'form.action'} eq 'singlestudent') { |
|
$actiontext = $lt{'srst'}; |
|
} |
|
$r->print(" |
|
<h3>$actiontext</h3>"); |
|
if ($env{'form.origform'} ne 'crtusername') { |
|
$r->print("\n".$response); |
|
} |
|
$r->print(&entry_form($defdom,$srch,$forcenewuser,$context,$response)); |
} |
} |
$r->print(&Apache::loncommon::end_page()); |
$r->print(&Apache::loncommon::end_page()); |
} |
} |
|
|
sub entry_form { |
sub entry_form { |
my ($dom,$srch,$forcenewuser) = @_; |
my ($dom,$srch,$forcenewuser,$context,$responsemsg) = @_; |
|
my %domconf = &Apache::lonnet::get_dom('configuration',['usercreation'],$dom); |
|
my ($usertype,$inexact); |
|
if (ref($srch) eq 'HASH') { |
|
if (($srch->{'srchin'} eq 'dom') && |
|
($srch->{'srchby'} eq 'uname') && |
|
($srch->{'srchtype'} eq 'exact') && |
|
($srch->{'srchdomain'} ne '') && |
|
($srch->{'srchterm'} ne '')) { |
|
my ($rules,$ruleorder) = |
|
&Apache::lonnet::inst_userrules($srch->{'srchdomain'},'username'); |
|
$usertype = &Apache::lonuserutils::check_usertype($srch->{'srchdomain'},$srch->{'srchterm'},$rules); |
|
} else { |
|
$inexact = 1; |
|
} |
|
} |
|
my $cancreate = |
|
&Apache::lonuserutils::can_create_user($dom,$context,$usertype); |
my $userpicker = |
my $userpicker = |
&Apache::loncommon::user_picker($dom,$srch,$forcenewuser, |
&Apache::loncommon::user_picker($dom,$srch,$forcenewuser, |
'document.crtuser'); |
'document.crtuser',$cancreate,$usertype); |
my $srchbutton = &mt('Search'); |
my $srchbutton = &mt('Search'); |
my $output = <<"ENDDOCUMENT"; |
if ($env{'form.action'} eq 'singlestudent') { |
|
$srchbutton = &mt('Search and Enroll'); |
|
} elsif ($cancreate && $responsemsg ne '' && $inexact) { |
|
$srchbutton = &mt('Search or Add New User'); |
|
} |
|
my $output = <<"ENDBLOCK"; |
<form action="/adm/createuser" method="post" name="crtuser"> |
<form action="/adm/createuser" method="post" name="crtuser"> |
<input type="hidden" name="action" value="$env{'form.action'}" /> |
<input type="hidden" name="action" value="$env{'form.action'}" /> |
<input type="hidden" name="phase" value="get_user_info" /> |
<input type="hidden" name="phase" value="get_user_info" /> |
$userpicker |
$userpicker |
<input name="userrole" type="button" value="$srchbutton" onclick="javascript:validateEntry(document.crtuser)" /> |
<input name="userrole" type="button" value="$srchbutton" onclick="javascript:validateEntry(document.crtuser)" /> |
</form> |
</form> |
|
ENDBLOCK |
|
if ($env{'form.phase'} eq '') { |
|
my $defdom=$env{'request.role.domain'}; |
|
my $domform = &Apache::loncommon::select_dom_form($defdom,'srchdomain'); |
|
my %lt=&Apache::lonlocal::texthash( |
|
'enro' => 'Enroll one student', |
|
'admo' => 'Add/modify a single user', |
|
'crea' => 'create new user if required', |
|
'uskn' => "username is known", |
|
'crnu' => 'Create a new user', |
|
'usr' => 'Username', |
|
'dom' => 'in domain', |
|
'enrl' => 'Enroll', |
|
'cram' => 'Create/Modify user', |
|
); |
|
my $sellink=&Apache::loncommon::selectstudent_link('crtusername','srchterm','srchdomain'); |
|
my ($title,$buttontext,$showresponse); |
|
if ($env{'form.action'} eq 'singlestudent') { |
|
$title = $lt{'enro'}; |
|
$buttontext = $lt{'enrl'}; |
|
} else { |
|
$title = $lt{'admo'}; |
|
$buttontext = $lt{'cram'}; |
|
} |
|
if ($cancreate) { |
|
$title .= ' <span class="LC_cusr_subheading">('.$lt{'crea'}.')</span>'; |
|
} else { |
|
$title .= ' <span class="LC_cusr_subheading">('.$lt{'uskn'}.')</span>'; |
|
} |
|
if ($env{'form.origform'} eq 'crtusername') { |
|
$showresponse = $responsemsg; |
|
} |
|
$output .= <<"ENDDOCUMENT"; |
|
<br /> |
|
<form action="/adm/createuser" method="post" name="crtusername"> |
|
<input type="hidden" name="action" value="$env{'form.action'}" /> |
|
<input type="hidden" name="phase" value="createnewuser" /> |
|
<input type="hidden" name="srchtype" value="exact" /> |
|
<input type="hidden" name="srchby" value="uname" /> |
|
<input type="hidden" name="srchin" value="dom" /> |
|
<input type="hidden" name="forcenewuser" value="1" /> |
|
<input type="hidden" name="origform" value="crtusername" /> |
|
<h3>$title</h3> |
|
$showresponse |
|
<table> |
|
<tr> |
|
<td>$lt{'usr'}:</td> |
|
<td><input type="text" size="15" name="srchterm" /></td> |
|
<td> $lt{'dom'}:</td><td>$domform</td> |
|
<td> $sellink </td> |
|
<td> <input name="userrole" type="submit" value="$buttontext" /></td> |
|
</tr> |
|
</table> |
|
</form> |
ENDDOCUMENT |
ENDDOCUMENT |
|
} |
return $output; |
return $output; |
} |
} |
|
|
Line 326 END
|
Line 407 END
|
|
|
# =================================================================== Phase two |
# =================================================================== Phase two |
sub print_user_selection_page { |
sub print_user_selection_page { |
my ($r,$response,$srch,$srch_results,$operation,$srcharray) = @_; |
my ($r,$response,$srch,$srch_results,$srcharray,$context) = @_; |
my @fields = ('username','domain','lastname','firstname','permanentemail'); |
my @fields = ('username','domain','lastname','firstname','permanentemail'); |
my $sortby = $env{'form.sortby'}; |
my $sortby = $env{'form.sortby'}; |
|
|
Line 360 ENDSCRIPT
|
Line 441 ENDSCRIPT
|
'firstname' => "first name", |
'firstname' => "first name", |
'permanentemail' => "permanent e-mail", |
'permanentemail' => "permanent e-mail", |
); |
); |
if ($operation eq 'createuser') { |
$r->print(&Apache::loncommon::start_page('User Management',$jscript)); |
$r->print(&Apache::loncommon::start_page('User Management',$jscript)); |
|
&Apache::lonhtmlcommon::add_breadcrumb |
my %breadcrumb_text = &singleuser_breadcrumb(); |
({href=>"javascript:backPage(document.usersrchform,'','')", |
&Apache::lonhtmlcommon::add_breadcrumb |
text=>"Create/modify user", |
({href=>"javascript:backPage(document.usersrchform,'','')", |
faq=>282,bug=>'Instructor Interface',}, |
text=>$breadcrumb_text{'search'}, |
{href=>"javascript:backPage(document.usersrchform,'get_user_info','select')", |
faq=>282,bug=>'Instructor Interface',}, |
text=>"Select User", |
{href=>"javascript:backPage(document.usersrchform,'get_user_info','select')", |
faq=>282,bug=>'Instructor Interface',}); |
text=>$breadcrumb_text{'userpicked'}, |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management')); |
faq=>282,bug=>'Instructor Interface',}); |
|
if ($env{'form.action'} eq 'singleuser') { |
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management', |
|
'Course_Change_Privileges')); |
$r->print("<b>$lt{'usrch'}</b><br />"); |
$r->print("<b>$lt{'usrch'}</b><br />"); |
$r->print(&entry_form($srch->{'srchdomain'},$srch)); |
$r->print(&entry_form($srch->{'srchdomain'},$srch,undef,$context)); |
$r->print('<h3>'.$lt{'usel'}.'</h3>'); |
$r->print('<h3>'.$lt{'usel'}.'</h3>'); |
} else { |
} elsif ($env{'form.action'} eq 'singlestudent') { |
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management', |
|
'Course_Add_Student')); |
$r->print($jscript."<b>$lt{'stusrch'}</b><br />"); |
$r->print($jscript."<b>$lt{'stusrch'}</b><br />"); |
$r->print(&Apache::londropadd::single_user_entry_form($srch->{'srchdomain'},$srch)); |
$r->print(&entry_form($srch->{'srchdomain'},$srch,undef,$context)); |
$r->print('</form><h3>'.$lt{'stusel'}.'</h3>'); |
$r->print('</form><h3>'.$lt{'stusel'}.'</h3>'); |
} |
} |
$r->print('<form name="usersrchform" method="post">'. |
$r->print('<form name="usersrchform" method="post">'. |
Line 421 ENDSCRIPT
|
Line 507 ENDSCRIPT
|
' <input type="hidden" name="seludom" value="" />'."\n". |
' <input type="hidden" name="seludom" value="" />'."\n". |
' <input type="hidden" name="currstate" value="select" />'."\n". |
' <input type="hidden" name="currstate" value="select" />'."\n". |
' <input type="hidden" name="phase" value="get_user_info" />'."\n". |
' <input type="hidden" name="phase" value="get_user_info" />'."\n". |
' <input type="hidden" name="action" value="singleuser" />'."\n"); |
' <input type="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n"); |
$r->print($response); |
$r->print($response.'</form>'.&Apache::loncommon::end_page()); |
if ($operation eq 'createuser') { |
|
$r->print('</form>'.&Apache::loncommon::end_page()); |
|
} else { |
|
$r->print('<input type="hidden" name="action" value="enrollstudent" />'."\n". |
|
'<input type="hidden" name="state" value="gotusername" />'."\n"); |
|
} |
|
} |
} |
|
|
sub print_user_query_page { |
sub print_user_query_page { |
Line 440 sub print_user_query_page {
|
Line 520 sub print_user_query_page {
|
} |
} |
|
|
sub print_user_modification_page { |
sub print_user_modification_page { |
my ($r,$ccuname,$ccdomain,$srch,$response,$context) = @_; |
my ($r,$ccuname,$ccdomain,$srch,$response,$context,$permission) = @_; |
if (($ccuname eq '') || ($ccdomain eq '')) { |
if (($ccuname eq '') || ($ccdomain eq '')) { |
my $usermsg = &mt('No username and/or domain provided.'); |
my $usermsg = &mt('No username and/or domain provided.'); |
&print_username_entry_form($r,$usermsg); |
$env{'form.phase'} = ''; |
|
&print_username_entry_form($r,$context,$usermsg); |
return; |
return; |
} |
} |
|
my ($form,$formname); |
|
if ($env{'form.action'} eq 'singlestudent') { |
|
$form = 'document.enrollstudent'; |
|
$formname = 'enrollstudent'; |
|
} else { |
|
$form = 'document.cu'; |
|
$formname = 'cu'; |
|
} |
my %abv_auth = &auth_abbrev(); |
my %abv_auth = &auth_abbrev(); |
my ($curr_authtype,%rulematch,%inst_results,$curr_kerb_ver,$newuser, |
my (%rulematch,%inst_results,$newuser,%alerts,%curr_rules,%got_rules); |
%alerts,%curr_rules,%got_rules); |
|
my $uhome=&Apache::lonnet::homeserver($ccuname,$ccdomain); |
my $uhome=&Apache::lonnet::homeserver($ccuname,$ccdomain); |
if ($uhome eq 'no_host') { |
if ($uhome eq 'no_host') { |
|
my $usertype; |
|
my ($rules,$ruleorder) = |
|
&Apache::lonnet::inst_userrules($ccdomain,'username'); |
|
$usertype = |
|
&Apache::lonuserutils::check_usertype($ccdomain,$ccuname,$rules); |
|
my $cancreate = |
|
&Apache::lonuserutils::can_create_user($ccdomain,$context, |
|
$usertype); |
|
if (!$cancreate) { |
|
my $helplink = ' href="javascript:helpMenu('."'display'".')"'; |
|
my %usertypetext = ( |
|
official => 'institutional', |
|
unofficial => 'non-institutional', |
|
); |
|
my $response; |
|
if ($env{'form.origform'} eq 'crtusername') { |
|
$response = '<span class="LC_warning">'.&mt('No match was found for the username ([_1]) in LON-CAPA domain: [_2]',$ccuname,$ccdomain). |
|
'</span><br />'; |
|
} |
|
$response .= '<span class="LC_warning">'.&mt("You are not authorized to create new $usertypetext{$usertype} users in this domain.").' '.&mt('Contact the <a[_1]>helpdesk</a> for assistance.',$helplink).'</span><br /><br />'; |
|
$env{'form.phase'} = ''; |
|
&print_username_entry_form($r,$context,$response); |
|
return; |
|
} |
$newuser = 1; |
$newuser = 1; |
my $checkhash; |
my $checkhash; |
my $checks = { 'username' => 1 }; |
my $checks = { 'username' => 1 }; |
Line 471 sub print_user_modification_page {
|
Line 583 sub print_user_modification_page {
|
$domdesc,$curr_rules{$ccdomain}{'username'}, |
$domdesc,$curr_rules{$ccdomain}{'username'}, |
'username'); |
'username'); |
} |
} |
&print_username_entry_form($r,$userchkmsg); |
$env{'form.phase'} = ''; |
|
&print_username_entry_form($r,$context,$userchkmsg); |
return; |
return; |
} |
} |
} |
} |
} |
} |
} else { |
} else { |
$newuser = 0; |
$newuser = 0; |
my $currentauth = |
|
&Apache::lonnet::queryauthenticate($ccuname,$ccdomain); |
|
if ($currentauth =~ /^(krb4|krb5|unix|internal|localauth):/) { |
|
$curr_authtype = $abv_auth{$1}; |
|
if ($currentauth =~ /^krb(4|5)/) { |
|
$curr_kerb_ver = $1; |
|
} |
|
} |
|
} |
} |
if ($response) { |
if ($response) { |
$response = '<br />'.$response |
$response = '<br />'.$response; |
} |
} |
my $defdom=$env{'request.role.domain'}; |
|
|
|
my ($krbdef,$krbdefdom) = |
|
&Apache::loncommon::get_kerberos_defaults($defdom); |
|
|
|
my %param = ( formname => 'document.cu', |
|
kerb_def_dom => $krbdefdom, |
|
kerb_def_auth => $krbdef, |
|
curr_authtype => $curr_authtype, |
|
curr_kerb_ver => $curr_kerb_ver, |
|
domain => $ccdomain, |
|
); |
|
$loginscript = &Apache::loncommon::authform_header(%param); |
|
$authformkrb = &Apache::loncommon::authform_kerberos(%param); |
|
|
|
my $pjump_def = &Apache::lonhtmlcommon::pjump_javascript_definition(); |
my $pjump_def = &Apache::lonhtmlcommon::pjump_javascript_definition(); |
my $dc_setcourse_code = ''; |
my $dc_setcourse_code = ''; |
my $nondc_setsection_code = ''; |
my $nondc_setsection_code = ''; |
|
|
my %loaditem; |
my %loaditem; |
|
|
my $groupslist; |
my $groupslist = &Apache::lonuserutils::get_groupslist(); |
my %curr_groups = &Apache::longroup::coursegroups(); |
|
if (%curr_groups) { |
|
$groupslist = join('","',sort(keys(%curr_groups))); |
|
$groupslist = '"'.$groupslist.'"'; |
|
} |
|
|
|
if ($env{'request.role'} =~ m-^dc\./($match_domain)/$-) { |
|
my $dcdom = $1; |
|
$loaditem{'onload'} = "document.cu.coursedesc.value='';"; |
|
my @rolevals = ('st','ta','ep','in','cc'); |
|
my (@crsroles,@grproles); |
|
for (my $i=0; $i<@rolevals; $i++) { |
|
$crsroles[$i]=&Apache::lonnet::plaintext($rolevals[$i],'Course'); |
|
$grproles[$i]=&Apache::lonnet::plaintext($rolevals[$i],'Group'); |
|
} |
|
my $rolevalslist = join('","',@rolevals); |
|
my $crsrolenameslist = join('","',@crsroles); |
|
my $grprolenameslist = join('","',@grproles); |
|
my $pickcrsfirst = '<--'.&mt('Pick course first'); |
|
my $pickgrpfirst = '<--'.&mt('Pick group first'); |
|
$dc_setcourse_code = <<"ENDSCRIPT"; |
|
function setCourse() { |
|
var course = document.cu.dccourse.value; |
|
if (course != "") { |
|
if (document.cu.dcdomain.value != document.cu.origdom.value) { |
|
alert("You must select a course in the current domain"); |
|
return; |
|
} |
|
var userrole = document.cu.role.options[document.cu.role.selectedIndex].value |
|
var section=""; |
|
var numsections = 0; |
|
var newsecs = new Array(); |
|
for (var i=0; i<document.cu.currsec.length; i++) { |
|
if (document.cu.currsec.options[i].selected == true ) { |
|
if (document.cu.currsec.options[i].value != "" && document.cu.currsec.options[i].value != null) { |
|
if (numsections == 0) { |
|
section = document.cu.currsec.options[i].value |
|
numsections = 1; |
|
} |
|
else { |
|
section = section + "," + document.cu.currsec.options[i].value |
|
numsections ++; |
|
} |
|
} |
|
} |
|
} |
|
if (document.cu.newsec.value != "" && document.cu.newsec.value != null) { |
|
if (numsections == 0) { |
|
section = document.cu.newsec.value |
|
} |
|
else { |
|
section = section + "," + document.cu.newsec.value |
|
} |
|
newsecs = document.cu.newsec.value.split(/,/g); |
|
numsections = numsections + newsecs.length; |
|
} |
|
if ((userrole == 'st') && (numsections > 1)) { |
|
alert("In each course, each user may only have one student role at a time. You had selected "+numsections+" sections.\\nPlease modify your selections so they include no more than one section.") |
|
return; |
|
} |
|
for (var j=0; j<newsecs.length; j++) { |
|
if ((newsecs[j] == 'all') || (newsecs[j] == 'none')) { |
|
alert("'"+newsecs[j]+"' may not be used as the name for a section, as it is a reserved word.\\nPlease choose a different section name."); |
|
return; |
|
} |
|
if (document.cu.groups.value != '') { |
|
var groups = document.cu.groups.value.split(/,/g); |
|
for (var k=0; k<groups.length; k++) { |
|
if (newsecs[j] == groups[k]) { |
|
alert("'"+newsecs[j]+"' may not be used as the name for a section, as it is the name of a course group.\\nSection names and group names must be distinct. Please choose a different section name."); |
|
return; |
|
} |
|
} |
|
} |
|
} |
|
if ((userrole == 'cc') && (numsections > 0)) { |
|
alert("Section designations do not apply to Course Coordinator roles.\\nA course coordinator role will be added with access to all sections."); |
|
section = ""; |
|
} |
|
var coursename = "_$dcdom"+"_"+course+"_"+userrole |
|
var numcourse = getIndex(document.cu.dccourse); |
|
if (numcourse == "-1") { |
|
alert("There was a problem with your course selection"); |
|
return |
|
} |
|
else { |
|
document.cu.elements[numcourse].name = "act"+coursename; |
|
var numnewsec = getIndex(document.cu.newsec); |
|
if (numnewsec != "-1") { |
|
document.cu.elements[numnewsec].name = "sec"+coursename; |
|
document.cu.elements[numnewsec].value = section; |
|
} |
|
var numstart = getIndex(document.cu.start); |
|
if (numstart != "-1") { |
|
document.cu.elements[numstart].name = "start"+coursename; |
|
} |
|
var numend = getIndex(document.cu.end); |
|
if (numend != "-1") { |
|
document.cu.elements[numend].name = "end"+coursename |
|
} |
|
} |
|
} |
|
document.cu.submit(); |
|
} |
|
|
|
function getIndex(caller) { |
|
for (var i=0;i<document.cu.elements.length;i++) { |
|
if (document.cu.elements[i] == caller) { |
|
return i; |
|
} |
|
} |
|
return -1; |
|
} |
|
ENDSCRIPT |
|
} else { |
|
$nondc_setsection_code = <<"ENDSECCODE"; |
|
function setSections() { |
|
var re1 = /^currsec_/; |
|
var groups = new Array($groupslist); |
|
for (var i=0;i<document.cu.elements.length;i++) { |
|
var str = document.cu.elements[i].name; |
|
var checkcurr = str.match(re1); |
|
if (checkcurr != null) { |
|
if (document.cu.elements[i-1].checked == true) { |
|
var match = str.split('_'); |
|
var role = match[3]; |
|
if (role == 'cc') { |
|
alert("Section designations do not apply to Course Coordinator roles.\\nA course coordinator role will be added with access to all sections."); |
|
} |
|
else { |
|
var sections = ''; |
|
var numsec = 0; |
|
var sections; |
|
for (var j=0; j<document.cu.elements[i].length; j++) { |
|
if (document.cu.elements[i].options[j].selected == true ) { |
|
if (document.cu.elements[i].options[j].value != "") { |
|
if (numsec == 0) { |
|
if (document.cu.elements[i].options[j].value != "") { |
|
sections = document.cu.elements[i].options[j].value; |
|
numsec ++; |
|
} |
|
} |
|
else { |
|
sections = sections + "," + document.cu.elements[i].options[j].value |
|
numsec ++; |
|
} |
|
} |
|
} |
|
} |
|
if (numsec > 0) { |
|
if (document.cu.elements[i+1].value != "" && document.cu.elements[i+1].value != null) { |
|
sections = sections + "," + document.cu.elements[i+1].value; |
|
} |
|
} |
|
else { |
|
sections = document.cu.elements[i+1].value; |
|
} |
|
var newsecs = document.cu.elements[i+1].value; |
|
var numsplit; |
|
if (newsecs != null && newsecs != "") { |
|
numsplit = newsecs.split(/,/g); |
|
numsec = numsec + numsplit.length; |
|
} |
|
|
|
if ((role == 'st') && (numsec > 1)) { |
|
alert("In each course, each user may only have one student role at a time. You had selected "+numsec+" sections.\\nPlease modify your selections so they include no more than one section.") |
|
return; |
|
} |
|
else if (numsplit != null) { |
|
for (var j=0; j<numsplit.length; j++) { |
|
if ((numsplit[j] == 'all') || |
|
(numsplit[j] == 'none')) { |
|
alert("'"+numsplit[j]+"' may not be used as the name for a section, as it is a reserved word.\\nPlease choose a different section name."); |
|
return; |
|
} |
|
for (var k=0; k<groups.length; k++) { |
|
if (numsplit[j] == groups[k]) { |
|
alert("'"+numsplit[j]+"' may not be used as a section name, as it is the name of a course group.\\nSection names and group names must be distinct. Please choose a different section name."); |
|
return; |
|
} |
|
} |
|
} |
|
} |
|
document.cu.elements[i+2].value = sections; |
|
} |
|
} |
|
} |
|
} |
|
document.cu.submit(); |
|
} |
|
ENDSECCODE |
|
} |
|
my $js = &user_modification_js($pjump_def,$dc_setcourse_code, |
|
$nondc_setsection_code,$groupslist); |
|
|
|
my ($jsback,$elements) = &crumb_utilities(); |
my $js = &validation_javascript($context,$ccdomain,$pjump_def, |
my $javascript_validations; |
$groupslist,$newuser,$formname,\%loaditem); |
if ((&Apache::lonnet::allowed('mau',$ccdomain)) || ($uhome eq 'no_host')) { |
my $args = {'add_entries' => \%loaditem}; |
my ($krbdef,$krbdefdom) = |
if ($env{'form.popup'}) { |
&Apache::loncommon::get_kerberos_defaults($ccdomain); |
$args->{'no_nav_bar'} = 1; |
$javascript_validations = |
|
&Apache::lonuserutils::javascript_validations('auth',$krbdefdom,undef, |
|
undef,$ccdomain); |
|
} |
} |
$js .= "\n". |
|
'<script type="text/javascript">'."\n".$jsback."\n". |
|
$javascript_validations.'</script>'; |
|
my $start_page = |
my $start_page = |
&Apache::loncommon::start_page('User Management', |
&Apache::loncommon::start_page('User Management',$js,$args); |
$js,{'add_entries' => \%loaditem,}); |
my %breadcrumb_text = &singleuser_breadcrumb(); |
&Apache::lonhtmlcommon::add_breadcrumb |
&Apache::lonhtmlcommon::add_breadcrumb |
({href=>"javascript:backPage(document.cu)", |
({href=>"javascript:backPage($form)", |
text=>"Create/modify user", |
text=>$breadcrumb_text{'search'}, |
faq=>282,bug=>'Instructor Interface',}); |
faq=>282,bug=>'Instructor Interface',}); |
|
|
if ($env{'form.phase'} eq 'userpicked') { |
if ($env{'form.phase'} eq 'userpicked') { |
&Apache::lonhtmlcommon::add_breadcrumb |
&Apache::lonhtmlcommon::add_breadcrumb |
({href=>"javascript:backPage(document.cu,'get_user_info','select')", |
({href=>"javascript:backPage($form,'get_user_info','select')", |
text=>"Select a user", |
text=>$breadcrumb_text{'userpicked'}, |
faq=>282,bug=>'Instructor Interface',}); |
faq=>282,bug=>'Instructor Interface',}); |
} |
} |
&Apache::lonhtmlcommon::add_breadcrumb |
&Apache::lonhtmlcommon::add_breadcrumb |
({href=>"javascript:backPage(document.cu,'$env{'form.phase'}','modify')", |
({href=>"javascript:backPage($form,'$env{'form.phase'}','modify')", |
text=>"Set user role", |
text=>$breadcrumb_text{'modify'}, |
faq=>282,bug=>'Instructor Interface',}); |
faq=>282,bug=>'Instructor Interface',}); |
my $crumbs = &Apache::lonhtmlcommon::breadcrumbs('User Management'); |
my $helpitem = 'Course_Change_Privileges'; |
|
if ($env{'form.action'} eq 'singlestudent') { |
|
$helpitem = 'Course_Add_Student'; |
|
} |
|
my $crumbs = &Apache::lonhtmlcommon::breadcrumbs('User Management', |
|
$helpitem); |
|
|
my $forminfo =<<"ENDFORMINFO"; |
my $forminfo =<<"ENDFORMINFO"; |
<form action="/adm/createuser" method="post" name="cu"> |
<form action="/adm/createuser" method="post" name="$formname"> |
<input type="hidden" name="phase" value="update_user_data" /> |
<input type="hidden" name="phase" value="update_user_data" /> |
<input type="hidden" name="ccuname" value="$ccuname" /> |
<input type="hidden" name="ccuname" value="$ccuname" /> |
<input type="hidden" name="ccdomain" value="$ccdomain" /> |
<input type="hidden" name="ccdomain" value="$ccdomain" /> |
Line 754 ENDFORMINFO
|
Line 649 ENDFORMINFO
|
$inccourses{$1.'_'.$2}=1; |
$inccourses{$1.'_'.$2}=1; |
} |
} |
} |
} |
if ($uhome eq 'no_host') { |
if ($newuser) { |
my $portfolioform; |
my $portfolioform; |
if (&Apache::lonnet::allowed('mpq',$env{'request.role.domain'})) { |
if (&Apache::lonnet::allowed('mpq',$env{'request.role.domain'})) { |
# Current user has quota modification privileges |
# Current user has quota modification privileges |
$portfolioform = '<br />'.&portfolio_quota($ccuname,$ccdomain); |
$portfolioform = '<br />'.&portfolio_quota($ccuname,$ccdomain); |
} |
} |
&initialize_authen_forms($ccdomain); |
&initialize_authen_forms($ccdomain,$formname); |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'cnu' => 'Create New User', |
'cnu' => 'Create New User', |
|
'ast' => 'as a student', |
'ind' => 'in domain', |
'ind' => 'in domain', |
'lg' => 'Login Data', |
'lg' => 'Login Data', |
'hs' => "Home Server", |
'hs' => "Home Server", |
Line 776 $forminfo
|
Line 672 $forminfo
|
$loginscript |
$loginscript |
</script> |
</script> |
<input type='hidden' name='makeuser' value='1' /> |
<input type='hidden' name='makeuser' value='1' /> |
<h2>$lt{'cnu'} "$ccuname" $lt{'ind'} $ccdomain</h2> |
<h2>$lt{'cnu'} "$ccuname" $lt{'ind'} $ccdomain |
ENDTITLE |
ENDTITLE |
$r->print('<div class="LC_left_float">'. |
if ($env{'form.action'} eq 'singlestudent') { |
&personal_data_display($ccuname,$ccdomain,$newuser, |
$r->print(' ('.$lt{'ast'}.')'); |
%inst_results)); |
} |
|
$r->print('</h2>'."\n".'<div class="LC_left_float">'); |
|
my $personal_table = |
|
&personal_data_display($ccuname,$ccdomain,$newuser,$context, |
|
$inst_results{$ccuname.':'.$ccdomain}); |
|
$r->print($personal_table); |
my ($home_server_pick,$numlib) = |
my ($home_server_pick,$numlib) = |
&Apache::loncommon::home_server_form_item($ccdomain,'hserver', |
&Apache::loncommon::home_server_form_item($ccdomain,'hserver', |
'default','hide'); |
'default','hide'); |
Line 792 $lt{'hs'}: $home_server_pick
|
Line 693 $lt{'hs'}: $home_server_pick
|
} else { |
} else { |
$r->print($home_server_pick); |
$r->print($home_server_pick); |
} |
} |
if ($context eq 'domain') { |
|
$r->print(&Apache::lonuserutils::forceid_change()); |
|
} |
|
$r->print('</div>'."\n".'<div class="LC_left_float"><h3>'. |
$r->print('</div>'."\n".'<div class="LC_left_float"><h3>'. |
$lt{'lg'}.'</h3>'); |
$lt{'lg'}.'</h3>'); |
my ($fixedauth,$varauth,$authmsg); |
my ($fixedauth,$varauth,$authmsg); |
Line 845 ENDAUTH
|
Line 743 ENDAUTH
|
} else { |
} else { |
$r->print(&Apache::lonuserutils::set_login($ccdomain,$authformkrb,$authformint,$authformloc)); |
$r->print(&Apache::lonuserutils::set_login($ccdomain,$authformkrb,$authformint,$authformloc)); |
} |
} |
$r->print(<<ENDPORT); |
$r->print($portfolioform); |
$portfolioform |
if ($env{'form.action'} eq 'singlestudent') { |
</div><div class="LC_clear_float_footer"></div> |
$r->print(&date_sections_select($context,$newuser,$formname, |
ENDPORT |
$permission)); |
|
} |
|
$r->print('</div><div class="LC_clear_float_footer"></div>'); |
} else { # user already exists |
} else { # user already exists |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'cup' => "Modify existing user: ", |
'cup' => "Modify existing user: ", |
|
'ens' => "Enroll one student: ", |
'id' => "in domain", |
'id' => "in domain", |
); |
); |
$r->print(<<ENDCHANGEUSER); |
$r->print(<<ENDCHANGEUSER); |
$start_page |
$start_page |
$crumbs |
$crumbs |
$forminfo |
$forminfo |
<h2>$lt{'cup'} "$ccuname" $lt{'id'} "$ccdomain"</h2> |
<h2> |
ENDCHANGEUSER |
ENDCHANGEUSER |
$r->print('<div class="LC_left_float">'. |
if ($env{'form.action'} eq 'singlestudent') { |
&personal_data_display($ccuname,$ccdomain,$newuser, |
$r->print($lt{'ens'}); |
%inst_results). |
} else { |
'</div>'); |
$r->print($lt{'cup'}); |
my $user_auth_text = |
} |
&user_authentication($ccuname,$ccdomain,$krbdefdom,\%abv_auth); |
$r->print(' "'.$ccuname.'" '.$lt{'id'}.' "'.$ccdomain.'"</h2>'. |
|
"\n".'<div class="LC_left_float">'); |
|
my ($personal_table,$showforceid) = |
|
&personal_data_display($ccuname,$ccdomain,$newuser,$context, |
|
$inst_results{$ccuname.':'.$ccdomain}); |
|
$r->print($personal_table); |
|
if ($showforceid) { |
|
$r->print(&Apache::lonuserutils::forceid_change($context)); |
|
} |
|
$r->print('</div>'); |
|
my $user_auth_text = &user_authentication($ccuname,$ccdomain,$formname); |
my $user_quota_text; |
my $user_quota_text; |
if (&Apache::lonnet::allowed('mpq',$ccdomain)) { |
if (&Apache::lonnet::allowed('mpq',$ccdomain)) { |
# Current user has quota modification privileges |
# Current user has quota modification privileges |
Line 890 ENDNOPORTPRIV
|
Line 801 ENDNOPORTPRIV
|
if ($user_quota_text ne '') { |
if ($user_quota_text ne '') { |
$r->print($user_quota_text); |
$r->print($user_quota_text); |
} |
} |
$r->print('</div>'); |
if ($env{'form.action'} eq 'singlestudent') { |
|
$r->print(&date_sections_select($context,$newuser,$formname)); |
|
} |
} elsif ($user_quota_text ne '') { |
} elsif ($user_quota_text ne '') { |
$r->print('<div class="LC_left_float">'.$user_quota_text.'</div>'); |
$r->print('<div class="LC_left_float">'.$user_quota_text); |
|
if ($env{'form.action'} eq 'singlestudent') { |
|
$r->print(&date_sections_select($context,$newuser,$formname)); |
|
} |
|
} else { |
|
if ($env{'form.action'} eq 'singlestudent') { |
|
$r->print('<div class="LC_left_float">'. |
|
&date_sections_select($context,$newuser,$formname)); |
|
} |
} |
} |
$r->print('<div class="LC_clear_float_footer"></div>'); |
$r->print('</div><div class="LC_clear_float_footer"></div>'); |
my %rolesdump=&Apache::lonnet::dump('roles',$ccdomain,$ccuname); |
if ($env{'form.action'} ne 'singlestudent') { |
# Build up table of user roles to allow revocation of a role. |
&display_existing_roles($r,$ccuname,$ccdomain,\%inccourses); |
my ($tmp) = keys(%rolesdump); |
} |
unless ($tmp =~ /^(con_lost|error)/i) { |
} ## End of new user/old user logic |
my $now=time; |
|
my %lt=&Apache::lonlocal::texthash( |
if ($env{'form.action'} eq 'singlestudent') { |
'rer' => "Existing Roles", |
$r->print('<br /><input type="button" value="'.&mt('Enroll Student').'" onClick="setSections(this.form)" />'."\n"); |
'rev' => "Revoke", |
} else { |
|
$r->print('<h3>'.&mt('Add Roles').'</h3>'); |
|
my $addrolesdisplay = 0; |
|
if ($context eq 'domain' || $context eq 'author') { |
|
$addrolesdisplay = &new_coauthor_roles($r,$ccuname,$ccdomain); |
|
} |
|
if ($context eq 'domain') { |
|
my $add_domainroles = &new_domain_roles($r); |
|
if (!$addrolesdisplay) { |
|
$addrolesdisplay = $add_domainroles; |
|
} |
|
$r->print(&course_level_dc($env{'request.role.domain'},'Course')); |
|
$r->print('<br /><input type="button" value="'.&mt('Save').'" onClick="setCourse()" />'."\n"); |
|
} elsif ($context eq 'author') { |
|
if ($addrolesdisplay) { |
|
$r->print('<br /><input type="button" value="'.&mt('Save').'"'); |
|
if ($newuser) { |
|
$r->print(' onClick="auth_check()" \>'."\n"); |
|
} else { |
|
$r->print('onClick="this.form.submit()" \>'."\n"); |
|
} |
|
} else { |
|
$r->print('<br /><a href="javascript:backPage(document.cu)">'. |
|
&mt('Back to previous page').'</a>'); |
|
} |
|
} else { |
|
$r->print(&course_level_table(%inccourses)); |
|
$r->print('<br /><input type="button" value="'.&mt('Save').'" onClick="setSections(this.form)" />'."\n"); |
|
} |
|
} |
|
$r->print(&Apache::lonhtmlcommon::echo_form_input(['phase','userrole','ccdomain','prevphase','currstate','ccuname','ccdomain'])); |
|
$r->print('<input type="hidden" name="currstate" value="" />'); |
|
$r->print('<input type="hidden" name="prevphase" value="'.$env{'form.phase'}.'" />'); |
|
$r->print("</form>".&Apache::loncommon::end_page()); |
|
return; |
|
} |
|
|
|
sub singleuser_breadcrumb { |
|
my %breadcrumb_text; |
|
if ($env{'form.action'} eq 'singlestudent') { |
|
$breadcrumb_text{'search'} = 'Enroll a student'; |
|
$breadcrumb_text{'userpicked'} = 'Select a user', |
|
$breadcrumb_text{'modify'} = 'Set section/dates', |
|
} else { |
|
$breadcrumb_text{'search'} = 'Create/modify a user'; |
|
$breadcrumb_text{'userpicked'} = 'Select a user', |
|
$breadcrumb_text{'modify'} = 'Set user role', |
|
} |
|
return %breadcrumb_text; |
|
} |
|
|
|
sub date_sections_select { |
|
my ($context,$newuser,$formname,$permission) = @_; |
|
my $cid = $env{'request.course.id'}; |
|
my ($cnum,$cdom) = &Apache::lonuserutils::get_course_identity($cid); |
|
my $date_table = '<h3>'.&mt('Starting and Ending Dates').'</h3>'."\n". |
|
&Apache::lonuserutils::date_setting_table(undef,undef,$context, |
|
undef,$formname,$permission); |
|
my $rowtitle = 'Section'; |
|
my $secbox = '<h3>'.&mt('Section').'</h3>'."\n". |
|
&Apache::lonuserutils::section_picker($cdom,$cnum,'st',$rowtitle, |
|
$permission); |
|
my $output = $date_table.$secbox; |
|
return $output; |
|
} |
|
|
|
sub validation_javascript { |
|
my ($context,$ccdomain,$pjump_def,$groupslist,$newuser,$formname, |
|
$loaditem) = @_; |
|
my $dc_setcourse_code = ''; |
|
my $nondc_setsection_code = ''; |
|
if ($context eq 'domain') { |
|
my $dcdom = $env{'request.role.domain'}; |
|
$loaditem->{'onload'} = "document.cu.coursedesc.value='';"; |
|
$dc_setcourse_code = |
|
&Apache::lonuserutils::dc_setcourse_js('cu','singleuser',$context); |
|
} else { |
|
my $checkauth; |
|
if (($newuser) || (&Apache::lonnet::allowed('mau',$ccdomain))) { |
|
$checkauth = 1; |
|
} |
|
if ($context eq 'course') { |
|
$nondc_setsection_code = |
|
&Apache::lonuserutils::setsections_javascript($formname,$groupslist, |
|
undef,$checkauth); |
|
} |
|
if ($checkauth) { |
|
$nondc_setsection_code .= |
|
&Apache::lonuserutils::verify_authen($formname,$context); |
|
} |
|
} |
|
my $js = &user_modification_js($pjump_def,$dc_setcourse_code, |
|
$nondc_setsection_code,$groupslist); |
|
my ($jsback,$elements) = &crumb_utilities(); |
|
$js .= "\n". |
|
'<script type="text/javascript">'."\n".$jsback."\n".'</script>'; |
|
return $js; |
|
} |
|
|
|
sub display_existing_roles { |
|
my ($r,$ccuname,$ccdomain,$inccourses) = @_; |
|
my %rolesdump=&Apache::lonnet::dump('roles',$ccdomain,$ccuname); |
|
# Build up table of user roles to allow revocation and re-enabling of roles. |
|
my ($tmp) = keys(%rolesdump); |
|
if ($tmp !~ /^(con_lost|error)/i) { |
|
my $now=time; |
|
my %lt=&Apache::lonlocal::texthash( |
|
'rer' => "Existing Roles", |
|
'rev' => "Revoke", |
'del' => "Delete", |
'del' => "Delete", |
'ren' => "Re-Enable", |
'ren' => "Re-Enable", |
'rol' => "Role", |
'rol' => "Role", |
'ext' => "Extent", |
'ext' => "Extent", |
'sta' => "Start", |
'sta' => "Start", |
'end' => "End" |
'end' => "End", |
); |
); |
my (%roletext,%sortrole,%roleclass,%rolepriv); |
my (%roletext,%sortrole,%roleclass,%rolepriv); |
foreach my $area (sort { my $a1=join('_',(split('_',$a))[1,0]); |
foreach my $area (sort { my $a1=join('_',(split('_',$a))[1,0]); |
my $b1=join('_',(split('_',$b))[1,0]); |
my $b1=join('_',(split('_',$b))[1,0]); |
return $a1 cmp $b1; |
return $a1 cmp $b1; |
} keys(%rolesdump)) { |
} keys(%rolesdump)) { |
next if ($area =~ /^rolesdef/); |
next if ($area =~ /^rolesdef/); |
my $envkey=$area; |
my $envkey=$area; |
my $role = $rolesdump{$area}; |
my $role = $rolesdump{$area}; |
my $thisrole=$area; |
my $thisrole=$area; |
$area =~ s/\_\w\w$//; |
$area =~ s/\_\w\w$//; |
my ($role_code,$role_end_time,$role_start_time) = |
my ($role_code,$role_end_time,$role_start_time) = |
split(/_/,$role); |
split(/_/,$role); |
# Is this a custom role? Get role owner and title. |
# Is this a custom role? Get role owner and title. |
my ($croleudom,$croleuname,$croletitle)= |
my ($croleudom,$croleuname,$croletitle)= |
($role_code=~m{^cr/($match_domain)/($match_username)/(\w+)$}); |
($role_code=~m{^cr/($match_domain)/($match_username)/(\w+)$}); |
my $allowed=0; |
my $allowed=0; |
my $delallowed=0; |
my $delallowed=0; |
my $sortkey=$role_code; |
my $sortkey=$role_code; |
my $class='Unknown'; |
my $class='Unknown'; |
if ($area =~ m{^/($match_domain)/($match_courseid)} ) { |
if ($area =~ m{^/($match_domain)/($match_courseid)} ) { |
$class='Course'; |
$class='Course'; |
my ($coursedom,$coursedir) = ($1,$2); |
my ($coursedom,$coursedir) = ($1,$2); |
$sortkey.="\0$coursedom"; |
$sortkey.="\0$coursedom"; |
# $1.'_'.$2 is the course id (eg. 103_12345abcef103l3). |
# $1.'_'.$2 is the course id (eg. 103_12345abcef103l3). |
my %coursedata= |
my %coursedata= |
&Apache::lonnet::coursedescription($1.'_'.$2); |
&Apache::lonnet::coursedescription($1.'_'.$2); |
my $carea; |
my $carea; |
if (defined($coursedata{'description'})) { |
if (defined($coursedata{'description'})) { |
$carea=$coursedata{'description'}. |
$carea=$coursedata{'description'}. |
'<br />'.&mt('Domain').': '.$coursedom.(' 'x8). |
'<br />'.&mt('Domain').': '.$coursedom.(' 'x8). |
&Apache::loncommon::syllabuswrapper('Syllabus',$coursedir,$coursedom); |
&Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$coursedir,$coursedom); |
$sortkey.="\0".$coursedata{'description'}; |
$sortkey.="\0".$coursedata{'description'}; |
$class=$coursedata{'type'}; |
$class=$coursedata{'type'}; |
} else { |
} else { |
$carea=&mt('Unavailable course').': '.$area; |
$carea=&mt('Unavailable course').': '.$area; |
$sortkey.="\0".&mt('Unavailable course').': '.$area; |
$sortkey.="\0".&mt('Unavailable course').': '.$area; |
} |
} |
$sortkey.="\0$coursedir"; |
$sortkey.="\0$coursedir"; |
$inccourses{$1.'_'.$2}=1; |
$inccourses->{$1.'_'.$2}=1; |
if ((&Apache::lonnet::allowed('c'.$role_code,$1.'/'.$2)) || |
if ((&Apache::lonnet::allowed('c'.$role_code,$1.'/'.$2)) || |
(&Apache::lonnet::allowed('c'.$role_code,$ccdomain))) { |
(&Apache::lonnet::allowed('c'.$role_code,$ccdomain))) { |
$allowed=1; |
$allowed=1; |
} |
} |
if ((&Apache::lonnet::allowed('dro',$1)) || |
if ((&Apache::lonnet::allowed('dro',$1)) || |
(&Apache::lonnet::allowed('dro',$ccdomain))) { |
(&Apache::lonnet::allowed('dro',$ccdomain))) { |
$delallowed=1; |
$delallowed=1; |
} |
} |
# - custom role. Needs more info, too |
# - custom role. Needs more info, too |
if ($croletitle) { |
if ($croletitle) { |
if (&Apache::lonnet::allowed('ccr',$1.'/'.$2)) { |
if (&Apache::lonnet::allowed('ccr',$1.'/'.$2)) { |
$allowed=1; |
$allowed=1; |
$thisrole.='.'.$role_code; |
$thisrole.='.'.$role_code; |
} |
} |
} |
} |
# Compute the background color based on $area |
# Compute the background color based on $area |
if ($area=~m{^/($match_domain)/($match_courseid)/(\w+)}) { |
if ($area=~m{^/($match_domain)/($match_courseid)/(\w+)}) { |
$carea.='<br />Section: '.$3; |
$carea.='<br />Section: '.$3; |
$sortkey.="\0$3"; |
$sortkey.="\0$3"; |
} |
if (!$allowed) { |
$area=$carea; |
if ($env{'request.course.sec'} eq $3) { |
} else { |
if (&Apache::lonnet::allowed('c'.$role_code,$1.'/'.$2.'/'.$3)) { |
$sortkey.="\0".$area; |
$allowed = 1; |
# Determine if current user is able to revoke privileges |
} |
if ($area=~m{^/($match_domain)/}) { |
} |
if ((&Apache::lonnet::allowed('c'.$role_code,$1)) || |
} |
|
} |
|
$area=$carea; |
|
} else { |
|
$sortkey.="\0".$area; |
|
# Determine if current user is able to revoke privileges |
|
if ($area=~m{^/($match_domain)/}) { |
|
if ((&Apache::lonnet::allowed('c'.$role_code,$1)) || |
(&Apache::lonnet::allowed('c'.$role_code,$ccdomain))) { |
(&Apache::lonnet::allowed('c'.$role_code,$ccdomain))) { |
$allowed=1; |
$allowed=1; |
} |
} |
if (((&Apache::lonnet::allowed('dro',$1)) || |
if (((&Apache::lonnet::allowed('dro',$1)) || |
(&Apache::lonnet::allowed('dro',$ccdomain))) && |
(&Apache::lonnet::allowed('dro',$ccdomain))) && |
($role_code ne 'dc')) { |
($role_code ne 'dc')) { |
$delallowed=1; |
$delallowed=1; |
} |
} |
} else { |
} else { |
if (&Apache::lonnet::allowed('c'.$role_code,'/')) { |
if (&Apache::lonnet::allowed('c'.$role_code,'/')) { |
$allowed=1; |
$allowed=1; |
} |
} |
} |
} |
if ($role_code eq 'ca' || $role_code eq 'au') { |
if ($role_code eq 'ca' || $role_code eq 'au') { |
$class='Construction Space'; |
$class='Construction Space'; |
} elsif ($role_code eq 'su') { |
} elsif ($role_code eq 'su') { |
$class='System'; |
$class='System'; |
} else { |
} else { |
$class='Domain'; |
$class='Domain'; |
} |
} |
} |
} |
if (($role_code eq 'ca') || ($role_code eq 'aa')) { |
if (($role_code eq 'ca') || ($role_code eq 'aa')) { |
$area=~m{/($match_domain)/($match_username)}; |
$area=~m{/($match_domain)/($match_username)}; |
if (&authorpriv($2,$1)) { |
if (&Apache::lonuserutils::authorpriv($2,$1)) { |
$allowed=1; |
$allowed=1; |
} else { |
} else { |
$allowed=0; |
$allowed=0; |
} |
} |
} |
} |
my $row = ''; |
my $row = ''; |
$row.= '<td>'; |
$row.= '<td>'; |
my $active=1; |
my $active=1; |
$active=0 if (($role_end_time) && ($now>$role_end_time)); |
$active=0 if (($role_end_time) && ($now>$role_end_time)); |
if (($active) && ($allowed)) { |
if (($active) && ($allowed)) { |
$row.= '<input type="checkbox" name="rev:'.$thisrole.'" />'; |
$row.= '<input type="checkbox" name="rev:'.$thisrole.'" />'; |
} else { |
} else { |
if ($active) { |
if ($active) { |
$row.=' '; |
|
} else { |
|
$row.=&mt('expired or revoked'); |
|
} |
|
} |
|
$row.='</td><td>'; |
|
if ($allowed && !$active) { |
|
$row.= '<input type="checkbox" name="ren:'.$thisrole.'" />'; |
|
} else { |
|
$row.=' '; |
|
} |
|
$row.='</td><td>'; |
|
if ($delallowed) { |
|
$row.= '<input type="checkbox" name="del:'.$thisrole.'" />'; |
|
} else { |
|
$row.=' '; |
$row.=' '; |
} |
} else { |
my $plaintext=''; |
$row.=&mt('expired or revoked'); |
if (!$croletitle) { |
} |
$plaintext=&Apache::lonnet::plaintext($role_code,$class) |
} |
} else { |
$row.='</td><td>'; |
$plaintext= |
if ($allowed && !$active) { |
"Customrole '$croletitle'<br />defined by $croleuname\@$croleudom"; |
$row.= '<input type="checkbox" name="ren:'.$thisrole.'" />'; |
} |
} else { |
$row.= '</td><td>'.$plaintext. |
$row.=' '; |
'</td><td>'.$area. |
} |
'</td><td>'.($role_start_time?localtime($role_start_time) |
$row.='</td><td>'; |
: ' ' ). |
if ($delallowed) { |
'</td><td>'.($role_end_time ?localtime($role_end_time) |
$row.= '<input type="checkbox" name="del:'.$thisrole.'" />'; |
: ' ' ) |
} else { |
."</td>"; |
$row.=' '; |
$sortrole{$sortkey}=$envkey; |
} |
$roletext{$envkey}=$row; |
my $plaintext=''; |
$roleclass{$envkey}=$class; |
if (!$croletitle) { |
$rolepriv{$envkey}=$allowed; |
$plaintext=&Apache::lonnet::plaintext($role_code,$class) |
#$r->print($row); |
} else { |
} # end of foreach (table building loop) |
$plaintext= |
my $rolesdisplay = 0; |
"Customrole '$croletitle'<br />defined by $croleuname\@$croleudom"; |
my %output = (); |
} |
foreach my $type ('Construction Space','Course','Group','Domain','System','Unknown') { |
$row.= '</td><td>'.$plaintext. |
$output{$type} = ''; |
'</td><td>'.$area. |
foreach my $which (sort {uc($a) cmp uc($b)} (keys(%sortrole))) { |
'</td><td>'.($role_start_time?localtime($role_start_time) |
if ( ($roleclass{$sortrole{$which}} =~ /^\Q$type\E/ ) && ($rolepriv{$sortrole{$which}}) ) { |
: ' ' ). |
$output{$type}.= |
'</td><td>'.($role_end_time ?localtime($role_end_time) |
&Apache::loncommon::start_data_table_row(). |
: ' ' ) |
$roletext{$sortrole{$which}}. |
."</td>"; |
&Apache::loncommon::end_data_table_row(); |
$sortrole{$sortkey}=$envkey; |
} |
$roletext{$envkey}=$row; |
} |
$roleclass{$envkey}=$class; |
unless($output{$type} eq '') { |
$rolepriv{$envkey}=$allowed; |
$output{$type} = '<tr class="LC_info_row">'. |
#$r->print($row); |
"<td align='center' colspan='7'>".&mt($type)."</td></tr>". |
} # end of foreach (table building loop) |
$output{$type}; |
my $rolesdisplay = 0; |
$rolesdisplay = 1; |
my %output = (); |
} |
foreach my $type ('Construction Space','Course','Group','Domain','System','Unknown') { |
} |
$output{$type} = ''; |
if ($rolesdisplay == 1) { |
foreach my $which (sort {uc($a) cmp uc($b)} (keys(%sortrole))) { |
$r->print(' |
if ( ($roleclass{$sortrole{$which}} =~ /^\Q$type\E/ ) && ($rolepriv{$sortrole{$which}}) ) { |
|
$output{$type}.= |
|
&Apache::loncommon::start_data_table_row(). |
|
$roletext{$sortrole{$which}}. |
|
&Apache::loncommon::end_data_table_row(); |
|
} |
|
} |
|
unless($output{$type} eq '') { |
|
$output{$type} = '<tr class="LC_info_row">'. |
|
"<td align='center' colspan='7'>".&mt($type)."</td></tr>". |
|
$output{$type}; |
|
$rolesdisplay = 1; |
|
} |
|
} |
|
if ($rolesdisplay == 1) { |
|
$r->print(' |
<h3>'.$lt{'rer'}.'</h3>'. |
<h3>'.$lt{'rer'}.'</h3>'. |
&Apache::loncommon::start_data_table("LC_createuser"). |
&Apache::loncommon::start_data_table("LC_createuser"). |
&Apache::loncommon::start_data_table_header_row(). |
&Apache::loncommon::start_data_table_header_row(). |
Line 1078 ENDNOPORTPRIV
|
Line 1113 ENDNOPORTPRIV
|
'</th><th>'.$lt{'rol'}.'</th><th>'.$lt{'ext'}. |
'</th><th>'.$lt{'rol'}.'</th><th>'.$lt{'ext'}. |
'</th><th>'.$lt{'sta'}.'</th><th>'.$lt{'end'}.'</th>'. |
'</th><th>'.$lt{'sta'}.'</th><th>'.$lt{'end'}.'</th>'. |
&Apache::loncommon::end_data_table_header_row()); |
&Apache::loncommon::end_data_table_header_row()); |
foreach my $type ('Construction Space','Course','Group','Domain','System','Unknown') { |
foreach my $type ('Construction Space','Course','Group','Domain','System','Unknown') { |
if ($output{$type}) { |
if ($output{$type}) { |
$r->print($output{$type}."\n"); |
$r->print($output{$type}."\n"); |
} |
} |
} |
} |
$r->print(&Apache::loncommon::end_data_table()); |
$r->print(&Apache::loncommon::end_data_table()); |
} |
} |
} # End of unless |
} # End of check for keys in rolesdump |
} ## End of new user/old user logic |
return; |
|
} |
|
|
|
sub new_coauthor_roles { |
|
my ($r,$ccuname,$ccdomain) = @_; |
my $addrolesdisplay = 0; |
my $addrolesdisplay = 0; |
$r->print('<h3>'.&mt('Add Roles').'</h3>'); |
# |
# |
# Co-Author |
# Co-Author |
# |
# |
if (&Apache::lonuserutils::authorpriv($env{'user.name'}, |
if (&authorpriv($env{'user.name'},$env{'request.role.domain'}) && |
$env{'request.role.domain'}) && |
($env{'user.name'} ne $ccuname || $env{'user.domain'} ne $ccdomain)) { |
($env{'user.name'} ne $ccuname || $env{'user.domain'} ne $ccdomain)) { |
# No sense in assigning co-author role to yourself |
# No sense in assigning co-author role to yourself |
$addrolesdisplay = 1; |
$addrolesdisplay = 1; |
my $cuname=$env{'user.name'}; |
my $cuname=$env{'user.name'}; |
my $cudom=$env{'request.role.domain'}; |
my $cudom=$env{'request.role.domain'}; |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'cs' => "Construction Space", |
'cs' => "Construction Space", |
'act' => "Activate", |
'act' => "Activate", |
'rol' => "Role", |
'rol' => "Role", |
'ext' => "Extent", |
'ext' => "Extent", |
'sta' => "Start", |
'sta' => "Start", |
Line 1109 ENDNOPORTPRIV
|
Line 1148 ENDNOPORTPRIV
|
'caa' => "Assistant Co-Author", |
'caa' => "Assistant Co-Author", |
'ssd' => "Set Start Date", |
'ssd' => "Set Start Date", |
'sed' => "Set End Date" |
'sed' => "Set End Date" |
); |
); |
$r->print('<h4>'.$lt{'cs'}.'</h4>'."\n". |
$r->print('<h4>'.$lt{'cs'}.'</h4>'."\n". |
&Apache::loncommon::start_data_table()."\n". |
&Apache::loncommon::start_data_table()."\n". |
&Apache::loncommon::start_data_table_header_row()."\n". |
&Apache::loncommon::start_data_table_header_row()."\n". |
'<th>'.$lt{'act'}.'</th><th>'.$lt{'rol'}.'</th>'. |
'<th>'.$lt{'act'}.'</th><th>'.$lt{'rol'}.'</th>'. |
'<th>'.$lt{'ext'}.'</th><th>'.$lt{'sta'}.'</th>'. |
'<th>'.$lt{'ext'}.'</th><th>'.$lt{'sta'}.'</th>'. |
'<th>'.$lt{'end'}.'</th>'."\n". |
'<th>'.$lt{'end'}.'</th>'."\n". |
&Apache::loncommon::end_data_table_header_row()."\n". |
&Apache::loncommon::end_data_table_header_row()."\n". |
&Apache::loncommon::start_data_table_row()."\n". |
&Apache::loncommon::start_data_table_row().' |
'<td> |
<td> |
<input type=checkbox name="act_'.$cudom.'_'.$cuname.'_ca" /> |
<input type=checkbox name="act_'.$cudom.'_'.$cuname.'_ca" /> |
</td> |
</td> |
<td>'.$lt{'cau'}.'</td> |
<td>'.$lt{'cau'}.'</td> |
Line 1129 ENDNOPORTPRIV
|
Line 1168 ENDNOPORTPRIV
|
<td><input type="hidden" name="end_'.$cudom.'_'.$cuname.'_ca" value="" /> |
<td><input type="hidden" name="end_'.$cudom.'_'.$cuname.'_ca" value="" /> |
<a href= |
<a href= |
"javascript:pjump('."'date_end','End Date Co-Author',document.cu.end_$cudom\_$cuname\_ca.value,'end_$cudom\_$cuname\_ca','cu.pres','dateset'".')">'.$lt{'sed'}.'</a></td>'."\n". |
"javascript:pjump('."'date_end','End Date Co-Author',document.cu.end_$cudom\_$cuname\_ca.value,'end_$cudom\_$cuname\_ca','cu.pres','dateset'".')">'.$lt{'sed'}.'</a></td>'."\n". |
&Apache::loncommon::end_data_table_row()."\n". |
&Apache::loncommon::end_data_table_row()."\n". |
&Apache::loncommon::start_data_table_row()."\n". |
&Apache::loncommon::start_data_table_row()."\n". |
'<td><input type=checkbox name="act_'.$cudom.'_'.$cuname.'_aa" /></td> |
'<td><input type=checkbox name="act_'.$cudom.'_'.$cuname.'_aa" /></td> |
<td>'.$lt{'caa'}.'</td> |
<td>'.$lt{'caa'}.'</td> |
<td>'.$cudom.'_'.$cuname.'</td> |
<td>'.$cudom.'_'.$cuname.'</td> |
Line 1140 ENDNOPORTPRIV
|
Line 1179 ENDNOPORTPRIV
|
<td><input type="hidden" name="end_'.$cudom.'_'.$cuname.'_aa" value="" /> |
<td><input type="hidden" name="end_'.$cudom.'_'.$cuname.'_aa" value="" /> |
<a href= |
<a href= |
"javascript:pjump('."'date_end','End Date Assistant Co-Author',document.cu.end_$cudom\_$cuname\_aa.value,'end_$cudom\_$cuname\_aa','cu.pres','dateset'".')">'.$lt{'sed'}.'</a></td>'."\n". |
"javascript:pjump('."'date_end','End Date Assistant Co-Author',document.cu.end_$cudom\_$cuname\_aa.value,'end_$cudom\_$cuname\_aa','cu.pres','dateset'".')">'.$lt{'sed'}.'</a></td>'."\n". |
&Apache::loncommon::end_data_table_row()."\n". |
&Apache::loncommon::end_data_table_row()."\n". |
&Apache::loncommon::end_data_table()); |
&Apache::loncommon::end_data_table()); |
} elsif ($env{'request.role'} =~ /^au\./) { |
} elsif ($env{'request.role'} =~ /^au\./) { |
if (!(&authorpriv($env{'user.name'},$env{'request.role.domain'}))) { |
if (!(&Apache::lonuserutils::authorpriv($env{'user.name'}, |
|
$env{'request.role.domain'}))) { |
$r->print('<span class="LC_error">'. |
$r->print('<span class="LC_error">'. |
&mt('You do not have privileges to assign co-author roles.'). |
&mt('You do not have privileges to assign co-author roles.'). |
'</span>'); |
'</span>'); |
} elsif (($env{'user.name'} eq $ccuname) && |
} elsif (($env{'user.name'} eq $ccuname) && |
($env{'user.domain'} eq $ccdomain)) { |
($env{'user.domain'} eq $ccdomain)) { |
$r->print(&mt('Assigning yourself a co-author or assistant co-author role in your own author area in Construction Space is not permitted')); |
$r->print(&mt('Assigning yourself a co-author or assistant co-author role in your own author area in Construction Space is not permitted')); |
} |
} |
} |
} |
# |
return $addrolesdisplay;; |
# Domain level |
} |
# |
|
|
sub new_domain_roles { |
|
my ($r) = @_; |
|
my $addrolesdisplay = 0; |
|
# |
|
# Domain level |
|
# |
my $num_domain_level = 0; |
my $num_domain_level = 0; |
my $domaintext = |
my $domaintext = |
'<h4>'.&mt('Domain Level').'</h4>'. |
'<h4>'.&mt('Domain Level').'</h4>'. |
&Apache::loncommon::start_data_table(). |
&Apache::loncommon::start_data_table(). |
&Apache::loncommon::start_data_table_header_row(). |
&Apache::loncommon::start_data_table_header_row(). |
Line 1168 ENDNOPORTPRIV
|
Line 1214 ENDNOPORTPRIV
|
foreach my $role ('dc','li','dg','au','sc') { |
foreach my $role ('dc','li','dg','au','sc') { |
if (&Apache::lonnet::allowed('c'.$role,$thisdomain)) { |
if (&Apache::lonnet::allowed('c'.$role,$thisdomain)) { |
my $plrole=&Apache::lonnet::plaintext($role); |
my $plrole=&Apache::lonnet::plaintext($role); |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'ssd' => "Set Start Date", |
'ssd' => "Set Start Date", |
'sed' => "Set End Date" |
'sed' => "Set End Date" |
); |
); |
$num_domain_level ++; |
$num_domain_level ++; |
$domaintext .= |
$domaintext .= |
&Apache::loncommon::start_data_table_row(). |
&Apache::loncommon::start_data_table_row(). |
'<td><input type=checkbox name="act_'.$thisdomain.'_'.$role.'" /></td> |
'<td><input type=checkbox name="act_'.$thisdomain.'_'.$role.'" /></td> |
<td>'.$plrole.'</td> |
<td>'.$plrole.'</td> |
Line 1186 ENDNOPORTPRIV
|
Line 1232 ENDNOPORTPRIV
|
"javascript:pjump('."'date_end','End Date $plrole',document.cu.end_$thisdomain\_$role.value,'end_$thisdomain\_$role','cu.pres','dateset'".')">'.$lt{'sed'}.'</a></td>'. |
"javascript:pjump('."'date_end','End Date $plrole',document.cu.end_$thisdomain\_$role.value,'end_$thisdomain\_$role','cu.pres','dateset'".')">'.$lt{'sed'}.'</a></td>'. |
&Apache::loncommon::end_data_table_row(); |
&Apache::loncommon::end_data_table_row(); |
} |
} |
} |
} |
} |
} |
$domaintext.= &Apache::loncommon::end_data_table(); |
$domaintext.= &Apache::loncommon::end_data_table(); |
if ($num_domain_level > 0) { |
if ($num_domain_level > 0) { |
$r->print($domaintext); |
$r->print($domaintext); |
$addrolesdisplay = 1; |
$addrolesdisplay = 1; |
} |
} |
# |
return $addrolesdisplay; |
# Course level |
|
# |
|
|
|
if ($env{'request.role'} =~ m{^dc\./($match_domain)/$}) { |
|
$r->print(&course_level_dc($1,'Course')); |
|
$r->print('<br /><input type="button" value="'.&mt('Modify User').'" onClick="setCourse()" />'."\n"); |
|
} elsif ($env{'request.role'} =~ m{^au\./($match_domain)/$}) { |
|
if ($addrolesdisplay) { |
|
$r->print('<br /><input type="button" value="'.&mt('Modify User').'"'); |
|
if ($newuser) { |
|
$r->print(' onClick="verify_message(this.form)" \>'."\n"); |
|
} else { |
|
$r->print('onClick="this.form.submit()" \>'."\n"); |
|
} |
|
} else { |
|
$r->print('<br /><a href="javascript:backPage(document.cu)">'. |
|
&mt('Back to previous page').'</a>'); |
|
} |
|
} else { |
|
$r->print(&course_level_table(%inccourses)); |
|
$r->print('<br /><input type="button" value="'.&mt('Modify User').'" onClick="setSections()" />'."\n"); |
|
} |
|
$r->print(&Apache::lonhtmlcommon::echo_form_input(['phase','userrole','ccdomain','prevphase','currstate','ccuname','ccdomain'])); |
|
$r->print('<input type="hidden" name="currstate" value="" />'); |
|
$r->print('<input type="hidden" name="prevphase" value="'.$env{'form.phase'}.'" />'); |
|
$r->print("</form>".&Apache::loncommon::end_page()); |
|
} |
} |
|
|
sub user_authentication { |
sub user_authentication { |
my ($ccuname,$ccdomain,$krbdefdom,$abv_auth) = @_; |
my ($ccuname,$ccdomain,$formname) = @_; |
my $currentauth=&Apache::lonnet::queryauthenticate($ccuname,$ccdomain); |
my $currentauth=&Apache::lonnet::queryauthenticate($ccuname,$ccdomain); |
my ($loginscript,$outcome); |
my $outcome; |
if ($currentauth=~/^(krb)(4|5):(.*)/) { |
|
my $long_auth = $1.$2; |
|
my $curr_kerb_ver = $2; |
|
my $krbdefdom=$3; |
|
my $curr_authtype = $abv_auth->{$long_auth}; |
|
my %param = ( formname => 'document.cu', |
|
kerb_def_dom => $krbdefdom, |
|
domain => $ccdomain, |
|
curr_authtype => $curr_authtype, |
|
curr_kerb_ver => $curr_kerb_ver, |
|
); |
|
$loginscript = &Apache::loncommon::authform_header(%param); |
|
} |
|
# Check for a bad authentication type |
# Check for a bad authentication type |
if ($currentauth !~ /^(krb4|krb5|unix|internal|localauth):/) { |
if ($currentauth !~ /^(krb4|krb5|unix|internal|localauth):/) { |
# bad authentication scheme |
# bad authentication scheme |
Line 1250 sub user_authentication {
|
Line 1257 sub user_authentication {
|
'ld' => "Login Data" |
'ld' => "Login Data" |
); |
); |
if (&Apache::lonnet::allowed('mau',$ccdomain)) { |
if (&Apache::lonnet::allowed('mau',$ccdomain)) { |
&initialize_authen_forms($ccdomain); |
&initialize_authen_forms($ccdomain,$formname); |
|
|
my $choices = &Apache::lonuserutils::set_login($ccdomain,$authformkrb,$authformint,$authformloc); |
my $choices = &Apache::lonuserutils::set_login($ccdomain,$authformkrb,$authformint,$authformloc); |
$outcome = <<ENDBADAUTH; |
$outcome = <<ENDBADAUTH; |
<script type="text/javascript" language="Javascript"> |
<script type="text/javascript" language="Javascript"> |
Line 1271 $lt{'uuas'} ($currentauth). $lt{'adcs'}.
|
Line 1279 $lt{'uuas'} ($currentauth). $lt{'adcs'}.
|
ENDBADAUTH |
ENDBADAUTH |
} |
} |
} else { # Authentication type is valid |
} else { # Authentication type is valid |
&initialize_authen_forms($ccdomain,$currentauth); |
&initialize_authen_forms($ccdomain,$formname,$currentauth,'modifyuser'); |
my ($authformcurrent,$authform_other,$can_modify) = |
my ($authformcurrent,$can_modify,@authform_others) = |
&modify_login_block($ccdomain,$currentauth); |
&modify_login_block($ccdomain,$currentauth); |
if (&Apache::lonnet::allowed('mau',$ccdomain)) { |
if (&Apache::lonnet::allowed('mau',$ccdomain)) { |
# Current user has login modification privileges |
# Current user has login modification privileges |
Line 1296 ENDBADAUTH
|
Line 1304 ENDBADAUTH
|
'<td>'.$authformcurrent.'</td>'. |
'<td>'.$authformcurrent.'</td>'. |
&Apache::loncommon::end_data_table_row()."\n"; |
&Apache::loncommon::end_data_table_row()."\n"; |
} else { |
} else { |
$outcome .= ' ('.$authformcurrent.')</td>'; |
$outcome .= ' ('.$authformcurrent.')</td>'. |
|
&Apache::loncommon::end_data_table_row()."\n"; |
} |
} |
if ($authform_other ne '') { |
foreach my $item (@authform_others) { |
$outcome .= $authform_other; |
$outcome .= &Apache::loncommon::start_data_table_row(). |
|
'<td>'.$item.'</td>'. |
|
&Apache::loncommon::end_data_table_row()."\n"; |
} |
} |
$outcome .= &Apache::loncommon::end_data_table_row(). |
$outcome .= &Apache::loncommon::end_data_table(); |
&Apache::loncommon::end_data_table(); |
|
} else { |
} else { |
if (&Apache::lonnet::allowed('mau',$env{'request.role.domain'})) { |
if (&Apache::lonnet::allowed('mau',$env{'request.role.domain'})) { |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
Line 1313 ENDBADAUTH
|
Line 1323 ENDBADAUTH
|
$outcome .= <<ENDNOPRIV; |
$outcome .= <<ENDNOPRIV; |
<h3>$lt{'ccld'}</h3> |
<h3>$lt{'ccld'}</h3> |
$lt{'yodo'} $lt{'ifch'}: $ccdomain |
$lt{'yodo'} $lt{'ifch'}: $ccdomain |
|
<input type="hidden" name="login" value="nochange" /> |
ENDNOPRIV |
ENDNOPRIV |
} |
} |
} |
} |
Line 1325 sub modify_login_block {
|
Line 1336 sub modify_login_block {
|
my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$dom); |
my %domconfig = &Apache::lonnet::get_dom('configuration',['usercreation'],$dom); |
my ($authnum,%can_assign) = |
my ($authnum,%can_assign) = |
&Apache::loncommon::get_assignable_auth($dom); |
&Apache::loncommon::get_assignable_auth($dom); |
my ($authformcurrent,$authform_other,$show_override_msg); |
my ($authformcurrent,@authform_others,$show_override_msg); |
if ($currentauth=~/^krb(4|5):/) { |
if ($currentauth=~/^krb(4|5):/) { |
$authformcurrent=$authformkrb; |
$authformcurrent=$authformkrb; |
if ($can_assign{'int'}) { |
if ($can_assign{'int'}) { |
$authform_other = &Apache::loncommon::start_data_table_row(). |
push(@authform_others,$authformint); |
'<td>'.$authformint.'</td>'. |
|
&Apache::loncommon::end_data_table_row()."\n" |
|
} |
} |
if ($can_assign{'loc'}) { |
if ($can_assign{'loc'}) { |
$authform_other .= &Apache::loncommon::start_data_table_row(). |
push(@authform_others,$authformloc); |
'<td>'.$authformloc.'</td>'. |
|
&Apache::loncommon::end_data_table_row()."\n"; |
|
} |
} |
if (($can_assign{'krb4'}) || ($can_assign{'krb5'})) { |
if (($can_assign{'krb4'}) || ($can_assign{'krb5'})) { |
$show_override_msg = 1; |
$show_override_msg = 1; |
Line 1344 sub modify_login_block {
|
Line 1351 sub modify_login_block {
|
} elsif ($currentauth=~/^internal:/) { |
} elsif ($currentauth=~/^internal:/) { |
$authformcurrent=$authformint; |
$authformcurrent=$authformint; |
if (($can_assign{'krb4'}) || ($can_assign{'krb5'})) { |
if (($can_assign{'krb4'}) || ($can_assign{'krb5'})) { |
$authform_other = &Apache::loncommon::start_data_table_row(). |
push(@authform_others,$authformkrb); |
'<td>'.$authformkrb.'</td>'. |
|
&Apache::loncommon::end_data_table_row()."\n"; |
|
} |
} |
if ($can_assign{'loc'}) { |
if ($can_assign{'loc'}) { |
$authform_other .= &Apache::loncommon::start_data_table_row(). |
push(@authform_others,$authformloc); |
'<td>'.$authformloc.'</td>'. |
|
&Apache::loncommon::end_data_table_row()."\n"; |
|
} |
} |
if ($can_assign{'int'}) { |
if ($can_assign{'int'}) { |
$show_override_msg = 1; |
$show_override_msg = 1; |
Line 1359 sub modify_login_block {
|
Line 1362 sub modify_login_block {
|
} elsif ($currentauth=~/^unix:/) { |
} elsif ($currentauth=~/^unix:/) { |
$authformcurrent=$authformfsys; |
$authformcurrent=$authformfsys; |
if (($can_assign{'krb4'}) || ($can_assign{'krb5'})) { |
if (($can_assign{'krb4'}) || ($can_assign{'krb5'})) { |
$authform_other = &Apache::loncommon::start_data_table_row(). |
push(@authform_others,$authformkrb); |
'<td>'.$authformkrb.'</td>'. |
|
&Apache::loncommon::end_data_table_row()."\n"; |
|
} |
} |
if ($can_assign{'int'}) { |
if ($can_assign{'int'}) { |
$authform_other .= &Apache::loncommon::start_data_table_row(). |
push(@authform_others,$authformint); |
'<td>'.$authformint.'</td>'. |
|
&Apache::loncommon::end_data_table_row()."\n" |
|
} |
} |
if ($can_assign{'loc'}) { |
if ($can_assign{'loc'}) { |
$authform_other .= &Apache::loncommon::start_data_table_row(). |
push(@authform_others,$authformloc); |
'<td>'.$authformloc.'</td>'. |
|
&Apache::loncommon::end_data_table_row()."\n"; |
|
} |
} |
if ($can_assign{'fsys'}) { |
if ($can_assign{'fsys'}) { |
$show_override_msg = 1; |
$show_override_msg = 1; |
Line 1379 sub modify_login_block {
|
Line 1376 sub modify_login_block {
|
} elsif ($currentauth=~/^localauth:/) { |
} elsif ($currentauth=~/^localauth:/) { |
$authformcurrent=$authformloc; |
$authformcurrent=$authformloc; |
if (($can_assign{'krb4'}) || ($can_assign{'krb5'})) { |
if (($can_assign{'krb4'}) || ($can_assign{'krb5'})) { |
$authform_other = &Apache::loncommon::start_data_table_row(). |
push(@authform_others,$authformkrb); |
'<td>'.$authformkrb.'</td>'. |
|
&Apache::loncommon::end_data_table_row()."\n"; |
|
} |
} |
if ($can_assign{'int'}) { |
if ($can_assign{'int'}) { |
$authform_other .= &Apache::loncommon::start_data_table_row(). |
push(@authform_others,$authformint); |
'<td>'.$authformint.'</td>'. |
|
&Apache::loncommon::end_data_table_row()."\n" |
|
} |
} |
if ($can_assign{'loc'}) { |
if ($can_assign{'loc'}) { |
$show_override_msg = 1; |
$show_override_msg = 1; |
} |
} |
} |
} |
if ($show_override_msg) { |
if ($show_override_msg) { |
$authformcurrent.= ' <span class="LC_cusr_emph">'. |
$authformcurrent = '<table><tr><td colspan="3">'.$authformcurrent. |
|
'</td></tr>'."\n". |
|
'<tr><td> </td>'. |
|
'<td><b>'.&mt('Currently in use').'</b></td>'. |
|
'<td align="right"><span class="LC_cusr_emph">'. |
&mt('will override current values'). |
&mt('will override current values'). |
'</span><br />'; |
'</span></td></tr></table>'; |
} |
} |
return ($authformcurrent,$authform_other,$show_override_msg); |
return ($authformcurrent,$show_override_msg,@authform_others); |
} |
} |
|
|
sub personal_data_display { |
sub personal_data_display { |
my ($ccuname,$ccdomain,$newuser,%inst_results) = @_; |
my ($ccuname,$ccdomain,$newuser,$context,$inst_results,$rolesarray) = @_; |
my ($output,%userenv); |
my ($output,$showforceid,%userenv,%canmodify); |
|
my @userinfo = ('firstname','middlename','lastname','generation', |
|
'permanentemail','id'); |
|
my $rowcount = 0; |
|
my $editable = 0; |
if (!$newuser) { |
if (!$newuser) { |
# Get the users information |
# Get the users information |
%userenv = &Apache::lonnet::get('environment', |
%userenv = &Apache::lonnet::get('environment', |
['firstname','middlename','lastname','generation', |
['firstname','middlename','lastname','generation', |
'permanentemail','id'],$ccdomain,$ccuname); |
'permanentemail','id'],$ccdomain,$ccuname); |
|
%canmodify = |
|
&Apache::lonuserutils::can_modify_userinfo($context,$ccdomain, |
|
\@userinfo,$rolesarray); |
|
} elsif ($context eq 'selfcreate') { |
|
%canmodify = &selfcreate_canmodify($context,$ccdomain,\@userinfo, |
|
$inst_results,$rolesarray); |
} |
} |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'pd' => "Personal Data", |
'pd' => "Personal Data", |
Line 1416 sub personal_data_display {
|
Line 1423 sub personal_data_display {
|
'lastname' => "Last Name", |
'lastname' => "Last Name", |
'generation' => "Generation", |
'generation' => "Generation", |
'permanentemail' => "Permanent e-mail address", |
'permanentemail' => "Permanent e-mail address", |
'id' => "ID/Student Number", |
'id' => "Student/Employee ID", |
'lg' => "Login Data" |
'lg' => "Login Data" |
); |
); |
my @userinfo = ('firstname','middlename','lastname','generation', |
|
'permanentemail','id'); |
|
my %textboxsize = ( |
my %textboxsize = ( |
firstname => '15', |
firstname => '15', |
middlename => '15', |
middlename => '15', |
Line 1434 sub personal_data_display {
|
Line 1439 sub personal_data_display {
|
&Apache::lonhtmlcommon::start_pick_box(); |
&Apache::lonhtmlcommon::start_pick_box(); |
foreach my $item (@userinfo) { |
foreach my $item (@userinfo) { |
my $rowtitle = $lt{$item}; |
my $rowtitle = $lt{$item}; |
|
my $hiderow = 0; |
if ($item eq 'generation') { |
if ($item eq 'generation') { |
$rowtitle = $genhelp.$rowtitle; |
$rowtitle = $genhelp.$rowtitle; |
} |
} |
$output .= &Apache::lonhtmlcommon::row_title($rowtitle,undef,'LC_oddrow_value')."\n"; |
my $row = &Apache::lonhtmlcommon::row_title($rowtitle,undef,'LC_oddrow_value')."\n"; |
if ($newuser) { |
if ($newuser) { |
if ($inst_results{$item} ne '') { |
if (ref($inst_results) eq 'HASH') { |
$output .= '<input type="hidden" name="c'.$item.'" value="'.$inst_results{$item}.'" />'.$inst_results{$item}; |
if ($inst_results->{$item} ne '') { |
|
$row .= '<input type="hidden" name="c'.$item.'" value="'.$inst_results->{$item}.'" />'.$inst_results->{$item}; |
|
} else { |
|
if ($context eq 'selfcreate') { |
|
if ($canmodify{$item}) { |
|
$row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" />'; |
|
$editable ++; |
|
} else { |
|
$hiderow = 1; |
|
} |
|
} else { |
|
$row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" />'; |
|
} |
|
} |
} else { |
} else { |
$output .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" />'; |
if ($context eq 'selfcreate') { |
|
if ($canmodify{$item}) { |
|
$row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" />'; |
|
$editable ++; |
|
} else { |
|
$hiderow = 1; |
|
} |
|
} else { |
|
$row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="" />'; |
|
} |
} |
} |
} else { |
} else { |
if (&Apache::lonnet::allowed('mau',$ccdomain)) { |
if ($canmodify{$item}) { |
$output .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="'.$userenv{$item}.'" />'; |
$row .= '<input type="text" name="c'.$item.'" size="'.$textboxsize{$item}.'" value="'.$userenv{$item}.'" />'; |
} else { |
} else { |
$output .= $userenv{$item}; |
$row .= $userenv{$item}; |
|
} |
|
if ($item eq 'id') { |
|
$showforceid = $canmodify{$item}; |
} |
} |
} |
} |
$output .= &Apache::lonhtmlcommon::row_closure(1); |
$row .= &Apache::lonhtmlcommon::row_closure(1); |
|
if (!$hiderow) { |
|
$output .= $row; |
|
$rowcount ++; |
|
} |
} |
} |
$output .= &Apache::lonhtmlcommon::end_pick_box(); |
$output .= &Apache::lonhtmlcommon::end_pick_box(); |
return $output; |
if (wantarray) { |
|
if ($context eq 'selfcreate') { |
|
return($output,$rowcount,$editable); |
|
} else { |
|
return ($output,$showforceid); |
|
} |
|
} else { |
|
return $output; |
|
} |
|
} |
|
|
|
sub selfcreate_canmodify { |
|
my ($context,$dom,$userinfo,$inst_results,$rolesarray) = @_; |
|
if (ref($inst_results) eq 'HASH') { |
|
my @inststatuses = &get_inststatuses($inst_results); |
|
if (@inststatuses == 0) { |
|
@inststatuses = ('default'); |
|
} |
|
$rolesarray = \@inststatuses; |
|
} |
|
my %canmodify = |
|
&Apache::lonuserutils::can_modify_userinfo($context,$dom,$userinfo, |
|
$rolesarray); |
|
return %canmodify; |
|
} |
|
|
|
sub get_inststatuses { |
|
my ($insthashref) = @_; |
|
my @inststatuses = (); |
|
if (ref($insthashref) eq 'HASH') { |
|
if (ref($insthashref->{'inststatus'}) eq 'ARRAY') { |
|
@inststatuses = @{$insthashref->{'inststatus'}}; |
|
} |
|
} |
|
return @inststatuses; |
} |
} |
|
|
# ================================================================= Phase Three |
# ================================================================= Phase Three |
sub update_user_data { |
sub update_user_data { |
my ($r) = @_; |
my ($r,$context) = @_; |
my $uhome=&Apache::lonnet::homeserver($env{'form.ccuname'}, |
my $uhome=&Apache::lonnet::homeserver($env{'form.ccuname'}, |
$env{'form.ccdomain'}); |
$env{'form.ccdomain'}); |
# Error messages |
# Error messages |
Line 1467 sub update_user_data {
|
Line 1536 sub update_user_data {
|
my $end = '</span><br /><br />'; |
my $end = '</span><br /><br />'; |
my $rtnlink = '<a href="javascript:backPage(document.userupdate,'. |
my $rtnlink = '<a href="javascript:backPage(document.userupdate,'. |
"'$env{'form.prevphase'}','modify')".'" />'. |
"'$env{'form.prevphase'}','modify')".'" />'. |
&mt('Return to previous page').'</a>'.&Apache::loncommon::end_page(); |
&mt('Return to previous page').'</a>'. |
|
&Apache::loncommon::end_page(); |
|
my $now = time; |
my $title; |
my $title; |
if (exists($env{'form.makeuser'})) { |
if (exists($env{'form.makeuser'})) { |
$title='Set Privileges for New User'; |
$title='Set Privileges for New User'; |
} else { |
} else { |
$title='Modify User Privileges'; |
$title='Modify User Privileges'; |
} |
} |
|
my $newuser = 0; |
my ($jsback,$elements) = &crumb_utilities(); |
my ($jsback,$elements) = &crumb_utilities(); |
my $jscript = '<script type="text/javascript">'."\n". |
my $jscript = '<script type="text/javascript">'."\n". |
$jsback."\n".'</script>'."\n"; |
$jsback."\n".'</script>'."\n"; |
|
my %breadcrumb_text = &singleuser_breadcrumb(); |
$r->print(&Apache::loncommon::start_page($title,$jscript)); |
my $args; |
|
if ($env{'form.popup'}) { |
|
$args->{'no_nav_bar'} = 1; |
|
} else { |
|
$args = undef; |
|
} |
|
$r->print(&Apache::loncommon::start_page($title,$jscript,$args)); |
&Apache::lonhtmlcommon::add_breadcrumb |
&Apache::lonhtmlcommon::add_breadcrumb |
({href=>"javascript:backPage(document.userupdate)", |
({href=>"javascript:backPage(document.userupdate)", |
text=>"Create/modify user", |
text=>$breadcrumb_text{'search'}, |
faq=>282,bug=>'Instructor Interface',}); |
faq=>282,bug=>'Instructor Interface',}); |
if ($env{'form.prevphase'} eq 'userpicked') { |
if ($env{'form.prevphase'} eq 'userpicked') { |
&Apache::lonhtmlcommon::add_breadcrumb |
&Apache::lonhtmlcommon::add_breadcrumb |
({href=>"javascript:backPage(document.userupdate,'get_user_info','select')", |
({href=>"javascript:backPage(document.userupdate,'get_user_info','select')", |
text=>"Select a user", |
text=>$breadcrumb_text{'userpicked'}, |
faq=>282,bug=>'Instructor Interface',}); |
faq=>282,bug=>'Instructor Interface',}); |
} |
} |
&Apache::lonhtmlcommon::add_breadcrumb |
&Apache::lonhtmlcommon::add_breadcrumb |
({href=>"javascript:backPage(document.userupdate,'$env{'form.prevphase'}','modify')", |
({href=>"javascript:backPage(document.userupdate,'$env{'form.prevphase'}','modify')", |
text=>"Set user role", |
text=>$breadcrumb_text{'modify'}, |
faq=>282,bug=>'Instructor Interface',}, |
faq=>282,bug=>'Instructor Interface',}, |
{href=>"/adm/createuser", |
{href=>"/adm/createuser", |
text=>"Result", |
text=>"Result", |
faq=>282,bug=>'Instructor Interface',}); |
faq=>282,bug=>'Instructor Interface',}); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management')); |
my $helpitem = 'Course_Change_Privileges'; |
|
if ($env{'form.action'} eq 'singlestudent') { |
my %disallowed; |
$helpitem = 'Course_Add_Student'; |
|
} |
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management', |
|
$helpitem)); |
$r->print(&update_result_form($uhome)); |
$r->print(&update_result_form($uhome)); |
# Check Inputs |
# Check Inputs |
if (! $env{'form.ccuname'} ) { |
if (! $env{'form.ccuname'} ) { |
Line 1524 sub update_user_data {
|
Line 1604 sub update_user_data {
|
$end.$rtnlink); |
$end.$rtnlink); |
return; |
return; |
} |
} |
|
if ($uhome eq 'no_host') { |
|
$newuser = 1; |
|
} |
if (! exists($env{'form.makeuser'})) { |
if (! exists($env{'form.makeuser'})) { |
# Modifying an existing user, so check the validity of the name |
# Modifying an existing user, so check the validity of the name |
if ($uhome eq 'no_host') { |
if ($uhome eq 'no_host') { |
Line 1561 sub update_user_data {
|
Line 1644 sub update_user_data {
|
return; |
return; |
} |
} |
|
|
|
|
$r->print('<h3>'.&mt('User [_1] in domain [_2]', |
$r->print('<h3>'.&mt('User [_1] in domain [_2]', |
$env{'form.ccuname'}, $env{'form.ccdomain'}).'</h3>'); |
$env{'form.ccuname'}, $env{'form.ccdomain'}).'</h3>'); |
my (%alerts,%rulematch,%inst_results,%curr_rules); |
my (%alerts,%rulematch,%inst_results,%curr_rules); |
Line 1588 sub update_user_data {
|
Line 1670 sub update_user_data {
|
my %checkhash; |
my %checkhash; |
my %checks = ('id' => 1); |
my %checks = ('id' => 1); |
%{$checkhash{$env{'form.ccuname'}.':'.$env{'form.ccdomain'}}} = ( |
%{$checkhash{$env{'form.ccuname'}.':'.$env{'form.ccdomain'}}} = ( |
'newuser' => 1, |
'newuser' => $newuser, |
'id' => $env{'form.cid'}, |
'id' => $env{'form.cid'}, |
); |
); |
if ($env{'form.cid'} ne '') { |
if ($env{'form.cid'} ne '') { |
Line 1622 sub update_user_data {
|
Line 1704 sub update_user_data {
|
$env{'form.cgeneration'},undef,$desiredhost, |
$env{'form.cgeneration'},undef,$desiredhost, |
$env{'form.cpermanentemail'}); |
$env{'form.cpermanentemail'}); |
$r->print(&mt('Generating user').': '.$result); |
$r->print(&mt('Generating user').': '.$result); |
my $home = &Apache::lonnet::homeserver($env{'form.ccuname'}, |
$uhome = &Apache::lonnet::homeserver($env{'form.ccuname'}, |
$env{'form.ccdomain'}); |
$env{'form.ccdomain'}); |
$r->print('<br />'.&mt('Home server').': '.$home.' '. |
if (($uhome ne 'no_host') && ($env{'form.customquota'} == 1)) { |
&Apache::lonnet::hostname($home)); |
my (%changeHash,$newportfolioquota); |
|
if ($env{'form.portfolioquota'} eq '') { |
|
$newportfolioquota = 0; |
|
} else { |
|
$newportfolioquota = $env{'form.portfolioquota'}; |
|
$newportfolioquota =~ s/[^\d\.]//g; |
|
} |
|
my $quotachanged = "a_admin($newportfolioquota,\%changeHash); |
|
if ($quotachanged) { |
|
$changeHash{'firstname'} = $env{'form.cfirstname'}; |
|
$changeHash{'middlename'} = $env{'form.cmiddlename'}; |
|
$changeHash{'lastname'} = $env{'form.clastname'}; |
|
$changeHash{'generation'} = $env{'form.cgeneration'}; |
|
$changeHash{'id'} = $env{'form.cid'}; |
|
$changeHash{'permanentemail'} = $env{'form.cpermanentemail'}; |
|
my $quotachgresult = |
|
&Apache::lonnet::put('environment',\%changeHash, |
|
$env{'form.ccdomain'},$env{'form.ccuname'}); |
|
} |
|
} |
|
$r->print('<br />'.&mt('Home server').': '.$uhome.' '. |
|
&Apache::lonnet::hostname($uhome)); |
} elsif (($env{'form.login'} ne 'nochange') && |
} elsif (($env{'form.login'} ne 'nochange') && |
($env{'form.login'} ne '' )) { |
($env{'form.login'} ne '' )) { |
# Modify user privileges |
# Modify user privileges |
Line 1647 sub update_user_data {
|
Line 1750 sub update_user_data {
|
} |
} |
} |
} |
## |
## |
|
my (@userroles,%userupdate,$cnum,$cdom,$namechanged); |
|
if ($context eq 'course') { |
|
($cnum,$cdom) = &Apache::lonuserutils::get_course_identity(); |
|
} |
if (! $env{'form.makeuser'} ) { |
if (! $env{'form.makeuser'} ) { |
# Check for need to change |
# Check for need to change |
my %userenv = &Apache::lonnet::get |
my %userenv = &Apache::lonnet::get |
Line 1657 sub update_user_data {
|
Line 1764 sub update_user_data {
|
if ($tmp =~ /^(con_lost|error)/i) { |
if ($tmp =~ /^(con_lost|error)/i) { |
%userenv = (); |
%userenv = (); |
} |
} |
# Check to see if we need to change user information |
my $no_forceid_alert; |
foreach my $item ('firstname','middlename','lastname','generation','permanentemail','id') { |
# Check to see if user information can be changed |
|
my %domconfig = |
|
&Apache::lonnet::get_dom('configuration',['usermodification'], |
|
$env{'form.ccdomain'}); |
|
my @statuses = ('active','future'); |
|
my %roles = &Apache::lonnet::get_my_roles($env{'form.ccuname'},$env{'form.ccdomain'},'userroles',\@statuses,undef,$env{'request.role.domain'}); |
|
my ($auname,$audom); |
|
if ($context eq 'author') { |
|
$auname = $env{'user.name'}; |
|
$audom = $env{'user.domain'}; |
|
} |
|
foreach my $item (keys(%roles)) { |
|
my ($rolenum,$roledom,$role) = split(/:/,$item,-1); |
|
if ($context eq 'course') { |
|
if ($cnum ne '' && $cdom ne '') { |
|
if ($rolenum eq $cnum && $roledom eq $cdom) { |
|
if (!grep(/^\Q$role\E$/,@userroles)) { |
|
push(@userroles,$role); |
|
} |
|
} |
|
} |
|
} elsif ($context eq 'author') { |
|
if ($rolenum eq $auname && $roledom eq $audom) { |
|
if (!grep(/^\Q$role\E$/,@userroles)) { |
|
push(@userroles,$role); |
|
} |
|
} |
|
} |
|
} |
|
if ($env{'form.action'} eq 'singlestudent') { |
|
if (!grep(/^st$/,@userroles)) { |
|
push(@userroles,'st'); |
|
} |
|
} else { |
|
# Check for course or co-author roles being activated or re-enabled |
|
if ($context eq 'author' || $context eq 'course') { |
|
foreach my $key (keys(%env)) { |
|
if ($context eq 'author') { |
|
if ($key=~/^form\.act_\Q$audom\E_\Q$auname\E_([^_]+)/) { |
|
if (!grep(/^\Q$1\E$/,@userroles)) { |
|
push(@userroles,$1); |
|
} |
|
} elsif ($key =~/^form\.ren\:\Q$audom\E\/\Q$auname\E_([^_]+)/) { |
|
if (!grep(/^\Q$1\E$/,@userroles)) { |
|
push(@userroles,$1); |
|
} |
|
} |
|
} elsif ($context eq 'course') { |
|
if ($key=~/^form\.act_\Q$cdom\E_\Q$cnum\E_([^_]+)/) { |
|
if (!grep(/^\Q$1\E$/,@userroles)) { |
|
push(@userroles,$1); |
|
} |
|
} elsif ($key =~/^form\.ren\:\Q$cdom\E\/\Q$cnum\E(\/?\w*)_([^_]+)/) { |
|
if (!grep(/^\Q$1\E$/,@userroles)) { |
|
push(@userroles,$1); |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
#Check to see if we can change personal data for the user |
|
my (@mod_disallowed,@longroles); |
|
foreach my $role (@userroles) { |
|
if ($role eq 'cr') { |
|
push(@longroles,'Custom'); |
|
} else { |
|
push(@longroles,&Apache::lonnet::plaintext($role)); |
|
} |
|
} |
|
my @userinfo = ('firstname','middlename','lastname','generation','permanentemail','id'); |
|
my %canmodify = &Apache::lonuserutils::can_modify_userinfo($context,$env{'form.ccdomain'},\@userinfo,\@userroles); |
|
foreach my $item (@userinfo) { |
# Strip leading and trailing whitespace |
# Strip leading and trailing whitespace |
$env{'form.c'.$item} =~ s/(\s+$|^\s+)//g; |
$env{'form.c'.$item} =~ s/(\s+$|^\s+)//g; |
|
if (!$canmodify{$item}) { |
|
if (defined($env{'form.c'.$item})) { |
|
if ($env{'form.c'.$item} ne $userenv{$item}) { |
|
push(@mod_disallowed,$item); |
|
} |
|
} |
|
$env{'form.c'.$item} = $userenv{$item}; |
|
} |
} |
} |
# Check to see if we can change the ID/student number |
# Check to see if we can change the Student/Employee ID |
my $forceid = $env{'form.forceid'}; |
my $forceid = $env{'form.forceid'}; |
my $recurseid = $env{'form.recurseid'}; |
my $recurseid = $env{'form.recurseid'}; |
my $newuser = 0; |
|
my $disallowed_id = 0; |
|
my (%alerts,%rulematch,%idinst_results,%curr_rules,%got_rules); |
my (%alerts,%rulematch,%idinst_results,%curr_rules,%got_rules); |
if (!$forceid) { |
my %uidhash = &Apache::lonnet::idrget($env{'form.ccdomain'}, |
$env{'form.cid'} = $userenv{'id'}; |
$env{'form.ccuname'}); |
} elsif ($env{'form.cid'} ne $userenv{'id'}) { |
if (($uidhash{$env{'form.ccuname'}}) && |
|
($uidhash{$env{'form.ccuname'}}!~/error\:/) && |
|
(!$forceid)) { |
|
if ($env{'form.cid'} ne $uidhash{$env{'form.ccuname'}}) { |
|
$env{'form.cid'} = $userenv{'id'}; |
|
$no_forceid_alert = &mt('New Student/Employee ID does not match existing ID for this user.') |
|
.'<br />' |
|
.&mt("Change is not permitted without checking the 'Force ID change' checkbox on the previous page.") |
|
.'<br />'."\n"; |
|
} |
|
} |
|
if ($env{'form.cid'} ne $userenv{'id'}) { |
my $checkhash; |
my $checkhash; |
my $checks = { 'id' => 1 }; |
my $checks = { 'id' => 1 }; |
$checkhash->{$env{'form.ccuname'}.':'.$env{'form.ccdomain'}} = |
$checkhash->{$env{'form.ccuname'}.':'.$env{'form.ccdomain'}} = |
Line 1681 sub update_user_data {
|
Line 1877 sub update_user_data {
|
\%alerts,\%rulematch,\%idinst_results,\%curr_rules,\%got_rules); |
\%alerts,\%rulematch,\%idinst_results,\%curr_rules,\%got_rules); |
if (ref($alerts{'id'}) eq 'HASH') { |
if (ref($alerts{'id'}) eq 'HASH') { |
if (ref($alerts{'id'}{$env{'form.ccdomain'}}) eq 'HASH') { |
if (ref($alerts{'id'}{$env{'form.ccdomain'}}) eq 'HASH') { |
$disallowed_id = 1; |
$env{'form.cid'} = $userenv{'id'}; |
} |
} |
} |
} |
} |
} |
my ($quotachanged,$namechanged,$oldportfolioquota,$newportfolioquota, |
my ($quotachanged,$oldportfolioquota,$newportfolioquota, |
$inststatus,$isdefault,$defquotatext); |
$inststatus,$oldisdefault,$newisdefault,$olddefquotatext, |
|
$newdefquotatext); |
my ($defquota,$settingstatus) = |
my ($defquota,$settingstatus) = |
&Apache::loncommon::default_quota($env{'form.ccdomain'},$inststatus); |
&Apache::loncommon::default_quota($env{'form.ccdomain'},$inststatus); |
|
my $showquota; |
|
if (&Apache::lonnet::allowed('mpq',$env{'form.ccdomain'})) { |
|
$showquota = 1; |
|
} |
my %changeHash; |
my %changeHash; |
|
$changeHash{'portfolioquota'} = $userenv{'portfolioquota'}; |
if ($userenv{'portfolioquota'} ne '') { |
if ($userenv{'portfolioquota'} ne '') { |
$oldportfolioquota = $userenv{'portfolioquota'}; |
$oldportfolioquota = $userenv{'portfolioquota'}; |
if ($env{'form.customquota'} == 1) { |
if ($env{'form.customquota'} == 1) { |
Line 1699 sub update_user_data {
|
Line 1901 sub update_user_data {
|
$newportfolioquota = $env{'form.portfolioquota'}; |
$newportfolioquota = $env{'form.portfolioquota'}; |
$newportfolioquota =~ s/[^\d\.]//g; |
$newportfolioquota =~ s/[^\d\.]//g; |
} |
} |
if ($newportfolioquota != $userenv{'portfolioquota'}) { |
if ($newportfolioquota != $oldportfolioquota) { |
$quotachanged = "a_admin($newportfolioquota,\%changeHash); |
$quotachanged = "a_admin($newportfolioquota,\%changeHash); |
} |
} |
} else { |
} else { |
$quotachanged = "a_admin('',\%changeHash); |
$quotachanged = "a_admin('',\%changeHash); |
$newportfolioquota = $defquota; |
$newportfolioquota = $defquota; |
$isdefault = 1; |
$newisdefault = 1; |
} |
} |
} else { |
} else { |
|
$oldisdefault = 1; |
$oldportfolioquota = $defquota; |
$oldportfolioquota = $defquota; |
if ($env{'form.customquota'} == 1) { |
if ($env{'form.customquota'} == 1) { |
if ($env{'form.portfolioquota'} eq '') { |
if ($env{'form.portfolioquota'} eq '') { |
Line 1719 sub update_user_data {
|
Line 1922 sub update_user_data {
|
$quotachanged = "a_admin($newportfolioquota,\%changeHash); |
$quotachanged = "a_admin($newportfolioquota,\%changeHash); |
} else { |
} else { |
$newportfolioquota = $defquota; |
$newportfolioquota = $defquota; |
$isdefault = 1; |
$newisdefault = 1; |
} |
} |
} |
} |
if ($isdefault) { |
if ($oldisdefault) { |
if ($settingstatus eq '') { |
$olddefquotatext = &get_defaultquota_text($settingstatus); |
$defquotatext = &mt('(default)'); |
} |
} else { |
if ($newisdefault) { |
my ($usertypes,$order) = |
$newdefquotatext = &get_defaultquota_text($settingstatus); |
&Apache::lonnet::retrieve_inst_usertypes($env{'form.ccdomain'}); |
|
if ($usertypes->{$settingstatus} eq '') { |
|
$defquotatext = &mt('(default)'); |
|
} else { |
|
$defquotatext = &mt('(default for [_1])',$usertypes->{$settingstatus}); |
|
} |
|
} |
|
} |
} |
if (&Apache::lonnet::allowed('mau',$env{'form.ccdomain'}) && |
if ($env{'form.cfirstname'} ne $userenv{'firstname'} || |
($env{'form.cfirstname'} ne $userenv{'firstname'} || |
$env{'form.cmiddlename'} ne $userenv{'middlename'} || |
$env{'form.cmiddlename'} ne $userenv{'middlename'} || |
$env{'form.clastname'} ne $userenv{'lastname'} || |
$env{'form.clastname'} ne $userenv{'lastname'} || |
$env{'form.cgeneration'} ne $userenv{'generation'} || |
$env{'form.cgeneration'} ne $userenv{'generation'} || |
$env{'form.cid'} ne $userenv{'id'} || |
$env{'form.cid'} ne $userenv{'id'} || |
$env{'form.cpermanentemail'} ne $userenv{'permanentemail'} ) { |
$env{'form.cpermanentemail'} ne $userenv{'permanentemail'} )) { |
|
$namechanged = 1; |
$namechanged = 1; |
} |
} |
if ($namechanged) { |
if ($namechanged || $quotachanged) { |
# Make the change |
|
$changeHash{'firstname'} = $env{'form.cfirstname'}; |
$changeHash{'firstname'} = $env{'form.cfirstname'}; |
$changeHash{'middlename'} = $env{'form.cmiddlename'}; |
$changeHash{'middlename'} = $env{'form.cmiddlename'}; |
$changeHash{'lastname'} = $env{'form.clastname'}; |
$changeHash{'lastname'} = $env{'form.clastname'}; |
$changeHash{'generation'} = $env{'form.cgeneration'}; |
$changeHash{'generation'} = $env{'form.cgeneration'}; |
$changeHash{'id'} = $env{'form.cid'}; |
$changeHash{'id'} = $env{'form.cid'}; |
$changeHash{'permanentemail'} = $env{'form.cpermanentemail'}; |
$changeHash{'permanentemail'} = $env{'form.cpermanentemail'}; |
my $putresult = &Apache::lonnet::put |
my ($quotachgresult,$namechgresult); |
('environment',\%changeHash, |
if ($quotachanged) { |
$env{'form.ccdomain'},$env{'form.ccuname'}); |
$quotachgresult = |
if ($putresult eq 'ok') { |
&Apache::lonnet::put('environment',\%changeHash, |
|
$env{'form.ccdomain'},$env{'form.ccuname'}); |
|
} |
|
if ($namechanged) { |
|
# Make the change |
|
$namechgresult = |
|
&Apache::lonnet::modifyuser($env{'form.ccdomain'}, |
|
$env{'form.ccuname'},$changeHash{'id'},undef,undef, |
|
$changeHash{'firstname'},$changeHash{'middlename'}, |
|
$changeHash{'lastname'},$changeHash{'generation'}, |
|
$changeHash{'id'},undef,$changeHash{'permanentemail'}); |
|
%userupdate = ( |
|
lastname => $env{'form.clastname'}, |
|
middlename => $env{'form.cmiddlename'}, |
|
firstname => $env{'form.cfirstname'}, |
|
generation => $env{'form.cgeneration'}, |
|
id => $env{'form.cid'}, |
|
); |
|
} |
|
if (($namechanged && $namechgresult eq 'ok') || |
|
($quotachanged && $quotachgresult eq 'ok')) { |
# Tell the user we changed the name |
# Tell the user we changed the name |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'uic' => "User Information Changed", |
'uic' => "User Information Changed", |
Line 1763 sub update_user_data {
|
Line 1977 sub update_user_data {
|
'mddl' => "middle", |
'mddl' => "middle", |
'lst' => "last", |
'lst' => "last", |
'gen' => "generation", |
'gen' => "generation", |
'id' => "ID/Student number", |
'id' => "Student/Employee ID", |
'mail' => "permanent e-mail", |
'mail' => "permanent e-mail", |
'disk' => "disk space allocated to portfolio files", |
'disk' => "disk space allocated to portfolio files", |
'prvs' => "Previous", |
'prvs' => "Previous", |
'chto' => "Changed To" |
'chto' => "Changed To" |
); |
); |
|
$r->print('<h4>'.$lt{'uic'}.'</h4>'. |
|
&Apache::loncommon::start_data_table(). |
|
&Apache::loncommon::start_data_table_header_row()); |
$r->print(<<"END"); |
$r->print(<<"END"); |
<table border="2"> |
<th> </th> |
<caption>$lt{'uic'}</caption> |
|
<tr><th> </th> |
|
<th>$lt{'frst'}</th> |
<th>$lt{'frst'}</th> |
<th>$lt{'mddl'}</th> |
<th>$lt{'mddl'}</th> |
<th>$lt{'lst'}</th> |
<th>$lt{'lst'}</th> |
<th>$lt{'gen'}</th> |
<th>$lt{'gen'}</th> |
<th>$lt{'id'}</th> |
<th>$lt{'id'}</th> |
<th>$lt{'mail'}</th> |
<th>$lt{'mail'}</th> |
<th>$lt{'disk'}</th></tr> |
END |
<tr><td>$lt{'prvs'}</td> |
if ($showquota) { |
|
$r->print(" |
|
<th>$lt{'disk'}</th>\n"); |
|
} |
|
$r->print(&Apache::loncommon::end_data_table_header_row(). |
|
&Apache::loncommon::start_data_table_row()); |
|
$r->print(<<"END"); |
|
<td><b>$lt{'prvs'}</b></td> |
<td>$userenv{'firstname'} </td> |
<td>$userenv{'firstname'} </td> |
<td>$userenv{'middlename'} </td> |
<td>$userenv{'middlename'} </td> |
<td>$userenv{'lastname'} </td> |
<td>$userenv{'lastname'} </td> |
<td>$userenv{'generation'} </td> |
<td>$userenv{'generation'} </td> |
<td>$userenv{'id'}</td> |
<td>$userenv{'id'}</td> |
<td>$userenv{'permanentemail'} </td> |
<td>$userenv{'permanentemail'} </td> |
<td>$oldportfolioquota Mb</td> |
END |
</tr> |
if ($showquota) { |
<tr><td>$lt{'chto'}</td> |
$r->print(" |
|
<td>$oldportfolioquota Mb $olddefquotatext </td>\n"); |
|
} |
|
$r->print(&Apache::loncommon::end_data_table_row(). |
|
&Apache::loncommon::start_data_table_row()); |
|
$r->print(<<"END"); |
|
<td><b>$lt{'chto'}</b></td> |
<td>$env{'form.cfirstname'} </td> |
<td>$env{'form.cfirstname'} </td> |
<td>$env{'form.cmiddlename'} </td> |
<td>$env{'form.cmiddlename'} </td> |
<td>$env{'form.clastname'} </td> |
<td>$env{'form.clastname'} </td> |
<td>$env{'form.cgeneration'} </td> |
<td>$env{'form.cgeneration'} </td> |
<td>$env{'form.cid'} </td> |
<td>$env{'form.cid'} </td> |
<td>$env{'form.cpermanentemail'} </td> |
<td>$env{'form.cpermanentemail'} </td> |
<td>$newportfolioquota Mb $defquotatext </td></tr> |
|
</table> |
|
END |
END |
if (($forceid) && ($recurseid) && (!$disallowed_id) && |
if ($showquota) { |
(&Apache::lonnet::allowed('mau',$env{'form.ccdomain'}))) { |
$r->print(" |
my %userupdate = ( |
<td>$newportfolioquota Mb $newdefquotatext </td>\n"); |
lastname => $env{'form.clasaname'}, |
} |
middlename => $env{'form.cmiddlename'}, |
$r->print(&Apache::loncommon::end_data_table_row(). |
firstname => $env{'form.cfirstname'}, |
&Apache::loncommon::end_data_table().'<br />'); |
generation => $env{'fora.cgeneration'}, |
if ($env{'form.cid'} ne $userenv{'id'}) { |
id => $env{'form.cid'}, |
&Apache::lonnet::idput($env{'form.ccdomain'}, |
); |
($env{'form.ccuname'} => $env{'form.cid'})); |
my $idresult = &propagate_id_change($env{'form.ccname'}, |
if (($recurseid) && |
$env{'form.ccdomain'},\%userupdate); |
(&Apache::lonnet::allowed('mau',$env{'form.ccdomain'}))) { |
$r->print('<br />'.$idresult.'<br />'); |
my $idresult = |
|
&Apache::lonuserutils::propagate_id_change( |
|
$env{'form.ccuname'},$env{'form.ccdomain'}, |
|
\%userupdate); |
|
$r->print('<br />'.$idresult.'<br />'); |
|
} |
} |
} |
if (($env{'form.ccdomain'} eq $env{'user.domain'}) && |
if (($env{'form.ccdomain'} eq $env{'user.domain'}) && |
($env{'form.ccuname'} eq $env{'user.name'})) { |
($env{'form.ccuname'} eq $env{'user.name'})) { |
Line 1818 END
|
Line 2049 END
|
foreach my $key (keys(%changeHash)) { |
foreach my $key (keys(%changeHash)) { |
$newenvhash{'environment.'.$key} = $changeHash{$key}; |
$newenvhash{'environment.'.$key} = $changeHash{$key}; |
} |
} |
&Apache::lonnet::appenv(%newenvhash); |
&Apache::lonnet::appenv(\%newenvhash); |
} |
} |
} else { # error occurred |
} else { # error occurred |
$r->print('<span class="LC_error">'.&mt('Unable to successfully change environment for').' '. |
$r->print('<span class="LC_error">'.&mt('Unable to successfully change environment for').' '. |
$env{'form.ccuname'}.' '.&mt('in domain').' '. |
$env{'form.ccuname'}.' '.&mt('in domain').' '. |
$env{'form.ccdomain'}.'</span>'); |
$env{'form.ccdomain'}.'</span><br />'); |
} |
} |
} else { # End of if ($env ... ) logic |
} else { # End of if ($env ... ) logic |
my $putresult; |
# They did not want to change the users name or quota but we can |
if ($quotachanged) { |
# still tell them what the name and quota are |
$putresult = &Apache::lonnet::put |
|
('environment',\%changeHash, |
|
$env{'form.ccdomain'},$env{'form.ccuname'}); |
|
} |
|
# They did not want to change the users name but we can |
|
# still tell them what the name is |
|
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'id' => "ID/Student number", |
'id' => "Student/Employee ID", |
'mail' => "Permanent e-mail", |
'mail' => "Permanent e-mail", |
'disk' => "Disk space allocated to user's portfolio files", |
'disk' => "Disk space allocated to user's portfolio files", |
); |
); |
$r->print(<<"END"); |
$r->print(<<"END"); |
<h4>$userenv{'firstname'} $userenv{'middlename'} $userenv{'lastname'} $userenv{'generation'} |
<h4>$userenv{'firstname'} $userenv{'middlename'} $userenv{'lastname'} $userenv{'generation'} |
END |
END |
if ($userenv{'permanentemail'} eq '') { |
if ($userenv{'permanentemail'} ne '') { |
$r->print('</h4>'); |
$r->print('<br />['.$lt{'mail'}.': '. |
|
$userenv{'permanentemail'}.']'); |
|
} |
|
if ($showquota) { |
|
$r->print('<br />['.$lt{'disk'}.': '.$oldportfolioquota.' Mb '. |
|
$olddefquotatext.']'); |
|
} |
|
$r->print('</h4>'); |
|
} |
|
if (@mod_disallowed) { |
|
my ($rolestr,$contextname); |
|
if (@longroles > 0) { |
|
$rolestr = join(', ',@longroles); |
} else { |
} else { |
$r->print(' ('.$lt{'mail'}.': '. |
$rolestr = &mt('No roles'); |
$userenv{'permanentemail'}.')</h4>'); |
|
} |
} |
if ($putresult eq 'ok') { |
if ($context eq 'course') { |
if ($oldportfolioquota != $newportfolioquota) { |
$contextname = &mt('course'); |
$r->print('<h4>'.$lt{'disk'}.': '.$newportfolioquota.' Mb '. |
} elsif ($context eq 'author') { |
$defquotatext.'</h4>'); |
$contextname = &mt('co-author'); |
&Apache::lonnet::appenv('environment.portfolioquota' => $changeHash{'portfolioquota'}); |
} |
|
$r->print(&mt('The following fields were not updated: ').'<ul>'); |
|
my %fieldtitles = &Apache::loncommon::personal_data_fieldtitles(); |
|
foreach my $field (@mod_disallowed) { |
|
$r->print('<li>'.$fieldtitles{$field}.'</li>'."\n"); |
|
} |
|
$r->print('</ul>'); |
|
if (@mod_disallowed == 1) { |
|
$r->print(&mt("You do not have the authority to change this field given the user's current set of active/future [_1] roles:",$contextname)); |
|
} else { |
|
$r->print(&mt("You do not have the authority to change these fields given the user's current set of active/future [_1] roles:",$contextname)); |
|
} |
|
$r->print('<span class="LC_cusr_emph">'.$rolestr.'</span><br />'. |
|
&mt('Contact your <a href="[_1]">helpdesk</a> for more information.',"javascript:helpMenu('display')").'<br />'); |
|
} |
|
$r->print('<span class="LC_warning">' |
|
.$no_forceid_alert |
|
.&Apache::lonuserutils::print_namespacing_alerts($env{'form.ccdomain'},\%alerts,\%curr_rules) |
|
.'</span>'); |
|
} |
|
if ($env{'form.action'} eq 'singlestudent') { |
|
&enroll_single_student($r,$uhome,$amode,$genpwd,$now,$newuser,$context); |
|
$r->print('<p><a href="javascript:backPage(document.userupdate)">'. |
|
&mt('Enroll Another Student').'</a></p>'); |
|
} else { |
|
my @rolechanges = &update_roles($r,$context); |
|
if ($namechanged) { |
|
if ($context eq 'course') { |
|
if (@userroles > 0) { |
|
if ((@rolechanges == 0) || |
|
(!(grep(/^st$/,@rolechanges)))) { |
|
if (grep(/^st$/,@userroles)) { |
|
my $classlistupdated = |
|
&Apache::lonuserutils::update_classlist($cdom, |
|
$cnum,$env{'form.ccdomain'}, |
|
$env{'form.ccuname'},\%userupdate); |
|
} |
|
} |
} |
} |
} |
} |
} |
} |
|
my $userinfo = &Apache::loncommon::plainname($env{'form.ccuname'}, |
|
$env{'form.ccdomain'}); |
|
if ($env{'form.popup'}) { |
|
$r->print('<p><a href="javascript:window.close()">'.&mt('Close window').'</a></p>'); |
|
} else { |
|
$r->print('<p><a href="javascript:backPage(document.userupdate,'."'$env{'form.prevphase'}','modify'".')">' |
|
.&mt('Modify this user: [_1]','<span class="LC_cusr_emph">'.$env{'form.ccuname'}.':'.$env{'form.ccdomain'}.' ('.$userinfo.')</span>').'</a>' |
|
.(' 'x5).'<a href="javascript:backPage(document.userupdate)">' |
|
.&mt('Create/Modify Another User').'</a></p>'); |
|
} |
} |
} |
## |
$r->print(&Apache::loncommon::end_page()); |
|
} |
|
|
|
sub update_roles { |
|
my ($r,$context) = @_; |
my $now=time; |
my $now=time; |
my $rolechanges = 0; |
my @rolechanges; |
|
my %disallowed; |
$r->print('<h3>'.&mt('Modifying Roles').'</h3>'); |
$r->print('<h3>'.&mt('Modifying Roles').'</h3>'); |
foreach my $key (keys (%env)) { |
foreach my $key (keys (%env)) { |
next if (! $env{$key}); |
next if (! $env{$key}); |
Line 1872 END
|
Line 2160 END
|
my $result = |
my $result = |
&Apache::lonnet::revokerole($env{'form.ccdomain'}, |
&Apache::lonnet::revokerole($env{'form.ccdomain'}, |
$env{'form.ccuname'}, |
$env{'form.ccuname'}, |
$scope,$role); |
$scope,$role,'','',$context); |
$r->print(&mt('Revoking [_1] in [_2]: [_3]', |
$r->print(&mt('Revoking [_1] in [_2]: [_3]', |
$role,$scope,'<b>'.$result.'</b>').'<br />'); |
$role,$scope,'<b>'.$result.'</b>').'<br />'); |
if ($role eq 'st') { |
if ($role eq 'st') { |
my $result = &classlist_drop($scope,$env{'form.ccuname'}, |
my $result = |
$env{'form.ccdomain'},$now); |
&Apache::lonuserutils::classlist_drop($scope, |
|
$env{'form.ccuname'},$env{'form.ccdomain'}, |
|
$now); |
$r->print($result); |
$r->print($result); |
} |
} |
|
if (!grep(/^\Q$role\E$/,@rolechanges)) { |
|
push(@rolechanges,$role); |
|
} |
} |
} |
if ($key=~m{^form\.rev\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}s) { |
if ($key=~m{^form\.rev\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}s) { |
# Revoke custom role |
# Revoke custom role |
$r->print(&mt('Revoking custom role:'). |
$r->print(&mt('Revoking custom role:'). |
' '.$4.' by '.$3.':'.$2.' in '.$1.': <b>'. |
' '.$4.' by '.$3.':'.$2.' in '.$1.': <b>'. |
&Apache::lonnet::revokecustomrole($env{'form.ccdomain'}, |
&Apache::lonnet::revokecustomrole($env{'form.ccdomain'}, |
$env{'form.ccuname'},$1,$2,$3,$4). |
$env{'form.ccuname'},$1,$2,$3,$4,'','',$context). |
'</b><br />'); |
'</b><br />'); |
|
if (!grep(/^cr$/,@rolechanges)) { |
|
push(@rolechanges,'cr'); |
|
} |
} |
} |
$rolechanges ++; |
|
} elsif ($key=~/^form\.del/) { |
} elsif ($key=~/^form\.del/) { |
if ($key=~/^form\.del\:([^\_]+)\_([^\_\.]+)$/) { |
if ($key=~/^form\.del\:([^\_]+)\_([^\_\.]+)$/) { |
# Delete standard role |
# Delete standard role |
Line 1897 END
|
Line 2192 END
|
my $result = |
my $result = |
&Apache::lonnet::assignrole($env{'form.ccdomain'}, |
&Apache::lonnet::assignrole($env{'form.ccdomain'}, |
$env{'form.ccuname'}, |
$env{'form.ccuname'}, |
$scope,$role,$now,0,1); |
$scope,$role,$now,0,1,'', |
|
$context); |
$r->print(&mt('Deleting [_1] in [_2]: [_3]',$role,$scope, |
$r->print(&mt('Deleting [_1] in [_2]: [_3]',$role,$scope, |
'<b>'.$result.'</b>').'<br />'); |
'<b>'.$result.'</b>').'<br />'); |
if ($role eq 'st') { |
if ($role eq 'st') { |
my $result = &classlist_drop($scope,$env{'form.ccuname'}, |
my $result = |
$env{'form.ccdomain'},$now); |
&Apache::lonuserutils::classlist_drop($scope, |
|
$env{'form.ccuname'},$env{'form.ccdomain'}, |
|
$now); |
$r->print($result); |
$r->print($result); |
} |
} |
|
if (!grep(/^\Q$role\E$/,@rolechanges)) { |
|
push(@rolechanges,$role); |
|
} |
} |
} |
if ($key=~m{^form\.del\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}) { |
if ($key=~m{^form\.del\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}) { |
my ($url,$rdom,$rnam,$rolename) = ($1,$2,$3,$4); |
my ($url,$rdom,$rnam,$rolename) = ($1,$2,$3,$4); |
Line 1913 END
|
Line 2214 END
|
$rolename,$rnam,$rdom,$url).': <b>'. |
$rolename,$rnam,$rdom,$url).': <b>'. |
&Apache::lonnet::assigncustomrole($env{'form.ccdomain'}, |
&Apache::lonnet::assigncustomrole($env{'form.ccdomain'}, |
$env{'form.ccuname'},$url,$rdom,$rnam,$rolename,$now, |
$env{'form.ccuname'},$url,$rdom,$rnam,$rolename,$now, |
0,1).'</b><br />'); |
0,1,$context).'</b><br />'); |
|
if (!grep(/^cr$/,@rolechanges)) { |
|
push(@rolechanges,'cr'); |
|
} |
} |
} |
$rolechanges ++; |
|
} elsif ($key=~/^form\.ren/) { |
} elsif ($key=~/^form\.ren/) { |
my $udom = $env{'form.ccdomain'}; |
my $udom = $env{'form.ccdomain'}; |
my $uname = $env{'form.ccuname'}; |
my $uname = $env{'form.ccuname'}; |
Line 1928 END
|
Line 2231 END
|
if ($role eq 'st') { |
if ($role eq 'st') { |
if ($url =~ m-^/($match_domain)/($match_courseid)/?(\w*)$-) { |
if ($url =~ m-^/($match_domain)/($match_courseid)/?(\w*)$-) { |
my $result = &Apache::loncommon::commit_studentrole(\$logmsg,$udom,$uname,$url,$role,$now,0,$1,$2,$3); |
my $result = &Apache::loncommon::commit_studentrole(\$logmsg,$udom,$uname,$url,$role,$now,0,$1,$2,$3); |
if (($result =~ /^error/) || ($result eq 'not_in_class') || ($result eq 'unknown_course')) { |
if (($result =~ /^error/) || ($result eq 'not_in_class') || ($result eq 'unknown_course') || ($result eq 'refused')) { |
$output = "Error: $result\n"; |
if ($result eq 'refused' && $logmsg) { |
|
$output = $logmsg; |
|
} else { |
|
$output = "Error: $result\n"; |
|
} |
} else { |
} else { |
$output = &mt('Assigning').' '.$role.' in '.$url. |
$output = &mt('Assigning').' '.$role.' in '.$url. |
&mt('starting').' '.localtime($now). |
&mt('starting').' '.localtime($now). |
Line 1939 END
|
Line 2246 END
|
} |
} |
} else { |
} else { |
my $result=&Apache::lonnet::assignrole($env{'form.ccdomain'}, |
my $result=&Apache::lonnet::assignrole($env{'form.ccdomain'}, |
$env{'form.ccuname'},$url,$role,0,$now); |
$env{'form.ccuname'},$url,$role,0,$now,'','', |
|
$context); |
$output = &mt('Re-enabling [_1] in [_2]: <b>[_3]</b>', |
$output = &mt('Re-enabling [_1] in [_2]: <b>[_3]</b>', |
$role,$url,$result).'<br />'; |
$role,$url,$result).'<br />'; |
} |
} |
$r->print($output); |
$r->print($output); |
|
if (!grep(/^\Q$role\E$/,@rolechanges)) { |
|
push(@rolechanges,$role); |
|
} |
} |
} |
# Re-enable custom role |
# Re-enable custom role |
if ($key=~m{^form\.ren\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}) { |
if ($key=~m{^form\.ren\:([^_]+)_cr\.cr/($match_domain)/($match_username)/(\w+)$}) { |
my ($url,$rdom,$rnam,$rolename) = ($1,$2,$3,$4); |
my ($url,$rdom,$rnam,$rolename) = ($1,$2,$3,$4); |
my $result = &Apache::lonnet::assigncustomrole( |
my $result = &Apache::lonnet::assigncustomrole( |
$env{'form.ccdomain'}, $env{'form.ccuname'}, |
$env{'form.ccdomain'}, $env{'form.ccuname'}, |
$url,$rdom,$rnam,$rolename,0,$now); |
$url,$rdom,$rnam,$rolename,0,$now,undef,$context); |
$r->print(&mt('Re-enabling custom role [_1] by [_2]@[_3] in [_4] : <b>[_5]</b>', |
$r->print(&mt('Re-enabling custom role [_1] by [_2]@[_3] in [_4] : <b>[_5]</b>', |
$rolename,$rnam,$rdom,$url,$result).'<br />'); |
$rolename,$rnam,$rdom,$url,$result).'<br />'); |
|
if (!grep(/^cr$/,@rolechanges)) { |
|
push(@rolechanges,'cr'); |
|
} |
} |
} |
$rolechanges ++; |
|
} elsif ($key=~/^form\.act/) { |
} elsif ($key=~/^form\.act/) { |
my $udom = $env{'form.ccdomain'}; |
my $udom = $env{'form.ccdomain'}; |
my $uname = $env{'form.ccuname'}; |
my $uname = $env{'form.ccuname'}; |
Line 1975 END
|
Line 2288 END
|
my %sections = (); |
my %sections = (); |
my $num_sections = &build_roles($env{'form.sec_'.$full},\%sections,$5); |
my $num_sections = &build_roles($env{'form.sec_'.$full},\%sections,$5); |
if ($num_sections == 0) { |
if ($num_sections == 0) { |
$r->print(&Apache::loncommon::commit_customrole($udom,$uname,$url,$three,$four,$five,$start,$end)); |
$r->print(&Apache::loncommon::commit_customrole($udom,$uname,$url,$three,$four,$five,$start,$end,$context)); |
} else { |
} else { |
my %curr_groups = |
my %curr_groups = |
&Apache::longroup::coursegroups($one,$two); |
&Apache::longroup::coursegroups($one,$two); |
Line 1986 END
|
Line 2299 END
|
next; |
next; |
} |
} |
my $securl = $url.'/'.$sec; |
my $securl = $url.'/'.$sec; |
$r->print(&Apache::loncommon::commit_customrole($udom,$uname,$securl,$three,$four,$five,$start,$end)); |
$r->print(&Apache::loncommon::commit_customrole($udom,$uname,$securl,$three,$four,$five,$start,$end,$context)); |
} |
} |
} |
} |
|
if (!grep(/^cr$/,@rolechanges)) { |
|
push(@rolechanges,'cr'); |
|
} |
} elsif ($key=~/^form\.act\_($match_domain)\_($match_name)\_([^\_]+)$/) { |
} elsif ($key=~/^form\.act\_($match_domain)\_($match_name)\_([^\_]+)$/) { |
# Activate roles for sections with 3 id numbers |
# Activate roles for sections with 3 id numbers |
# set start, end times, and the url for the class |
# set start, end times, and the url for the class |
Line 2005 END
|
Line 2321 END
|
my %sections = (); |
my %sections = (); |
my $num_sections = &build_roles($env{'form.sec_'.$one.'_'.$two.'_'.$three},\%sections,$three); |
my $num_sections = &build_roles($env{'form.sec_'.$one.'_'.$two.'_'.$three},\%sections,$three); |
if ($num_sections == 0) { |
if ($num_sections == 0) { |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$three,$start,$end,$one,$two,'')); |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$three,$start,$end,$one,$two,'',$context)); |
} else { |
} else { |
my %curr_groups = |
my %curr_groups = |
&Apache::longroup::coursegroups($one,$two); |
&Apache::longroup::coursegroups($one,$two); |
Line 2019 END
|
Line 2335 END
|
next; |
next; |
} |
} |
my $securl = $url.'/'.$sec; |
my $securl = $url.'/'.$sec; |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$securl,$three,$start,$end,$one,$two,$sec)); |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$securl,$three,$start,$end,$one,$two,$sec,$context)); |
} else { |
} else { |
$emptysec = 1; |
$emptysec = 1; |
} |
} |
} |
} |
if ($emptysec) { |
if ($emptysec) { |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$three,$start,$end,$one,$two,'')); |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$three,$start,$end,$one,$two,'',$context)); |
} |
} |
} |
} |
|
if (!grep(/^\Q$three\E$/,@rolechanges)) { |
|
push(@rolechanges,$three); |
|
} |
} elsif ($key=~/^form\.act\_([^\_]+)\_([^\_]+)$/) { |
} elsif ($key=~/^form\.act\_([^\_]+)\_([^\_]+)$/) { |
# Activate roles for sections with two id numbers |
# Activate roles for sections with two id numbers |
# set start, end times, and the url for the class |
# set start, end times, and the url for the class |
Line 2037 END
|
Line 2356 END
|
my $end = ( $env{'form.end_'.$1.'_'.$2} ? |
my $end = ( $env{'form.end_'.$1.'_'.$2} ? |
$env{'form.end_'.$1.'_'.$2} : |
$env{'form.end_'.$1.'_'.$2} : |
0 ); |
0 ); |
my $url='/'.$1.'/'; |
my $one = $1; |
|
my $two = $2; |
|
my $url='/'.$one.'/'; |
# split multiple sections |
# split multiple sections |
my %sections = (); |
my %sections = (); |
my $num_sections = &build_roles($env{'form.sec_'.$1.'_'.$2},\%sections,$2); |
my $num_sections = &build_roles($env{'form.sec_'.$one.'_'.$two},\%sections,$two); |
if ($num_sections == 0) { |
if ($num_sections == 0) { |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$2,$start,$end,$1,undef,'')); |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$two,$start,$end,$one,undef,'',$context)); |
} else { |
} else { |
my $emptysec = 0; |
my $emptysec = 0; |
foreach my $sec (sort {$a cmp $b} keys %sections) { |
foreach my $sec (sort {$a cmp $b} keys %sections) { |
if ($sec ne '') { |
if ($sec ne '') { |
my $securl = $url.'/'.$sec; |
my $securl = $url.'/'.$sec; |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$securl,$2,$start,$end,$1,undef,$sec)); |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$securl,$two,$start,$end,$one,undef,$sec,$context)); |
} else { |
} else { |
$emptysec = 1; |
$emptysec = 1; |
} |
} |
} |
} |
if ($emptysec) { |
if ($emptysec) { |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$2,$start,$end,$1,undef,'')); |
$r->print(&Apache::loncommon::commit_standardrole($udom,$uname,$url,$two,$start,$end,$one,undef,'',$context)); |
} |
} |
} |
} |
|
if (!grep(/^\Q$two\E$/,@rolechanges)) { |
|
push(@rolechanges,$two); |
|
} |
} else { |
} else { |
$r->print('<p><span class="LC_error">'.&mt('ERROR').': '.&mt('Unknown command').' <tt>'.$key.'</tt></span></p><br />'); |
$r->print('<p><span class="LC_error">'.&mt('ERROR').': '.&mt('Unknown command').' <tt>'.$key.'</tt></span></p><br />'); |
} |
} |
Line 2068 END
|
Line 2392 END
|
} |
} |
$r->print(' '.&mt('Please <a href="javascript:history.go(-1)">go back</a> and choose a different section name.').'</p><br />'); |
$r->print(' '.&mt('Please <a href="javascript:history.go(-1)">go back</a> and choose a different section name.').'</p><br />'); |
} |
} |
$rolechanges ++; |
|
} |
} |
} # End of foreach (keys(%env)) |
} # End of foreach (keys(%env)) |
# Flush the course logs so reverse user roles immediately updated |
# Flush the course logs so reverse user roles immediately updated |
&Apache::lonnet::flushcourselogs(); |
&Apache::lonnet::flushcourselogs(); |
if (!$rolechanges) { |
if (@rolechanges == 0) { |
$r->print(&mt('No roles to modify')); |
$r->print(&mt('No roles to modify')); |
} |
} |
$r->print(&Apache::loncommon::end_page()); |
return @rolechanges; |
|
} |
|
|
|
sub enroll_single_student { |
|
my ($r,$uhome,$amode,$genpwd,$now,$newuser,$context) = @_; |
|
$r->print('<h3>'.&mt('Enrolling Student').'</h3>'); |
|
|
|
# Remove non alphanumeric values from section |
|
$env{'form.sections'}=~s/\W//g; |
|
|
|
# Clean out any old student roles the user has in this class. |
|
&Apache::lonuserutils::modifystudent($env{'form.ccdomain'}, |
|
$env{'form.ccuname'},$env{'request.course.id'},undef,$uhome); |
|
my ($startdate,$enddate) = &Apache::lonuserutils::get_dates_from_form(); |
|
my $enroll_result = |
|
&Apache::lonnet::modify_student_enrollment($env{'form.ccdomain'}, |
|
$env{'form.ccuname'},$env{'form.cid'},$env{'form.cfirstname'}, |
|
$env{'form.cmiddlename'},$env{'form.clastname'}, |
|
$env{'form.generation'},$env{'form.sections'},$enddate, |
|
$startdate,'manual',undef,$env{'request.course.id'},'',$context); |
|
if ($enroll_result =~ /^ok/) { |
|
$r->print(&mt('<b>[_1]</b> enrolled',$env{'form.ccuname'}.':'.$env{'form.ccdomain'})); |
|
if ($env{'form.sections'} ne '') { |
|
$r->print(' '.&mt('in section [_1]',$env{'form.sections'})); |
|
} |
|
my ($showstart,$showend); |
|
if ($startdate <= $now) { |
|
$showstart = &mt('Access starts immediately'); |
|
} else { |
|
$showstart = &mt('Access starts: ').&Apache::lonlocal::locallocaltime($startdate); |
|
} |
|
if ($enddate == 0) { |
|
$showend = &mt('ends: no ending date'); |
|
} else { |
|
$showend = &mt('ends: ').&Apache::lonlocal::locallocaltime($enddate); |
|
} |
|
$r->print('.<br />'.$showstart.'; '.$showend); |
|
if ($startdate <= $now && !$newuser) { |
|
$r->print("<p> ".&mt('If the student is currently logged-in to LON-CAPA, the new role will be available when the student next logs in.')."</p>"); |
|
} |
|
} else { |
|
$r->print(&mt('unable to enroll').": ".$enroll_result); |
|
} |
|
return; |
|
} |
|
|
|
sub get_defaultquota_text { |
|
my ($settingstatus) = @_; |
|
my $defquotatext; |
|
if ($settingstatus eq '') { |
|
$defquotatext = &mt('(default)'); |
|
} else { |
|
my ($usertypes,$order) = |
|
&Apache::lonnet::retrieve_inst_usertypes($env{'form.ccdomain'}); |
|
if ($usertypes->{$settingstatus} eq '') { |
|
$defquotatext = &mt('(default)'); |
|
} else { |
|
$defquotatext = &mt('(default for [_1])',$usertypes->{$settingstatus}); |
|
} |
|
} |
|
return $defquotatext; |
} |
} |
|
|
sub update_result_form { |
sub update_result_form { |
Line 2086 sub update_result_form {
|
Line 2469 sub update_result_form {
|
foreach my $item ('srchby','srchin','srchtype','srchterm','srchdomain','ccuname','ccdomain') { |
foreach my $item ('srchby','srchin','srchtype','srchterm','srchdomain','ccuname','ccdomain') { |
$outcome .= '<input type="hidden" name="'.$item.'" value="'.$env{'form.'.$item}.'" />'."\n"; |
$outcome .= '<input type="hidden" name="'.$item.'" value="'.$env{'form.'.$item}.'" />'."\n"; |
} |
} |
|
if ($env{'form.origname'} ne '') { |
|
$outcome .= '<input type="hidden" name="origname" value="'.$env{'form.origname'}.'" />'."\n"; |
|
} |
foreach my $item ('sortby','seluname','seludom') { |
foreach my $item ('sortby','seluname','seludom') { |
if (exists($env{'form.'.$item})) { |
if (exists($env{'form.'.$item})) { |
$outcome .= '<input type="hidden" name="'.$item.'" value="'.$env{'form.'.$item}.'" />'."\n"; |
$outcome .= '<input type="hidden" name="'.$item.'" value="'.$env{'form.'.$item}.'" />'."\n"; |
Line 2096 sub update_result_form {
|
Line 2482 sub update_result_form {
|
} |
} |
$outcome .= '<input type="hidden" name="phase" value="" />'."\n". |
$outcome .= '<input type="hidden" name="phase" value="" />'."\n". |
'<input type ="hidden" name="currstate" value="" />'."\n". |
'<input type ="hidden" name="currstate" value="" />'."\n". |
'<input type ="hidden" name="action" value="singleuser" />'."\n". |
'<input type ="hidden" name="action" value="'.$env{'form.action'}.'" />'."\n". |
'</form>'; |
'</form>'; |
return $outcome; |
return $outcome; |
} |
} |
|
|
sub classlist_drop { |
|
my ($scope,$uname,$udom,$now) = @_; |
|
my ($cdom,$cnum) = ($scope=~m{^/($match_domain)/($match_courseid)}); |
|
my $cid=$cdom.'_'.$cnum; |
|
my $user = $uname.':'.$udom; |
|
if (!&active_student_roles($cnum,$cdom,$uname,$udom)) { |
|
my $result = |
|
&Apache::lonnet::cput('classlist', |
|
{ $user => $now }, |
|
$env{'course.'.$cid.'.domain'}, |
|
$env{'course.'.$cid.'.num'}); |
|
return &mt('Drop from classlist: [_1]', |
|
'<b>'.$result.'</b>').'<br />'; |
|
} |
|
} |
|
|
|
sub active_student_roles { |
|
my ($cnum,$cdom,$uname,$udom) = @_; |
|
my %roles = |
|
&Apache::lonnet::get_my_roles($uname,$udom,'userroles', |
|
['future','active'],['st']); |
|
return exists($roles{"$cnum:$cdom:st"}); |
|
} |
|
|
|
sub quota_admin { |
sub quota_admin { |
my ($setquota,$changeHash) = @_; |
my ($setquota,$changeHash) = @_; |
my $quotachanged; |
my $quotachanged; |
Line 2256 sub custom_role_editor {
|
Line 2618 sub custom_role_editor {
|
{href=>"javascript:backPage(document.form1,'','')", |
{href=>"javascript:backPage(document.form1,'','')", |
text=>"Edit custom role", |
text=>"Edit custom role", |
faq=>282,bug=>'Instructor Interface',}); |
faq=>282,bug=>'Instructor Interface',}); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management')); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management', |
|
'Course_Editing_Custom_Roles')); |
|
|
$r->print($body_top); |
$r->print($body_top); |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
Line 2264 sub custom_role_editor {
|
Line 2627 sub custom_role_editor {
|
'crl' => "Course Level", |
'crl' => "Course Level", |
'dml' => "Domain Level", |
'dml' => "Domain Level", |
'ssl' => "System Level"); |
'ssl' => "System Level"); |
$r->print('Select a Template<br />'); |
$r->print(&mt('Select a Template').'<br />'); |
$r->print('<form action="">'); |
$r->print('<form action="">'); |
$r->print($button_code); |
$r->print($button_code); |
$r->print('</form>'); |
$r->print('</form>'); |
Line 2375 sub make_button_code {
|
Line 2738 sub make_button_code {
|
} |
} |
# ---------------------------------------------------------- Call to definerole |
# ---------------------------------------------------------- Call to definerole |
sub set_custom_role { |
sub set_custom_role { |
my ($r) = @_; |
my ($r,$context) = @_; |
my $rolename=$env{'form.rolename'}; |
my $rolename=$env{'form.rolename'}; |
$rolename=~s/[^A-Za-z0-9]//gs; |
$rolename=~s/[^A-Za-z0-9]//gs; |
if (!$rolename) { |
if (!$rolename) { |
Line 2396 sub set_custom_role {
|
Line 2759 sub set_custom_role {
|
{href=>"javascript:backPage(document.customresult,'set_custom_roles','')", |
{href=>"javascript:backPage(document.customresult,'set_custom_roles','')", |
text=>"Result", |
text=>"Result", |
faq=>282,bug=>'Instructor Interface',}); |
faq=>282,bug=>'Instructor Interface',}); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management')); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management', |
|
'Course_Editing_Custom_Roles')); |
|
|
my ($rdummy,$roledef)= |
my ($rdummy,$roledef)= |
&Apache::lonnet::get('roles',["rolesdef_$rolename"]); |
&Apache::lonnet::get('roles',["rolesdef_$rolename"]); |
Line 2449 sub set_custom_role {
|
Line 2813 sub set_custom_role {
|
$url, |
$url, |
$env{'user.domain'}, |
$env{'user.domain'}, |
$env{'user.name'}, |
$env{'user.name'}, |
$rolename)); |
$rolename,undef,undef,undef,$context)); |
} |
} |
$r->print('<p><a href="javascript:backPage(document.customresult,'."'pickrole'".')">'.&mt('Create or edit another custom role').'</a></p><form name="customresult" method="post">'); |
$r->print('<p><a href="javascript:backPage(document.customresult,'."'pickrole'".')">'.&mt('Create or edit another custom role').'</a></p><form name="customresult" method="post">'); |
$r->print(&Apache::lonhtmlcommon::echo_form_input([]).'</form>'); |
$r->print(&Apache::lonhtmlcommon::echo_form_input([]).'</form>'); |
Line 2468 sub handler {
|
Line 2832 sub handler {
|
if ($env{'request.course.id'}) { |
if ($env{'request.course.id'}) { |
$context = 'course'; |
$context = 'course'; |
} elsif ($env{'request.role'} =~ /^au\./) { |
} elsif ($env{'request.role'} =~ /^au\./) { |
$context = 'construction_space'; |
$context = 'author'; |
} else { |
} else { |
$context = 'domain'; |
$context = 'domain'; |
} |
} |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}, |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}, |
['action','state']); |
['action','state','callingform','roletype','showrole','bulkaction','popup','phase', |
|
'username','domain','srchterm','srchdomain','srchin','srchby','srchtype']); |
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
&Apache::lonhtmlcommon::clear_breadcrumbs(); |
&Apache::lonhtmlcommon::add_breadcrumb |
if ($env{'form.action'} ne 'dateselect') { |
({href=>"/adm/createuser", |
&Apache::lonhtmlcommon::add_breadcrumb |
text=>"User Management"}); |
({href=>"/adm/createuser", |
my ($permission,$allowed) = &get_permission($context); |
text=>"User Management"}); |
|
} |
|
my ($permission,$allowed) = |
|
&Apache::lonuserutils::get_permission($context); |
if (!$allowed) { |
if (!$allowed) { |
$env{'user.error.msg'}= |
$env{'user.error.msg'}= |
"/adm/createuser:cst:0:0:Cannot create/modify user data ". |
"/adm/createuser:cst:0:0:Cannot create/modify user data ". |
Line 2493 sub handler {
|
Line 2861 sub handler {
|
if (! exists($env{'form.action'})) { |
if (! exists($env{'form.action'})) { |
$r->print(&header()); |
$r->print(&header()); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management')); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management')); |
$r->print(&print_main_menu($permission)); |
$r->print(&print_main_menu($permission,$context)); |
$r->print(&Apache::loncommon::end_page()); |
$r->print(&Apache::loncommon::end_page()); |
} elsif ($env{'form.action'} eq 'upload' && $permission->{'cusr'}) { |
} elsif ($env{'form.action'} eq 'upload' && $permission->{'cusr'}) { |
$r->print(&header()); |
$r->print(&header()); |
Line 2501 sub handler {
|
Line 2869 sub handler {
|
({href=>'/adm/createuser?action=upload&state=', |
({href=>'/adm/createuser?action=upload&state=', |
text=>"Upload Users List"}); |
text=>"Upload Users List"}); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Upload Users List', |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Upload Users List', |
'User_Management_Upload')); |
'Course_Create_Class_List')); |
$r->print('<form name="studentform" method="post" '. |
$r->print('<form name="studentform" method="post" '. |
'enctype="multipart/form-data" '. |
'enctype="multipart/form-data" '. |
' action="/adm/createuser">'."\n"); |
' action="/adm/createuser">'."\n"); |
if (! exists($env{'form.state'})) { |
if (! exists($env{'form.state'})) { |
&Apache::lonuserutils::print_first_users_upload_form($r,$context); |
&Apache::lonuserutils::print_first_users_upload_form($r,$context); |
} elsif ($env{'form.state'} eq 'got_file') { |
} elsif ($env{'form.state'} eq 'got_file') { |
&Apache::lonuserutils::print_upload_manager_form($r,$context); |
&Apache::lonuserutils::print_upload_manager_form($r,$context, |
|
$permission); |
} elsif ($env{'form.state'} eq 'enrolling') { |
} elsif ($env{'form.state'} eq 'enrolling') { |
if ($env{'form.datatoken'}) { |
if ($env{'form.datatoken'}) { |
&Apache::lonuserutils::upfile_drop_add($r,$context); |
&Apache::lonuserutils::upfile_drop_add($r,$context,$permission); |
} |
} |
} else { |
} else { |
&Apache::lonuserutils::print_first_users_upload_form($r,$context); |
&Apache::lonuserutils::print_first_users_upload_form($r,$context); |
} |
} |
$r->print('</form>'.&Apache::loncommon::end_page()); |
$r->print('</form>'.&Apache::loncommon::end_page()); |
} elsif ($env{'form.action'} eq 'expire' && $permission->{'cusr'}) { |
} elsif ((($env{'form.action'} eq 'singleuser') || ($env{'form.action'} |
$r->print(&header()); |
eq 'singlestudent')) && ($permission->{'cusr'})) { |
&Apache::lonhtmlcommon::add_breadcrumb |
|
({href=>'/adm/createuser?action=expire', |
|
text=>"Expire User Roles"}); |
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Expire User Roles', |
|
'User_Management_Drops')); |
|
if (! exists($env{'form.state'})) { |
|
&Apache::lonuserutils::print_expire_menu($r,$context); |
|
} elsif ($env{'form.state'} eq 'done') { |
|
&Apache::lonuserutils::expire_user_list($r); |
|
} else { |
|
&Apache::lonuserutils::print_expire_menu($r,$context); |
|
} |
|
$r->print(&Apache::loncommon::end_page()); |
|
} elsif ($env{'form.action'} eq 'singleuser' && $permission->{'cusr'}) { |
|
my $phase = $env{'form.phase'}; |
my $phase = $env{'form.phase'}; |
my @search = ('srchterm','srchby','srchin','srchtype','srchdomain'); |
my @search = ('srchterm','srchby','srchin','srchtype','srchdomain'); |
&Apache::loncreateuser::restore_prev_selections(); |
&Apache::loncreateuser::restore_prev_selections(); |
Line 2540 sub handler {
|
Line 2895 sub handler {
|
foreach my $item (@search) { |
foreach my $item (@search) { |
$srch->{$item} = $env{'form.'.$item}; |
$srch->{$item} = $env{'form.'.$item}; |
} |
} |
|
if (($phase eq 'get_user_info') || ($phase eq 'userpicked') || |
if (($phase eq 'get_user_info') || ($phase eq 'userpicked')) { |
($phase eq 'createnewuser')) { |
if ($env{'form.phase'} eq 'get_user_info') { |
if ($env{'form.phase'} eq 'createnewuser') { |
|
my $response; |
|
if ($env{'form.srchterm'} !~ /^$match_username$/) { |
|
my $response = &mt('You must specify a valid username. Only the following are allowed: letters numbers - . @'); |
|
$env{'form.phase'} = ''; |
|
&print_username_entry_form($r,$context,$response,$srch); |
|
} else { |
|
my $ccuname =&LONCAPA::clean_username($srch->{'srchterm'}); |
|
my $ccdomain=&LONCAPA::clean_domain($srch->{'srchdomain'}); |
|
&print_user_modification_page($r,$ccuname,$ccdomain, |
|
$srch,$response,$context, |
|
$permission); |
|
} |
|
} elsif ($env{'form.phase'} eq 'get_user_info') { |
my ($currstate,$response,$forcenewuser,$results) = |
my ($currstate,$response,$forcenewuser,$results) = |
&user_search_result($srch); |
&user_search_result($context,$srch); |
if ($env{'form.currstate'} eq 'modify') { |
if ($env{'form.currstate'} eq 'modify') { |
$currstate = $env{'form.currstate'}; |
$currstate = $env{'form.currstate'}; |
} |
} |
if ($currstate eq 'select') { |
if ($currstate eq 'select') { |
&print_user_selection_page($r,$response,$srch,$results, |
&print_user_selection_page($r,$response,$srch,$results, |
'createuser',\@search); |
\@search,$context); |
} elsif ($currstate eq 'modify') { |
} elsif ($currstate eq 'modify') { |
my ($ccuname,$ccdomain); |
my ($ccuname,$ccdomain); |
if (($srch->{'srchby'} eq 'uname') && |
if (($srch->{'srchby'} eq 'uname') && |
Line 2567 sub handler {
|
Line 2935 sub handler {
|
$response = ''; |
$response = ''; |
} |
} |
&print_user_modification_page($r,$ccuname,$ccdomain, |
&print_user_modification_page($r,$ccuname,$ccdomain, |
$srch,$response,$context); |
$srch,$response,$context, |
|
$permission); |
} elsif ($currstate eq 'query') { |
} elsif ($currstate eq 'query') { |
&print_user_query_page($r,'createuser'); |
&print_user_query_page($r,'createuser'); |
} else { |
} else { |
&print_username_entry_form($r,$response,$srch, |
$env{'form.phase'} = ''; |
|
&print_username_entry_form($r,$context,$response,$srch, |
$forcenewuser); |
$forcenewuser); |
} |
} |
} elsif ($env{'form.phase'} eq 'userpicked') { |
} elsif ($env{'form.phase'} eq 'userpicked') { |
my $ccuname = &LONCAPA::clean_username($env{'form.seluname'}); |
my $ccuname = &LONCAPA::clean_username($env{'form.seluname'}); |
my $ccdomain = &LONCAPA::clean_domain($env{'form.seludom'}); |
my $ccdomain = &LONCAPA::clean_domain($env{'form.seludom'}); |
&print_user_modification_page($r,$ccuname,$ccdomain,$srch,'', |
&print_user_modification_page($r,$ccuname,$ccdomain,$srch,'', |
$context); |
$context,$permission); |
} |
} |
} elsif ($env{'form.phase'} eq 'update_user_data') { |
} elsif ($env{'form.phase'} eq 'update_user_data') { |
&update_user_data($r); |
&update_user_data($r,$context); |
} else { |
} else { |
&print_username_entry_form($r,undef,$srch); |
&print_username_entry_form($r,$context,undef,$srch); |
} |
} |
} elsif ($env{'form.action'} eq 'custom' && $permission->{'custom'}) { |
} elsif ($env{'form.action'} eq 'custom' && $permission->{'custom'}) { |
if ($env{'form.phase'} eq 'set_custom_roles') { |
if ($env{'form.phase'} eq 'set_custom_roles') { |
&set_custom_role($r); |
&set_custom_role($r,$context); |
} else { |
} else { |
&custom_role_editor($r); |
&custom_role_editor($r); |
} |
} |
} elsif ($env{'form.action'} eq 'listusers' && $permission->{'view'}) { |
} elsif (($env{'form.action'} eq 'listusers') && |
my ($cb_jscript,$jscript,$totcodes,$codetitles,$idlist,$idlist_titles); |
($permission->{'view'} || $permission->{'cusr'})) { |
my $formname = 'studentform'; |
if ($env{'form.phase'} eq 'bulkchange') { |
if ($context eq 'domain' && $env{'form.roletype'} eq 'course') { |
&Apache::lonhtmlcommon::add_breadcrumb |
($cb_jscript,$jscript,$totcodes,$codetitles,$idlist,$idlist_titles) = |
({href=>'/adm/createuser?action=listusers', |
&Apache::lonuserutils::courses_selector($env{'request.role.domain'}, |
text=>"List Users"}, |
$formname); |
{href=>"/adm/createuser", |
my $js = &add_script($jscript).$cb_jscript; |
text=>"Result"}); |
my $loadcode = |
my $setting = $env{'form.roletype'}; |
&Apache::lonuserutils::course_selector_loadcode($formname); |
my $choice = $env{'form.bulkaction'}; |
if ($loadcode ne '') { |
$r->print(&header()); |
$r->print(&header($js,{'onload' => $loadcode,})); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs("Update Users", |
|
'Course_View_Class_List')); |
|
if ($permission->{'cusr'}) { |
|
&Apache::lonuserutils::update_user_list($r,$context,$setting,$choice); |
|
$r->print(&Apache::loncommon::end_page()); |
} else { |
} else { |
$r->print(&header($js)); |
$r->print(&mt('You are not authorized to make bulk changes to user roles')); |
|
$r->print('<p><a href="/adm/createuser?action=listusers">'.&mt('Display User Lists').'</a>'); |
|
$r->print(&Apache::loncommon::end_page()); |
} |
} |
} else { |
} else { |
$r->print(&header()); |
&Apache::lonhtmlcommon::add_breadcrumb |
|
({href=>'/adm/createuser?action=listusers', |
|
text=>"List Users"}); |
|
my ($cb_jscript,$jscript,$totcodes,$codetitles,$idlist,$idlist_titles); |
|
my $formname = 'studentform'; |
|
if ($context eq 'domain' && $env{'form.roletype'} eq 'course') { |
|
($cb_jscript,$jscript,$totcodes,$codetitles,$idlist,$idlist_titles) = |
|
&Apache::lonuserutils::courses_selector($env{'request.role.domain'}, |
|
$formname); |
|
$jscript .= &verify_user_display(); |
|
my $js = &add_script($jscript).$cb_jscript; |
|
my $loadcode = |
|
&Apache::lonuserutils::course_selector_loadcode($formname); |
|
if ($loadcode ne '') { |
|
$r->print(&header($js,{'onload' => $loadcode,})); |
|
} else { |
|
$r->print(&header($js)); |
|
} |
|
} else { |
|
$r->print(&header(&add_script(&verify_user_display()))); |
|
} |
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs("List Users", |
|
'Course_View_Class_List')); |
|
&Apache::lonuserutils::print_userlist($r,undef,$permission,$context, |
|
$formname,$totcodes,$codetitles,$idlist,$idlist_titles); |
|
$r->print(&Apache::loncommon::end_page()); |
} |
} |
&Apache::lonhtmlcommon::add_breadcrumb |
} elsif ($env{'form.action'} eq 'drop' && $permission->{'cusr'}) { |
({href=>'/adm/createuser?action=listusers', |
|
text=>"List Users"}); |
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs("List Users", |
|
'User_Management_List')); |
|
&Apache::lonuserutils::print_userlist($r,undef,$permission,$context, |
|
$formname,$totcodes,$codetitles,$idlist,$idlist_titles); |
|
$r->print(&Apache::loncommon::end_page()); |
|
} elsif ($env{'form.action'} eq 'expire' && $permission->{'cusr'}) { |
|
$r->print(&header()); |
$r->print(&header()); |
&Apache::lonhtmlcommon::add_breadcrumb |
&Apache::lonhtmlcommon::add_breadcrumb |
({href=>'/adm/createuser?action=drop', |
({href=>'/adm/createuser?action=drop', |
text=>"Expire Users"}); |
text=>"Drop Students"}); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Expire User Roles', |
if (!exists($env{'form.state'})) { |
'User_Management_Drops')); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Drop Students', |
if (! exists($env{'form.state'})) { |
'Course_Drop_Student')); |
&Apache::lonuserutils::print_expire_menu($r,$context); |
|
|
&Apache::lonuserutils::print_drop_menu($r,$context,$permission); |
} elsif ($env{'form.state'} eq 'done') { |
} elsif ($env{'form.state'} eq 'done') { |
&Apache::lonuserutiles::expire_user_list($r); |
&Apache::lonhtmlcommon::add_breadcrumb |
|
({href=>'/adm/createuser?action=drop', |
|
text=>"Result"}); |
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Drop Students', |
|
'Course_Drop_Student')); |
|
&Apache::lonuserutils::update_user_list($r,$context,undef, |
|
$env{'form.action'}); |
|
} |
|
$r->print(&Apache::loncommon::end_page()); |
|
} elsif ($env{'form.action'} eq 'dateselect') { |
|
if ($permission->{'cusr'}) { |
|
$r->print(&header(undef,undef,{'no_nav_bar' => 1}). |
|
&Apache::lonuserutils::date_section_selector($context, |
|
$permission). |
|
&Apache::loncommon::end_page()); |
} else { |
} else { |
&print_expire_menu($r,$context); |
$r->print(&header(). |
|
'<span class="LC_error">'.&mt('You do not have permission to modify dates or sections for users').'</span>'. |
|
&Apache::loncommon::end_page()); |
|
} |
|
} elsif ($env{'form.action'} eq 'selfenroll') { |
|
$r->print(&header()); |
|
&Apache::lonhtmlcommon::add_breadcrumb |
|
({href=>'/adm/createuser?action=selfenroll', |
|
text=>"Configure Self-enrollment"}); |
|
if (!exists($env{'form.state'})) { |
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Configure Self-enrollment', |
|
'Course_Self_Enrollment')); |
|
$r->print('<h3>'.&mt('Self-enrollment with a student role').'</h3>'."\n"); |
|
&print_selfenroll_menu($r,$context,$permission); |
|
} elsif ($env{'form.state'} eq 'done') { |
|
&Apache::lonhtmlcommon::add_breadcrumb |
|
({href=>'/adm/createuser?action=selfenroll', |
|
text=>"Result"}); |
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('Self-enrollment result', |
|
'Course_Self_Enrollment')); |
|
$r->print('<h3>'.&mt('Self-enrollment with a student role').'</h3>'."\n"); |
|
&update_selfenroll_config($r,$context,$permission); |
} |
} |
$r->print(&Apache::loncommon::end_page()); |
$r->print(&Apache::loncommon::end_page()); |
|
} elsif ($env{'form.action'} eq 'changelogs') { |
|
$r->print(&header()); |
|
&Apache::lonhtmlcommon::add_breadcrumb |
|
({href=>'/adm/createuser?action=changelogs', |
|
text=>"User Management Logs"}); |
|
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Changes', |
|
'Course_User_Logs')); |
|
&print_userchangelogs_display($r,$context,$permission); |
|
$r->print(&Apache::loncommon::end_page()); |
} else { |
} else { |
$r->print(&header()); |
$r->print(&header()); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management')); $r->print(&print_main_menu($permission)); |
$r->print(&Apache::lonhtmlcommon::breadcrumbs('User Management')); |
|
$r->print(&print_main_menu($permission,$context)); |
$r->print(&Apache::loncommon::end_page()); |
$r->print(&Apache::loncommon::end_page()); |
} |
} |
return OK; |
return OK; |
} |
} |
|
|
sub header { |
sub header { |
my ($jscript,$loaditems) = @_; |
my ($jscript,$loaditems,$args) = @_; |
my $start_page; |
my $start_page; |
if (ref($loaditems) eq 'HASH') { |
if (ref($loaditems) eq 'HASH') { |
$start_page=&Apache::loncommon::start_page('User Management',$jscript,{'add_entries' => $loaditems,}); |
$start_page=&Apache::loncommon::start_page('User Management',$jscript,{'add_entries' => $loaditems}); |
} else { |
} else { |
$start_page=&Apache::loncommon::start_page('User Management',$jscript); |
$start_page=&Apache::loncommon::start_page('User Management',$jscript,$args); |
} |
} |
return $start_page; |
return $start_page; |
} |
} |
Line 2656 sub add_script {
|
Line 3095 sub add_script {
|
return '<script type="text/javascript">'."\n".$js."\n".'</script>'; |
return '<script type="text/javascript">'."\n".$js."\n".'</script>'; |
} |
} |
|
|
|
sub verify_user_display { |
|
my $output = <<"END"; |
|
|
|
function display_update() { |
|
document.studentform.action.value = 'listusers'; |
|
document.studentform.phase.value = 'display'; |
|
document.studentform.submit(); |
|
} |
|
|
|
END |
|
return $output; |
|
|
|
} |
|
|
############################################################### |
############################################################### |
############################################################### |
############################################################### |
# Menu Phase One |
# Menu Phase One |
sub print_main_menu { |
sub print_main_menu { |
my ($permission) = @_; |
my ($permission,$context) = @_; |
|
my %links = ( |
|
domain => { |
|
upload => 'Upload a File of Users', |
|
singleuser => 'Add/Modify a Single User', |
|
listusers => 'Manage Multiple Users', |
|
}, |
|
author => { |
|
upload => 'Upload a File of Co-authors', |
|
singleuser => 'Add/Modify a Single Co-author', |
|
listusers => 'Display Co-authors and Manage Multiple Users', |
|
}, |
|
course => { |
|
upload => 'Upload a File of Course Users', |
|
singleuser => 'Add/Modify a Single Course User', |
|
listusers => 'Display Class Lists and Manage Multiple Users', |
|
}, |
|
); |
my @menu = |
my @menu = |
( |
( |
{ text => 'Upload a File of Users to Modify/Create Users and/or Add roles', |
{ text => $links{$context}{'upload'}, |
help => 'User_Management_Upload', |
help => 'Course_Create_Class_List', |
action => 'upload', |
action => 'upload', |
permission => $permission->{'cusr'}, |
permission => $permission->{'cusr'}, |
}, |
}, |
{ text => 'Create User/Set User Roles for a single user', |
{ text => $links{$context}{'singleuser'}, |
help => 'User_Management_Single_User', |
help => 'Course_Change_Privileges', |
action => 'singleuser', |
action => 'singleuser', |
permission => $permission->{'cusr'}, |
permission => $permission->{'cusr'}, |
}, |
}, |
{ text => 'Display Lists of Users', |
{ text => $links{$context}{'listusers'}, |
help => 'User_Management_List', |
help => 'Course_View_Class_List', |
action => 'listusers', |
action => 'listusers', |
permission => $permission->{'view'}, |
permission => ($permission->{'view'} || $permission->{'cusr'}), |
}, |
|
# { text => 'Expire User Roles', |
|
# help => 'User_Management_Drops', |
|
# action => 'expire', |
|
# permission => $permission->{'cusr'}, |
|
# }, |
|
{ text => 'Edit Custom Roles', |
|
help => 'Custom_Role_Edit', |
|
action => 'custom', |
|
permission => $permission->{'custom'}, |
|
}, |
}, |
); |
); |
|
if ($context eq 'domain' || $context eq 'course') { |
|
my $customlink = { text => 'Edit Custom Roles', |
|
help => 'Course_Editing_Custom_Roles', |
|
action => 'custom', |
|
permission => $permission->{'custom'}, |
|
}; |
|
push(@menu,$customlink); |
|
} |
|
if ($context eq 'course') { |
|
my ($cnum,$cdom) = &Apache::lonuserutils::get_course_identity(); |
|
my @courselinks = |
|
( |
|
{ text => 'Enroll a Single Student', |
|
help => 'Course_Add_Student', |
|
action => 'singlestudent', |
|
permission => $permission->{'cusr'}, |
|
}, |
|
{ text => 'Drop Students', |
|
help => 'Course_Drop_Student', |
|
action => 'drop', |
|
permission => $permission->{'cusr'}, |
|
}); |
|
if (!exists($permission->{'cusr_section'})) { |
|
push(@courselinks, |
|
{ text => 'Automated Enrollment Manager', |
|
help => 'Course_Automated_Enrollment', |
|
permission => (&Apache::lonnet::auto_run($cnum,$cdom) |
|
&& $permission->{'cusr'}), |
|
url => '/adm/populate', |
|
}, |
|
{ text => 'Configure User Self-enrollment', |
|
help => 'Course_Self_Enrollment', |
|
action => 'selfenroll', |
|
permission => $permission->{'cusr'}, |
|
}); |
|
} |
|
push(@courselinks, |
|
{ text => 'Manage Course Groups', |
|
help => 'Course_Manage_Group', |
|
permission => $permission->{'grp_manage'}, |
|
url => '/adm/coursegroups?refpage=cusr', |
|
}, |
|
{ text => 'View Change Logs', |
|
help => 'Course_User_Logs', |
|
action => 'changelogs', |
|
permission => $permission->{'cusr'}, |
|
},); |
|
# { text => 'View Log-in History', |
|
# help => 'Course_User_Logins', |
|
# action => 'logins', |
|
# permission => $permission->{'cusr'}, |
|
# }); |
|
push(@menu,@courselinks); |
|
} |
my $menu_html = ''; |
my $menu_html = ''; |
foreach my $menu_item (@menu) { |
foreach my $menu_item (@menu) { |
next if (! $menu_item->{'permission'}); |
next if (! $menu_item->{'permission'}); |
$menu_html.='<p>'; |
$menu_html.='<p>'; |
|
if (exists($menu_item->{'help'})) { |
|
$menu_html.= |
|
&Apache::loncommon::help_open_topic($menu_item->{'help'}); |
|
} |
$menu_html.='<font size="+1">'; |
$menu_html.='<font size="+1">'; |
if (exists($menu_item->{'url'})) { |
if (exists($menu_item->{'url'})) { |
$menu_html.=qq{<a href="$menu_item->{'url'}">}; |
$menu_html.=qq{<a href="$menu_item->{'url'}">}; |
Line 2701 sub print_main_menu {
|
Line 3219 sub print_main_menu {
|
qq{<a href="/adm/createuser?action=$menu_item->{'action'}">}; |
qq{<a href="/adm/createuser?action=$menu_item->{'action'}">}; |
} |
} |
$menu_html.= &mt($menu_item->{'text'}).'</a></font>'; |
$menu_html.= &mt($menu_item->{'text'}).'</a></font>'; |
if (exists($menu_item->{'help'})) { |
|
$menu_html.= |
|
&Apache::loncommon::help_open_topic($menu_item->{'help'}); |
|
} |
|
$menu_html.='</p>'; |
$menu_html.='</p>'; |
} |
} |
return $menu_html; |
return $menu_html; |
} |
} |
|
|
sub get_permission { |
|
my ($context) = @_; |
|
my %permission; |
|
if ($context eq 'course') { |
|
if ((&Apache::lonnet::allowed('cta',$env{'request.course.id'})) || |
|
(&Apache::lonnet::allowed('cin',$env{'request.course.id'})) || |
|
(&Apache::lonnet::allowed('ccr',$env{'request.course.id'})) || |
|
(&Apache::lonnet::allowed('cep',$env{'request.course.id'})) || |
|
(&Apache::lonnet::allowed('cst',$env{'request.course.id'}))) { |
|
$permission{'cusr'} = 1; |
|
$permission{'view'} = |
|
&Apache::lonnet::allowed('vcl',$env{'request.course.id'}); |
|
|
|
} |
|
if (&Apache::lonnet::allowed('ccr',$env{'request.course.id'})) { |
|
$permission{'custom'} = 1; |
|
} |
|
if (&Apache::lonnet::allowed('vcl',$env{'request.course.id'})) { |
|
$permission{'view'} = 1; |
|
if (!$permission{'view'}) { |
|
my $scope = $env{'request.course.id'}.'/'.$env{'request.course.sec'}; |
|
$permission{'view'} = &Apache::lonnet::allowed('vcl',$scope); |
|
if ($permission{'view'}) { |
|
$permission{'view_section'} = $env{'request.course.sec'}; |
|
} |
|
} |
|
} |
|
} elsif ($context eq 'construction_space') { |
|
$permission{'cusr'} = &authorpriv($env{'user.name'},$env{'request.role.domain'}); |
|
$permission{'view'} = $permission{'cusr'}; |
|
} else { |
|
if ((&Apache::lonnet::allowed('cad',$env{'request.role.domain'})) || |
|
(&Apache::lonnet::allowed('cli',$env{'request.role.domain'})) || |
|
(&Apache::lonnet::allowed('cau',$env{'request.role.domain'})) || |
|
(&Apache::lonnet::allowed('csc',$env{'request.role.domain'})) || |
|
(&Apache::lonnet::allowed('cdg',$env{'request.role.domain'})) || |
|
(&Apache::lonnet::allowed('mau',$env{'request.role.domain'}))) { |
|
$permission{'cusr'} = 1; |
|
} |
|
if (&Apache::lonnet::allowed('ccr',$env{'request.role.domain'})) { |
|
$permission{'custom'} = 1; |
|
} |
|
$permission{'view'} = $permission{'cusr'}; |
|
} |
|
my $allowed = 0; |
|
foreach my $perm (values(%permission)) { |
|
if ($perm) { $allowed=1; last; } |
|
} |
|
return (\%permission,$allowed); |
|
} |
|
|
|
sub restore_prev_selections { |
sub restore_prev_selections { |
my %saveable_parameters = ('srchby' => 'scalar', |
my %saveable_parameters = ('srchby' => 'scalar', |
'srchin' => 'scalar', |
'srchin' => 'scalar', |
Line 2772 sub restore_prev_selections {
|
Line 3235 sub restore_prev_selections {
|
\%saveable_parameters); |
\%saveable_parameters); |
} |
} |
|
|
|
sub print_selfenroll_menu { |
|
my ($r,$context,$permission) = @_; |
|
my $formname = 'enrollstudent'; |
|
my $nolink = 1; |
|
my ($row,$lt) = &get_selfenroll_titles(); |
|
my $groupslist = &Apache::lonuserutils::get_groupslist(); |
|
my $setsec_js = |
|
&Apache::lonuserutils::setsections_javascript($formname,$groupslist); |
|
my %alerts = &Apache::lonlocal::texthash( |
|
acto => 'Activation of self-enrollment was selected for the following domain(s)', |
|
butn => 'but no user types have been checked.', |
|
wilf => "Please uncheck 'activate' or check at least one type.", |
|
); |
|
my $selfenroll_js = <<"ENDSCRIPT"; |
|
function update_types(caller,num) { |
|
var delidx = getIndexByName('selfenroll_delete'); |
|
var actidx = getIndexByName('selfenroll_activate'); |
|
if (caller == 'selfenroll_all') { |
|
var selall; |
|
for (var i=0; i<document.$formname.selfenroll_all.length; i++) { |
|
if (document.$formname.selfenroll_all[i].checked) { |
|
selall = document.$formname.selfenroll_all[i].value; |
|
} |
|
} |
|
if (selall == 1) { |
|
if (delidx != -1) { |
|
if (document.$formname.selfenroll_delete.length) { |
|
for (var j=0; j<document.$formname.selfenroll_delete.length; j++) { |
|
document.$formname.selfenroll_delete[j].checked = true; |
|
} |
|
} else { |
|
document.$formname.elements[delidx].checked = true; |
|
} |
|
} |
|
if (actidx != -1) { |
|
if (document.$formname.selfenroll_activate.length) { |
|
for (var j=0; j<document.$formname.selfenroll_activate.length; j++) { |
|
document.$formname.selfenroll_activate[j].checked = false; |
|
} |
|
} else { |
|
document.$formname.elements[actidx].checked = false; |
|
} |
|
} |
|
document.$formname.selfenroll_newdom.selectedIndex = 0; |
|
} |
|
} |
|
if (caller == 'selfenroll_activate') { |
|
if (document.$formname.selfenroll_activate.length) { |
|
for (var j=0; j<document.$formname.selfenroll_activate.length; j++) { |
|
if (document.$formname.selfenroll_activate[j].value == num) { |
|
if (document.$formname.selfenroll_activate[j].checked) { |
|
for (var i=0; i<document.$formname.selfenroll_all.length; i++) { |
|
if (document.$formname.selfenroll_all[i].value == '1') { |
|
document.$formname.selfenroll_all[i].checked = false; |
|
} |
|
if (document.$formname.selfenroll_all[i].value == '0') { |
|
document.$formname.selfenroll_all[i].checked = true; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} else { |
|
for (var i=0; i<document.$formname.selfenroll_all.length; i++) { |
|
if (document.$formname.selfenroll_all[i].value == '1') { |
|
document.$formname.selfenroll_all[i].checked = false; |
|
} |
|
if (document.$formname.selfenroll_all[i].value == '0') { |
|
document.$formname.selfenroll_all[i].checked = true; |
|
} |
|
} |
|
} |
|
} |
|
if (caller == 'selfenroll_delete') { |
|
if (document.$formname.selfenroll_delete.length) { |
|
for (var j=0; j<document.$formname.selfenroll_delete.length; j++) { |
|
if (document.$formname.selfenroll_delete[j].value == num) { |
|
if (document.$formname.selfenroll_delete[j].checked) { |
|
var delindex = getIndexByName('selfenroll_types_'+num); |
|
if (delindex != -1) { |
|
if (document.$formname.elements[delindex].length) { |
|
for (var k=0; k<document.$formname.elements[delindex].length; k++) { |
|
document.$formname.elements[delindex][k].checked = false; |
|
} |
|
} else { |
|
document.$formname.elements[delindex].checked = false; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} else { |
|
if (document.$formname.selfenroll_delete.checked) { |
|
var delindex = getIndexByName('selfenroll_types_'+num); |
|
if (delindex != -1) { |
|
if (document.$formname.elements[delindex].length) { |
|
for (var k=0; k<document.$formname.elements[delindex].length; k++) { |
|
document.$formname.elements[delindex][k].checked = false; |
|
} |
|
} else { |
|
document.$formname.elements[delindex].checked = false; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
return; |
|
} |
|
|
|
function validate_types(form) { |
|
var needaction = new Array(); |
|
var countfail = 0; |
|
var actidx = getIndexByName('selfenroll_activate'); |
|
if (actidx != -1) { |
|
if (document.$formname.selfenroll_activate.length) { |
|
for (var j=0; j<document.$formname.selfenroll_activate.length; j++) { |
|
var num = document.$formname.selfenroll_activate[j].value; |
|
if (document.$formname.selfenroll_activate[j].checked) { |
|
countfail = check_types(num,countfail,needaction) |
|
} |
|
} |
|
} else { |
|
if (document.$formname.selfenroll_activate.checked) { |
|
var num = document.enrollstudent.selfenroll_activate.value; |
|
countfail = check_types(num,countfail,needaction) |
|
} |
|
} |
|
} |
|
if (countfail > 0) { |
|
var msg = "$alerts{'acto'}\\n"; |
|
var loopend = needaction.length -1; |
|
if (loopend > 0) { |
|
for (var m=0; m<loopend; m++) { |
|
msg += needaction[m]+", "; |
|
} |
|
} |
|
msg += needaction[loopend]+"\\n$alerts{'butn'}\\n$alerts{'wilf'}"; |
|
alert(msg); |
|
return; |
|
} |
|
setSections(form); |
|
} |
|
|
|
function check_types(num,countfail,needaction) { |
|
var typeidx = getIndexByName('selfenroll_types_'+num); |
|
var count = 0; |
|
if (typeidx != -1) { |
|
if (document.$formname.elements[typeidx].length) { |
|
for (var k=0; k<document.$formname.elements[typeidx].length; k++) { |
|
if (document.$formname.elements[typeidx][k].checked) { |
|
count ++; |
|
} |
|
} |
|
} else { |
|
if (document.$formname.elements[typeidx].checked) { |
|
count ++; |
|
} |
|
} |
|
if (count == 0) { |
|
var domidx = getIndexByName('selfenroll_dom_'+num); |
|
if (domidx != -1) { |
|
var domname = document.$formname.elements[domidx].value; |
|
needaction[countfail] = domname; |
|
countfail ++; |
|
} |
|
} |
|
} |
|
return countfail; |
|
} |
|
|
|
function getIndexByName(item) { |
|
for (var i=0;i<document.$formname.elements.length;i++) { |
|
if (document.$formname.elements[i].name == item) { |
|
return i; |
|
} |
|
} |
|
return -1; |
|
} |
|
ENDSCRIPT |
|
my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; |
|
my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; |
|
|
|
my $output = '<script type="text/javascript">'."\n". |
|
$setsec_js."\n".$selfenroll_js."\n". |
|
'</script>'."\n". |
|
'<h3>'.$lt->{'selfenroll'}.'</h3>'."\n"; |
|
my ($visible,$cansetvis,$vismsgs,$visactions) = &visible_in_cat($cdom,$cnum); |
|
if (ref($visactions) eq 'HASH') { |
|
if ($visible) { |
|
$output .= '<p>'.$visactions->{'vis'}.'</p>'; |
|
} else { |
|
$output .= $visactions->{'miss'}.'<br />'.$visactions->{'yous'}. |
|
'<p>'.$visactions->{'gen'}.'<br />'.$visactions->{'coca'}; |
|
if (ref($vismsgs) eq 'ARRAY') { |
|
$output .= '<br />'.$visactions->{'make'}.'<ul>'; |
|
foreach my $item (@{$vismsgs}) { |
|
$output .= '<li>'.$visactions->{$item}.'</li>'; |
|
} |
|
$output .= '</ul>'; |
|
} |
|
$output .= '</p>'; |
|
} |
|
} |
|
$output .= '<form name="'.$formname.'" method="post" action="/adm/createuser">'."\n". |
|
&Apache::lonhtmlcommon::start_pick_box(); |
|
if (ref($row) eq 'ARRAY') { |
|
foreach my $item (@{$row}) { |
|
my $title = $item; |
|
if (ref($lt) eq 'HASH') { |
|
$title = $lt->{$item}; |
|
} |
|
$output .= |
|
&Apache::lonhtmlcommon::row_title($title, |
|
'LC_selfenroll_pick_box_title','LC_oddrow_value')."\n"; |
|
if ($item eq 'types') { |
|
my $curr_types = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_types'}; |
|
my $showdomdesc = 1; |
|
my $includeempty = 1; |
|
my $num = 0; |
|
$output .= &Apache::loncommon::start_data_table(). |
|
&Apache::loncommon::start_data_table_row() |
|
.'<td colspan="2"><span class="LC_nobreak"><label>' |
|
.&mt('Any user in any domain:') |
|
.' <input type="radio" name="selfenroll_all" value="1" '; |
|
if ($curr_types eq '*') { |
|
$output .= ' checked="checked" '; |
|
} |
|
$output .= 'onchange="javascript:update_types('. |
|
"'selfenroll_all'".');" />'.&mt('Yes').'</label>'. |
|
' <input type="radio" name="selfenroll_all" value="0" '; |
|
if ($curr_types ne '*') { |
|
$output .= ' checked="checked" '; |
|
} |
|
$output .= ' onchange="javascript:update_types('. |
|
"'selfenroll_all'".');"/>'.&mt('No').'</label></td>'. |
|
&Apache::loncommon::end_data_table_row(). |
|
&Apache::loncommon::end_data_table(). |
|
&mt('Or').'<br />'. |
|
&Apache::loncommon::start_data_table(); |
|
my %currdoms; |
|
if ($curr_types eq '') { |
|
$output .= &new_selfenroll_dom_row($cdom,'0'); |
|
} elsif ($curr_types ne '*') { |
|
my @entries = split(/;/,$curr_types); |
|
if (@entries > 0) { |
|
foreach my $entry (@entries) { |
|
my ($currdom,$typestr) = split(/:/,$entry); |
|
$currdoms{$currdom} = 1; |
|
my $domdesc = &Apache::lonnet::domain($currdom); |
|
my @currinsttypes = split(',',$typestr); |
|
$output .= &Apache::loncommon::start_data_table_row() |
|
.'<td valign="top"><span class="LC_nobreak">'.&mt('Domain:').'<b>' |
|
.' '.$domdesc.' ('.$currdom.')' |
|
.'</b><input type="hidden" name="selfenroll_dom_'.$num |
|
.'" value="'.$currdom.'" /></span><br />' |
|
.'<span class="LC_nobreak"><label><input type="checkbox" ' |
|
.'name="selfenroll_delete" value="'.$num.'" onchange="javascript:update_types('."'selfenroll_delete','$num'".');" />' |
|
.&mt('Delete').'</label></span></td>'; |
|
$output .= '<td valign="top"> '.&mt('User types:').'<br />' |
|
.&selfenroll_inst_types($num,$currdom,\@currinsttypes).'</td>' |
|
.&Apache::loncommon::end_data_table_row(); |
|
$num ++; |
|
} |
|
} |
|
} |
|
my $add_domtitle = &mt('Users in additional domain:'); |
|
if ($curr_types eq '*') { |
|
$add_domtitle = &mt('Users in specific domain:'); |
|
} elsif ($curr_types eq '') { |
|
$add_domtitle = &mt('Users in other domain:'); |
|
} |
|
$output .= &Apache::loncommon::start_data_table_row() |
|
.'<td colspan="2"><span class="LC_nobreak">'.$add_domtitle.'</span><br />' |
|
.&Apache::loncommon::select_dom_form('','selfenroll_newdom', |
|
$includeempty,$showdomdesc) |
|
.'<input type="hidden" name="selfenroll_types_total" value="'.$num.'" />' |
|
.'</td>'.&Apache::loncommon::end_data_table_row() |
|
.&Apache::loncommon::end_data_table(); |
|
} elsif ($item eq 'registered') { |
|
my ($regon,$regoff); |
|
if ($env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_registered'}) { |
|
$regon = ' checked="checked" '; |
|
$regoff = ' '; |
|
} else { |
|
$regon = ' '; |
|
$regoff = ' checked="checked" '; |
|
} |
|
$output .= '<label>'. |
|
'<input type="radio" name="selfenroll_registered" value="1"'.$regon.'/>'. |
|
&mt('Yes').'</label> <label>'. |
|
'<input type="radio" name="selfenroll_registered" value="0"'.$regoff.'/>'. |
|
&mt('No').'</label>'; |
|
} elsif ($item eq 'enroll_dates') { |
|
my $starttime = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_start_date'}; |
|
my $endtime = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_end_date'}; |
|
if ($starttime eq '') { |
|
$starttime = $env{'course.'.$env{'request.course.id'}.'.default_enrollment_start_date'}; |
|
} |
|
if ($endtime eq '') { |
|
$endtime = $env{'course.'.$env{'request.course.id'}.'.default_enrollment_end_date'}; |
|
} |
|
my $startform = |
|
&Apache::lonhtmlcommon::date_setter($formname,'selfenroll_start_date',$starttime, |
|
undef,undef,undef,undef,undef,undef,undef,$nolink); |
|
my $endform = |
|
&Apache::lonhtmlcommon::date_setter($formname,'selfenroll_end_date',$endtime, |
|
undef,undef,undef,undef,undef,undef,undef,$nolink); |
|
$output .= &selfenroll_date_forms($startform,$endform); |
|
} elsif ($item eq 'access_dates') { |
|
my $starttime = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_start_access'}; |
|
my $endtime = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_end_access'}; |
|
if ($starttime eq '') { |
|
$starttime = $env{'course.'.$env{'request.course.id'}.'.default_enrollment_start_date'}; |
|
} |
|
if ($endtime eq '') { |
|
$endtime = $env{'course.'.$env{'request.course.id'}.'.default_enrollment_end_date'}; |
|
} |
|
my $startform = |
|
&Apache::lonhtmlcommon::date_setter($formname,'selfenroll_start_access',$starttime, |
|
undef,undef,undef,undef,undef,undef,undef,$nolink); |
|
my $endform = |
|
&Apache::lonhtmlcommon::date_setter($formname,'selfenroll_end_access',$endtime, |
|
undef,undef,undef,undef,undef,undef,undef,$nolink); |
|
$output .= &selfenroll_date_forms($startform,$endform); |
|
} elsif ($item eq 'section') { |
|
my $currsec = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_section'}; |
|
my %sections_count = &Apache::loncommon::get_sections($cdom,$cnum); |
|
my $newsecval; |
|
if ($currsec ne 'none' && $currsec ne '') { |
|
if (!defined($sections_count{$currsec})) { |
|
$newsecval = $currsec; |
|
} |
|
} |
|
my $sections_select = |
|
&Apache::lonuserutils::course_sections(\%sections_count,'st',$currsec); |
|
$output .= '<table class="LC_createuser">'."\n". |
|
'<tr class="LC_section_row">'."\n". |
|
'<td align="center">'.&mt('Existing sections')."\n". |
|
'<br />'.$sections_select.'</td><td align="center">'. |
|
&mt('New section').'<br />'."\n". |
|
'<input type="text" name="newsec" size="15" value="'.$newsecval.'" />'."\n". |
|
'<input type="hidden" name="sections" value="" />'."\n". |
|
'<input type="hidden" name="state" value="done" />'."\n". |
|
'</td></tr></table>'."\n"; |
|
} |
|
$output .= &Apache::lonhtmlcommon::row_closure(1); |
|
} |
|
} |
|
$output .= &Apache::lonhtmlcommon::end_pick_box(). |
|
'<br /><input type="button" name="selfenrollconf" value="' |
|
.&mt('Save changes').'" onclick="validate_types(this.form);" />' |
|
.'<input type="hidden" name="action" value="selfenroll" /></form>'; |
|
$r->print($output); |
|
return; |
|
} |
|
|
|
sub visible_in_cat { |
|
my ($cdom,$cnum) = @_; |
|
my %domconf = &Apache::lonnet::get_dom('configuration',['coursecategories'],$cdom); |
|
my ($cathash,%settable,@vismsgs,$cansetvis); |
|
my %visactions = &Apache::lonlocal::texthash( |
|
vis => 'Your course currently appears in the Course Catalog for this domain.', |
|
gen => 'Courses can be both self-cataloging, based on an institutional code (e.g., fs08phy231), or can be assigned categories from a hierarchy defined for the domain.', |
|
miss => 'Your course does not currently appear in the Course Catalog for this domain.', |
|
yous => 'You should remedy this if you plan to allow self-enrollment, otherwise students will have difficulty finding your course.', |
|
coca => 'Courses can be absent from the Catalog, because they do not have an institutional code, have no assigned category, or have been specifically excluded.', |
|
make => 'Make any changes to self-enrollment settings below, click "Save changes", then take action to include the course in the Catalog:', |
|
take => 'Take the following action to ensure the course appears in the Catalog:', |
|
dc_unhide => 'Ask a domain coordinator to change the "Exclude from course catalog" setting.', |
|
dc_addinst => 'Ask a domain coordinator to enable display the catalog of "Official courses (with institutional codes)".', |
|
dc_instcode => 'Ask a domain coordinator to assign an institutional code (if this is an official course).', |
|
dc_catalog => 'Ask a domain coordinator to enable or create at least one course category in the domain.', |
|
dc_categories => 'Ask a domain coordinator to create a hierarchy of categories and sub categories for courses in the domain.', |
|
dc_chgcat => 'Ask a domain coordinator to change the category assigned to the course, as the one currently assigned is no longer used in the domain', |
|
dc_addcat => 'Ask a domain coordinator to assign a category to the course.', |
|
); |
|
$visactions{'unhide'} = &mt('Use [_1]Set course environment[_2] to change the "Exclude from course catalog" setting.','"<a href="/adm/parmset?action=crsenv">','</a>"'); |
|
$visactions{'chgcat'} = &mt('Use [_1]Set course environment[_2] to change the category assigned to the course, as the one currently assigned is no longer used in the domain.','"<a href="/adm/parmset?action=crsenv">','</a>"'); |
|
$visactions{'addcat'} = &mt('Use [_1]Set course environment[_2] to assign a category to the course.','"<a href="/adm/parmset?action=crsenv">','</a>"'); |
|
if (ref($domconf{'coursecategories'}) eq 'HASH') { |
|
if ($domconf{'coursecategories'}{'togglecats'} eq 'crs') { |
|
$settable{'togglecats'} = 1; |
|
} |
|
if ($domconf{'coursecategories'}{'categorize'} eq 'crs') { |
|
$settable{'categorize'} = 1; |
|
} |
|
$cathash = $domconf{'coursecategories'}{'cats'}; |
|
} |
|
if ($settable{'togglecats'} && $settable{'categorize'}) { |
|
$cansetvis = &mt('You are able to both assign a course category and choose to exclude this course from the catalog.'); |
|
} elsif ($settable{'togglecats'}) { |
|
$cansetvis = &mt('You are able to choose to exclude this course from the catalog, but only a Domain Coordinator may assign a course category.'); |
|
} elsif ($settable{'categorize'}) { |
|
$cansetvis = &mt('You may assign a course category, but only a Domain Coordinator may choose to exclude this course from the catalog.'); |
|
} else { |
|
$cansetvis = &mt('Only a Domain Coordinator may assign a course category or choose to exclude this course from the catalog.'); |
|
} |
|
|
|
my %currsettings = |
|
&Apache::lonnet::get('environment',['hidefromcat','categories','internal.coursecode'], |
|
$cdom,$cnum); |
|
my $visible = 0; |
|
if ($currsettings{'internal.coursecode'} ne '') { |
|
if (ref($domconf{'coursecategories'}) eq 'HASH') { |
|
$cathash = $domconf{'coursecategories'}{'cats'}; |
|
if (ref($cathash) eq 'HASH') { |
|
if ($cathash->{'instcode::0'} eq '') { |
|
push(@vismsgs,'dc_addinst'); |
|
} else { |
|
$visible = 1; |
|
} |
|
} else { |
|
$visible = 1; |
|
} |
|
} else { |
|
$visible = 1; |
|
} |
|
} else { |
|
if (ref($cathash) eq 'HASH') { |
|
if ($cathash->{'instcode::0'} ne '') { |
|
push(@vismsgs,'dc_instcode'); |
|
} |
|
} else { |
|
push(@vismsgs,'dc_instcode'); |
|
} |
|
} |
|
if ($currsettings{'categories'} ne '') { |
|
my $cathash; |
|
if (ref($domconf{'coursecategories'}) eq 'HASH') { |
|
$cathash = $domconf{'coursecategories'}{'cats'}; |
|
if (ref($cathash) eq 'HASH') { |
|
if (keys(%{$cathash}) == 0) { |
|
push(@vismsgs,'dc_catalog'); |
|
} elsif ((keys(%{$cathash}) == 1) && ($cathash->{'instcode::0'} ne '')) { |
|
push(@vismsgs,'dc_categories'); |
|
} else { |
|
my @currcategories = split('&',$currsettings{'categories'}); |
|
my $matched = 0; |
|
foreach my $cat (@currcategories) { |
|
if ($cathash->{$cat} ne '') { |
|
$visible = 1; |
|
$matched = 1; |
|
last; |
|
} |
|
} |
|
if (!$matched) { |
|
if ($settable{'categorize'}) { |
|
push(@vismsgs,'chgcat'); |
|
} else { |
|
push(@vismsgs,'dc_chgcat'); |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} else { |
|
if (ref($cathash) eq 'HASH') { |
|
if ((keys(%{$cathash}) > 1) || |
|
(keys(%{$cathash}) == 1) && ($cathash->{'instcode::0'} eq '')) { |
|
if ($settable{'categorize'}) { |
|
push(@vismsgs,'addcat'); |
|
} else { |
|
push(@vismsgs,'dc_addcat'); |
|
} |
|
} |
|
} |
|
} |
|
if ($currsettings{'hidefromcat'} eq 'yes') { |
|
$visible = 0; |
|
if ($settable{'togglecats'}) { |
|
unshift(@vismsgs,'unhide'); |
|
} else { |
|
unshift(@vismsgs,'dc_unhide') |
|
} |
|
} |
|
return ($visible,$cansetvis,\@vismsgs,\%visactions); |
|
} |
|
|
|
sub new_selfenroll_dom_row { |
|
my ($newdom,$num) = @_; |
|
my $domdesc = &Apache::lonnet::domain($newdom); |
|
my $output; |
|
if ($domdesc ne '') { |
|
$output .= &Apache::loncommon::start_data_table_row() |
|
.'<td valign="top"><span class="LC_nobreak">'.&mt('Domain:').' <b>'.$domdesc |
|
.' ('.$newdom.')</b><input type="hidden" name="selfenroll_dom_'.$num |
|
.'" value="'.$newdom.'" /></span><br />' |
|
.'<span class="LC_nobreak"><label><input type="checkbox" ' |
|
.'name="selfenroll_activate" value="'.$num.'" ' |
|
.'onchange="javascript:update_types(' |
|
."'selfenroll_activate','$num'".');" />' |
|
.&mt('Activate').'</label></span></td>'; |
|
my @currinsttypes; |
|
$output .= '<td>'.&mt('User types:').'<br />' |
|
.&selfenroll_inst_types($num,$newdom,\@currinsttypes).'</td>' |
|
.&Apache::loncommon::end_data_table_row(); |
|
} |
|
return $output; |
|
} |
|
|
|
sub selfenroll_inst_types { |
|
my ($num,$currdom,$currinsttypes) = @_; |
|
my $output; |
|
my $numinrow = 4; |
|
my $count = 0; |
|
my ($othertitle,$usertypes,$types) = &Apache::loncommon::sorted_inst_types($currdom); |
|
my $othervalue = 'any'; |
|
if ((ref($types) eq 'ARRAY') && (ref($usertypes) eq 'HASH')) { |
|
if (keys(%{$usertypes}) > 0) { |
|
$othervalue = 'other'; |
|
} |
|
$output .= '<table><tr>'; |
|
foreach my $type (@{$types}) { |
|
if (($count > 0) && ($count%$numinrow == 0)) { |
|
$output .= '</tr><tr>'; |
|
} |
|
if (defined($usertypes->{$type})) { |
|
my $esc_type = &escape($type); |
|
$output .= '<td><span class="LC_nobreak"><label><input type = "checkbox" value="'. |
|
$esc_type.'" '; |
|
if (ref($currinsttypes) eq 'ARRAY') { |
|
if (@{$currinsttypes} > 0) { |
|
if (grep(/^any$/,@{$currinsttypes})) { |
|
$output .= 'checked="checked"'; |
|
} elsif (grep(/^\Q$esc_type\E$/,@{$currinsttypes})) { |
|
$output .= 'checked="checked"'; |
|
} |
|
} else { |
|
$output .= 'checked="checked"'; |
|
} |
|
} |
|
$output .= ' name="selfenroll_types_'.$num.'" />'.$usertypes->{$type}.'</label></span></td>'; |
|
} |
|
$count ++; |
|
} |
|
if (($count > 0) && ($count%$numinrow == 0)) { |
|
$output .= '</tr><tr>'; |
|
} |
|
$output .= '<td><span class="LC_nobreak"><label><input type = "checkbox" value="'.$othervalue.'"'; |
|
if (ref($currinsttypes) eq 'ARRAY') { |
|
if (@{$currinsttypes} > 0) { |
|
if (grep(/^any$/,@{$currinsttypes})) { |
|
$output .= ' checked="checked"'; |
|
} elsif ($othervalue eq 'other') { |
|
if (grep(/^\Q$othervalue\E$/,@{$currinsttypes})) { |
|
$output .= ' checked="checked"'; |
|
} |
|
} |
|
} else { |
|
$output .= ' checked="checked"'; |
|
} |
|
} else { |
|
$output .= ' checked="checked"'; |
|
} |
|
$output .= ' name="selfenroll_types_'.$num.'" />'.$othertitle.'</label></span></td></tr></table>'; |
|
} |
|
return $output; |
|
} |
|
|
|
sub selfenroll_date_forms { |
|
my ($startform,$endform) = @_; |
|
my $output .= &Apache::lonhtmlcommon::start_pick_box()."\n". |
|
&Apache::lonhtmlcommon::row_title(&mt('Start date'), |
|
'LC_oddrow_value')."\n". |
|
$startform."\n". |
|
&Apache::lonhtmlcommon::row_closure(1). |
|
&Apache::lonhtmlcommon::row_title(&mt('End date'), |
|
'LC_oddrow_value')."\n". |
|
$endform."\n". |
|
&Apache::lonhtmlcommon::row_closure(1). |
|
&Apache::lonhtmlcommon::end_pick_box(); |
|
return $output; |
|
} |
|
|
|
sub print_userchangelogs_display { |
|
my ($r,$context,$permission) = @_; |
|
my $formname = 'roleslog'; |
|
my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; |
|
my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; |
|
my %roleslog=&Apache::lonnet::dump('nohist_rolelog',$cdom,$cnum); |
|
if ((keys(%roleslog))[0]=~/^error\:/) { undef(%roleslog); } |
|
|
|
$r->print('<form action="/adm/createuser" method="post" name="'.$formname.'">'); |
|
my %saveable_parameters = ('show' => 'scalar',); |
|
&Apache::loncommon::store_course_settings('roles_log', |
|
\%saveable_parameters); |
|
&Apache::loncommon::restore_course_settings('roles_log', |
|
\%saveable_parameters); |
|
# set defaults |
|
my $now = time(); |
|
my $defstart = $now - (7*24*3600); #7 days ago |
|
my %defaults = ( |
|
page => '1', |
|
show => '10', |
|
role => 'any', |
|
chgcontext => 'any', |
|
rolelog_start_date => $defstart, |
|
rolelog_end_date => $now, |
|
); |
|
my $more_records = 0; |
|
|
|
# set current |
|
my %curr; |
|
foreach my $item ('show','page','role','chgcontext') { |
|
$curr{$item} = $env{'form.'.$item}; |
|
} |
|
my ($startdate,$enddate) = |
|
&Apache::lonuserutils::get_dates_from_form('rolelog_start_date','rolelog_end_date'); |
|
$curr{'rolelog_start_date'} = $startdate; |
|
$curr{'rolelog_end_date'} = $enddate; |
|
foreach my $key (keys(%defaults)) { |
|
if ($curr{$key} eq '') { |
|
$curr{$key} = $defaults{$key}; |
|
} |
|
} |
|
my (%whodunit,%changed,$version); |
|
($version) = ($r->dir_config('lonVersion') =~ /^([\d\.]+)\-/); |
|
$r->print(&role_display_filter($formname,$cdom,$cnum,\%curr,$version)); |
|
my $showntablehdr = 0; |
|
my $tablehdr = &Apache::loncommon::start_data_table(). |
|
&Apache::loncommon::start_data_table_header_row(). |
|
'<th> </th><th>'.&mt('When').'</th><th>'.&mt('Who made the change'). |
|
'</th><th>'.&mt('Changed User').'</th><th>'.&mt('Role').'</th><th>'.&mt('Section').'</th><th>'. |
|
&mt('Context').'</th><th>'.&mt('Start').'</th><th>'.&mt('End').'</th>'. |
|
&Apache::loncommon::end_data_table_header_row(); |
|
my ($minshown,$maxshown); |
|
$minshown = 1; |
|
my $count = 0; |
|
if ($curr{'show'} ne &mt('all')) { |
|
$maxshown = $curr{'page'} * $curr{'show'}; |
|
if ($curr{'page'} > 1) { |
|
$minshown = 1 + ($curr{'page'} - 1) * $curr{'show'}; |
|
} |
|
} |
|
foreach my $id (sort { $roleslog{$b}{'exe_time'}<=>$roleslog{$a}{'exe_time'} } (keys(%roleslog))) { |
|
next if (($roleslog{$id}{'exe_time'} < $curr{'rolelog_start_date'}) || |
|
($roleslog{$id}{'exe_time'} > $curr{'rolelog_end_date'})); |
|
if ($curr{'show'} ne &mt('all')) { |
|
if ($count >= $curr{'page'} * $curr{'show'}) { |
|
$more_records = 1; |
|
last; |
|
} |
|
} |
|
if ($curr{'role'} ne 'any') { |
|
next if ($roleslog{$id}{'logentry'}{'role'} ne $curr{'role'}); |
|
} |
|
if ($curr{'chgcontext'} ne 'any') { |
|
if ($curr{'chgcontext'} eq 'selfenroll') { |
|
next if (!$roleslog{$id}{'logentry'}{'selfenroll'}); |
|
} else { |
|
next if ($roleslog{$id}{'logentry'}{'context'} ne $curr{'chgcontext'}); |
|
} |
|
} |
|
$count ++; |
|
next if ($count < $minshown); |
|
if (!$showntablehdr) { |
|
$r->print($tablehdr); |
|
$showntablehdr = 1; |
|
} |
|
if ($whodunit{$roleslog{$id}{'exe_uname'}.':'.$roleslog{$id}{'exe_udom'}} eq '') { |
|
$whodunit{$roleslog{$id}{'exe_uname'}.':'.$roleslog{$id}{'exe_udom'}} = |
|
&Apache::loncommon::plainname($roleslog{$id}{'exe_uname'},$roleslog{$id}{'exe_udom'}); |
|
} |
|
if ($changed{$roleslog{$id}{'uname'}.':'.$roleslog{$id}{'udom'}} eq '') { |
|
$changed{$roleslog{$id}{'uname'}.':'.$roleslog{$id}{'udom'}} = |
|
&Apache::loncommon::plainname($roleslog{$id}{'uname'},$roleslog{$id}{'udom'}); |
|
} |
|
my $sec = $roleslog{$id}{'logentry'}{'section'}; |
|
if ($sec eq '') { |
|
$sec = &mt('None'); |
|
} |
|
my ($rolestart,$roleend); |
|
if ($roleslog{$id}{'delflag'}) { |
|
$rolestart = &mt('deleted'); |
|
$roleend = &mt('deleted'); |
|
} else { |
|
$rolestart = $roleslog{$id}{'logentry'}{'start'}; |
|
$roleend = $roleslog{$id}{'logentry'}{'end'}; |
|
if ($rolestart eq '' || $rolestart == 0) { |
|
$rolestart = &mt('No start date'); |
|
} else { |
|
$rolestart = &Apache::lonlocal::locallocaltime($rolestart); |
|
} |
|
if ($roleend eq '' || $roleend == 0) { |
|
$roleend = &mt('No end date'); |
|
} else { |
|
$roleend = &Apache::lonlocal::locallocaltime($roleend); |
|
} |
|
} |
|
my $chgcontext = $roleslog{$id}{'logentry'}{'context'}; |
|
if ($roleslog{$id}{'logentry'}{'selfenroll'}) { |
|
$chgcontext = 'selfenroll'; |
|
} |
|
my %lt = &rolechg_contexts(); |
|
if ($chgcontext ne '' && $lt{$chgcontext} ne '') { |
|
$chgcontext = $lt{$chgcontext}; |
|
} |
|
$r->print(&Apache::loncommon::start_data_table_row().'<td>'.$count.'</td><td>'.&Apache::lonlocal::locallocaltime($roleslog{$id}{'exe_time'}).'</td><td>'.$whodunit{$roleslog{$id}{'exe_uname'}.':'.$roleslog{$id}{'exe_udom'}}.'</td><td>'.$changed{$roleslog{$id}{'uname'}.':'.$roleslog{$id}{'udom'}}.'</td><td>'.&Apache::lonnet::plaintext($roleslog{$id}{'logentry'}{'role'}).'</td><td>'.$sec.'</td><td>'.$chgcontext.'</td><td>'.$rolestart.'</td><td>'.$roleend.'</td>'.&Apache::loncommon::end_data_table_row()."\n"); |
|
} |
|
if ($showntablehdr) { |
|
$r->print(&Apache::loncommon::end_data_table().'<br />'); |
|
if (($curr{'page'} > 1) || ($more_records)) { |
|
$r->print('<table><tr>'); |
|
if ($curr{'page'} > 1) { |
|
$r->print('<td><a href="javascript:chgPage('."'previous'".');">'.&mt('Previous [_1] changes',$curr{'show'}).'</a></td>'); |
|
} |
|
if ($more_records) { |
|
$r->print('<td><a href="javascript:chgPage('."'next'".');">'.&mt('Next [_1] changes',$curr{'show'}).'</a></td>'); |
|
} |
|
$r->print('</tr></table>'); |
|
$r->print(<<"ENDSCRIPT"); |
|
<script type="text/javascript"> |
|
function chgPage(caller) { |
|
if (caller == 'previous') { |
|
document.$formname.page.value --; |
|
} |
|
if (caller == 'next') { |
|
document.$formname.page.value ++; |
|
} |
|
document.$formname.submit(); |
|
return; |
|
} |
|
</script> |
|
ENDSCRIPT |
|
} |
|
} else { |
|
$r->print(&mt('There are no records to display')); |
|
} |
|
$r->print('<input type="hidden" name="page" value="'.$curr{'page'}.'" />'. |
|
'<input type="hidden" name="action" value="changelogs" /></form>'); |
|
return; |
|
} |
|
|
|
sub role_display_filter { |
|
my ($formname,$cdom,$cnum,$curr,$version) = @_; |
|
my $context = 'course'; |
|
my $nolink = 1; |
|
my $output = '<table><tr><td valign="top">'. |
|
'<span class="LC_nobreak"><b>'.&mt('Changes/page:').'</b><br />'. |
|
&Apache::lonmeta::selectbox('show',$curr->{'show'},undef, |
|
(&mt('all'),5,10,20,50,100,1000,10000)). |
|
'</td><td> </td>'; |
|
my $startform = |
|
&Apache::lonhtmlcommon::date_setter($formname,'rolelog_start_date', |
|
$curr->{'rolelog_start_date'},undef, |
|
undef,undef,undef,undef,undef,undef,$nolink); |
|
my $endform = |
|
&Apache::lonhtmlcommon::date_setter($formname,'rolelog_end_date', |
|
$curr->{'rolelog_end_date'},undef, |
|
undef,undef,undef,undef,undef,undef,$nolink); |
|
my %lt = &rolechg_contexts(); |
|
$output .= '<td valign="top"><b>'.&mt('Window during which changes occurred:').'</b><br /><table><tr><td>'.&mt('After:'). |
|
'</td><td>'.$startform.'</td></tr><tr><td>'.&mt('Before:').'</td><td>'. |
|
$endform.'</td></tr></table></td><td> </td>'. |
|
'<td valign="top"><b>'.&mt('Role:').'</b><br />'. |
|
'<select name="role"><option value="any"'; |
|
if ($curr->{'role'} eq 'any') { |
|
$output .= ' selected="selected"'; |
|
} |
|
$output .= '>'.&mt('Any').'</option>'."\n"; |
|
my @roles = &Apache::lonuserutils::course_roles($context,undef,1); |
|
foreach my $role (@roles) { |
|
my $plrole; |
|
if ($role eq 'cr') { |
|
$plrole = &mt('Custom Role'); |
|
} else { |
|
$plrole=&Apache::lonnet::plaintext($role); |
|
} |
|
my $selstr = ''; |
|
if ($role eq $curr->{'role'}) { |
|
$selstr = ' selected="selected"'; |
|
} |
|
$output .= ' <option value="'.$role.'"'.$selstr.'>'.$plrole.'</option>'; |
|
} |
|
$output .= '</select></td><td> </td><td valign="top"><b>'. |
|
&mt('Context:').'</b><br /><select name="chgcontext">'; |
|
foreach my $chgtype ('any','auto','updatenow','createcourse','course','domain','selfenroll') { |
|
my $selstr = ''; |
|
if ($curr->{'chgcontext'} eq $chgtype) { |
|
$output .= $selstr = ' selected="selected"'; |
|
} |
|
if (($chgtype eq 'auto') || ($chgtype eq 'updatenow')) { |
|
next if (!&Apache::lonnet::auto_run($cnum,$cdom)); |
|
} |
|
$output .= '<option value="'.$chgtype.'"'.$selstr.'>'.$lt{$chgtype}.'</option>'."\n"; |
|
} |
|
$output .= '</select></td><td> </td><td valign="middle"><input type="submit" value="'. |
|
&mt('Update Display').'" /></tr></table>'. |
|
'<span class="LC_roleslog_note">'. |
|
&mt('[_1]Note:[_2] Only changes made from servers running LON-CAPA 2.6.99.0 or later are displayed.'); |
|
if ($version) { |
|
$output .= ' '.&mt('This server is version [_3].','<b>','</b>',$version); } |
|
$output .= '</span><hr noshade><br />'; |
|
return $output; |
|
} |
|
|
|
sub rolechg_contexts { |
|
my %lt = &Apache::lonlocal::texthash ( |
|
any => 'Any', |
|
auto => 'Automated enrollment', |
|
updatenow => 'Roster Update', |
|
createcourse => 'Course Creation', |
|
course => 'User Management in course', |
|
domain => 'User Management in domain', |
|
selfenroll => 'Self-enrolled', |
|
); |
|
return %lt; |
|
} |
|
|
#-------------------------------------------------- functions for &phase_two |
#-------------------------------------------------- functions for &phase_two |
sub user_search_result { |
sub user_search_result { |
my ($srch) = @_; |
my ($context,$srch) = @_; |
my %allhomes; |
my %allhomes; |
my %inst_matches; |
my %inst_matches; |
my %srch_results; |
my %srch_results; |
Line 2804 sub user_search_result {
|
Line 4076 sub user_search_result {
|
if (($srch->{'srchin'} eq 'dom') || ($srch->{'srchin'} eq 'crs') || |
if (($srch->{'srchin'} eq 'dom') || ($srch->{'srchin'} eq 'crs') || |
($srch->{'srchin'} eq 'alc')) { |
($srch->{'srchin'} eq 'alc')) { |
if ($srch->{'srchby'} eq 'uname') { |
if ($srch->{'srchby'} eq 'uname') { |
if ($srch->{'srchterm'} !~ /^$match_username$/) { |
my $unamecheck = $srch->{'srchterm'}; |
|
if ($srch->{'srchtype'} eq 'contains') { |
|
if ($unamecheck !~ /^\w/) { |
|
$unamecheck = 'a'.$unamecheck; |
|
} |
|
} |
|
if ($unamecheck !~ /^$match_username$/) { |
$response = &mt('You must specify a valid username. Only the following are allowed: letters numbers - . @'); |
$response = &mt('You must specify a valid username. Only the following are allowed: letters numbers - . @'); |
} |
} |
} |
} |
Line 2843 sub user_search_result {
|
Line 4121 sub user_search_result {
|
my $uhome=&Apache::lonnet::homeserver($srch->{'srchterm'},$srch->{'srchdomain'}); |
my $uhome=&Apache::lonnet::homeserver($srch->{'srchterm'},$srch->{'srchdomain'}); |
if ($uhome eq 'no_host') { |
if ($uhome eq 'no_host') { |
($currstate,$response,$forcenewuser) = |
($currstate,$response,$forcenewuser) = |
&build_search_response($srch,%srch_results); |
&build_search_response($context,$srch,%srch_results); |
} else { |
} else { |
$currstate = 'modify'; |
$currstate = 'modify'; |
} |
} |
} else { |
} else { |
%srch_results = &Apache::lonnet::usersearch($srch); |
%srch_results = &Apache::lonnet::usersearch($srch); |
($currstate,$response,$forcenewuser) = |
($currstate,$response,$forcenewuser) = |
&build_search_response($srch,%srch_results); |
&build_search_response($context,$srch,%srch_results); |
} |
} |
} else { |
} else { |
my $courseusers = &get_courseusers(); |
my $courseusers = &get_courseusers(); |
Line 2859 sub user_search_result {
|
Line 4137 sub user_search_result {
|
$currstate = 'modify'; |
$currstate = 'modify'; |
} else { |
} else { |
($currstate,$response,$forcenewuser) = |
($currstate,$response,$forcenewuser) = |
&build_search_response($srch,%srch_results); |
&build_search_response($context,$srch,%srch_results); |
} |
} |
} else { |
} else { |
foreach my $user (keys(%$courseusers)) { |
foreach my $user (keys(%$courseusers)) { |
Line 2886 sub user_search_result {
|
Line 4164 sub user_search_result {
|
} |
} |
} |
} |
($currstate,$response,$forcenewuser) = |
($currstate,$response,$forcenewuser) = |
&build_search_response($srch,%srch_results); |
&build_search_response($context,$srch,%srch_results); |
} |
} |
} |
} |
} |
} |
Line 2896 sub user_search_result {
|
Line 4174 sub user_search_result {
|
($dirsrchres,%srch_results) = &Apache::lonnet::inst_directory_query($srch); |
($dirsrchres,%srch_results) = &Apache::lonnet::inst_directory_query($srch); |
if ($dirsrchres eq 'ok') { |
if ($dirsrchres eq 'ok') { |
($currstate,$response,$forcenewuser) = |
($currstate,$response,$forcenewuser) = |
&build_search_response($srch,%srch_results); |
&build_search_response($context,$srch,%srch_results); |
} else { |
} else { |
my $showdom = &display_domain_info($srch->{'srchdomain'}); |
my $showdom = &display_domain_info($srch->{'srchdomain'}); |
$response = '<span class="LC_warning">'. |
$response = '<span class="LC_warning">'. |
Line 2910 sub user_search_result {
|
Line 4188 sub user_search_result {
|
if ($srch->{'srchin'} eq 'dom') { |
if ($srch->{'srchin'} eq 'dom') { |
%srch_results = &Apache::lonnet::usersearch($srch); |
%srch_results = &Apache::lonnet::usersearch($srch); |
($currstate,$response,$forcenewuser) = |
($currstate,$response,$forcenewuser) = |
&build_search_response($srch,%srch_results); |
&build_search_response($context,$srch,%srch_results); |
} elsif ($srch->{'srchin'} eq 'crs') { |
} elsif ($srch->{'srchin'} eq 'crs') { |
my $courseusers = &get_courseusers(); |
my $courseusers = &get_courseusers(); |
foreach my $user (keys(%$courseusers)) { |
foreach my $user (keys(%$courseusers)) { |
Line 2962 sub user_search_result {
|
Line 4240 sub user_search_result {
|
} |
} |
} |
} |
($currstate,$response,$forcenewuser) = |
($currstate,$response,$forcenewuser) = |
&build_search_response($srch,%srch_results); |
&build_search_response($context,$srch,%srch_results); |
} elsif ($srch->{'srchin'} eq 'alc') { |
} elsif ($srch->{'srchin'} eq 'alc') { |
$currstate = 'query'; |
$currstate = 'query'; |
} elsif ($srch->{'srchin'} eq 'instd') { |
} elsif ($srch->{'srchin'} eq 'instd') { |
($dirsrchres,%srch_results) = &Apache::lonnet::inst_directory_query($srch); |
($dirsrchres,%srch_results) = &Apache::lonnet::inst_directory_query($srch); |
if ($dirsrchres eq 'ok') { |
if ($dirsrchres eq 'ok') { |
($currstate,$response,$forcenewuser) = |
($currstate,$response,$forcenewuser) = |
&build_search_response($srch,%srch_results); |
&build_search_response($context,$srch,%srch_results); |
} else { |
} else { |
my $showdom = &display_domain_info($srch->{'srchdomain'}); $response = '<span class="LC_warning">'. |
my $showdom = &display_domain_info($srch->{'srchdomain'}); $response = '<span class="LC_warning">'. |
&mt('Institutional directory search is not available in domain: [_1]',$showdom). |
&mt('Institutional directory search is not available in domain: [_1]',$showdom). |
Line 3013 sub directorysrch_check {
|
Line 4291 sub directorysrch_check {
|
my ($insttypes,$order) = &Apache::lonnet::retrieve_inst_usertypes($srch->{'srchdomain'}); |
my ($insttypes,$order) = &Apache::lonnet::retrieve_inst_usertypes($srch->{'srchdomain'}); |
my @longtypes; |
my @longtypes; |
foreach my $item (@usertypes) { |
foreach my $item (@usertypes) { |
push (@longtypes,$insttypes->{$item}); |
if (defined($insttypes->{$item})) { |
|
push (@longtypes,$insttypes->{$item}); |
|
} elsif ($item eq 'default') { |
|
push (@longtypes,&mt('other')); |
|
} |
} |
} |
my $insttype_str = join(', ',@longtypes); |
my $insttype_str = join(', ',@longtypes); |
return &mt('Institutional directory search in domain: [_1] is not available to your user type: ',$showdom).$insttype_str; |
return &mt('Institutional directory search in domain: [_1] is not available to your user type: ',$showdom).$insttype_str; |
} |
} |
} else { |
} else { |
$can_search = 1; |
$can_search = 1; |
} |
} |
Line 3075 sub get_courseusers {
|
Line 4357 sub get_courseusers {
|
} |
} |
|
|
sub build_search_response { |
sub build_search_response { |
my ($srch,%srch_results) = @_; |
my ($context,$srch,%srch_results) = @_; |
my ($currstate,$response,$forcenewuser); |
my ($currstate,$response,$forcenewuser); |
my %names = ( |
my %names = ( |
'uname' => 'username', |
'uname' => 'username', |
Line 3134 sub build_search_response {
|
Line 4416 sub build_search_response {
|
} |
} |
} |
} |
if (!($srch->{'srchby'} eq 'uname' && $srch->{'srchin'} eq 'dom' && $srch->{'srchtype'} eq 'exact' && $srch->{'srchdomain'} eq $env{'request.role.domain'})) { |
if (!($srch->{'srchby'} eq 'uname' && $srch->{'srchin'} eq 'dom' && $srch->{'srchtype'} eq 'exact' && $srch->{'srchdomain'} eq $env{'request.role.domain'})) { |
my $showdom = &display_domain_info($env{'request.role.domain'}); |
my $cancreate = |
$response .= '<br /><br />'.&mt("<b>To add a new user</b> (you can only create new users in your current role's domain - <span class=\"LC_cusr_emph\">[_1]</span>):",$env{'request.role.domain'}).'<ul><li>'.&mt("Set 'Domain/institution to search' to: <span class=\"LC_cusr_emph\">[_1]</span>",$showdom).'<li>'.&mt("Set 'Search criteria' to: <span class=\"LC_cusr_emph\">'username is ...... in selected LON-CAPA domain'").'</span></li><li>'.&mt('Provide the proposed username').'</li><li>'.&mt('Search').'</li></ul><br />'; |
&Apache::lonuserutils::can_create_user($env{'request.role.domain'},$context); |
|
if ($cancreate) { |
|
my $showdom = &display_domain_info($env{'request.role.domain'}); |
|
$response .= '<br /><br />'.&mt("<b>To add a new user</b> (you can only create new users in your current role's domain - <span class=\"LC_cusr_emph\">[_1]</span>):",$env{'request.role.domain'}).'<ul><li>'.&mt("Set 'Domain/institution to search' to: <span class=\"LC_cusr_emph\">[_1]</span>",$showdom).'<li>'.&mt("Set 'Search criteria' to: <span class=\"LC_cusr_emph\">'username is ...... in selected LON-CAPA domain'").'</span></li><li>'.&mt('Provide the proposed username').'</li><li>'.&mt('Search').'</li></ul><br />'; |
|
} else { |
|
my $helplink = ' href="javascript:helpMenu('."'display'".')"'; |
|
$response .= '<br /><br />'.&mt("You are not authorized to create new users in your current role's domain - <span class=\"LC_cusr_emph\">[_1]</span>.",$env{'request.role.domain'}).'<br />'.&mt('Contact the <a[_1]>helpdesk</a> if you need to create a new user.',$helplink).'<br /><br />'; |
|
} |
} |
} |
} |
} |
} |
} |
Line 3163 sub crumb_utilities {
|
Line 4452 sub crumb_utilities {
|
srchtype => 'selectbox', |
srchtype => 'selectbox', |
srchdomain => 'selectbox', |
srchdomain => 'selectbox', |
}, |
}, |
|
crtusername => { |
|
srchterm => 'text', |
|
srchdomain => 'selectbox', |
|
}, |
docustom => { |
docustom => { |
rolename => 'selectbox', |
rolename => 'selectbox', |
newrolename => 'textbox', |
newrolename => 'textbox', |
Line 3178 sub crumb_utilities {
|
Line 4471 sub crumb_utilities {
|
|
|
my $jsback .= qq| |
my $jsback .= qq| |
function backPage(formname,prevphase,prevstate) { |
function backPage(formname,prevphase,prevstate) { |
formname.phase.value = prevphase; |
if (typeof prevphase == 'undefined') { |
formname.currstate.value = prevstate; |
formname.phase.value = ''; |
|
} |
|
else { |
|
formname.phase.value = prevphase; |
|
} |
|
if (typeof prevstate == 'undefined') { |
|
formname.currstate.value = ''; |
|
} |
|
else { |
|
formname.currstate.value = prevstate; |
|
} |
formname.submit(); |
formname.submit(); |
} |
} |
|; |
|; |
Line 3221 sub course_level_table {
|
Line 4524 sub course_level_table {
|
&Apache::loncommon::get_sections($domain,$cnum); |
&Apache::loncommon::get_sections($domain,$cnum); |
} |
} |
} |
} |
foreach my $role ('st','ta','ep','in','cc') { |
my @roles = &Apache::lonuserutils::roles_by_context('course'); |
|
foreach my $role (@roles) { |
|
my $plrole=&Apache::lonnet::plaintext($role); |
if (&Apache::lonnet::allowed('c'.$role,$thiscourse)) { |
if (&Apache::lonnet::allowed('c'.$role,$thiscourse)) { |
my $plrole=&Apache::lonnet::plaintext($role); |
$table .= &course_level_row($protectedcourse,$role,$area,$domain, |
$table .= &Apache::loncommon::start_data_table_row(). |
$plrole,\%sections_count,\%lt); |
'<td><input type="checkbox" name="act_'.$protectedcourse.'_'.$role.'" /></td> |
} elsif ($env{'request.course.sec'} ne '') { |
<td>'.$plrole.'</td> |
if (&Apache::lonnet::allowed('c'.$role,$thiscourse.'/'. |
<td>'.$area.'<br />Domain: '.$domain.'</td>'."\n"; |
$env{'request.course.sec'})) { |
if ($role ne 'cc') { |
$table .= &course_level_row($protectedcourse,$role,$area,$domain, |
if (%sections_count) { |
$plrole,\%sections_count,\%lt); |
my $currsec = &course_sections(\%sections_count,$protectedcourse.'_'.$role); |
|
$table .= |
|
'<td><table class="LC_createuser">'. |
|
'<tr class="LC_section_row"> |
|
<td valign="top">'.$lt{'exs'}.'<br />'. |
|
$currsec.'</td>'. |
|
'<td> </td>'. |
|
'<td valign="top"> '.$lt{'new'}.'<br />'. |
|
'<input type="text" name="newsec_'.$protectedcourse.'_'.$role.'" value="" />'. |
|
'<input type="hidden" '. |
|
'name="sec_'.$protectedcourse.'_'.$role.'" /></td>'. |
|
'</tr></table></td>'; |
|
} else { |
|
$table .= '<td><input type="text" size="10" '. |
|
'name="sec_'.$protectedcourse.'_'.$role.'" /></td>'; |
|
} |
|
} else { |
|
$table .= '<td> </td>'; |
|
} |
} |
$table .= <<ENDTIMEENTRY; |
|
<td><input type="hidden" name="start_$protectedcourse\_$role" value='' /> |
|
<a href= |
|
"javascript:pjump('date_start','Start Date $plrole',document.cu.start_$protectedcourse\_$role.value,'start_$protectedcourse\_$role','cu.pres','dateset')">$lt{'ssd'}</a></td> |
|
<td><input type="hidden" name="end_$protectedcourse\_$role" value='' /> |
|
<a href= |
|
"javascript:pjump('date_end','End Date $plrole',document.cu.end_$protectedcourse\_$role.value,'end_$protectedcourse\_$role','cu.pres','dateset')">$lt{'sed'}</a></td> |
|
ENDTIMEENTRY |
|
$table.= &Apache::loncommon::end_data_table_row(); |
|
} |
} |
} |
} |
foreach my $cust (sort keys %customroles) { |
if (&Apache::lonnet::allowed('ccr',$thiscourse)) { |
if (&Apache::lonnet::allowed('ccr',$thiscourse)) { |
foreach my $cust (sort keys %customroles) { |
my $plrole=$cust; |
my $role = 'cr_cr_'.$env{'user.domain'}.'_'.$env{'user.name'}.'_'.$cust; |
my $customrole=$protectedcourse.'_cr_cr_'.$env{'user.domain'}. |
$table .= &course_level_row($protectedcourse,$role,$area,$domain, |
'_'.$env{'user.name'}.'_'.$plrole; |
$cust,\%sections_count,\%lt); |
$table .= &Apache::loncommon::start_data_table_row(). |
} |
'<td><input type="checkbox" name="act_'.$customrole.'" /></td> |
|
<td>'.$plrole.'</td> |
|
<td>'.$area.'</td>'."\n"; |
|
if (%sections_count) { |
|
my $currsec = &course_sections(\%sections_count,$customrole); |
|
$table.= |
|
'<td><table class="LC_createuser">'. |
|
'<tr class="LC_section_row"><td valign="top">'. |
|
$lt{'exs'}.'<br />'.$currsec.'</td>'. |
|
'<td> </td>'. |
|
'<td valign="top"> '.$lt{'new'}.'<br />'. |
|
'<input type="text" name="newsec_'.$customrole.'" value="" /></td>'. |
|
'<input type="hidden" '. |
|
'name="sec_'.$customrole.'" /></td>'. |
|
'</tr></table></td>'; |
|
} else { |
|
$table .= '<td><input type="text" size="10" '. |
|
'name="sec_'.$customrole.'" /></td>'; |
|
} |
|
$table .= <<ENDENTRY; |
|
<td><input type="hidden" name="start_$customrole" value='' /> |
|
<a href= |
|
"javascript:pjump('date_start','Start Date $plrole',document.cu.start_$customrole.value,'start_$customrole','cu.pres','dateset')">$lt{'ssd'}</a></td> |
|
<td><input type="hidden" name="end_$customrole" value='' /> |
|
<a href= |
|
"javascript:pjump('date_end','End Date $plrole',document.cu.end_$customrole.value,'end_$customrole','cu.pres','dateset')">$lt{'sed'}</a></td> |
|
ENDENTRY |
|
$table .= &Apache::loncommon::end_data_table_row(); |
|
} |
|
} |
} |
} |
} |
return '' if ($table eq ''); # return nothing if there is nothing |
return '' if ($table eq ''); # return nothing if there is nothing |
Line 3314 $table.
|
Line 4563 $table.
|
return $result; |
return $result; |
} |
} |
|
|
sub course_sections { |
sub course_level_row { |
my ($sections_count,$role) = @_; |
my ($protectedcourse,$role,$area,$domain,$plrole,$sections_count,$lt) = @_; |
my $output = ''; |
my $row = &Apache::loncommon::start_data_table_row(). |
my @sections = (sort {$a <=> $b} keys %{$sections_count}); |
' <td><input type="checkbox" name="act_'. |
if (scalar(@sections) == 1) { |
$protectedcourse.'_'.$role.'" /></td>'."\n". |
$output = '<select name="currsec_'.$role.'" >'."\n". |
' <td>'.$plrole.'</td>'."\n". |
' <option value="">Select</option>'."\n". |
' <td>'.$area.'<br />Domain: '.$domain.'</td>'."\n"; |
' <option value="">No section</option>'."\n". |
if ($role eq 'cc') { |
' <option value="'.$sections[0].'" >'.$sections[0].'</option>'."\n"; |
$row .= '<td> </td>'; |
} else { |
} elsif ($env{'request.course.sec'} ne '') { |
$output = '<select name="currsec_'.$role.'" '; |
$row .= ' <td><input type="hidden" value="'. |
my $multiple = 4; |
$env{'request.course.sec'}.'" '. |
if (scalar(@sections) < 4) { $multiple = scalar(@sections); } |
'name="sec_'.$protectedcourse.'_'.$role.'" />'. |
$output .= 'multiple="multiple" size="'.$multiple.'">'."\n"; |
$env{'request.course.sec'}.'</td>'; |
foreach my $sec (@sections) { |
} else { |
$output .= '<option value="'.$sec.'">'.$sec."</option>\n"; |
if (ref($sections_count) eq 'HASH') { |
|
my $currsec = |
|
&Apache::lonuserutils::course_sections($sections_count, |
|
$protectedcourse.'_'.$role); |
|
$row .= '<td><table class="LC_createuser">'."\n". |
|
'<tr class="LC_section_row">'."\n". |
|
' <td valign="top">'.$lt->{'exs'}.'<br />'. |
|
$currsec.'</td>'."\n". |
|
' <td> </td>'."\n". |
|
' <td valign="top"> '.$lt->{'new'}.'<br />'. |
|
'<input type="text" name="newsec_'.$protectedcourse.'_'.$role. |
|
'" value="" />'. |
|
'<input type="hidden" '. |
|
'name="sec_'.$protectedcourse.'_'.$role.'" /></td>'."\n". |
|
'</tr></table></td>'."\n"; |
|
} else { |
|
$row .= '<td><input type="text" size="10" '. |
|
'name="sec_'.$protectedcourse.'_'.$role.'" /></td>'."\n"; |
} |
} |
} |
} |
$output .= '</select>'; |
$row .= <<ENDTIMEENTRY; |
return $output; |
<td><input type="hidden" name="start_$protectedcourse\_$role" value="" /> |
|
<a href= |
|
"javascript:pjump('date_start','Start Date $plrole',document.cu.start_$protectedcourse\_$role.value,'start_$protectedcourse\_$role','cu.pres','dateset')">$lt->{'ssd'}</a></td> |
|
<td><input type="hidden" name="end_$protectedcourse\_$role" value="" /> |
|
<a href= |
|
"javascript:pjump('date_end','End Date $plrole',document.cu.end_$protectedcourse\_$role.value,'end_$protectedcourse\_$role','cu.pres','dateset')">$lt->{'sed'}</a></td> |
|
ENDTIMEENTRY |
|
$row .= &Apache::loncommon::end_data_table_row(); |
|
return $row; |
} |
} |
|
|
sub course_level_dc { |
sub course_level_dc { |
my ($dcdom) = @_; |
my ($dcdom) = @_; |
my %customroles=&Apache::lonuserutils::my_custom_roles(); |
my %customroles=&Apache::lonuserutils::my_custom_roles(); |
|
my @roles = &Apache::lonuserutils::roles_by_context('course'); |
my $hiddenitems = '<input type="hidden" name="dcdomain" value="'.$dcdom.'" />'. |
my $hiddenitems = '<input type="hidden" name="dcdomain" value="'.$dcdom.'" />'. |
'<input type="hidden" name="origdom" value="'.$dcdom.'" />'. |
'<input type="hidden" name="origdom" value="'.$dcdom.'" />'. |
'<input type="hidden" name="dccourse" value="" />'; |
'<input type="hidden" name="dccourse" value="" />'; |
Line 3363 sub course_level_dc {
|
Line 4638 sub course_level_dc {
|
my $otheritems = &Apache::loncommon::start_data_table_row()."\n". |
my $otheritems = &Apache::loncommon::start_data_table_row()."\n". |
'<td><input type="text" name="coursedesc" value="" onFocus="this.blur();opencrsbrowser('."'cu','dccourse','dcdomain','coursedesc',''".')" /></td>'."\n". |
'<td><input type="text" name="coursedesc" value="" onFocus="this.blur();opencrsbrowser('."'cu','dccourse','dcdomain','coursedesc',''".')" /></td>'."\n". |
'<td><select name="role">'."\n"; |
'<td><select name="role">'."\n"; |
foreach my $role ('st','ta','ep','in','cc') { |
foreach my $role (@roles) { |
my $plrole=&Apache::lonnet::plaintext($role); |
my $plrole=&Apache::lonnet::plaintext($role); |
$otheritems .= ' <option value="'.$role.'">'.$plrole; |
$otheritems .= ' <option value="'.$role.'">'.$plrole; |
} |
} |
Line 3381 sub course_level_dc {
|
Line 4656 sub course_level_dc {
|
'<td> </td>'. |
'<td> </td>'. |
'<td valign="top"> <b>'.$lt{'new'}.'</b><br />'. |
'<td valign="top"> <b>'.$lt{'new'}.'</b><br />'. |
'<input type="text" name="newsec" value="" />'. |
'<input type="text" name="newsec" value="" />'. |
|
'<input type="hidden" name="section" value="" />'. |
'<input type="hidden" name="groups" value="" /></td>'. |
'<input type="hidden" name="groups" value="" /></td>'. |
'</tr></table></td>'; |
'</tr></table></td>'; |
$otheritems .= <<ENDTIMEENTRY; |
$otheritems .= <<ENDTIMEENTRY; |
Line 3396 ENDTIMEENTRY
|
Line 4672 ENDTIMEENTRY
|
return $cb_jscript.$header.$hiddenitems.$otheritems; |
return $cb_jscript.$header.$hiddenitems.$otheritems; |
} |
} |
|
|
|
sub update_selfenroll_config { |
|
my ($r,$context,$permission) = @_; |
|
my ($row,$lt) = &get_selfenroll_titles(); |
|
my %curr_groups = &Apache::longroup::coursegroups(); |
|
my (%changes,%warning); |
|
my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; |
|
my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; |
|
my $curr_types; |
|
if (ref($row) eq 'ARRAY') { |
|
foreach my $item (@{$row}) { |
|
if ($item eq 'enroll_dates') { |
|
my (%currenrolldate,%newenrolldate); |
|
foreach my $type ('start','end') { |
|
$currenrolldate{$type} = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_'.$type.'_date'}; |
|
$newenrolldate{$type} = &Apache::lonhtmlcommon::get_date_from_form('selfenroll_'.$type.'_date'); |
|
if ($newenrolldate{$type} ne $currenrolldate{$type}) { |
|
$changes{'internal.selfenroll_'.$type.'_date'} = $newenrolldate{$type}; |
|
} |
|
} |
|
} elsif ($item eq 'access_dates') { |
|
my (%currdate,%newdate); |
|
foreach my $type ('start','end') { |
|
$currdate{$type} = $env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_'.$type.'_access'}; |
|
$newdate{$type} = &Apache::lonhtmlcommon::get_date_from_form('selfenroll_'.$type.'_access'); |
|
if ($newdate{$type} ne $currdate{$type}) { |
|
$changes{'internal.selfenroll_'.$type.'_access'} = $newdate{$type}; |
|
} |
|
} |
|
} elsif ($item eq 'types') { |
|
$curr_types = |
|
$env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_'.$item}; |
|
if ($env{'form.selfenroll_all'}) { |
|
if ($curr_types ne '*') { |
|
$changes{'internal.selfenroll_types'} = '*'; |
|
} else { |
|
next; |
|
} |
|
} else { |
|
my %currdoms; |
|
my @entries = split(/;/,$curr_types); |
|
my @deletedoms = &Apache::loncommon::get_env_multiple('form.selfenroll_delete'); |
|
my @activations = &Apache::loncommon::get_env_multiple('form.selfenroll_activate'); |
|
my $newnum = 0; |
|
my @latesttypes; |
|
foreach my $num (@activations) { |
|
my @types = &Apache::loncommon::get_env_multiple('form.selfenroll_types_'.$num); |
|
if (@types > 0) { |
|
@types = sort(@types); |
|
my $typestr = join(',',@types); |
|
my $typedom = $env{'form.selfenroll_dom_'.$num}; |
|
$latesttypes[$newnum] = $typedom.':'.$typestr; |
|
$currdoms{$typedom} = 1; |
|
$newnum ++; |
|
} |
|
} |
|
for (my $j=0; $j<$env{'form.selfenroll_types_total'}; $j++) { if ((!grep(/^$j$/,@deletedoms)) && (!grep(/^$j$/,@activations))) { |
|
my @types = &Apache::loncommon::get_env_multiple('form.selfenroll_types_'.$j); |
|
if (@types > 0) { |
|
@types = sort(@types); |
|
my $typestr = join(',',@types); |
|
my $typedom = $env{'form.selfenroll_dom_'.$j}; |
|
$latesttypes[$newnum] = $typedom.':'.$typestr; |
|
$currdoms{$typedom} = 1; |
|
$newnum ++; |
|
} |
|
} |
|
} |
|
if ($env{'form.selfenroll_newdom'} ne '') { |
|
my $typedom = $env{'form.selfenroll_newdom'}; |
|
if ((!defined($currdoms{$typedom})) && |
|
(&Apache::lonnet::domain($typedom) ne '')) { |
|
my $typestr; |
|
my ($othertitle,$usertypes,$types) = |
|
&Apache::loncommon::sorted_inst_types($typedom); |
|
my $othervalue = 'any'; |
|
if ((ref($types) eq 'ARRAY') && (ref($usertypes) eq 'HASH')) { |
|
if (@{$types} > 0) { |
|
my @esc_types = map { &escape($_); } @{$types}; |
|
$othervalue = 'other'; |
|
$typestr = join(',',(@esc_types,$othervalue)); |
|
} |
|
$typestr = $othervalue; |
|
} else { |
|
$typestr = $othervalue; |
|
} |
|
$latesttypes[$newnum] = $typedom.':'.$typestr; |
|
$newnum ++ ; |
|
} |
|
} |
|
my $selfenroll_types = join(';',@latesttypes); |
|
if ($selfenroll_types ne $curr_types) { |
|
$changes{'internal.selfenroll_types'} = $selfenroll_types; |
|
} |
|
} |
|
} else { |
|
my $curr_val = |
|
$env{'course.'.$env{'request.course.id'}.'.internal.selfenroll_'.$item}; |
|
my $newval = $env{'form.selfenroll_'.$item}; |
|
if ($item eq 'section') { |
|
$newval = $env{'form.sections'}; |
|
if (defined($curr_groups{$newval})) { |
|
$newval = $curr_val; |
|
$warning{$item} = &mt('Section for self-enrolled users unchanged as the proposed section is a group').'<br />'.&mt('Group names and section names must be distinct'); |
|
} elsif ($newval eq 'all') { |
|
$newval = $curr_val; |
|
$warning{$item} = &mt("Section for self-enrolled users unchanged, as 'all' is a reserved section name."); |
|
} |
|
if ($newval eq '') { |
|
$newval = 'none'; |
|
} |
|
} |
|
if ($newval ne $curr_val) { |
|
$changes{'internal.selfenroll_'.$item} = $newval; |
|
} |
|
} |
|
} |
|
if (keys(%warning) > 0) { |
|
foreach my $item (@{$row}) { |
|
if (exists($warning{$item})) { |
|
$r->print($warning{$item}.'<br />'); |
|
} |
|
} |
|
} |
|
if (keys(%changes) > 0) { |
|
my $putresult = &Apache::lonnet::put('environment',\%changes,$cdom,$cnum); |
|
if ($putresult eq 'ok') { |
|
if ((exists($changes{'internal.selfenroll_types'})) || |
|
(exists($changes{'internal.selfenroll_start_date'})) || |
|
(exists($changes{'internal.selfenroll_end_date'}))) { |
|
my %crsinfo = &Apache::lonnet::courseiddump($cdom,'.',1,'.','.', |
|
$cnum,undef,undef,'Course'); |
|
my $chome = &Apache::lonnet::homeserver($cnum,$cdom); |
|
if (ref($crsinfo{$env{'request.course.id'}}) eq 'HASH') { |
|
foreach my $item ('selfenroll_types','selfenroll_start_date','selfenroll_end_date') { |
|
if (exists($changes{'internal.'.$item})) { |
|
$crsinfo{$env{'request.course.id'}}{$item} = |
|
$changes{'internal.'.$item}; |
|
} |
|
} |
|
my $crsputresult = |
|
&Apache::lonnet::courseidput($cdom,\%crsinfo, |
|
$chome,'notime'); |
|
} |
|
} |
|
$r->print(&mt('The following changes were made to self-enrollment settings:').'<ul>'); |
|
foreach my $item (@{$row}) { |
|
my $title = $item; |
|
if (ref($lt) eq 'HASH') { |
|
$title = $lt->{$item}; |
|
} |
|
if ($item eq 'enroll_dates') { |
|
foreach my $type ('start','end') { |
|
if (exists($changes{'internal.selfenroll_'.$type.'_date'})) { |
|
my $newdate = &Apache::lonlocal::locallocaltime($changes{'internal.selfenroll_'.$type.'_date'}); |
|
$r->print('<li>'.&mt('[_1]: "[_2]" set to "[_3]".', |
|
$title,$type,$newdate).'</li>'); |
|
} |
|
} |
|
} elsif ($item eq 'access_dates') { |
|
foreach my $type ('start','end') { |
|
if (exists($changes{'internal.selfenroll_'.$type.'_access'})) { |
|
my $newdate = &Apache::lonlocal::locallocaltime($changes{'internal.selfenroll_'.$type.'_access'}); |
|
$r->print('<li>'.&mt('[_1]: "[_2]" set to "[_3]".', |
|
$title,$type,$newdate).'</li>'); |
|
} |
|
} |
|
} else { |
|
if (exists($changes{'internal.selfenroll_'.$item})) { |
|
my $newval = $changes{'internal.selfenroll_'.$item}; |
|
if ($item eq 'types') { |
|
if ($newval eq '') { |
|
$newval = &mt('None'); |
|
} elsif ($newval eq '*') { |
|
$newval = &mt('Any user in any domain'); |
|
} |
|
} elsif ($item eq 'registered') { |
|
if ($newval eq '1') { |
|
$newval = &mt('Yes'); |
|
} elsif ($newval eq '0') { |
|
$newval = &mt('No'); |
|
} |
|
} |
|
$r->print('<li>'.&mt('"[_1]" set to "[_2]".',$title,$newval).'</li>'."\n"); |
|
} |
|
} |
|
} |
|
$r->print('</ul>'); |
|
my %newenvhash; |
|
foreach my $key (keys(%changes)) { |
|
$newenvhash{'course.'.$env{'request.course.id'}.'.'.$key} = $changes{$key}; |
|
} |
|
&Apache::lonnet::appenv(\%newenvhash); |
|
} else { |
|
$r->print(&mt('An error occurred when saving changes to self-enrollment settings in this course.').'<br />'.&mt('The error was: [_1].',$putresult)); |
|
} |
|
} else { |
|
$r->print(&mt('No changes were made to the existing self-enrollment settings in this course.')); |
|
} |
|
} else { |
|
$r->print(&mt('No changes were made to the existing self-enrollment settings in this course.')); |
|
} |
|
my ($visible,$cansetvis,$vismsgs,$visactions) = &visible_in_cat($cdom,$cnum); |
|
if (ref($visactions) eq 'HASH') { |
|
if (!$visible) { |
|
$r->print('<br />'.$visactions->{'miss'}.'<br />'.$visactions->{'yous'}. |
|
'<br />'); |
|
if (ref($vismsgs) eq 'ARRAY') { |
|
$r->print('<br />'.$visactions->{'take'}.'<ul>'); |
|
foreach my $item (@{$vismsgs}) { |
|
$r->print('<li>'.$visactions->{$item}.'</li>'); |
|
} |
|
$r->print('</ul>'); |
|
} |
|
$r->print($cansetvis); |
|
} |
|
} |
|
return; |
|
} |
|
|
|
sub get_selfenroll_titles { |
|
my @row = ('types','registered','enroll_dates','access_dates','section'); |
|
my %lt = &Apache::lonlocal::texthash ( |
|
types => 'Users allowed to self-enroll in this course', |
|
registered => 'Restrict self-enrollment to students officially registered for the course', |
|
enroll_dates => 'Dates self-enrollment available', |
|
access_dates => 'Course access dates assigned to self-enrolling users', |
|
section => 'Section assigned to self-enrolling users', |
|
); |
|
return (\@row,\%lt); |
|
} |
|
|
#---------------------------------------------- end functions for &phase_two |
#---------------------------------------------- end functions for &phase_two |
|
|
#--------------------------------- functions for &phase_two and &phase_three |
#--------------------------------- functions for &phase_two and &phase_three |