Annotation of loncom/auth/lonroles.pm, revision 1.220
1.1 harris41 1: # The LearningOnline Network with CAPA
2: # User Roles Screen
1.31 www 3: #
1.220 ! raeburn 4: # $Id: lonroles.pm,v 1.219 2009/04/14 23:52:07 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
60: what they were trying to do. C<lonroles> can also be accessed via the
61: B<CRS> button in the Remote Control.
62:
63: =begin latex
64:
65: \begin{figure}
66: \begin{center}
67: \includegraphics[width=0.45\paperwidth,keepaspectratio]{Sample_Roles_Screen}
68: \caption{\label{Sample_Roles_Screen}Sample Roles Screen}
69: \end{center}
70: \end{figure}
71:
72: =end latex
73:
74: =head2 Role Initialization
75:
76: 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.
77:
78: =head1 INTRODUCTION
79:
80: This module enables a user to select what role he wishes to
81: operate under (instructor, student, teaching assistant, course
82: coordinator, etc). These roles are pre-established by the actions
83: of upper-level users.
84:
85: This is part of the LearningOnline Network with CAPA project
86: described at http://www.lon-capa.org.
87:
88: =head1 HANDLER SUBROUTINE
89:
90: This routine is called by Apache and mod_perl.
91:
92: =over 4
93:
94: =item *
95:
96: Roles Initialization (yes/no)
97:
98: =item *
99:
100: Get Error Message from Environment
101:
102: =item *
103:
104: Who is this?
105:
106: =item *
107:
108: Generate Page Output
109:
110: =item *
111:
112: Choice or no choice
113:
114: =item *
115:
116: Table
117:
118: =item *
119:
120: Privileges
121:
122: =back
123:
124: =cut
125:
126:
1.1 harris41 127: package Apache::lonroles;
128:
129: use strict;
1.118 albertel 130: use Apache::lonnet;
1.7 www 131: use Apache::lonuserstate();
1.1 harris41 132: use Apache::Constants qw(:common);
1.2 www 133: use Apache::File();
1.26 www 134: use Apache::lonmenu;
1.29 albertel 135: use Apache::loncommon;
1.104 raeburn 136: use Apache::lonhtmlcommon;
1.57 www 137: use Apache::lonannounce;
1.72 www 138: use Apache::lonlocal;
1.151 www 139: use Apache::lonpageflip();
1.167 albertel 140: use Apache::lonnavdisplay();
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.95 albertel 147: my ($r,$title,$url,$msg,$launch_nav) = @_;
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;
152: my $swinfo=&Apache::lonmenu::rawconfig();
1.96 albertel 153: my $navwindow;
1.95 albertel 154: if ($launch_nav eq 'on') {
1.166 albertel 155: $navwindow.=&Apache::lonnavdisplay::launch_win('now',undef,undef,
156: ($url =~ m-^/adm/whatsnew-));
1.96 albertel 157: } else {
158: $navwindow.=&Apache::lonnavmaps::close();
1.95 albertel 159: }
1.147 albertel 160: my $start_page = &Apache::loncommon::start_page('Switching Role',undef,
161: {'redirect' => [1,$url],});
162: my $end_page = &Apache::loncommon::end_page();
163:
1.92 www 164: # Note to style police:
165: # This must only replace the spaces, nothing else, or it bombs elsewhere.
166: $url=~s/ /\%20/g;
1.93 albertel 167: $r->print(<<ENDREDIR);
1.147 albertel 168: $start_page
1.96 albertel 169: <script type="text/javascript">
1.62 matthew 170: $swinfo
171: </script>
1.96 albertel 172: $navwindow
1.62 matthew 173: <h1>$msg</h1>
1.147 albertel 174: $end_page
1.62 matthew 175: ENDREDIR
176: return;
177: }
178:
1.150 www 179: sub error_page {
180: my ($r,$error,$dest)=@_;
181: &Apache::loncommon::content_type($r,'text/html');
182: &Apache::loncommon::no_cache($r);
183: $r->send_http_header;
184: return OK if $r->header_only;
185: $r->print(&Apache::loncommon::start_page('Problems during Course Initialization').
186: '<script type="text/javascript">'.
187: &Apache::lonmenu::rawconfig().'</script>'.
188: '<p>'.&mt('The following problems occurred:').
189: $error.
1.156 albertel 190: '</p><br /><a href="'.$dest.'">'.&mt('Continue').'</a>'.
1.150 www 191: &Apache::loncommon::end_page());
192: }
193:
1.1 harris41 194: sub handler {
1.10 www 195:
1.1 harris41 196: my $r = shift;
197:
1.6 www 198: my $now=time;
1.118 albertel 199: my $then=$env{'user.login.time'};
1.6 www 200: my $envkey;
1.107 raeburn 201: my %dcroles = ();
202: my $numdc = &check_fordc(\%dcroles,$then);
1.148 albertel 203: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'});
1.10 www 204:
1.6 www 205: # ================================================================== Roles Init
1.118 albertel 206: if ($env{'form.selectrole'}) {
1.188 www 207:
208: my $locknum=&Apache::lonnet::get_locks();
209: if ($locknum) { return 409; }
210:
1.134 www 211: if ($env{'form.newrole'}) {
212: $env{'form.'.$env{'form.newrole'}}=1;
213: }
1.118 albertel 214: if ($env{'request.course.id'}) {
1.185 raeburn 215: # Check if user is CC trying to select a course role
216: if ($env{'form.switchrole'}) {
217: if (!defined($env{'user.role.'.$env{'form.switchrole'}})) {
218: &adhoc_course_role($then);
219: }
220: }
1.118 albertel 221: my %temp=('logout_'.$env{'request.course.id'} => time);
1.33 www 222: &Apache::lonnet::put('email_status',\%temp);
1.118 albertel 223: &Apache::lonnet::delenv('user.state.'.$env{'request.course.id'});
1.100 albertel 224: }
1.186 raeburn 225: &Apache::lonnet::appenv({"request.course.id" => '',
226: "request.course.fn" => '',
227: "request.course.uri" => '',
228: "request.course.sec" => '',
229: "request.role" => 'cm',
230: "request.role.adv" => $env{'user.adv'},
231: "request.role.domain" => $env{'user.domain'}});
1.182 www 232: # Check if user is a DC trying to enter a course or author space and needs privs to be created
1.107 raeburn 233: if ($numdc > 0) {
1.118 albertel 234: foreach my $envkey (keys %env) {
1.182 www 235: # Is this an ad-hoc CC-role?
1.146 raeburn 236: if (my ($domain,$coursenum) =
1.171 albertel 237: ($envkey =~ m-^form\.cc\./($match_domain)/($match_courseid)$-)) {
1.146 raeburn 238: if ($dcroles{$domain}) {
1.218 raeburn 239: &Apache::lonnet::check_adhoc_privs($domain,$coursenum,
240: $then,$now,'cc');
1.182 www 241: }
242: last;
243: }
1.193 raeburn 244: # Is this an ad-hoc CA-role?
1.183 www 245: if (my ($domain,$user) =
246: ($envkey =~ m-^form\.ca\./($match_domain)/($match_username)$-)) {
1.206 raeburn 247: if (($domain eq $env{'user.domain'}) && ($user eq $env{'user.name'})) {
248: delete($env{$envkey});
249: $env{'form.au./'.$domain.'/'} = 1;
250: my ($server_status,$home) = &check_author_homeserver($user,$domain);
251: if ($server_status eq 'switchserver') {
252: my $trolecode = 'au./'.$domain.'/';
253: my $switchserver = '/adm/switchserver?otherserver='.$home.'&role='.$trolecode;
254: $r->internal_redirect($switchserver);
255: }
256: last;
257: }
258: if (my ($castart,$caend) = ($env{'user.role.ca./'.$domain.'/'.$user} =~ /^(\d*)\.(\d*)$/)) {
259: if (((($castart) && ($castart < $now)) || !$castart) &&
260: ((!$caend) || (($caend) && ($caend > $now)))) {
261: my ($server_status,$home) = &check_author_homeserver($user,$domain);
262: if ($server_status eq 'switchserver') {
263: my $trolecode = 'ca./'.$domain.'/'.$user;
264: my $switchserver = '/adm/switchserver?otherserver='.$home.'&role='.$trolecode;
265: $r->internal_redirect($switchserver);
266: }
267: last;
268: }
269: }
270: # Check if author blocked ca-access
1.190 www 271: my %blocked=&Apache::lonnet::get('environment',['domcoord.author'],$domain,$user);
272: if ($blocked{'domcoord.author'} eq 'blocked') {
1.206 raeburn 273: delete($env{$envkey});
274: $env{'user.error.msg'}=':::1:User '.$user.' in domain '.$domain.' blocked domain coordinator access';
275: last;
1.190 www 276: }
1.193 raeburn 277: if ($dcroles{$domain}) {
278: my ($server_status,$home) = &check_author_homeserver($user,$domain);
279: if (($server_status eq 'ok') || ($server_status eq 'switchserver')) {
1.218 raeburn 280: &Apache::lonnet::check_adhoc_privs($domain,$user,$then,
281: $now,'ca');
1.193 raeburn 282: if ($server_status eq 'switchserver') {
283: my $trolecode = 'ca./'.$domain.'/'.$user;
284: my $switchserver = '/adm/switchserver?'
285: .'otherserver='.$home.'&role='.$trolecode;
286: $r->internal_redirect($switchserver);
287: }
288: } else {
289: delete($env{$envkey});
290: }
1.183 www 291: } else {
292: delete($env{$envkey});
1.182 www 293: }
294: last;
295: }
1.107 raeburn 296: }
297: }
298:
1.118 albertel 299: foreach $envkey (keys %env) {
1.40 matthew 300: next if ($envkey!~/^user\.role\./);
1.102 raeburn 301: my ($where,$trolecode,$role,$tstatus,$tend,$tstart);
1.218 raeburn 302: &Apache::lonnet::role_status($envkey,$then,$now,\$role,\$where,
303: \$trolecode,\$tstatus,\$tstart,\$tend);
1.118 albertel 304: if ($env{'form.'.$trolecode}) {
1.55 albertel 305: if ($tstatus eq 'is') {
306: $where=~s/^\///;
307: my ($cdom,$cnum,$csec)=split(/\//,$where);
1.137 raeburn 308: # check for course groups
309: my %coursegroups = &Apache::lonnet::get_active_groups(
310: $env{'user.domain'},$env{'user.name'},$cdom, $cnum);
311: my $cgrps = join(':',keys(%coursegroups));
312:
1.111 albertel 313: # store role if recent_role list being kept
1.118 albertel 314: if ($env{'environment.recentroles'}) {
1.158 albertel 315: my %frozen_roles =
316: &Apache::lonhtmlcommon::get_recent_frozen('roles',$env{'environment.recentrolesn'});
1.111 albertel 317: &Apache::lonhtmlcommon::store_recent('roles',
1.158 albertel 318: $trolecode,' ',$frozen_roles{$trolecode});
1.111 albertel 319: }
320:
321:
1.53 www 322: # check for keyed access
1.55 albertel 323: if (($role eq 'st') &&
1.118 albertel 324: ($env{'course.'.$cdom.'_'.$cnum.'.keyaccess'} eq 'yes')) {
1.89 www 325: # who is key authority?
326: my $authdom=$cdom;
327: my $authnum=$cnum;
1.118 albertel 328: if ($env{'course.'.$cdom.'_'.$cnum.'.keyauth'}) {
1.89 www 329: ($authnum,$authdom)=
1.172 albertel 330: split(/:/,$env{'course.'.$cdom.'_'.$cnum.'.keyauth'});
1.89 www 331: }
332: # check with key authority
333: unless (&Apache::lonnet::validate_access_key(
1.118 albertel 334: $env{'environment.key.'.$cdom.'_'.$cnum},
1.89 www 335: $authdom,$authnum)) {
1.53 www 336: # there is no valid key
1.118 albertel 337: if ($env{'form.newkey'}) {
1.53 www 338: # student attempts to register a new key
1.89 www 339: &Apache::loncommon::content_type($r,'text/html');
340: &Apache::loncommon::no_cache($r);
341: $r->send_http_header;
342: my $swinfo=&Apache::lonmenu::rawconfig();
1.147 albertel 343: my $start_page=&Apache::loncommon::start_page
1.89 www 344: ('Verifying Access Key to Unlock this Course');
1.147 albertel 345: my $end_page=&Apache::loncommon::end_page();
1.90 www 346: my $buttontext=&mt('Enter Course');
347: my $message=&mt('Successfully registered key');
348: my $assignresult=
349: &Apache::lonnet::assign_access_key(
1.118 albertel 350: $env{'form.newkey'},
1.90 www 351: $authdom,$authnum,
1.91 www 352: $cdom,$cnum,
1.118 albertel 353: $env{'user.domain'},
354: $env{'user.name'},
1.204 bisitz 355: &mt('Assigned from [_1] at [_2] for [_3]'
356: ,$ENV{'REMOTE_ADDR'}
357: ,&Apache::lonlocal::locallocaltime()
358: ,$trolecode)
359: );
1.90 www 360: unless ($assignresult eq 'ok') {
361: $assignresult=~s/^error\:\s*//;
362: $message=&mt($assignresult).
363: '<br /><a href="/adm/logout">'.
1.89 www 364: &mt('Logout').'</a>';
1.90 www 365: $buttontext=&mt('Re-Enter Key');
366: }
1.89 www 367: $r->print(<<ENDENTEREDKEY);
1.147 albertel 368: $start_page
1.179 raeburn 369: <script type="text/javascript">
1.89 www 370: $swinfo
371: </script>
372: <form method="post">
373: <input type="hidden" name="selectrole" value="1" />
374: <input type="hidden" name="$trolecode" value="1" />
1.211 tempelho 375: <span class="LC_fontsize_large">$message</span><br />
1.89 www 376: <input type="submit" value="$buttontext" />
377: </form>
1.147 albertel 378: $end_page
1.89 www 379: ENDENTEREDKEY
380: return OK;
1.55 albertel 381: } else {
1.53 www 382: # print form to enter a new key
1.73 www 383: &Apache::loncommon::content_type($r,'text/html');
1.55 albertel 384: &Apache::loncommon::no_cache($r);
385: $r->send_http_header;
386: my $swinfo=&Apache::lonmenu::rawconfig();
1.147 albertel 387: my $start_page=&Apache::loncommon::start_page
1.55 albertel 388: ('Enter Access Key to Unlock this Course');
1.147 albertel 389: my $end_page=&Apache::loncommon::end_page();
1.55 albertel 390: $r->print(<<ENDENTERKEY);
1.147 albertel 391: $start_page
1.179 raeburn 392: <script type="text/javascript">
1.53 www 393: $swinfo
394: </script>
395: <form method="post">
1.89 www 396: <input type="hidden" name="selectrole" value="1" />
397: <input type="hidden" name="$trolecode" value="1" />
1.118 albertel 398: <input type="text" size="20" name="newkey" value="$env{'form.newkey'}" />
1.53 www 399: <input type="submit" value="Enter key" />
400: </form>
1.147 albertel 401: $end_page
1.53 www 402: ENDENTERKEY
1.55 albertel 403: return OK;
404: }
405: }
406: }
1.118 albertel 407: &Apache::lonnet::log($env{'user.domain'},
408: $env{'user.name'},
409: $env{'user.home'},
1.87 www 410: "Role ".$trolecode);
1.101 albertel 411:
1.56 www 412: &Apache::lonnet::appenv(
1.186 raeburn 413: {'request.role' => $trolecode,
414: 'request.role.domain' => $cdom,
415: 'request.course.sec' => $csec,
416: 'request.course.groups' => $cgrps});
1.101 albertel 417: my $tadv=0;
1.62 matthew 418:
1.125 www 419: if (($cnum) && ($role ne 'ca') && ($role ne 'aa')) {
1.152 raeburn 420: my $msg;
1.55 albertel 421: my ($furl,$ferr)=
422: &Apache::lonuserstate::readmap($cdom.'/'.$cnum);
1.118 albertel 423: if (($env{'form.orgurl'}) &&
424: ($env{'form.orgurl'}!~/^\/adm\/flip/)) {
425: my $dest=$env{'form.orgurl'};
1.219 raeburn 426: if ($env{'form.symb'}) {
427: if ($dest =~ /\?/) {
428: $dest .= '&';
429: } else {
430: $dest .= '?'
431: }
432: $dest .= 'symb='.$env{'form.symb'};
433: }
1.117 albertel 434: if (&Apache::lonnet::allowed('adv') eq 'F') { $tadv=1; }
1.186 raeburn 435: &Apache::lonnet::appenv({'request.role.adv'=>$tadv});
1.150 www 436: if (($ferr) && ($tadv)) {
437: &error_page($r,$ferr,$dest);
438: } else {
439: $r->internal_redirect($dest);
440: }
1.55 albertel 441: return OK;
442: } else {
1.155 albertel 443: if (!$env{'request.course.id'}) {
1.55 albertel 444: &Apache::lonnet::appenv(
1.186 raeburn 445: {"request.course.id" => $cdom.'_'.$cnum});
1.61 www 446: $furl='/adm/roles?tryagain=1';
1.55 albertel 447: $msg=
1.157 albertel 448: '<h1><span class="LC_error">'.
1.162 albertel 449: &mt('Could not initialize [_1] at this time.',
450: $env{'course.'.$cdom.'_'.$cnum.'.description'}).
1.157 albertel 451: '</span></h1><h3>'.&mt('Please try again.').'</h3>'.$ferr;
1.55 albertel 452: }
1.117 albertel 453: if (&Apache::lonnet::allowed('adv') eq 'F') { $tadv=1; }
1.186 raeburn 454: &Apache::lonnet::appenv({'request.role.adv'=>$tadv});
1.152 raeburn 455:
1.150 www 456: if (($ferr) && ($tadv)) {
457: &error_page($r,$ferr,$furl);
458: } else {
459: # Check to see if the user is a CC entering a course
460: # for the first time
461: my (undef, undef, $role, $courseid) = split(/\./, $envkey);
462: if (substr($courseid, 0, 1) eq '/') {
463: $courseid = substr($courseid, 1);
464: }
465: $courseid =~ s/\//_/;
466: if ($role eq 'cc' && $env{'course.' . $courseid .
467: '.course.helper.not.run'}) {
468: $furl = "/adm/helper/course.initialization.helper";
469: # Send the user to the course they selected
470: } elsif ($env{'request.course.id'}) {
1.185 raeburn 471: if ($env{'form.destinationurl'}) {
472: my $dest = $env{'form.destinationurl'};
1.203 raeburn 473: if ($env{'form.destsymb'} ne '') {
474: my $esc_symb = &HTML::Entities::encode($env{'form.destsymb'},'"<>&');
475: $dest .= '?symb='.$esc_symb;
476: }
1.185 raeburn 477: &redirect_user($r,&mt('Entering [_1]',
478: $env{'course.'.$courseid.'.description'}),
479: $dest,$msg,
480: $env{'environment.remotenavmap'});
481: return OK;
482: }
1.150 www 483: if (&Apache::lonnet::allowed('whn',
484: $env{'request.course.id'})
485: || &Apache::lonnet::allowed('whn',
486: $env{'request.course.id'}.'/'
487: .$env{'request.course.sec'})
488: ) {
489: my $startpage = &courseloadpage($courseid);
490: unless ($startpage eq 'firstres') {
1.204 bisitz 491: $msg = &mt('Entering [_1] ...',
1.162 albertel 492: $env{'course.'.$courseid.'.description'});
1.150 www 493: &redirect_user($r,&mt('New in course'),
494: '/adm/whatsnew?refpage=start',$msg,
495: $env{'environment.remotenavmap'});
496: return OK;
497: }
498: }
499: }
1.151 www 500: # Are we allowed to look at the first resource?
1.169 albertel 501: if ($furl !~ m|^/adm/|) {
1.151 www 502: # Guess not ...
503: $furl=&Apache::lonpageflip::first_accessible_resource();
504: }
1.162 albertel 505: $msg = &mt('Entering [_1] ...',
506: $env{'course.'.$courseid.'.description'});
507: &redirect_user($r,&mt('Entering [_1]',
508: $env{'course.'.$courseid.'.description'}),
1.150 www 509: $furl,$msg,
510: $env{'environment.remotenavmap'});
1.58 bowersj2 511: }
1.124 albertel 512: return OK;
1.55 albertel 513: }
514: }
1.62 matthew 515: #
516: # Send the user to the construction space they selected
1.125 www 517: if ($role =~ /^(au|ca|aa)$/) {
1.62 matthew 518: my $redirect_url = '/priv/';
519: if ($role eq 'au') {
1.118 albertel 520: $redirect_url.=$env{'user.name'};
1.62 matthew 521: } else {
522: $where =~ /\/(.*)$/;
523: $redirect_url .= $1;
524: }
525: $redirect_url .= '/';
1.78 sakharuk 526: &redirect_user($r,&mt('Entering Construction Space'),
1.62 matthew 527: $redirect_url);
528: return OK;
529: }
1.104 raeburn 530: if ($role eq 'dc') {
1.108 raeburn 531: my $redirect_url = '/adm/menu/';
532: &redirect_user($r,&mt('Loading Domain Coordinator Menu'),
1.104 raeburn 533: $redirect_url);
1.108 raeburn 534: return OK;
1.104 raeburn 535: }
1.220 ! raeburn 536: if ($role eq 'sc') {
! 537: my $redirect_url = '/adm/grades?command=scantronupload';
! 538: &redirect_user($r,&mt('Loading Data Upload Page'),
! 539: $redirect_url);
! 540: return OK;
! 541: }
1.55 albertel 542: }
543: }
1.6 www 544: }
1.40 matthew 545: }
1.44 www 546:
1.10 www 547:
1.6 www 548: # =============================================================== No Roles Init
1.10 www 549:
1.73 www 550: &Apache::loncommon::content_type($r,'text/html');
1.30 albertel 551: &Apache::loncommon::no_cache($r);
1.10 www 552: $r->send_http_header;
553: return OK if $r->header_only;
554:
1.214 raeburn 555: my $brcrum =[{href=>"/admm/roles",text=>"User Roles"}];
1.52 www 556: my $swinfo=&Apache::lonmenu::rawconfig();
1.217 schafran 557: my $start_page=&Apache::loncommon::start_page('My Roles',undef,{bread_crumbs=>$brcrum});
1.134 www 558: my $standby=&mt('Role selected. Please stand by.');
1.135 albertel 559: $standby=~s/\n/\\n/g;
1.184 raeburn 560: 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 561:
1.10 www 562: $r->print(<<ENDHEADER);
1.147 albertel 563: $start_page
1.163 www 564: <br />
1.179 raeburn 565: <noscript>
566: $noscript
567: </noscript>
568: <script type="text/javascript">
1.26 www 569: $swinfo
570: window.focus();
1.134 www 571:
572: active=true;
573:
574: function enterrole (thisform,rolecode,buttonname) {
575: if (active) {
576: active=false;
577: document.title='$standby';
578: window.status='$standby';
579: thisform.newrole.value=rolecode;
580: thisform.submit();
581: } else {
582: alert('$standby');
583: }
584: }
1.26 www 585: </script>
1.10 www 586: ENDHEADER
1.6 www 587:
1.2 www 588: # ------------------------------------------ Get Error Message from Environment
589:
1.118 albertel 590: my ($fn,$priv,$nochoose,$error,$msg)=split(/:/,$env{'user.error.msg'});
591: if ($env{'user.error.msg'}) {
1.55 albertel 592: $r->log_reason(
1.118 albertel 593: "$msg for $env{'user.name'} domain $env{'user.domain'} access $priv",$fn);
1.12 www 594: }
1.1 harris41 595:
1.61 www 596: # ------------------------------------------------- Can this user re-init, etc?
1.6 www 597:
1.118 albertel 598: my $advanced=$env{'user.adv'};
1.61 www 599: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['tryagain']);
1.118 albertel 600: my $tryagain=$env{'form.tryagain'};
1.209 raeburn 601: my $reinit=$env{'user.reinit'};
602: delete $env{'user.reinit'};
1.6 www 603:
1.2 www 604: # -------------------------------------------------------- Generate Page Output
1.6 www 605: # --------------------------------------------------------------- Error Header?
1.2 www 606: if ($error) {
1.187 bisitz 607: $r->print("<h1>".&mt('LON-CAPA Access Control')."</h1>");
1.174 albertel 608: $r->print("<!-- LONCAPAACCESSCONTROLERRORSCREEN --><hr /><pre>");
609: if ($priv ne '') {
1.187 bisitz 610: $r->print(&mt('Access : ').&Apache::lonnet::plaintext($priv)."\n");
1.174 albertel 611: }
612: if ($fn ne '') {
1.187 bisitz 613: $r->print(&mt('Resource: ').&Apache::lonenc::check_encrypt($fn)."\n");
1.174 albertel 614: }
615: if ($msg ne '') {
1.187 bisitz 616: $r->print(&mt('Action : ').$msg."\n");
1.174 albertel 617: }
618: $r->print("</pre><hr />");
1.120 albertel 619: my $url=$fn;
620: my $last;
621: if (tie(my %hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db',
622: &GDBM_READER(),0640)) {
623: $last=$hash{'last_known'};
624: untie(%hash);
625: }
1.149 www 626: if ($last) { $fn.='?symb='.&escape($last); }
1.120 albertel 627:
628: &Apache::londocs::changewarning($r,undef,'You have modified your course recently, [_1] may fix this access problem.',
629: &Apache::lonenc::check_encrypt($fn));
1.2 www 630: } else {
1.118 albertel 631: if ($env{'user.error.msg'}) {
1.209 raeburn 632: if ($reinit) {
633: $r->print(
634: '<h3><span class="LC_error">'.
635: &mt('As your session file for the course has expired, you will need to re-select the course.').'</span></h3>');
636: } else {
637: $r->print(
1.157 albertel 638: '<h3><span class="LC_error">'.
639: &mt('You need to choose another user role or enter a specific course for this function').'</span></h3>');
1.209 raeburn 640: }
641: }
1.2 www 642: }
1.6 www 643: # -------------------------------------------------------- Choice or no choice?
1.2 www 644: if ($nochoose) {
1.177 www 645: $r->print("<h2>".&mt('Sorry ...')."</h2>\n<span class='LC_error'>".
646: &mt('This action is currently not authorized.').'</span>'.
1.150 www 647: &Apache::loncommon::end_page());
648: return OK;
1.6 www 649: } else {
1.18 www 650: if (($ENV{'REDIRECT_QUERY_STRING'}) && ($fn)) {
651: $fn.='?'.$ENV{'REDIRECT_QUERY_STRING'};
1.6 www 652: }
1.84 www 653: $r->print('<form method="post" name="rolechoice" action="'.(($fn)?$fn:$r->uri).'">');
1.116 albertel 654: $r->print('<input type="hidden" name="orgurl" value="'.$fn.'" />');
655: $r->print('<input type="hidden" name="selectrole" value="1" />');
1.134 www 656: $r->print('<input type="hidden" name="newrole" value="" />');
1.6 www 657: }
1.75 albertel 658: my (%roletext,%sortrole,%roleclass);
1.84 www 659: my $countactive=0;
1.191 raeburn 660: my $countfuture=0;
661: my $countwill=0;
1.84 www 662: my $inrole=0;
663: my $possiblerole='';
1.191 raeburn 664: my %futureroles;
665: my %roles_nextlogin;
1.215 raeburn 666: my %timezones;
1.118 albertel 667: foreach $envkey (sort keys %env) {
1.35 matthew 668: my $button = 1;
1.49 www 669: my $switchserver='';
1.75 albertel 670: my $roletext;
671: my $sortkey;
1.2 www 672: if ($envkey=~/^user\.role\./) {
1.212 bisitz 673: my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus,$tpstart,$tpend);
1.218 raeburn 674: &Apache::lonnet::role_status($envkey,$then,$now,\$role,\$where,
675: \$trolecode,\$tstatus,\$tstart,\$tend);
1.136 raeburn 676: next if (!defined($role) || $role eq '' || $role =~ /^gr/);
1.215 raeburn 677: my $timezone = &role_timezone($where,\%timezones);
1.102 raeburn 678: $tremark='';
679: $tpstart=' ';
680: $tpend=' ';
1.4 www 681: if ($tstart) {
1.215 raeburn 682: $tpstart=&Apache::lonlocal::locallocaltime($tstart,$timezone);
1.4 www 683: }
684: if ($tend) {
1.215 raeburn 685: $tpend=&Apache::lonlocal::locallocaltime($tend,$timezone);
1.4 www 686: }
1.118 albertel 687: if ($env{'request.role'} eq $trolecode) {
1.6 www 688: $tstatus='selected';
689: }
1.4 www 690: my $tbg;
1.164 albertel 691: if (($tstatus eq 'is')
692: || ($tstatus eq 'selected')
693: || ($tstatus eq 'will')
694: || ($tstatus eq 'future')
695: || ($env{'form.showall'})) {
1.35 matthew 696: if ($tstatus eq 'is') {
1.212 bisitz 697: $tbg='LC_roles_is';
1.84 www 698: $possiblerole=$trolecode;
699: $countactive++;
1.35 matthew 700: } elsif ($tstatus eq 'future') {
1.212 bisitz 701: $tbg='LC_roles_future';
1.49 www 702: $button=0;
1.191 raeburn 703: $futureroles{$trolecode} = $tstart.':'.$tend;
704: $countfuture ++;
1.35 matthew 705: } elsif ($tstatus eq 'will') {
1.212 bisitz 706: $tbg='LC_roles_will';
1.204 bisitz 707: $tremark.=&mt('Active at next login.').' ';
1.191 raeburn 708: $roles_nextlogin{$trolecode} = $tstart.':'.$tend;
709: $countwill ++;
1.35 matthew 710: } elsif ($tstatus eq 'expired') {
1.212 bisitz 711: $tbg='LC_roles_expired';
1.49 www 712: $button=0;
1.35 matthew 713: } elsif ($tstatus eq 'will_not') {
1.212 bisitz 714: $tbg='LC_roles_will_not';
1.204 bisitz 715: $tremark.=&mt('Expired after logout.').' ';
1.35 matthew 716: } elsif ($tstatus eq 'selected') {
1.212 bisitz 717: $tbg='LC_roles_selected';
1.84 www 718: $inrole=1;
1.86 albertel 719: $countactive++;
1.204 bisitz 720: $tremark.=&mt('Currently selected.').' ';
1.35 matthew 721: }
722: my $trole;
723: if ($role =~ /^cr\//) {
724: my ($rdummy,$rdomain,$rauthor,$rrole)=split(/\//,$role);
1.132 albertel 725: if ($tremark) { $tremark.='<br />'; }
1.204 bisitz 726: $tremark.=&mt('Defined by [_1] at [_2].',$rauthor,$rdomain);
1.159 albertel 727: }
728: $trole=Apache::lonnet::plaintext($role);
1.35 matthew 729: my $ttype;
730: my $twhere;
731: my ($tdom,$trest,$tsection)=
732: split(/\//,Apache::lonnet::declutter($where));
733: # First, Co-Authorship roles
1.125 www 734: if (($role eq 'ca') || ($role eq 'aa')) {
1.39 stredwic 735: my $home = &Apache::lonnet::homeserver($trest,$tdom);
1.83 albertel 736: my $allowed=0;
737: my @ids=&Apache::lonnet::current_machine_ids();
738: foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
739: if (!$allowed) {
1.49 www 740: $button=0;
1.130 albertel 741: $switchserver='otherserver='.$home.'&role='.$trolecode;
1.49 www 742: }
1.35 matthew 743: #next if ($home eq 'no_host');
1.176 albertel 744: $home = &Apache::lonnet::hostname($home);
1.78 sakharuk 745: $ttype='Construction Space';
1.72 www 746: $twhere=&mt('User').': '.$trest.'<br />'.&mt('Domain').
747: ': '.$tdom.'<br />'.
748: ' '.&mt('Server').': '.$home;
1.118 albertel 749: $env{'course.'.$tdom.'_'.$trest.'.description'}='ca';
1.82 www 750: $tremark.=&Apache::lonhtmlcommon::authorbombs('/res/'.$tdom.'/'.$trest.'/');
1.75 albertel 751: $sortkey=$role."$trest:$tdom";
1.35 matthew 752: } elsif ($role eq 'au') {
753: # Authors
754: my $home = &Apache::lonnet::homeserver
1.118 albertel 755: ($env{'user.name'},$env{'user.domain'});
1.83 albertel 756: my $allowed=0;
757: my @ids=&Apache::lonnet::current_machine_ids();
758: foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
759: if (!$allowed) {
1.49 www 760: $button=0;
1.143 albertel 761: $switchserver='otherserver='.$home.'&role='.$trolecode;
1.49 www 762: }
1.35 matthew 763: #next if ($home eq 'no_host');
1.176 albertel 764: $home = &Apache::lonnet::hostname($home);
1.78 sakharuk 765: $ttype='Construction Space';
1.72 www 766: $twhere=&mt('Domain').': '.$tdom.'<br />'.&mt('Server').
767: ': '.$home;
1.118 albertel 768: $env{'course.'.$tdom.'_'.$trest.'.description'}='ca';
769: $tremark.=&Apache::lonhtmlcommon::authorbombs('/res/'.$tdom.'/'.$env{'user.name'}.'/');
1.75 albertel 770: $sortkey=$role;
1.35 matthew 771: } elsif ($trest) {
772: my $tcourseid=$tdom.'_'.$trest;
1.153 raeburn 773: $ttype = &Apache::loncommon::course_type($tcourseid);
774: $trole = &Apache::lonnet::plaintext($role,$ttype);
1.118 albertel 775: if ($env{'course.'.$tcourseid.'.description'}) {
776: $twhere=$env{'course.'.$tcourseid.'.description'};
1.80 albertel 777: $sortkey=$role."\0".$tdom."\0".$twhere."\0".$envkey;
1.72 www 778: unless ($twhere eq &mt('Currently not available')) {
1.211 tempelho 779: $twhere.=' <span class="LC_fontsize_small">'.
1.212 bisitz 780: &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom).
1.211 tempelho 781: '</span>';
1.55 albertel 782: }
1.8 www 783: } else {
1.105 raeburn 784: my %newhash=&Apache::lonnet::coursedescription($tcourseid);
1.35 matthew 785: if (%newhash) {
1.80 albertel 786: $sortkey=$role."\0".$tdom."\0".$newhash{'description'}.
1.77 albertel 787: "\0".$envkey;
1.49 www 788: $twhere=$newhash{'description'}.
1.211 tempelho 789: ' <span class="LC_fontsize_small">'.
1.212 bisitz 790: &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom).
1.211 tempelho 791: '</span>';
1.152 raeburn 792: $ttype = $newhash{'type'};
1.153 raeburn 793: $trole = &Apache::lonnet::plaintext($role,$ttype);
1.35 matthew 794: } else {
1.72 www 795: $twhere=&mt('Currently not available');
1.118 albertel 796: $env{'course.'.$tcourseid.'.description'}=$twhere;
1.80 albertel 797: $sortkey=$role."\0".$tdom."\0".$twhere."\0".$envkey;
1.152 raeburn 798: $ttype = 'Unavailable';
1.35 matthew 799: }
1.8 www 800: }
1.121 albertel 801: if ($tsection) {
1.175 albertel 802: $twhere.='<br />'.&mt('Section').': '.$tsection;
1.121 albertel 803: }
1.72 www 804: if ($role ne 'st') { $twhere.="<br />".&mt('Domain').":".$tdom; }
1.35 matthew 805: } elsif ($tdom) {
1.78 sakharuk 806: $ttype='Domain';
1.35 matthew 807: $twhere=$tdom;
1.75 albertel 808: $sortkey=$role.$twhere;
1.35 matthew 809: } else {
1.78 sakharuk 810: $ttype='System';
1.72 www 811: $twhere=&mt('system wide');
1.75 albertel 812: $sortkey=$role.$twhere;
1.13 www 813: }
1.212 bisitz 814: $roletext.=&build_roletext($trolecode,$tdom,$trest,$tstatus,$tryagain,$advanced,$tremark,$tbg,$trole,$twhere,$tpstart,$tpend,$nochoose,$button,$switchserver,$reinit);
1.75 albertel 815: $roletext{$envkey}=$roletext;
816: if (!$sortkey) {$sortkey=$twhere."\0".$envkey;}
817: $sortrole{$sortkey}=$envkey;
818: $roleclass{$envkey}=$ttype;
1.55 albertel 819: }
1.4 www 820: }
1.75 albertel 821: }
1.196 raeburn 822: if ($env{'user.adv'}) {
823: $r->print(
1.212 bisitz 824: '<p><label>'.&mt('Show all roles').': <input type="checkbox" name="showall"');
1.196 raeburn 825: if ($env{'form.showall'}) { $r->print(' checked="checked" '); }
1.212 bisitz 826: $r->print(' /></label><input type="submit" value="'.&mt('Display').'" /></p>');
1.196 raeburn 827: } else {
828: if ($countactive > 0) {
1.216 raeburn 829: &queued_selfenrollment($r);
1.196 raeburn 830: my $domdesc = &Apache::lonnet::domain($env{'user.domain'},'description');
1.201 raeburn 831: my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&');
832: $r->print('<p>'.&mt('[_1]Visit the [_2]Course Catalog[_3] to view all [_4] LON-CAPA courses.','<b>','<a href="/adm/coursecatalog?showdom='.$esc_dom.'">','</a></b>',$domdesc).'<br />'.&mt('If a course is [_1]not[_2] in your list of current courses below, you may be able to enroll if self-enrollment is permitted.','<b>','</b>').'</p>');
1.196 raeburn 833: }
834: }
835:
1.84 www 836: # No active roles
837: if ($countactive==0) {
838: if ($inrole) {
839: $r->print('<h2>'.&mt('Currently no additional roles or courses').'</h2>');
840: } else {
841: $r->print('<h2>'.&mt('Currently no active roles or courses').'</h2>');
842: }
1.191 raeburn 843: &findcourse_advice($r);
844: $r->print('</form>');
845: if ($countfuture) {
846: $r->print(&mt('The following [quant,_1,role,roles] will become active in the future:',$countfuture));
847: my $doheaders = &roletable_headers($r,\%roleclass,\%sortrole,
848: $nochoose);
849: &print_rolerows($r,$doheaders,\%roleclass,\%sortrole,\%dcroles,
850: \%roletext);
851: my $tremark='';
1.212 bisitz 852: my $tbg;
1.191 raeburn 853: if ($env{'request.role'} eq 'cm') {
1.212 bisitz 854: $tbg="LC_roles_selected";
1.204 bisitz 855: $tremark=&mt('Currently selected.').' ';
1.191 raeburn 856: } else {
1.212 bisitz 857: $tbg="LC_roles_is";
1.191 raeburn 858: }
1.212 bisitz 859: $r->print(&Apache::loncommon::start_data_table_row()
860: .'<td class="'.$tbg.'"> </td>'
861: .'<td colspan="3">'
862: .&mt('No role specified')
863: .'</td>'
864: .'<td>'.$tremark.' </td>'
865: .&Apache::loncommon::end_data_table_row()
866: );
1.191 raeburn 867:
1.212 bisitz 868: $r->print(&Apache::loncommon::end_data_table());
1.191 raeburn 869: }
870: $r->print(&Apache::loncommon::end_page());
1.84 www 871: return OK;
872: }
873: # ----------------------------------------------------------------------- Table
1.202 raeburn 874: unless ((!&Apache::lonmenu::show_course()) || ($nochoose) || ($countactive==1)) {
1.173 albertel 875: $r->print("<h2>".&mt('Select a Course to Enter')."</h2>\n");
1.84 www 876: }
1.191 raeburn 877: my $doheaders = &roletable_headers($r,\%roleclass,\%sortrole,$nochoose);
1.118 albertel 878: if ($env{'environment.recentroles'}) {
1.111 albertel 879: my %recent_roles =
1.118 albertel 880: &Apache::lonhtmlcommon::get_recent('roles',$env{'environment.recentrolesn'});
1.111 albertel 881: my $output='';
882: foreach (sort(keys(%recent_roles))) {
883: if (defined($roletext{'user.role.'.$_})) {
884: $output.=$roletext{'user.role.'.$_};
1.170 albertel 885: if ($_ =~ m-dc\./($match_domain)/-
886: && $dcroles{$1}) {
1.192 raeburn 887: $output .= &adhoc_roles_row($1,'recent');
1.133 albertel 888: }
1.113 raeburn 889: } elsif ($numdc > 0) {
890: unless ($_ =~/^error\:/) {
891: $output.=&display_cc_role('user.role.'.$_);
892: }
893: }
1.111 albertel 894: }
895: if ($output) {
1.212 bisitz 896: $r->print(&Apache::loncommon::start_data_table_empty_row()
897: .'<td align="center" colspan="5">'
898: .&mt('Recent Roles')
899: .'</td>'
900: .&Apache::loncommon::end_data_table_empty_row()
901: );
1.111 albertel 902: $r->print($output);
1.114 raeburn 903: $doheaders ++;
1.111 albertel 904: }
905: }
906:
1.104 raeburn 907: if ($numdc > 0) {
1.112 raeburn 908: $r->print(&coursepick_jscript());
1.193 raeburn 909: $r->print(&Apache::loncommon::coursebrowser_javascript().
910: &Apache::loncommon::authorbrowser_javascript());
1.108 raeburn 911: }
1.191 raeburn 912: &print_rolerows($r,$doheaders,\%roleclass,\%sortrole,\%dcroles,\%roletext);
1.202 raeburn 913: if ($countactive > 1) {
914: my $tremark='';
1.212 bisitz 915: my $tbg;
1.202 raeburn 916: if ($env{'request.role'} eq 'cm') {
1.212 bisitz 917: $tbg="LC_roles_selected";
1.204 bisitz 918: $tremark=&mt('Currently selected.').' ';
1.202 raeburn 919: } else {
1.212 bisitz 920: $tbg="LC_roles_is";
1.202 raeburn 921: }
1.212 bisitz 922: $r->print(&Apache::loncommon::start_data_table_row());
1.202 raeburn 923: unless ($nochoose) {
924: if ($env{'request.role'} ne 'cm') {
1.212 bisitz 925: $r->print('<td class="'.$tbg.'"><input type="submit" value="'.
1.202 raeburn 926: &mt('Select').'" name="cm" /></td>');
927: } else {
1.212 bisitz 928: $r->print('<td class="'.$tbg.'"> </td>');
1.202 raeburn 929: }
930: }
1.212 bisitz 931: $r->print('<td colspan="3">'
932: .&mt('No role specified')
933: .'</td>'
934: .'<td>'.$tremark.' </td>'
935: .&Apache::loncommon::end_data_table_row()
936: );
1.202 raeburn 937: }
1.212 bisitz 938: $r->print(&Apache::loncommon::end_data_table());
1.4 www 939: unless ($nochoose) {
940: $r->print("</form>\n");
941: }
1.22 harris41 942: # ------------------------------------------------------------ Privileges Info
1.118 albertel 943: if (($advanced) && (($env{'user.error.msg'}) || ($error))) {
1.212 bisitz 944: $r->print('<hr /><h2>'.&mt('Current Privileges').'</h2>');
1.175 albertel 945: $r->print(&privileges_info());
1.4 www 946: }
1.66 www 947: $r->print(&Apache::lonnet::getannounce());
1.65 www 948: if ($advanced) {
1.201 raeburn 949: my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&');
1.195 bisitz 950: $r->print('<p><small><i>'
951: .&mt('This is LON-CAPA [_1]',$r->dir_config('lonVersion'))
952: .'</i><br />'
1.197 raeburn 953: .'<a href="/adm/logout">'.&mt('Logout').'</a> '
1.201 raeburn 954: .'<a href="/adm/coursecatalog?showdom='.$esc_dom.'">'
955: .&mt('Course Catalog')
1.197 raeburn 956: .'</small></p>');
1.65 www 957: }
1.147 albertel 958: $r->print(&Apache::loncommon::end_page());
1.1 harris41 959: return OK;
1.102 raeburn 960: }
961:
1.215 raeburn 962: sub role_timezone {
963: my ($where,$timezones) = @_;
964: my $timezone;
965: if (ref($timezones) eq 'HASH') {
966: if ($where =~ m{^/($match_domain)/($match_courseid)}) {
967: my $cdom = $1;
968: my $cnum = $2;
969: if ($cdom && $cnum) {
970: if (!exists($timezones->{$cdom.'_'.$cnum})) {
971: my %timehash =
972: &Apache::lonnet::get('environment',['timezone'],$cdom,$cnum);
973: if ($timehash{'timezone'} eq '') {
974: if (!exists($timezones->{$cdom})) {
975: my %domdefaults =
976: &Apache::lonnet::get_domain_defaults($cdom);
977: if ($domdefaults{'timezone_def'} eq '') {
978: $timezones->{$cdom} = 'local';
979: } else {
980: $timezones->{$cdom} = $domdefaults{'timezone_def'};
981: }
982: }
983: $timezones->{$cdom.'_'.$cnum} = $timezones->{$cdom};
984: } else {
985: $timezones->{$cdom.'_'.$cnum} =
986: &Apache::lonlocal::gettimezone($timehash{'timezone'});
987: }
988: }
989: $timezone = $timezones->{$cdom.'_'.$cnum};
990: }
991: } else {
992: my ($tdom) = ($where =~ m{^/($match_domain)});
993: if ($tdom) {
994: if (!exists($timezones->{$tdom})) {
995: my %domdefaults = &Apache::lonnet::get_domain_defaults($tdom);
996: if ($domdefaults{'timezone_def'} eq '') {
997: $timezones->{$tdom} = 'local';
998: } else {
999: $timezones->{$tdom} = $domdefaults{'timezone_def'};
1000: }
1001: }
1002: $timezone = $timezones->{$tdom};
1003: }
1004: }
1005: if ($timezone eq 'local') {
1006: $timezone = undef;
1007: }
1008: }
1009: return $timezone;
1010: }
1011:
1.191 raeburn 1012: sub roletable_headers {
1013: my ($r,$roleclass,$sortrole,$nochoose) = @_;
1014: my $doheaders;
1015: if ((ref($sortrole) eq 'HASH') && (ref($roleclass) eq 'HASH')) {
1.212 bisitz 1016: $r->print('<br />'
1017: .&Apache::loncommon::start_data_table()
1018: .&Apache::loncommon::start_data_table_header_row()
1019: );
1.191 raeburn 1020: if (!$nochoose) { $r->print('<th> </th>'); }
1.212 bisitz 1021: $r->print('<th>'.&mt('User Role').'</th>'
1022: .'<th>'.&mt('Extent').'</th>'
1023: .'<th>'.&mt('Start').'</th>'
1024: .'<th>'.&mt('End').'</th>'
1025: .&Apache::loncommon::end_data_table_header_row()
1026: );
1.191 raeburn 1027: $doheaders=-1;
1028: my @roletypes = &roletypes();
1029: foreach my $type (@roletypes) {
1030: my $haverole=0;
1031: foreach my $which (sort {uc($a) cmp uc($b)} (keys(%{$sortrole}))) {
1032: if ($roleclass->{$sortrole->{$which}} =~ /^\Q$type\E/) {
1033: $haverole=1;
1034: }
1035: }
1036: if ($haverole) { $doheaders++; }
1037: }
1038: }
1039: return $doheaders;
1040: }
1041:
1042: sub roletypes {
1043: my @types = ('Domain','Construction Space','Course','Unavailable','System');
1044: return @types;
1045: }
1046:
1047: sub print_rolerows {
1048: my ($r,$doheaders,$roleclass,$sortrole,$dcroles,$roletext) = @_;
1049: if ((ref($roleclass) eq 'HASH') && (ref($sortrole) eq 'HASH')) {
1050: my @types = &roletypes();
1051: foreach my $type (@types) {
1052: my $output;
1053: foreach my $which (sort {uc($a) cmp uc($b)} (keys(%{$sortrole}))) {
1054: if ($roleclass->{$sortrole->{$which}} =~ /^\Q$type\E/) {
1055: if (ref($roletext) eq 'HASH') {
1056: $output.=$roletext->{$sortrole->{$which}};
1057: if ($sortrole->{$which} =~ m-dc\./($match_domain)/-) {
1058: if (ref($dcroles) eq 'HASH') {
1059: if ($dcroles->{$1}) {
1.192 raeburn 1060: $output .= &adhoc_roles_row($1,'');
1.191 raeburn 1061: }
1062: }
1063: }
1064: }
1065: }
1066: }
1067: if ($output) {
1068: if ($doheaders > 0) {
1.212 bisitz 1069: $r->print(&Apache::loncommon::start_data_table_empty_row()
1070: .'<td align="center" colspan="5">'
1071: .&mt($type)
1072: .'</td>'
1073: .&Apache::loncommon::end_data_table_empty_row()
1074: );
1.191 raeburn 1075: }
1076: $r->print($output);
1077: }
1078: }
1079: }
1080: }
1081:
1082: sub findcourse_advice {
1083: my ($r) = @_;
1084: my $domdesc = &Apache::lonnet::domain($env{'user.domain'},'description');
1.201 raeburn 1085: my $esc_dom = &HTML::Entities::encode($env{'user.domain'},'"<>&');
1.200 raeburn 1086: if (&Apache::lonnet::auto_run(undef,$env{'user.domain'})) {
1.191 raeburn 1087: $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).'
1088: <ul>
1089: <li>'.&mt('The course has yet to be created.').'</li>
1090: <li>'.&mt('Automatic enrollment of registered students has not been enabled for the course.').'</li>
1091: <li>'.&mt('You are in a section of course for which automatic enrollment in the corresponding LON-CAPA course is not active.').'</li>
1092: <li>'.&mt('The start date for automated enrollment has yet to be reached.').'</li>
1093: <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>
1094: </ul>');
1095: } else {
1096: $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 />');
1097: }
1.201 raeburn 1098: $r->print('<p>'.&mt('The [_1]Course Catalog[_2] provides information about all [_3] classes for which LON-CAPA courses have been created.','<a href="/adm/coursecatalog?showdom='.$esc_dom.'">','</a>',$domdesc).'<br />');
1.191 raeburn 1099: $r->print(&mt('You can search the course catalog for courses which permit self-enrollment, if you would like to enroll in a course.').'</p>');
1.216 raeburn 1100: &queued_selfenrollment($r);
1101: return;
1102: }
1103:
1104: sub queued_selfenrollment {
1105: my ($r) = @_;
1106: my %selfenrollrequests = &Apache::lonnet::dump('selfenrollrequests');
1107: my %reqs_by_date;
1108: foreach my $item (keys(%selfenrollrequests)) {
1109: if (ref($selfenrollrequests{$item}) eq 'HASH') {
1110: if ($selfenrollrequests{$item}{'status'} eq 'request') {
1111: if ($selfenrollrequests{$item}{'timestamp'}) {
1112: push(@{$reqs_by_date{$selfenrollrequests{$item}{'timestamp'}}},$item);
1113: }
1114: }
1115: }
1116: }
1117: if (keys(%reqs_by_date)) {
1118: my $rolename = &Apache::lonnet::plaintext('st');
1119: $r->print('<b>'.&mt('Enrollment requests pending Course Coordinator approval').'</b><br />'.
1120: &Apache::loncommon::start_data_table().
1121: &Apache::loncommon::start_data_table_header_row().
1122: '<th>'.&mt('Date requested').'</th><th>'.&mt('Course title').'</th>'.
1123: '<th>'.&mt('User role').'</th><th>'.&mt('Section').'</th>'.
1124: &Apache::loncommon::end_data_table_header_row());
1125: my @sorted = sort { $a <=> $b } (keys(%reqs_by_date));
1126: foreach my $item (@sorted) {
1127: if (ref($reqs_by_date{$item}) eq 'ARRAY') {
1128: foreach my $crs (@{$reqs_by_date{$item}}) {
1129: my %courseinfo = &Apache::lonnet::coursedescription($crs);
1130: my $usec = $selfenrollrequests{$crs}{'section'};
1131: if ($usec eq '') {
1132: $usec = &mt('No section');
1133: }
1134: $r->print(&Apache::loncommon::start_data_table_row().
1135: '<td>'.&Apache::lonlocal::locallocaltime($item).'</td>'.
1136: '<td>'.$courseinfo{'description'}.'</td>'.
1137: '<td>'.$rolename.'</td><td>'.$usec.'</td>'.
1138: &Apache::loncommon::end_data_table_row());
1139: }
1140: }
1141: }
1142: $r->print(&Apache::loncommon::end_data_table());
1143: }
1.191 raeburn 1144: return;
1145: }
1146:
1.175 albertel 1147: sub privileges_info {
1148: my ($which) = @_;
1149: my $output;
1150:
1151: $which ||= $env{'request.role'};
1152:
1153: foreach my $envkey (sort(keys(%env))) {
1154: next if ($envkey!~/^user\.priv\.\Q$which\E\.(.*)/);
1155:
1156: my $where=$1;
1157: my $ttype;
1158: my $twhere;
1159: my (undef,$tdom,$trest,$tsec)=split(m{/},$where);
1160: if ($trest) {
1161: if ($env{'course.'.$tdom.'_'.$trest.'.description'} eq 'ca') {
1162: $ttype='Construction Space';
1163: $twhere='User: '.$trest.', Domain: '.$tdom;
1164: } else {
1165: $ttype= &Apache::loncommon::course_type($tdom.'_'.$trest);
1166: $twhere=$env{'course.'.$tdom.'_'.$trest.'.description'};
1167: if ($tsec) {
1168: my $sec_type = 'Section';
1169: if (exists($env{"user.role.gr.$where"})) {
1170: $sec_type = 'Group';
1171: }
1172: $twhere.=' ('.$sec_type.': '.$tsec.')';
1173: }
1174: }
1175: } elsif ($tdom) {
1176: $ttype='Domain';
1177: $twhere=$tdom;
1178: } else {
1179: $ttype='System';
1180: $twhere='/';
1181: }
1.204 bisitz 1182: $output .= "\n<h3>".&mt($ttype).': '.$twhere.'</h3>'."\n<ul>";
1.175 albertel 1183: foreach my $priv (sort(split(/:/,$env{$envkey}))) {
1184: next if (!$priv);
1185:
1186: my ($prv,$restr)=split(/\&/,$priv);
1187: my $trestr='';
1188: if ($restr ne 'F') {
1189: $trestr.=' ('.
1190: join(', ',
1191: map { &Apache::lonnet::plaintext($_) }
1192: (split('',$restr))).') ';
1193: }
1194: $output .= "\n\t".
1195: '<li>'.&Apache::lonnet::plaintext($prv).$trestr.'</li>';
1196: }
1197: $output .= "\n".'</ul>';
1198: }
1199: return $output;
1200: }
1201:
1.110 raeburn 1202: sub build_roletext {
1.212 bisitz 1203: my ($trolecode,$tdom,$trest,$tstatus,$tryagain,$advanced,$tremark,$tbg,$trole,$twhere,$tpstart,$tpend,$nochoose,$button,$switchserver,$reinit) = @_;
1204: my $roletext=&Apache::loncommon::start_data_table_row();
1.132 albertel 1205: my $is_dc=($trolecode =~ m/^dc\./);
1206: my $rowspan=($is_dc) ? ''
1207: : ' rowspan="2" ';
1208:
1.110 raeburn 1209: unless ($nochoose) {
1.134 www 1210: my $buttonname=$trolecode;
1211: $buttonname=~s/\W//g;
1.110 raeburn 1212: if (!$button) {
1213: if ($switchserver) {
1.212 bisitz 1214: $roletext.='<td'.$rowspan.' class="'.$tbg.'">'
1215: .'<a href="/adm/switchserver?'.$switchserver.'">'
1216: .&mt('Switch Server')
1217: .'</a></td>';
1.110 raeburn 1218: } else {
1.212 bisitz 1219: $roletext.=('<td'.$rowspan.' class="'.$tbg.'"> </td>');
1.110 raeburn 1220: }
1221: } elsif ($tstatus eq 'is') {
1.212 bisitz 1222: $roletext.='<td'.$rowspan.' class="'.$tbg.'">'.
1223: '<input name="'.$buttonname.'" type="button" value="'.
1.134 www 1224: &mt('Select').'" onClick="javascript:enterrole(this.form,\''.
1.192 raeburn 1225: $trolecode."','".$buttonname.'\');" /></td>';
1.110 raeburn 1226: } elsif ($tryagain) {
1227: $roletext.=
1.212 bisitz 1228: '<td'.$rowspan.' class="'.$tbg.'">'.
1229: '<input name="'.$buttonname.'" type="button" value="'.
1.134 www 1230: &mt('Try Selecting Again').'" onClick="javascript:enterrole(this.form,\''.
1.192 raeburn 1231: $trolecode."','".$buttonname.'\');" /></td>';
1.110 raeburn 1232: } elsif ($advanced) {
1233: $roletext.=
1.212 bisitz 1234: '<td'.$rowspan.' class="'.$tbg.'">'.
1235: '<input name="'.$buttonname.'" type="button" value="'.
1.134 www 1236: &mt('Re-Initialize').'" onClick="javascript:enterrole(this.form,\''.
1.192 raeburn 1237: $trolecode."','".$buttonname.'\');" /></td>';
1.209 raeburn 1238: } elsif ($reinit) {
1239: $roletext.=
1.212 bisitz 1240: '<td'.$rowspan.' class="'.$tbg.'">'.
1241: '<input name="'.$buttonname.'" type="button" value="'.
1.209 raeburn 1242: &mt('Re-Select').'" onClick="javascript:enterrole(this.form,\''.
1243: $trolecode."','".$buttonname.'\');" /></td>';
1.110 raeburn 1244: } else {
1.209 raeburn 1245: $roletext.=
1.212 bisitz 1246: '<td'.$rowspan.' class="'.$tbg.'">'.
1247: '<input name="'.$buttonname.'" type="button" value="'.
1.209 raeburn 1248: &mt('Re-Initialize').'" onClick="javascript:enterrole(this.form,\''.
1249: $trolecode."','".$buttonname.'\');" /></td>';
1.110 raeburn 1250: }
1251: }
1.165 albertel 1252: if ($trolecode !~ m/^(dc|ca|au|aa)\./) {
1253: $tremark.=&Apache::lonannounce::showday(time,1,
1254: &Apache::lonannounce::readcalendar($tdom.'_'.$trest));
1255: }
1.212 bisitz 1256: $roletext.='<td>'.$trole.'</td>'
1257: .'<td>'.$twhere.'</td>'
1258: .'<td>'.$tpstart.'</td>'
1259: .'<td>'.$tpend.'</td>'
1260: .&Apache::loncommon::end_data_table_row();
1.132 albertel 1261: if (!$is_dc) {
1.212 bisitz 1262: $roletext.=&Apache::loncommon::continue_data_table_row()
1263: .'<td colspan="4">'
1264: .$tremark.' '
1265: .'</td>'
1266: .&Apache::loncommon::end_data_table_row();
1.132 albertel 1267: }
1.110 raeburn 1268: return $roletext;
1269: }
1270:
1.202 raeburn 1271: sub check_needs_switchserver {
1272: my ($possiblerole) = @_;
1273: my $needs_switchserver;
1274: my ($role,$where) = split(/\./,$possiblerole,2);
1275: my (undef,$tdom,$twho) = split(/\//,$where);
1276: my ($server_status,$home);
1277: if (($role eq 'ca') || ($role eq 'aa')) {
1278: ($server_status,$home) = &check_author_homeserver($twho,$tdom);
1279: } else {
1280: ($server_status,$home) = &check_author_homeserver($env{'user.name'},
1281: $env{'user.domain'});
1282: }
1283: if ($server_status eq 'switchserver') {
1284: $needs_switchserver = 1;
1285: }
1286: return $needs_switchserver;
1287: }
1288:
1.193 raeburn 1289: sub check_author_homeserver {
1.183 www 1290: my ($uname,$udom)=@_;
1.193 raeburn 1291: if (($uname eq '') || ($udom eq '')) {
1292: return ('fail','');
1293: }
1.183 www 1294: my $home = &Apache::lonnet::homeserver($uname,$udom);
1.193 raeburn 1295: if (&Apache::lonnet::host_domain($home) ne $udom) {
1296: return ('fail',$home);
1297: }
1.183 www 1298: my @ids=&Apache::lonnet::current_machine_ids();
1.193 raeburn 1299: if (grep(/^\Q$home\E$/,@ids)) {
1300: return ('ok',$home);
1301: } else {
1302: return ('switchserver',$home);
1.183 www 1303: }
1304: }
1305:
1.104 raeburn 1306: sub check_fordc {
1307: my ($dcroles,$then) = @_;
1308: my $numdc = 0;
1.118 albertel 1309: if ($env{'user.adv'}) {
1310: foreach my $envkey (sort keys %env) {
1.170 albertel 1311: if ($envkey=~/^user\.role\.dc\.\/($match_domain)\/$/) {
1.104 raeburn 1312: my $dcdom = $1;
1313: my $livedc = 1;
1.118 albertel 1314: my ($tstart,$tend)=split(/\./,$env{$envkey});
1.105 raeburn 1315: if ($tstart && $tstart>$then) { $livedc = 0; }
1316: if ($tend && $tend <$then) { $livedc = 0; }
1.104 raeburn 1317: if ($livedc) {
1318: $$dcroles{$dcdom} = $envkey;
1.105 raeburn 1319: $numdc++;
1.104 raeburn 1320: }
1321: }
1322: }
1323: }
1324: return $numdc;
1325: }
1326:
1.185 raeburn 1327: sub adhoc_course_role {
1328: my ($then) = @_;
1329: my ($cdom,$cnum);
1.201 raeburn 1330: $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
1331: $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
1.185 raeburn 1332: if (&check_forcc($cdom,$cnum,$then)) {
1333: my $setprivs;
1.198 raeburn 1334: if (!defined($env{'user.role.'.$env{'form.switchrole'}})) {
1.185 raeburn 1335: $setprivs = 1;
1336: } else {
1.198 raeburn 1337: my ($start,$end) = split(/\./,$env{'user.role.'.$env{'form.switchrole'}});
1.185 raeburn 1338: if (($start && ($start>$then || $start == -1)) ||
1339: ($end && $end<$then)) {
1340: $setprivs = 1;
1341: }
1342: }
1343: if ($setprivs) {
1.198 raeburn 1344: if ($env{'form.switchrole'} =~ m-^(in|ta|ep|ad|st|cr)([\w/]*)\./\Q$cdom\E/\Q$cnum\E/?(\w*)$-) {
1.185 raeburn 1345: my $role = $1;
1346: my $custom_role = $2;
1347: my $usec = $3;
1348: if ($role eq 'cr') {
1.199 raeburn 1349: if ($custom_role =~ m-^/$match_domain/$match_username/\w+$-) {
1.185 raeburn 1350: $role .= $custom_role;
1351: } else {
1352: return;
1353: }
1354: }
1.208 raeburn 1355: my (%userroles,%newrole,%newgroups,%group_privs);
1356: my %cgroups =
1357: &Apache::lonnet::get_active_groups($env{'user.domain'},
1358: $env{'user.name'},$cdom,$cnum);
1359: foreach my $group (keys(%cgroups)) {
1360: $group_privs{$group} =
1361: $env{'user.priv.cc./'.$cdom.'/'.$cnum.'./'.$cdom.'/'.$cnum.'/'.$group};
1362: }
1363: $newgroups{'/'.$cdom.'/'.$cnum} = \%group_privs;
1.185 raeburn 1364: my $area = '/'.$cdom.'/'.$cnum;
1365: my $spec = $role.'.'.$area;
1366: if ($usec ne '') {
1367: $spec .= '/'.$usec;
1368: $area .= '/'.$usec;
1369: }
1370: &Apache::lonnet::standard_roleprivs(\%newrole,$role,$cdom,$spec,$cnum,$area);
1.208 raeburn 1371: &Apache::lonnet::set_userprivs(\%userroles,\%newrole,\%newgroups);
1.185 raeburn 1372: my $adhocstart = $then-1;
1373: $userroles{'user.role.'.$spec} = $adhocstart.'.';
1.186 raeburn 1374: &Apache::lonnet::appenv(\%userroles,[$role,'cm']);
1.185 raeburn 1375: }
1376: }
1377: }
1378: return;
1379: }
1380:
1381: sub check_forcc {
1382: my ($cdom,$cnum,$then) = @_;
1383: my $is_cc;
1384: if ($cdom ne '' && $cnum ne '') {
1385: if (&Apache::lonnet::is_course($cdom,$cnum)) {
1386: my $envkey = 'user.role.cc./'.$cdom.'/'.$cnum;
1387: if (defined($env{$envkey})) {
1388: $is_cc = 1;
1389: my ($tstart,$tend)=split(/\./,$env{$envkey});
1390: if ($tstart && $tstart>$then) { $is_cc = 0; }
1391: if ($tend && $tend <$then) { $is_cc = 0; }
1392: }
1393: }
1394: }
1395: return $is_cc;
1396: }
1397:
1.108 raeburn 1398: sub courselink {
1.193 raeburn 1399: my ($dcdom,$rowtype) = @_;
1.109 raeburn 1400: my $courseform=&Apache::loncommon::selectcourse_link
1.152 raeburn 1401: ('rolechoice','dccourse'.$rowtype.'_'.$dcdom,
1402: 'dcdomain'.$rowtype.'_'.$dcdom,'coursedesc'.$rowtype.'_'.
1.173 albertel 1403: $dcdom,$dcdom,undef);
1.138 raeburn 1404: my $hiddenitems = '<input type="hidden" name="dcdomain'.$rowtype.'_'.$dcdom.'" value="'.$dcdom.'" />'.
1405: '<input type="hidden" name="origdom'.$rowtype.'_'.$dcdom.'" value="'.$dcdom.'" />'.
1406: '<input type="hidden" name="dccourse'.$rowtype.'_'.$dcdom.'" value="" />'.
1407: '<input type="hidden" name="coursedesc'.$rowtype.'_'.$dcdom.'" value="" />';
1.112 raeburn 1408: return $courseform.$hiddenitems;
1.109 raeburn 1409: }
1410:
1411: sub coursepick_jscript {
1.184 raeburn 1412: my %lt = &Apache::lonlocal::texthash(
1413: plsu => "Please use the 'Select Course' link to open a separate pick course window where you may select the course you wish to enter.",
1414: youc => 'You can only use this screen to select courses in the current domain.',
1415: );
1.104 raeburn 1416: my $verify_script = <<"END";
1.179 raeburn 1417: <script type="text/javascript">
1.108 raeburn 1418: function verifyCoursePick(caller) {
1419: var numbutton = getIndex(caller)
1.112 raeburn 1420: var pickedCourse = document.rolechoice.elements[numbutton+4].value
1421: var pickedDomain = document.rolechoice.elements[numbutton+2].value
1422: if (document.rolechoice.elements[numbutton+2].value == document.rolechoice.elements[numbutton+3].value) {
1.104 raeburn 1423: if (pickedCourse != '') {
1.108 raeburn 1424: if (numbutton != -1) {
1425: var courseTarget = "cc./"+pickedDomain+"/"+pickedCourse
1426: document.rolechoice.elements[numbutton+1].name = courseTarget
1427: document.rolechoice.submit()
1428: }
1.104 raeburn 1429: }
1430: else {
1.184 raeburn 1431: alert("$lt{'plsu'}");
1.104 raeburn 1432: }
1433: }
1434: else {
1.184 raeburn 1435: alert("$lt{'youc'}")
1.104 raeburn 1436: }
1437: }
1.109 raeburn 1438: function getIndex(caller) {
1.108 raeburn 1439: for (var i=0;i<document.rolechoice.elements.length;i++) {
1.109 raeburn 1440: if (document.rolechoice.elements[i] == caller) {
1.108 raeburn 1441: return i;
1442: }
1443: }
1444: return -1;
1445: }
1.104 raeburn 1446: </script>
1447: END
1.109 raeburn 1448: return $verify_script;
1.104 raeburn 1449: }
1450:
1.193 raeburn 1451: sub coauthorlink {
1452: my ($dcdom,$rowtype) = @_;
1453: my $coauthorform=&Apache::loncommon::selectauthor_link('rolechoice',$dcdom);
1454: my $hiddenitems = '<input type="hidden" name="adhoccauname'.$rowtype.'_'.$dcdom.'" value="" />';
1455: return $coauthorform.$hiddenitems;
1456: }
1457:
1.113 raeburn 1458: sub display_cc_role {
1459: my $rolekey = shift;
1460: my $roletext;
1.118 albertel 1461: my $advanced = $env{'user.adv'};
1462: my $tryagain = $env{'form.tryagain'};
1.113 raeburn 1463: unless ($rolekey =~/^error\:/) {
1.171 albertel 1464: if ($rolekey =~ m-^user\.role.cc\./($match_domain)/($match_courseid)$-) {
1.113 raeburn 1465: my $tcourseid = $1.'_'.$2;
1466: my $trolecode = 'cc./'.$1.'/'.$2;
1467: my $twhere;
1.152 raeburn 1468: my $ttype;
1.212 bisitz 1469: my $tbg='LC_roles_is';
1.113 raeburn 1470: my %newhash=&Apache::lonnet::coursedescription($tcourseid);
1471: if (%newhash) {
1472: $twhere=$newhash{'description'}.
1.211 tempelho 1473: ' <span style="LC_fontsize_small">'.
1.212 bisitz 1474: &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$2,$1).
1.211 tempelho 1475: '</span>';
1.153 raeburn 1476: $ttype = $newhash{'type'};
1.113 raeburn 1477: } else {
1478: $twhere=&mt('Currently not available');
1.118 albertel 1479: $env{'course.'.$tcourseid.'.description'}=$twhere;
1.110 raeburn 1480: }
1.153 raeburn 1481: my $trole = &Apache::lonnet::plaintext('cc',$ttype);
1.113 raeburn 1482: $twhere.="<br />".&mt('Domain').":".$1;
1.212 bisitz 1483: $roletext = &build_roletext($trolecode,$1,$2,'is',$tryagain,$advanced,'',$tbg,$trole,$twhere,'','','',1,'');
1.104 raeburn 1484: }
1485: }
1.152 raeburn 1486: return ($roletext);
1.104 raeburn 1487: }
1488:
1.192 raeburn 1489: sub adhoc_roles_row {
1.138 raeburn 1490: my ($dcdom,$rowtype) = @_;
1.212 bisitz 1491: my $output = &Apache::loncommon::continue_data_table_row()
1492: .' <td colspan="5">'
1493: .'<table><tr><td>'
1494: .&mt('[_1]Ad hoc[_2] roles in domain [_3] --'
1495: ,'<span class="LC_cusr_emph">','</span>',$dcdom)
1496: .'</td>'
1497: .'<td>';
1.193 raeburn 1498: my $selectcclink = &courselink($dcdom,$rowtype);
1.173 albertel 1499: my $ccrole = &Apache::lonnet::plaintext('cc');
1.182 www 1500: my $carole = &Apache::lonnet::plaintext('ca');
1.193 raeburn 1501: my $selectcalink = &coauthorlink($dcdom,$rowtype);
1.212 bisitz 1502: $output.=&mt('[_1]: [_2]',$ccrole,$selectcclink)
1503: .'<br /></td>'
1504: .'<td> </td>'
1505: .'<td>'.&mt('[_1]: [_2]',$carole,$selectcalink).'<br /></td>'
1506: .'</tr></table>'
1507: .'</td>'
1508: .&Apache::loncommon::end_data_table_row();
1.108 raeburn 1509: return $output;
1510: }
1511:
1.104 raeburn 1512: sub recent_filename {
1513: my $area=shift;
1.149 www 1514: return 'nohist_recent_'.&escape($area);
1.104 raeburn 1515: }
1516:
1.139 raeburn 1517: sub courseloadpage {
1518: my ($courseid) = @_;
1519: my $startpage;
1.144 albertel 1520: my %entry_settings = &Apache::lonnet::get('nohist_whatsnew',
1521: [$courseid.':courseinit']);
1.139 raeburn 1522: my ($tmp) = %entry_settings;
1.144 albertel 1523: unless ($tmp =~ /^error: 2 /) {
1.139 raeburn 1524: $startpage = $entry_settings{$courseid.':courseinit'};
1525: }
1526: if ($startpage eq '') {
1527: if (exists($env{'environment.course_init_display'})) {
1528: $startpage = $env{'environment.course_init_display'};
1529: }
1530: }
1531: return $startpage;
1532: }
1533:
1.1 harris41 1534: 1;
1535: __END__
1.32 harris41 1536:
1537: =head1 NAME
1538:
1539: Apache::lonroles - User Roles Screen
1540:
1541: =head1 SYNOPSIS
1542:
1543: Invoked by /etc/httpd/conf/srm.conf:
1544:
1545: <Location /adm/roles>
1546: PerlAccessHandler Apache::lonacc
1547: SetHandler perl-script
1548: PerlHandler Apache::lonroles
1549: ErrorDocument 403 /adm/login
1550: ErrorDocument 500 /adm/errorhandler
1551: </Location>
1.64 bowersj2 1552:
1553: =head1 OVERVIEW
1554:
1555: =head2 Choosing Roles
1556:
1557: C<lonroles> is a handler that allows a user to switch roles in
1558: mid-session. LON-CAPA attempts to work with "No Role Specified", the
1559: default role that a user has before selecting a role, as widely as
1560: possible, but certain handlers for example need specification which
1561: course they should act on, etc. Both in this scenario, and when the
1562: handler determines via C<lonnet>'s C<&allowed> function that a certain
1563: action is not allowed, C<lonroles> is used as error handler. This
1564: allows the user to select another role which may have permission to do
1565: what they were trying to do. C<lonroles> can also be accessed via the
1566: B<CRS> button in the Remote Control.
1567:
1568: =begin latex
1569:
1570: \begin{figure}
1571: \begin{center}
1572: \includegraphics[width=0.45\paperwidth,keepaspectratio]{Sample_Roles_Screen}
1573: \caption{\label{Sample_Roles_Screen}Sample Roles Screen}
1574: \end{center}
1575: \end{figure}
1576:
1577: =end latex
1578:
1579: =head2 Role Initialization
1580:
1581: 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 1582:
1583: =head1 INTRODUCTION
1584:
1585: This module enables a user to select what role he wishes to
1586: operate under (instructor, student, teaching assistant, course
1587: coordinator, etc). These roles are pre-established by the actions
1588: of upper-level users.
1589:
1590: This is part of the LearningOnline Network with CAPA project
1591: described at http://www.lon-capa.org.
1592:
1593: =head1 HANDLER SUBROUTINE
1594:
1595: This routine is called by Apache and mod_perl.
1596:
1597: =over 4
1598:
1599: =item *
1600:
1601: Roles Initialization (yes/no)
1602:
1603: =item *
1604:
1605: Get Error Message from Environment
1606:
1607: =item *
1608:
1609: Who is this?
1610:
1611: =item *
1612:
1613: Generate Page Output
1614:
1615: =item *
1616:
1617: Choice or no choice
1618:
1619: =item *
1620:
1621: Table
1622:
1623: =item *
1624:
1625: Privileges
1626:
1627: =back
1628:
1629: =cut
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>