Diff for /loncom/auth/lonroles.pm between versions 1.54 and 1.55

version 1.54, 2003/03/24 14:45:09 version 1.55, 2003/03/24 18:46:44
Line 67  sub handler { Line 67  sub handler {
     my %temp=('logout_'.$ENV{'request.course.id'} => time);      my %temp=('logout_'.$ENV{'request.course.id'} => time);
     &Apache::lonnet::put('email_status',\%temp);      &Apache::lonnet::put('email_status',\%temp);
         }          }
        &Apache::lonnet::appenv("request.course.id"   => '',   &Apache::lonnet::appenv("request.course.id"   => '',
                                "request.course.fn"   => '',   "request.course.fn"   => '',
                                "request.course.uri"  => '',   "request.course.uri"  => '',
                                "request.course.sec"  => '',   "request.course.sec"  => '',
                                "request.role"        => 'cm',   "request.role"        => 'cm',
                                "request.role.domain" => $ENV{'user.domain'});    "request.role.domain" => $ENV{'user.domain'});
         foreach $envkey (keys %ENV) {          foreach $envkey (keys %ENV) {
             next if ($envkey!~/^user\.role\./);              next if ($envkey!~/^user\.role\./);
     my (undef,undef,$role,@pwhere)=split(/\./,$envkey);      my (undef,undef,$role,@pwhere)=split(/\./,$envkey);
             my $where=join('.',@pwhere);              my $where=join('.',@pwhere);
             my $trolecode=$role.'.'.$where;              my $trolecode=$role.'.'.$where;
             if ($ENV{'form.'.$trolecode}) {              if ($ENV{'form.'.$trolecode}) {
                my ($tstart,$tend)=split(/\./,$ENV{$envkey});   my ($tstart,$tend)=split(/\./,$ENV{$envkey});
                my $tstatus='is';   my $tstatus='is';
                if ($tstart) {   if ($tstart) {
        if ($tstart>$then) {       if ($tstart>$then) { 
                      $tstatus='future';   $tstatus='future';
                   }      }
                }   }
                if ($tend) {   if ($tend) {
                   if ($tend<$then) { $tstatus='expired'; }      if ($tend<$then) { $tstatus='expired'; }
                   if ($tend<$now) { $tstatus='will_not'; }      if ($tend<$now) { $tstatus='will_not'; }
                }   }
                if ($tstatus eq 'is') {   if ($tstatus eq 'is') {
                    $where=~s/^\///;      $where=~s/^\///;
                    my ($cdom,$cnum,$csec)=split(/\//,$where);      my ($cdom,$cnum,$csec)=split(/\//,$where);
 # check for keyed access  # check for keyed access
                    if (($role eq 'st') &&       if (($role eq 'st') && 
                      ($ENV{'course.'.$cdom.'_'.$cnum.'.keyaccess'} eq 'yes')) {                         ($ENV{'course.'.$cdom.'_'.$cnum.'.keyaccess'} eq 'yes')) {
                       unless (&Apache::lonnet::validate_access_key(           unless (&Apache::lonnet::validate_access_key(
  $ENV{'environment.key.'.$cdom.'_'.$cnum},       $ENV{'environment.key.'.$cdom.'_'.$cnum},
  $cdom,$cnum)) {       $cdom,$cnum)) {
 # there is no valid key  # there is no valid key
   if ($ENV{'form.newkey'}) {       if ($ENV{'form.newkey'}) {
 # student attempts to register a new key  # student attempts to register a new key
                           } else {       } else {
 # print form to enter a new key  # print form to enter a new key
                      $r->content_type('text/html');   $r->content_type('text/html');
      &Apache::loncommon::no_cache($r);   &Apache::loncommon::no_cache($r);
      $r->send_http_header;   $r->send_http_header;
      my $swinfo=&Apache::lonmenu::rawconfig();   my $swinfo=&Apache::lonmenu::rawconfig();
      my $bodytag=&Apache::loncommon::bodytag   my $bodytag=&Apache::loncommon::bodytag
  ('Enter Access Key to Unlock this Course');      ('Enter Access Key to Unlock this Course');
      $r->print(<<ENDENTERKEY);   $r->print(<<ENDENTERKEY);
 <head><title>Entering Course Access Key</title>  <head><title>Entering Course Access Key</title>
 </head>  </head>
 <html>  <html>
Line 125  $swinfo Line 125  $swinfo
 </form>  </form>
 </body></html>  </body></html>
 ENDENTERKEY  ENDENTERKEY
                             return OK;   return OK;
                          }       }
                       }   }
   }       }
                    &Apache::lonnet::appenv('request.role'        => $trolecode,      &Apache::lonnet::appenv('request.role'        => $trolecode,
                                            'request.role.domain' => $cdom,      'request.role.domain' => $cdom,
                                            'request.course.sec'  => $csec);      'request.course.sec'  => $csec);
                    my $msg='Entering course ...';      my $msg='Entering course ...';
                    if (($cnum) && ($role ne 'ca')) {      if (($cnum) && ($role ne 'ca')) {
       my ($furl,$ferr)=   my ($furl,$ferr)=
   &Apache::lonuserstate::readmap($cdom.'/'.$cnum);      &Apache::lonuserstate::readmap($cdom.'/'.$cnum);
                       if (($ENV{'form.orgurl'}) &&    if (($ENV{'form.orgurl'}) && 
                           ($ENV{'form.orgurl'}!~/^\/adm\/flip/)) {      ($ENV{'form.orgurl'}!~/^\/adm\/flip/)) {
                          $r->internal_redirect($ENV{'form.orgurl'});      $r->internal_redirect($ENV{'form.orgurl'});
                          return OK;      return OK;
      } else {   } else {
                          unless ($ENV{'request.course.id'}) {      unless ($ENV{'request.course.id'}) {
                              &Apache::lonnet::appenv(   &Apache::lonnet::appenv(
  "request.course.id"  => $cdom.'_'.$cnum);        "request.course.id"  => $cdom.'_'.$cnum);
                              $furl='/adm/notfound.html';   $furl='/adm/notfound.html';
                              $msg=   $msg=
  '<h1><font color=red>Could not initialize top-level map.</font></h1>';   '<h1><font color=red>Could not initialize top-level map.</font></h1>';
                           }      }
                  $r->content_type('text/html');      $r->content_type('text/html');
                          &Apache::loncommon::no_cache($r);      &Apache::loncommon::no_cache($r);
                          $r->send_http_header;      $r->send_http_header;
                          my $swinfo=&Apache::lonmenu::rawconfig();      my $swinfo=&Apache::lonmenu::rawconfig();
                          my $bodytag=&Apache::loncommon::bodytag('Switching Role');      my $bodytag=&Apache::loncommon::bodytag('Switching Role');
                          print (<<ENDREDIR);      print (<<ENDREDIR);
 <head><title>Entering Course</title>  <head><title>Entering Course</title>
 <meta HTTP-EQUIV="Refresh" CONTENT="1; url=$furl">  <meta HTTP-EQUIV="Refresh" CONTENT="1; url=$furl">
 </head>  </head>
Line 167  $swinfo Line 167  $swinfo
 </html>  </html>
 ENDREDIR  ENDREDIR
                             return OK;                              return OK;
                      }   }
                    }      }
                }   }
             }               }
         }          }
     }      }
   
