version 1.94.2.1, 2004/08/03 18:55:46
|
version 1.231.4.1, 2009/08/12 20:25:35
|
Line 27
|
Line 27
|
# |
# |
### |
### |
|
|
|
=pod |
|
|
|
=head1 NAME |
|
|
|
Apache::lonroles - User Roles Screen |
|
|
|
=head1 SYNOPSIS |
|
|
|
Invoked by /etc/httpd/conf/srm.conf: |
|
|
|
<Location /adm/roles> |
|
PerlAccessHandler Apache::lonacc |
|
SetHandler perl-script |
|
PerlHandler Apache::lonroles |
|
ErrorDocument 403 /adm/login |
|
ErrorDocument 500 /adm/errorhandler |
|
</Location> |
|
|
|
=head1 OVERVIEW |
|
|
|
=head2 Choosing Roles |
|
|
|
C<lonroles> is a handler that allows a user to switch roles in |
|
mid-session. LON-CAPA attempts to work with "No Role Specified", the |
|
default role that a user has before selecting a role, as widely as |
|
possible, but certain handlers for example need specification which |
|
course they should act on, etc. Both in this scenario, and when the |
|
handler determines via C<lonnet>'s C<&allowed> function that a certain |
|
action is not allowed, C<lonroles> is used as error handler. This |
|
allows the user to select another role which may have permission to do |
|
what they were trying to do. C<lonroles> can also be accessed via the |
|
B<CRS> button in the Remote Control. |
|
|
|
=begin latex |
|
|
|
\begin{figure} |
|
\begin{center} |
|
\includegraphics[width=0.45\paperwidth,keepaspectratio]{Sample_Roles_Screen} |
|
\caption{\label{Sample_Roles_Screen}Sample Roles Screen} |
|
\end{center} |
|
\end{figure} |
|
|
|
=end latex |
|
|
|
=head2 Role Initialization |
|
|
|
The privileges for a user are established at login time and stored in the session environment. As a consequence, a new role does not become active till the next login. Handlers are able to query for privileges using C<lonnet>'s C<&allowed> function. When a user first logs in, their role is the "common" role, which means that they have the sum of all of their privileges. During a session it might become necessary to choose a particular role, which as a consequence also limits the user to only the privileges in that particular role. |
|
|
|
=head1 INTRODUCTION |
|
|
|
This module enables a user to select what role he wishes to |
|
operate under (instructor, student, teaching assistant, course |
|
coordinator, etc). These roles are pre-established by the actions |
|
of upper-level users. |
|
|
|
This is part of the LearningOnline Network with CAPA project |
|
described at http://www.lon-capa.org. |
|
|
|
=head1 HANDLER SUBROUTINE |
|
|
|
This routine is called by Apache and mod_perl. |
|
|
|
=over 4 |
|
|
|
=item * |
|
|
|
Roles Initialization (yes/no) |
|
|
|
=item * |
|
|
|
Get Error Message from Environment |
|
|
|
=item * |
|
|
|
Who is this? |
|
|
|
=item * |
|
|
|
Generate Page Output |
|
|
|
=item * |
|
|
|
Choice or no choice |
|
|
|
=item * |
|
|
|
Table |
|
|
|
=item * |
|
|
|
Privileges |
|
|
|
=back |
|
|
|
=cut |
|
|
|
|
package Apache::lonroles; |
package Apache::lonroles; |
|
|
use strict; |
use strict; |
use Apache::lonnet(); |
use Apache::lonnet; |
use Apache::lonuserstate(); |
use Apache::lonuserstate(); |
use Apache::Constants qw(:common); |
use Apache::Constants qw(:common); |
use Apache::File(); |
use Apache::File(); |
use Apache::lonmenu; |
use Apache::lonmenu; |
use Apache::loncommon; |
use Apache::loncommon; |
|
use Apache::lonhtmlcommon; |
use Apache::lonannounce; |
use Apache::lonannounce; |
use Apache::lonlocal; |
use Apache::lonlocal; |
|
use Apache::lonpageflip(); |
|
use Apache::lonnavdisplay(); |
|
use GDBM_File; |
|
use LONCAPA qw(:DEFAULT :match); |
|
use HTML::Entities; |
|
|
|
|
sub redirect_user { |
sub redirect_user { |
my ($r,$title,$url,$msg) = @_; |
my ($r,$title,$url,$msg,$launch_nav) = @_; |
$msg = $title if (! defined($msg)); |
$msg = $title if (! defined($msg)); |
&Apache::loncommon::content_type($r,'text/html'); |
&Apache::loncommon::content_type($r,'text/html'); |
&Apache::loncommon::no_cache($r); |
&Apache::loncommon::no_cache($r); |
$r->send_http_header; |
$r->send_http_header; |
my $swinfo=&Apache::lonmenu::rawconfig(); |
my $swinfo=&Apache::lonmenu::rawconfig(); |
my $bodytag=&Apache::loncommon::bodytag('Switching Role'); |
my $navwindow; |
|
if ($launch_nav eq 'on') { |
|
$navwindow.=&Apache::lonnavdisplay::launch_win('now',undef,undef, |
|
($url =~ m-^/adm/whatsnew-)); |
|
} else { |
|
$navwindow.=&Apache::lonnavmaps::close(); |
|
} |
|
|
|
my $start_page = &Apache::loncommon::start_page('Switching Role',undef, |
|
{'redirect' => [1,$url].}); |
|
my $end_page = &Apache::loncommon::end_page(); |
|
|
# Note to style police: |
# Note to style police: |
# This must only replace the spaces, nothing else, or it bombs elsewhere. |
# This must only replace the spaces, nothing else, or it bombs elsewhere. |
$url=~s/ /\%20/g; |
$url=~s/ /\%20/g; |
$r->print(<<ENDREDIR); |
$r->print(<<ENDREDIR); |
<head><title>$title</title> |
$start_page |
<meta HTTP-EQUIV="Refresh" CONTENT="1; url=$url"> |
<script type="text/javascript"> |
</head> |
// <![CDATA[ |
<html> |
|
$bodytag |
|
<script> |
|
$swinfo |
$swinfo |
|
// ]]> |
</script> |
</script> |
<h1>$msg</h1> |
$navwindow |
</body> |
<p>$msg</p> |
</html> |
$end_page |
ENDREDIR |
ENDREDIR |
return; |
return; |
} |
} |
|
|
|
sub error_page { |
|
my ($r,$error,$dest)=@_; |
|
&Apache::loncommon::content_type($r,'text/html'); |
|
&Apache::loncommon::no_cache($r); |
|
$r->send_http_header; |
|
return OK if $r->header_only; |
|
$r->print(&Apache::loncommon::start_page('Problems during Course Initialization'). |
|
'<script type="text/javascript">'. |
|
'// <![CDATA['. |
|
&Apache::lonmenu::rawconfig(). |
|
'// ]]>'. |
|
'</script>'. |
|
'<p class="LC_error">'.&mt('The following problems occurred:'). |
|
'<br />'. |
|
$error. |
|
'</p><br /><a href="'.$dest.'">'.&mt('Continue').'</a>'. |
|
&Apache::loncommon::end_page()); |
|
} |
|
|
sub handler { |
sub handler { |
|
|
my $r = shift; |
my $r = shift; |
|
|
my $now=time; |
my $now=time; |
my $then=$ENV{'user.login.time'}; |
my $then=$env{'user.login.time'}; |
|
my $refresh=$env{'user.refresh.time'}; |
|
if (!$refresh) { |
|
$refresh = $then; |
|
} |
my $envkey; |
my $envkey; |
|
my %dcroles = (); |
|
my $numdc = &check_fordc(\%dcroles,$then); |
|
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'}); |
|
|
# ================================================================== Roles Init |
# ================================================================== Roles Init |
|
if ($env{'form.selectrole'}) { |
|
|
if ($ENV{'form.selectrole'}) { |
my $locknum=&Apache::lonnet::get_locks(); |
if ($ENV{'request.course.id'}) { |
if ($locknum) { return 409; } |
my %temp=('logout_'.$ENV{'request.course.id'} => time); |
|
|
if ($env{'form.newrole'}) { |
|
$env{'form.'.$env{'form.newrole'}}=1; |
|
} |
|
if ($env{'request.course.id'}) { |
|
# Check if user is CC trying to select a course role |
|
if ($env{'form.switchrole'}) { |
|
if (!defined($env{'user.role.'.$env{'form.switchrole'}})) { |
|
&adhoc_course_role($then); |
|
} |
|
} |
|
my %temp=('logout_'.$env{'request.course.id'} => time); |
&Apache::lonnet::put('email_status',\%temp); |
&Apache::lonnet::put('email_status',\%temp); |
|
&Apache::lonnet::delenv('user.state.'.$env{'request.course.id'}); |
|
} |
|
&Apache::lonnet::appenv({"request.course.id" => '', |
|
"request.course.fn" => '', |
|
"request.course.uri" => '', |
|
"request.course.sec" => '', |
|
"request.role" => 'cm', |
|
"request.role.adv" => $env{'user.adv'}, |
|
"request.role.domain" => $env{'user.domain'}}); |
|
# Check if user is a DC trying to enter a course or author space and needs privs to be created |
|
if ($numdc > 0) { |
|
foreach my $envkey (keys %env) { |
|
# Is this an ad-hoc CC-role? |
|
if (my ($domain,$coursenum) = |
|
($envkey =~ m-^form\.cc\./($match_domain)/($match_courseid)$-)) { |
|
if ($dcroles{$domain}) { |
|
&Apache::lonnet::check_adhoc_privs($domain,$coursenum, |
|
$then,$refresh,$now,'cc'); |
|
} |
|
last; |
|
} |
|
# Is this an ad-hoc CA-role? |
|
if (my ($domain,$user) = |
|
($envkey =~ m-^form\.ca\./($match_domain)/($match_username)$-)) { |
|
if (($domain eq $env{'user.domain'}) && ($user eq $env{'user.name'})) { |
|
delete($env{$envkey}); |
|
$env{'form.au./'.$domain.'/'} = 1; |
|
my ($server_status,$home) = &check_author_homeserver($user,$domain); |
|
if ($server_status eq 'switchserver') { |
|
my $trolecode = 'au./'.$domain.'/'; |
|
my $switchserver = '/adm/switchserver?otherserver='.$home.'&role='.$trolecode; |
|
$r->internal_redirect($switchserver); |
|
} |
|
last; |
|
} |
|
if (my ($castart,$caend) = ($env{'user.role.ca./'.$domain.'/'.$user} =~ /^(\d*)\.(\d*)$/)) { |
|
if (((($castart) && ($castart < $now)) || !$castart) && |
|
((!$caend) || (($caend) && ($caend > $now)))) { |
|
my ($server_status,$home) = &check_author_homeserver($user,$domain); |
|
if ($server_status eq 'switchserver') { |
|
my $trolecode = 'ca./'.$domain.'/'.$user; |
|
my $switchserver = '/adm/switchserver?otherserver='.$home.'&role='.$trolecode; |
|
$r->internal_redirect($switchserver); |
|
} |
|
last; |
|
} |
|
} |
|
# Check if author blocked ca-access |
|
my %blocked=&Apache::lonnet::get('environment',['domcoord.author'],$domain,$user); |
|
if ($blocked{'domcoord.author'} eq 'blocked') { |
|
delete($env{$envkey}); |
|
$env{'user.error.msg'}=':::1:User '.$user.' in domain '.$domain.' blocked domain coordinator access'; |
|
last; |
|
} |
|
if ($dcroles{$domain}) { |
|
my ($server_status,$home) = &check_author_homeserver($user,$domain); |
|
if (($server_status eq 'ok') || ($server_status eq 'switchserver')) { |
|
&Apache::lonnet::check_adhoc_privs($domain,$user,$then, |
|
$refresh,$now,'ca'); |
|
if ($server_status eq 'switchserver') { |
|
my $trolecode = 'ca./'.$domain.'/'.$user; |
|
my $switchserver = '/adm/switchserver?' |
|
.'otherserver='.$home.'&role='.$trolecode; |
|
$r->internal_redirect($switchserver); |
|
} |
|
} else { |
|
delete($env{$envkey}); |
|
} |
|
} else { |
|
delete($env{$envkey}); |
|
} |
|
last; |
|
} |
|
} |
} |
} |
&Apache::lonnet::appenv("request.course.id" => '', |
|
"request.course.fn" => '', |
foreach $envkey (keys %env) { |
"request.course.uri" => '', |
|
"request.course.sec" => '', |
|
"request.role" => 'cm', |
|
"request.role.adv" => $ENV{'user.adv'}, |
|
"request.role.domain" => $ENV{'user.domain'}); |
|
foreach $envkey (keys %ENV) { |
|
next if ($envkey!~/^user\.role\./); |
next if ($envkey!~/^user\.role\./); |
my (undef,undef,$role,@pwhere)=split(/\./,$envkey); |
my ($where,$trolecode,$role,$tstatus,$tend,$tstart); |
my $where=join('.',@pwhere); |
&Apache::lonnet::role_status($envkey,$then,$refresh,$now,\$role,\$where, |
my $trolecode=$role.'.'.$where; |
\$trolecode,\$tstatus,\$tstart,\$tend); |
if ($ENV{'form.'.$trolecode}) { |
if ($env{'form.'.$trolecode}) { |
my ($tstart,$tend)=split(/\./,$ENV{$envkey}); |
|
my $tstatus='is'; |
|
if ($tstart) { |
|
if ($tstart>$then) { |
|
$tstatus='future'; |
|
} |
|
} |
|
if ($tend) { |
|
if ($tend<$then) { $tstatus='expired'; } |
|
if ($tend<$now) { $tstatus='will_not'; } |
|
} |
|
if ($tstatus eq 'is') { |
if ($tstatus eq 'is') { |
$where=~s/^\///; |
$where=~s/^\///; |
my ($cdom,$cnum,$csec)=split(/\//,$where); |
my ($cdom,$cnum,$csec)=split(/\//,$where); |
|
# check for course groups |
|
my %coursegroups = &Apache::lonnet::get_active_groups( |
|
$env{'user.domain'},$env{'user.name'},$cdom, $cnum); |
|
my $cgrps = join(':',keys(%coursegroups)); |
|
|
|
# store role if recent_role list being kept |
|
if ($env{'environment.recentroles'}) { |
|
my %frozen_roles = |
|
&Apache::lonhtmlcommon::get_recent_frozen('roles',$env{'environment.recentrolesn'}); |
|
&Apache::lonhtmlcommon::store_recent('roles', |
|
$trolecode,' ',$frozen_roles{$trolecode}); |
|
} |
|
|
|
|
# check for keyed access |
# check for keyed access |
if (($role eq 'st') && |
if (($role eq 'st') && |
($ENV{'course.'.$cdom.'_'.$cnum.'.keyaccess'} eq 'yes')) { |
($env{'course.'.$cdom.'_'.$cnum.'.keyaccess'} eq 'yes')) { |
# who is key authority? |
# who is key authority? |
my $authdom=$cdom; |
my $authdom=$cdom; |
my $authnum=$cnum; |
my $authnum=$cnum; |
if ($ENV{'course.'.$cdom.'_'.$cnum.'.keyauth'}) { |
if ($env{'course.'.$cdom.'_'.$cnum.'.keyauth'}) { |
($authnum,$authdom)= |
($authnum,$authdom)= |
split(/\W/,$ENV{'course.'.$cdom.'_'.$cnum.'.keyauth'}); |
split(/:/,$env{'course.'.$cdom.'_'.$cnum.'.keyauth'}); |
} |
} |
# check with key authority |
# check with key authority |
unless (&Apache::lonnet::validate_access_key( |
unless (&Apache::lonnet::validate_access_key( |
$ENV{'environment.key.'.$cdom.'_'.$cnum}, |
$env{'environment.key.'.$cdom.'_'.$cnum}, |
$authdom,$authnum)) { |
$authdom,$authnum)) { |
# there is no valid key |
# there is no valid key |
if ($ENV{'form.newkey'}) { |
if ($env{'form.newkey'}) { |
# student attempts to register a new key |
# student attempts to register a new key |
&Apache::loncommon::content_type($r,'text/html'); |
&Apache::loncommon::content_type($r,'text/html'); |
&Apache::loncommon::no_cache($r); |
&Apache::loncommon::no_cache($r); |
$r->send_http_header; |
$r->send_http_header; |
my $swinfo=&Apache::lonmenu::rawconfig(); |
my $swinfo=&Apache::lonmenu::rawconfig(); |
my $bodytag=&Apache::loncommon::bodytag |
my $start_page=&Apache::loncommon::start_page |
('Verifying Access Key to Unlock this Course'); |
('Verifying Access Key to Unlock this Course'); |
|
my $end_page=&Apache::loncommon::end_page(); |
my $buttontext=&mt('Enter Course'); |
my $buttontext=&mt('Enter Course'); |
my $message=&mt('Successfully registered key'); |
my $message=&mt('Successfully registered key'); |
my $assignresult= |
my $assignresult= |
&Apache::lonnet::assign_access_key( |
&Apache::lonnet::assign_access_key( |
$ENV{'form.newkey'}, |
$env{'form.newkey'}, |
$authdom,$authnum, |
$authdom,$authnum, |
$cdom,$cnum, |
$cdom,$cnum, |
$ENV{'user.domain'}, |
$env{'user.domain'}, |
$ENV{'user.name'}, |
$env{'user.name'}, |
'Assigned from '.$ENV{'REMOTE_ADDR'}.' at '.localtime().' for '. |
&mt('Assigned from [_1] at [_2] for [_3]' |
$trolecode); |
,$ENV{'REMOTE_ADDR'} |
|
,&Apache::lonlocal::locallocaltime() |
|
,$trolecode) |
|
); |
unless ($assignresult eq 'ok') { |
unless ($assignresult eq 'ok') { |
$assignresult=~s/^error\:\s*//; |
$assignresult=~s/^error\:\s*//; |
$message=&mt($assignresult). |
$message=&mt($assignresult). |
Line 151 sub handler {
|
Line 376 sub handler {
|
$buttontext=&mt('Re-Enter Key'); |
$buttontext=&mt('Re-Enter Key'); |
} |
} |
$r->print(<<ENDENTEREDKEY); |
$r->print(<<ENDENTEREDKEY); |
<head><title>Verifying Course Access Key</title> |
$start_page |
</head> |
<script type="text/javascript"> |
<html> |
// <![CDATA[ |
$bodytag |
|
<script> |
|
$swinfo |
$swinfo |
|
// ]]> |
</script> |
</script> |
<form method="post"> |
<form action="" method="post"> |
<input type="hidden" name="selectrole" value="1" /> |
<input type="hidden" name="selectrole" value="1" /> |
<input type="hidden" name="$trolecode" value="1" /> |
<input type="hidden" name="$trolecode" value="1" /> |
<font size="+2">$message</font><br /> |
<span class="LC_fontsize_large">$message</span><br /> |
<input type="submit" value="$buttontext" /> |
<input type="submit" value="$buttontext" /> |
</form> |
</form> |
</body></html> |
$end_page |
ENDENTEREDKEY |
ENDENTEREDKEY |
return OK; |
return OK; |
} else { |
} else { |
Line 173 ENDENTEREDKEY
|
Line 397 ENDENTEREDKEY
|
&Apache::loncommon::no_cache($r); |
&Apache::loncommon::no_cache($r); |
$r->send_http_header; |
$r->send_http_header; |
my $swinfo=&Apache::lonmenu::rawconfig(); |
my $swinfo=&Apache::lonmenu::rawconfig(); |
my $bodytag=&Apache::loncommon::bodytag |
my $start_page=&Apache::loncommon::start_page |
('Enter Access Key to Unlock this Course'); |
('Enter Access Key to Unlock this Course'); |
|
my $end_page=&Apache::loncommon::end_page(); |
$r->print(<<ENDENTERKEY); |
$r->print(<<ENDENTERKEY); |
<head><title>Entering Course Access Key</title> |
$start_page |
</head> |
<script type="text/javascript"> |
<html> |
// <![CDATA[ |
$bodytag |
|
<script> |
|
$swinfo |
$swinfo |
|
// ]]> |
</script> |
</script> |
<form method="post"> |
<form action="" method="post"> |
<input type="hidden" name="selectrole" value="1" /> |
<input type="hidden" name="selectrole" value="1" /> |
<input type="hidden" name="$trolecode" value="1" /> |
<input type="hidden" name="$trolecode" value="1" /> |
<input type="text" size="20" name="newkey" value="$ENV{'form.newkey'}" /> |
<input type="text" size="20" name="newkey" value="$env{'form.newkey'}" /> |
<input type="submit" value="Enter key" /> |
<input type="submit" value="Enter key" /> |
</form> |
</form> |
</body></html> |
$end_page |
ENDENTERKEY |
ENDENTERKEY |
return OK; |
return OK; |
} |
} |
} |
} |
} |
} |
&Apache::lonnet::log($ENV{'user.domain'}, |
&Apache::lonnet::log($env{'user.domain'}, |
$ENV{'user.name'}, |
$env{'user.name'}, |
$ENV{'user.home'}, |
$env{'user.home'}, |
"Role ".$trolecode); |
"Role ".$trolecode); |
my $tadv=0; |
|
if (($trolecode!~/^st/) && |
|
($trolecode!~/^ta/) && |
|
($trolecode!~/^cm/)) { $tadv=1; } |
|
&Apache::lonnet::appenv( |
&Apache::lonnet::appenv( |
'request.role' => $trolecode, |
{'request.role' => $trolecode, |
'request.role.adv' => $tadv, |
'request.role.domain' => $cdom, |
'request.role.domain' => $cdom, |
'request.course.sec' => $csec, |
'request.course.sec' => $csec); |
'request.course.groups' => $cgrps}); |
my $msg=&mt('Entering course ...'); |
my $tadv=0; |
|
|
if (($cnum) && ($role ne 'ca')) { |
if (($cnum) && ($role ne 'ca') && ($role ne 'aa')) { |
|
my $msg; |
my ($furl,$ferr)= |
my ($furl,$ferr)= |
&Apache::lonuserstate::readmap($cdom.'/'.$cnum); |
&Apache::lonuserstate::readmap($cdom.'/'.$cnum); |
if (($ENV{'form.orgurl'}) && |
if (($env{'form.orgurl'}) && |
($ENV{'form.orgurl'}!~/^\/adm\/flip/)) { |
($env{'form.orgurl'}!~/^\/adm\/flip/)) { |
my $dest=$ENV{'form.orgurl'}; |
my $dest=$env{'form.orgurl'}; |
if ( &Apache::lonnet::mod_perl_version() == 2 ) { |
if ($env{'form.symb'}) { |
&Apache::lonnet::cleanenv(); |
if ($dest =~ /\?/) { |
|
$dest .= '&'; |
|
} else { |
|
$dest .= '?' |
|
} |
|
$dest .= 'symb='.$env{'form.symb'}; |
|
} |
|
if (&Apache::lonnet::allowed('adv') eq 'F') { $tadv=1; } |
|
&Apache::lonnet::appenv({'request.role.adv'=>$tadv}); |
|
if (($ferr) && ($tadv)) { |
|
&error_page($r,$ferr,$dest); |
|
} else { |
|
$r->internal_redirect($dest); |
} |
} |
$r->internal_redirect($dest); |
|
return OK; |
return OK; |
} else { |
} else { |
unless ($ENV{'request.course.id'}) { |
if (!$env{'request.course.id'}) { |
&Apache::lonnet::appenv( |
&Apache::lonnet::appenv( |
"request.course.id" => $cdom.'_'.$cnum); |
{"request.course.id" => $cdom.'_'.$cnum}); |
$furl='/adm/roles?tryagain=1'; |
$furl='/adm/roles?tryagain=1'; |
$msg= |
$msg='<p><span class="LC_error">' |
'<h1><font color=red>'. |
.&mt('Could not initialize [_1] at this time.', |
&mt('Could not initialize course at this time.'). |
$env{'course.'.$cdom.'_'.$cnum.'.description'}) |
'</font></h1><h3>'.&mt('Please try again.').'</h3>'.$ferr; |
.'</span></p>' |
|
.'<p>'.&mt('Please try again.').'</p>' |
|
.'<p>'.$ferr.'</p>'; |
} |
} |
|
if (&Apache::lonnet::allowed('adv') eq 'F') { $tadv=1; } |
|
&Apache::lonnet::appenv({'request.role.adv'=>$tadv}); |
|
|
# Check to see if the user is a CC entering a course |
if (($ferr) && ($tadv)) { |
# for the first time |
&error_page($r,$ferr,$furl); |
my (undef, undef, $role, $courseid) = split(/\./, $envkey); |
} else { |
if (substr($courseid, 0, 1) eq '/') { |
# Check to see if the user is a CC entering a course |
$courseid = substr($courseid, 1); |
# for the first time |
|
my (undef, undef, $role, $courseid) = split(/\./, $envkey); |
|
if (substr($courseid, 0, 1) eq '/') { |
|
$courseid = substr($courseid, 1); |
|
} |
|
$courseid =~ s/\//_/; |
|
if ($role eq 'cc' && $env{'course.' . $courseid . |
|
'.course.helper.not.run'}) { |
|
$furl = "/adm/helper/course.initialization.helper"; |
|
# Send the user to the course they selected |
|
} elsif ($env{'request.course.id'}) { |
|
if ($env{'form.destinationurl'}) { |
|
my $dest = $env{'form.destinationurl'}; |
|
if ($env{'form.destsymb'} ne '') { |
|
my $esc_symb = &HTML::Entities::encode($env{'form.destsymb'},'"<>&'); |
|
$dest .= '?symb='.$esc_symb; |
|
} |
|
&redirect_user($r,&mt('Entering [_1]', |
|
$env{'course.'.$courseid.'.description'}), |
|
$dest,$msg, |
|
$env{'environment.remotenavmap'}); |
|
return OK; |
|
} |
|
if (&Apache::lonnet::allowed('whn', |
|
$env{'request.course.id'}) |
|
|| &Apache::lonnet::allowed('whn', |
|
$env{'request.course.id'}.'/' |
|
.$env{'request.course.sec'}) |
|
) { |
|
my $startpage = &courseloadpage($courseid); |
|
unless ($startpage eq 'firstres') { |
|
$msg = &mt('Entering [_1] ...', |
|
$env{'course.'.$courseid.'.description'}); |
|
&redirect_user($r,&mt('New in course'), |
|
'/adm/whatsnew?refpage=start',$msg, |
|
$env{'environment.remotenavmap'}); |
|
return OK; |
|
} |
|
} |
|
} |
|
# Are we allowed to look at the first resource? |
|
if ($furl !~ m|^/adm/|) { |
|
# Guess not ... |
|
$furl=&Apache::lonpageflip::first_accessible_resource(); |
|
} |
|
$msg = &mt('Entering [_1] ...', |
|
$env{'course.'.$courseid.'.description'}); |
|
&redirect_user($r,&mt('Entering [_1]', |
|
$env{'course.'.$courseid.'.description'}), |
|
$furl,$msg, |
|
$env{'environment.remotenavmap'}); |
} |
} |
$courseid =~ s/\//_/; |
return OK; |
if ($role eq 'cc' && $ENV{'course.' . $courseid . |
|
'.course.helper.not.run'}) { |
|
$furl = "/adm/helper/course.initialization.helper"; |
|
} |
|
# |
|
# Send the user to the course they selected |
|
&redirect_user($r,&mt('Entering Course'), |
|
$furl,$msg); |
|
return OK; |
|
} |
} |
} |
} |
# |
# |
# Send the user to the construction space they selected |
# Send the user to the construction space they selected |
if ($role =~ /^(au|ca)$/) { |
if ($role =~ /^(au|ca|aa)$/) { |
my $redirect_url = '/priv/'; |
my $redirect_url = '/priv/'; |
if ($role eq 'au') { |
if ($role eq 'au') { |
$redirect_url.=$ENV{'user.name'}; |
$redirect_url.=$env{'user.name'}; |
} else { |
} else { |
$where =~ /\/(.*)$/; |
$where =~ /\/(.*)$/; |
$redirect_url .= $1; |
$redirect_url .= $1; |
Line 265 ENDENTERKEY
|
Line 543 ENDENTERKEY
|
$redirect_url); |
$redirect_url); |
return OK; |
return OK; |
} |
} |
|
if ($role eq 'dc') { |
|
my $redirect_url = '/adm/menu/'; |
|
&redirect_user($r,&mt('Loading Domain Coordinator Menu'), |
|
$redirect_url); |
|
return OK; |
|
} |
|
if ($role eq 'sc') { |
|
my $redirect_url = '/adm/grades?command=scantronupload'; |
|
&redirect_user($r,&mt('Loading Data Upload Page'), |
|
$redirect_url); |
|
return OK; |
|
} |
} |
} |
} |
} |
} |
} |
Line 278 ENDENTERKEY
|
Line 568 ENDENTERKEY
|
$r->send_http_header; |
$r->send_http_header; |
return OK if $r->header_only; |
return OK if $r->header_only; |
|
|
|
my $crumbtext = 'User Roles'; |
|
my $pagetitle = 'My Roles'; |
|
my $recent = &mt('Recent Roles'); |
|
my $show_course=&Apache::loncommon::show_course(); |
|
if ($show_course) { |
|
$crumbtext = 'Courses'; |
|
$pagetitle = 'My Courses'; |
|
$recent = &mt('Recent Courses'); |
|
} |
|
my $brcrum =[{href=>"/adm/roles",text=>$crumbtext}]; |
my $swinfo=&Apache::lonmenu::rawconfig(); |
my $swinfo=&Apache::lonmenu::rawconfig(); |
my $bodytag=&Apache::loncommon::bodytag('User Roles'); |
my $start_page=&Apache::loncommon::start_page($pagetitle,undef,{bread_crumbs=>$brcrum}); |
my $helptag='<table><tr><td>'.&Apache::loncommon::help_open_menu('','General Intro','General_Intro','User Roles',1,undef,undef,undef,undef,,&mt("Click here for help")).'</td></td></tr></table>'; |
my $standby=&mt('Role selected. Please stand by.'); |
|
$standby=~s/\n/\\n/g; |
|
my $noscript='<span class="LC_error">'.&mt('Use of LON-CAPA requires Javascript to be enabled in your web browser.').'<br />'.&mt('As this is not the case, most functionality in the system will be unavailable.').'</span><br />'; |
|
|
$r->print(<<ENDHEADER); |
$r->print(<<ENDHEADER); |
<html> |
$start_page |
<head> |
<br /> |
<title>LON-CAPA User Roles</title> |
<noscript> |
</head> |
$noscript |
$bodytag |
</noscript> |
$helptag<br /> |
<script type="text/javascript"> |
<script> |
// <![CDATA[ |
$swinfo |
$swinfo |
window.focus(); |
window.focus(); |
|
|
|
active=true; |
|
|
|
function enterrole (thisform,rolecode,buttonname) { |
|
if (active) { |
|
active=false; |
|
document.title='$standby'; |
|
window.status='$standby'; |
|
thisform.newrole.value=rolecode; |
|
thisform.submit(); |
|
} else { |
|
alert('$standby'); |
|
} |
|
} |
|
// ]]> |
</script> |
</script> |
ENDHEADER |
ENDHEADER |
|
|
# ------------------------------------------ Get Error Message from Environment |
# ------------------------------------------ Get Error Message from Environment |
|
|
my ($fn,$priv,$nochoose,$error,$msg)=split(/:/,$ENV{'user.error.msg'}); |
my ($fn,$priv,$nochoose,$error,$msg)=split(/:/,$env{'user.error.msg'}); |
if ($ENV{'user.error.msg'}) { |
if ($env{'user.error.msg'}) { |
$r->log_reason( |
$r->log_reason( |
"$msg for $ENV{'user.name'} domain $ENV{'user.domain'} access $priv",$fn); |
"$msg for $env{'user.name'} domain $env{'user.domain'} access $priv",$fn); |
} |
} |
|
|
# ------------------------------------------------- Can this user re-init, etc? |
# ------------------------------------------------- Can this user re-init, etc? |
|
|
my $advanced=$ENV{'user.adv'}; |
my $advanced=$env{'user.adv'}; |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['tryagain']); |
&Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['tryagain']); |
my $tryagain=$ENV{'form.tryagain'}; |
my $tryagain=$env{'form.tryagain'}; |
|
my $reinit=$env{'user.reinit'}; |
|
delete $env{'user.reinit'}; |
|
|
# -------------------------------------------------------- Generate Page Output |
# -------------------------------------------------------- Generate Page Output |
# --------------------------------------------------------------- Error Header? |
# --------------------------------------------------------------- Error Header? |
if ($error) { |
if ($error) { |
$r->print("<h1>LON-CAPA Access Control</h1>"); |
$r->print("<h1>".&mt('LON-CAPA Access Control')."</h1>"); |
$r->print("<hr><pre>Access : ". |
$r->print("<!-- LONCAPAACCESSCONTROLERRORSCREEN --><hr /><pre>"); |
Apache::lonnet::plaintext($priv)."\n"); |
if ($priv ne '') { |
$r->print("Resource: $fn\n"); |
$r->print(&mt('Access : ').&Apache::lonnet::plaintext($priv)."\n"); |
$r->print("Action : $msg\n</pre><hr>"); |
} |
} else { |
if ($fn ne '') { |
if ($ENV{'user.error.msg'}) { |
$r->print(&mt('Resource: ').&Apache::lonenc::check_encrypt($fn)."\n"); |
$r->print( |
} |
'<h3><font color=red>'. |
if ($msg ne '') { |
&mt('You need to choose another user role or enter a specific course for this function').'</font></h3>'); |
$r->print(&mt('Action : ').$msg."\n"); |
} |
} |
|
$r->print("</pre><hr />"); |
|
my $url=$fn; |
|
my $last; |
|
if (tie(my %hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db', |
|
&GDBM_READER(),0640)) { |
|
$last=$hash{'last_known'}; |
|
untie(%hash); |
|
} |
|
if ($last) { $fn.='?symb='.&escape($last); } |
|
|
|
&Apache::londocs::changewarning($r,undef,'You have modified your course recently, [_1] may fix this access problem.', |
|
&Apache::lonenc::check_encrypt($fn)); |
|
} else { |
|
if ($env{'user.error.msg'}) { |
|
if ($reinit) { |
|
$r->print( |
|
'<h3><span class="LC_error">'. |
|
&mt('As your session file for the course has expired, you will need to re-select the course.').'</span></h3>'); |
|
} else { |
|
$r->print( |
|
'<h3><span class="LC_error">'. |
|
&mt('You need to choose another user role or enter a specific course for this function').'</span></h3>'); |
|
} |
|
} |
} |
} |
# -------------------------------------------------------- Choice or no choice? |
# -------------------------------------------------------- Choice or no choice? |
if ($nochoose) { |
if ($nochoose) { |
if ($advanced) { |
$r->print("<h2>".&mt('Sorry ...')."</h2>\n<span class='LC_error'>". |
$r->print("<h2>".&mt('Assigned User Roles')."</h2>\n"); |
&mt('This action is currently not authorized.').'</span>'. |
} else { |
&Apache::loncommon::end_page()); |
$r->print("<h2>".&mt('Sorry ...')."</h2>\n". |
return OK; |
&mt('This resource might be part of')); |
|
if ($ENV{'request.course.id'}) { |
|
$r->print(&mt(' another')); |
|
} else { |
|
$r->print(&mt(' a certain')); |
|
} |
|
$r->print(&mt(' course.').'</body></html>'); |
|
return OK; |
|
} |
|
} else { |
} else { |
if ($advanced) { |
|
$r->print(&mt("Your home server is "). |
|
$Apache::lonnet::hostname{&Apache::lonnet::homeserver |
|
($ENV{'user.name'},$ENV{'user.domain'})}. |
|
"<br />\n"); |
|
$r->print(&mt( |
|
"Author and Co-Author roles may not be available on servers other than your home server.")); |
|
} |
|
if (($ENV{'REDIRECT_QUERY_STRING'}) && ($fn)) { |
if (($ENV{'REDIRECT_QUERY_STRING'}) && ($fn)) { |
$fn.='?'.$ENV{'REDIRECT_QUERY_STRING'}; |
$fn.='?'.$ENV{'REDIRECT_QUERY_STRING'}; |
} |
} |
$r->print('<form method="post" name="rolechoice" action="'.(($fn)?$fn:$r->uri).'">'); |
$r->print('<form method="post" name="rolechoice" action="'.(($fn)?$fn:$r->uri).'">'); |
$r->print('<input type=hidden name=orgurl value="'.$fn.'">'); |
$r->print('<input type="hidden" name="orgurl" value="'.$fn.'" />'); |
$r->print('<input type=hidden name=selectrole value=1>'); |
$r->print('<input type="hidden" name="selectrole" value="1" />'); |
|
$r->print('<input type="hidden" name="newrole" value="" />'); |
} |
} |
if ($ENV{'user.adv'}) { |
|
$r->print( |
my (%roletext,%sortrole,%roleclass,%futureroles,%timezones); |
'<br />'.&mt('Show all roles').': <input type="checkbox" name="showall"'); |
my ($countactive,$countfuture,$inrole,$possiblerole) = |
if ($ENV{'form.showall'}) { $r->print(' checked'); } |
&gather_roles($then,$refresh,$now,$reinit,$nochoose,\%roletext,\%sortrole,\%roleclass, |
$r->print('><input type=submit value="'.&mt('Display').'">'); |
\%futureroles,\%timezones); |
|
|
|
$refresh = $now; |
|
&Apache::lonnet::appenv({'user.refresh.time' => $refresh}); |
|
if ($env{'user.adv'}) { |
|
$r->print( |
|
'<p><label>'.&mt('Show all roles').': <input type="checkbox" name="showall"'); |
|
if ($env{'form.showall'}) { $r->print(' checked="checked" '); } |
|
$r->print(' /></label><input type="submit" value="'.&mt('Display').'" /></p>'); |
|
} else { |
|
if ($countactive > 0) { |
|
&queued_selfenrollment($r); |
|
my $domdesc = &Apache::lonnet::domain($env{'user.domain'},'description'); |
|
my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&'); |
|
$r->print('<p>'.&mt('[_1]Visit the [_2]Course Catalog[_3] to view all [_4] LON-CAPA courses.','<b>','<a href="/adm/coursecatalog?showdom='.$esc_dom.'">','</a></b>',$domdesc).'<br />'.&mt('If a course is [_1]not[_2] in your list of current courses below, you may be able to enroll if self-enrollment is permitted.','<b>','</b>').'</p>'); |
|
} |
} |
} |
|
|
my (%roletext,%sortrole,%roleclass); |
# No active roles |
my $countactive=0; |
if ($countactive==0) { |
my $inrole=0; |
if ($inrole) { |
my $possiblerole=''; |
$r->print('<h2>'.&mt('Currently no additional roles or courses').'</h2>'); |
foreach $envkey (sort keys %ENV) { |
} else { |
|
$r->print('<h2>'.&mt('Currently no active roles or courses').'</h2>'); |
|
} |
|
&findcourse_advice($r); |
|
$r->print('</form>'); |
|
if ($countfuture) { |
|
$r->print(&mt('The following [quant,_1,role,roles] will become active in the future:',$countfuture)); |
|
my $doheaders = &roletable_headers($r,\%roleclass,\%sortrole, |
|
$nochoose); |
|
&print_rolerows($r,$doheaders,\%roleclass,\%sortrole,\%dcroles, |
|
\%roletext); |
|
my $tremark=''; |
|
my $tbg; |
|
if ($env{'request.role'} eq 'cm') { |
|
$tbg="LC_roles_selected"; |
|
$tremark=&mt('Currently selected.').' '; |
|
} else { |
|
$tbg="LC_roles_is"; |
|
} |
|
$r->print(&Apache::loncommon::start_data_table_row() |
|
.'<td class="'.$tbg.'"> </td>' |
|
.'<td colspan="3">' |
|
.&mt('No role specified') |
|
.'</td>' |
|
.'<td>'.$tremark.' </td>' |
|
.&Apache::loncommon::end_data_table_row() |
|
); |
|
|
|
$r->print(&Apache::loncommon::end_data_table()); |
|
} |
|
$r->print(&Apache::loncommon::end_page()); |
|
return OK; |
|
} |
|
# ----------------------------------------------------------------------- Table |
|
unless ((!&Apache::loncommon::show_course()) || ($nochoose) || ($countactive==1)) { |
|
$r->print("<h2>".&mt('Select a Course to Enter')."</h2>\n"); |
|
} |
|
if ($env{'form.destinationurl'}) { |
|
$r->print('<input type="hidden" name="destinationurl" value="'. |
|
$env{'form.destinationurl'}.'" />'); |
|
if ($env{'form.destsymb'} ne '') { |
|
$r->print('<input type="hidden" name="destsymb" value="'. |
|
$env{'form.destsymb'}.'" />'); |
|
} |
|
} |
|
my $doheaders = &roletable_headers($r,\%roleclass,\%sortrole,$nochoose); |
|
if ($env{'environment.recentroles'}) { |
|
my %recent_roles = |
|
&Apache::lonhtmlcommon::get_recent('roles',$env{'environment.recentrolesn'}); |
|
my $output=''; |
|
foreach (sort(keys(%recent_roles))) { |
|
if (ref($roletext{'user.role.'.$_}) eq 'ARRAY') { |
|
$output.= &Apache::loncommon::start_data_table_row(). |
|
$roletext{'user.role.'.$_}->[0]. |
|
&Apache::loncommon::end_data_table_row(). |
|
&Apache::loncommon::continue_data_table_row(). |
|
$roletext{'user.role.'.$_}->[1]. |
|
&Apache::loncommon::end_data_table_row(); |
|
if ($_ =~ m-dc\./($match_domain)/- |
|
&& $dcroles{$1}) { |
|
$output .= &adhoc_roles_row($1,'recent'); |
|
} |
|
} elsif ($numdc > 0) { |
|
unless ($_ =~/^error\:/) { |
|
$output.=&display_cc_role('user.role.'.$_); |
|
} |
|
} |
|
} |
|
if ($output) { |
|
$r->print(&Apache::loncommon::start_data_table_empty_row() |
|
.'<td align="center" colspan="5">' |
|
.$recent |
|
.'</td>' |
|
.&Apache::loncommon::end_data_table_empty_row() |
|
); |
|
$r->print($output); |
|
$doheaders ++; |
|
} |
|
} |
|
|
|
if ($numdc > 0) { |
|
$r->print(&coursepick_jscript()); |
|
$r->print(&Apache::loncommon::coursebrowser_javascript(). |
|
&Apache::loncommon::authorbrowser_javascript()); |
|
} |
|
&print_rolerows($r,$doheaders,\%roleclass,\%sortrole,\%dcroles,\%roletext); |
|
if ($countactive > 1) { |
|
my $tremark=''; |
|
my $tbg; |
|
if ($env{'request.role'} eq 'cm') { |
|
$tbg="LC_roles_selected"; |
|
$tremark=&mt('Currently selected.').' '; |
|
} else { |
|
$tbg="LC_roles_is"; |
|
} |
|
$r->print(&Apache::loncommon::start_data_table_row()); |
|
unless ($nochoose) { |
|
if ($env{'request.role'} ne 'cm') { |
|
$r->print('<td class="'.$tbg.'"><input type="submit" value="'. |
|
&mt('Select').'" name="cm" /></td>'); |
|
} else { |
|
$r->print('<td class="'.$tbg.'"> </td>'); |
|
} |
|
} |
|
$r->print('<td colspan="3">' |
|
.&mt('No role specified') |
|
.'</td>' |
|
.'<td>'.$tremark.' </td>' |
|
.&Apache::loncommon::end_data_table_row() |
|
); |
|
} |
|
$r->print(&Apache::loncommon::end_data_table()); |
|
unless ($nochoose) { |
|
$r->print("</form>\n"); |
|
} |
|
# ------------------------------------------------------------ Privileges Info |
|
if (($advanced) && (($env{'user.error.msg'}) || ($error))) { |
|
$r->print('<hr /><h2>'.&mt('Current Privileges').'</h2>'); |
|
$r->print(&privileges_info()); |
|
} |
|
$r->print(&Apache::lonnet::getannounce()); |
|
if ($advanced) { |
|
my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&'); |
|
$r->print('<p><small><i>' |
|
.&mt('This LON-CAPA server is version [_1]',$r->dir_config('lonVersion')) |
|
.'</i><br />' |
|
.'<a href="/adm/logout">'.&mt('Logout').'</a> ' |
|
.'<a href="/adm/coursecatalog?showdom='.$esc_dom.'">' |
|
.&mt('Course Catalog') |
|
.'</a></small></p>'); |
|
} |
|
$r->print(&Apache::loncommon::end_page()); |
|
return OK; |
|
} |
|
|
|
sub gather_roles { |
|
my ($then,$refresh,$now,$reinit,$nochoose,$roletext,$sortrole,$roleclass,$futureroles,$timezones) = @_; |
|
my ($countactive,$countfuture,$inrole,$possiblerole) = (0,0,0,''); |
|
my $advanced = $env{'user.adv'}; |
|
my $tryagain = $env{'form.tryagain'}; |
|
foreach my $envkey (sort(keys(%env))) { |
my $button = 1; |
my $button = 1; |
my $switchserver=''; |
my $switchserver=''; |
my $roletext; |
my ($role_text,$role_text_end,$sortkey); |
my $sortkey; |
|
if ($envkey=~/^user\.role\./) { |
if ($envkey=~/^user\.role\./) { |
my (undef,undef,$role,@pwhere)=split(/\./,$envkey); |
my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus,$tpstart,$tpend); |
next if (!defined($role) || $role eq ''); |
&Apache::lonnet::role_status($envkey,$then,$refresh,$now,\$role,\$where, |
my $where=join('.',@pwhere); |
\$trolecode,\$tstatus,\$tstart,\$tend); |
my $trolecode=$role.'.'.$where; |
next if (!defined($role) || $role eq '' || $role =~ /^gr/); |
my ($tstart,$tend)=split(/\./,$ENV{$envkey}); |
my $timezone = &role_timezone($where,$timezones); |
my $tremark=''; |
$tremark=''; |
my $tstatus='is'; |
$tpstart=' '; |
my $tpstart=' '; |
$tpend=' '; |
my $tpend=' '; |
|
my $tfont='#000000'; |
|
if ($tstart) { |
if ($tstart) { |
if ($tstart>$then) { |
$tpstart=&Apache::lonlocal::locallocaltime($tstart,$timezone); |
$tstatus='future'; |
|
if ($tstart<$now) { $tstatus='will'; } |
|
} |
|
$tpstart=&Apache::lonlocal::locallocaltime($tstart); |
|
} |
} |
if ($tend) { |
if ($tend) { |
if ($tend<$then) { |
$tpend=&Apache::lonlocal::locallocaltime($tend,$timezone); |
$tstatus='expired'; |
|
} elsif ($tend<$now) { |
|
$tstatus='will_not'; |
|
} |
|
$tpend=&Apache::lonlocal::locallocaltime($tend); |
|
} |
} |
if ($ENV{'request.role'} eq $trolecode) { |
if ($env{'request.role'} eq $trolecode) { |
$tstatus='selected'; |
$tstatus='selected'; |
} |
} |
my $tbg; |
my $tbg; |
if (($tstatus eq 'is') || ($tstatus eq 'selected') || |
if (($tstatus eq 'is') |
($ENV{'form.showall'})) { |
|| ($tstatus eq 'selected') |
|
|| ($tstatus eq 'future') |
|
|| ($env{'form.showall'})) { |
if ($tstatus eq 'is') { |
if ($tstatus eq 'is') { |
$tbg='#77FF77'; |
$tbg='LC_roles_is'; |
$tfont='#003300'; |
$possiblerole=$trolecode; |
$possiblerole=$trolecode; |
$countactive++; |
$countactive++; |
|
} elsif ($tstatus eq 'future') { |
} elsif ($tstatus eq 'future') { |
$tbg='#FFFF77'; |
$tbg='LC_roles_future'; |
$button=0; |
$button=0; |
} elsif ($tstatus eq 'will') { |
$futureroles->{$trolecode} = $tstart.':'.$tend; |
$tbg='#FFAA77'; |
$countfuture ++; |
$tremark.=&mt('Active at next login. '); |
|
} elsif ($tstatus eq 'expired') { |
} elsif ($tstatus eq 'expired') { |
$tbg='#FF7777'; |
$tbg='LC_roles_expired'; |
$tfont='#330000'; |
|
$button=0; |
$button=0; |
} elsif ($tstatus eq 'will_not') { |
} elsif ($tstatus eq 'will_not') { |
$tbg='#AAFF77'; |
$tbg='LC_roles_will_not'; |
$tremark.=&mt('Expired after logout. '); |
$tremark.=&mt('Expired after logout.').' '; |
} elsif ($tstatus eq 'selected') { |
} elsif ($tstatus eq 'selected') { |
$tbg='#11CC55'; |
$tbg='LC_roles_selected'; |
$tfont='#002200'; |
$inrole=1; |
$inrole=1; |
$countactive++; |
$countactive++; |
$tremark.=&mt('Currently selected.').' '; |
$tremark.=&mt('Currently selected. '); |
|
} |
} |
my $trole; |
my $trole; |
if ($role =~ /^cr\//) { |
if ($role =~ /^cr\//) { |
my ($rdummy,$rdomain,$rauthor,$rrole)=split(/\//,$role); |
my ($rdummy,$rdomain,$rauthor,$rrole)=split(/\//,$role); |
$tremark.='<br>'.&mt('Defined by ').$rauthor. |
if ($tremark) { $tremark.='<br />'; } |
&mt(' at ').$rdomain.'.'; |
$tremark.=&mt('Defined by [_1] at [_2].',$rauthor,$rdomain); |
$trole=$rrole; |
|
} else { |
|
$trole=Apache::lonnet::plaintext($role); |
|
} |
} |
|
$trole=Apache::lonnet::plaintext($role); |
my $ttype; |
my $ttype; |
my $twhere; |
my $twhere; |
my ($tdom,$trest,$tsection)= |
my ($tdom,$trest,$tsection)= |
split(/\//,Apache::lonnet::declutter($where)); |
split(/\//,Apache::lonnet::declutter($where)); |
# First, Co-Authorship roles |
# First, Co-Authorship roles |
if ($role eq 'ca') { |
if (($role eq 'ca') || ($role eq 'aa')) { |
my $home = &Apache::lonnet::homeserver($trest,$tdom); |
my $home = &Apache::lonnet::homeserver($trest,$tdom); |
my $allowed=0; |
my $allowed=0; |
my @ids=&Apache::lonnet::current_machine_ids(); |
my @ids=&Apache::lonnet::current_machine_ids(); |
foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } } |
foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } } |
if (!$allowed) { |
if (!$allowed) { |
$button=0; |
$button=0; |
$switchserver=&Apache::lonnet::escape('http://'. |
$switchserver='otherserver='.$home.'&role='.$trolecode; |
$Apache::lonnet::hostname{$home}. |
|
'/adm/login?domain='.$ENV{'user.domain'}. |
|
'&username='.$ENV{'user.name'}. |
|
'&firsturl=/priv/'.$trest.'/'); |
|
} |
} |
#next if ($home eq 'no_host'); |
#next if ($home eq 'no_host'); |
$home = $Apache::lonnet::hostname{$home}; |
$home = &Apache::lonnet::hostname($home); |
$ttype='Construction Space'; |
$ttype='Construction Space'; |
$twhere=&mt('User').': '.$trest.'<br />'.&mt('Domain'). |
$twhere=&mt('User').': '.$trest.'<br />'.&mt('Domain'). |
': '.$tdom.'<br />'. |
': '.$tdom.'<br />'. |
' '.&mt('Server').': '.$home; |
' '.&mt('Server').': '.$home; |
$ENV{'course.'.$tdom.'_'.$trest.'.description'}='ca'; |
$env{'course.'.$tdom.'_'.$trest.'.description'}='ca'; |
$tremark.=&Apache::lonhtmlcommon::authorbombs('/res/'.$tdom.'/'.$trest.'/'); |
$tremark.=&Apache::lonhtmlcommon::authorbombs('/res/'.$tdom.'/'.$trest.'/'); |
$sortkey=$role."$trest:$tdom"; |
$sortkey=$role."$trest:$tdom"; |
} elsif ($role eq 'au') { |
} elsif ($role eq 'au') { |
# Authors |
# Authors |
my $home = &Apache::lonnet::homeserver |
my $home = &Apache::lonnet::homeserver |
($ENV{'user.name'},$ENV{'user.domain'}); |
($env{'user.name'},$env{'user.domain'}); |
my $allowed=0; |
my $allowed=0; |
my @ids=&Apache::lonnet::current_machine_ids(); |
my @ids=&Apache::lonnet::current_machine_ids(); |
foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } } |
foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } } |
if (!$allowed) { |
if (!$allowed) { |
$button=0; |
$button=0; |
$switchserver=&Apache::lonnet::escape('http://'. |
$switchserver='otherserver='.$home.'&role='.$trolecode; |
$Apache::lonnet::hostname{$home}. |
|
'/adm/login?domain='.$ENV{'user.domain'}. |
|
'&username='.$ENV{'user.name'}. |
|
'&firsturl=/priv/'.$ENV{'user.name'}.'/'); |
|
} |
} |
#next if ($home eq 'no_host'); |
#next if ($home eq 'no_host'); |
$home = $Apache::lonnet::hostname{$home}; |
$home = &Apache::lonnet::hostname($home); |
$ttype='Construction Space'; |
$ttype='Construction Space'; |
$twhere=&mt('Domain').': '.$tdom.'<br />'.&mt('Server'). |
$twhere=&mt('Domain').': '.$tdom.'<br />'.&mt('Server'). |
': '.$home; |
': '.$home; |
$ENV{'course.'.$tdom.'_'.$trest.'.description'}='ca'; |
$env{'course.'.$tdom.'_'.$trest.'.description'}='ca'; |
$tremark.=&Apache::lonhtmlcommon::authorbombs('/res/'.$tdom.'/'.$ENV{'user.name'}.'/'); |
$tremark.=&Apache::lonhtmlcommon::authorbombs('/res/'.$tdom.'/'.$env{'user.name'}.'/'); |
$sortkey=$role; |
$sortkey=$role; |
} elsif ($trest) { |
} elsif ($trest) { |
$ttype='Course'; |
|
if ($tsection) { |
|
$ttype.='<br>'.&mt('Section/Group').': '.$tsection; |
|
} |
|
my $tcourseid=$tdom.'_'.$trest; |
my $tcourseid=$tdom.'_'.$trest; |
if ($ENV{'course.'.$tcourseid.'.description'}) { |
$ttype = &Apache::loncommon::course_type($tcourseid); |
$twhere=$ENV{'course.'.$tcourseid.'.description'}; |
$trole = &Apache::lonnet::plaintext($role,$ttype); |
$sortkey=$role."\0".$tdom."\0".$twhere."\0".$envkey; |
if ($env{'course.'.$tcourseid.'.description'}) { |
|
$twhere=$env{'course.'.$tcourseid.'.description'}; |
|
$sortkey=$role."\0".$tdom."\0".$twhere."\0".$envkey; |
unless ($twhere eq &mt('Currently not available')) { |
unless ($twhere eq &mt('Currently not available')) { |
$twhere.=' <font size="-2">'. |
$twhere.=' <span class="LC_fontsize_small">'. |
&Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom,$tfont). |
&Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom). |
'</font>'; |
'</span>'; |
} |
} |
} else { |
} else { |
my %newhash=Apache::lonnet::coursedescription |
my %newhash=&Apache::lonnet::coursedescription($tcourseid); |
($tcourseid); |
|
if (%newhash) { |
if (%newhash) { |
$sortkey=$role."\0".$tdom."\0".$newhash{'description'}. |
$sortkey=$role."\0".$tdom."\0".$newhash{'description'}. |
"\0".$envkey; |
"\0".$envkey; |
$twhere=$newhash{'description'}. |
$twhere=$newhash{'description'}. |
' <font size="-2">'. |
' <span class="LC_fontsize_small">'. |
&Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom,$tfont). |
&Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom). |
'</font>'; |
'</span>'; |
|
$ttype = $newhash{'type'}; |
|
$trole = &Apache::lonnet::plaintext($role,$ttype); |
} else { |
} else { |
$twhere=&mt('Currently not available'); |
$twhere=&mt('Currently not available'); |
$ENV{'course.'.$tcourseid.'.description'}=$twhere; |
$env{'course.'.$tcourseid.'.description'}=$twhere; |
$sortkey=$role."\0".$tdom."\0".$twhere."\0".$envkey; |
$sortkey=$role."\0".$tdom."\0".$twhere."\0".$envkey; |
|
$ttype = 'Unavailable'; |
} |
} |
} |
} |
if ($role ne 'st') { $twhere.="<br />".&mt('Domain').":".$tdom; } |
if ($tsection) { |
|
$twhere.='<br />'.&mt('Section').': '.$tsection; |
|
} |
|
if ($role ne 'st') { $twhere.="<br />".&mt('Domain').":".$tdom; } |
} elsif ($tdom) { |
} elsif ($tdom) { |
$ttype='Domain'; |
$ttype='Domain'; |
$twhere=$tdom; |
$twhere=$tdom; |
$sortkey=$role.$twhere; |
$sortkey=$role.$twhere; |
} else { |
} else { |
$ttype='System'; |
$ttype='System'; |
$twhere=&mt('system wide'); |
$twhere=&mt('system wide'); |
$sortkey=$role.$twhere; |
$sortkey=$role.$twhere; |
} |
} |
|
($role_text,$role_text_end) = |
$roletext.='<tr bgcolor='.$tbg.'>'; |
&build_roletext($trolecode,$tdom,$trest,$tstatus,$tryagain, |
unless ($nochoose) { |
$advanced,$tremark,$tbg,$trole,$twhere,$tpstart, |
if (!$button) { |
$tpend,$nochoose,$button,$switchserver,$reinit); |
if ($switchserver) { |
$roletext->{$envkey}=[$role_text,$role_text_end]; |
$roletext.='<td><a href="/adm/logout?handover='. |
if (!$sortkey) {$sortkey=$twhere."\0".$envkey;} |
$switchserver.'">'.&mt('Switch Server').'</a></td>'; |
$sortrole->{$sortkey}=$envkey; |
} else { |
$roleclass->{$envkey}=$ttype; |
$roletext.=('<td> </td>'); |
} |
|
} |
|
} |
|
return ($countactive,$countfuture,$inrole,$possiblerole); |
|
} |
|
|
|
sub role_timezone { |
|
my ($where,$timezones) = @_; |
|
my $timezone; |
|
if (ref($timezones) eq 'HASH') { |
|
if ($where =~ m{^/($match_domain)/($match_courseid)}) { |
|
my $cdom = $1; |
|
my $cnum = $2; |
|
if ($cdom && $cnum) { |
|
if (!exists($timezones->{$cdom.'_'.$cnum})) { |
|
my %timehash = |
|
&Apache::lonnet::get('environment',['timezone'],$cdom,$cnum); |
|
if ($timehash{'timezone'} eq '') { |
|
if (!exists($timezones->{$cdom})) { |
|
my %domdefaults = |
|
&Apache::lonnet::get_domain_defaults($cdom); |
|
if ($domdefaults{'timezone_def'} eq '') { |
|
$timezones->{$cdom} = 'local'; |
|
} else { |
|
$timezones->{$cdom} = $domdefaults{'timezone_def'}; |
|
} |
} |
} |
} elsif ($tstatus eq 'is') { |
$timezones->{$cdom.'_'.$cnum} = $timezones->{$cdom}; |
$roletext.=('<td><input type=submit value="'. |
|
&mt('Select').'" name="'. |
|
$trolecode.'"></td>'); |
|
} elsif ($tryagain) { |
|
$roletext.= |
|
'<td><input type=submit value="'. |
|
&mt('Try Selecting Again').'" name="'.$trolecode.'"></td>'; |
|
} elsif ($advanced) { |
|
$roletext.= |
|
'<td><input type=submit value="'. |
|
&mt('Re-Initialize').'" name="'.$trolecode.'"></td>'; |
|
} else { |
} else { |
$roletext.='<td> </td>'; |
$timezones->{$cdom.'_'.$cnum} = |
|
&Apache::lonlocal::gettimezone($timehash{'timezone'}); |
} |
} |
} |
} |
$tremark.=&Apache::lonannounce::showday(time,1, |
$timezone = $timezones->{$cdom.'_'.$cnum}; |
&Apache::lonannounce::readcalendar($tdom.'_'.$trest)); |
} |
|
} else { |
$roletext.='<td><font color="'.$tfont.'">'.$trole. |
my ($tdom) = ($where =~ m{^/($match_domain)}); |
'</font></td><td><font color="'.$tfont.'">'.$ttype. |
if ($tdom) { |
'</font></td><td><font color="'.$tfont.'">'.$twhere. |
if (!exists($timezones->{$tdom})) { |
'</font></td><td><font color="'.$tfont.'">'.$tpstart. |
my %domdefaults = &Apache::lonnet::get_domain_defaults($tdom); |
'</font></td><td><font color="'.$tfont.'">'.$tpend. |
if ($domdefaults{'timezone_def'} eq '') { |
'</font></td><td><font color="'.$tfont.'">'.$tremark. |
$timezones->{$tdom} = 'local'; |
' </font></td></tr>'."\n"; |
} else { |
$roletext{$envkey}=$roletext; |
$timezones->{$tdom} = $domdefaults{'timezone_def'}; |
if (!$sortkey) {$sortkey=$twhere."\0".$envkey;} |
} |
$sortrole{$sortkey}=$envkey; |
} |
$roleclass{$envkey}=$ttype; |
$timezone = $timezones->{$tdom}; |
} |
} |
|
} |
|
if ($timezone eq 'local') { |
|
$timezone = undef; |
} |
} |
} |
} |
# No active roles |
return $timezone; |
if ($countactive==0) { |
} |
if ($inrole) { |
|
$r->print('<h2>'.&mt('Currently no additional roles or courses').'</h2>'); |
sub roletable_headers { |
} else { |
my ($r,$roleclass,$sortrole,$nochoose) = @_; |
$r->print('<h2>'.&mt('Currently no active roles or courses').'</h2>'); |
my $doheaders; |
} |
if ((ref($sortrole) eq 'HASH') && (ref($roleclass) eq 'HASH')) { |
$r->print('</form></body></html>'); |
$r->print('<br />' |
return OK; |
.&Apache::loncommon::start_data_table() |
# Is there only one choice? |
.&Apache::loncommon::start_data_table_header_row() |
} elsif (($countactive==1) && ($ENV{'request.role'} eq 'cm')) { |
); |
$r->print('<h3>'.&mt('Please stand by.').'</h3>'. |
if (!$nochoose) { $r->print('<th> </th>'); } |
'<input type="hidden" name="'.$possiblerole.'" value="1" />'); |
$r->print('<th>'.&mt('User Role').'</th>' |
$r->print("</form>\n"); |
.'<th>'.&mt('Extent').'</th>' |
$r->rflush(); |
.'<th>'.&mt('Start').'</th>' |
$r->print('<script>document.forms.rolechoice.submit();</script>'); |
.'<th>'.&mt('End').'</th>' |
$r->print('</body></html>'); |
.&Apache::loncommon::end_data_table_header_row() |
return OK; |
); |
|
$doheaders=-1; |
|
my @roletypes = &roletypes(); |
|
foreach my $type (@roletypes) { |
|
my $haverole=0; |
|
foreach my $which (sort {uc($a) cmp uc($b)} (keys(%{$sortrole}))) { |
|
if ($roleclass->{$sortrole->{$which}} =~ /^\Q$type\E/) { |
|
$haverole=1; |
|
} |
|
} |
|
if ($haverole) { $doheaders++; } |
|
} |
} |
} |
# More than one possible role |
return $doheaders; |
# ----------------------------------------------------------------------- Table |
} |
unless (($advanced) || ($nochoose)) { |
|
$r->print("<h2>".&mt('Select a Course to Enter')."</h2>\n"); |
sub roletypes { |
|
my @types = ('Domain','Construction Space','Course','Unavailable','System'); |
|
return @types; |
|
} |
|
|
|
sub print_rolerows { |
|
my ($r,$doheaders,$roleclass,$sortrole,$dcroles,$roletext) = @_; |
|
if ((ref($roleclass) eq 'HASH') && (ref($sortrole) eq 'HASH')) { |
|
my @types = &roletypes(); |
|
foreach my $type (@types) { |
|
my $output; |
|
foreach my $which (sort {uc($a) cmp uc($b)} (keys(%{$sortrole}))) { |
|
if ($roleclass->{$sortrole->{$which}} =~ /^\Q$type\E/) { |
|
if (ref($roletext) eq 'HASH') { |
|
if (ref($roletext->{$sortrole->{$which}}) eq 'ARRAY') { |
|
$output.= &Apache::loncommon::start_data_table_row(). |
|
$roletext->{$sortrole->{$which}}->[0]. |
|
&Apache::loncommon::end_data_table_row(). |
|
&Apache::loncommon::continue_data_table_row(). |
|
$roletext->{$sortrole->{$which}}->[1]. |
|
&Apache::loncommon::end_data_table_row(); |
|
} |
|
if ($sortrole->{$which} =~ m-dc\./($match_domain)/-) { |
|
if (ref($dcroles) eq 'HASH') { |
|
if ($dcroles->{$1}) { |
|
$output .= &adhoc_roles_row($1,''); |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
if ($output) { |
|
if ($doheaders > 0) { |
|
$r->print(&Apache::loncommon::start_data_table_empty_row() |
|
.'<td align="center" colspan="5">' |
|
.&mt($type) |
|
.'</td>' |
|
.&Apache::loncommon::end_data_table_empty_row() |
|
); |
|
} |
|
$r->print($output); |
|
} |
|
} |
} |
} |
$r->print('<br /><table><tr>'); |
} |
unless ($nochoose) { $r->print('<th> </th>'); } |
|
$r->print('<th>'.&mt('User Role').'</th><th colspan=2>'.&mt('Extent'). |
sub findcourse_advice { |
'</th><th>'.&mt('Start').'</th><th>'.&mt('End').'</th><th>'. |
my ($r) = @_; |
&mt('Remark').'</th></tr>'."\n"); |
my $domdesc = &Apache::lonnet::domain($env{'user.domain'},'description'); |
my $doheaders=-1; |
my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&'); |
foreach my $type ('Construction Space','Course','Domain','System') { |
if (&Apache::lonnet::auto_run(undef,$env{'user.domain'})) { |
my $haverole=0; |
$r->print(&mt('If you were expecting to see an active role listed for a particular course in the [_1] domain, it may be missing for one of the following reasons:',$domdesc).' |
foreach my $which (sort {uc($a) cmp uc($b)} (keys(%sortrole))) { |
<ul> |
if ($roleclass{$sortrole{$which}} =~ /^\Q$type\E/) { |
<li>'.&mt('The course has yet to be created.').'</li> |
$haverole=1; |
<li>'.&mt('Automatic enrollment of registered students has not been enabled for the course.').'</li> |
} |
<li>'.&mt('You are in a section of course for which automatic enrollment in the corresponding LON-CAPA course is not active.').'</li> |
} |
<li>'.&mt('The start date for automated enrollment has yet to be reached.').'</li> |
if ($haverole) { $doheaders++; } |
<li>'.&mt('You registered for the course recently and there is a time lag between the time you register, and the time this information becomes available for the update of LON-CAPA course rosters.').'</li> |
|
</ul>'); |
|
} else { |
|
$r->print(&mt('If you were expecting to see an active role listed for a particular course, that course may not have been created yet.').'<br />'); |
|
} |
|
$r->print('<p>'.&mt('The [_1]Course Catalog[_2] provides information about all [_3] classes for which LON-CAPA courses have been created.','<a href="/adm/coursecatalog?showdom='.$esc_dom.'">','</a>',$domdesc).'<br />'); |
|
$r->print(&mt('You can search the course catalog for courses which permit self-enrollment, if you would like to enroll in a course.').'</p>'); |
|
&queued_selfenrollment($r); |
|
return; |
|
} |
|
|
|
sub queued_selfenrollment { |
|
my ($r) = @_; |
|
my %selfenrollrequests = &Apache::lonnet::dump('selfenrollrequests'); |
|
my %reqs_by_date; |
|
foreach my $item (keys(%selfenrollrequests)) { |
|
if (ref($selfenrollrequests{$item}) eq 'HASH') { |
|
if ($selfenrollrequests{$item}{'status'} eq 'request') { |
|
if ($selfenrollrequests{$item}{'timestamp'}) { |
|
push(@{$reqs_by_date{$selfenrollrequests{$item}{'timestamp'}}},$item); |
|
} |
|
} |
|
} |
} |
} |
foreach my $type ('Construction Space','Course','Domain','System') { |
if (keys(%reqs_by_date)) { |
my $output; |
my $rolename = &Apache::lonnet::plaintext('st'); |
foreach my $which (sort {uc($a) cmp uc($b)} (keys(%sortrole))) { |
$r->print('<b>'.&mt('Enrollment requests pending Course Coordinator approval').'</b><br />'. |
if ($roleclass{$sortrole{$which}} =~ /^\Q$type\E/) { |
&Apache::loncommon::start_data_table(). |
$output.=&mt($roletext{$sortrole{$which}}); |
&Apache::loncommon::start_data_table_header_row(). |
|
'<th>'.&mt('Date requested').'</th><th>'.&mt('Course title').'</th>'. |
|
'<th>'.&mt('User role').'</th><th>'.&mt('Section').'</th>'. |
|
&Apache::loncommon::end_data_table_header_row()); |
|
my @sorted = sort { $a <=> $b } (keys(%reqs_by_date)); |
|
foreach my $item (@sorted) { |
|
if (ref($reqs_by_date{$item}) eq 'ARRAY') { |
|
foreach my $crs (@{$reqs_by_date{$item}}) { |
|
my %courseinfo = &Apache::lonnet::coursedescription($crs); |
|
my $usec = $selfenrollrequests{$crs}{'section'}; |
|
if ($usec eq '') { |
|
$usec = &mt('No section'); |
|
} |
|
$r->print(&Apache::loncommon::start_data_table_row(). |
|
'<td>'.&Apache::lonlocal::locallocaltime($item).'</td>'. |
|
'<td>'.$courseinfo{'description'}.'</td>'. |
|
'<td>'.$rolename.'</td><td>'.$usec.'</td>'. |
|
&Apache::loncommon::end_data_table_row()); |
|
} |
|
} |
|
} |
|
$r->print(&Apache::loncommon::end_data_table()); |
|
} |
|
return; |
|
} |
|
|
|
sub privileges_info { |
|
my ($which) = @_; |
|
my $output; |
|
|
|
$which ||= $env{'request.role'}; |
|
|
|
foreach my $envkey (sort(keys(%env))) { |
|
next if ($envkey!~/^user\.priv\.\Q$which\E\.(.*)/); |
|
|
|
my $where=$1; |
|
my $ttype; |
|
my $twhere; |
|
my (undef,$tdom,$trest,$tsec)=split(m{/},$where); |
|
if ($trest) { |
|
if ($env{'course.'.$tdom.'_'.$trest.'.description'} eq 'ca') { |
|
$ttype='Construction Space'; |
|
$twhere='User: '.$trest.', Domain: '.$tdom; |
|
} else { |
|
$ttype= &Apache::loncommon::course_type($tdom.'_'.$trest); |
|
$twhere=$env{'course.'.$tdom.'_'.$trest.'.description'}; |
|
if ($tsec) { |
|
my $sec_type = 'Section'; |
|
if (exists($env{"user.role.gr.$where"})) { |
|
$sec_type = 'Group'; |
|
} |
|
$twhere.=' ('.$sec_type.': '.$tsec.')'; |
|
} |
} |
} |
|
} elsif ($tdom) { |
|
$ttype='Domain'; |
|
$twhere=$tdom; |
|
} else { |
|
$ttype='System'; |
|
$twhere='/'; |
} |
} |
if ($output) { |
$output .= "\n<h3>".&mt($ttype).': '.$twhere.'</h3>'."\n<ul>"; |
if ($doheaders > 0) { |
foreach my $priv (sort(split(/:/,$env{$envkey}))) { |
$r->print("<tr bgcolor='#BBffBB'>". |
next if (!$priv); |
"<td align='center' colspan='7'>".&mt($type)."</td>"); |
|
|
my ($prv,$restr)=split(/\&/,$priv); |
|
my $trestr=''; |
|
if ($restr ne 'F') { |
|
$trestr.=' ('. |
|
join(', ', |
|
map { &Apache::lonnet::plaintext($_) } |
|
(split('',$restr))).') '; |
} |
} |
$r->print($output); |
$output .= "\n\t". |
|
'<li>'.&Apache::lonnet::plaintext($prv).$trestr.'</li>'; |
} |
} |
|
$output .= "\n".'</ul>'; |
|
} |
|
return $output; |
|
} |
|
|
|
sub build_roletext { |
|
my ($trolecode,$tdom,$trest,$tstatus,$tryagain,$advanced,$tremark,$tbg,$trole,$twhere,$tpstart,$tpend,$nochoose,$button,$switchserver,$reinit) = @_; |
|
my ($roletext,$roletext_end); |
|
my $is_dc=($trolecode =~ m/^dc\./); |
|
my $rowspan=($is_dc) ? '' |
|
: ' rowspan="2" '; |
|
|
|
unless ($nochoose) { |
|
my $buttonname=$trolecode; |
|
$buttonname=~s/\W//g; |
|
if (!$button) { |
|
if ($switchserver) { |
|
$roletext.='<td'.$rowspan.' class="'.$tbg.'">' |
|
.'<a href="/adm/switchserver?'.$switchserver.'">' |
|
.&mt('Switch Server') |
|
.'</a></td>'; |
|
} else { |
|
$roletext.=('<td'.$rowspan.' class="'.$tbg.'"> </td>'); |
|
} |
|
} elsif ($tstatus eq 'is') { |
|
$roletext.='<td'.$rowspan.' class="'.$tbg.'">'. |
|
'<input name="'.$buttonname.'" type="button" value="'. |
|
&mt('Select').'" onclick="javascript:enterrole(this.form,\''. |
|
$trolecode."','".$buttonname.'\');" /></td>'; |
|
} elsif ($tryagain) { |
|
$roletext.= |
|
'<td'.$rowspan.' class="'.$tbg.'">'. |
|
'<input name="'.$buttonname.'" type="button" value="'. |
|
&mt('Try Selecting Again').'" onclick="javascript:enterrole(this.form,\''. |
|
$trolecode."','".$buttonname.'\');" /></td>'; |
|
} elsif ($advanced) { |
|
$roletext.= |
|
'<td'.$rowspan.' class="'.$tbg.'">'. |
|
'<input name="'.$buttonname.'" type="button" value="'. |
|
&mt('Re-Initialize').'" onclick="javascript:enterrole(this.form,\''. |
|
$trolecode."','".$buttonname.'\');" /></td>'; |
|
} elsif ($reinit) { |
|
$roletext.= |
|
'<td'.$rowspan.' class="'.$tbg.'">'. |
|
'<input name="'.$buttonname.'" type="button" value="'. |
|
&mt('Re-Select').'" onclick="javascript:enterrole(this.form,\''. |
|
$trolecode."','".$buttonname.'\');" /></td>'; |
|
} else { |
|
$roletext.= |
|
'<td'.$rowspan.' class="'.$tbg.'">'. |
|
'<input name="'.$buttonname.'" type="button" value="'. |
|
&mt('Re-Select').'" onclick="javascript:enterrole(this.form,\''. |
|
$trolecode."','".$buttonname.'\');" /></td>'; |
|
} |
|
} |
|
if ($trolecode !~ m/^(dc|ca|au|aa)\./) { |
|
$tremark.=&Apache::lonannounce::showday(time,1, |
|
&Apache::lonannounce::readcalendar($tdom.'_'.$trest)); |
} |
} |
my $tremark=''; |
$roletext.='<td>'.$trole.'</td>' |
my $tfont='#003300'; |
.'<td>'.$twhere.'</td>' |
if ($ENV{'request.role'} eq 'cm') { |
.'<td>'.$tpstart.'</td>' |
$r->print('<tr bgcolor="#11CC55">'); |
.'<td>'.$tpend.'</td>'; |
$tremark=&mt('Currently selected. '); |
if (!$is_dc) { |
$tfont='#002200'; |
$roletext_end = '<td colspan="4">'. |
|
$tremark.' '. |
|
'</td>'; |
|
} |
|
return ($roletext,$roletext_end); |
|
} |
|
|
|
sub check_needs_switchserver { |
|
my ($possiblerole) = @_; |
|
my $needs_switchserver; |
|
my ($role,$where) = split(/\./,$possiblerole,2); |
|
my (undef,$tdom,$twho) = split(/\//,$where); |
|
my ($server_status,$home); |
|
if (($role eq 'ca') || ($role eq 'aa')) { |
|
($server_status,$home) = &check_author_homeserver($twho,$tdom); |
} else { |
} else { |
$r->print('<tr bgcolor="#77FF77">'); |
($server_status,$home) = &check_author_homeserver($env{'user.name'}, |
|
$env{'user.domain'}); |
} |
} |
unless ($nochoose) { |
if ($server_status eq 'switchserver') { |
if ($ENV{'request.role'} ne 'cm') { |
$needs_switchserver = 1; |
$r->print('<td><input type=submit value="'. |
|
&mt('Select').'" name="cm"></td>'); |
|
} else { |
|
$r->print('<td> </td>'); |
|
} |
|
} |
} |
$r->print('<td colspan=5><font color="'.$tfont.'">'.&mt('No role specified'). |
return $needs_switchserver; |
'</font></td><td><font color="'.$tfont.'">'.$tremark. |
} |
' </font></td></tr>'."\n"); |
|
|
|
$r->print('</table>'); |
sub check_author_homeserver { |
unless ($nochoose) { |
my ($uname,$udom)=@_; |
$r->print("</form>\n"); |
if (($uname eq '') || ($udom eq '')) { |
|
return ('fail',''); |
} |
} |
# ------------------------------------------------------------ Privileges Info |
my $home = &Apache::lonnet::homeserver($uname,$udom); |
if (($advanced) && (($ENV{'user.error.msg'}) || ($error))) { |
if (&Apache::lonnet::host_domain($home) ne $udom) { |
$r->print('<hr><h2>Current Privileges</h2>'); |
return ('fail',$home); |
|
} |
|
my @ids=&Apache::lonnet::current_machine_ids(); |
|
if (grep(/^\Q$home\E$/,@ids)) { |
|
return ('ok',$home); |
|
} else { |
|
return ('switchserver',$home); |
|
} |
|
} |
|
|
foreach $envkey (sort keys %ENV) { |
sub check_fordc { |
if ($envkey=~/^user\.priv\.$ENV{'request.role'}\./) { |
my ($dcroles,$then) = @_; |
my $where=$envkey; |
my $numdc = 0; |
$where=~s/^user\.priv\.$ENV{'request.role'}\.//; |
if ($env{'user.adv'}) { |
my $ttype; |
foreach my $envkey (sort keys %env) { |
my $twhere; |
if ($envkey=~/^user\.role\.dc\.\/($match_domain)\/$/) { |
my ($tdom,$trest,$tsec)= |
my $dcdom = $1; |
split(/\//,Apache::lonnet::declutter($where)); |
my $livedc = 1; |
if ($trest) { |
my ($tstart,$tend)=split(/\./,$env{$envkey}); |
if ($ENV{'course.'.$tdom.'_'.$trest.'.description'} eq 'ca') { |
if ($tstart && $tstart>$then) { $livedc = 0; } |
$ttype='Construction Space'; |
if ($tend && $tend <$then) { $livedc = 0; } |
$twhere='User: '.$trest.', Domain: '.$tdom; |
if ($livedc) { |
} else { |
$$dcroles{$dcdom} = $envkey; |
$ttype='Course'; |
$numdc++; |
$twhere=$ENV{'course.'.$tdom.'_'.$trest.'.description'}; |
} |
if ($tsec) { |
} |
$twhere.=' (Section/Group: '.$tsec.')'; |
} |
} |
|
} |
|
} elsif ($tdom) { |
|
$ttype='Domain'; |
|
$twhere=$tdom; |
|
} else { |
|
$ttype='System'; |
|
$twhere='/'; |
|
} |
|
$r->print("\n<h3>".$ttype.': '.$twhere.'</h3><ul>'); |
|
foreach (sort split(/:/,$ENV{$envkey})) { |
|
if ($_) { |
|
my ($prv,$restr)=split(/\&/,$_); |
|
my $trestr=''; |
|
if ($restr ne 'F') { |
|
my $i; |
|
$trestr.=' ('; |
|
for ($i=0;$i<length($restr);$i++) { |
|
$trestr.= |
|
Apache::lonnet::plaintext(substr($restr,$i,1)); |
|
if ($i<length($restr)-1) { $trestr.=', '; } |
|
} |
|
$trestr.=')'; |
|
} |
|
$r->print('<li>'. |
|
Apache::lonnet::plaintext($prv).$trestr. |
|
'</li>'); |
|
} |
|
} |
|
$r->print('</ul>'); |
|
} |
|
} |
|
} |
} |
$r->print(&Apache::lonnet::getannounce()); |
return $numdc; |
if ($advanced) { |
} |
$r->print('<p><small><i>This is LON-CAPA '. |
|
$r->dir_config('lonVersion').'</i><br />'. |
sub adhoc_course_role { |
'<a href="/adm/logout">'.&mt('Logout').'</a></small></p>'); |
my ($then) = @_; |
|
my ($cdom,$cnum); |
|
$cdom = $env{'course.'.$env{'request.course.id'}.'.domain'}; |
|
$cnum = $env{'course.'.$env{'request.course.id'}.'.num'}; |
|
if (&check_forcc($cdom,$cnum,$then)) { |
|
my $setprivs; |
|
if (!defined($env{'user.role.'.$env{'form.switchrole'}})) { |
|
$setprivs = 1; |
|
} else { |
|
my ($start,$end) = split(/\./,$env{'user.role.'.$env{'form.switchrole'}}); |
|
if (($start && ($start>$then || $start == -1)) || |
|
($end && $end<$then)) { |
|
$setprivs = 1; |
|
} |
|
} |
|
if ($setprivs) { |
|
if ($env{'form.switchrole'} =~ m-^(in|ta|ep|ad|st|cr)([\w/]*)\./\Q$cdom\E/\Q$cnum\E/?(\w*)$-) { |
|
my $role = $1; |
|
my $custom_role = $2; |
|
my $usec = $3; |
|
if ($role eq 'cr') { |
|
if ($custom_role =~ m-^/$match_domain/$match_username/\w+$-) { |
|
$role .= $custom_role; |
|
} else { |
|
return; |
|
} |
|
} |
|
my (%userroles,%newrole,%newgroups,%group_privs); |
|
my %cgroups = |
|
&Apache::lonnet::get_active_groups($env{'user.domain'}, |
|
$env{'user.name'},$cdom,$cnum); |
|
foreach my $group (keys(%cgroups)) { |
|
$group_privs{$group} = |
|
$env{'user.priv.cc./'.$cdom.'/'.$cnum.'./'.$cdom.'/'.$cnum.'/'.$group}; |
|
} |
|
$newgroups{'/'.$cdom.'/'.$cnum} = \%group_privs; |
|
my $area = '/'.$cdom.'/'.$cnum; |
|
my $spec = $role.'.'.$area; |
|
if ($usec ne '') { |
|
$spec .= '/'.$usec; |
|
$area .= '/'.$usec; |
|
} |
|
&Apache::lonnet::standard_roleprivs(\%newrole,$role,$cdom,$spec,$cnum,$area); |
|
&Apache::lonnet::set_userprivs(\%userroles,\%newrole,\%newgroups); |
|
my $adhocstart = $then-1; |
|
$userroles{'user.role.'.$spec} = $adhocstart.'.'; |
|
&Apache::lonnet::appenv(\%userroles,[$role,'cm']); |
|
} |
|
} |
} |
} |
$r->print("</body></html>\n"); |
return; |
return OK; |
} |
} |
|
|
sub check_forcc { |
|
my ($cdom,$cnum,$then) = @_; |
|
my $is_cc; |
|
if ($cdom ne '' && $cnum ne '') { |
|
if (&Apache::lonnet::is_course($cdom,$cnum)) { |
|
my $envkey = 'user.role.cc./'.$cdom.'/'.$cnum; |
|
if (defined($env{$envkey})) { |
|
$is_cc = 1; |
|
my ($tstart,$tend)=split(/\./,$env{$envkey}); |
|
if ($tstart && $tstart>$then) { $is_cc = 0; } |
|
if ($tend && $tend <$then) { $is_cc = 0; } |
|
} |
|
} |
|
} |
|
return $is_cc; |
|
} |
|
|
|
sub courselink { |
|
my ($dcdom,$rowtype) = @_; |
|
my $courseform=&Apache::loncommon::selectcourse_link |
|
('rolechoice','dccourse'.$rowtype.'_'.$dcdom, |
|
'dcdomain'.$rowtype.'_'.$dcdom,'coursedesc'.$rowtype.'_'. |
|
$dcdom,$dcdom,undef); |
|
my $hiddenitems = '<input type="hidden" name="dcdomain'.$rowtype.'_'.$dcdom.'" value="'.$dcdom.'" />'. |
|
'<input type="hidden" name="origdom'.$rowtype.'_'.$dcdom.'" value="'.$dcdom.'" />'. |
|
'<input type="hidden" name="dccourse'.$rowtype.'_'.$dcdom.'" value="" />'. |
|
'<input type="hidden" name="coursedesc'.$rowtype.'_'.$dcdom.'" value="" />'; |
|
return $courseform.$hiddenitems; |
|
} |
|
|
|
sub coursepick_jscript { |
|
my %lt = &Apache::lonlocal::texthash( |
|
plsu => "Please use the 'Select Course' link to open a separate pick course window where you may select the course you wish to enter.", |
|
youc => 'You can only use this screen to select courses in the current domain.', |
|
); |
|
my $verify_script = <<"END"; |
|
<script type="text/javascript"> |
|
// <![CDATA[ |
|
function verifyCoursePick(caller) { |
|
var numbutton = getIndex(caller) |
|
var pickedCourse = document.rolechoice.elements[numbutton+4].value |
|
var pickedDomain = document.rolechoice.elements[numbutton+2].value |
|
if (document.rolechoice.elements[numbutton+2].value == document.rolechoice.elements[numbutton+3].value) { |
|
if (pickedCourse != '') { |
|
if (numbutton != -1) { |
|
var courseTarget = "cc./"+pickedDomain+"/"+pickedCourse |
|
document.rolechoice.elements[numbutton+1].name = courseTarget |
|
document.rolechoice.submit() |
|
} |
|
} |
|
else { |
|
alert("$lt{'plsu'}"); |
|
} |
|
} |
|
else { |
|
alert("$lt{'youc'}") |
|
} |
|
} |
|
function getIndex(caller) { |
|
for (var i=0;i<document.rolechoice.elements.length;i++) { |
|
if (document.rolechoice.elements[i] == caller) { |
|
return i; |
|
} |
|
} |
|
return -1; |
|
} |
|
// ]]> |
|
</script> |
|
END |
|
return $verify_script; |
|
} |
|
|
|
sub coauthorlink { |
|
my ($dcdom,$rowtype) = @_; |
|
my $coauthorform=&Apache::loncommon::selectauthor_link('rolechoice',$dcdom); |
|
my $hiddenitems = '<input type="hidden" name="adhoccauname'.$rowtype.'_'.$dcdom.'" value="" />'; |
|
return $coauthorform.$hiddenitems; |
|
} |
|
|
|
sub display_cc_role { |
|
my $rolekey = shift; |
|
my ($roletext,$roletext_end); |
|
my $advanced = $env{'user.adv'}; |
|
my $tryagain = $env{'form.tryagain'}; |
|
unless ($rolekey =~/^error\:/) { |
|
if ($rolekey =~ m-^user\.role.cc\./($match_domain)/($match_courseid)$-) { |
|
my $tcourseid = $1.'_'.$2; |
|
my $trolecode = 'cc./'.$1.'/'.$2; |
|
my $twhere; |
|
my $ttype; |
|
my $tbg='LC_roles_is'; |
|
my %newhash=&Apache::lonnet::coursedescription($tcourseid); |
|
if (%newhash) { |
|
$twhere=$newhash{'description'}. |
|
' <span style="LC_fontsize_small">'. |
|
&Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$2,$1). |
|
'</span>'; |
|
$ttype = $newhash{'type'}; |
|
} else { |
|
$twhere=&mt('Currently not available'); |
|
$env{'course.'.$tcourseid.'.description'}=$twhere; |
|
} |
|
my $trole = &Apache::lonnet::plaintext('cc',$ttype); |
|
$twhere.="<br />".&mt('Domain').":".$1; |
|
($roletext,$roletext_end) = &build_roletext($trolecode,$1,$2,'is',$tryagain,$advanced,'',$tbg,$trole,$twhere,'','','',1,''); |
|
} |
|
} |
|
return ($roletext,$roletext_end); |
|
} |
|
|
|
sub adhoc_roles_row { |
|
my ($dcdom,$rowtype) = @_; |
|
my $output = &Apache::loncommon::continue_data_table_row() |
|
.' <td colspan="5">' |
|
.&mt('[_1]Ad hoc[_2] roles in domain [_3] --' |
|
,'<span class="LC_cusr_emph">','</span>',$dcdom) |
|
.' '; |
|
my $selectcclink = &courselink($dcdom,$rowtype); |
|
my $ccrole = &Apache::lonnet::plaintext('cc'); |
|
my $carole = &Apache::lonnet::plaintext('ca'); |
|
my $selectcalink = &coauthorlink($dcdom,$rowtype); |
|
$output.=$ccrole.': '.$selectcclink |
|
.' | '.$carole.': '.$selectcalink |
|
.&Apache::loncommon::end_data_table_row(); |
|
return $output; |
|
} |
|
|
|
sub recent_filename { |
|
my $area=shift; |
|
return 'nohist_recent_'.&escape($area); |
|
} |
|
|
|
sub courseloadpage { |
|
my ($courseid) = @_; |
|
my $startpage; |
|
my %entry_settings = &Apache::lonnet::get('nohist_whatsnew', |
|
[$courseid.':courseinit']); |
|
my ($tmp) = %entry_settings; |
|
unless ($tmp =~ /^error: 2 /) { |
|
$startpage = $entry_settings{$courseid.':courseinit'}; |
|
} |
|
if ($startpage eq '') { |
|
if (exists($env{'environment.course_init_display'})) { |
|
$startpage = $env{'environment.course_init_display'}; |
|
} |
|
} |
|
return $startpage; |
|
} |
|
|
1; |
1; |
__END__ |
__END__ |