version 1.409, 2016/02/19 02:39:07
|
version 1.416, 2016/10/10 03:02:48
|
Line 251 sub build_tools_display {
|
Line 251 sub build_tools_display {
|
'unofficial' => 'Can request creation of unofficial courses', |
'unofficial' => 'Can request creation of unofficial courses', |
'community' => 'Can request creation of communities', |
'community' => 'Can request creation of communities', |
'textbook' => 'Can request creation of textbook courses', |
'textbook' => 'Can request creation of textbook courses', |
|
'placement' => 'Can request creation of placement tests', |
'requestauthor' => 'Can request author space', |
'requestauthor' => 'Can request author space', |
); |
); |
if ($context eq 'requestcourses') { |
if ($context eq 'requestcourses') { |
%userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname, |
%userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname, |
'requestcourses.official','requestcourses.unofficial', |
'requestcourses.official','requestcourses.unofficial', |
'requestcourses.community','requestcourses.textbook'); |
'requestcourses.community','requestcourses.textbook', |
@usertools = ('official','unofficial','community','textbook'); |
'requestcourses.placement'); |
|
@usertools = ('official','unofficial','community','textbook','placement'); |
@options =('norequest','approval','autolimit','validate'); |
@options =('norequest','approval','autolimit','validate'); |
%validations = &Apache::lonnet::auto_courserequest_checks($ccdomain); |
%validations = &Apache::lonnet::auto_courserequest_checks($ccdomain); |
%reqtitles = &courserequest_titles(); |
%reqtitles = &courserequest_titles(); |
Line 447 sub coursereq_externaluser {
|
Line 449 sub coursereq_externaluser {
|
'unofficial' => 'Can request creation of unofficial courses', |
'unofficial' => 'Can request creation of unofficial courses', |
'community' => 'Can request creation of communities', |
'community' => 'Can request creation of communities', |
'textbook' => 'Can request creation of textbook courses', |
'textbook' => 'Can request creation of textbook courses', |
|
'placement' => 'Can request creation of placement tests', |
); |
); |
|
|
%userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname, |
%userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname, |
'reqcrsotherdom.official','reqcrsotherdom.unofficial', |
'reqcrsotherdom.official','reqcrsotherdom.unofficial', |
'reqcrsotherdom.community','reqcrsotherdom.textbook'); |
'reqcrsotherdom.community','reqcrsotherdom.textbook', |
@usertools = ('official','unofficial','community','textbook'); |
'reqcrsotherdom.placement'); |
|
@usertools = ('official','unofficial','community','textbook','placement'); |
@options = ('approval','validate','autolimit'); |
@options = ('approval','validate','autolimit'); |
%validations = &Apache::lonnet::auto_courserequest_checks($cdom); |
%validations = &Apache::lonnet::auto_courserequest_checks($cdom); |
my $optregex = join('|',@options); |
my $optregex = join('|',@options); |
Line 527 sub domainrole_req {
|
Line 531 sub domainrole_req {
|
&Apache::loncommon::end_data_table(); |
&Apache::loncommon::end_data_table(); |
} |
} |
|
|
|
sub domadhocroles { |
|
my ($ccuname,$ccdomain) = @_; |
|
my $confname = &Apache::lonnet::get_domainconfiguser($env{'request.role.domain'}); |
|
my %existing=&Apache::lonnet::dump('roles',$env{'request.role.domain'}, |
|
$confname,'rolesdef_'); |
|
my $output; |
|
if (keys(%existing) > 0) { |
|
my @current; |
|
my $curradhoc = 'adhocroles.'.$env{'request.role.domain'}; |
|
my %userenv = &Apache::lonnet::userenvironment($ccdomain,$ccuname,$curradhoc); |
|
if ($userenv{$curradhoc}) { |
|
@current = split(/,/,$userenv{$curradhoc}); |
|
} |
|
my %customroles; |
|
foreach my $key (keys(%existing)) { |
|
if ($key=~/^rolesdef\_(\w+)$/) { |
|
my $rolename = $1; |
|
my %privs; |
|
($privs{'system'},$privs{'domain'},$privs{'course'}) = split(/\_/,$existing{$key}); |
|
$customroles{$rolename} = \%privs; |
|
} |
|
} |
|
$output = '<br /><h3>'. |
|
&mt('Ad Hoc Course Roles Selectable via Helpdesk Role'). |
|
'</h3>'."\n". |
|
&Apache::loncommon::start_data_table(). |
|
&Apache::loncommon::start_data_table_header_row(). |
|
'<th>'.&mt('Action').'</th><th>'.&mt('Role').'</th>'. |
|
'<th>'.&mt('Privileges in Course').'<th>'. |
|
&Apache::loncommon::end_data_table_header_row(); |
|
foreach my $key (sort(keys(%customroles))) { |
|
$output .= &Apache::loncommon::start_data_table_row(); |
|
if (grep(/^\Q$key\E$/,@current)) { |
|
$output .= '<td><label>'. |
|
'<input type="checkbox" name="adhocroledel" value="'.$key.'" />'. |
|
&mt('Delete').'</label>'. |
|
'</td>'; |
|
} else { |
|
$output .= '<td><label>'. |
|
'<input type="checkbox" name="adhocroleadd" value="'.$key.'" />'. |
|
&mt('Add').'</label>'. |
|
'</td>'; |
|
} |
|
$output .= '<td>'.$key.'</td><td>'; |
|
foreach my $level ('course','domain','system') { |
|
if ($customroles{$key}{$level}) { |
|
my $suffix; |
|
if (($level eq 'domain') || ($level eq 'system')) { |
|
$suffix = ' ('.&mt($level).')'; |
|
} |
|
my @privs = split(/:/,$customroles{$key}{$level}); |
|
foreach my $item (@privs) { |
|
next if ($item eq ''); |
|
my ($priv,$cond) = split(/\&/,$item); |
|
$output .= &Apache::lonnet::plaintext($priv,'Course').$suffix.'<br />'; |
|
} |
|
} |
|
} |
|
$output .= '</td>'. |
|
&Apache::loncommon::end_data_table_row(); |
|
} |
|
$output .= &Apache::loncommon::end_data_table(); |
|
} |
|
return $output; |
|
} |
|
|
sub courserequest_titles { |
sub courserequest_titles { |
my %titles = &Apache::lonlocal::texthash ( |
my %titles = &Apache::lonlocal::texthash ( |
official => 'Official', |
official => 'Official', |
unofficial => 'Unofficial', |
unofficial => 'Unofficial', |
community => 'Communities', |
community => 'Communities', |
textbook => 'Textbook', |
textbook => 'Textbook', |
|
placement => 'Placement Tests', |
norequest => 'Not allowed', |
norequest => 'Not allowed', |
approval => 'Approval by Dom. Coord.', |
approval => 'Approval by Dom. Coord.', |
validate => 'With validation', |
validate => 'With validation', |
Line 666 sub print_username_entry_form {
|
Line 737 sub print_username_entry_form {
|
$helpitem = 'Course_Editing_Custom_Roles'; |
$helpitem = 'Course_Editing_Custom_Roles'; |
} elsif ($env{'form.action'} eq 'singlestudent') { |
} elsif ($env{'form.action'} eq 'singlestudent') { |
$helpitem = 'Course_Add_Student'; |
$helpitem = 'Course_Add_Student'; |
|
} elsif ($env{'form.action'} eq 'accesslogs') { |
|
$helpitem = 'Domain_User_Access_Logs'; |
} |
} |
my %breadcrumb_text = &singleuser_breadcrumb($crstype); |
my %breadcrumb_text = &singleuser_breadcrumb($crstype); |
if ($env{'form.action'} eq 'custom') { |
if ($env{'form.action'} eq 'custom') { |
Line 695 sub print_username_entry_form {
|
Line 768 sub print_username_entry_form {
|
'srst' => 'Search for a user and enroll as a student', |
'srst' => 'Search for a user and enroll as a student', |
'srme' => 'Search for a user and enroll as a member', |
'srme' => 'Search for a user and enroll as a member', |
'srad' => 'Search for a user and modify/add user information or roles', |
'srad' => 'Search for a user and modify/add user information or roles', |
|
'srva' => 'Search for a user and view access log information', |
'usr' => "Username", |
'usr' => "Username", |
'dom' => "Domain", |
'dom' => "Domain", |
'ecrp' => "Define or Edit Custom Role", |
'ecrp' => "Define or Edit Custom Role", |
Line 747 sub print_username_entry_form {
|
Line 821 sub print_username_entry_form {
|
} else { |
} else { |
$actiontext = $lt{'srst'}; |
$actiontext = $lt{'srst'}; |
} |
} |
|
} elsif ($env{'form.action'} eq 'accesslogs') { |
|
$actiontext = $lt{'srva'}; |
} |
} |
$r->print("<h3>$actiontext</h3>"); |
$r->print("<h3>$actiontext</h3>"); |
if ($env{'form.origform'} ne 'crtusername') { |
if ($env{'form.origform'} ne 'crtusername') { |
$r->print("\n".$response); |
if ($response) { |
|
$r->print("\n<div>$response</div>". |
|
'<br clear="all" />'); |
|
} |
} |
} |
$r->print(&entry_form($defdom,$srch,$forcenewuser,$context,$response,$crstype)); |
$r->print(&entry_form($defdom,$srch,$forcenewuser,$context,$response,$crstype,1)); |
} |
} |
} |
} |
|
|
Line 795 END
|
Line 874 END
|
} |
} |
|
|
sub entry_form { |
sub entry_form { |
my ($dom,$srch,$forcenewuser,$context,$responsemsg,$crstype) = @_; |
my ($dom,$srch,$forcenewuser,$context,$responsemsg,$crstype,$fixeddom) = @_; |
my ($usertype,$inexact); |
my ($usertype,$inexact); |
if (ref($srch) eq 'HASH') { |
if (ref($srch) eq 'HASH') { |
if (($srch->{'srchin'} eq 'dom') && |
if (($srch->{'srchin'} eq 'dom') && |
Line 813 sub entry_form {
|
Line 892 sub entry_form {
|
} |
} |
my $cancreate = |
my $cancreate = |
&Apache::lonuserutils::can_create_user($dom,$context,$usertype); |
&Apache::lonuserutils::can_create_user($dom,$context,$usertype); |
my $userpicker = |
my ($userpicker,$cansearch) = |
&Apache::loncommon::user_picker($dom,$srch,$forcenewuser, |
&Apache::loncommon::user_picker($dom,$srch,$forcenewuser, |
'document.crtuser',$cancreate,$usertype); |
'document.crtuser',$cancreate,$usertype,$context,$fixeddom); |
my $srchbutton = &mt('Search'); |
my $srchbutton = &mt('Search'); |
if ($env{'form.action'} eq 'singlestudent') { |
if ($env{'form.action'} eq 'singlestudent') { |
$srchbutton = &mt('Search and Enroll'); |
$srchbutton = &mt('Search and Enroll'); |
|
} elsif ($env{'form.action'} eq 'accesslogs') { |
|
$srchbutton = &mt('Search'); |
} elsif ($cancreate && $responsemsg ne '' && $inexact) { |
} elsif ($cancreate && $responsemsg ne '' && $inexact) { |
$srchbutton = &mt('Search or Add New User'); |
$srchbutton = &mt('Search or Add New User'); |
} |
} |
my $output = <<"ENDBLOCK"; |
my $output; |
|
if ($cansearch) { |
|
$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" /> |
Line 830 $userpicker
|
Line 913 $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 |
ENDBLOCK |
if ($env{'form.phase'} eq '') { |
} else { |
|
$output = '<p>'.$userpicker.'</p>'; |
|
} |
|
if (($env{'form.phase'} eq '') && ($env{'form.action'} ne 'accesslogs')) { |
my $defdom=$env{'request.role.domain'}; |
my $defdom=$env{'request.role.domain'}; |
my $domform = &Apache::loncommon::select_dom_form($defdom,'srchdomain'); |
my $domform = &Apache::loncommon::select_dom_form($defdom,'srchdomain'); |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
Line 946 ENDSCRIPT
|
Line 1032 ENDSCRIPT
|
'usrch' => "User Search to add/modify roles", |
'usrch' => "User Search to add/modify roles", |
'stusrch' => "User Search to enroll student", |
'stusrch' => "User Search to enroll student", |
'memsrch' => "User Search to enroll member", |
'memsrch' => "User Search to enroll member", |
|
'srcva' => "Search for a user and view access log information", |
'usel' => "Select a user to add/modify roles", |
'usel' => "Select a user to add/modify roles", |
'stusel' => "Select a user to enroll as a student", |
'stusel' => "Select a user to enroll as a student", |
'memsel' => "Select a user to enroll as a member", |
'memsel' => "Select a user to enroll as a member", |
|
'vacsel' => "Select a user to view access log", |
'username' => "username", |
'username' => "username", |
'domain' => "domain", |
'domain' => "domain", |
'lastname' => "last name", |
'lastname' => "last name", |
Line 997 ENDSCRIPT
|
Line 1085 ENDSCRIPT
|
$r->print($lt{'stusel'}); |
$r->print($lt{'stusel'}); |
} |
} |
$r->print('</h3>'); |
$r->print('</h3>'); |
|
} elsif ($env{'form.action'} eq 'accesslogs') { |
|
$r->print("<b>$lt{'srcva'}</b><br />"); |
|
$r->print(&entry_form($srch->{'srchdomain'},$srch,undef,'accesslogs',undef,undef,1)); |
|
$r->print('<h3>'.$lt{'vacsel'}.'</h3>'); |
} |
} |
} |
} |
$r->print('<form name="usersrchform" method="post" action="">'. |
$r->print('<form name="usersrchform" method="post" action="">'. |
Line 1231 ENDFORMINFO
|
Line 1323 ENDFORMINFO
|
} |
} |
my $title = ''; |
my $title = ''; |
if ($newuser) { |
if ($newuser) { |
my ($portfolioform,$domroleform); |
my ($portfolioform,$domroleform,$adhocroleform); |
if ((&Apache::lonnet::allowed('mpq',$env{'request.role.domain'})) || |
if ((&Apache::lonnet::allowed('mpq',$env{'request.role.domain'})) || |
(&Apache::lonnet::allowed('mut',$env{'request.role.domain'}))) { |
(&Apache::lonnet::allowed('mut',$env{'request.role.domain'}))) { |
# Current user has quota or user tools modification privileges |
# Current user has quota or user tools modification privileges |
Line 1241 ENDFORMINFO
|
Line 1333 ENDFORMINFO
|
($ccdomain eq $env{'request.role.domain'})) { |
($ccdomain eq $env{'request.role.domain'})) { |
$domroleform = '<br />'.&domainrole_req($ccuname,$ccdomain); |
$domroleform = '<br />'.&domainrole_req($ccuname,$ccdomain); |
} |
} |
|
if (&Apache::lonnet::allowed('cdh',$env{'request.role.domain'})) { |
|
$adhocroleform = &domadhocroles($ccuname,$ccdomain); |
|
if ($adhocroleform) { |
|
$adhocroleform = '<br />'.$adhocroleform; |
|
} |
|
} |
&initialize_authen_forms($ccdomain,$formname); |
&initialize_authen_forms($ccdomain,$formname); |
my %lt=&Apache::lonlocal::texthash( |
my %lt=&Apache::lonlocal::texthash( |
'lg' => 'Login Data', |
'lg' => 'Login Data', |
Line 1351 ENDAUTH
|
Line 1449 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($portfolioform.$domroleform); |
$r->print($portfolioform.$domroleform.$adhocroleform); |
if ($env{'form.action'} eq 'singlestudent') { |
if ($env{'form.action'} eq 'singlestudent') { |
$r->print(&date_sections_select($context,$newuser,$formname, |
$r->print(&date_sections_select($context,$newuser,$formname, |
$permission,$crstype,$ccuname, |
$permission,$crstype,$ccuname, |
Line 1388 ENDAUTH
|
Line 1486 ENDAUTH
|
$r->print(&Apache::loncommon::end_data_table()); |
$r->print(&Apache::loncommon::end_data_table()); |
} |
} |
$r->print('</div>'); |
$r->print('</div>'); |
my @order = ('auth','quota','tools','requestauthor'); |
my @order = ('auth','quota','tools','requestauthor','adhocroles'); |
my %user_text; |
my %user_text; |
my ($isadv,$isauthor) = |
my ($isadv,$isauthor) = |
&Apache::lonnet::is_advanced_user($ccuname,$ccdomain); |
&Apache::lonnet::is_advanced_user($ccuname,$ccdomain); |
Line 1397 ENDAUTH
|
Line 1495 ENDAUTH
|
&& ($env{'request.role.domain'} eq $ccdomain)) { |
&& ($env{'request.role.domain'} eq $ccdomain)) { |
$user_text{'requestauthor'} = &domainrole_req($ccuname,$ccdomain); |
$user_text{'requestauthor'} = &domainrole_req($ccuname,$ccdomain); |
} |
} |
|
if (&Apache::lonnet::allowed('cdh',$env{'request.role.domain'})) { |
|
$user_text{'adhocroles'} = &domadhocroles($ccuname,$ccdomain); |
|
} |
$user_text{'auth'} = &user_authentication($ccuname,$ccdomain,$formname); |
$user_text{'auth'} = &user_authentication($ccuname,$ccdomain,$formname); |
if ((&Apache::lonnet::allowed('mpq',$ccdomain)) || |
if ((&Apache::lonnet::allowed('mpq',$ccdomain)) || |
(&Apache::lonnet::allowed('mut',$ccdomain))) { |
(&Apache::lonnet::allowed('mut',$ccdomain))) { |
Line 1523 sub singleuser_breadcrumb {
|
Line 1624 sub singleuser_breadcrumb {
|
} |
} |
$breadcrumb_text{'userpicked'} = 'Select a user', |
$breadcrumb_text{'userpicked'} = 'Select a user', |
$breadcrumb_text{'modify'} = 'Set section/dates', |
$breadcrumb_text{'modify'} = 'Set section/dates', |
|
} elsif ($env{'form.action'} eq 'accesslogs') { |
|
$breadcrumb_text{'search'} = 'View access logs for a user'; |
|
$breadcrumb_text{'userpicked'} = 'Select a user', |
|
$breadcrumb_text{'activity'} = 'Activity', |
} else { |
} else { |
$breadcrumb_text{'search'} = 'Create/modify a user'; |
$breadcrumb_text{'search'} = 'Create/modify a user'; |
$breadcrumb_text{'userpicked'} = 'Select a user', |
$breadcrumb_text{'userpicked'} = 'Select a user', |
Line 2164 sub modify_login_block {
|
Line 2269 sub modify_login_block {
|
|
|
sub personal_data_display { |
sub personal_data_display { |
my ($ccuname,$ccdomain,$newuser,$context,$inst_results,$rolesarray, |
my ($ccuname,$ccdomain,$newuser,$context,$inst_results,$rolesarray, |
$now,$captchaform,$emailusername,$usertype,$recaptchaversion) = @_; |
$now,$captchaform,$emailusername,$usertype) = @_; |
my ($output,%userenv,%canmodify,%canmodify_status); |
my ($output,%userenv,%canmodify,%canmodify_status); |
my @userinfo = ('firstname','middlename','lastname','generation', |
my @userinfo = ('firstname','middlename','lastname','generation', |
'permanentemail','id'); |
'permanentemail','id'); |
Line 2351 sub personal_data_display {
|
Line 2456 sub personal_data_display {
|
} |
} |
if (($context eq 'selfcreate') && ($newuser eq 'email')) { |
if (($context eq 'selfcreate') && ($newuser eq 'email')) { |
if ($captchaform) { |
if ($captchaform) { |
$output .= &Apache::lonhtmlcommon::row_title($lt{'valid'}, |
$output .= &Apache::lonhtmlcommon::row_title($lt{'valid'}.'*', |
'LC_pick_box_title')."\n"; |
'LC_pick_box_title')."\n". |
if ($recaptchaversion >=2) { |
$captchaform."\n".'<br /><br />'. |
$output .= '<script src="https://www.google.com/recaptcha/api.js"></script>'."\n"; |
|
} |
|
$output .= $captchaform."\n".'<br /><br />'. |
|
&Apache::lonhtmlcommon::row_closure(1); |
&Apache::lonhtmlcommon::row_closure(1); |
$rowcount ++; |
$rowcount ++; |
} |
} |
Line 2582 sub update_user_data {
|
Line 2684 sub update_user_data {
|
my (%alerts,%rulematch,%inst_results,%curr_rules); |
my (%alerts,%rulematch,%inst_results,%curr_rules); |
my @userinfo = ('firstname','middlename','lastname','generation','permanentemail','id'); |
my @userinfo = ('firstname','middlename','lastname','generation','permanentemail','id'); |
my @usertools = ('aboutme','blog','webdav','portfolio'); |
my @usertools = ('aboutme','blog','webdav','portfolio'); |
my @requestcourses = ('official','unofficial','community','textbook'); |
my @requestcourses = ('official','unofficial','community','textbook','placement'); |
my @requestauthor = ('requestauthor'); |
my @requestauthor = ('requestauthor'); |
my ($othertitle,$usertypes,$types) = |
my ($othertitle,$usertypes,$types) = |
&Apache::loncommon::sorted_inst_types($env{'form.ccdomain'}); |
&Apache::loncommon::sorted_inst_types($env{'form.ccdomain'}); |
Line 2692 sub update_user_data {
|
Line 2794 sub update_user_data {
|
$newcustom{'requestauthor'}, |
$newcustom{'requestauthor'}, |
\%changeHash,'requestauthor'); |
\%changeHash,'requestauthor'); |
} |
} |
|
if (&Apache::lonnet::allowed('cdh',$env{'request.role.domain'})) { |
|
my @adds = &Apache::loncommon::get_env_multiple('form.adhocroleadd'); |
|
if (&adhocrole_changes(\%changeHash)) { |
|
$changed{'adhocroles.'.$env{'request.role.domain'}} = $changeHash{'adhocroles.'.$env{'request.role.domain'}}; |
|
} |
|
} |
} |
} |
if ($canmodify_status{'inststatus'}) { |
if ($canmodify_status{'inststatus'}) { |
if (exists($env{'form.inststatus'})) { |
if (exists($env{'form.inststatus'})) { |
Line 2755 sub update_user_data {
|
Line 2863 sub update_user_data {
|
'requestcourses.community','requestcourses.textbook', |
'requestcourses.community','requestcourses.textbook', |
'reqcrsotherdom.official','reqcrsotherdom.unofficial', |
'reqcrsotherdom.official','reqcrsotherdom.unofficial', |
'reqcrsotherdom.community','reqcrsotherdom.textbook', |
'reqcrsotherdom.community','reqcrsotherdom.textbook', |
'requestauthor'], |
'reqcrsotherdom.placement','requestauthor', |
|
'adhocroles.'.$env{'request.role.domain'}], |
$env{'form.ccdomain'},$env{'form.ccuname'}); |
$env{'form.ccdomain'},$env{'form.ccuname'}); |
my ($tmp) = keys(%userenv); |
my ($tmp) = keys(%userenv); |
if ($tmp =~ /^(con_lost|error)/i) { |
if ($tmp =~ /^(con_lost|error)/i) { |
Line 2894 sub update_user_data {
|
Line 3003 sub update_user_data {
|
&Apache::loncommon::default_quota($env{'form.ccdomain'},$oldinststatus,$name); |
&Apache::loncommon::default_quota($env{'form.ccdomain'},$oldinststatus,$name); |
($newdefquota{$name},$newsettingstatus{$name}) = ($olddefquota{$name},$oldsettingstatus{$name}); |
($newdefquota{$name},$newsettingstatus{$name}) = ($olddefquota{$name},$oldsettingstatus{$name}); |
} |
} |
|
push(@disporder,'adhocroles'); |
my %canshow; |
my %canshow; |
if (&Apache::lonnet::allowed('mpq',$env{'form.ccdomain'})) { |
if (&Apache::lonnet::allowed('mpq',$env{'form.ccdomain'})) { |
$canshow{'quota'} = 1; |
$canshow{'quota'} = 1; |
Line 2912 sub update_user_data {
|
Line 3022 sub update_user_data {
|
if (&Apache::lonnet::allowed('cau',$env{'form.ccdomain'})) { |
if (&Apache::lonnet::allowed('cau',$env{'form.ccdomain'})) { |
$canshow{'requestauthor'} = 1; |
$canshow{'requestauthor'} = 1; |
} |
} |
|
if (&Apache::lonnet::allowed('cdh',$env{'request.role.domain'})) { |
|
$canshow{'adhocroles'} = 1; |
|
} |
my (%changeHash,%changed); |
my (%changeHash,%changed); |
if ($oldinststatus eq '') { |
if ($oldinststatus eq '') { |
$oldsettings{'inststatus'} = $othertitle; |
$oldsettings{'inststatus'} = $othertitle; |
Line 3025 sub update_user_data {
|
Line 3138 sub update_user_data {
|
&tool_changes('reqcrsotherdom',\@requestcourses,\%oldsettings,\%oldsettingstext, |
&tool_changes('reqcrsotherdom',\@requestcourses,\%oldsettings,\%oldsettingstext, |
\%userenv,\%changeHash,\%changed,\%newsettings,\%newsettingstext); |
\%userenv,\%changeHash,\%changed,\%newsettings,\%newsettingstext); |
} |
} |
|
if ($userenv{'adhocroles.'.$env{'request.role.domain'}}) { |
|
$changeHash{'adhocroles.'.$env{'request.role.domain'}} = $userenv{'adhocroles.'.$env{'request.role.domain'}}; |
|
} |
|
if (&adhocrole_changes(\%changeHash,\%userenv)) { |
|
$changed{'adhocroles'} = 1; |
|
$oldsettings{'adhocroles'} = $userenv{'adhocroles.'.$env{'request.role.domain'}}; |
|
$newsettings{'adhocroles'} = $changeHash{'adhocroles.'.$env{'request.role.domain'}}; |
|
} |
} |
} |
foreach my $item (@userinfo) { |
foreach my $item (@userinfo) { |
if ($env{'form.c'.$item} ne $userenv{$item}) { |
if ($env{'form.c'.$item} ne $userenv{$item}) { |
Line 3046 sub update_user_data {
|
Line 3167 sub update_user_data {
|
($env{'user.domain'} eq $env{'form.ccdomain'})) { |
($env{'user.domain'} eq $env{'form.ccdomain'})) { |
my %newenvhash; |
my %newenvhash; |
foreach my $key (keys(%changed)) { |
foreach my $key (keys(%changed)) { |
if (($key eq 'official') || ($key eq 'unofficial') |
if (($key eq 'official') || ($key eq 'unofficial') || |
|| ($key eq 'community') || ($key eq 'textbook')) { |
($key eq 'community') || ($key eq 'textbook') || |
|
($key eq 'placement')) { |
$newenvhash{'environment.requestcourses.'.$key} = |
$newenvhash{'environment.requestcourses.'.$key} = |
$changeHash{'requestcourses.'.$key}; |
$changeHash{'requestcourses.'.$key}; |
if ($changeHash{'requestcourses.'.$key}) { |
if ($changeHash{'requestcourses.'.$key}) { |
Line 3066 sub update_user_data {
|
Line 3188 sub update_user_data {
|
&Apache::lonnet::usertools_access($env{'user.name'},$env{'user.domain'}, |
&Apache::lonnet::usertools_access($env{'user.name'},$env{'user.domain'}, |
$key,'reload','requestauthor'); |
$key,'reload','requestauthor'); |
} |
} |
|
} elsif ($key eq 'adhocroles') { |
|
$newenvhash{'adhocroles.'.$env{'request.role.domain'}} = |
|
$changeHash{'adhocroles.'.$env{'request.role.domain'}}; |
} elsif ($key ne 'quota') { |
} elsif ($key ne 'quota') { |
$newenvhash{'environment.tools.'.$key} = |
$newenvhash{'environment.tools.'.$key} = |
$changeHash{'tools.'.$key}; |
$changeHash{'tools.'.$key}; |
Line 3256 sub display_userinfo {
|
Line 3381 sub display_userinfo {
|
'unofficial' => 'Can Request Unofficial Courses', |
'unofficial' => 'Can Request Unofficial Courses', |
'community' => 'Can Request Communities', |
'community' => 'Can Request Communities', |
'textbook' => 'Can Request Textbook Courses', |
'textbook' => 'Can Request Textbook Courses', |
|
'placement' => 'Can Request Placement Tests', |
'requestauthor' => 'Can Request Author Role', |
'requestauthor' => 'Can Request Author Role', |
|
'adhocroles' => 'Ad Hoc Roles Selectable via Helpdesk Role', |
'inststatus' => "Affiliation", |
'inststatus' => "Affiliation", |
'prvs' => 'Previous Value:', |
'prvs' => 'Previous Value:', |
'chto' => 'Changed To:' |
'chto' => 'Changed To:' |
Line 3622 sub tool_changes {
|
Line 3749 sub tool_changes {
|
return; |
return; |
} |
} |
|
|
|
sub adhocrole_changes { |
|
my ($changehashref,$userenv) = @_; |
|
my @adds = &Apache::loncommon::get_env_multiple('form.adhocroleadd'); |
|
my @dels = &Apache::loncommon::get_env_multiple('form.adhocroledel'); |
|
my (@saved,@added,@alladhoc,$changed); |
|
my $adhoc_key = 'adhocroles.'.$env{'request.role.domain'}; |
|
if (!$env{'form.makeuser'}) { |
|
if (ref($userenv) eq 'HASH') { |
|
my @current; |
|
if ($userenv->{$adhoc_key}) { |
|
@current = split(/,/,$userenv->{$adhoc_key}); |
|
if (@dels) { |
|
foreach my $curr (@current) { |
|
next if ($curr eq ''); |
|
unless (grep(/\Q$curr\E$/,@dels)) { |
|
push(@saved,$curr); |
|
} |
|
} |
|
$changed = 1; |
|
} else { |
|
@saved = @current; |
|
} |
|
} |
|
} |
|
} |
|
if (@adds) { |
|
my $confname = &Apache::lonnet::get_domainconfiguser($env{'request.role.domain'}); |
|
my %existing=&Apache::lonnet::dump('roles',$env{'request.role.domain'}, |
|
$confname,'rolesdef_'); |
|
foreach my $poss (@adds) { |
|
if (exists($existing{'rolesdef_'.$poss})) { |
|
push(@added,$poss); |
|
$changed = 1; |
|
} |
|
} |
|
} |
|
if (@added) { |
|
if (@saved) { |
|
foreach my $add (@added) { |
|
unless (grep(/^\Q$add\E$/,@saved)) { |
|
push(@alladhoc,$add); |
|
} |
|
} |
|
} else { |
|
push(@alladhoc,@added); |
|
} |
|
} |
|
if (@saved) { |
|
push(@alladhoc,@saved); |
|
} |
|
if (@alladhoc) { |
|
my $adhocstr = join(',',sort(@alladhoc)); |
|
$changehashref->{$adhoc_key} = $adhocstr; |
|
} elsif (@dels) { |
|
&Apache::lonnet::del('environment',[$adhoc_key],$env{'form.ccdomain'},$env{'form.ccuname'}); |
|
delete($changehashref->{$adhoc_key}); |
|
if (($env{'form.ccdomain'} eq $env{'user.domain'}) && |
|
($env{'form.ccuname'} eq $env{'user.name'})) { |
|
&Apache::lonnet::delenv($adhoc_key); |
|
} |
|
} |
|
return $changed; |
|
} |
|
|
sub update_roles { |
sub update_roles { |
my ($r,$context,$showcredits) = @_; |
my ($r,$context,$showcredits) = @_; |
my $now=time; |
my $now=time; |
Line 4152 sub build_roles {
|
Line 4343 sub build_roles {
|
# ========================================================== Custom Role Editor |
# ========================================================== Custom Role Editor |
|
|
sub custom_role_editor { |
sub custom_role_editor { |
my ($r,$brcrum) = @_; |
my ($r,$brcrum,$prefix) = @_; |
my $action = $env{'form.customroleaction'}; |
my $action = $env{'form.customroleaction'}; |
my $rolename; |
my $rolename; |
if ($action eq 'new') { |
if ($action eq 'new') { |
Line 4167 sub custom_role_editor {
|
Line 4358 sub custom_role_editor {
|
$context = 'course'; |
$context = 'course'; |
} else { |
} else { |
$context = 'domain'; |
$context = 'domain'; |
$crstype = $env{'form.templatecrstype'}; |
$crstype = 'course'; |
} |
} |
|
|
$rolename=~s/[^A-Za-z0-9]//gs; |
$rolename=~s/[^A-Za-z0-9]//gs; |
Line 4176 sub custom_role_editor {
|
Line 4367 sub custom_role_editor {
|
return; |
return; |
} |
} |
|
|
# ------------------------------------------------------- What can be assigned? |
my $formname = 'form1'; |
my %full=(); |
my %privs=(); |
my %courselevel=(); |
my $body_top = '<h2>'; |
my %courselevelcurrent=(); |
# ------------------------------------------------------- Does this role exist? |
my $syspriv=''; |
|
my $dompriv=''; |
|
my $coursepriv=''; |
|
my $body_top; |
|
my $newrole; |
|
my ($rdummy,$roledef)= |
my ($rdummy,$roledef)= |
&Apache::lonnet::get('roles',["rolesdef_$rolename"]); |
&Apache::lonnet::get('roles',["rolesdef_$rolename"]); |
# ------------------------------------------------------- Does this role exist? |
|
$body_top .= '<h2>'; |
|
if (($rdummy ne 'con_lost') && ($roledef ne '')) { |
if (($rdummy ne 'con_lost') && ($roledef ne '')) { |
$body_top .= &mt('Existing Role').' "'; |
$body_top .= &mt('Existing Role').' "'; |
# ------------------------------------------------- Get current role privileges |
# ------------------------------------------------- Get current role privileges |
($syspriv,$dompriv,$coursepriv)=split(/\_/,$roledef); |
($privs{'system'},$privs{'domain'},$privs{'course'})=split(/\_/,$roledef); |
if ($crstype eq 'Community') { |
if ($privs{'system'} =~ /bre\&S/) { |
$syspriv =~ s/bre\&S//; |
if ($context eq 'domain') { |
|
$crstype = 'Course'; |
|
} elsif ($crstype eq 'Community') { |
|
$privs{'system'} =~ s/bre\&S//; |
|
} |
|
} elsif ($context eq 'domain') { |
|
$crstype = 'Course'; |
} |
} |
} else { |
} else { |
$newrole = 1; |
$body_top .= &mt('New Role').' "'; |
$body_top .= &mt('New Role').' "'; |
$roledef=''; |
$roledef=''; |
|
} |
} |
$body_top .= $rolename.'"</h2>'; |
$body_top .= $rolename.'"</h2>'; |
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:c'})) { |
|
my ($priv,$restrict)=split(/\&/,$item); |
# ------------------------------------------------------- What can be assigned? |
if (!$restrict) { $restrict='F'; } |
my %full=(); |
$courselevel{$priv}=$restrict; |
my %levels=( |
if ($coursepriv=~/\:$priv/) { |
course => {}, |
$courselevelcurrent{$priv}=1; |
domain => {}, |
} |
system => {}, |
$full{$priv}=1; |
); |
} |
my %levelscurrent=( |
my %domainlevel=(); |
course => {}, |
my %domainlevelcurrent=(); |
domain => {}, |
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:d'})) { |
system => {}, |
my ($priv,$restrict)=split(/\&/,$item); |
); |
if (!$restrict) { $restrict='F'; } |
&Apache::lonuserutils::custom_role_privs(\%privs,\%full,\%levels,\%levelscurrent); |
$domainlevel{$priv}=$restrict; |
|
if ($dompriv=~/\:$priv/) { |
|
$domainlevelcurrent{$priv}=1; |
|
} |
|
$full{$priv}=1; |
|
} |
|
my %systemlevel=(); |
|
my %systemlevelcurrent=(); |
|
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:s'})) { |
|
my ($priv,$restrict)=split(/\&/,$item); |
|
if (!$restrict) { $restrict='F'; } |
|
$systemlevel{$priv}=$restrict; |
|
if ($syspriv=~/\:$priv/) { |
|
$systemlevelcurrent{$priv}=1; |
|
} |
|
$full{$priv}=1; |
|
} |
|
my ($jsback,$elements) = &crumb_utilities(); |
my ($jsback,$elements) = &crumb_utilities(); |
my $button_code = "\n"; |
my @templateroles = &Apache::lonuserutils::custom_template_roles($context,$crstype); |
my $head_script = "\n"; |
my $head_script = |
$head_script .= '<script type="text/javascript">'."\n" |
&Apache::lonuserutils::custom_roledefs_js($context,$crstype,$formname, |
.'// <![CDATA['."\n"; |
\%full,\@templateroles,$jsback); |
my @template_roles = ("in","ta","ep"); |
|
if ($context eq 'domain') { |
|
push(@template_roles,"ad"); |
|
} |
|
push(@template_roles,"st"); |
|
if ($crstype eq 'Community') { |
|
unshift(@template_roles,'co'); |
|
} else { |
|
unshift(@template_roles,'cc'); |
|
} |
|
foreach my $role (@template_roles) { |
|
$head_script .= &make_script_template($role,$crstype); |
|
$button_code .= &make_button_code($role,$crstype).' '; |
|
} |
|
my $context_code; |
|
if ($context eq 'domain') { |
|
my $checkedCommunity = ''; |
|
my $checkedCourse = ' checked="checked"'; |
|
if ($env{'form.templatecrstype'} eq 'Community') { |
|
$checkedCommunity = $checkedCourse; |
|
$checkedCourse = ''; |
|
} |
|
$context_code = '<label>'. |
|
'<input type="radio" name="templatecrstype" value="Course"'.$checkedCourse.' onclick="this.form.submit();">'. |
|
&mt('Course'). |
|
'</label>'.(' ' x2). |
|
'<label>'. |
|
'<input type="radio" name="templatecrstype" value="Community"'.$checkedCommunity.' onclick="this.form.submit();">'. |
|
&mt('Community'). |
|
'</label>'. |
|
'</fieldset>'. |
|
'<input type="hidden" name="customroleaction" value="'. |
|
$action.'" />'; |
|
if ($env{'form.customroleaction'} eq 'new') { |
|
$context_code .= '<input type="hidden" name="newrolename" value="'. |
|
$rolename.'" />'; |
|
} else { |
|
$context_code .= '<input type="hidden" name="rolename" value="'. |
|
$rolename.'" />'; |
|
} |
|
$context_code .= '<input type="hidden" name="action" value="custom" />'. |
|
'<input type="hidden" name="phase" value="selected_custom_edit" />'; |
|
} |
|
|
|
$head_script .= "\n".$jsback."\n" |
|
.'// ]]>'."\n" |
|
.'</script>'."\n"; |
|
push (@{$brcrum}, |
push (@{$brcrum}, |
{href => "javascript:backPage(document.form1,'pickrole','')", |
{href => "javascript:backPage(document.$formname,'pickrole','')", |
text => "Pick custom role", |
text => "Pick custom role", |
faq => 282,bug=>'Instructor Interface',}, |
faq => 282,bug=>'Instructor Interface',}, |
{href => "javascript:backPage(document.form1,'','')", |
{href => "javascript:backPage(document.$formname,'','')", |
text => "Edit custom role", |
text => "Edit custom role", |
faq => 282, |
faq => 282, |
bug => 'Instructor Interface', |
bug => 'Instructor Interface', |
Line 4301 sub custom_role_editor {
|
Line 4426 sub custom_role_editor {
|
$r->print(&Apache::loncommon::start_page('Custom Role Editor', |
$r->print(&Apache::loncommon::start_page('Custom Role Editor', |
$head_script,$args). |
$head_script,$args). |
$body_top); |
$body_top); |
my %lt=&Apache::lonlocal::texthash( |
$r->print('<form name="'.$formname.'" method="post" action="">'."\n". |
'prv' => "Privilege", |
&Apache::lonuserutils::custom_role_header($context,$crstype, |
'crl' => "Course Level", |
\@templateroles,$prefix)); |
'dml' => "Domain Level", |
|
'ssl' => "System Level"); |
|
|
|
$r->print('<div class="LC_left_float">' |
|
.'<form action=""><fieldset>' |
|
.'<legend>'.&mt('Select a Template').'</legend>' |
|
.$button_code |
|
.'</fieldset></form></div>'); |
|
if ($context_code) { |
|
$r->print('<div class="LC_left_float">' |
|
.'<form action="/adm/createuser" method="post"><fieldset>' |
|
.'<legend>'.&mt('Context').'</legend>' |
|
.$context_code |
|
.'</form>' |
|
.'</div>' |
|
); |
|
} |
|
$r->print('<br clear="all" />'); |
|
|
|
$r->print(<<ENDCCF); |
$r->print(<<ENDCCF); |
<form name="form1" method="post" action=""> |
|
<input type="hidden" name="phase" value="set_custom_roles" /> |
<input type="hidden" name="phase" value="set_custom_roles" /> |
<input type="hidden" name="rolename" value="$rolename" /> |
<input type="hidden" name="rolename" value="$rolename" /> |
ENDCCF |
ENDCCF |
$r->print(&Apache::loncommon::start_data_table(). |
$r->print(&Apache::lonuserutils::custom_role_table($crstype,\%full,\%levels, |
&Apache::loncommon::start_data_table_header_row(). |
\%levelscurrent,$prefix)); |
'<th>'.$lt{'prv'}.'</th><th>'.$lt{'crl'}.'</th><th>'.$lt{'dml'}. |
|
'</th><th>'.$lt{'ssl'}.'</th>'. |
|
&Apache::loncommon::end_data_table_header_row()); |
|
foreach my $priv (sort(keys(%full))) { |
|
my $privtext = &Apache::lonnet::plaintext($priv,$crstype); |
|
$r->print(&Apache::loncommon::start_data_table_row(). |
|
'<td>'.$privtext.'</td><td>'. |
|
($courselevel{$priv}?'<input type="checkbox" name="'.$priv.'_c"'. |
|
($courselevelcurrent{$priv}?' checked="checked"':'').' />':' '). |
|
'</td><td>'. |
|
($domainlevel{$priv}?'<input type="checkbox" name="'.$priv.'_d"'. |
|
($domainlevelcurrent{$priv}?' checked="checked"':'').' />':' '). |
|
'</td><td>'); |
|
if ($priv eq 'bre' && $crstype eq 'Community') { |
|
$r->print(' '); |
|
} else { |
|
$r->print($systemlevel{$priv}?'<input type="checkbox" name="'.$priv.'_s"'. |
|
($systemlevelcurrent{$priv}?' checked="checked"':'').' />':' '); |
|
} |
|
$r->print('</td>'. |
|
&Apache::loncommon::end_data_table_row()); |
|
} |
|
$r->print(&Apache::loncommon::end_data_table(). |
$r->print(&Apache::loncommon::end_data_table(). |
'<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'. |
'<input type="hidden" name="action" value="'.$env{'form.action'}.'" />'. |
'<input type="hidden" name="startrolename" value="'.$env{'form.rolename'}. |
'<input type="hidden" name="startrolename" value="'.$env{'form.rolename'}. |
Line 4359 ENDCCF
|
Line 4443 ENDCCF
|
'<input type="reset" value="'.&mt("Reset").'" />'."\n". |
'<input type="reset" value="'.&mt("Reset").'" />'."\n". |
'<input type="submit" value="'.&mt('Save').'" /></form>'); |
'<input type="submit" value="'.&mt('Save').'" /></form>'); |
} |
} |
# -------------------------------------------------------- |
|
sub make_script_template { |
|
my ($role,$crstype) = @_; |
|
my %full_c=(); |
|
my %full_d=(); |
|
my %full_s=(); |
|
my $return_script; |
|
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:c'})) { |
|
my ($priv,$restrict)=split(/\&/,$item); |
|
$full_c{$priv}=1; |
|
} |
|
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:d'})) { |
|
my ($priv,$restrict)=split(/\&/,$item); |
|
$full_d{$priv}=1; |
|
} |
|
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:s'})) { |
|
next if (($crstype eq 'Community') && ($item eq 'bre&S')); |
|
my ($priv,$restrict)=split(/\&/,$item); |
|
$full_s{$priv}=1; |
|
} |
|
$return_script .= 'function set_'.$role.'() {'."\n"; |
|
my @temp = split(/:/,$Apache::lonnet::pr{$role.':c'}); |
|
my %role_c; |
|
foreach my $priv (@temp) { |
|
my ($priv_item, $dummy) = split(/\&/,$priv); |
|
$role_c{$priv_item} = 1; |
|
} |
|
my %role_d; |
|
@temp = split(/:/,$Apache::lonnet::pr{$role.':d'}); |
|
foreach my $priv(@temp) { |
|
my ($priv_item, $dummy) = split(/\&/,$priv); |
|
$role_d{$priv_item} = 1; |
|
} |
|
my %role_s; |
|
@temp = split(/:/,$Apache::lonnet::pr{$role.':s'}); |
|
foreach my $priv(@temp) { |
|
my ($priv_item, $dummy) = split(/\&/,$priv); |
|
$role_s{$priv_item} = 1; |
|
} |
|
foreach my $priv_item (keys(%full_c)) { |
|
my ($priv, $dummy) = split(/\&/,$priv_item); |
|
if ((exists($role_c{$priv})) || (exists($role_d{$priv})) || |
|
(exists($role_s{$priv}))) { |
|
$return_script .= "document.form1.$priv"."_c.checked = true;\n"; |
|
} else { |
|
$return_script .= "document.form1.$priv"."_c.checked = false;\n"; |
|
} |
|
} |
|
foreach my $priv_item (keys(%full_d)) { |
|
my ($priv, $dummy) = split(/\&/,$priv_item); |
|
if ((exists($role_d{$priv})) || (exists($role_s{$priv}))) { |
|
$return_script .= "document.form1.$priv"."_d.checked = true;\n"; |
|
} else { |
|
$return_script .= "document.form1.$priv"."_d.checked = false;\n"; |
|
} |
|
} |
|
foreach my $priv_item (keys(%full_s)) { |
|
my ($priv, $dummy) = split(/\&/,$priv_item); |
|
if (exists($role_s{$priv})) { |
|
$return_script .= "document.form1.$priv"."_s.checked = true;\n"; |
|
} else { |
|
$return_script .= "document.form1.$priv"."_s.checked = false;\n"; |
|
} |
|
} |
|
$return_script .= '}'."\n"; |
|
return ($return_script); |
|
} |
|
# ---------------------------------------------------------- |
|
sub make_button_code { |
|
my ($role,$crstype) = @_; |
|
my $label = &Apache::lonnet::plaintext($role,$crstype); |
|
my $button_code = '<input type="button" onclick="set_'.$role.'()" value="'.$label.'" />'; |
|
return ($button_code); |
|
} |
|
# ---------------------------------------------------------- Call to definerole |
# ---------------------------------------------------------- Call to definerole |
sub set_custom_role { |
sub set_custom_role { |
my ($r,$context,$brcrum) = @_; |
my ($r,$context,$brcrum,$prefix) = @_; |
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) { |
&custom_role_editor($r,$brcrum); |
&custom_role_editor($r,$brcrum,$prefix); |
return; |
return; |
} |
} |
my ($jsback,$elements) = &crumb_utilities(); |
my ($jsback,$elements) = &crumb_utilities(); |
Line 4464 sub set_custom_role {
|
Line 4475 sub set_custom_role {
|
help => 'Course_Editing_Custom_Roles'}, |
help => 'Course_Editing_Custom_Roles'}, |
); |
); |
my $args = { bread_crumbs => $brcrum, |
my $args = { bread_crumbs => $brcrum, |
bread_crumbs_component => 'User Management'}; |
bread_crumbs_component => 'User Management'}; |
$r->print(&Apache::loncommon::start_page('Save Custom Role',$jscript,$args)); |
$r->print(&Apache::loncommon::start_page('Save Custom Role',$jscript,$args)); |
|
|
my $newrole; |
my $newrole; |
Line 4481 sub set_custom_role {
|
Line 4492 sub set_custom_role {
|
$newrole = 1; |
$newrole = 1; |
} |
} |
$r->print($rolename.'"</h3>'); |
$r->print($rolename.'"</h3>'); |
# ------------------------------------------------------- What can be assigned? |
# ------------------------------------------------- Assign role and show result |
my $sysrole=''; |
|
my $domrole=''; |
|
my $courole=''; |
|
|
|
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:c'})) { |
|
my ($priv,$restrict)=split(/\&/,$item); |
|
if (!$restrict) { $restrict=''; } |
|
if ($env{'form.'.$priv.'_c'}) { |
|
$courole.=':'.$item; |
|
} |
|
} |
|
|
|
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:d'})) { |
|
my ($priv,$restrict)=split(/\&/,$item); |
|
if (!$restrict) { $restrict=''; } |
|
if ($env{'form.'.$priv.'_d'}) { |
|
$domrole.=':'.$item; |
|
} |
|
} |
|
|
|
foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:s'})) { |
|
my ($priv,$restrict)=split(/\&/,$item); |
|
if (!$restrict) { $restrict=''; } |
|
if ($env{'form.'.$priv.'_s'}) { |
|
$sysrole.=':'.$item; |
|
} |
|
} |
|
# Assign role; Compile and show result |
|
my $errmsg; |
my $errmsg; |
my $result = |
my %newprivs = &Apache::lonuserutils::custom_role_update($rolename,$prefix); |
&Apache::lonnet::definerole($rolename,$sysrole,$domrole,$courole); |
# Assign role and return result |
|
my $result = &Apache::lonnet::definerole($rolename,$newprivs{'s'},$newprivs{'d'}, |
|
$newprivs{'c'}); |
if ($result ne 'ok') { |
if ($result ne 'ok') { |
$errmsg = ': '.$result; |
$errmsg = ': '.$result; |
} |
} |
Line 4640 sub handler {
|
Line 4626 sub handler {
|
} else { |
} else { |
&Apache::lonuserutils::print_first_users_upload_form($r,$context); |
&Apache::lonuserutils::print_first_users_upload_form($r,$context); |
} |
} |
} elsif ((($env{'form.action'} eq 'singleuser') || ($env{'form.action'} |
} elsif (((($env{'form.action'} eq 'singleuser') || ($env{'form.action'} |
eq 'singlestudent')) && ($permission->{'cusr'})) { |
eq 'singlestudent')) && ($permission->{'cusr'})) || |
|
(($env{'form.action'} eq 'accesslogs') && ($permission->{'activity'}))) { |
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 4650 sub handler {
|
Line 4637 sub handler {
|
$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')) { |
($phase eq 'createnewuser') || ($phase eq 'activity')) { |
if ($env{'form.phase'} eq 'createnewuser') { |
if ($env{'form.phase'} eq 'createnewuser') { |
my $response; |
my $response; |
if ($env{'form.srchterm'} !~ /^$match_username$/) { |
if ($env{'form.srchterm'} !~ /^$match_username$/) { |
Line 4680 sub handler {
|
Line 4667 sub handler {
|
&print_user_selection_page($r,$response,$srch,$results, |
&print_user_selection_page($r,$response,$srch,$results, |
\@search,$context,undef,$crstype, |
\@search,$context,undef,$crstype, |
$brcrum); |
$brcrum); |
} elsif ($currstate eq 'modify') { |
} elsif (($currstate eq 'modify') || ($env{'form.action'} eq 'accesslogs')) { |
my ($ccuname,$ccdomain); |
my ($ccuname,$ccdomain,$uhome); |
if (($srch->{'srchby'} eq 'uname') && |
if (($srch->{'srchby'} eq 'uname') && |
($srch->{'srchtype'} eq 'exact')) { |
($srch->{'srchtype'} eq 'exact')) { |
$ccuname = $srch->{'srchterm'}; |
$ccuname = $srch->{'srchterm'}; |
Line 4692 sub handler {
|
Line 4679 sub handler {
|
} |
} |
$ccuname =&LONCAPA::clean_username($ccuname); |
$ccuname =&LONCAPA::clean_username($ccuname); |
$ccdomain=&LONCAPA::clean_domain($ccdomain); |
$ccdomain=&LONCAPA::clean_domain($ccdomain); |
if ($env{'form.forcenewuser'}) { |
if ($env{'form.action'} eq 'accesslogs') { |
$response = ''; |
my $uhome; |
|
if (($ccuname ne '') && ($ccdomain ne '')) { |
|
$uhome = &Apache::lonnet::homeserver($ccuname,$ccdomain); |
|
} |
|
if (($uhome eq '') || ($uhome eq 'no_host')) { |
|
$env{'form.phase'} = ''; |
|
undef($forcenewuser); |
|
#if ($response) { |
|
# unless ($response =~ m{\Q<br /><br />\E$}) { |
|
# $response .= '<br /><br />'; |
|
# } |
|
#} |
|
&print_username_entry_form($r,$context,$response,$srch, |
|
$forcenewuser,$crstype,$brcrum); |
|
} else { |
|
&print_useraccesslogs_display($r,$ccuname,$ccdomain,$permission,$brcrum); |
|
} |
|
} else { |
|
if ($env{'form.forcenewuser'}) { |
|
$response = ''; |
|
} |
|
&print_user_modification_page($r,$ccuname,$ccdomain, |
|
$srch,$response,$context, |
|
$permission,$crstype,$brcrum); |
} |
} |
&print_user_modification_page($r,$ccuname,$ccdomain, |
|
$srch,$response,$context, |
|
$permission,$crstype,$brcrum); |
|
} elsif ($currstate eq 'query') { |
} elsif ($currstate eq 'query') { |
&print_user_query_page($r,'createuser',$brcrum); |
&print_user_query_page($r,'createuser',$brcrum); |
} else { |
} else { |
Line 4708 sub handler {
|
Line 4715 sub handler {
|
} 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,'', |
if ($env{'form.action'} eq 'accesslogs') { |
$context,$permission,$crstype, |
&print_useraccesslogs_display($r,$ccuname,$ccdomain,$permission,$brcrum); |
$brcrum); |
} else { |
|
&print_user_modification_page($r,$ccuname,$ccdomain,$srch,'', |
|
$context,$permission,$crstype, |
|
$brcrum); |
|
} |
|
} elsif ($env{'form.action'} eq 'accesslogs') { |
|
my $ccuname = &LONCAPA::clean_username($env{'form.accessuname'}); |
|
my $ccdomain = &LONCAPA::clean_domain($env{'form.accessudom'}); |
|
&print_useraccesslogs_display($r,$ccuname,$ccdomain,$permission,$brcrum); |
} |
} |
} elsif ($env{'form.phase'} eq 'update_user_data') { |
} elsif ($env{'form.phase'} eq 'update_user_data') { |
&update_user_data($r,$context,$crstype,$brcrum,$showcredits); |
&update_user_data($r,$context,$crstype,$brcrum,$showcredits); |
Line 4719 sub handler {
|
Line 4734 sub handler {
|
$brcrum); |
$brcrum); |
} |
} |
} elsif ($env{'form.action'} eq 'custom' && $permission->{'custom'}) { |
} elsif ($env{'form.action'} eq 'custom' && $permission->{'custom'}) { |
|
my $prefix; |
if ($env{'form.phase'} eq 'set_custom_roles') { |
if ($env{'form.phase'} eq 'set_custom_roles') { |
&set_custom_role($r,$context,$brcrum); |
&set_custom_role($r,$context,$brcrum,$prefix); |
} else { |
} else { |
&custom_role_editor($r,$brcrum); |
&custom_role_editor($r,$brcrum,$prefix); |
} |
} |
} elsif (($env{'form.action'} eq 'processauthorreq') && |
} elsif (($env{'form.action'} eq 'processauthorreq') && |
($permission->{'cusr'}) && |
($permission->{'cusr'}) && |
Line 5048 sub handler {
|
Line 5064 sub handler {
|
$cdom,$cnum,$coursedesc)); |
$cdom,$cnum,$coursedesc)); |
} |
} |
} elsif ($env{'form.action'} eq 'changelogs') { |
} elsif ($env{'form.action'} eq 'changelogs') { |
my $helpitem; |
&print_userchangelogs_display($r,$context,$permission,$brcrum); |
if ($context eq 'course') { |
|
$helpitem = 'Course_User_Logs'; |
|
} |
|
push (@{$brcrum}, |
|
{href => '/adm/createuser?action=changelogs', |
|
text => 'User Management Logs', |
|
help => $helpitem}); |
|
$bread_crumbs_component = 'User Changes'; |
|
$args = { bread_crumbs => $brcrum, |
|
bread_crumbs_component => $bread_crumbs_component}; |
|
$r->print(&header(undef,$args)); |
|
&print_userchangelogs_display($r,$context,$permission); |
|
} else { |
} else { |
$bread_crumbs_component = 'User Management'; |
$bread_crumbs_component = 'User Management'; |
$args = { bread_crumbs => $brcrum, |
$args = { bread_crumbs => $brcrum, |
Line 5350 sub print_main_menu {
|
Line 5354 sub print_main_menu {
|
{categorytitle => 'Administration', |
{categorytitle => 'Administration', |
items => [ ]}, |
items => [ ]}, |
); |
); |
|
|
if ($context eq 'domain'){ |
if ($context eq 'domain'){ |
|
push(@{ $menu[0]->{items} }, # Single Users |
|
{ |
|
linktext => 'User Access Log', |
|
icon => 'document-properties.png', |
|
#help => 'User_Access_Logs', |
|
url => '/adm/createuser?action=accesslogs', |
|
permission => $permission->{'activity'}, |
|
linktitle => 'View user access log.', |
|
} |
|
); |
|
|
push(@{ $menu[2]->{items} }, #Category: Administration |
push(@{ $menu[2]->{items} }, #Category: Administration |
{ |
{ |
Line 5403 sub print_main_menu {
|
Line 5417 sub print_main_menu {
|
groups => 'Community Groups', |
groups => 'Community Groups', |
}, |
}, |
); |
); |
|
$linktext{'Placement'} = $linktext{'Course'}; |
|
|
my %linktitle = ( |
my %linktitle = ( |
'Course' => { |
'Course' => { |
Line 5417 sub print_main_menu {
|
Line 5432 sub print_main_menu {
|
}, |
}, |
); |
); |
|
|
|
$linktitle{'Placement'} = $linktitle{'Course'}; |
|
|
push(@{ $menu[0]->{items} }, #Category: Single Users |
push(@{ $menu[0]->{items} }, #Category: Single Users |
{ |
{ |
linktext => $linktext{$crstype}{'single'}, |
linktext => $linktext{$crstype}{'single'}, |
Line 6407 sub selfenroll_date_forms {
|
Line 6424 sub selfenroll_date_forms {
|
} |
} |
|
|
sub print_userchangelogs_display { |
sub print_userchangelogs_display { |
my ($r,$context,$permission) = @_; |
my ($r,$context,$permission,$brcrum) = @_; |
my $formname = 'rolelog'; |
my $formname = 'rolelog'; |
my ($username,$domain,$crstype,%roleslog); |
my ($username,$domain,$crstype,%roleslog); |
if ($context eq 'domain') { |
if ($context eq 'domain') { |
Line 6437 sub print_userchangelogs_display {
|
Line 6454 sub print_userchangelogs_display {
|
} |
} |
if ((keys(%roleslog))[0]=~/^error\:/) { undef(%roleslog); } |
if ((keys(%roleslog))[0]=~/^error\:/) { undef(%roleslog); } |
|
|
|
my $helpitem; |
|
if ($context eq 'course') { |
|
$helpitem = 'Course_User_Logs'; |
|
} |
|
push (@{$brcrum}, |
|
{href => '/adm/createuser?action=changelogs', |
|
text => 'User Management Logs', |
|
help => $helpitem}); |
|
my $bread_crumbs_component = 'User Changes'; |
|
my $args = { bread_crumbs => $brcrum, |
|
bread_crumbs_component => $bread_crumbs_component}; |
|
|
|
# Create navigation javascript |
|
my $jsnav = &userlogdisplay_js($formname); |
|
|
|
my $jscript = (<<ENDSCRIPT); |
|
<script type="text/javascript"> |
|
// <![CDATA[ |
|
$jsnav |
|
// ]]> |
|
</script> |
|
ENDSCRIPT |
|
|
|
# print page header |
|
$r->print(&header($jscript,$args)); |
|
|
# set defaults |
# set defaults |
my $now = time(); |
my $now = time(); |
my $defstart = $now - (7*24*3600); #7 days ago |
my $defstart = $now - (7*24*3600); #7 days ago |
Line 6469 sub print_userchangelogs_display {
|
Line 6512 sub print_userchangelogs_display {
|
my ($minshown,$maxshown); |
my ($minshown,$maxshown); |
$minshown = 1; |
$minshown = 1; |
my $count = 0; |
my $count = 0; |
if ($curr{'show'} ne &mt('all')) { |
if ($curr{'show'} =~ /\D/) { |
|
$curr{'page'} = 1; |
|
} else { |
$maxshown = $curr{'page'} * $curr{'show'}; |
$maxshown = $curr{'page'} * $curr{'show'}; |
if ($curr{'page'} > 1) { |
if ($curr{'page'} > 1) { |
$minshown = 1 + ($curr{'page'} - 1) * $curr{'show'}; |
$minshown = 1 + ($curr{'page'} - 1) * $curr{'show'}; |
Line 6481 sub print_userchangelogs_display {
|
Line 6526 sub print_userchangelogs_display {
|
&role_display_filter($context,$formname,$domain,$username,\%curr, |
&role_display_filter($context,$formname,$domain,$username,\%curr, |
$version,$crstype)); |
$version,$crstype)); |
|
|
# Create navigation |
|
my ($nav_script,$nav_links) = &userlogdisplay_nav($formname,\%curr,$more_records); |
|
my $showntableheader = 0; |
my $showntableheader = 0; |
|
|
# Table Header |
# Table Header |
Line 6507 sub print_userchangelogs_display {
|
Line 6550 sub print_userchangelogs_display {
|
foreach my $id (sort { $roleslog{$b}{'exe_time'}<=>$roleslog{$a}{'exe_time'} } (keys(%roleslog))) { |
foreach my $id (sort { $roleslog{$b}{'exe_time'}<=>$roleslog{$a}{'exe_time'} } (keys(%roleslog))) { |
next if (($roleslog{$id}{'exe_time'} < $curr{'rolelog_start_date'}) || |
next if (($roleslog{$id}{'exe_time'} < $curr{'rolelog_start_date'}) || |
($roleslog{$id}{'exe_time'} > $curr{'rolelog_end_date'})); |
($roleslog{$id}{'exe_time'} > $curr{'rolelog_end_date'})); |
if ($curr{'show'} ne &mt('all')) { |
if ($curr{'show'} !~ /\D/) { |
if ($count >= $curr{'page'} * $curr{'show'}) { |
if ($count >= $curr{'page'} * $curr{'show'}) { |
$more_records = 1; |
$more_records = 1; |
last; |
last; |
Line 6526 sub print_userchangelogs_display {
|
Line 6569 sub print_userchangelogs_display {
|
$count ++; |
$count ++; |
next if ($count < $minshown); |
next if ($count < $minshown); |
unless ($showntableheader) { |
unless ($showntableheader) { |
$r->print($nav_script |
$r->print(&Apache::loncommon::start_data_table() |
.$nav_links |
|
.&Apache::loncommon::start_data_table() |
|
.$tableheader); |
.$tableheader); |
$r->rflush(); |
$r->rflush(); |
$showntableheader = 1; |
$showntableheader = 1; |
Line 6589 sub print_userchangelogs_display {
|
Line 6630 sub print_userchangelogs_display {
|
} |
} |
|
|
if ($showntableheader) { # Table footer, if content displayed above |
if ($showntableheader) { # Table footer, if content displayed above |
$r->print(&Apache::loncommon::end_data_table() |
$r->print(&Apache::loncommon::end_data_table(). |
.$nav_links); |
&userlogdisplay_navlinks(\%curr,$more_records)); |
} else { # No content displayed above |
} else { # No content displayed above |
$r->print('<p class="LC_info">' |
$r->print('<p class="LC_info">' |
.&mt('There are no records to display.') |
.&mt('There are no records to display.') |
Line 6606 sub print_userchangelogs_display {
|
Line 6647 sub print_userchangelogs_display {
|
return; |
return; |
} |
} |
|
|
sub userlogdisplay_nav { |
sub print_useraccesslogs_display { |
my ($formname,$curr,$more_records) = @_; |
my ($r,$uname,$udom,$permission,$brcrum) = @_; |
my ($nav_script,$nav_links); |
my $formname = 'accesslog'; |
if (ref($curr) eq 'HASH') { |
my $form = 'document.accesslog'; |
# Create Navigation: |
|
# Navigation Script |
# set breadcrumbs |
$nav_script = <<"ENDSCRIPT"; |
my %breadcrumb_text = &singleuser_breadcrumb(); |
|
push (@{$brcrum}, |
|
{href => "javascript:backPage($form)", |
|
text => $breadcrumb_text{'search'}}); |
|
my (@prevphases,$prevphasestr); |
|
if ($env{'form.prevphases'}) { |
|
@prevphases = split(/,/,$env{'form.prevphases'}); |
|
$prevphasestr = $env{'form.prevphases'}; |
|
} |
|
if (($env{'form.phase'} eq 'userpicked') || (grep(/^userpicked$/,@prevphases))) { |
|
push(@{$brcrum}, |
|
{href => "javascript:backPage($form,'get_user_info','select')", |
|
text => $breadcrumb_text{'userpicked'}}); |
|
if ($env{'form.phase'} eq 'userpicked') { |
|
$prevphasestr = 'userpicked'; |
|
} |
|
} |
|
push(@{$brcrum}, |
|
{href => '/adm/createuser?action=accesslogs', |
|
text => 'User access logs', |
|
help => 'User_Access_Logs'}); |
|
my $bread_crumbs_component = 'User Access Logs'; |
|
my $args = { bread_crumbs => $brcrum, |
|
bread_crumbs_component => 'User Management'}; |
|
|
|
# set javascript |
|
my ($jsback,$elements) = &crumb_utilities(); |
|
my $jsnav = &userlogdisplay_js($formname); |
|
|
|
my $jscript = (<<ENDSCRIPT); |
<script type="text/javascript"> |
<script type="text/javascript"> |
// <![CDATA[ |
// <![CDATA[ |
|
|
|
$jsback |
|
$jsnav |
|
|
|
// ]]> |
|
</script> |
|
|
|
ENDSCRIPT |
|
|
|
# print page header |
|
$r->print(&header($jscript,$args)); |
|
|
|
# early out unless log data can be displayed. |
|
unless ($permission->{'activity'}) { |
|
$r->print('<p class="LC_warning">' |
|
.&mt('You do not have rights to display user access logs.') |
|
.'</p>' |
|
.&earlyout_accesslog_form($formname,$prevphasestr,$udom)); |
|
return; |
|
} |
|
|
|
unless ($udom eq $env{'request.role.domain'}) { |
|
$r->print('<p class="LC_warning">' |
|
.&mt("User's domain must match role's domain") |
|
.'</p>' |
|
.&earlyout_accesslog_form($formname,$prevphasestr,$udom)); |
|
return; |
|
} |
|
|
|
if (($uname eq '') || ($udom eq '')) { |
|
$r->print('<p class="LC_warning">' |
|
.&mt('Invalid username or domain') |
|
.'</p>' |
|
.&earlyout_accesslog_form($formname,$prevphasestr,$udom)); |
|
return; |
|
} |
|
|
|
# set defaults |
|
my $now = time(); |
|
my $defstart = $now - (7*24*3600); |
|
my %defaults = ( |
|
page => '1', |
|
show => '10', |
|
activity => 'any', |
|
accesslog_start_date => $defstart, |
|
accesslog_end_date => $now, |
|
); |
|
my $more_records = 0; |
|
|
|
# set current |
|
my %curr; |
|
foreach my $item ('show','page','activity') { |
|
$curr{$item} = $env{'form.'.$item}; |
|
} |
|
my ($startdate,$enddate) = |
|
&Apache::lonuserutils::get_dates_from_form('accesslog_start_date','accesslog_end_date'); |
|
$curr{'accesslog_start_date'} = $startdate; |
|
$curr{'accesslog_end_date'} = $enddate; |
|
foreach my $key (keys(%defaults)) { |
|
if ($curr{$key} eq '') { |
|
$curr{$key} = $defaults{$key}; |
|
} |
|
} |
|
my ($minshown,$maxshown); |
|
$minshown = 1; |
|
my $count = 0; |
|
if ($curr{'show'} =~ /\D/) { |
|
$curr{'page'} = 1; |
|
} else { |
|
$maxshown = $curr{'page'} * $curr{'show'}; |
|
if ($curr{'page'} > 1) { |
|
$minshown = 1 + ($curr{'page'} - 1) * $curr{'show'}; |
|
} |
|
} |
|
|
|
# form header |
|
$r->print('<form action="/adm/createuser" method="post" name="'.$formname.'">'. |
|
&activity_display_filter($formname,\%curr)); |
|
|
|
my $showntableheader = 0; |
|
my ($nav_script,$nav_links); |
|
|
|
# table header |
|
my $tableheader = |
|
&Apache::loncommon::start_data_table_header_row() |
|
.'<th> </th>' |
|
.'<th>'.&mt('When').'</th>' |
|
.'<th>'.&mt('HostID').'</th>' |
|
.'<th>'.&mt('Event').'</th>' |
|
.'<th>'.&mt('Other data').'</th>' |
|
.&Apache::loncommon::end_data_table_header_row(); |
|
|
|
my %filters=( |
|
start => $curr{'accesslog_start_date'}, |
|
end => $curr{'accesslog_end_date'}, |
|
action => $curr{'activity'}, |
|
); |
|
|
|
my $reply = &Apache::lonnet::userlog_query($uname,$udom,%filters); |
|
unless ( ($reply =~/^timeout/) || ($reply =~/^error/) ) { |
|
my (%courses,%missing); |
|
my @results = split(/\&/,$reply); |
|
foreach my $item (reverse(@results)) { |
|
my ($timestamp,$host,$event) = split(/:/,$item); |
|
next unless ($event =~ /^(Log|Role)/); |
|
if ($curr{'show'} !~ /\D/) { |
|
if ($count >= $curr{'page'} * $curr{'show'}) { |
|
$more_records = 1; |
|
last; |
|
} |
|
} |
|
$count ++; |
|
next if ($count < $minshown); |
|
unless ($showntableheader) { |
|
$r->print($nav_script |
|
.&Apache::loncommon::start_data_table() |
|
.$tableheader); |
|
$r->rflush(); |
|
$showntableheader = 1; |
|
} |
|
my ($shown,$extra,); |
|
my ($event,$data) = split(/\s+/,&unescape($event)); |
|
if ($event eq 'Role') { |
|
my ($rolecode,$extent) = split(/\./,$data,2); |
|
next if ($extent eq ''); |
|
my ($crstype,$desc,$info); |
|
if ($extent =~ m{^/($match_domain)/($match_courseid)$}) { |
|
my ($cdom,$cnum) = ($1,$2); |
|
my $cid = $cdom.'_'.$cnum; |
|
if (exists($courses{$cid})) { |
|
$crstype = $courses{$cid}{'type'}; |
|
$desc = $courses{$cid}{'description'}; |
|
} elsif ($missing{$cid}) { |
|
$crstype = 'Course'; |
|
$desc = 'Course/Community'; |
|
} else { |
|
my %crsinfo = &Apache::lonnet::courseiddump($cdom,'.',1,'.','.',$cnum,undef,undef,'.'); |
|
if (ref($crsinfo{$cdom.'_'.$cnum}) eq 'HASH') { |
|
$courses{$cid} = $crsinfo{$cid}; |
|
$crstype = $crsinfo{$cid}{'type'}; |
|
$desc = $crsinfo{$cid}{'description'}; |
|
} else { |
|
$missing{$cid} = 1; |
|
} |
|
} |
|
$extra = &mt($crstype).': <a href="/public/'.$cdom.'/'.$cnum.'/syllabus">'.$desc.'</a>'; |
|
} elsif ($extent =~ m{^/($match_domain)/($match_username|$)}) { |
|
my ($dom,$name) = ($1,$2); |
|
if ($rolecode eq 'au') { |
|
$extra = ''; |
|
} elsif ($rolecode =~ /^(ca|aa)$/) { |
|
$extra = &mt('Authoring Space: [_1]',$name.':'.$dom); |
|
} elsif ($rolecode =~ /^(li|dg|dh|dc|sc)$/) { |
|
$extra = &mt('Domain: [_1]',$dom); |
|
} |
|
} |
|
my $rolename; |
|
if ($rolecode =~ m{^cr/($match_domain)/($match_username)/(\w+)}) { |
|
my $role = $3; |
|
my $owner = "($2:$1)"; |
|
if ($2 eq $1.'-domainconfig') { |
|
$owner = '(ad hoc)'; |
|
} |
|
$rolename = &mt('Custom role: [_1]',$role.' '.$owner); |
|
} else { |
|
$rolename = &Apache::lonnet::plaintext($rolecode,$crstype); |
|
} |
|
$shown = &mt('Role selection: [_1]',$rolename); |
|
} else { |
|
$shown = &mt($event); |
|
if ($data ne '') { |
|
$extra = &mt('Client IP address: [_1]',$data); |
|
} |
|
} |
|
$r->print( |
|
&Apache::loncommon::start_data_table_row() |
|
.'<td>'.$count.'</td>' |
|
.'<td>'.&Apache::lonlocal::locallocaltime($timestamp).'</td>' |
|
.'<td>'.$host.'</td>' |
|
.'<td>'.$shown.'</td>' |
|
.'<td>'.$extra.'</td>' |
|
.&Apache::loncommon::end_data_table_row()."\n"); |
|
} |
|
} |
|
|
|
if ($showntableheader) { # Table footer, if content displayed above |
|
$r->print(&Apache::loncommon::end_data_table(). |
|
&userlogdisplay_navlinks(\%curr,$more_records)); |
|
} else { # No content displayed above |
|
$r->print('<p class="LC_info">' |
|
.&mt('There are no records to display.') |
|
.'</p>'); |
|
} |
|
|
|
# Form Footer |
|
$r->print( |
|
'<input type="hidden" name="currstate" value="" />' |
|
.'<input type="hidden" name="accessuname" value="'.$uname.'" />' |
|
.'<input type="hidden" name="accessudom" value="'.$udom.'" />' |
|
.'<input type="hidden" name="page" value="'.$curr{'page'}.'" />' |
|
.'<input type="hidden" name="prevphases" value="'.$prevphasestr.'" />' |
|
.'<input type="hidden" name="phase" value="activity" />' |
|
.'<input type="hidden" name="action" value="accesslogs" />' |
|
.'<input type="hidden" name="srchdomain" value="'.$udom.'" />' |
|
.'<input type="hidden" name="srchby" value="'.$env{'form.srchby'}.'" />' |
|
.'<input type="hidden" name="srchtype" value="'.$env{'form.srchtype'}.'" />' |
|
.'<input type="hidden" name="srchterm" value="'.&HTML::Entities::encode($env{'form.srchterm'},'<>"&').'" />' |
|
.'<input type="hidden" name="srchin" value="'.$env{'form.srchin'}.'" />' |
|
.'</form>'); |
|
return; |
|
} |
|
|
|
sub earlyout_accesslog_form { |
|
my ($formname,$prevphasestr,$udom) = @_; |
|
my $srchterm = &HTML::Entities::encode($env{'form.srchterm'},'<>"&'); |
|
return <<"END"; |
|
<form action="/adm/createuser" method="post" name="$formname"> |
|
<input type="hidden" name="currstate" value="" /> |
|
<input type="hidden" name="prevphases" value="$prevphasestr" /> |
|
<input type="hidden" name="phase" value="activity" /> |
|
<input type="hidden" name="action" value="accesslogs" /> |
|
<input type="hidden" name="srchdomain" value="$udom" /> |
|
<input type="hidden" name="srchby" value="$env{'form.srchby'}" /> |
|
<input type="hidden" name="srchtype" value="$env{'form.srchtype'}" /> |
|
<input type="hidden" name="srchterm" value="$srchterm" /> |
|
<input type="hidden" name="srchin" value="$env{'form.srchin'}" /> |
|
</form> |
|
END |
|
} |
|
|
|
sub activity_display_filter { |
|
my ($formname,$curr) = @_; |
|
my $nolink = 1; |
|
my $output = '<table><tr><td valign="top">'. |
|
'<span class="LC_nobreak"><b>'.&mt('Actions/page:').'</b></span><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,'accesslog_start_date', |
|
$curr->{'accesslog_start_date'},undef, |
|
undef,undef,undef,undef,undef,undef,$nolink); |
|
my $endform = |
|
&Apache::lonhtmlcommon::date_setter($formname,'accesslog_end_date', |
|
$curr->{'accesslog_end_date'},undef, |
|
undef,undef,undef,undef,undef,undef,$nolink); |
|
my %lt = &Apache::lonlocal::texthash ( |
|
activity => 'Activity', |
|
Role => 'Role selection', |
|
log => 'Log-in or Logout', |
|
); |
|
$output .= '<td valign="top"><b>'.&mt('Window during which actions 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('Activities').'</b><br />'. |
|
'<select name="activity"><option value="any"'; |
|
if ($curr->{'activity'} eq 'any') { |
|
$output .= ' selected="selected"'; |
|
} |
|
$output .= '>'.&mt('Any').'</option>'."\n"; |
|
foreach my $activity ('Role','log') { |
|
my $selstr = ''; |
|
if ($activity eq $curr->{'activity'}) { |
|
$selstr = ' selected="selected"'; |
|
} |
|
$output .= '<option value="'.$activity.'"'.$selstr.'>'.$lt{$activity}.'</option>'; |
|
} |
|
$output .= '</select></td>'. |
|
'</tr></table>'; |
|
# Update Display button |
|
$output .= '<p>' |
|
.'<input type="submit" value="'.&mt('Update Display').'" />' |
|
.'</p>'; |
|
return $output; |
|
} |
|
|
|
sub userlogdisplay_js { |
|
my ($formname) = @_; |
|
return <<"ENDSCRIPT"; |
|
|
function chgPage(caller) { |
function chgPage(caller) { |
if (caller == 'previous') { |
if (caller == 'previous') { |
document.$formname.page.value --; |
document.$formname.page.value --; |
Line 6625 function chgPage(caller) {
|
Line 6979 function chgPage(caller) {
|
document.$formname.submit(); |
document.$formname.submit(); |
return; |
return; |
} |
} |
// ]]> |
|
</script> |
|
ENDSCRIPT |
ENDSCRIPT |
# Navigation Buttons |
} |
$nav_links = '<p>'; |
|
if (($curr->{'page'} > 1) || ($more_records)) { |
sub userlogdisplay_navlinks { |
if ($curr->{'page'} > 1) { |
my ($curr,$more_records) = @_; |
$nav_links .= '<input type="button"' |
return unless(ref($curr) eq 'HASH'); |
.' onclick="javascript:chgPage('."'previous'".');"' |
# Navigation Buttons |
.' value="'.&mt('Previous [_1] changes',$curr->{'show'}) |
my $nav_links = '<p>'; |
.'" /> '; |
if (($curr->{'page'} > 1) || ($more_records)) { |
} |
if (($curr->{'page'} > 1) && ($curr->{'show'} !~ /\D/)) { |
if ($more_records) { |
$nav_links .= '<input type="button"' |
$nav_links .= '<input type="button"' |
.' onclick="javascript:chgPage('."'previous'".');"' |
.' onclick="javascript:chgPage('."'next'".');"' |
.' value="'.&mt('Previous [_1] changes',$curr->{'show'}) |
.' value="'.&mt('Next [_1] changes',$curr->{'show'}) |
.'" /> '; |
.'" />'; |
} |
} |
if ($more_records) { |
|
$nav_links .= '<input type="button"' |
|
.' onclick="javascript:chgPage('."'next'".');"' |
|
.' value="'.&mt('Next [_1] changes',$curr->{'show'}) |
|
.'" />'; |
} |
} |
$nav_links .= '</p>'; |
|
} |
} |
return ($nav_script,$nav_links); |
$nav_links .= '</p>'; |
|
return $nav_links; |
} |
} |
|
|
sub role_display_filter { |
sub role_display_filter { |
Line 6826 sub user_search_result {
|
Line 7182 sub user_search_result {
|
} |
} |
} |
} |
if ($response ne '') { |
if ($response ne '') { |
$response = '<span class="LC_warning">'.$response.'</span>'; |
$response = '<span class="LC_warning">'.$response.'</span><br />'; |
} |
} |
if ($srch->{'srchin'} eq 'instd') { |
if ($srch->{'srchin'} eq 'instd') { |
my $instd_chk = &directorysrch_check($srch); |
my $instd_chk = &instdirectorysrch_check($srch); |
if ($instd_chk ne 'ok') { |
if ($instd_chk ne 'ok') { |
$response = '<span class="LC_warning">'.$instd_chk.'</span>'. |
my $domd_chk = &domdirectorysrch_check($srch); |
'<br />'.&mt('You may want to search in the LON-CAPA domain instead of the institutional directory.').'<br /><br />'; |
$response .= '<span class="LC_warning">'.$instd_chk.'</span><br />'; |
|
if ($domd_chk eq 'ok') { |
|
$response .= &mt('You may want to search in the LON-CAPA domain instead of the institutional directory.'); |
|
} |
|
$response .= '<br />'; |
|
} |
|
} else { |
|
unless (($context eq 'requestcrs') && ($srch->{'srchtype'} eq 'exact')) { |
|
my $domd_chk = &domdirectorysrch_check($srch); |
|
if ($domd_chk ne 'ok') { |
|
my $instd_chk = &instdirectorysrch_check($srch); |
|
$response .= '<span class="LC_warning">'.$domd_chk.'</span><br />'; |
|
if ($instd_chk eq 'ok') { |
|
$response .= &mt('You may want to search in the institutional directory instead of the LON-CAPA domain.'); |
|
} |
|
$response .= '<br />'; |
|
} |
} |
} |
} |
} |
if ($response ne '') { |
if ($response ne '') { |
Line 6862 sub user_search_result {
|
Line 7234 sub user_search_result {
|
&build_search_response($context,$srch,%srch_results); |
&build_search_response($context,$srch,%srch_results); |
} else { |
} else { |
$currstate = 'modify'; |
$currstate = 'modify'; |
|
if ($env{'form.action'} eq 'accesslogs') { |
|
$currstate = 'activity'; |
|
} |
my $uname = $srch->{'srchterm'}; |
my $uname = $srch->{'srchterm'}; |
my $udom = $srch->{'srchdomain'}; |
my $udom = $srch->{'srchdomain'}; |
$srch_results{$uname.':'.$udom} = |
$srch_results{$uname.':'.$udom} = |
Line 6928 sub user_search_result {
|
Line 7303 sub user_search_result {
|
&mt('Institutional directory search is not available in domain: [_1]',$showdom). |
&mt('Institutional directory search is not available in domain: [_1]',$showdom). |
'</span><br />'. |
'</span><br />'. |
&mt('You may want to search in the LON-CAPA domain instead of the institutional directory.'). |
&mt('You may want to search in the LON-CAPA domain instead of the institutional directory.'). |
'<br /><br />'; |
'<br />'; |
} |
} |
} |
} |
} else { |
} else { |
Line 6996 sub user_search_result {
|
Line 7371 sub user_search_result {
|
($currstate,$response,$forcenewuser) = |
($currstate,$response,$forcenewuser) = |
&build_search_response($context,$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). |
'</span><br />'. |
'</span><br />'. |
&mt('You may want to search in the LON-CAPA domain instead of the institutional directory.'). |
&mt('You may want to search in the LON-CAPA domain instead of the institutional directory.'). |
'<br /><br />'; |
'<br />'; |
} |
} |
} |
} |
} |
} |
return ($currstate,$response,$forcenewuser,\%srch_results); |
return ($currstate,$response,$forcenewuser,\%srch_results); |
} |
} |
|
|
sub directorysrch_check { |
sub domdirectorysrch_check { |
|
my ($srch) = @_; |
|
my $response; |
|
my %dom_inst_srch = &Apache::lonnet::get_dom('configuration', |
|
['directorysrch'],$srch->{'srchdomain'}); |
|
my $showdom = &display_domain_info($srch->{'srchdomain'}); |
|
if (ref($dom_inst_srch{'directorysrch'}) eq 'HASH') { |
|
if ($dom_inst_srch{'directorysrch'}{'lcavailable'} eq '0') { |
|
return &mt('LON-CAPA directory search is not available in domain: [_1]',$showdom); |
|
} |
|
if ($dom_inst_srch{'directorysrch'}{'lclocalonly'}) { |
|
if ($env{'request.role.domain'} ne $srch->{'srchdomain'}) { |
|
return &mt('LON-CAPA directory search in domain: [_1] is only allowed for users with a current role in the domain.',$showdom); |
|
} |
|
} |
|
} |
|
return 'ok'; |
|
} |
|
|
|
sub instdirectorysrch_check { |
my ($srch) = @_; |
my ($srch) = @_; |
my $can_search = 0; |
my $can_search = 0; |
my $response; |
my $response; |
Line 7129 sub build_search_response {
|
Line 7524 sub build_search_response {
|
$currstate = 'select'; |
$currstate = 'select'; |
} else { |
} else { |
if (keys(%srch_results) == 1) { |
if (keys(%srch_results) == 1) { |
$currstate = 'modify'; |
if ($env{'form.action'} eq 'accesslogs') { |
|
$currstate = 'activity'; |
|
} else { |
|
$currstate = 'modify'; |
|
} |
$response = &mt("$single{$srch->{'srchtype'}} was found for the $names{$srch->{'srchby'}} ([_1]) in $names{$srch->{'srchin'}}.",$srch->{'srchterm'}); |
$response = &mt("$single{$srch->{'srchtype'}} was found for the $names{$srch->{'srchby'}} ([_1]) in $names{$srch->{'srchin'}}.",$srch->{'srchterm'}); |
if ($srch->{'srchin'} eq 'dom' || $srch->{'srchin'} eq 'instd') { |
if ($srch->{'srchin'} eq 'dom' || $srch->{'srchin'} eq 'instd') { |
$response .= ': '.&display_domain_info($srch->{'srchdomain'}); |
$response .= ': '.&display_domain_info($srch->{'srchdomain'}); |
Line 7174 sub build_search_response {
|
Line 7573 sub build_search_response {
|
$createdom = $env{'form.coursedom'}; |
$createdom = $env{'form.coursedom'}; |
} |
} |
} |
} |
if (!($srch->{'srchby'} eq 'uname' && $srch->{'srchin'} eq 'dom' && $srch->{'srchtype'} eq 'exact' && $srch->{'srchdomain'} eq $createdom)) { |
unless (($env{'form.action'} eq 'accesslogs') || (($srch->{'srchby'} eq 'uname') && ($srch->{'srchin'} eq 'dom') && |
|
($srch->{'srchtype'} eq 'exact') && ($srch->{'srchdomain'} eq $createdom))) { |
my $cancreate = |
my $cancreate = |
&Apache::lonuserutils::can_create_user($createdom,$context); |
&Apache::lonuserutils::can_create_user($createdom,$context); |
my $targetdom = '<span class="LC_cusr_emph">'.$createdom.'</span>'; |
my $targetdom = '<span class="LC_cusr_emph">'.$createdom.'</span>'; |
Line 7209 sub build_search_response {
|
Line 7609 sub build_search_response {
|
.&mt('Please contact the [_1]helpdesk[_2] if you need to create a new user.' |
.&mt('Please contact the [_1]helpdesk[_2] if you need to create a new user.' |
,' <a'.$helplink.'>' |
,' <a'.$helplink.'>' |
,'</a>') |
,'</a>') |
.'<br /><br />'; |
.'<br />'; |
} |
} |
} |
} |
} |
} |