Line 203  ENDHEADER Line 203  ENDHEADER
   
     my ($fn,$priv,$nochoose,$error,$msg)=split(/:/,$ENV{'user.error.msg'});      my ($fn,$priv,$nochoose,$error,$msg)=split(/:/,$ENV{'user.error.msg'});
     if ($ENV{'user.error.msg'}) {      if ($ENV{'user.error.msg'}) {
        $r->log_reason(   $r->log_reason(
      "$msg for $ENV{'user.name'} domain $ENV{'user.domain'} access $priv",$fn);     "$msg for $ENV{'user.name'} domain $ENV{'user.domain'} access $priv",$fn);
     }      }
   
 # ---------------------------------------------------------------- Who is this?  # ---------------------------------------------------------------- Who is this?
Line 235  ENDHEADER Line 235  ENDHEADER
 # -------------------------------------------------------- Choice or no choice?  # -------------------------------------------------------- Choice or no choice?
     if ($nochoose) {      if ($nochoose) {
         if ($advanced) {          if ($advanced) {
    $r->print("<h2>Assigned User Roles</h2>\n");      $r->print("<h2>Assigned User Roles</h2>\n");
         } else {          } else {
            $r->print("<h2>Sorry ...</h2>\nThis resource might be part of");      $r->print("<h2>Sorry ...</h2>\nThis resource might be part of");
            if ($ENV{'request.course.id'}) {      if ($ENV{'request.course.id'}) {
        $r->print(' another');   $r->print(' another');
            } else {      } else {
                $r->print(' a certain');   $r->print(' a certain');
            }       } 
            $r->print(' course.</body></html>');      $r->print(' course.</body></html>');
            return OK;      return OK;
         }           } 
     } else {      } else {
         if ($advanced) {          if ($advanced) {
            $r->print("Your home server is ".      $r->print("Your home server is ".
                      $Apache::lonnet::hostname{&Apache::lonnet::homeserver        $Apache::lonnet::hostname{&Apache::lonnet::homeserver
                      ($ENV{'user.name'},$ENV{'user.domain'})}.                        ($ENV{'user.name'},$ENV{'user.domain'})}.
      "<br />\n");        "<br />\n");
            $r->print("Author and Co-Author roles may not be available on ".      $r->print("Author and Co-Author roles may not be available on ".
                      "servers other than your home server.");        "servers other than your home server.");
         } else {          } else {
    $r->print("<h2>Enter a Course</h2>\n");      $r->print("<h2>Enter a Course</h2>\n");
         }          }
         if (($ENV{'REDIRECT_QUERY_STRING'}) && ($fn)) {          if (($ENV{'REDIRECT_QUERY_STRING'}) && ($fn)) {
        $fn.='?'.$ENV{'REDIRECT_QUERY_STRING'};         $fn.='?'.$ENV{'REDIRECT_QUERY_STRING'};
Line 270  ENDHEADER Line 270  ENDHEADER
 # ----------------------------------------------------------------------- Table  # ----------------------------------------------------------------------- Table
     $r->print('<table><tr>');      $r->print('<table><tr>');
     unless ($nochoose) { $r->print('<th>&nbsp;</th>'); }      unless ($nochoose) { $r->print('<th>&nbsp;</th>'); }
        $r->print('<th>User Role</th><th colspan=2>Extent</th>'.      $r->print('<th>User Role</th><th colspan=2>Extent</th>'.
                  '<th>Start</th><th>End</th><th>Remark</th></tr>'."\n");        '<th>Start</th><th>End</th><th>Remark</th></tr>'."\n");
   
     foreach $envkey (sort keys %ENV) {      foreach $envkey (sort keys %ENV) {
         my $button = 1;          my $button = 1;
Line 384  ENDHEADER Line 384  ENDHEADER
                     if ($ENV{'course.'.$tcourseid.'.description'}) {                      if ($ENV{'course.'.$tcourseid.'.description'}) {
                         $twhere=$ENV{'course.'.$tcourseid.'.description'};                          $twhere=$ENV{'course.'.$tcourseid.'.description'};
                         unless ($twhere eq 'Currently not available') {                          unless ($twhere eq 'Currently not available') {
                            $twhere.=' <font size="-2">'.      $twhere.=' <font size="-2">'.
         &Apache::loncommon::syllabuswrapper('Syllabus',$trest,$tdom,$tfont).          &Apache::loncommon::syllabuswrapper('Syllabus',$trest,$tdom,$tfont).
                                     '</font>';                                      '</font>';
        }   }
                     } else {                      } else {
                         my %newhash=Apache::lonnet::coursedescription                          my %newhash=Apache::lonnet::coursedescription
                             ($tcourseid);                              ($tcourseid);
Line 410  ENDHEADER Line 410  ENDHEADER
                     $twhere='system wide';                      $twhere='system wide';
                 }                  }
     
 # ----- do not trust the indention below here -----                
                 $r->print('<tr bgcolor='.$tbg.'>');                  $r->print('<tr bgcolor='.$tbg.'>');
                 unless ($nochoose) {                  unless ($nochoose) {
                     if (!$button) {                      if (!$button) {
Line 431  ENDHEADER Line 430  ENDHEADER
                         $r->print('<td>&nbsp;</td>');                          $r->print('<td>&nbsp;</td>');
                     }                      }
                 }                  }
             $r->print('<td><font color="'.$tfont.'">'.$trole.   $r->print('<td><font color="'.$tfont.'">'.$trole.
                       '</font></td><td><font color="'.$tfont.'">'.$ttype.                        '</font></td><td><font color="'.$tfont.'">'.$ttype.
                       '</font></td><td><font color="'.$tfont.'">'.$twhere.                        '</font></td><td><font color="'.$tfont.'">'.$twhere.
                       '</font></td><td><font color="'.$tfont.'">'.$tpstart.                        '</font></td><td><font color="'.$tfont.'">'.$tpstart.
                       '</font></td><td><font color="'.$tfont.'">'.$tpend.                        '</font></td><td><font color="'.$tfont.'">'.$tpend.
                       '</font></td><td><font color="'.$tfont.'">'.$tremark.                        '</font></td><td><font color="'.$tfont.'">'.$tremark.
                       '&nbsp;</font></td></tr>'."\n");                        '&nbsp;</font></td></tr>'."\n");
  }      }
         }          }
     }      }
     my $tremark='';      my $tremark='';
