Annotation of loncom/auth/lonroles.pm, revision 1.266
1.1 harris41 1: # The LearningOnline Network with CAPA
2: # User Roles Screen
1.31 www 3: #
1.266 ! droeschl 4: # $Id: lonroles.pm,v 1.265 2012/05/14 04:17:16 raeburn Exp $
1.31 www 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
14: #
15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
1.32 harris41 28: ###
1.22 harris41 29:
1.210 jms 30: =pod
31:
32: =head1 NAME
33:
34: Apache::lonroles - User Roles Screen
35:
36: =head1 SYNOPSIS
37:
38: Invoked by /etc/httpd/conf/srm.conf:
39:
40: <Location /adm/roles>
41: PerlAccessHandler Apache::lonacc
42: SetHandler perl-script
43: PerlHandler Apache::lonroles
44: ErrorDocument 403 /adm/login
45: ErrorDocument 500 /adm/errorhandler
46: </Location>
47:
48: =head1 OVERVIEW
49:
50: =head2 Choosing Roles
51:
52: C<lonroles> is a handler that allows a user to switch roles in
53: mid-session. LON-CAPA attempts to work with "No Role Specified", the
54: default role that a user has before selecting a role, as widely as
55: possible, but certain handlers for example need specification which
56: course they should act on, etc. Both in this scenario, and when the
57: handler determines via C<lonnet>'s C<&allowed> function that a certain
58: action is not allowed, C<lonroles> is used as error handler. This
59: allows the user to select another role which may have permission to do
1.246 droeschl 60: what they were trying to do.
1.210 jms 61:
62: =begin latex
63:
64: \begin{figure}
65: \begin{center}
66: \includegraphics[width=0.45\paperwidth,keepaspectratio]{Sample_Roles_Screen}
67: \caption{\label{Sample_Roles_Screen}Sample Roles Screen}
68: \end{center}
69: \end{figure}
70:
71: =end latex
72:
73: =head2 Role Initialization
74:
75: 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.
76:
77: =head1 INTRODUCTION
78:
79: This module enables a user to select what role he wishes to
80: operate under (instructor, student, teaching assistant, course
81: coordinator, etc). These roles are pre-established by the actions
82: of upper-level users.
83:
84: This is part of the LearningOnline Network with CAPA project
85: described at http://www.lon-capa.org.
86:
87: =head1 HANDLER SUBROUTINE
88:
89: This routine is called by Apache and mod_perl.
90:
91: =over 4
92:
93: =item *
94:
95: Roles Initialization (yes/no)
96:
97: =item *
98:
99: Get Error Message from Environment
100:
101: =item *
102:
103: Who is this?
104:
105: =item *
106:
107: Generate Page Output
108:
109: =item *
110:
111: Choice or no choice
112:
113: =item *
114:
115: Table
116:
117: =item *
118:
119: Privileges
120:
121: =back
122:
123: =cut
124:
125:
1.1 harris41 126: package Apache::lonroles;
127:
128: use strict;
1.118 albertel 129: use Apache::lonnet;
1.7 www 130: use Apache::lonuserstate();
1.1 harris41 131: use Apache::Constants qw(:common);
1.2 www 132: use Apache::File();
1.26 www 133: use Apache::lonmenu;
1.29 albertel 134: use Apache::loncommon;
1.104 raeburn 135: use Apache::lonhtmlcommon;
1.57 www 136: use Apache::lonannounce;
1.72 www 137: use Apache::lonlocal;
1.151 www 138: use Apache::lonpageflip();
1.167 albertel 139: use Apache::lonnavdisplay();
1.241 raeburn 140: use Apache::loncoursequeueadmin;
1.120 albertel 141: use GDBM_File;
1.170 albertel 142: use LONCAPA qw(:DEFAULT :match);
1.201 raeburn 143: use HTML::Entities;
1.149 www 144:
1.1 harris41 145:
1.62 matthew 146: sub redirect_user {
1.245 droeschl 147: my ($r,$title,$url,$msg) = @_;
1.62 matthew 148: $msg = $title if (! defined($msg));
1.73 www 149: &Apache::loncommon::content_type($r,'text/html');
1.62 matthew 150: &Apache::loncommon::no_cache($r);
151: $r->send_http_header;
1.228 bisitz 152:
153: # Breadcrumbs
154: my $brcrum = [{'href' => $url,
155: 'text' => 'Switching Role'},];
1.147 albertel 156: my $start_page = &Apache::loncommon::start_page('Switching Role',undef,
1.228 bisitz 157: {'redirect' => [1,$url],
158: 'bread_crumbs' => $brcrum,});
1.147 albertel 159: my $end_page = &Apache::loncommon::end_page();
160:
1.92 www 161: # Note to style police:
162: # This must only replace the spaces, nothing else, or it bombs elsewhere.
163: $url=~s/ /\%20/g;
1.93 albertel 164: $r->print(<<ENDREDIR);
1.147 albertel 165: $start_page
1.222 bisitz 166: <p>$msg</p>
1.147 albertel 167: $end_page
1.62 matthew 168: ENDREDIR
169: return;
170: }
171:
1.150 www 172: sub error_page {
173: my ($r,$error,$dest)=@_;
174: &Apache::loncommon::content_type($r,'text/html');
175: &Apache::loncommon::no_cache($r);
176: $r->send_http_header;
177: return OK if $r->header_only;
1.228 bisitz 178: # Breadcrumbs
179: my $brcrum = [{'href' => $dest,
180: 'text' => 'Problems during Course Initialization'},];
181: $r->print(&Apache::loncommon::start_page('Problems during Course Initialization',
182: undef,
183: {'bread_crumbs' => $brcrum,})
184: );
185: $r->print(
1.225 bisitz 186: '<script type="text/javascript">'.
187: '// <![CDATA['.
188: &Apache::lonmenu::rawconfig().
189: '// ]]>'.
190: '</script>'.
191: '<p class="LC_error">'.&mt('The following problems occurred:').
1.228 bisitz 192: '<br />'.
1.150 www 193: $error.
1.228 bisitz 194: '</p><br /><a href="'.$dest.'">'.&mt('Continue').'</a>'
195: );
196: $r->print(&Apache::loncommon::end_page());
1.150 www 197: }
198:
1.1 harris41 199: sub handler {
1.10 www 200:
1.1 harris41 201: my $r = shift;
202:
1.6 www 203: my $now=time;
1.118 albertel 204: my $then=$env{'user.login.time'};
1.226 raeburn 205: my $refresh=$env{'user.refresh.time'};
1.260 raeburn 206: my $update=$env{'user.update.time'};
1.226 raeburn 207: if (!$refresh) {
208: $refresh = $then;
209: }
1.260 raeburn 210: if (!$update) {
211: $update = $then;
212: }
213:
214: # -------------------------------------------------------- Check for new roles
215: my $updateresult;
216: if ($env{'form.doupdate'}) {
217: my $show_course=&Apache::loncommon::show_course();
218: my $checkingtxt;
219: if ($show_course) {
220: $checkingtxt = &mt('Checking for new courses ...');
221: } else {
222: $checkingtxt = &mt('Checking for new roles ...');
223: }
1.264 raeburn 224: $updateresult = '<span class="LC_info">'.$checkingtxt.'</span>';
1.260 raeburn 225: $updateresult .= &update_session_roles();
226: &Apache::lonnet::appenv({'user.update.time' => $now});
227: $update = $now;
228: }
229:
1.6 www 230: my $envkey;
1.107 raeburn 231: my %dcroles = ();
1.260 raeburn 232: my $numdc = &check_fordc(\%dcroles,$update,$then);
1.148 albertel 233: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
1.255 raeburn 234: my $loncaparev = $Apache::lonnet::perlvar{'lonVersion'};
1.10 www 235:
1.6 www 236: # ================================================================== Roles Init
1.118 albertel 237: if ($env{'form.selectrole'}) {
1.188 www 238:
239: my $locknum=&Apache::lonnet::get_locks();
240: if ($locknum) { return 409; }
241:
1.134 www 242: if ($env{'form.newrole'}) {
243: $env{'form.'.$env{'form.newrole'}}=1;
244: }
1.118 albertel 245: if ($env{'request.course.id'}) {
1.185 raeburn 246: # Check if user is CC trying to select a course role
247: if ($env{'form.switchrole'}) {
1.252 raeburn 248: my $switch_is_active;
249: if (defined($env{'user.role.'.$env{'form.switchrole'}})) {
250: my ($start,$end) = split(/\./,$env{'user.role.'.$env{'form.switchrole'}});
251: if (!$end || $end > $now) {
1.260 raeburn 252: if (!$start || $start < $update) {
1.252 raeburn 253: $switch_is_active = 1;
254: }
255: }
256: }
257: unless ($switch_is_active) {
1.260 raeburn 258: &adhoc_course_role($refresh,$update,$then);
1.185 raeburn 259: }
260: }
1.118 albertel 261: my %temp=('logout_'.$env{'request.course.id'} => time);
1.33 www 262: &Apache::lonnet::put('email_status',\%temp);
1.118 albertel 263: &Apache::lonnet::delenv('user.state.'.$env{'request.course.id'});
1.100 albertel 264: }
1.186 raeburn 265: &Apache::lonnet::appenv({"request.course.id" => '',
266: "request.course.fn" => '',
267: "request.course.uri" => '',
268: "request.course.sec" => '',
269: "request.role" => 'cm',
270: "request.role.adv" => $env{'user.adv'},
271: "request.role.domain" => $env{'user.domain'}});
1.182 www 272: # Check if user is a DC trying to enter a course or author space and needs privs to be created
1.107 raeburn 273: if ($numdc > 0) {
1.118 albertel 274: foreach my $envkey (keys %env) {
1.240 raeburn 275: # Is this an ad-hoc Coordinator role?
276: if (my ($ccrole,$domain,$coursenum) =
277: ($envkey =~ m-^form\.(cc|co)\./($match_domain)/($match_courseid)$-)) {
1.146 raeburn 278: if ($dcroles{$domain}) {
1.218 raeburn 279: &Apache::lonnet::check_adhoc_privs($domain,$coursenum,
1.260 raeburn 280: $update,$refresh,$now,$ccrole);
1.182 www 281: }
282: last;
283: }
1.193 raeburn 284: # Is this an ad-hoc CA-role?
1.183 www 285: if (my ($domain,$user) =
286: ($envkey =~ m-^form\.ca\./($match_domain)/($match_username)$-)) {
1.206 raeburn 287: if (($domain eq $env{'user.domain'}) && ($user eq $env{'user.name'})) {
288: delete($env{$envkey});
289: $env{'form.au./'.$domain.'/'} = 1;
290: my ($server_status,$home) = &check_author_homeserver($user,$domain);
291: if ($server_status eq 'switchserver') {
292: my $trolecode = 'au./'.$domain.'/';
1.248 raeburn 293: my $switchserver = '/adm/switchserver?otherserver='.$home.'&role='.$trolecode;
1.206 raeburn 294: $r->internal_redirect($switchserver);
295: }
296: last;
297: }
298: if (my ($castart,$caend) = ($env{'user.role.ca./'.$domain.'/'.$user} =~ /^(\d*)\.(\d*)$/)) {
299: if (((($castart) && ($castart < $now)) || !$castart) &&
300: ((!$caend) || (($caend) && ($caend > $now)))) {
301: my ($server_status,$home) = &check_author_homeserver($user,$domain);
302: if ($server_status eq 'switchserver') {
303: my $trolecode = 'ca./'.$domain.'/'.$user;
1.248 raeburn 304: my $switchserver = '/adm/switchserver?otherserver='.$home.'&role='.$trolecode;
1.206 raeburn 305: $r->internal_redirect($switchserver);
306: }
307: last;
308: }
309: }
310: # Check if author blocked ca-access
1.190 www 311: my %blocked=&Apache::lonnet::get('environment',['domcoord.author'],$domain,$user);
312: if ($blocked{'domcoord.author'} eq 'blocked') {
1.206 raeburn 313: delete($env{$envkey});
314: $env{'user.error.msg'}=':::1:User '.$user.' in domain '.$domain.' blocked domain coordinator access';
315: last;
1.190 www 316: }
1.193 raeburn 317: if ($dcroles{$domain}) {
318: my ($server_status,$home) = &check_author_homeserver($user,$domain);
319: if (($server_status eq 'ok') || ($server_status eq 'switchserver')) {
1.260 raeburn 320: &Apache::lonnet::check_adhoc_privs($domain,$user,$update,
1.230 raeburn 321: $refresh,$now,'ca');
1.193 raeburn 322: if ($server_status eq 'switchserver') {
323: my $trolecode = 'ca./'.$domain.'/'.$user;
324: my $switchserver = '/adm/switchserver?'
1.248 raeburn 325: .'otherserver='.$home.'&role='.$trolecode;
1.193 raeburn 326: $r->internal_redirect($switchserver);
327: }
328: } else {
329: delete($env{$envkey});
330: }
1.183 www 331: } else {
332: delete($env{$envkey});
1.182 www 333: }
334: last;
335: }
1.107 raeburn 336: }
337: }
338:
1.118 albertel 339: foreach $envkey (keys %env) {
1.40 matthew 340: next if ($envkey!~/^user\.role\./);
1.102 raeburn 341: my ($where,$trolecode,$role,$tstatus,$tend,$tstart);
1.260 raeburn 342: &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,
1.218 raeburn 343: \$trolecode,\$tstatus,\$tstart,\$tend);
1.118 albertel 344: if ($env{'form.'.$trolecode}) {
1.55 albertel 345: if ($tstatus eq 'is') {
346: $where=~s/^\///;
347: my ($cdom,$cnum,$csec)=split(/\//,$where);
1.255 raeburn 348: if (($cnum) && ($role ne 'ca') && ($role ne 'aa')) {
349: my $home = $env{'course.'.$cdom.'_'.$cnum.'.home'};
350: my @ids = &Apache::lonnet::current_machine_ids();
351: unless ($loncaparev eq '' && $home && grep(/^\Q$home\E$/,@ids)) {
352: my %curr_reqd_hash = &Apache::lonnet::userenvironment($cdom,$cnum,'internal.releaserequired');
1.256 raeburn 353: if ($curr_reqd_hash{'internal.releaserequired'} ne '') {
1.255 raeburn 354: my ($switchserver,$switchwarning) =
355: &check_release_required($loncaparev,$cdom.'_'.$cnum,$trolecode,$curr_reqd_hash{'internal.releaserequired'});
1.256 raeburn 356: if ($switchwarning ne '' || $switchserver ne '') {
357: &Apache::loncommon::content_type($r,'text/html');
358: &Apache::loncommon::no_cache($r);
359: $r->send_http_header;
360: my $end_page=&Apache::loncommon::end_page();
361: $r->print(&Apache::loncommon::start_page('Selected course unavailable on this server').
362: '<p class="LC_warning">');
363: if ($switchwarning) {
364: $r->print($switchwarning.'<br /><a href="/adm/roles">');
365: if (&Apache::loncommon::show_course()) {
366: $r->print(&mt('Display courses'));
367: } else {
368: $r->print(&mt('Display roles'));
369: }
370: $r->print('</a>');
371: } elsif ($switchserver) {
372: $r->print(&mt('This course requires a newer version of LON-CAPA than is installed on this server.').
373: '<br />'.
374: '<a href="/adm/switchserver?'.$switchserver.'">'.
375: &mt('Switch Server').
376: '</a>');
1.255 raeburn 377: }
1.256 raeburn 378: $r->print('</p>'.&Apache::loncommon::end_page());
379: return OK;
1.255 raeburn 380: }
381: }
382: }
383: }
1.137 raeburn 384: # check for course groups
385: my %coursegroups = &Apache::lonnet::get_active_groups(
386: $env{'user.domain'},$env{'user.name'},$cdom, $cnum);
387: my $cgrps = join(':',keys(%coursegroups));
388:
1.111 albertel 389: # store role if recent_role list being kept
1.118 albertel 390: if ($env{'environment.recentroles'}) {
1.158 albertel 391: my %frozen_roles =
392: &Apache::lonhtmlcommon::get_recent_frozen('roles',$env{'environment.recentrolesn'});
1.111 albertel 393: &Apache::lonhtmlcommon::store_recent('roles',
1.158 albertel 394: $trolecode,' ',$frozen_roles{$trolecode});
1.111 albertel 395: }
396:
397:
1.53 www 398: # check for keyed access
1.55 albertel 399: if (($role eq 'st') &&
1.118 albertel 400: ($env{'course.'.$cdom.'_'.$cnum.'.keyaccess'} eq 'yes')) {
1.89 www 401: # who is key authority?
402: my $authdom=$cdom;
403: my $authnum=$cnum;
1.118 albertel 404: if ($env{'course.'.$cdom.'_'.$cnum.'.keyauth'}) {
1.89 www 405: ($authnum,$authdom)=
1.172 albertel 406: split(/:/,$env{'course.'.$cdom.'_'.$cnum.'.keyauth'});
1.89 www 407: }
408: # check with key authority
409: unless (&Apache::lonnet::validate_access_key(
1.118 albertel 410: $env{'environment.key.'.$cdom.'_'.$cnum},
1.89 www 411: $authdom,$authnum)) {
1.53 www 412: # there is no valid key
1.118 albertel 413: if ($env{'form.newkey'}) {
1.53 www 414: # student attempts to register a new key
1.89 www 415: &Apache::loncommon::content_type($r,'text/html');
416: &Apache::loncommon::no_cache($r);
417: $r->send_http_header;
418: my $swinfo=&Apache::lonmenu::rawconfig();
1.147 albertel 419: my $start_page=&Apache::loncommon::start_page
1.89 www 420: ('Verifying Access Key to Unlock this Course');
1.147 albertel 421: my $end_page=&Apache::loncommon::end_page();
1.90 www 422: my $buttontext=&mt('Enter Course');
423: my $message=&mt('Successfully registered key');
424: my $assignresult=
425: &Apache::lonnet::assign_access_key(
1.118 albertel 426: $env{'form.newkey'},
1.90 www 427: $authdom,$authnum,
1.91 www 428: $cdom,$cnum,
1.118 albertel 429: $env{'user.domain'},
430: $env{'user.name'},
1.204 bisitz 431: &mt('Assigned from [_1] at [_2] for [_3]'
432: ,$ENV{'REMOTE_ADDR'}
433: ,&Apache::lonlocal::locallocaltime()
434: ,$trolecode)
435: );
1.90 www 436: unless ($assignresult eq 'ok') {
437: $assignresult=~s/^error\:\s*//;
438: $message=&mt($assignresult).
439: '<br /><a href="/adm/logout">'.
1.89 www 440: &mt('Logout').'</a>';
1.90 www 441: $buttontext=&mt('Re-Enter Key');
442: }
1.89 www 443: $r->print(<<ENDENTEREDKEY);
1.147 albertel 444: $start_page
1.179 raeburn 445: <script type="text/javascript">
1.225 bisitz 446: // <![CDATA[
1.89 www 447: $swinfo
1.225 bisitz 448: // ]]>
1.89 www 449: </script>
1.225 bisitz 450: <form action="" method="post">
1.89 www 451: <input type="hidden" name="selectrole" value="1" />
452: <input type="hidden" name="$trolecode" value="1" />
1.211 tempelho 453: <span class="LC_fontsize_large">$message</span><br />
1.89 www 454: <input type="submit" value="$buttontext" />
455: </form>
1.147 albertel 456: $end_page
1.89 www 457: ENDENTEREDKEY
458: return OK;
1.55 albertel 459: } else {
1.53 www 460: # print form to enter a new key
1.73 www 461: &Apache::loncommon::content_type($r,'text/html');
1.55 albertel 462: &Apache::loncommon::no_cache($r);
463: $r->send_http_header;
464: my $swinfo=&Apache::lonmenu::rawconfig();
1.147 albertel 465: my $start_page=&Apache::loncommon::start_page
1.55 albertel 466: ('Enter Access Key to Unlock this Course');
1.147 albertel 467: my $end_page=&Apache::loncommon::end_page();
1.55 albertel 468: $r->print(<<ENDENTERKEY);
1.147 albertel 469: $start_page
1.179 raeburn 470: <script type="text/javascript">
1.225 bisitz 471: // <![CDATA[
1.53 www 472: $swinfo
1.225 bisitz 473: // ]]>
1.53 www 474: </script>
1.225 bisitz 475: <form action="" method="post">
1.89 www 476: <input type="hidden" name="selectrole" value="1" />
477: <input type="hidden" name="$trolecode" value="1" />
1.118 albertel 478: <input type="text" size="20" name="newkey" value="$env{'form.newkey'}" />
1.53 www 479: <input type="submit" value="Enter key" />
480: </form>
1.147 albertel 481: $end_page
1.53 www 482: ENDENTERKEY
1.55 albertel 483: return OK;
484: }
485: }
486: }
1.118 albertel 487: &Apache::lonnet::log($env{'user.domain'},
488: $env{'user.name'},
489: $env{'user.home'},
1.87 www 490: "Role ".$trolecode);
1.101 albertel 491:
1.56 www 492: &Apache::lonnet::appenv(
1.186 raeburn 493: {'request.role' => $trolecode,
494: 'request.role.domain' => $cdom,
495: 'request.course.sec' => $csec,
496: 'request.course.groups' => $cgrps});
1.101 albertel 497: my $tadv=0;
1.62 matthew 498:
1.125 www 499: if (($cnum) && ($role ne 'ca') && ($role ne 'aa')) {
1.152 raeburn 500: my $msg;
1.55 albertel 501: my ($furl,$ferr)=
502: &Apache::lonuserstate::readmap($cdom.'/'.$cnum);
1.118 albertel 503: if (($env{'form.orgurl'}) &&
504: ($env{'form.orgurl'}!~/^\/adm\/flip/)) {
505: my $dest=$env{'form.orgurl'};
1.219 raeburn 506: if ($env{'form.symb'}) {
507: if ($dest =~ /\?/) {
508: $dest .= '&';
509: } else {
510: $dest .= '?'
511: }
512: $dest .= 'symb='.$env{'form.symb'};
513: }
1.117 albertel 514: if (&Apache::lonnet::allowed('adv') eq 'F') { $tadv=1; }
1.186 raeburn 515: &Apache::lonnet::appenv({'request.role.adv'=>$tadv});
1.150 www 516: if (($ferr) && ($tadv)) {
517: &error_page($r,$ferr,$dest);
518: } else {
1.255 raeburn 519: if ($dest =~ m{^/adm/coursedocs\?folderpath}) {
520: if ($env{'request.course.id'} eq $cdom.'_'.$cnum) {
521: my $chome = &Apache::lonnet::homeserver($cnum,$cdom);
522: &update_content_constraints($cdom,$cnum,$chome,$cdom.'_'.$cnum);
523: }
524: }
1.150 www 525: $r->internal_redirect($dest);
526: }
1.55 albertel 527: return OK;
528: } else {
1.155 albertel 529: if (!$env{'request.course.id'}) {
1.55 albertel 530: &Apache::lonnet::appenv(
1.186 raeburn 531: {"request.course.id" => $cdom.'_'.$cnum});
1.61 www 532: $furl='/adm/roles?tryagain=1';
1.221 bisitz 533: $msg='<p><span class="LC_error">'
534: .&mt('Could not initialize [_1] at this time.',
535: $env{'course.'.$cdom.'_'.$cnum.'.description'})
536: .'</span></p>'
537: .'<p>'.&mt('Please try again.').'</p>'
538: .'<p>'.$ferr.'</p>';
1.55 albertel 539: }
1.117 albertel 540: if (&Apache::lonnet::allowed('adv') eq 'F') { $tadv=1; }
1.186 raeburn 541: &Apache::lonnet::appenv({'request.role.adv'=>$tadv});
1.152 raeburn 542:
1.150 www 543: if (($ferr) && ($tadv)) {
544: &error_page($r,$ferr,$furl);
545: } else {
546: # Check to see if the user is a CC entering a course
547: # for the first time
548: my (undef, undef, $role, $courseid) = split(/\./, $envkey);
549: if (substr($courseid, 0, 1) eq '/') {
550: $courseid = substr($courseid, 1);
551: }
552: $courseid =~ s/\//_/;
1.240 raeburn 553: if ((($role eq 'cc') || ($role eq 'co'))
554: && ($env{'course.' . $courseid .'.course.helper.not.run'})) {
1.150 www 555: $furl = "/adm/helper/course.initialization.helper";
556: # Send the user to the course they selected
557: } elsif ($env{'request.course.id'}) {
1.185 raeburn 558: if ($env{'form.destinationurl'}) {
559: my $dest = $env{'form.destinationurl'};
1.203 raeburn 560: if ($env{'form.destsymb'} ne '') {
561: my $esc_symb = &HTML::Entities::encode($env{'form.destsymb'},'"<>&');
562: $dest .= '?symb='.$esc_symb;
563: }
1.245 droeschl 564: &redirect_user($r, &mt('Entering [_1]',
565: $env{'course.'.$courseid.'.description'}),
566: $dest, $msg);
1.185 raeburn 567: return OK;
568: }
1.150 www 569: if (&Apache::lonnet::allowed('whn',
570: $env{'request.course.id'})
571: || &Apache::lonnet::allowed('whn',
572: $env{'request.course.id'}.'/'
573: .$env{'request.course.sec'})
574: ) {
575: my $startpage = &courseloadpage($courseid);
576: unless ($startpage eq 'firstres') {
1.204 bisitz 577: $msg = &mt('Entering [_1] ...',
1.162 albertel 578: $env{'course.'.$courseid.'.description'});
1.245 droeschl 579: &redirect_user($r, &mt('New in course'),
580: '/adm/whatsnew?refpage=start', $msg);
1.150 www 581: return OK;
582: }
583: }
584: }
1.151 www 585: # Are we allowed to look at the first resource?
1.169 albertel 586: if ($furl !~ m|^/adm/|) {
1.151 www 587: # Guess not ...
588: $furl=&Apache::lonpageflip::first_accessible_resource();
589: }
1.162 albertel 590: $msg = &mt('Entering [_1] ...',
591: $env{'course.'.$courseid.'.description'});
1.245 droeschl 592: &redirect_user($r, &mt('Entering [_1]',
593: $env{'course.'.$courseid.'.description'}),
594: $furl, $msg);
1.58 bowersj2 595: }
1.124 albertel 596: return OK;
1.55 albertel 597: }
598: }
1.62 matthew 599: #
600: # Send the user to the construction space they selected
1.125 www 601: if ($role =~ /^(au|ca|aa)$/) {
1.62 matthew 602: my $redirect_url = '/priv/';
603: if ($role eq 'au') {
1.262 www 604: $redirect_url.=$env{'user.domain'}.'/'.$env{'user.name'};
1.62 matthew 605: } else {
1.263 www 606: $redirect_url .= $where;
1.62 matthew 607: }
608: $redirect_url .= '/';
1.78 sakharuk 609: &redirect_user($r,&mt('Entering Construction Space'),
1.62 matthew 610: $redirect_url);
611: return OK;
612: }
1.104 raeburn 613: if ($role eq 'dc') {
1.108 raeburn 614: my $redirect_url = '/adm/menu/';
615: &redirect_user($r,&mt('Loading Domain Coordinator Menu'),
1.104 raeburn 616: $redirect_url);
1.108 raeburn 617: return OK;
1.104 raeburn 618: }
1.220 raeburn 619: if ($role eq 'sc') {
620: my $redirect_url = '/adm/grades?command=scantronupload';
621: &redirect_user($r,&mt('Loading Data Upload Page'),
622: $redirect_url);
623: return OK;
624: }
1.55 albertel 625: }
626: }
1.6 www 627: }
1.40 matthew 628: }
1.44 www 629:
1.10 www 630:
1.6 www 631: # =============================================================== No Roles Init
1.10 www 632:
1.73 www 633: &Apache::loncommon::content_type($r,'text/html');
1.30 albertel 634: &Apache::loncommon::no_cache($r);
1.10 www 635: $r->send_http_header;
636: return OK if $r->header_only;
637:
1.224 raeburn 638: my $crumbtext = 'User Roles';
639: my $pagetitle = 'My Roles';
640: my $recent = &mt('Recent Roles');
641: my $show_course=&Apache::loncommon::show_course();
642: if ($show_course) {
643: $crumbtext = 'Courses';
644: $pagetitle = 'My Courses';
645: $recent = &mt('Recent Courses');
646: }
647: my $brcrum =[{href=>"/adm/roles",text=>$crumbtext}];
1.52 www 648: my $swinfo=&Apache::lonmenu::rawconfig();
1.224 raeburn 649: my $start_page=&Apache::loncommon::start_page($pagetitle,undef,{bread_crumbs=>$brcrum});
1.134 www 650: my $standby=&mt('Role selected. Please stand by.');
1.135 albertel 651: $standby=~s/\n/\\n/g;
1.184 raeburn 652: 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 />';
1.163 www 653:
1.10 www 654: $r->print(<<ENDHEADER);
1.147 albertel 655: $start_page
1.163 www 656: <br />
1.179 raeburn 657: <noscript>
658: $noscript
659: </noscript>
660: <script type="text/javascript">
1.225 bisitz 661: // <![CDATA[
1.26 www 662: $swinfo
663: window.focus();
1.134 www 664:
665: active=true;
666:
667: function enterrole (thisform,rolecode,buttonname) {
668: if (active) {
669: active=false;
670: document.title='$standby';
671: window.status='$standby';
672: thisform.newrole.value=rolecode;
673: thisform.submit();
674: } else {
675: alert('$standby');
1.260 raeburn 676: }
677: }
678:
679: function setToUpdate(thisform) {
680: thisform.doupdate.value='1';
681: thisform.selectrole.value='';
682: thisform.submit();
1.134 www 683: }
1.260 raeburn 684:
1.225 bisitz 685: // ]]>
1.26 www 686: </script>
1.10 www 687: ENDHEADER
1.6 www 688:
1.2 www 689: # ------------------------------------------ Get Error Message from Environment
690:
1.118 albertel 691: my ($fn,$priv,$nochoose,$error,$msg)=split(/:/,$env{'user.error.msg'});
692: if ($env{'user.error.msg'}) {
1.55 albertel 693: $r->log_reason(
1.118 albertel 694: "$msg for $env{'user.name'} domain $env{'user.domain'} access $priv",$fn);
1.12 www 695: }
1.1 harris41 696:
1.61 www 697: # ------------------------------------------------- Can this user re-init, etc?
1.6 www 698:
1.118 albertel 699: my $advanced=$env{'user.adv'};
1.61 www 700: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['tryagain']);
1.118 albertel 701: my $tryagain=$env{'form.tryagain'};
1.209 raeburn 702: my $reinit=$env{'user.reinit'};
703: delete $env{'user.reinit'};
1.6 www 704:
1.2 www 705: # -------------------------------------------------------- Generate Page Output
1.6 www 706: # --------------------------------------------------------------- Error Header?
1.2 www 707: if ($error) {
1.187 bisitz 708: $r->print("<h1>".&mt('LON-CAPA Access Control')."</h1>");
1.174 albertel 709: $r->print("<!-- LONCAPAACCESSCONTROLERRORSCREEN --><hr /><pre>");
710: if ($priv ne '') {
1.187 bisitz 711: $r->print(&mt('Access : ').&Apache::lonnet::plaintext($priv)."\n");
1.174 albertel 712: }
713: if ($fn ne '') {
1.187 bisitz 714: $r->print(&mt('Resource: ').&Apache::lonenc::check_encrypt($fn)."\n");
1.174 albertel 715: }
716: if ($msg ne '') {
1.187 bisitz 717: $r->print(&mt('Action : ').$msg."\n");
1.174 albertel 718: }
719: $r->print("</pre><hr />");
1.120 albertel 720: my $url=$fn;
721: my $last;
722: if (tie(my %hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db',
723: &GDBM_READER(),0640)) {
724: $last=$hash{'last_known'};
725: untie(%hash);
726: }
1.149 www 727: if ($last) { $fn.='?symb='.&escape($last); }
1.120 albertel 728:
729: &Apache::londocs::changewarning($r,undef,'You have modified your course recently, [_1] may fix this access problem.',
730: &Apache::lonenc::check_encrypt($fn));
1.2 www 731: } else {
1.118 albertel 732: if ($env{'user.error.msg'}) {
1.209 raeburn 733: if ($reinit) {
734: $r->print(
735: '<h3><span class="LC_error">'.
1.234 raeburn 736: &mt('As your session file for the course or community has expired, you will need to re-select it.').'</span></h3>');
1.209 raeburn 737: } else {
738: $r->print(
1.157 albertel 739: '<h3><span class="LC_error">'.
1.235 bisitz 740: &mt('You need to choose another user role or enter a specific course or community for this function.').
741: '</span></h3>');
1.209 raeburn 742: }
743: }
1.2 www 744: }
745: if ($nochoose) {
1.177 www 746: $r->print("<h2>".&mt('Sorry ...')."</h2>\n<span class='LC_error'>".
747: &mt('This action is currently not authorized.').'</span>'.
1.150 www 748: &Apache::loncommon::end_page());
749: return OK;
1.6 www 750: } else {
1.260 raeburn 751: $r->print($updateresult);
1.18 www 752: if (($ENV{'REDIRECT_QUERY_STRING'}) && ($fn)) {
753: $fn.='?'.$ENV{'REDIRECT_QUERY_STRING'};
1.6 www 754: }
1.84 www 755: $r->print('<form method="post" name="rolechoice" action="'.(($fn)?$fn:$r->uri).'">');
1.116 albertel 756: $r->print('<input type="hidden" name="orgurl" value="'.$fn.'" />');
757: $r->print('<input type="hidden" name="selectrole" value="1" />');
1.134 www 758: $r->print('<input type="hidden" name="newrole" value="" />');
1.6 www 759: }
1.259 raeburn 760: $r->rflush();
1.226 raeburn 761:
762: my (%roletext,%sortrole,%roleclass,%futureroles,%timezones);
763: my ($countactive,$countfuture,$inrole,$possiblerole) =
1.260 raeburn 764: &gather_roles($update,$refresh,$now,$reinit,$nochoose,\%roletext,\%sortrole,\%roleclass,
1.254 raeburn 765: \%futureroles,\%timezones,$loncaparev);
1.226 raeburn 766: $refresh = $now;
767: &Apache::lonnet::appenv({'user.refresh.time' => $refresh});
1.260 raeburn 768: my $updatebutton = &mt('Check for role changes');
769: my $show_course=&Apache::loncommon::show_course();
770: if ($show_course) {
771: $updatebutton = &mt('Check for new courses');
772: }
773: my $do_update;
774: unless (($env{'form.source'} eq 'login') || ($env{'form.doupdate'})) {
775: $do_update = '<input type="hidden" name="doupdate" value="" />'.
776: '<input type="button" name="update" value="'.
777: $updatebutton.'" onclick="javascript:setToUpdate(this.form)" />';
778: }
1.196 raeburn 779: if ($env{'user.adv'}) {
1.260 raeburn 780: my $showall = '<label><input type="checkbox" name="showall"';
781: if ($env{'form.showall'}) {
782: $showall .= ' checked="checked" ';
783: }
1.264 raeburn 784: $showall .= ' />'.&mt('Show all roles').'</label> '.
1.260 raeburn 785: '<input type="submit" value="'.&mt('Update display').'" />';
786: if ($do_update) {
787: $r->print('<div class="LC_left_float"><fieldset>'.
788: '<legend>'. &mt('Display').'</legend>'.
789: $showall.'</fieldset></div>'.
790: '<div class="LC_left_float"><fieldset><legend>'.
791: &mt('Changes?').'</legend>'.
792: $do_update.'</fieldset></div><br clear="all" />');
793: } else {
794: $r->print($showall);
795: }
1.196 raeburn 796: } else {
1.260 raeburn 797: $r->print('<p>'.$do_update.'</p>');
1.196 raeburn 798: if ($countactive > 0) {
1.241 raeburn 799: $r->print(&Apache::loncoursequeueadmin::queued_selfenrollment());
1.196 raeburn 800: my $domdesc = &Apache::lonnet::domain($env{'user.domain'},'description');
1.201 raeburn 801: my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&');
1.233 bisitz 802: $r->print(
803: '<p>'
804: .&mt('[_1]Visit the [_2]Course/Community Catalog[_3]'
805: .' to view all [_4] LON-CAPA courses and communities.'
806: ,'<b>'
807: ,'<a href="/adm/coursecatalog?showdom='.$esc_dom.'">'
808: ,'</a></b>',$domdesc)
809: .'<br />'
1.235 bisitz 810: .&mt('If a course or community is [_1]not[_2] in your list of current courses and communities below,'
1.233 bisitz 811: .' you may be able to enroll if self-enrollment is permitted.'
812: ,'<b>','</b>')
813: .'</p>'
814: );
1.196 raeburn 815: }
816: }
817:
1.84 www 818: # No active roles
819: if ($countactive==0) {
820: if ($inrole) {
1.234 raeburn 821: $r->print('<h2>'.&mt('Currently no additional roles, courses or communities').'</h2>');
1.84 www 822: } else {
1.234 raeburn 823: $r->print('<h2>'.&mt('Currently no active roles, courses or communities').'</h2>');
1.84 www 824: }
1.191 raeburn 825: &findcourse_advice($r);
1.234 raeburn 826: &requestcourse_advice($r);
1.191 raeburn 827: $r->print('</form>');
828: if ($countfuture) {
829: $r->print(&mt('The following [quant,_1,role,roles] will become active in the future:',$countfuture));
830: my $doheaders = &roletable_headers($r,\%roleclass,\%sortrole,
831: $nochoose);
832: &print_rolerows($r,$doheaders,\%roleclass,\%sortrole,\%dcroles,
833: \%roletext);
834: my $tremark='';
1.212 bisitz 835: my $tbg;
1.191 raeburn 836: if ($env{'request.role'} eq 'cm') {
1.212 bisitz 837: $tbg="LC_roles_selected";
1.204 bisitz 838: $tremark=&mt('Currently selected.').' ';
1.191 raeburn 839: } else {
1.212 bisitz 840: $tbg="LC_roles_is";
1.191 raeburn 841: }
1.212 bisitz 842: $r->print(&Apache::loncommon::start_data_table_row()
843: .'<td class="'.$tbg.'"> </td>'
844: .'<td colspan="3">'
845: .&mt('No role specified')
846: .'</td>'
847: .'<td>'.$tremark.' </td>'
848: .&Apache::loncommon::end_data_table_row()
849: );
1.191 raeburn 850:
1.212 bisitz 851: $r->print(&Apache::loncommon::end_data_table());
1.191 raeburn 852: }
853: $r->print(&Apache::loncommon::end_page());
1.84 www 854: return OK;
855: }
856: # ----------------------------------------------------------------------- Table
1.247 raeburn 857:
858: if ($numdc > 0) {
859: $r->print(&coursepick_jscript());
860: $r->print(&Apache::loncommon::coursebrowser_javascript().
861: &Apache::loncommon::authorbrowser_javascript());
862: }
863:
1.224 raeburn 864: unless ((!&Apache::loncommon::show_course()) || ($nochoose) || ($countactive==1)) {
1.173 albertel 865: $r->print("<h2>".&mt('Select a Course to Enter')."</h2>\n");
1.84 www 866: }
1.229 raeburn 867: if ($env{'form.destinationurl'}) {
868: $r->print('<input type="hidden" name="destinationurl" value="'.
869: $env{'form.destinationurl'}.'" />');
870: if ($env{'form.destsymb'} ne '') {
871: $r->print('<input type="hidden" name="destsymb" value="'.
872: $env{'form.destsymb'}.'" />');
873: }
874: }
1.247 raeburn 875:
1.191 raeburn 876: my $doheaders = &roletable_headers($r,\%roleclass,\%sortrole,$nochoose);
1.118 albertel 877: if ($env{'environment.recentroles'}) {
1.111 albertel 878: my %recent_roles =
1.118 albertel 879: &Apache::lonhtmlcommon::get_recent('roles',$env{'environment.recentrolesn'});
1.111 albertel 880: my $output='';
1.247 raeburn 881: foreach my $role (sort(keys(%recent_roles))) {
882: if (ref($roletext{'user.role.'.$role}) eq 'ARRAY') {
1.223 raeburn 883: $output.= &Apache::loncommon::start_data_table_row().
1.247 raeburn 884: $roletext{'user.role.'.$role}->[0].
1.223 raeburn 885: &Apache::loncommon::end_data_table_row();
1.249 raeburn 886: if ($roletext{'user.role.'.$role}->[1] ne '') {
887: $output .= &Apache::loncommon::continue_data_table_row().
888: $roletext{'user.role.'.$role}->[1].
889: &Apache::loncommon::end_data_table_row();
890: }
1.247 raeburn 891: if ($role =~ m{dc\./($match_domain)/}
1.170 albertel 892: && $dcroles{$1}) {
1.192 raeburn 893: $output .= &adhoc_roles_row($1,'recent');
1.133 albertel 894: }
1.113 raeburn 895: } elsif ($numdc > 0) {
1.247 raeburn 896: unless ($role =~/^error\:/) {
1.249 raeburn 897: my ($roletext,$role_text_end) = &display_cc_role('user.role.'.$role);
1.259 raeburn 898: if ($roletext) {
899: $output.= &Apache::loncommon::start_data_table_row().
900: $roletext.
901: &Apache::loncommon::end_data_table_row();
902: if ($role_text_end) {
903: $output .= &Apache::loncommon::continue_data_table_row().
904: $role_text_end.
905: &Apache::loncommon::end_data_table_row();
906: }
907: }
1.113 raeburn 908: }
1.247 raeburn 909: }
1.111 albertel 910: }
911: if ($output) {
1.212 bisitz 912: $r->print(&Apache::loncommon::start_data_table_empty_row()
913: .'<td align="center" colspan="5">'
1.224 raeburn 914: .$recent
1.212 bisitz 915: .'</td>'
916: .&Apache::loncommon::end_data_table_empty_row()
917: );
1.111 albertel 918: $r->print($output);
1.114 raeburn 919: $doheaders ++;
1.111 albertel 920: }
921: }
1.191 raeburn 922: &print_rolerows($r,$doheaders,\%roleclass,\%sortrole,\%dcroles,\%roletext);
1.202 raeburn 923: if ($countactive > 1) {
924: my $tremark='';
1.212 bisitz 925: my $tbg;
1.202 raeburn 926: if ($env{'request.role'} eq 'cm') {
1.212 bisitz 927: $tbg="LC_roles_selected";
1.204 bisitz 928: $tremark=&mt('Currently selected.').' ';
1.202 raeburn 929: } else {
1.212 bisitz 930: $tbg="LC_roles_is";
1.202 raeburn 931: }
1.212 bisitz 932: $r->print(&Apache::loncommon::start_data_table_row());
1.202 raeburn 933: unless ($nochoose) {
934: if ($env{'request.role'} ne 'cm') {
1.212 bisitz 935: $r->print('<td class="'.$tbg.'"><input type="submit" value="'.
1.202 raeburn 936: &mt('Select').'" name="cm" /></td>');
937: } else {
1.212 bisitz 938: $r->print('<td class="'.$tbg.'"> </td>');
1.202 raeburn 939: }
940: }
1.212 bisitz 941: $r->print('<td colspan="3">'
942: .&mt('No role specified')
943: .'</td>'
944: .'<td>'.$tremark.' </td>'
945: .&Apache::loncommon::end_data_table_row()
946: );
1.202 raeburn 947: }
1.212 bisitz 948: $r->print(&Apache::loncommon::end_data_table());
1.4 www 949: unless ($nochoose) {
950: $r->print("</form>\n");
951: }
1.22 harris41 952: # ------------------------------------------------------------ Privileges Info
1.118 albertel 953: if (($advanced) && (($env{'user.error.msg'}) || ($error))) {
1.212 bisitz 954: $r->print('<hr /><h2>'.&mt('Current Privileges').'</h2>');
1.175 albertel 955: $r->print(&privileges_info());
1.4 www 956: }
1.66 www 957: $r->print(&Apache::lonnet::getannounce());
1.65 www 958: if ($advanced) {
1.201 raeburn 959: my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&');
1.231 bisitz 960: $r->print('<p><small><i>'
961: .&mt('This LON-CAPA server is version [_1]',$r->dir_config('lonVersion'))
962: .'</i><br />'
963: .'<a href="/adm/logout">'.&mt('Logout').'</a> '
1.201 raeburn 964: .'<a href="/adm/coursecatalog?showdom='.$esc_dom.'">'
1.233 bisitz 965: .&mt('Course/Community Catalog')
1.225 bisitz 966: .'</a></small></p>');
1.65 www 967: }
1.147 albertel 968: $r->print(&Apache::loncommon::end_page());
1.1 harris41 969: return OK;
1.102 raeburn 970: }
971:
1.226 raeburn 972: sub gather_roles {
1.260 raeburn 973: my ($update,$refresh,$now,$reinit,$nochoose,$roletext,$sortrole,$roleclass,$futureroles,$timezones,$loncaparev) = @_;
1.226 raeburn 974: my ($countactive,$countfuture,$inrole,$possiblerole) = (0,0,0,'');
975: my $advanced = $env{'user.adv'};
976: my $tryagain = $env{'form.tryagain'};
1.254 raeburn 977: my @ids = &Apache::lonnet::current_machine_ids();
1.226 raeburn 978: foreach my $envkey (sort(keys(%env))) {
979: my $button = 1;
980: my $switchserver='';
1.254 raeburn 981: my $switchwarning;
1.226 raeburn 982: my ($role_text,$role_text_end,$sortkey);
983: if ($envkey=~/^user\.role\./) {
984: my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus,$tpstart,$tpend);
1.260 raeburn 985: &Apache::lonnet::role_status($envkey,$update,$refresh,$now,\$role,\$where,
1.226 raeburn 986: \$trolecode,\$tstatus,\$tstart,\$tend);
987: next if (!defined($role) || $role eq '' || $role =~ /^gr/);
988: $tremark='';
989: $tpstart=' ';
990: $tpend=' ';
991: if ($env{'request.role'} eq $trolecode) {
992: $tstatus='selected';
993: }
994: my $tbg;
995: if (($tstatus eq 'is')
996: || ($tstatus eq 'selected')
997: || ($tstatus eq 'future')
998: || ($env{'form.showall'})) {
1.259 raeburn 999: my $timezone = &role_timezone($where,$timezones);
1000: if ($tstart) {
1001: $tpstart=&Apache::lonlocal::locallocaltime($tstart,$timezone);
1002: }
1003: if ($tend) {
1004: $tpend=&Apache::lonlocal::locallocaltime($tend,$timezone);
1005: }
1.226 raeburn 1006: if ($tstatus eq 'is') {
1007: $tbg='LC_roles_is';
1008: $possiblerole=$trolecode;
1009: $countactive++;
1010: } elsif ($tstatus eq 'future') {
1011: $tbg='LC_roles_future';
1012: $button=0;
1013: $futureroles->{$trolecode} = $tstart.':'.$tend;
1014: $countfuture ++;
1015: } elsif ($tstatus eq 'expired') {
1016: $tbg='LC_roles_expired';
1017: $button=0;
1018: } elsif ($tstatus eq 'will_not') {
1019: $tbg='LC_roles_will_not';
1020: $tremark.=&mt('Expired after logout.').' ';
1021: } elsif ($tstatus eq 'selected') {
1022: $tbg='LC_roles_selected';
1023: $inrole=1;
1024: $countactive++;
1025: $tremark.=&mt('Currently selected.').' ';
1026: }
1027: my $trole;
1028: if ($role =~ /^cr\//) {
1029: my ($rdummy,$rdomain,$rauthor,$rrole)=split(/\//,$role);
1030: if ($tremark) { $tremark.='<br />'; }
1.253 bisitz 1031: $tremark.=&mt('Customrole defined by [_1].',$rauthor.':'.$rdomain);
1.226 raeburn 1032: }
1033: $trole=Apache::lonnet::plaintext($role);
1034: my $ttype;
1035: my $twhere;
1036: my ($tdom,$trest,$tsection)=
1037: split(/\//,Apache::lonnet::declutter($where));
1038: # First, Co-Authorship roles
1039: if (($role eq 'ca') || ($role eq 'aa')) {
1040: my $home = &Apache::lonnet::homeserver($trest,$tdom);
1041: my $allowed=0;
1042: foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
1043: if (!$allowed) {
1044: $button=0;
1.248 raeburn 1045: $switchserver='otherserver='.$home.'&role='.$trolecode;
1.226 raeburn 1046: }
1047: #next if ($home eq 'no_host');
1048: $home = &Apache::lonnet::hostname($home);
1049: $ttype='Construction Space';
1050: $twhere=&mt('User').': '.$trest.'<br />'.&mt('Domain').
1051: ': '.$tdom.'<br />'.
1052: ' '.&mt('Server').': '.$home;
1053: $env{'course.'.$tdom.'_'.$trest.'.description'}='ca';
1054: $tremark.=&Apache::lonhtmlcommon::authorbombs('/res/'.$tdom.'/'.$trest.'/');
1055: $sortkey=$role."$trest:$tdom";
1056: } elsif ($role eq 'au') {
1057: # Authors
1058: my $home = &Apache::lonnet::homeserver
1059: ($env{'user.name'},$env{'user.domain'});
1060: my $allowed=0;
1061: foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
1062: if (!$allowed) {
1063: $button=0;
1.248 raeburn 1064: $switchserver='otherserver='.$home.'&role='.$trolecode;
1.226 raeburn 1065: }
1066: #next if ($home eq 'no_host');
1067: $home = &Apache::lonnet::hostname($home);
1068: $ttype='Construction Space';
1069: $twhere=&mt('Domain').': '.$tdom.'<br />'.&mt('Server').
1070: ': '.$home;
1071: $env{'course.'.$tdom.'_'.$trest.'.description'}='ca';
1072: $tremark.=&Apache::lonhtmlcommon::authorbombs('/res/'.$tdom.'/'.$env{'user.name'}.'/');
1073: $sortkey=$role;
1074: } elsif ($trest) {
1075: my $tcourseid=$tdom.'_'.$trest;
1076: $ttype = &Apache::loncommon::course_type($tcourseid);
1.242 raeburn 1077: $trole = &Apache::lonnet::plaintext($role,$ttype,$tcourseid);
1.226 raeburn 1078: if ($env{'course.'.$tcourseid.'.description'}) {
1.254 raeburn 1079: my $home=$env{'course.'.$tcourseid.'.home'};
1.226 raeburn 1080: $twhere=$env{'course.'.$tcourseid.'.description'};
1081: $sortkey=$role."\0".$tdom."\0".$twhere."\0".$envkey;
1.248 raeburn 1082: $twhere = &HTML::Entities::encode($twhere,'"<>&');
1.226 raeburn 1083: unless ($twhere eq &mt('Currently not available')) {
1084: $twhere.=' <span class="LC_fontsize_small">'.
1085: &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom).
1086: '</span>';
1.254 raeburn 1087: unless ($home && grep(/^\Q$home\E$/,@ids) && $loncaparev eq '') {
1.255 raeburn 1088: my $required = $env{'course.'.$tcourseid.'.internal.releaserequired'};
1.259 raeburn 1089: if ($required ne '') {
1090: ($switchserver,$switchwarning) =
1091: &check_release_required($loncaparev,$tcourseid,$trolecode,$required);
1092: if ($switchserver || $switchwarning) {
1093: $button = 0;
1094: }
1.254 raeburn 1095: }
1096: }
1.226 raeburn 1097: }
1098: } else {
1099: my %newhash=&Apache::lonnet::coursedescription($tcourseid);
1100: if (%newhash) {
1101: $sortkey=$role."\0".$tdom."\0".$newhash{'description'}.
1102: "\0".$envkey;
1.248 raeburn 1103: $twhere=&HTML::Entities::encode($newhash{'description'},'"<>&').
1104: ' <span class="LC_fontsize_small">'.
1105: &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom).
1106: '</span>';
1.226 raeburn 1107: $ttype = $newhash{'type'};
1.243 raeburn 1108: $trole = &Apache::lonnet::plaintext($role,$ttype,$tcourseid);
1.254 raeburn 1109: my $home = $newhash{'home'};
1110: unless ($home && grep(/^\Q$home\E$/,@ids) && $loncaparev eq '') {
1.255 raeburn 1111: my $required = $newhash{'internal.releaserequired'};
1.259 raeburn 1112: if ($required ne '') {
1113: ($switchserver,$switchwarning) =
1114: &check_release_required($loncaparev,$tcourseid,$trolecode,$required);
1115: if ($switchserver || $switchwarning) {
1116: $button = 0;
1117: }
1.254 raeburn 1118: }
1119: }
1.226 raeburn 1120: } else {
1121: $twhere=&mt('Currently not available');
1122: $env{'course.'.$tcourseid.'.description'}=$twhere;
1123: $sortkey=$role."\0".$tdom."\0".$twhere."\0".$envkey;
1124: $ttype = 'Unavailable';
1125: }
1126: }
1127: if ($tsection) {
1128: $twhere.='<br />'.&mt('Section').': '.$tsection;
1129: }
1130: if ($role ne 'st') { $twhere.="<br />".&mt('Domain').":".$tdom; }
1131: } elsif ($tdom) {
1132: $ttype='Domain';
1133: $twhere=$tdom;
1134: $sortkey=$role.$twhere;
1135: } else {
1136: $ttype='System';
1137: $twhere=&mt('system wide');
1138: $sortkey=$role.$twhere;
1139: }
1140: ($role_text,$role_text_end) =
1141: &build_roletext($trolecode,$tdom,$trest,$tstatus,$tryagain,
1142: $advanced,$tremark,$tbg,$trole,$twhere,$tpstart,
1.254 raeburn 1143: $tpend,$nochoose,$button,$switchserver,$reinit,$switchwarning);
1.226 raeburn 1144: $roletext->{$envkey}=[$role_text,$role_text_end];
1145: if (!$sortkey) {$sortkey=$twhere."\0".$envkey;}
1146: $sortrole->{$sortkey}=$envkey;
1147: $roleclass->{$envkey}=$ttype;
1148: }
1149: }
1150: }
1151: return ($countactive,$countfuture,$inrole,$possiblerole);
1152: }
1153:
1.215 raeburn 1154: sub role_timezone {
1155: my ($where,$timezones) = @_;
1156: my $timezone;
1157: if (ref($timezones) eq 'HASH') {
1158: if ($where =~ m{^/($match_domain)/($match_courseid)}) {
1159: my $cdom = $1;
1160: my $cnum = $2;
1161: if ($cdom && $cnum) {
1162: if (!exists($timezones->{$cdom.'_'.$cnum})) {
1.259 raeburn 1163: my $tz;
1164: if ($env{'course.'.$cdom.'_'.$cnum.'.description'}) {
1165: $tz = $env{'course.'.$cdom.'_'.$cnum.'.timezone'};
1166: } else {
1167: my %timehash =
1168: &Apache::lonnet::get('environment',['timezone'],$cdom,$cnum);
1169: $tz = $timehash{'timezone'};
1170: }
1171: if ($tz eq '') {
1.215 raeburn 1172: if (!exists($timezones->{$cdom})) {
1173: my %domdefaults =
1174: &Apache::lonnet::get_domain_defaults($cdom);
1175: if ($domdefaults{'timezone_def'} eq '') {
1176: $timezones->{$cdom} = 'local';
1177: } else {
1178: $timezones->{$cdom} = $domdefaults{'timezone_def'};
1179: }
1180: }
1181: $timezones->{$cdom.'_'.$cnum} = $timezones->{$cdom};
1182: } else {
1183: $timezones->{$cdom.'_'.$cnum} =
1.259 raeburn 1184: &Apache::lonlocal::gettimezone($tz);
1.215 raeburn 1185: }
1186: }
1187: $timezone = $timezones->{$cdom.'_'.$cnum};
1188: }
1189: } else {
1190: my ($tdom) = ($where =~ m{^/($match_domain)});
1191: if ($tdom) {
1192: if (!exists($timezones->{$tdom})) {
1193: my %domdefaults = &Apache::lonnet::get_domain_defaults($tdom);
1194: if ($domdefaults{'timezone_def'} eq '') {
1195: $timezones->{$tdom} = 'local';
1196: } else {
1197: $timezones->{$tdom} = $domdefaults{'timezone_def'};
1198: }
1199: }
1200: $timezone = $timezones->{$tdom};
1201: }
1202: }
1203: if ($timezone eq 'local') {
1204: $timezone = undef;
1205: }
1206: }
1207: return $timezone;
1208: }
1209:
1.191 raeburn 1210: sub roletable_headers {
1211: my ($r,$roleclass,$sortrole,$nochoose) = @_;
1212: my $doheaders;
1213: if ((ref($sortrole) eq 'HASH') && (ref($roleclass) eq 'HASH')) {
1.212 bisitz 1214: $r->print('<br />'
1215: .&Apache::loncommon::start_data_table()
1216: .&Apache::loncommon::start_data_table_header_row()
1217: );
1.191 raeburn 1218: if (!$nochoose) { $r->print('<th> </th>'); }
1.212 bisitz 1219: $r->print('<th>'.&mt('User Role').'</th>'
1220: .'<th>'.&mt('Extent').'</th>'
1221: .'<th>'.&mt('Start').'</th>'
1222: .'<th>'.&mt('End').'</th>'
1223: .&Apache::loncommon::end_data_table_header_row()
1224: );
1.191 raeburn 1225: $doheaders=-1;
1226: my @roletypes = &roletypes();
1227: foreach my $type (@roletypes) {
1228: my $haverole=0;
1229: foreach my $which (sort {uc($a) cmp uc($b)} (keys(%{$sortrole}))) {
1230: if ($roleclass->{$sortrole->{$which}} =~ /^\Q$type\E/) {
1231: $haverole=1;
1232: }
1233: }
1234: if ($haverole) { $doheaders++; }
1235: }
1236: }
1237: return $doheaders;
1238: }
1239:
1240: sub roletypes {
1.237 raeburn 1241: my @types = ('Domain','Construction Space','Course','Community','Unavailable','System');
1.191 raeburn 1242: return @types;
1243: }
1244:
1245: sub print_rolerows {
1246: my ($r,$doheaders,$roleclass,$sortrole,$dcroles,$roletext) = @_;
1247: if ((ref($roleclass) eq 'HASH') && (ref($sortrole) eq 'HASH')) {
1248: my @types = &roletypes();
1249: foreach my $type (@types) {
1250: my $output;
1251: foreach my $which (sort {uc($a) cmp uc($b)} (keys(%{$sortrole}))) {
1252: if ($roleclass->{$sortrole->{$which}} =~ /^\Q$type\E/) {
1253: if (ref($roletext) eq 'HASH') {
1.223 raeburn 1254: if (ref($roletext->{$sortrole->{$which}}) eq 'ARRAY') {
1255: $output.= &Apache::loncommon::start_data_table_row().
1256: $roletext->{$sortrole->{$which}}->[0].
1257: &Apache::loncommon::end_data_table_row();
1.251 raeburn 1258: if ($roletext->{$sortrole->{$which}}->[1] ne '') {
1259: $output .= &Apache::loncommon::continue_data_table_row().
1260: $roletext->{$sortrole->{$which}}->[1].
1261: &Apache::loncommon::end_data_table_row();
1262: }
1.223 raeburn 1263: }
1.191 raeburn 1264: if ($sortrole->{$which} =~ m-dc\./($match_domain)/-) {
1265: if (ref($dcroles) eq 'HASH') {
1266: if ($dcroles->{$1}) {
1.192 raeburn 1267: $output .= &adhoc_roles_row($1,'');
1.191 raeburn 1268: }
1269: }
1270: }
1271: }
1272: }
1273: }
1274: if ($output) {
1275: if ($doheaders > 0) {
1.212 bisitz 1276: $r->print(&Apache::loncommon::start_data_table_empty_row()
1277: .'<td align="center" colspan="5">'
1278: .&mt($type)
1279: .'</td>'
1280: .&Apache::loncommon::end_data_table_empty_row()
1281: );
1.191 raeburn 1282: }
1283: $r->print($output);
1284: }
1285: }
1286: }
1287: }
1288:
1289: sub findcourse_advice {
1290: my ($r) = @_;
1291: my $domdesc = &Apache::lonnet::domain($env{'user.domain'},'description');
1.201 raeburn 1292: my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&');
1.200 raeburn 1293: if (&Apache::lonnet::auto_run(undef,$env{'user.domain'})) {
1.191 raeburn 1294: $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).'
1295: <ul>
1296: <li>'.&mt('The course has yet to be created.').'</li>
1297: <li>'.&mt('Automatic enrollment of registered students has not been enabled for the course.').'</li>
1298: <li>'.&mt('You are in a section of course for which automatic enrollment in the corresponding LON-CAPA course is not active.').'</li>
1299: <li>'.&mt('The start date for automated enrollment has yet to be reached.').'</li>
1300: <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>
1301: </ul>');
1302: } else {
1303: $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 />');
1304: }
1.235 bisitz 1305: $r->print('<h3>'.&mt('Self-Enrollment').'</h3>'.
1.234 raeburn 1306: '<p>'.&mt('The [_1]Course/Community Catalog[_2] provides information about all [_3] classes for which LON-CAPA courses have been created, as well as any communities in the domain.','<a href="/adm/coursecatalog?showdom='.$esc_dom.'">','</a>',$domdesc).'<br />');
1.241 raeburn 1307: $r->print(&mt('You can search for courses and communities which permit self-enrollment, if you would like to enroll in one.').'</p>'.
1308: &Apache::loncoursequeueadmin::queued_selfenrollment());
1.216 raeburn 1309: return;
1310: }
1311:
1.234 raeburn 1312: sub requestcourse_advice {
1313: my ($r) = @_;
1314: my $domdesc = &Apache::lonnet::domain($env{'user.domain'},'description');
1315: my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&');
1316: my (%can_request,%request_doms);
1317: &Apache::lonnet::check_can_request($env{'user.domain'},\%can_request,\%request_doms);
1318: if (keys(%request_doms) > 0) {
1319: my ($types,$typename) = &Apache::loncommon::course_types();
1320: if ((ref($types) eq 'ARRAY') && (ref($typename) eq 'HASH')) {
1321: $r->print('<h3>'.&mt('Request creation of a course or community').'</h3>'.
1.238 bisitz 1322: '<p>'.&mt('You have rights to request the creation of courses and/or communities in the following domain(s):').'<ul>');
1.234 raeburn 1323: my (@reqdoms,@reqtypes);
1324: foreach my $type (sort(keys(%request_doms))) {
1325: push(@reqtypes,$type);
1326: if (ref($request_doms{$type}) eq 'ARRAY') {
1327: my $domstr = join(', ',map { &Apache::lonnet::domain($_) } sort(@{$request_doms{$type}}));
1.238 bisitz 1328: $r->print(
1329: '<li>'
1330: .&mt('[_1]'.$typename->{$type}.'[_2] in domain: [_3]',
1331: '<i>',
1332: '</i>',
1333: '<b>'.$domstr.'</b>')
1334: .'</li>'
1335: );
1.234 raeburn 1336: foreach my $dom (@{$request_doms{$type}}) {
1337: unless (grep(/^\Q$dom\E/,@reqdoms)) {
1338: push(@reqdoms,$dom);
1339: }
1340: }
1341: }
1342: }
1343: my @showtypes;
1344: foreach my $type (@{$types}) {
1345: if (grep(/^\Q$type\E$/,@reqtypes)) {
1346: push(@showtypes,$type);
1347: }
1348: }
1349: my $requrl = '/adm/requestcourse';
1350: if (@reqdoms == 1) {
1351: $requrl .= '?showdom='.$reqdoms[0];
1352: }
1353: if (@showtypes > 0) {
1354: $requrl.=(($requrl=~/\?/)?'&':'?').'crstype='.$showtypes[0];
1355: }
1356: if (@reqdoms == 1 || @showtypes > 0) {
1357: $requrl .= '&state=crstype&action=new';
1358: }
1359: $r->print('</ul>'.&mt('Use the [_1]request form[_2] to submit a request for creation of a new course or community.','<a href="'.$requrl.'">','</a>').'</p>');
1360: }
1361: }
1362: return;
1363: }
1364:
1.175 albertel 1365: sub privileges_info {
1366: my ($which) = @_;
1367: my $output;
1368:
1369: $which ||= $env{'request.role'};
1370:
1371: foreach my $envkey (sort(keys(%env))) {
1372: next if ($envkey!~/^user\.priv\.\Q$which\E\.(.*)/);
1373:
1374: my $where=$1;
1375: my $ttype;
1376: my $twhere;
1377: my (undef,$tdom,$trest,$tsec)=split(m{/},$where);
1378: if ($trest) {
1379: if ($env{'course.'.$tdom.'_'.$trest.'.description'} eq 'ca') {
1380: $ttype='Construction Space';
1381: $twhere='User: '.$trest.', Domain: '.$tdom;
1382: } else {
1383: $ttype= &Apache::loncommon::course_type($tdom.'_'.$trest);
1384: $twhere=$env{'course.'.$tdom.'_'.$trest.'.description'};
1385: if ($tsec) {
1386: my $sec_type = 'Section';
1387: if (exists($env{"user.role.gr.$where"})) {
1388: $sec_type = 'Group';
1389: }
1390: $twhere.=' ('.$sec_type.': '.$tsec.')';
1391: }
1392: }
1393: } elsif ($tdom) {
1394: $ttype='Domain';
1395: $twhere=$tdom;
1396: } else {
1397: $ttype='System';
1398: $twhere='/';
1399: }
1.204 bisitz 1400: $output .= "\n<h3>".&mt($ttype).': '.$twhere.'</h3>'."\n<ul>";
1.175 albertel 1401: foreach my $priv (sort(split(/:/,$env{$envkey}))) {
1402: next if (!$priv);
1403:
1404: my ($prv,$restr)=split(/\&/,$priv);
1405: my $trestr='';
1406: if ($restr ne 'F') {
1407: $trestr.=' ('.
1408: join(', ',
1409: map { &Apache::lonnet::plaintext($_) }
1410: (split('',$restr))).') ';
1411: }
1412: $output .= "\n\t".
1413: '<li>'.&Apache::lonnet::plaintext($prv).$trestr.'</li>';
1414: }
1415: $output .= "\n".'</ul>';
1416: }
1417: return $output;
1418: }
1419:
1.110 raeburn 1420: sub build_roletext {
1.254 raeburn 1421: my ($trolecode,$tdom,$trest,$tstatus,$tryagain,$advanced,$tremark,$tbg,$trole,$twhere,$tpstart,$tpend,$nochoose,$button,$switchserver,$reinit,$switchwarning) = @_;
1.223 raeburn 1422: my ($roletext,$roletext_end);
1.132 albertel 1423: my $is_dc=($trolecode =~ m/^dc\./);
1424: my $rowspan=($is_dc) ? ''
1425: : ' rowspan="2" ';
1426:
1.110 raeburn 1427: unless ($nochoose) {
1.134 www 1428: my $buttonname=$trolecode;
1429: $buttonname=~s/\W//g;
1.110 raeburn 1430: if (!$button) {
1431: if ($switchserver) {
1.212 bisitz 1432: $roletext.='<td'.$rowspan.' class="'.$tbg.'">'
1433: .'<a href="/adm/switchserver?'.$switchserver.'">'
1434: .&mt('Switch Server')
1435: .'</a></td>';
1.110 raeburn 1436: } else {
1.212 bisitz 1437: $roletext.=('<td'.$rowspan.' class="'.$tbg.'"> </td>');
1.110 raeburn 1438: }
1.255 raeburn 1439: if ($switchwarning) {
1440: if ($tremark eq '') {
1441: $tremark = $switchwarning;
1442: } else {
1443: $tremark .= '<br />'.$switchwarning;
1444: }
1445: }
1.110 raeburn 1446: } elsif ($tstatus eq 'is') {
1.212 bisitz 1447: $roletext.='<td'.$rowspan.' class="'.$tbg.'">'.
1448: '<input name="'.$buttonname.'" type="button" value="'.
1.225 bisitz 1449: &mt('Select').'" onclick="javascript:enterrole(this.form,\''.
1.192 raeburn 1450: $trolecode."','".$buttonname.'\');" /></td>';
1.110 raeburn 1451: } elsif ($tryagain) {
1452: $roletext.=
1.212 bisitz 1453: '<td'.$rowspan.' class="'.$tbg.'">'.
1454: '<input name="'.$buttonname.'" type="button" value="'.
1.225 bisitz 1455: &mt('Try Selecting Again').'" onclick="javascript:enterrole(this.form,\''.
1.192 raeburn 1456: $trolecode."','".$buttonname.'\');" /></td>';
1.110 raeburn 1457: } elsif ($advanced) {
1458: $roletext.=
1.212 bisitz 1459: '<td'.$rowspan.' class="'.$tbg.'">'.
1460: '<input name="'.$buttonname.'" type="button" value="'.
1.225 bisitz 1461: &mt('Re-Initialize').'" onclick="javascript:enterrole(this.form,\''.
1.192 raeburn 1462: $trolecode."','".$buttonname.'\');" /></td>';
1.209 raeburn 1463: } elsif ($reinit) {
1464: $roletext.=
1.212 bisitz 1465: '<td'.$rowspan.' class="'.$tbg.'">'.
1466: '<input name="'.$buttonname.'" type="button" value="'.
1.225 bisitz 1467: &mt('Re-Select').'" onclick="javascript:enterrole(this.form,\''.
1.209 raeburn 1468: $trolecode."','".$buttonname.'\');" /></td>';
1.110 raeburn 1469: } else {
1.209 raeburn 1470: $roletext.=
1.212 bisitz 1471: '<td'.$rowspan.' class="'.$tbg.'">'.
1472: '<input name="'.$buttonname.'" type="button" value="'.
1.225 bisitz 1473: &mt('Re-Select').'" onclick="javascript:enterrole(this.form,\''.
1.209 raeburn 1474: $trolecode."','".$buttonname.'\');" /></td>';
1.110 raeburn 1475: }
1476: }
1.165 albertel 1477: if ($trolecode !~ m/^(dc|ca|au|aa)\./) {
1478: $tremark.=&Apache::lonannounce::showday(time,1,
1479: &Apache::lonannounce::readcalendar($tdom.'_'.$trest));
1480: }
1.212 bisitz 1481: $roletext.='<td>'.$trole.'</td>'
1482: .'<td>'.$twhere.'</td>'
1483: .'<td>'.$tpstart.'</td>'
1.223 raeburn 1484: .'<td>'.$tpend.'</td>';
1.132 albertel 1485: if (!$is_dc) {
1.223 raeburn 1486: $roletext_end = '<td colspan="4">'.
1487: $tremark.' '.
1488: '</td>';
1.132 albertel 1489: }
1.223 raeburn 1490: return ($roletext,$roletext_end);
1.110 raeburn 1491: }
1492:
1.202 raeburn 1493: sub check_needs_switchserver {
1494: my ($possiblerole) = @_;
1495: my $needs_switchserver;
1496: my ($role,$where) = split(/\./,$possiblerole,2);
1497: my (undef,$tdom,$twho) = split(/\//,$where);
1498: my ($server_status,$home);
1499: if (($role eq 'ca') || ($role eq 'aa')) {
1500: ($server_status,$home) = &check_author_homeserver($twho,$tdom);
1501: } else {
1502: ($server_status,$home) = &check_author_homeserver($env{'user.name'},
1503: $env{'user.domain'});
1504: }
1505: if ($server_status eq 'switchserver') {
1506: $needs_switchserver = 1;
1507: }
1508: return $needs_switchserver;
1509: }
1510:
1.193 raeburn 1511: sub check_author_homeserver {
1.183 www 1512: my ($uname,$udom)=@_;
1.193 raeburn 1513: if (($uname eq '') || ($udom eq '')) {
1514: return ('fail','');
1515: }
1.183 www 1516: my $home = &Apache::lonnet::homeserver($uname,$udom);
1.193 raeburn 1517: if (&Apache::lonnet::host_domain($home) ne $udom) {
1518: return ('fail',$home);
1519: }
1.183 www 1520: my @ids=&Apache::lonnet::current_machine_ids();
1.193 raeburn 1521: if (grep(/^\Q$home\E$/,@ids)) {
1522: return ('ok',$home);
1523: } else {
1524: return ('switchserver',$home);
1.183 www 1525: }
1526: }
1527:
1.104 raeburn 1528: sub check_fordc {
1.260 raeburn 1529: my ($dcroles,$update,$then) = @_;
1.104 raeburn 1530: my $numdc = 0;
1.118 albertel 1531: if ($env{'user.adv'}) {
1532: foreach my $envkey (sort keys %env) {
1.170 albertel 1533: if ($envkey=~/^user\.role\.dc\.\/($match_domain)\/$/) {
1.104 raeburn 1534: my $dcdom = $1;
1535: my $livedc = 1;
1.118 albertel 1536: my ($tstart,$tend)=split(/\./,$env{$envkey});
1.260 raeburn 1537: my $limit = $update;
1538: if ($env{'request.role'} eq 'dc./'.$dcdom.'/') {
1539: $limit = $then;
1540: }
1541: if ($tstart && $tstart>$limit) { $livedc = 0; }
1542: if ($tend && $tend <$limit) { $livedc = 0; }
1.104 raeburn 1543: if ($livedc) {
1544: $$dcroles{$dcdom} = $envkey;
1.105 raeburn 1545: $numdc++;
1.104 raeburn 1546: }
1547: }
1548: }
1549: }
1550: return $numdc;
1551: }
1552:
1.185 raeburn 1553: sub adhoc_course_role {
1.260 raeburn 1554: my ($refresh,$update,$then) = @_;
1.239 raeburn 1555: my ($cdom,$cnum,$crstype);
1.201 raeburn 1556: $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
1557: $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.239 raeburn 1558: $crstype = &Apache::loncommon::course_type();
1.260 raeburn 1559: if (&check_forcc($cdom,$cnum,$refresh,$update,$then,$crstype)) {
1.185 raeburn 1560: my $setprivs;
1.198 raeburn 1561: if (!defined($env{'user.role.'.$env{'form.switchrole'}})) {
1.185 raeburn 1562: $setprivs = 1;
1563: } else {
1.198 raeburn 1564: my ($start,$end) = split(/\./,$env{'user.role.'.$env{'form.switchrole'}});
1.232 raeburn 1565: if (($start && ($start>$refresh || $start == -1)) ||
1.260 raeburn 1566: ($end && $end<$update)) {
1.185 raeburn 1567: $setprivs = 1;
1568: }
1.232 raeburn 1569: }
1.185 raeburn 1570: if ($setprivs) {
1.198 raeburn 1571: if ($env{'form.switchrole'} =~ m-^(in|ta|ep|ad|st|cr)([\w/]*)\./\Q$cdom\E/\Q$cnum\E/?(\w*)$-) {
1.185 raeburn 1572: my $role = $1;
1573: my $custom_role = $2;
1574: my $usec = $3;
1575: if ($role eq 'cr') {
1.199 raeburn 1576: if ($custom_role =~ m-^/$match_domain/$match_username/\w+$-) {
1.185 raeburn 1577: $role .= $custom_role;
1578: } else {
1579: return;
1580: }
1581: }
1.208 raeburn 1582: my (%userroles,%newrole,%newgroups,%group_privs);
1583: my %cgroups =
1584: &Apache::lonnet::get_active_groups($env{'user.domain'},
1585: $env{'user.name'},$cdom,$cnum);
1586: foreach my $group (keys(%cgroups)) {
1587: $group_privs{$group} =
1588: $env{'user.priv.cc./'.$cdom.'/'.$cnum.'./'.$cdom.'/'.$cnum.'/'.$group};
1589: }
1590: $newgroups{'/'.$cdom.'/'.$cnum} = \%group_privs;
1.185 raeburn 1591: my $area = '/'.$cdom.'/'.$cnum;
1592: my $spec = $role.'.'.$area;
1593: if ($usec ne '') {
1594: $spec .= '/'.$usec;
1595: $area .= '/'.$usec;
1596: }
1597: &Apache::lonnet::standard_roleprivs(\%newrole,$role,$cdom,$spec,$cnum,$area);
1.208 raeburn 1598: &Apache::lonnet::set_userprivs(\%userroles,\%newrole,\%newgroups);
1.232 raeburn 1599: my $adhocstart = $refresh-1;
1.185 raeburn 1600: $userroles{'user.role.'.$spec} = $adhocstart.'.';
1.186 raeburn 1601: &Apache::lonnet::appenv(\%userroles,[$role,'cm']);
1.185 raeburn 1602: }
1603: }
1604: }
1605: return;
1606: }
1607:
1608: sub check_forcc {
1.260 raeburn 1609: my ($cdom,$cnum,$refresh,$update,$then,$crstype) = @_;
1.239 raeburn 1610: my ($is_cc,$ccrole);
1611: if ($crstype eq 'Community') {
1612: $ccrole = 'co';
1613: } else {
1614: $ccrole = 'cc';
1615: }
1.266 ! droeschl 1616: if (&Apache::lonnet::is_course($cdom,$cnum)) {
! 1617: my $envkey = 'user.role.'.$ccrole.'./'.$cdom.'/'.$cnum;
! 1618: if (defined($env{$envkey})) {
! 1619: $is_cc = 1;
! 1620: my ($tstart,$tend)=split(/\./,$env{$envkey});
! 1621: my $limit = $update;
! 1622: if ($env{'request.role'} eq $ccrole.'./'.$cdom.'/'.$cnum) {
! 1623: $limit = $then;
1.185 raeburn 1624: }
1.266 ! droeschl 1625: if ($tstart && $tstart>$refresh) { $is_cc = 0; }
! 1626: if ($tend && $tend <$limit) { $is_cc = 0; }
1.185 raeburn 1627: }
1628: }
1629: return $is_cc;
1630: }
1631:
1.254 raeburn 1632: sub check_release_required {
1.255 raeburn 1633: my ($loncaparev,$tcourseid,$trolecode,$required) = @_;
1.254 raeburn 1634: my ($switchserver,$warning);
1.255 raeburn 1635: if ($required ne '') {
1636: my ($reqdmajor,$reqdminor) = ($required =~ /^(\d+)\.(\d+)$/);
1.257 raeburn 1637: my ($major,$minor) = ($loncaparev =~ /^\'?(\d+)\.(\d+)\.[\w.\-]+\'?$/);
1.254 raeburn 1638: if ($reqdmajor ne '' && $reqdminor ne '') {
1639: my $otherserver;
1640: if (($major eq '' && $minor eq '') ||
1641: (($reqdmajor > $major) || (($reqdmajor == $major) && ($reqdminor > $minor)))) {
1642: my ($userdomserver) = &Apache::lonnet::choose_server($env{'user.domain'});
1643: my $switchlcrev =
1644: &Apache::lonnet::get_server_loncaparev($env{'user.domain'},
1645: $userdomserver);
1.257 raeburn 1646: my ($swmajor,$swminor) = ($switchlcrev =~ /^\'?(\d+)\.(\d+)\.[\w.\-]+\'?$/);
1.254 raeburn 1647: if (($swmajor eq '' && $swminor eq '') || ($reqdmajor > $swmajor) ||
1648: (($reqdmajor == $swmajor) && ($reqdminor > $swminor))) {
1649: my $cdom = $env{'course.'.$tcourseid.'.domain'};
1650: if ($cdom ne $env{'user.domain'}) {
1651: my ($coursedomserver,$coursehostname) = &Apache::lonnet::choose_server($cdom);
1652: my $serverhomeID = &Apache::lonnet::get_server_homeID($coursehostname);
1653: my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);
1654: my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);
1655: my %udomdefaults = &Apache::lonnet::get_domain_defaults($env{'user.domain'});
1656: my $remoterev = &Apache::lonnet::get_server_loncaparev($serverhomedom,$coursedomserver);
1657: my $canhost =
1658: &Apache::lonnet::can_host_session($env{'user.domain'},
1659: $coursedomserver,
1660: $remoterev,
1661: $udomdefaults{'remotesessions'},
1662: $defdomdefaults{'hostedsessions'});
1663:
1664: if ($canhost) {
1665: $otherserver = $coursedomserver;
1666: } else {
1667: $warning = &mt('Requires LON-CAPA version [_1].',$env{'course.'.$tcourseid.'.internal.releaserequired'}).'<br />'. &mt("No suitable server could be found amongst servers in either your own domain or in the course's domain.");
1668: }
1669: } else {
1670: $warning = &mt('Requires LON-CAPA version [_1].',$env{'course.'.$tcourseid.'.internal.releaserequired'}).'<br />'.&mt("No suitable server could be found amongst servers in your own domain (which is also the course's domain).");
1671: }
1672: } else {
1673: $otherserver = $userdomserver;
1674: }
1675: }
1676: if ($otherserver ne '') {
1677: $switchserver = 'otherserver='.$otherserver.'&role='.$trolecode;
1678: }
1679: }
1680: }
1681: return ($switchserver,$warning);
1682: }
1683:
1.255 raeburn 1684: sub update_content_constraints {
1685: my ($cdom,$cnum,$chome,$cid) = @_;
1686: my %curr_reqd_hash = &Apache::lonnet::userenvironment($cdom,$cnum,'internal.releaserequired');
1687: my ($reqdmajor,$reqdminor) = split(/\./,$curr_reqd_hash{'internal.releaserequired'});
1688: my %checkresponsetypes;
1689: foreach my $key (keys(%Apache::lonnet::needsrelease)) {
1690: my ($item,$name,$value) = split(/:/,$key);
1691: if ($item eq 'resourcetag') {
1692: if ($name eq 'responsetype') {
1693: $checkresponsetypes{$value} = $Apache::lonnet::needsrelease{$key}
1694: }
1695: }
1696: }
1697: my $navmap = Apache::lonnavmaps::navmap->new();
1698: if (defined($navmap)) {
1699: my %allresponses;
1700: foreach my $res ($navmap->retrieveResources(undef,sub { $_[0]->is_problem() },1,0)) {
1701: my %responses = $res->responseTypes();
1702: foreach my $key (keys(%responses)) {
1703: next unless(exists($checkresponsetypes{$key}));
1704: $allresponses{$key} += $responses{$key};
1705: }
1706: }
1707: foreach my $key (keys(%allresponses)) {
1708: my ($major,$minor) = split(/\./,$checkresponsetypes{$key});
1709: if (($major > $reqdmajor) || ($major == $reqdmajor && $minor > $reqdminor)) {
1710: ($reqdmajor,$reqdminor) = ($major,$minor);
1711: }
1712: }
1713: undef($navmap);
1714: }
1715: unless (($reqdmajor eq '') && ($reqdminor eq '')) {
1716: &Apache::lonnet::update_released_required($reqdmajor.'.'.$reqdminor,$cdom,$cnum,$chome,$cid);
1717: }
1718: return;
1719: }
1720:
1.108 raeburn 1721: sub courselink {
1.193 raeburn 1722: my ($dcdom,$rowtype) = @_;
1.109 raeburn 1723: my $courseform=&Apache::loncommon::selectcourse_link
1.152 raeburn 1724: ('rolechoice','dccourse'.$rowtype.'_'.$dcdom,
1725: 'dcdomain'.$rowtype.'_'.$dcdom,'coursedesc'.$rowtype.'_'.
1.239 raeburn 1726: $dcdom,$dcdom,undef,'Course/Community');
1.138 raeburn 1727: my $hiddenitems = '<input type="hidden" name="dcdomain'.$rowtype.'_'.$dcdom.'" value="'.$dcdom.'" />'.
1728: '<input type="hidden" name="origdom'.$rowtype.'_'.$dcdom.'" value="'.$dcdom.'" />'.
1729: '<input type="hidden" name="dccourse'.$rowtype.'_'.$dcdom.'" value="" />'.
1730: '<input type="hidden" name="coursedesc'.$rowtype.'_'.$dcdom.'" value="" />';
1.112 raeburn 1731: return $courseform.$hiddenitems;
1.109 raeburn 1732: }
1733:
1734: sub coursepick_jscript {
1.184 raeburn 1735: my %lt = &Apache::lonlocal::texthash(
1.239 raeburn 1736: plsu => "Please use the 'Select Course/Community' link to open a separate pick course window where you may select the course or community you wish to enter.",
1.234 raeburn 1737: youc => 'You can only use this screen to select courses and communities in the current domain.',
1.184 raeburn 1738: );
1.104 raeburn 1739: my $verify_script = <<"END";
1.179 raeburn 1740: <script type="text/javascript">
1.225 bisitz 1741: // <![CDATA[
1.108 raeburn 1742: function verifyCoursePick(caller) {
1743: var numbutton = getIndex(caller)
1.112 raeburn 1744: var pickedCourse = document.rolechoice.elements[numbutton+4].value
1745: var pickedDomain = document.rolechoice.elements[numbutton+2].value
1746: if (document.rolechoice.elements[numbutton+2].value == document.rolechoice.elements[numbutton+3].value) {
1.104 raeburn 1747: if (pickedCourse != '') {
1.108 raeburn 1748: if (numbutton != -1) {
1749: var courseTarget = "cc./"+pickedDomain+"/"+pickedCourse
1750: document.rolechoice.elements[numbutton+1].name = courseTarget
1751: document.rolechoice.submit()
1752: }
1.104 raeburn 1753: }
1754: else {
1.184 raeburn 1755: alert("$lt{'plsu'}");
1.104 raeburn 1756: }
1757: }
1758: else {
1.184 raeburn 1759: alert("$lt{'youc'}")
1.104 raeburn 1760: }
1761: }
1.109 raeburn 1762: function getIndex(caller) {
1.108 raeburn 1763: for (var i=0;i<document.rolechoice.elements.length;i++) {
1.109 raeburn 1764: if (document.rolechoice.elements[i] == caller) {
1.108 raeburn 1765: return i;
1766: }
1767: }
1768: return -1;
1769: }
1.225 bisitz 1770: // ]]>
1.104 raeburn 1771: </script>
1772: END
1.109 raeburn 1773: return $verify_script;
1.104 raeburn 1774: }
1775:
1.193 raeburn 1776: sub coauthorlink {
1777: my ($dcdom,$rowtype) = @_;
1778: my $coauthorform=&Apache::loncommon::selectauthor_link('rolechoice',$dcdom);
1779: my $hiddenitems = '<input type="hidden" name="adhoccauname'.$rowtype.'_'.$dcdom.'" value="" />';
1780: return $coauthorform.$hiddenitems;
1781: }
1782:
1.113 raeburn 1783: sub display_cc_role {
1784: my $rolekey = shift;
1.223 raeburn 1785: my ($roletext,$roletext_end);
1.118 albertel 1786: my $advanced = $env{'user.adv'};
1787: my $tryagain = $env{'form.tryagain'};
1.113 raeburn 1788: unless ($rolekey =~/^error\:/) {
1.240 raeburn 1789: if ($rolekey =~ m{^user\.role\.(cc|co)\./($match_domain)/($match_courseid)$}) {
1790: my $ccrole = $1;
1.249 raeburn 1791: my $tdom = $2;
1792: my $trest = $3;
1793: my $tcourseid = $tdom.'_'.$trest;
1794: my $trolecode = $ccrole.'./'.$tdom.'/'.$trest;
1.113 raeburn 1795: my $twhere;
1.152 raeburn 1796: my $ttype;
1.212 bisitz 1797: my $tbg='LC_roles_is';
1.113 raeburn 1798: my %newhash=&Apache::lonnet::coursedescription($tcourseid);
1799: if (%newhash) {
1800: $twhere=$newhash{'description'}.
1.261 bisitz 1801: ' <span class="LC_fontsize_small">'.
1.249 raeburn 1802: &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom).
1.211 tempelho 1803: '</span>';
1.153 raeburn 1804: $ttype = $newhash{'type'};
1.113 raeburn 1805: } else {
1806: $twhere=&mt('Currently not available');
1.118 albertel 1807: $env{'course.'.$tcourseid.'.description'}=$twhere;
1.110 raeburn 1808: }
1.242 raeburn 1809: my $trole = &Apache::lonnet::plaintext($ccrole,$ttype,$tcourseid);
1.258 raeburn 1810: $twhere.="<br />".&mt('Domain').":".$tdom;
1.249 raeburn 1811: ($roletext,$roletext_end) = &build_roletext($trolecode,$tdom,$trest,'is',$tryagain,$advanced,'',$tbg,$trole,$twhere,'','','',1,'');
1.104 raeburn 1812: }
1813: }
1.223 raeburn 1814: return ($roletext,$roletext_end);
1.104 raeburn 1815: }
1816:
1.192 raeburn 1817: sub adhoc_roles_row {
1.138 raeburn 1818: my ($dcdom,$rowtype) = @_;
1.212 bisitz 1819: my $output = &Apache::loncommon::continue_data_table_row()
1820: .' <td colspan="5">'
1821: .&mt('[_1]Ad hoc[_2] roles in domain [_3] --'
1822: ,'<span class="LC_cusr_emph">','</span>',$dcdom)
1.227 bisitz 1823: .' ';
1.193 raeburn 1824: my $selectcclink = &courselink($dcdom,$rowtype);
1.239 raeburn 1825: my $ccrole = &Apache::lonnet::plaintext('co',undef,undef,1);
1.182 www 1826: my $carole = &Apache::lonnet::plaintext('ca');
1.193 raeburn 1827: my $selectcalink = &coauthorlink($dcdom,$rowtype);
1.227 bisitz 1828: $output.=$ccrole.': '.$selectcclink
1.249 raeburn 1829: .' | '.$carole.': '.$selectcalink.'</td>'
1.212 bisitz 1830: .&Apache::loncommon::end_data_table_row();
1.108 raeburn 1831: return $output;
1832: }
1833:
1.104 raeburn 1834: sub recent_filename {
1835: my $area=shift;
1.149 www 1836: return 'nohist_recent_'.&escape($area);
1.104 raeburn 1837: }
1838:
1.139 raeburn 1839: sub courseloadpage {
1840: my ($courseid) = @_;
1841: my $startpage;
1.144 albertel 1842: my %entry_settings = &Apache::lonnet::get('nohist_whatsnew',
1843: [$courseid.':courseinit']);
1.139 raeburn 1844: my ($tmp) = %entry_settings;
1.144 albertel 1845: unless ($tmp =~ /^error: 2 /) {
1.139 raeburn 1846: $startpage = $entry_settings{$courseid.':courseinit'};
1847: }
1848: if ($startpage eq '') {
1849: if (exists($env{'environment.course_init_display'})) {
1850: $startpage = $env{'environment.course_init_display'};
1851: }
1852: }
1853: return $startpage;
1854: }
1855:
1.260 raeburn 1856: sub update_session_roles {
1857: my $then=$env{'user.login.time'};
1858: my $refresh=$env{'user.refresh.time'};
1859: if (!$refresh) {
1860: $refresh = $then;
1861: }
1862: my $update = $env{'user.update.time'};
1863: if (!$update) {
1864: $update = $then;
1865: }
1866: my $now = time;
1867: my %roleshash =
1868: &Apache::lonnet::get_my_roles('','','userroles',
1869: ['active','future','previous'],
1870: undef,undef,1);
1871: my ($msg,@newsec,$oldsec,$currrole_expired,@changed_roles,
1.264 raeburn 1872: %changed_groups,%dbroles,%deletedroles,%allroles,%allgroups,
1.260 raeburn 1873: %userroles,%checkedgroup,%crprivs,$hasgroups,%rolechange,
1874: %groupchange,%newrole,%newgroup,%customprivchg,%groups_roles,
1875: @rolecodes);
1876: my @possroles = ('cr','st','ta','ad','ep','in','co','cc');
1877: my %courseroles;
1878: foreach my $item (keys(%roleshash)) {
1879: my ($uname,$udom,$role,$remainder) = split(/:/,$item,4);
1880: my ($tstart,$tend) = split(/:/,$roleshash{$item});
1881: my ($section,$group,@group_privs);
1882: if ($role =~ m{^gr/(\w*)$}) {
1883: $role = 'gr';
1884: my $priv = $1;
1885: next if ($tstart eq '-1');
1886: if (&curr_role_status($tstart,$tend,$refresh,$now) eq 'active') {
1887: if ($priv ne '') {
1888: push(@group_privs,$priv);
1889: }
1890: }
1891: if ($remainder =~ /:/) {
1892: (my $additional_privs,$group) =
1893: ($remainder =~ /^([\w:]+):([^:]+)$/);
1894: if ($additional_privs ne '') {
1895: if (&curr_role_status($tstart,$tend,$refresh,$now) eq 'active') {
1896: push(@group_privs,split(/:/,$additional_privs));
1897: @group_privs = sort(@group_privs);
1898: }
1899: }
1900: } else {
1901: $group = $remainder;
1902: }
1903: } else {
1904: $section = $remainder;
1905: }
1906: my $where = "/$udom/$uname";
1907: if ($section ne '') {
1908: $where .= "/$section";
1909: } elsif ($group ne '') {
1910: $where .= "/$group";
1911: }
1912: my $rolekey = "$role.$where";
1913: my $envkey = "user.role.$rolekey";
1914: $dbroles{$envkey} = 1;
1915: if (($env{'request.role'} eq $rolekey) && ($role ne 'st')) {
1916: if (&curr_role_status($tstart,$tend,$refresh,$now) ne 'active') {
1917: $currrole_expired = 1;
1918: }
1919: }
1920: if ($env{$envkey} eq '') {
1921: my $status_in_db =
1922: &curr_role_status($tstart,$tend,$refresh,$now);
1923: &gather_roleprivs(\%allroles,\%allgroups,\%userroles,$where,$role,$tstart,$tend,$status_in_db);
1924: if (($role eq 'st') && ($env{'request.role'} =~ m{^\Q$role\E\.\Q/$udom/$uname\E})) {
1925: if ($status_in_db eq 'active') {
1926: if ($section eq '') {
1927: push(@newsec,'none');
1928: } else {
1929: push(@newsec,$section);
1930: }
1931: }
1932: } else {
1933: unless (grep(/^\Q$role\E$/,@changed_roles)) {
1934: push(@changed_roles,$role);
1935: }
1936: if ($status_in_db ne 'previous') {
1937: if ($role eq 'gr') {
1938: $newgroup{$rolekey} = $status_in_db;
1939: if ($status_in_db eq 'active') {
1940: unless (ref($courseroles{$udom}) eq 'HASH') {
1941: %{$courseroles{$udom}} =
1942: &Apache::lonnet::get_my_roles('','','userroles',
1943: ['active'],\@possroles,
1944: [$udom],1);
1945: }
1946: &Apache::lonnet::get_groups_roles($udom,$uname,
1947: $courseroles{$udom},
1948: \@rolecodes,\%groups_roles);
1949: }
1950: } else {
1951: $newrole{$rolekey} = $status_in_db;
1952: }
1953: }
1954: }
1955: } else {
1956: my ($currstart,$currend) = split(/\./,$env{$envkey});
1957: if ($role eq 'gr') {
1958: if (&curr_role_status($currstart,$currend,$refresh,$update) ne 'previous') {
1959: $hasgroups = 1;
1960: }
1961: }
1962: if (($currstart ne $tstart) || ($currend ne $tend)) {
1963: my $status_in_env =
1964: &curr_role_status($currstart,$currend,$refresh,$update);
1965: my $status_in_db =
1966: &curr_role_status($tstart,$tend,$refresh,$now);
1967: if ($status_in_env ne $status_in_db) {
1968: if ($status_in_env eq 'active') {
1969: if ($role eq 'st') {
1970: if ($env{'request.role'} eq $rolekey) {
1971: my $switchsection;
1972: unless (ref($courseroles{$udom}) eq 'HASH') {
1973: %{$courseroles{$udom}} =
1974: &Apache::lonnet::get_my_roles('','','userroles',
1975: ['active'],
1976: \@possroles,[$udom],1);
1977: }
1978: foreach my $crsrole (keys(%{$courseroles{$udom}})) {
1979: if ($crsrole =~ /^\Q$uname\E:\Q$udom\E:st/) {
1980: $switchsection = 1;
1981: last;
1982: }
1983: }
1984: if ($switchsection) {
1985: if ($section eq '') {
1986: $oldsec = 'none';
1987: } else {
1988: $oldsec = $section;
1989: }
1990: &gather_roleprivs(\%allroles,\%allgroups,\%userroles,$where,$role,$tstart,$tend,$status_in_db);
1991: } else {
1992: $currrole_expired = 1;
1993: next;
1994: }
1995: }
1996: }
1997: unless ($rolekey eq $env{'request.role'}) {
1998: if ($role eq 'gr') {
1999: &Apache::lonnet::delete_env_groupprivs($where,\%courseroles,\@possroles);
2000: } else {
2001: &Apache::lonnet::delenv("user.priv.$rolekey",undef,[$role]);
2002: &Apache::lonnet::delenv("user.priv.cm.$where",undef,['cm']);
2003: }
2004: &gather_roleprivs(\%allroles,\%allgroups,\%userroles,$where,$role,$tstart,$tend,$status_in_db);
2005: }
2006: } elsif ($status_in_db eq 'active') {
2007: if (($role eq 'st') &&
2008: ($env{'request.role'} =~ m{^\Q$role\E\.\Q/$udom/$uname\E})) {
2009: if ($section eq '') {
2010: push(@newsec,'none');
2011: } else {
2012: push(@newsec,$section);
2013: }
2014: } elsif ($role eq 'gr') {
2015: unless (ref($courseroles{$udom}) eq 'HASH') {
2016: %{$courseroles{$udom}} =
2017: &Apache::lonnet::get_my_roles('','','userroles',
2018: ['active'],
2019: \@possroles,[$udom],1);
2020: }
2021: &Apache::lonnet::get_groups_roles($udom,$uname,
2022: $courseroles{$udom},
2023: \@rolecodes,\%groups_roles);
2024: }
2025: &gather_roleprivs(\%allroles,\%allgroups,\%userroles,$where,$role,$tstart,$tend,$status_in_db);
2026: }
2027: unless (grep(/^\Q$role\E$/,@changed_roles)) {
2028: push(@changed_roles,$role);
2029: }
2030: if ($role eq 'gr') {
2031: $groupchange{"/$udom/$uname"}{$group} = $status_in_db;
2032: } else {
2033: $rolechange{$rolekey} = $status_in_db;
2034: }
2035: }
2036: } else {
2037: if ($role eq 'gr') {
2038: unless ($checkedgroup{$where}) {
2039: my $status_in_db =
2040: &curr_role_status($tstart,$tend,$refresh,$now);
2041: if ($tstart eq '-1') {
2042: $status_in_db = 'deleted';
2043: }
2044: unless (ref($courseroles{$udom}) eq 'HASH') {
2045: %{$courseroles{$udom}} =
2046: &Apache::lonnet::get_my_roles('','','userroles',
2047: ['active'],
2048: \@possroles,[$udom],1);
2049: }
2050: if (ref($courseroles{$udom}) eq 'HASH') {
2051: foreach my $item (keys(%{$courseroles{$udom}})) {
2052: next unless ($item =~ /^\Q$uname\E/);
2053: my ($cnum,$cdom,$crsrole,$crssec) = split(/:/,$item);
2054: my $area = '/'.$cdom.'/'.$cnum;
2055: if ($crssec ne '') {
2056: $area .= '/'.$crssec;
2057: }
2058: my $crsrolekey = $crsrole.'.'.$area;
2059: my $currprivs = $env{'user.priv.'.$crsrole.'.'.$area.'.'.$where};
2060: $currprivs =~ s/^://;
2061: $currprivs =~ s/\&F$//;
2062: my @curr_grp_privs = split(/\&F:/,$currprivs);
2063: @curr_grp_privs = sort(@curr_grp_privs);
2064: my @diffs;
2065: if (@group_privs > 0 || @curr_grp_privs > 0) {
2066: @diffs = &Apache::loncommon::compare_arrays(\@group_privs,\@curr_grp_privs);
2067: }
2068: if (@diffs == 0) {
2069: last;
2070: } else {
2071: unless(grep(/^\Qgr\E$/,@rolecodes)) {
2072: push(@rolecodes,'gr');
2073: }
2074: &gather_roleprivs(\%allroles,\%allgroups,
2075: \%userroles,$where,$role,
2076: $tstart,$tend,$status_in_db);
2077: if ($status_in_db eq 'active') {
2078: &Apache::lonnet::get_groups_roles($udom,$uname,
2079: $courseroles{$udom},
2080: \@rolecodes,\%groups_roles);
2081: }
2082: $changed_groups{$udom.'_'.$uname}{$group} = $status_in_db;
2083: last;
2084: }
2085: }
2086: }
2087: $checkedgroup{$where} = 1;
2088: }
2089: } elsif ($role =~ /^cr/) {
2090: my $status_in_db =
2091: &curr_role_status($tstart,$tend,$refresh,$now);
2092: my ($rdummy,$rest) = split(/\//,$role,2);
2093: my ($rdummy,$rdomain,$rauthor,$rrole)=split(/\//,$role);
2094: my %currpriv;
2095: unless (exists($crprivs{$rest})) {
2096: my ($rdomain,$rauthor,$rrole)=split(/\//,$rest);
2097: my $homsvr=&Apache::lonnet::homeserver($rauthor,$rdomain);
2098: if (&Apache::lonnet::hostname($homsvr) ne '') {
2099: my ($rdummy,$roledef)=
2100: &Apache::lonnet::get('roles',["rolesdef_$rrole"],
2101: $rdomain,$rauthor);
2102: if (($rdummy ne 'con_lost') && ($roledef ne '')) {
2103: my $i = 0;
2104: my @scopes = ('sys','dom','crs');
2105: my @privs = split(/\_/,$roledef);
2106: foreach my $priv (@privs) {
2107: my ($blank,@prv) = split(/:/,$priv);
2108: @prv = map { $_ .= (/\&\w+$/ ? '':'&F') } @prv;
1.264 raeburn 2109: if (@prv) {
2110: $priv = ':'.join(':',sort(@prv));
2111: }
1.260 raeburn 2112: $crprivs{$rest}{$scopes[$i]} = $priv;
2113: $i++;
2114: }
2115: }
2116: }
2117: }
2118: $currpriv{sys} = $env{"user.priv.$rolekey./"};
2119: $currpriv{dom} = $env{"user.priv.$rolekey./$udom/"};
2120: $currpriv{crs} = $env{"user.priv.$rolekey.$where"};
2121: if (keys(%crprivs)) {
2122: if (($crprivs{$rest}{sys} ne $currpriv{sys}) ||
2123: ($crprivs{$rest}{dom} ne $currpriv{dom})
2124: ||
2125: ($crprivs{$rest}{crs} ne $currpriv{crs})) {
2126: &gather_roleprivs(\%allroles,\%allgroups,\%userroles,$where,$role,$tstart,$tend,$status_in_db);
2127: unless (grep(/^\Q$role\E$/,@changed_roles)) {
2128: push(@changed_roles,$role);
2129: }
2130: my $status_in_env =
2131: &curr_role_status($currstart,$currend,$refresh,$update);
2132: if ($status_in_env eq 'active') {
2133: $customprivchg{$rolekey} = $status_in_env;
2134: }
2135: }
2136: }
2137: }
2138: }
2139: }
2140: }
2141: foreach my $envkey (keys(%env)) {
2142: next unless ($envkey =~ /^user\.role\./);
2143: next if ($dbroles{$envkey});
2144: next if ($envkey eq 'user.role.'.$env{'request.role'});
2145: my ($currstart,$currend) = split(/\./,$env{$envkey});
2146: my $status_in_env =
2147: &curr_role_status($currstart,$currend,$refresh,$update);
2148: my ($rolekey) = ($envkey =~ /^user\.role\.(.+)$/);
2149: my ($role,$rest)=split(/\./,$rolekey,2);
2150: if (&Apache::lonnet::delenv($envkey,undef,[$role])) {
2151: if ($status_in_env eq 'active') {
2152: if ($role eq 'gr') {
2153: &Apache::lonnet::delete_env_groupprivs($rest,\%courseroles,
2154: \@possroles);
2155: } else {
2156: &Apache::lonnet::delenv("user.priv.$rolekey",undef,[$role]);
2157: &Apache::lonnet::delenv("user.priv.cm.$rest",undef,['cm']);
2158: }
2159: unless (grep(/^\Q$role\E$/,@changed_roles)) {
2160: push(@changed_roles,$role);
2161: }
2162: $deletedroles{$rolekey} = 1;
2163: }
2164: }
2165: }
2166: if (($oldsec) && (@newsec > 0)) {
2167: if (@newsec > 1) {
2168: $msg = '<div class="LC_warning">'.&mt('The section has changed for your current role. Log-out and log-in again to select a role for the new section.').'</div>';
2169: } else {
2170: my $newrole = $env{'request.role'};
2171: if ($newsec[0] eq 'none') {
2172: $newrole =~ s{(/[^/])$}{};
2173: } elsif ($oldsec eq 'none') {
2174: $newrole .= '/'.$newsec[0];
2175: } else {
2176: $newrole =~ s{([^/]+)$}{$newsec[0]};
2177: }
2178: my $coursedesc = $env{'course.'.$env{'request.course.id'}.'.description'};
2179: my ($curr_role) = ($env{'request.role'} =~ m{^(\w+)\./$match_domain/$match_courseid});
2180: my %temp=('logout_'.$env{'request.course.id'} => time);
2181: &Apache::lonnet::put('email_status',\%temp);
2182: &Apache::lonnet::delenv('user.state.'.$env{'request.course.id'});
2183: &Apache::lonnet::appenv({"request.course.id" => '',
2184: "request.course.fn" => '',
2185: "request.course.uri" => '',
2186: "request.course.sec" => '',
2187: "request.role" => 'cm',
2188: "request.role.adv" => $env{'user.adv'},
2189: "request.role.domain" => $env{'user.domain'}});
2190: my $rolename = &Apache::loncommon::plainname($curr_role);
2191: $msg = '<p><form name="reselectrole" action="/adm/roles" method="post" />'.
2192: '<input type="hidden" name="newrole" value="" />'.
2193: '<input type="hidden" name="selectrole" value="1" />'.
2194: '<span class="LC_info">'.
2195: &mt('Your section has changed for your current [_1] role in [_2].',$rolename,$coursedesc).'</span><br />';
2196: my $button = '<input type="button" name="sectionchanged" value="'.
2197: &mt('Re-Select').'" onclick="javascript:enterrole(this.form,'."'$newrole','sectionchanged'".')" />';
2198: if ($newsec[0] eq 'none') {
2199: $msg .= &mt('[_1] to continue with your new section-less role.',$button);
2200: } else {
2201: $msg .= &mt('[_1] to continue with your new role in section ([_2]).',$button,$newsec[0]);
2202: }
2203: $msg .= '</form></p>';
2204: }
2205: } elsif ($currrole_expired) {
2206: $msg .= '<div class="LC_warning">';
2207: if (&Apache::loncommon::show_course()) {
2208: $msg .= &mt('Your role in the current course has expired.');
2209: } else {
2210: $msg .= &mt('Your current role has expired.');
2211: }
2212: $msg .= '<br />'.&mt('However you can continue to use this role until you logout, click the "Re-Select" button, or your session has been idle for more than 24 hours.').'</div>';
2213: }
2214: if (!@changed_roles || !(keys(%changed_groups))) {
1.264 raeburn 2215: my ($rolesmsg,$groupsmsg);
1.260 raeburn 2216: if (!@changed_roles) {
2217: if (&Apache::loncommon::show_course()) {
1.264 raeburn 2218: $rolesmsg = &mt('No new courses or communities');
1.260 raeburn 2219: } else {
1.264 raeburn 2220: $rolesmsg = &mt('No role changes');
1.260 raeburn 2221: }
2222: }
2223: if ($hasgroups && !(keys(%changed_groups)) && !(grep(/gr/,@changed_roles))) {
1.264 raeburn 2224: $groupsmsg = &mt('No changes in course/community groups');
1.260 raeburn 2225: }
2226: if (!@changed_roles && !(keys(%changed_groups))) {
1.264 raeburn 2227: if (($msg ne '') || ($groupsmsg ne '')) {
2228: $msg .= '<ul>';
2229: if ($rolesmsg) {
2230: $msg .= '<li>'.$rolesmsg.'</li>';
2231: }
2232: if ($groupsmsg) {
2233: $msg .= '<li>'.$groupsmsg.'</li>';
2234: }
2235: $msg .= '</ul>';
2236: } else {
1.265 raeburn 2237: $msg = ' <span class="LC_cusr_emph">'.$rolesmsg.'</span><br /><br />';
1.264 raeburn 2238: }
1.260 raeburn 2239: return $msg;
2240: }
2241: }
2242: my $changemsg;
2243: if (@changed_roles > 0) {
2244: if (keys(%newgroup) > 0) {
2245: my $groupmsg;
2246: foreach my $item (sort(keys(%newgroup))) {
2247: if (&is_active_course($item,$refresh,$update,\%roleshash)) {
2248: $groupmsg .= '<li>'.
2249: &mt('[_1] with status: [_2].',
2250: $item,$newgroup{$item}).'</li>';
2251: }
2252: }
2253: if ($groupmsg) {
2254: $changemsg .= '<li>'.
2255: &mt('Courses with new groups').'</li>'.
2256: '<ul>'.$groupmsg.'</ul></li>';
2257: }
2258: }
2259: if (keys(%newrole) > 0) {
2260: $changemsg .= '<li>'.&mt('New roles').
2261: '<ul>';
2262: foreach my $item (sort(keys(%newrole))) {
2263: $changemsg .= '<li>'.
2264: &mt('[_1] with status: [_2].',
2265: $item,$newrole{$item}).'</li>';
2266: }
2267: $changemsg .= '</ul></li>';
2268: }
2269: if (keys(%customprivchg) > 0) {
2270: $changemsg .= '<li>'.
2271: &mt('Custom roles with privilege changes').
2272: '<ul>';
2273: foreach my $item (sort(keys(%customprivchg))) {
2274: $changemsg .= '<li>'.$item.'</li>';
2275: }
2276: $changemsg .= '</ul></li>';
2277: }
2278: if (keys(%rolechange) > 0) {
2279: $changemsg .= '<li>'.
2280: &mt('Existing roles with status changes').'</li>'.
2281: '<ul>';
2282: foreach my $item (sort(keys(%rolechange))) {
2283: $changemsg .= '<li>'.
2284: &mt('[_1] status now: [_2].',$item,
2285: $rolechange{$item}).'</li>';
2286: }
2287: $changemsg .= '</ul></li>';
2288: }
2289: if (keys(%deletedroles) > 0) {
2290: $changemsg .= '<li>'.
2291: &mt('Existing roles deleted').'</li>'.
2292: '<ul>';
2293: foreach my $item (sort(keys(%deletedroles))) {
2294: $changemsg .= '<li>'.$item.'</li>';
2295: }
2296: $changemsg .= '</ul></li>';
2297: }
2298: }
2299: if ((keys(%changed_groups) > 0) || (keys(%groupchange) > 0)) {
2300: my $groupchgmsg;
2301: foreach my $key (sort(keys(%changed_groups))) {
2302: my $crs = 'gr/'.$key;
2303: $crs =~ s/_/\//;
2304: if (&is_active_course($crs,$refresh,$update,\%roleshash)) {
2305: if (ref($changed_groups{$key}) eq 'HASH') {
2306: my @showgroups;
2307: foreach my $group (sort(keys(%{$changed_groups{$key}}))) {
2308: if ($changed_groups{$key}{$group} eq 'active') {
2309: push(@showgroups,$group);
2310: }
2311: }
2312: if (@showgroups > 0) {
2313: $groupchgmsg .= '<li>'.
2314: &mt('Course: [_1], groups: [_2].',$key,
2315: join(', ',@showgroups)).
2316: '</li>';
2317: }
2318: }
2319: }
2320: }
2321: if (keys(%groupchange) > 0) {
2322: $groupchgmsg .= '<li>'.
2323: &mt('Existing course/community groups with status changes').'</li>'.
2324: '<ul>';
2325: foreach my $crs (sort(keys(%groupchange))) {
2326: if (ref($groupchange{$crs}) eq 'HASH') {
2327: $groupchgmsg .= '<li>'.&mt('Course/Community: [_1]','<b>'.$crs.'</b><ul>');
2328: foreach my $group (sort(keys(%{$groupchange{$crs}}))) {
2329: $groupchgmsg .= '<li>'.&mt('Group: [_1] status now: [_2].','<b>'.$group.'</b>',$groupchange{$crs}{$group}).'</li>';
2330: }
2331: $groupchgmsg .= '</ul></li>';
2332: }
2333: }
2334: $groupchgmsg .= '</ul></li>';
2335: }
2336: if ($groupchgmsg) {
2337: $changemsg .= '<li>'.
2338: &mt('Courses with changes in groups').'</li>'.
2339: '<ul>'.$groupchgmsg.'</ul></li>';
2340: }
2341: }
2342: if ($changemsg) {
2343: $msg .= '<ul>'.$changemsg.'</ul>';
2344: }
2345: &Apache::lonnet::set_userprivs(\%userroles,\%allroles,\%allgroups,\%groups_roles);
2346: my ($curr_is_adv,$curr_role_adv,$curr_author,$curr_role_author);
2347: $curr_author = $env{'user.author'};
2348: if (($env{'request.role'} =~/^au/) || ($env{'request.role'} =~/^ca/) ||
2349: ($env{'request.role'} =~/^aa/)) {
2350: $curr_role_author=1;
2351: }
2352: $curr_is_adv = $env{'user.adv'};
2353: $curr_role_adv = $env{'request.role.adv'};
2354: if (keys(%userroles) > 0) {
2355: foreach my $role (@changed_roles) {
2356: unless(grep(/^\Q$role\E$/,@rolecodes)) {
2357: push(@rolecodes,$role);
2358: }
2359: }
2360: unless(grep(/^\Qcm\E$/,@rolecodes)) {
2361: push(@rolecodes,'cm');
2362: }
2363: &Apache::lonnet::appenv(\%userroles,\@rolecodes);
2364: }
2365: my %newenv;
2366: if (&Apache::lonnet::is_advanced_user($env{'user.domain'},$env{'user.name'})) {
2367: unless ($curr_is_adv) {
2368: $newenv{'user.adv'} = 1;
2369: }
2370: } elsif ($curr_is_adv && !$curr_role_adv) {
2371: &Apache::lonnet::delenv('user.adv');
2372: }
2373: my %authorroleshash =
2374: &Apache::lonnet::get_my_roles('','','userroles',['active'],['au','ca','aa']);
2375: if (keys(%authorroleshash)) {
2376: unless ($curr_author) {
2377: $newenv{'user.author'} = 1;
2378: }
2379: } elsif ($curr_author && !$curr_role_author) {
2380: &Apache::lonnet::delenv('user.author');
2381: }
2382: if ($env{'request.course.id'}) {
2383: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
2384: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
2385: my (@activecrsgroups,$crsgroupschanged);
2386: if ($env{'request.course.groups'}) {
2387: @activecrsgroups = split(/:/,$env{'request.course.groups'});
2388: foreach my $item (keys(%deletedroles)) {
2389: if ($item =~ m{^gr\./\Q$cdom\E/\Q$cnum\E/(\w+)$}) {
2390: if (grep(/^\Q$1\E$/,@activecrsgroups)) {
2391: $crsgroupschanged = 1;
2392: last;
2393: }
2394: }
2395: }
2396: }
2397: unless ($crsgroupschanged) {
2398: foreach my $item (keys(%newgroup)) {
2399: if ($item =~ m{^gr\./\Q$cdom\E/\Q$cnum\E/(\w+)$}) {
2400: if ($newgroup{$item} eq 'active') {
2401: $crsgroupschanged = 1;
2402: last;
2403: }
2404: }
2405: }
2406: }
2407: if ((ref($changed_groups{$env{'request.course.id'}}) eq 'HASH') ||
2408: (ref($groupchange{"/$cdom/$cnum"}) eq 'HASH') ||
2409: ($crsgroupschanged)) {
2410: my %grouproles = &Apache::lonnet::get_my_roles('','','userroles',
2411: ['active'],['gr'],[$cdom],1);
2412: my @activegroups;
2413: foreach my $item (keys(%grouproles)) {
2414: next unless($item =~ /^\Q$cnum\E:\Q$cdom\E/);
2415: my $group;
2416: my ($crsn,$crsd,$role,$remainder) = split(/:/,$item,4);
2417: if ($remainder =~ /:/) {
2418: (my $other,$group) = ($remainder =~ /^([\w:]+):([^:]+)$/);
2419: } else {
2420: $group = $remainder;
2421: }
2422: if ($group ne '') {
2423: push(@activegroups,$group);
2424: }
2425: }
2426: $newenv{'request.course.groups'} = join(':',@activegroups);
2427: }
2428: }
2429: if (keys(%newenv)) {
2430: &Apache::lonnet::appenv(\%newenv);
2431: }
2432: return $msg;
2433: }
2434:
2435: sub curr_role_status {
2436: my ($start,$end,$refresh,$update) = @_;
2437: if (($start) && ($start<0)) { return 'deleted' };
2438: my $status = 'active';
2439: if (($end) && ($end<=$update)) {
2440: $status = 'previous';
2441: }
2442: if (($start) && ($refresh<$start)) {
2443: $status = 'future';
2444: }
2445: return $status;
2446: }
2447:
2448: sub gather_roleprivs {
2449: my ($allroles,$allgroups,$userroles,$area,$role,$tstart,$tend,$status) = @_;
2450: return unless ((ref($allroles) eq 'HASH') && (ref($allgroups) eq 'HASH') && (ref($userroles) eq 'HASH'));
2451: if (($area ne '') && ($role ne '')) {
2452: &Apache::lonnet::userrolelog($role,$env{'user.name'},$env{'user.domain'},
2453: $area,$tstart,$tend);
2454: my $spec=$role.'.'.$area;
2455: $userroles->{'user.role.'.$spec} = $tstart.'.'.$tend;
2456: my ($tdummy,$tdomain,$trest)=split(/\//,$area);
2457: if ($status eq 'active') {
2458: if ($role =~ /^cr\//) {
2459: &Apache::lonnet::custom_roleprivs($allroles,$role,$tdomain,$trest,$spec,$area);
2460: } elsif ($role eq 'gr') {
2461: my %rolehash = &Apache::lonnet::get('roles',[$area.'_'.$role],
2462: $env{'user.domain'},
2463: $env{'user.name'});
2464: my ($trole) = split(/_/,$rolehash{$area.'_'.$role},2);
2465: (undef,my $group_privs) = split(/\//,$trole);
2466: $group_privs = &unescape($group_privs);
2467: &Apache::lonnet::group_roleprivs($allgroups,$area,$group_privs,$tend,$tstart);
2468: } else {
2469: &Apache::lonnet::standard_roleprivs($allroles,$role,$tdomain,$spec,$trest,$area);
2470: }
2471: }
2472: }
2473: return;
2474: }
2475:
2476: sub is_active_course {
2477: my ($rolekey,$refresh,$update,$roleshashref) = @_;
2478: return unless(ref($roleshashref) eq 'HASH');
2479: my ($role,$cdom,$cnum) = split(/\//,$rolekey);
2480: my $is_active;
2481: foreach my $key (keys(%{$roleshashref})) {
2482: if ($key =~ /^\Q$cnum\E:\Q$cdom\E:/) {
2483: my ($tstart,$tend) = split(/:/,$roleshashref->{$key});
2484: my $status = &curr_role_status($tstart,$tend,$refresh,$update);
2485: if ($status eq 'active') {
2486: $is_active = 1;
2487: last;
2488: }
2489: }
2490: }
2491: return $is_active;
2492: }
2493:
1.1 harris41 2494: 1;
2495: __END__
1.32 harris41 2496:
2497: =head1 NAME
2498:
2499: Apache::lonroles - User Roles Screen
2500:
2501: =head1 SYNOPSIS
2502:
2503: Invoked by /etc/httpd/conf/srm.conf:
2504:
2505: <Location /adm/roles>
2506: PerlAccessHandler Apache::lonacc
2507: SetHandler perl-script
2508: PerlHandler Apache::lonroles
2509: ErrorDocument 403 /adm/login
2510: ErrorDocument 500 /adm/errorhandler
2511: </Location>
1.64 bowersj2 2512:
2513: =head1 OVERVIEW
2514:
2515: =head2 Choosing Roles
2516:
2517: C<lonroles> is a handler that allows a user to switch roles in
2518: mid-session. LON-CAPA attempts to work with "No Role Specified", the
2519: default role that a user has before selecting a role, as widely as
2520: possible, but certain handlers for example need specification which
2521: course they should act on, etc. Both in this scenario, and when the
2522: handler determines via C<lonnet>'s C<&allowed> function that a certain
2523: action is not allowed, C<lonroles> is used as error handler. This
2524: allows the user to select another role which may have permission to do
1.246 droeschl 2525: what they were trying to do.
1.64 bowersj2 2526:
2527: =begin latex
2528:
2529: \begin{figure}
2530: \begin{center}
2531: \includegraphics[width=0.45\paperwidth,keepaspectratio]{Sample_Roles_Screen}
2532: \caption{\label{Sample_Roles_Screen}Sample Roles Screen}
2533: \end{center}
2534: \end{figure}
2535:
2536: =end latex
2537:
2538: =head2 Role Initialization
2539:
2540: 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.
1.32 harris41 2541:
2542: =head1 INTRODUCTION
2543:
2544: This module enables a user to select what role he wishes to
2545: operate under (instructor, student, teaching assistant, course
2546: coordinator, etc). These roles are pre-established by the actions
2547: of upper-level users.
2548:
2549: This is part of the LearningOnline Network with CAPA project
2550: described at http://www.lon-capa.org.
2551:
2552: =head1 HANDLER SUBROUTINE
2553:
2554: This routine is called by Apache and mod_perl.
2555:
2556: =over 4
2557:
2558: =item *
2559:
2560: Roles Initialization (yes/no)
2561:
2562: =item *
2563:
2564: Get Error Message from Environment
2565:
2566: =item *
2567:
2568: Who is this?
2569:
2570: =item *
2571:
2572: Generate Page Output
2573:
2574: =item *
2575:
2576: Choice or no choice
2577:
2578: =item *
2579:
2580: Table
2581:
2582: =item *
2583:
2584: Privileges
2585:
2586: =back
2587:
2588: =cut
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>