Annotation of loncom/auth/lonroles.pm, revision 1.92
1.1 harris41 1: # The LearningOnline Network with CAPA
2: # User Roles Screen
1.31 www 3: #
1.92 ! www 4: # $Id: lonroles.pm,v 1.91 2004/05/09 00:45:00 www 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.1 harris41 30: package Apache::lonroles;
31:
32: use strict;
33: use Apache::lonnet();
1.7 www 34: use Apache::lonuserstate();
1.1 harris41 35: use Apache::Constants qw(:common);
1.2 www 36: use Apache::File();
1.26 www 37: use Apache::lonmenu;
1.29 albertel 38: use Apache::loncommon;
1.57 www 39: use Apache::lonannounce;
1.72 www 40: use Apache::lonlocal;
1.1 harris41 41:
1.62 matthew 42: sub redirect_user {
43: my ($r,$title,$url,$msg) = @_;
44: $msg = $title if (! defined($msg));
1.73 www 45: &Apache::loncommon::content_type($r,'text/html');
1.62 matthew 46: &Apache::loncommon::no_cache($r);
47: $r->send_http_header;
48: my $swinfo=&Apache::lonmenu::rawconfig();
49: my $bodytag=&Apache::loncommon::bodytag('Switching Role');
1.92 ! www 50: # Note to style police:
! 51: # This must only replace the spaces, nothing else, or it bombs elsewhere.
! 52: $url=~s/ /\%20/g;
! 53: $r->print (<<ENDREDIR);
1.62 matthew 54: <head><title>$title</title>
55: <meta HTTP-EQUIV="Refresh" CONTENT="1; url=$url">
56: </head>
57: <html>
58: $bodytag
59: <script>
60: $swinfo
61: </script>
62: <h1>$msg</h1>
63: </body>
64: </html>
65: ENDREDIR
66: return;
67: }
68:
1.1 harris41 69: sub handler {
1.10 www 70:
1.1 harris41 71: my $r = shift;
72:
1.6 www 73: my $now=time;
74: my $then=$ENV{'user.login.time'};
75: my $envkey;
76:
1.10 www 77:
1.6 www 78: # ================================================================== Roles Init
79:
80: if ($ENV{'form.selectrole'}) {
1.33 www 81: if ($ENV{'request.course.id'}) {
82: my %temp=('logout_'.$ENV{'request.course.id'} => time);
83: &Apache::lonnet::put('email_status',\%temp);
84: }
1.55 albertel 85: &Apache::lonnet::appenv("request.course.id" => '',
86: "request.course.fn" => '',
87: "request.course.uri" => '',
88: "request.course.sec" => '',
89: "request.role" => 'cm',
1.56 www 90: "request.role.adv" => $ENV{'user.adv'},
1.55 albertel 91: "request.role.domain" => $ENV{'user.domain'});
1.13 www 92: foreach $envkey (keys %ENV) {
1.40 matthew 93: next if ($envkey!~/^user\.role\./);
94: my (undef,undef,$role,@pwhere)=split(/\./,$envkey);
1.6 www 95: my $where=join('.',@pwhere);
96: my $trolecode=$role.'.'.$where;
97: if ($ENV{'form.'.$trolecode}) {
1.55 albertel 98: my ($tstart,$tend)=split(/\./,$ENV{$envkey});
99: my $tstatus='is';
100: if ($tstart) {
101: if ($tstart>$then) {
102: $tstatus='future';
103: }
104: }
105: if ($tend) {
106: if ($tend<$then) { $tstatus='expired'; }
107: if ($tend<$now) { $tstatus='will_not'; }
108: }
109: if ($tstatus eq 'is') {
110: $where=~s/^\///;
111: my ($cdom,$cnum,$csec)=split(/\//,$where);
1.53 www 112: # check for keyed access
1.55 albertel 113: if (($role eq 'st') &&
114: ($ENV{'course.'.$cdom.'_'.$cnum.'.keyaccess'} eq 'yes')) {
1.89 www 115: # who is key authority?
116: my $authdom=$cdom;
117: my $authnum=$cnum;
118: if ($ENV{'course.'.$cdom.'_'.$cnum.'.keyauth'}) {
119: ($authnum,$authdom)=
120: split(/\W/,$ENV{'course.'.$cdom.'_'.$cnum.'.keyauth'});
121: }
122: # check with key authority
123: unless (&Apache::lonnet::validate_access_key(
1.55 albertel 124: $ENV{'environment.key.'.$cdom.'_'.$cnum},
1.89 www 125: $authdom,$authnum)) {
1.53 www 126: # there is no valid key
1.55 albertel 127: if ($ENV{'form.newkey'}) {
1.53 www 128: # student attempts to register a new key
1.89 www 129: &Apache::loncommon::content_type($r,'text/html');
130: &Apache::loncommon::no_cache($r);
131: $r->send_http_header;
132: my $swinfo=&Apache::lonmenu::rawconfig();
133: my $bodytag=&Apache::loncommon::bodytag
134: ('Verifying Access Key to Unlock this Course');
1.90 www 135: my $buttontext=&mt('Enter Course');
136: my $message=&mt('Successfully registered key');
137: my $assignresult=
138: &Apache::lonnet::assign_access_key(
139: $ENV{'form.newkey'},
140: $authdom,$authnum,
1.91 www 141: $cdom,$cnum,
1.90 www 142: $ENV{'user.domain'},
143: $ENV{'user.name'},
144: 'Assigned from '.$ENV{'REMOTE_ADDR'}.' at '.localtime().' for '.
145: $trolecode);
146: unless ($assignresult eq 'ok') {
147: $assignresult=~s/^error\:\s*//;
148: $message=&mt($assignresult).
149: '<br /><a href="/adm/logout">'.
1.89 www 150: &mt('Logout').'</a>';
1.90 www 151: $buttontext=&mt('Re-Enter Key');
152: }
1.89 www 153: $r->print(<<ENDENTEREDKEY);
154: <head><title>Verifying Course Access Key</title>
155: </head>
156: <html>
157: $bodytag
158: <script>
159: $swinfo
160: </script>
161: <form method="post">
162: <input type="hidden" name="selectrole" value="1" />
163: <input type="hidden" name="$trolecode" value="1" />
1.90 www 164: <font size="+2">$message</font><br />
1.89 www 165: <input type="submit" value="$buttontext" />
166: </form>
167: </body></html>
168: ENDENTEREDKEY
169: return OK;
1.55 albertel 170: } else {
1.53 www 171: # print form to enter a new key
1.73 www 172: &Apache::loncommon::content_type($r,'text/html');
1.55 albertel 173: &Apache::loncommon::no_cache($r);
174: $r->send_http_header;
175: my $swinfo=&Apache::lonmenu::rawconfig();
176: my $bodytag=&Apache::loncommon::bodytag
177: ('Enter Access Key to Unlock this Course');
178: $r->print(<<ENDENTERKEY);
1.53 www 179: <head><title>Entering Course Access Key</title>
180: </head>
181: <html>
182: $bodytag
183: <script>
184: $swinfo
185: </script>
186: <form method="post">
1.89 www 187: <input type="hidden" name="selectrole" value="1" />
188: <input type="hidden" name="$trolecode" value="1" />
1.53 www 189: <input type="text" size="20" name="newkey" value="$ENV{'form.newkey'}" />
190: <input type="submit" value="Enter key" />
191: </form>
192: </body></html>
193: ENDENTERKEY
1.55 albertel 194: return OK;
195: }
196: }
197: }
1.87 www 198: &Apache::lonnet::log($ENV{'user.domain'},
199: $ENV{'user.name'},
200: $ENV{'user.home'},
201: "Role ".$trolecode);
1.56 www 202: my $tadv=0;
203: if (($trolecode!~/^st/) &&
204: ($trolecode!~/^ta/) &&
205: ($trolecode!~/^cm/)) { $tadv=1; }
206: &Apache::lonnet::appenv(
207: 'request.role' => $trolecode,
208: 'request.role.adv' => $tadv,
209: 'request.role.domain' => $cdom,
210: 'request.course.sec' => $csec);
1.72 www 211: my $msg=&mt('Entering course ...');
1.62 matthew 212:
1.55 albertel 213: if (($cnum) && ($role ne 'ca')) {
214: my ($furl,$ferr)=
215: &Apache::lonuserstate::readmap($cdom.'/'.$cnum);
216: if (($ENV{'form.orgurl'}) &&
217: ($ENV{'form.orgurl'}!~/^\/adm\/flip/)) {
1.67 albertel 218: my $dest=$ENV{'form.orgurl'};
1.71 albertel 219: if ( &Apache::lonnet::mod_perl_version() == 2 ) {
1.67 albertel 220: &Apache::lonnet::cleanenv();
1.69 albertel 221: }
1.67 albertel 222: $r->internal_redirect($dest);
1.55 albertel 223: return OK;
224: } else {
225: unless ($ENV{'request.course.id'}) {
226: &Apache::lonnet::appenv(
227: "request.course.id" => $cdom.'_'.$cnum);
1.61 www 228: $furl='/adm/roles?tryagain=1';
1.55 albertel 229: $msg=
1.72 www 230: '<h1><font color=red>'.
231: &mt('Could not initialize course at this time.').
232: '</font></h1><h3>'.&mt('Please try again.').'</h3>'.$ferr;
1.55 albertel 233: }
1.58 bowersj2 234:
235: # Check to see if the user is a CC entering a course
236: # for the first time
237: my (undef, undef, $role, $courseid) = split(/\./, $envkey);
238: if (substr($courseid, 0, 1) eq '/') {
239: $courseid = substr($courseid, 1);
240: }
241: $courseid =~ s/\//_/;
242: if ($role eq 'cc' && $ENV{'course.' . $courseid .
243: '.course.helper.not.run'}) {
244: $furl = "/adm/helper/course.initialization.helper";
245: }
1.62 matthew 246: #
247: # Send the user to the course they selected
1.78 sakharuk 248: &redirect_user($r,&mt('Entering Course'),
1.62 matthew 249: $furl,$msg);
1.20 www 250: return OK;
1.55 albertel 251: }
252: }
1.62 matthew 253: #
254: # Send the user to the construction space they selected
255: if ($role =~ /^(au|ca)$/) {
256: my $redirect_url = '/priv/';
257: if ($role eq 'au') {
258: $redirect_url.=$ENV{'user.name'};
259: } else {
260: $where =~ /\/(.*)$/;
261: $redirect_url .= $1;
262: }
263: $redirect_url .= '/';
1.78 sakharuk 264: &redirect_user($r,&mt('Entering Construction Space'),
1.62 matthew 265: $redirect_url);
266: return OK;
267: }
1.55 albertel 268: }
269: }
1.6 www 270: }
1.40 matthew 271: }
1.44 www 272:
1.10 www 273:
1.6 www 274: # =============================================================== No Roles Init
1.10 www 275:
1.73 www 276: &Apache::loncommon::content_type($r,'text/html');
1.30 albertel 277: &Apache::loncommon::no_cache($r);
1.10 www 278: $r->send_http_header;
279: return OK if $r->header_only;
280:
1.52 www 281: my $swinfo=&Apache::lonmenu::rawconfig();
1.41 www 282: my $bodytag=&Apache::loncommon::bodytag('User Roles');
1.82 www 283: my $helptag='<table><tr><td>'.&Apache::loncommon::help_open_topic
284: ("General_Intro",&mt("Click here for help")).'</td><td>'.
285: &Apache::loncommon::help_open_faq(1,&mt('Click here for FAQ')).'</td><td>'.
286: &Apache::loncommon::help_open_bug('',&mt('Click here to report bugs')).'</td></tr></table>';
1.10 www 287: $r->print(<<ENDHEADER);
288: <html>
289: <head>
290: <title>LON-CAPA User Roles</title>
1.41 www 291: </head>
292: $bodytag
1.45 www 293: $helptag<br />
1.26 www 294: <script>
295: $swinfo
296: window.focus();
297: </script>
1.10 www 298: ENDHEADER
1.6 www 299:
1.2 www 300: # ------------------------------------------ Get Error Message from Environment
301:
302: my ($fn,$priv,$nochoose,$error,$msg)=split(/:/,$ENV{'user.error.msg'});
1.12 www 303: if ($ENV{'user.error.msg'}) {
1.55 albertel 304: $r->log_reason(
305: "$msg for $ENV{'user.name'} domain $ENV{'user.domain'} access $priv",$fn);
1.12 www 306: }
1.1 harris41 307:
1.61 www 308: # ------------------------------------------------- Can this user re-init, etc?
1.6 www 309:
1.61 www 310: my $advanced=$ENV{'user.adv'};
311: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['tryagain']);
312: my $tryagain=$ENV{'form.tryagain'};
1.6 www 313:
1.2 www 314: # -------------------------------------------------------- Generate Page Output
1.6 www 315: # --------------------------------------------------------------- Error Header?
1.2 www 316: if ($error) {
317: $r->print("<h1>LON-CAPA Access Control</h1>");
1.4 www 318: $r->print("<hr><pre>Access : ".
319: Apache::lonnet::plaintext($priv)."\n");
320: $r->print("Resource: $fn\n");
321: $r->print("Action : $msg\n</pre><hr>");
1.2 www 322: } else {
1.25 www 323: if ($ENV{'user.error.msg'}) {
324: $r->print(
1.72 www 325: '<h3><font color=red>'.
326: &mt('You need to choose another user role or enter a specific course for this function').'</font></h3>');
1.25 www 327: }
1.2 www 328: }
1.6 www 329: # -------------------------------------------------------- Choice or no choice?
1.2 www 330: if ($nochoose) {
1.6 www 331: if ($advanced) {
1.72 www 332: $r->print("<h2>".&mt('Assigned User Roles')."</h2>\n");
1.6 www 333: } else {
1.72 www 334: $r->print("<h2>".&mt('Sorry ...')."</h2>\n".
335: &mt('This resource might be part of'));
1.55 albertel 336: if ($ENV{'request.course.id'}) {
1.72 www 337: $r->print(&mt(' another'));
1.55 albertel 338: } else {
1.72 www 339: $r->print(&mt(' a certain'));
1.55 albertel 340: }
1.72 www 341: $r->print(&mt(' course.').'</body></html>');
1.55 albertel 342: return OK;
1.6 www 343: }
344: } else {
345: if ($advanced) {
1.72 www 346: $r->print(&mt("Your home server is ").
1.55 albertel 347: $Apache::lonnet::hostname{&Apache::lonnet::homeserver
348: ($ENV{'user.name'},$ENV{'user.domain'})}.
349: "<br />\n");
1.72 www 350: $r->print(&mt(
351: "Author and Co-Author roles may not be available on servers other than your home server."));
1.17 www 352: }
1.18 www 353: if (($ENV{'REDIRECT_QUERY_STRING'}) && ($fn)) {
354: $fn.='?'.$ENV{'REDIRECT_QUERY_STRING'};
1.6 www 355: }
1.84 www 356: $r->print('<form method="post" name="rolechoice" action="'.(($fn)?$fn:$r->uri).'">');
1.6 www 357: $r->print('<input type=hidden name=orgurl value="'.$fn.'">');
358: $r->print('<input type=hidden name=selectrole value=1>');
359: }
1.63 www 360: if ($ENV{'user.adv'}) {
361: $r->print(
1.72 www 362: '<br />'.&mt('Show all roles').': <input type="checkbox" name="showall"');
1.63 www 363: if ($ENV{'form.showall'}) { $r->print(' checked'); }
1.72 www 364: $r->print('><input type=submit value="'.&mt('Display').'">');
1.63 www 365: }
1.4 www 366:
1.75 albertel 367: my (%roletext,%sortrole,%roleclass);
1.84 www 368: my $countactive=0;
369: my $inrole=0;
370: my $possiblerole='';
1.3 albertel 371: foreach $envkey (sort keys %ENV) {
1.35 matthew 372: my $button = 1;
1.49 www 373: my $switchserver='';
1.75 albertel 374: my $roletext;
375: my $sortkey;
1.2 www 376: if ($envkey=~/^user\.role\./) {
1.40 matthew 377: my (undef,undef,$role,@pwhere)=split(/\./,$envkey);
1.46 matthew 378: next if (!defined($role) || $role eq '');
1.4 www 379: my $where=join('.',@pwhere);
1.6 www 380: my $trolecode=$role.'.'.$where;
1.4 www 381: my ($tstart,$tend)=split(/\./,$ENV{$envkey});
382: my $tremark='';
383: my $tstatus='is';
384: my $tpstart=' ';
385: my $tpend=' ';
1.47 www 386: my $tfont='#000000';
1.4 www 387: if ($tstart) {
388: if ($tstart>$then) {
1.35 matthew 389: $tstatus='future';
390: if ($tstart<$now) { $tstatus='will'; }
1.4 www 391: }
1.74 www 392: $tpstart=&Apache::lonlocal::locallocaltime($tstart);
1.4 www 393: }
394: if ($tend) {
1.23 www 395: if ($tend<$then) {
1.35 matthew 396: $tstatus='expired';
1.23 www 397: } elsif ($tend<$now) {
1.35 matthew 398: $tstatus='will_not';
1.23 www 399: }
1.74 www 400: $tpend=&Apache::lonlocal::locallocaltime($tend);
1.4 www 401: }
1.6 www 402: if ($ENV{'request.role'} eq $trolecode) {
403: $tstatus='selected';
404: }
1.4 www 405: my $tbg;
1.35 matthew 406: if (($tstatus eq 'is') || ($tstatus eq 'selected') ||
407: ($ENV{'form.showall'})) {
408: if ($tstatus eq 'is') {
409: $tbg='#77FF77';
1.47 www 410: $tfont='#003300';
1.84 www 411: $possiblerole=$trolecode;
412: $countactive++;
1.35 matthew 413: } elsif ($tstatus eq 'future') {
414: $tbg='#FFFF77';
1.49 www 415: $button=0;
1.35 matthew 416: } elsif ($tstatus eq 'will') {
417: $tbg='#FFAA77';
1.72 www 418: $tremark.=&mt('Active at next login. ');
1.35 matthew 419: } elsif ($tstatus eq 'expired') {
420: $tbg='#FF7777';
1.47 www 421: $tfont='#330000';
1.49 www 422: $button=0;
1.35 matthew 423: } elsif ($tstatus eq 'will_not') {
424: $tbg='#AAFF77';
1.72 www 425: $tremark.=&mt('Expired after logout. ');
1.35 matthew 426: } elsif ($tstatus eq 'selected') {
427: $tbg='#11CC55';
1.47 www 428: $tfont='#002200';
1.84 www 429: $inrole=1;
1.86 albertel 430: $countactive++;
1.72 www 431: $tremark.=&mt('Currently selected. ');
1.35 matthew 432: }
433: my $trole;
434: if ($role =~ /^cr\//) {
435: my ($rdummy,$rdomain,$rauthor,$rrole)=split(/\//,$role);
1.72 www 436: $tremark.='<br>'.&mt('Defined by ').$rauthor.
437: &mt(' at ').$rdomain.'.';
1.35 matthew 438: $trole=$rrole;
1.8 www 439: } else {
1.35 matthew 440: $trole=Apache::lonnet::plaintext($role);
441: }
442: my $ttype;
443: my $twhere;
444: my ($tdom,$trest,$tsection)=
445: split(/\//,Apache::lonnet::declutter($where));
446: # First, Co-Authorship roles
447: if ($role eq 'ca') {
1.39 stredwic 448: my $home = &Apache::lonnet::homeserver($trest,$tdom);
1.83 albertel 449: my $allowed=0;
450: my @ids=&Apache::lonnet::current_machine_ids();
451: foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
452: if (!$allowed) {
1.49 www 453: $button=0;
1.51 www 454: $switchserver=&Apache::lonnet::escape('http://'.
455: $Apache::lonnet::hostname{$home}.
456: '/adm/login?domain='.$ENV{'user.domain'}.
457: '&username='.$ENV{'user.name'}.
458: '&firsturl=/priv/'.$trest);
1.49 www 459: }
1.35 matthew 460: #next if ($home eq 'no_host');
461: $home = $Apache::lonnet::hostname{$home};
1.78 sakharuk 462: $ttype='Construction Space';
1.72 www 463: $twhere=&mt('User').': '.$trest.'<br />'.&mt('Domain').
464: ': '.$tdom.'<br />'.
465: ' '.&mt('Server').': '.$home;
1.35 matthew 466: $ENV{'course.'.$tdom.'_'.$trest.'.description'}='ca';
1.82 www 467: $tremark.=&Apache::lonhtmlcommon::authorbombs('/res/'.$tdom.'/'.$trest.'/');
1.75 albertel 468: $sortkey=$role."$trest:$tdom";
1.35 matthew 469: } elsif ($role eq 'au') {
470: # Authors
471: my $home = &Apache::lonnet::homeserver
1.39 stredwic 472: ($ENV{'user.name'},$ENV{'user.domain'});
1.83 albertel 473: my $allowed=0;
474: my @ids=&Apache::lonnet::current_machine_ids();
475: foreach my $id (@ids) { if ($id eq $home) { $allowed=1; } }
476: if (!$allowed) {
1.49 www 477: $button=0;
1.51 www 478: $switchserver=&Apache::lonnet::escape('http://'.
479: $Apache::lonnet::hostname{$home}.
480: '/adm/login?domain='.$ENV{'user.domain'}.
481: '&username='.$ENV{'user.name'}.
482: '&firsturl=/priv/'.$ENV{'user.name'});
1.49 www 483: }
1.35 matthew 484: #next if ($home eq 'no_host');
485: $home = $Apache::lonnet::hostname{$home};
1.78 sakharuk 486: $ttype='Construction Space';
1.72 www 487: $twhere=&mt('Domain').': '.$tdom.'<br />'.&mt('Server').
488: ': '.$home;
1.35 matthew 489: $ENV{'course.'.$tdom.'_'.$trest.'.description'}='ca';
1.82 www 490: $tremark.=&Apache::lonhtmlcommon::authorbombs('/res/'.$tdom.'/'.$ENV{'user.name'}.'/');
1.75 albertel 491: $sortkey=$role;
1.35 matthew 492: } elsif ($trest) {
1.78 sakharuk 493: $ttype='Course';
1.35 matthew 494: if ($tsection) {
1.72 www 495: $ttype.='<br>'.&mt('Section/Group').': '.$tsection;
1.37 albertel 496: }
1.35 matthew 497: my $tcourseid=$tdom.'_'.$trest;
498: if ($ENV{'course.'.$tcourseid.'.description'}) {
1.47 www 499: $twhere=$ENV{'course.'.$tcourseid.'.description'};
1.80 albertel 500: $sortkey=$role."\0".$tdom."\0".$twhere."\0".$envkey;
1.72 www 501: unless ($twhere eq &mt('Currently not available')) {
1.55 albertel 502: $twhere.=' <font size="-2">'.
1.72 www 503: &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom,$tfont).
1.49 www 504: '</font>';
1.55 albertel 505: }
1.8 www 506: } else {
1.35 matthew 507: my %newhash=Apache::lonnet::coursedescription
508: ($tcourseid);
509: if (%newhash) {
1.80 albertel 510: $sortkey=$role."\0".$tdom."\0".$newhash{'description'}.
1.77 albertel 511: "\0".$envkey;
1.49 www 512: $twhere=$newhash{'description'}.
513: ' <font size="-2">'.
1.72 www 514: &Apache::loncommon::syllabuswrapper(&mt('Syllabus'),$trest,$tdom,$tfont).
1.49 www 515: '</font>';
1.35 matthew 516: } else {
1.72 www 517: $twhere=&mt('Currently not available');
1.35 matthew 518: $ENV{'course.'.$tcourseid.'.description'}=$twhere;
1.80 albertel 519: $sortkey=$role."\0".$tdom."\0".$twhere."\0".$envkey;
1.35 matthew 520: }
1.8 www 521: }
1.72 www 522: if ($role ne 'st') { $twhere.="<br />".&mt('Domain').":".$tdom; }
1.35 matthew 523: } elsif ($tdom) {
1.78 sakharuk 524: $ttype='Domain';
1.35 matthew 525: $twhere=$tdom;
1.75 albertel 526: $sortkey=$role.$twhere;
1.35 matthew 527: } else {
1.78 sakharuk 528: $ttype='System';
1.72 www 529: $twhere=&mt('system wide');
1.75 albertel 530: $sortkey=$role.$twhere;
1.13 www 531: }
1.35 matthew 532:
1.75 albertel 533: $roletext.='<tr bgcolor='.$tbg.'>';
1.35 matthew 534: unless ($nochoose) {
535: if (!$button) {
1.49 www 536: if ($switchserver) {
1.75 albertel 537: $roletext.='<td><a href="/adm/logout?handover='.
538: $switchserver.'">'.&mt('Switch Server').'</a></td>';
1.49 www 539: } else {
1.75 albertel 540: $roletext.=('<td> </td>');
1.49 www 541: }
1.35 matthew 542: } elsif ($tstatus eq 'is') {
1.75 albertel 543: $roletext.=('<td><input type=submit value="'.
1.72 www 544: &mt('Select').'" name="'.
1.35 matthew 545: $trolecode.'"></td>');
1.61 www 546: } elsif ($tryagain) {
1.75 albertel 547: $roletext.=
548: '<td><input type=submit value="'.
549: &mt('Try Selecting Again').'" name="'.$trolecode.'"></td>';
1.61 www 550: } elsif ($advanced) {
1.75 albertel 551: $roletext.=
552: '<td><input type=submit value="'.
553: &mt('Re-Initialize').'" name="'.$trolecode.'"></td>';
1.35 matthew 554: } else {
1.75 albertel 555: $roletext.='<td> </td>';
1.35 matthew 556: }
1.6 www 557: }
1.57 www 558: $tremark.=&Apache::lonannounce::showday(time,1,
559: &Apache::lonannounce::readcalendar($tdom.'_'.$trest));
560:
1.75 albertel 561: $roletext.='<td><font color="'.$tfont.'">'.$trole.
1.47 www 562: '</font></td><td><font color="'.$tfont.'">'.$ttype.
563: '</font></td><td><font color="'.$tfont.'">'.$twhere.
564: '</font></td><td><font color="'.$tfont.'">'.$tpstart.
565: '</font></td><td><font color="'.$tfont.'">'.$tpend.
566: '</font></td><td><font color="'.$tfont.'">'.$tremark.
1.75 albertel 567: ' </font></td></tr>'."\n";
568: $roletext{$envkey}=$roletext;
569: if (!$sortkey) {$sortkey=$twhere."\0".$envkey;}
570: $sortrole{$sortkey}=$envkey;
571: $roleclass{$envkey}=$ttype;
1.55 albertel 572: }
1.4 www 573: }
1.75 albertel 574: }
1.84 www 575: # No active roles
576: if ($countactive==0) {
577: if ($inrole) {
578: $r->print('<h2>'.&mt('Currently no additional roles or courses').'</h2>');
579: } else {
580: $r->print('<h2>'.&mt('Currently no active roles or courses').'</h2>');
581: }
582: $r->print('</form></body></html>');
583: return OK;
584: # Is there only one choice?
1.88 www 585: } elsif (($countactive==1) && ($ENV{'request.role'} eq 'cm')) {
1.84 www 586: $r->print('<h3>'.&mt('Please stand by.').'</h3>'.
587: '<input type="hidden" name="'.$possiblerole.'" value="1" />');
588: $r->print("</form>\n");
589: $r->rflush();
590: $r->print('<script>document.forms.rolechoice.submit();</script>');
591: $r->print('</body></html>');
592: return OK;
593: }
594: # More than one possible role
595: # ----------------------------------------------------------------------- Table
596: unless (($advanced) || ($nochoose)) {
597: $r->print("<h2>".&mt('Select a Course to Enter')."</h2>\n");
598: }
599: $r->print('<br /><table><tr>');
600: unless ($nochoose) { $r->print('<th> </th>'); }
601: $r->print('<th>'.&mt('User Role').'</th><th colspan=2>'.&mt('Extent').
602: '</th><th>'.&mt('Start').'</th><th>'.&mt('End').'</th><th>'.
603: &mt('Remark').'</th></tr>'."\n");
1.76 albertel 604: my $doheaders=-1;
1.78 sakharuk 605: foreach my $type ('Construction Space','Course','Domain','System') {
1.76 albertel 606: my $haverole=0;
1.75 albertel 607: foreach my $which (sort {uc($a) cmp uc($b)} (keys(%sortrole))) {
608: if ($roleclass{$sortrole{$which}} =~ /^\Q$type\E/) {
1.76 albertel 609: $haverole=1;
1.75 albertel 610: }
1.76 albertel 611: }
612: if ($haverole) { $doheaders++; }
613: }
1.78 sakharuk 614: foreach my $type ('Construction Space','Course','Domain','System') {
1.76 albertel 615: my $output;
616: foreach my $which (sort {uc($a) cmp uc($b)} (keys(%sortrole))) {
617: if ($roleclass{$sortrole{$which}} =~ /^\Q$type\E/) {
1.78 sakharuk 618: $output.=&mt($roletext{$sortrole{$which}});
1.76 albertel 619: }
620: }
621: if ($output) {
622: if ($doheaders > 0) {
1.77 albertel 623: $r->print("<tr bgcolor='#BBffBB'>".
1.79 sakharuk 624: "<td align='center' colspan='7'>".&mt($type)."</td>");
1.76 albertel 625: }
626: $r->print($output);
1.75 albertel 627: }
1.4 www 628: }
1.14 www 629: my $tremark='';
1.47 www 630: my $tfont='#003300';
1.14 www 631: if ($ENV{'request.role'} eq 'cm') {
1.19 www 632: $r->print('<tr bgcolor="#11CC55">');
1.72 www 633: $tremark=&mt('Currently selected. ');
1.47 www 634: $tfont='#002200';
1.14 www 635: } else {
636: $r->print('<tr bgcolor="#77FF77">');
637: }
638: unless ($nochoose) {
1.55 albertel 639: if ($ENV{'request.role'} ne 'cm') {
1.72 www 640: $r->print('<td><input type=submit value="'.
641: &mt('Select').'" name="cm"></td>');
1.55 albertel 642: } else {
643: $r->print('<td> </td>');
644: }
1.14 www 645: }
1.72 www 646: $r->print('<td colspan=5><font color="'.$tfont.'">'.&mt('No role specified').
1.47 www 647: '</font></td><td><font color="'.$tfont.'">'.$tremark.
648: ' </font></td></tr>'."\n");
1.4 www 649:
650: $r->print('</table>');
651: unless ($nochoose) {
652: $r->print("</form>\n");
653: }
1.22 harris41 654: # ------------------------------------------------------------ Privileges Info
1.55 albertel 655: if (($advanced) && (($ENV{'user.error.msg'}) || ($error))) {
656: $r->print('<hr><h2>Current Privileges</h2>');
1.4 www 657:
1.55 albertel 658: foreach $envkey (sort keys %ENV) {
659: if ($envkey=~/^user\.priv\.$ENV{'request.role'}\./) {
660: my $where=$envkey;
661: $where=~s/^user\.priv\.$ENV{'request.role'}\.//;
662: my $ttype;
663: my $twhere;
664: my ($tdom,$trest,$tsec)=
665: split(/\//,Apache::lonnet::declutter($where));
666: if ($trest) {
667: if ($ENV{'course.'.$tdom.'_'.$trest.'.description'} eq 'ca') {
668: $ttype='Construction Space';
669: $twhere='User: '.$trest.', Domain: '.$tdom;
670: } else {
671: $ttype='Course';
672: $twhere=$ENV{'course.'.$tdom.'_'.$trest.'.description'};
673: if ($tsec) {
674: $twhere.=' (Section/Group: '.$tsec.')';
675: }
676: }
677: } elsif ($tdom) {
678: $ttype='Domain';
679: $twhere=$tdom;
680: } else {
681: $ttype='System';
682: $twhere='/';
683: }
684: $r->print("\n<h3>".$ttype.': '.$twhere.'</h3><ul>');
685: foreach (sort split(/:/,$ENV{$envkey})) {
686: if ($_) {
687: my ($prv,$restr)=split(/\&/,$_);
688: my $trestr='';
689: if ($restr ne 'F') {
690: my $i;
691: $trestr.=' (';
692: for ($i=0;$i<length($restr);$i++) {
693: $trestr.=
694: Apache::lonnet::plaintext(substr($restr,$i,1));
695: if ($i<length($restr)-1) { $trestr.=', '; }
696: }
697: $trestr.=')';
698: }
699: $r->print('<li>'.
700: Apache::lonnet::plaintext($prv).$trestr.
701: '</li>');
702: }
703: }
704: $r->print('</ul>');
705: }
706: }
1.4 www 707: }
1.66 www 708: $r->print(&Apache::lonnet::getannounce());
1.65 www 709: if ($advanced) {
710: $r->print('<p><small><i>This is LON-CAPA '.
1.85 www 711: $r->dir_config('lonVersion').'</i><br />'.
712: '<a href="/adm/logout">'.&mt('Logout').'</a></small></p>');
1.65 www 713: }
1.1 harris41 714: $r->print("</body></html>\n");
715: return OK;
716: }
717:
718: 1;
719: __END__
1.32 harris41 720:
721: =head1 NAME
722:
723: Apache::lonroles - User Roles Screen
724:
725: =head1 SYNOPSIS
726:
727: Invoked by /etc/httpd/conf/srm.conf:
728:
729: <Location /adm/roles>
730: PerlAccessHandler Apache::lonacc
731: SetHandler perl-script
732: PerlHandler Apache::lonroles
733: ErrorDocument 403 /adm/login
734: ErrorDocument 500 /adm/errorhandler
735: </Location>
1.64 bowersj2 736:
737: =head1 OVERVIEW
738:
739: =head2 Choosing Roles
740:
741: C<lonroles> is a handler that allows a user to switch roles in
742: mid-session. LON-CAPA attempts to work with "No Role Specified", the
743: default role that a user has before selecting a role, as widely as
744: possible, but certain handlers for example need specification which
745: course they should act on, etc. Both in this scenario, and when the
746: handler determines via C<lonnet>'s C<&allowed> function that a certain
747: action is not allowed, C<lonroles> is used as error handler. This
748: allows the user to select another role which may have permission to do
749: what they were trying to do. C<lonroles> can also be accessed via the
750: B<CRS> button in the Remote Control.
751:
752: =begin latex
753:
754: \begin{figure}
755: \begin{center}
756: \includegraphics[width=0.45\paperwidth,keepaspectratio]{Sample_Roles_Screen}
757: \caption{\label{Sample_Roles_Screen}Sample Roles Screen}
758: \end{center}
759: \end{figure}
760:
761: =end latex
762:
763: =head2 Role Initialization
764:
765: 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 766:
767: =head1 INTRODUCTION
768:
769: This module enables a user to select what role he wishes to
770: operate under (instructor, student, teaching assistant, course
771: coordinator, etc). These roles are pre-established by the actions
772: of upper-level users.
773:
774: This is part of the LearningOnline Network with CAPA project
775: described at http://www.lon-capa.org.
776:
777: =head1 HANDLER SUBROUTINE
778:
779: This routine is called by Apache and mod_perl.
780:
781: =over 4
782:
783: =item *
784:
785: Roles Initialization (yes/no)
786:
787: =item *
788:
789: Get Error Message from Environment
790:
791: =item *
792:
793: Who is this?
794:
795: =item *
796:
797: Generate Page Output
798:
799: =item *
800:
801: Choice or no choice
802:
803: =item *
804:
805: Table
806:
807: =item *
808:
809: Privileges
810:
811: =back
812:
813: =cut
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>