Line 451  ENDHEADER Line 450  ENDHEADER
         $r->print('<tr bgcolor="#77FF77">');          $r->print('<tr bgcolor="#77FF77">');
     }      }
     unless ($nochoose) {      unless ($nochoose) {
        if ($ENV{'request.role'} ne 'cm') {   if ($ENV{'request.role'} ne 'cm') {
           $r->print('<td><input type=submit value=Select name="cm"></td>');      $r->print('<td><input type=submit value=Select name="cm"></td>');
        } else {   } else {
           $r->print('<td>&nbsp;</td>');      $r->print('<td>&nbsp;</td>');
        }   }
     }      }
     $r->print('<td colspan=5><font color="'.$tfont.'">No role specified'.      $r->print('<td colspan=5><font color="'.$tfont.'">No role specified'.
       '</font></td><td><font color="'.$tfont.'">'.$tremark.        '</font></td><td><font color="'.$tfont.'">'.$tremark.
Line 466  ENDHEADER Line 465  ENDHEADER
  $r->print("</form>\n");   $r->print("</form>\n");
     }      }
 # ------------------------------------------------------------ Privileges Info  # ------------------------------------------------------------ Privileges Info
   if (($advanced) && (($ENV{'user.error.msg'}) || ($error))) {      if (($advanced) && (($ENV{'user.error.msg'}) || ($error))) {
     $r->print('<hr><h2>Current Privileges</h2>');   $r->print('<hr><h2>Current Privileges</h2>');
   
     foreach $envkey (sort keys %ENV) {   foreach $envkey (sort keys %ENV) {
         if ($envkey=~/^user\.priv\.$ENV{'request.role'}\./) {      if ($envkey=~/^user\.priv\.$ENV{'request.role'}\./) {
             my $where=$envkey;   my $where=$envkey;
             $where=~s/^user\.priv\.$ENV{'request.role'}\.//;   $where=~s/^user\.priv\.$ENV{'request.role'}\.//;
             my $ttype;   my $ttype;
             my $twhere;   my $twhere;
             my ($tdom,$trest,$tsec)=   my ($tdom,$trest,$tsec)=
                split(/\//,Apache::lonnet::declutter($where));      split(/\//,Apache::lonnet::declutter($where));
             if ($trest) {   if ($trest) {
       if ($ENV{'course.'.$tdom.'_'.$trest.'.description'} eq 'ca') {      if ($ENV{'course.'.$tdom.'_'.$trest.'.description'} eq 'ca') {
         $ttype='Construction Space';   $ttype='Construction Space';
                 $twhere='User: '.$trest.', Domain: '.$tdom;   $twhere='User: '.$trest.', Domain: '.$tdom;
               } else {      } else {
  $ttype='Course';   $ttype='Course';
                 $twhere=$ENV{'course.'.$tdom.'_'.$trest.'.description'};   $twhere=$ENV{'course.'.$tdom.'_'.$trest.'.description'};
                 if ($tsec) {   if ($tsec) {
     $twhere.=' (Section/Group: '.$tsec.')';      $twhere.=' (Section/Group: '.$tsec.')';
                 }   }
       }      }
             } elsif ($tdom) {   } elsif ($tdom) {
                 $ttype='Domain';      $ttype='Domain';
                 $twhere=$tdom;      $twhere=$tdom;
             } else {   } else {
                 $ttype='System';      $ttype='System';
                 $twhere='/';      $twhere='/';
             }   }
             $r->print("\n<h3>".$ttype.': '.$twhere.'</h3><ul>');   $r->print("\n<h3>".$ttype.': '.$twhere.'</h3><ul>');
             foreach (sort split(/:/,$ENV{$envkey})) {   foreach (sort split(/:/,$ENV{$envkey})) {
               if ($_) {      if ($_) {
   my ($prv,$restr)=split(/\&/,$_);   my ($prv,$restr)=split(/\&/,$_);
                   my $trestr='';   my $trestr='';
                   if ($restr ne 'F') {   if ($restr ne 'F') {
                       my $i;      my $i;
                       $trestr.=' (';      $trestr.=' (';
                       for ($i=0;$i<length($restr);$i++) {      for ($i=0;$i<length($restr);$i++) {
          $trestr.=   $trestr.=
                            Apache::lonnet::plaintext(substr($restr,$i,1));         Apache::lonnet::plaintext(substr($restr,$i,1));
                          if ($i<length($restr)-1) { $trestr.=', '; }   if ($i<length($restr)-1) { $trestr.=', '; }
       }      }
                       $trestr.=')';      $trestr.=')';
                   }   }
                   $r->print('<li>'.Apache::lonnet::plaintext($prv).$trestr.   $r->print('<li>'.
                             '</li>');    Apache::lonnet::plaintext($prv).$trestr.
       }    '</li>');
             }      }
             $r->print('</ul>');   }
         }   $r->print('</ul>');
       }
    }
     }      }
   }  
   
     $r->print("</body></html>\n");      $r->print("</body></html>\n");
     return OK;      return OK;

Removed from v.1.54  
changed lines
  Added in v.1.55


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>