Annotation of loncom/lonnet/perl/lonnet.pm, revision 1.300

1.1       albertel    1: # The LearningOnline Network
                      2: # TCP networking package
1.12      www         3: #
1.300   ! albertel    4: # $Id: lonnet.pm,v 1.299 2002/10/22 21:49:10 matthew Exp $
1.178     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.169     harris41   28: # 6/1/99,6/2,6/10,6/11,6/12,6/14,6/26,6/28,6/29,6/30,
                     29: # 7/1,7/2,7/9,7/10,7/12,7/14,7/15,7/19,
                     30: # 11/8,11/16,11/18,11/22,11/23,12/22,
                     31: # 01/06,01/13,02/24,02/28,02/29,
                     32: # 03/01,03/02,03/06,03/07,03/13,
                     33: # 04/05,05/29,05/31,06/01,
                     34: # 06/05,06/26 Gerd Kortemeyer
                     35: # 06/26 Ben Tyszka
                     36: # 06/30,07/15,07/17,07/18,07/20,07/21,07/22,07/25 Gerd Kortemeyer
                     37: # 08/14 Ben Tyszka
                     38: # 08/22,08/28,08/31,09/01,09/02,09/04,09/05,09/25,09/28,09/30 Gerd Kortemeyer
                     39: # 10/04 Gerd Kortemeyer
                     40: # 10/04 Guy Albertelli
                     41: # 10/06,10/09,10/10,10/11,10/14,10/20,10/23,10/25,10/26,10/27,10/28,10/29, 
                     42: # 10/30,10/31,
                     43: # 11/2,11/14,11/15,11/16,11/20,11/21,11/22,11/25,11/27,
                     44: # 12/02,12/12,12/13,12/14,12/28,12/29 Gerd Kortemeyer
                     45: # 05/01/01 Guy Albertelli
                     46: # 05/01,06/01,09/01 Gerd Kortemeyer
                     47: # 09/01 Guy Albertelli
                     48: # 09/01,10/01,11/01 Gerd Kortemeyer
                     49: # YEAR=2001
                     50: # 02/27/01 Scott Harrison
                     51: # 3/2 Gerd Kortemeyer
                     52: # 3/15,3/19 Scott Harrison
                     53: # 3/19,3/20 Gerd Kortemeyer
                     54: # 3/22,3/27,4/2,4/16,4/17 Scott Harrison
                     55: # 5/26,5/28 Gerd Kortemeyer
                     56: # 5/30 H. K. Ng
                     57: # 6/1 Gerd Kortemeyer
                     58: # July Guy Albertelli
                     59: # 8/4,8/7,8/8,8/9,8/11,8/16,8/17,8/18,8/20,8/23,9/20,9/21,9/26,
                     60: # 10/2 Gerd Kortemeyer
                     61: # 10/5,10/10,11/13,11/15 Scott Harrison
1.179     www        62: # 11/17,11/20,11/22,11/29 Gerd Kortemeyer
1.182     matthew    63: # 12/5 Matthew Hall
1.184     www        64: # 12/5 Guy Albertelli
1.190     www        65: # 12/6,12/7,12/12 Gerd Kortemeyer
1.191     harris41   66: # 12/18 Scott Harrison
1.195     www        67: # 12/21,12/22,12/27,12/28 Gerd Kortemeyer
1.196     www        68: # YEAR=2002
1.200     www        69: # 1/4,2/4,2/7 Gerd Kortemeyer
1.171     www        70: #
1.169     harris41   71: ###
                     72: 
1.1       albertel   73: package Apache::lonnet;
                     74: 
                     75: use strict;
                     76: use Apache::File;
1.8       www        77: use LWP::UserAgent();
1.15      www        78: use HTTP::Headers;
1.11      www        79: use vars 
1.300   ! albertel   80: qw(%perlvar %hostname %homecache %badServerCache %hostip %iphost %spareid %hostdom 
1.192     www        81:    %libserv %pr %prp %metacache %packagetab 
1.188     www        82:    %courselogs %accesshash $processmarker $dumpcount 
1.245     www        83:    %coursedombuf %coursehombuf %courseresdatacache %domaindescription);
1.1       albertel   84: use IO::Socket;
1.31      www        85: use GDBM_File;
1.8       www        86: use Apache::Constants qw(:common :http);
1.208     albertel   87: use HTML::LCParser;
1.88      www        88: use Fcntl qw(:flock);
1.294     matthew    89: use Apache::loncoursedata;
                     90: 
1.195     www        91: my $readit;
1.1       albertel   92: 
                     93: # --------------------------------------------------------------------- Logging
                     94: 
1.163     harris41   95: sub logtouch {
                     96:     my $execdir=$perlvar{'lonDaemons'};
                     97:     unless (-e "$execdir/logs/lonnet.log") {
                     98: 	my $fh=Apache::File->new(">>$execdir/logs/lonnet.log");
                     99: 	close $fh;
                    100:     }
                    101:     my ($wwwuid,$wwwgid)=(getpwnam('www'))[2,3];
                    102:     chown($wwwuid,$wwwgid,$execdir.'/logs/lonnet.log');
                    103: }
                    104: 
1.1       albertel  105: sub logthis {
                    106:     my $message=shift;
                    107:     my $execdir=$perlvar{'lonDaemons'};
                    108:     my $now=time;
                    109:     my $local=localtime($now);
1.162     harris41  110:     my $fh=Apache::File->new(">>$execdir/logs/lonnet.log");
                    111:     print $fh "$local ($$): $message\n";
1.1       albertel  112:     return 1;
                    113: }
                    114: 
                    115: sub logperm {
                    116:     my $message=shift;
                    117:     my $execdir=$perlvar{'lonDaemons'};
                    118:     my $now=time;
                    119:     my $local=localtime($now);
1.162     harris41  120:     my $fh=Apache::File->new(">>$execdir/logs/lonnet.perm.log");
                    121:     print $fh "$now:$message:$local\n";
1.1       albertel  122:     return 1;
                    123: }
                    124: 
                    125: # -------------------------------------------------- Non-critical communication
                    126: sub subreply {
                    127:     my ($cmd,$server)=@_;
                    128:     my $peerfile="$perlvar{'lonSockDir'}/$server";
                    129:     my $client=IO::Socket::UNIX->new(Peer    =>"$peerfile",
                    130:                                      Type    => SOCK_STREAM,
                    131:                                      Timeout => 10)
                    132:        or return "con_lost";
                    133:     print $client "$cmd\n";
                    134:     my $answer=<$client>;
1.9       www       135:     if (!$answer) { $answer="con_lost"; }
1.1       albertel  136:     chomp($answer);
                    137:     return $answer;
                    138: }
                    139: 
                    140: sub reply {
                    141:     my ($cmd,$server)=@_;
1.205     www       142:     unless (defined($hostname{$server})) { return 'no_such_host'; }
1.1       albertel  143:     my $answer=subreply($cmd,$server);
1.203     www       144:     if ($answer eq 'con_lost') {
1.233     albertel  145:        #sleep 5; 
                    146:        #$answer=subreply($cmd,$server);
                    147:        #if ($answer eq 'con_lost') {
                    148: 	#   &logthis("Second attempt con_lost on $server");
                    149:         #   my $peerfile="$perlvar{'lonSockDir'}/$server";
                    150:         #   my $client=IO::Socket::UNIX->new(Peer    =>"$peerfile",
                    151:         #                                    Type    => SOCK_STREAM,
                    152:         #                                    Timeout => 10)
                    153:         #              or return "con_lost";
                    154:         #   &logthis("Killing socket");
                    155:         #   print $client "close_connection_exit\n";
                    156:            #sleep 5;
                    157:         #   $answer=subreply($cmd,$server);       
                    158:        #}   
1.203     www       159:     }
1.65      www       160:     if (($answer=~/^refused/) || ($answer=~/^rejected/)) {
1.12      www       161:        &logthis("<font color=blue>WARNING:".
                    162:                 " $cmd to $server returned $answer</font>");
                    163:     }
1.1       albertel  164:     return $answer;
                    165: }
                    166: 
                    167: # ----------------------------------------------------------- Send USR1 to lonc
                    168: 
                    169: sub reconlonc {
                    170:     my $peerfile=shift;
                    171:     &logthis("Trying to reconnect for $peerfile");
                    172:     my $loncfile="$perlvar{'lonDaemons'}/logs/lonc.pid";
                    173:     if (my $fh=Apache::File->new("$loncfile")) {
                    174: 	my $loncpid=<$fh>;
                    175:         chomp($loncpid);
                    176:         if (kill 0 => $loncpid) {
                    177: 	    &logthis("lonc at pid $loncpid responding, sending USR1");
                    178:             kill USR1 => $loncpid;
                    179:             sleep 1;
                    180:             if (-e "$peerfile") { return; }
                    181:             &logthis("$peerfile still not there, give it another try");
                    182:             sleep 5;
                    183:             if (-e "$peerfile") { return; }
1.12      www       184:             &logthis(
                    185:   "<font color=blue>WARNING: $peerfile still not there, giving up</font>");
1.1       albertel  186:         } else {
1.12      www       187: 	    &logthis(
                    188:                "<font color=blue>WARNING:".
                    189:                " lonc at pid $loncpid not responding, giving up</font>");
1.1       albertel  190:         }
                    191:     } else {
1.12      www       192:      &logthis('<font color=blue>WARNING: lonc not running, giving up</font>');
1.1       albertel  193:     }
                    194: }
                    195: 
                    196: # ------------------------------------------------------ Critical communication
1.12      www       197: 
1.1       albertel  198: sub critical {
                    199:     my ($cmd,$server)=@_;
1.89      www       200:     unless ($hostname{$server}) {
                    201:         &logthis("<font color=blue>WARNING:".
                    202:                " Critical message to unknown server ($server)</font>");
                    203:         return 'no_such_host';
                    204:     }
1.1       albertel  205:     my $answer=reply($cmd,$server);
                    206:     if ($answer eq 'con_lost') {
                    207:         my $pingreply=reply('ping',$server);
                    208: 	&reconlonc("$perlvar{'lonSockDir'}/$server");
                    209:         my $pongreply=reply('pong',$server);
                    210:         &logthis("Ping/Pong for $server: $pingreply/$pongreply");
                    211:         $answer=reply($cmd,$server);
                    212:         if ($answer eq 'con_lost') {
                    213:             my $now=time;
                    214:             my $middlename=$cmd;
1.5       www       215:             $middlename=substr($middlename,0,16);
1.1       albertel  216:             $middlename=~s/\W//g;
                    217:             my $dfilename=
                    218:              "$perlvar{'lonSockDir'}/delayed/$now.$middlename.$server";
                    219:             {
                    220:              my $dfh;
                    221:              if ($dfh=Apache::File->new(">$dfilename")) {
1.7       www       222:                 print $dfh "$cmd\n";
1.1       albertel  223: 	     }
                    224:             }
                    225:             sleep 2;
                    226:             my $wcmd='';
                    227:             {
                    228: 	     my $dfh;
                    229:              if ($dfh=Apache::File->new("$dfilename")) {
                    230:                 $wcmd=<$dfh>;
                    231: 	     }
                    232:             }
                    233:             chomp($wcmd);
1.7       www       234:             if ($wcmd eq $cmd) {
1.12      www       235: 		&logthis("<font color=blue>WARNING: ".
                    236:                          "Connection buffer $dfilename: $cmd</font>");
1.1       albertel  237:                 &logperm("D:$server:$cmd");
                    238: 	        return 'con_delayed';
                    239:             } else {
1.12      www       240:                 &logthis("<font color=red>CRITICAL:"
                    241:                         ." Critical connection failed: $server $cmd</font>");
1.1       albertel  242:                 &logperm("F:$server:$cmd");
                    243:                 return 'con_failed';
                    244:             }
                    245:         }
                    246:     }
                    247:     return $answer;
                    248: }
                    249: 
1.5       www       250: # ---------------------------------------------------------- Append Environment
                    251: 
                    252: sub appenv {
1.6       www       253:     my %newenv=@_;
1.191     harris41  254:     foreach (keys %newenv) {
1.35      www       255: 	if (($newenv{$_}=~/^user\.role/) || ($newenv{$_}=~/^user\.priv/)) {
                    256:             &logthis("<font color=blue>WARNING: ".
1.151     www       257:                 "Attempt to modify environment ".$_." to ".$newenv{$_}
                    258:                 .'</font>');
1.35      www       259: 	    delete($newenv{$_});
                    260:         } else {
                    261:             $ENV{$_}=$newenv{$_};
                    262:         }
1.191     harris41  263:     }
1.95      www       264: 
                    265:     my $lockfh;
                    266:     unless ($lockfh=Apache::File->new("$ENV{'user.environment'}")) {
1.97      www       267:        return 'error: '.$!;
1.95      www       268:     }
                    269:     unless (flock($lockfh,LOCK_EX)) {
                    270:          &logthis("<font color=blue>WARNING: ".
                    271:                   'Could not obtain exclusive lock in appenv: '.$!);
                    272:          $lockfh->close();
                    273:          return 'error: '.$!;
                    274:     }
                    275: 
1.6       www       276:     my @oldenv;
                    277:     {
                    278:      my $fh;
                    279:      unless ($fh=Apache::File->new("$ENV{'user.environment'}")) {
1.97      www       280: 	return 'error: '.$!;
1.6       www       281:      }
                    282:      @oldenv=<$fh>;
1.89      www       283:      $fh->close();
1.6       www       284:     }
                    285:     for (my $i=0; $i<=$#oldenv; $i++) {
                    286:         chomp($oldenv[$i]);
1.9       www       287:         if ($oldenv[$i] ne '') {
                    288:            my ($name,$value)=split(/=/,$oldenv[$i]);
1.24      www       289:            unless (defined($newenv{$name})) {
                    290: 	      $newenv{$name}=$value;
                    291: 	   }
1.9       www       292:         }
1.6       www       293:     }
                    294:     {
                    295:      my $fh;
                    296:      unless ($fh=Apache::File->new(">$ENV{'user.environment'}")) {
                    297: 	return 'error';
                    298:      }
                    299:      my $newname;
1.93      www       300:      foreach $newname (keys %newenv) {
1.6       www       301: 	 print $fh "$newname=$newenv{$newname}\n";
                    302:      }
1.86      albertel  303:      $fh->close();
1.56      www       304:     }
1.95      www       305: 
                    306:     $lockfh->close();
1.56      www       307:     return 'ok';
                    308: }
                    309: # ----------------------------------------------------- Delete from Environment
                    310: 
                    311: sub delenv {
                    312:     my $delthis=shift;
                    313:     my %newenv=();
                    314:     if (($delthis=~/user\.role/) || ($delthis=~/user\.priv/)) {
                    315:         &logthis("<font color=blue>WARNING: ".
                    316:                 "Attempt to delete from environment ".$delthis);
                    317:         return 'error';
                    318:     }
                    319:     my @oldenv;
                    320:     {
                    321:      my $fh;
                    322:      unless ($fh=Apache::File->new("$ENV{'user.environment'}")) {
                    323: 	return 'error';
                    324:      }
1.89      www       325:      unless (flock($fh,LOCK_SH)) {
                    326:          &logthis("<font color=blue>WARNING: ".
                    327:                   'Could not obtain shared lock in delenv: '.$!);
                    328:          $fh->close();
                    329:          return 'error: '.$!;
                    330:      }
1.56      www       331:      @oldenv=<$fh>;
1.89      www       332:      $fh->close();
1.56      www       333:     }
                    334:     {
                    335:      my $fh;
                    336:      unless ($fh=Apache::File->new(">$ENV{'user.environment'}")) {
                    337: 	return 'error';
                    338:      }
1.89      www       339:      unless (flock($fh,LOCK_EX)) {
                    340:          &logthis("<font color=blue>WARNING: ".
                    341:                   'Could not obtain exclusive lock in delenv: '.$!);
                    342:          $fh->close();
                    343:          return 'error: '.$!;
                    344:      }
1.191     harris41  345:      foreach (@oldenv) {
1.56      www       346: 	 unless ($_=~/^$delthis/) { print $fh $_; }
1.191     harris41  347:      }
1.87      www       348:      $fh->close();
1.5       www       349:     }
                    350:     return 'ok';
1.283     www       351: }
                    352: 
                    353: # ------------------------------------------ Fight off request when overloaded
                    354: 
                    355: sub overloaderror {
                    356:     my ($r,$checkserver)=@_;
                    357:     unless ($checkserver) { $checkserver=$perlvar{'lonHostID'}; }
                    358:     my $loadavg;
                    359:     if ($checkserver eq $perlvar{'lonHostID'}) {
                    360:        my $loadfile=Apache::File->new('/proc/loadavg');
                    361:        $loadavg=<$loadfile>;
                    362:        $loadavg =~ s/\s.*//g;
1.285     matthew   363:        $loadavg = 100*$loadavg/$perlvar{'lonLoadLim'};
1.283     www       364:     } else {
                    365:        $loadavg=&reply('load',$checkserver);
                    366:     }
1.285     matthew   367:     my $overload=$loadavg-100;
1.283     www       368:     if ($overload>0) {
1.285     matthew   369: 	$r->err_headers_out->{'Retry-After'}=$overload;
1.283     www       370:         $r->log_error('Overload of '.$overload.' on '.$checkserver);
                    371:         return 413;
                    372:     }    
                    373:     return '';
1.5       www       374: }
1.1       albertel  375: 
                    376: # ------------------------------ Find server with least workload from spare.tab
1.11      www       377: 
1.1       albertel  378: sub spareserver {
1.284     matthew   379:     my $loadpercent = shift;
1.1       albertel  380:     my $tryserver;
                    381:     my $spareserver='';
1.284     matthew   382:     my $lowestserver=$loadpercent; 
1.1       albertel  383:     foreach $tryserver (keys %spareid) {
                    384:        my $answer=reply('load',$tryserver);
                    385:        if (($answer =~ /\d/) && ($answer<$lowestserver)) {
                    386: 	   $spareserver="http://$hostname{$tryserver}";
                    387:            $lowestserver=$answer;
                    388:        }
                    389:     }    
                    390:     return $spareserver;
1.202     matthew   391: }
                    392: 
                    393: # --------------------------------------------- Try to change a user's password
                    394: 
                    395: sub changepass {
                    396:     my ($uname,$udom,$currentpass,$newpass,$server)=@_;
                    397:     $currentpass = &escape($currentpass);
                    398:     $newpass     = &escape($newpass);
                    399:     my $answer = reply("encrypt:passwd:$udom:$uname:$currentpass:$newpass",
                    400: 		       $server);
                    401:     if (! $answer) {
                    402: 	&logthis("No reply on password change request to $server ".
                    403: 		 "by $uname in domain $udom.");
                    404:     } elsif ($answer =~ "^ok") {
                    405:         &logthis("$uname in $udom successfully changed their password ".
                    406: 		 "on $server.");
                    407:     } elsif ($answer =~ "^pwchange_failure") {
                    408: 	&logthis("$uname in $udom was unable to change their password ".
                    409: 		 "on $server.  The action was blocked by either lcpasswd ".
                    410: 		 "or pwchange");
                    411:     } elsif ($answer =~ "^non_authorized") {
                    412:         &logthis("$uname in $udom did not get their password correct when ".
                    413: 		 "attempting to change it on $server.");
                    414:     } elsif ($answer =~ "^auth_mode_error") {
                    415:         &logthis("$uname in $udom attempted to change their password despite ".
                    416: 		 "not being locally or internally authenticated on $server.");
                    417:     } elsif ($answer =~ "^unknown_user") {
                    418:         &logthis("$uname in $udom attempted to change their password ".
                    419: 		 "on $server but were unable to because $server is not ".
                    420: 		 "their home server.");
                    421:     } elsif ($answer =~ "^refused") {
                    422: 	&logthis("$server refused to change $uname in $udom password because ".
                    423: 		 "it was sent an unencrypted request to change the password.");
                    424:     }
                    425:     return $answer;
1.1       albertel  426: }
                    427: 
1.169     harris41  428: # ----------------------- Try to determine user's current authentication scheme
                    429: 
                    430: sub queryauthenticate {
                    431:     my ($uname,$udom)=@_;
                    432:     if (($perlvar{'lonRole'} eq 'library') && 
                    433:         ($udom eq $perlvar{'lonDefDomain'})) {
                    434: 	my $answer=reply("encrypt:currentauth:$udom:$uname",
                    435: 			 $perlvar{'lonHostID'});
                    436: 	unless ($answer eq 'unknown_user' or $answer eq 'refused') {
                    437: 	    if (length($answer)) {
                    438: 		return $answer;
                    439: 	    }
                    440: 	    else {
                    441: 	&logthis("User $uname at $udom lacks an authentication mechanism");
                    442: 		return 'no_host';
                    443: 	    }
                    444: 	}
                    445:     }
                    446: 
                    447:     my $tryserver;
                    448:     foreach $tryserver (keys %libserv) {
                    449: 	if ($hostdom{$tryserver} eq $udom) {
                    450:            my $answer=reply("encrypt:currentauth:$udom:$uname",$tryserver);
                    451: 	   unless ($answer eq 'unknown_user' or $answer eq 'refused') {
                    452: 	       if (length($answer)) {
                    453: 		   return $answer;
                    454: 	       }
                    455: 	       else {
                    456: 	   &logthis("User $uname at $udom lacks an authentication mechanism");
                    457: 		   return 'no_host';
                    458: 	       }
                    459: 	   }
                    460:        }
                    461:     }
                    462:     &logthis("User $uname at $udom lacks an authentication mechanism");    
                    463:     return 'no_host';
                    464: }
                    465: 
1.1       albertel  466: # --------- Try to authenticate user from domain's lib servers (first this one)
1.11      www       467: 
1.1       albertel  468: sub authenticate {
                    469:     my ($uname,$upass,$udom)=@_;
1.12      www       470:     $upass=escape($upass);
1.199     www       471:     $uname=~s/\W//g;
1.1       albertel  472:     if (($perlvar{'lonRole'} eq 'library') && 
                    473:         ($udom eq $perlvar{'lonDefDomain'})) {
1.3       www       474:     my $answer=reply("encrypt:auth:$udom:$uname:$upass",$perlvar{'lonHostID'});
1.2       www       475:         if ($answer =~ /authorized/) {
1.9       www       476:               if ($answer eq 'authorized') {
                    477:                  &logthis("User $uname at $udom authorized by local server"); 
                    478:                  return $perlvar{'lonHostID'}; 
                    479:               }
                    480:               if ($answer eq 'non_authorized') {
                    481:                  &logthis("User $uname at $udom rejected by local server"); 
                    482:                  return 'no_host'; 
                    483:               }
1.2       www       484: 	}
1.1       albertel  485:     }
                    486: 
                    487:     my $tryserver;
                    488:     foreach $tryserver (keys %libserv) {
                    489: 	if ($hostdom{$tryserver} eq $udom) {
1.10      www       490:            my $answer=reply("encrypt:auth:$udom:$uname:$upass",$tryserver);
1.1       albertel  491:            if ($answer =~ /authorized/) {
1.9       www       492:               if ($answer eq 'authorized') {
                    493:                  &logthis("User $uname at $udom authorized by $tryserver"); 
                    494:                  return $tryserver; 
                    495:               }
                    496:               if ($answer eq 'non_authorized') {
                    497:                  &logthis("User $uname at $udom rejected by $tryserver");
                    498:                  return 'no_host';
                    499:               } 
1.1       albertel  500: 	   }
                    501:        }
1.9       www       502:     }
                    503:     &logthis("User $uname at $udom could not be authenticated");    
1.1       albertel  504:     return 'no_host';
                    505: }
                    506: 
                    507: # ---------------------- Find the homebase for a user from domain's lib servers
1.11      www       508: 
1.1       albertel  509: sub homeserver {
1.230     stredwic  510:     my ($uname,$udom,$ignoreBadCache)=@_;
1.1       albertel  511:     my $index="$uname:$udom";
1.221     matthew   512:     if ($homecache{$index}) { 
                    513:         return "$homecache{$index}"; 
                    514:     }
1.1       albertel  515:     my $tryserver;
                    516:     foreach $tryserver (keys %libserv) {
1.230     stredwic  517:         next if ($ignoreBadCache ne 'true' && 
1.231     stredwic  518: 		 exists($badServerCache{$tryserver}));
1.1       albertel  519: 	if ($hostdom{$tryserver} eq $udom) {
                    520:            my $answer=reply("home:$udom:$uname",$tryserver);
                    521:            if ($answer eq 'found') { 
1.221     matthew   522:               $homecache{$index}=$tryserver;
1.1       albertel  523:               return $tryserver; 
1.231     stredwic  524:            } elsif ($answer eq 'no_host') {
                    525: 	       $badServerCache{$tryserver}=1;
1.221     matthew   526:            }
1.1       albertel  527:        }
                    528:     }    
                    529:     return 'no_host';
1.70      www       530: }
                    531: 
                    532: # ------------------------------------- Find the usernames behind a list of IDs
                    533: 
                    534: sub idget {
                    535:     my ($udom,@ids)=@_;
                    536:     my %returnhash=();
                    537:     
                    538:     my $tryserver;
                    539:     foreach $tryserver (keys %libserv) {
                    540:        if ($hostdom{$tryserver} eq $udom) {
                    541: 	  my $idlist=join('&',@ids);
                    542:           $idlist=~tr/A-Z/a-z/; 
                    543: 	  my $reply=&reply("idget:$udom:".$idlist,$tryserver);
                    544:           my @answer=();
1.76      www       545:           if (($reply ne 'con_lost') && ($reply!~/^error\:/)) {
1.70      www       546: 	      @answer=split(/\&/,$reply);
                    547:           }                    ;
                    548:           my $i;
                    549:           for ($i=0;$i<=$#ids;$i++) {
                    550:               if ($answer[$i]) {
                    551: 		  $returnhash{$ids[$i]}=$answer[$i];
                    552:               } 
                    553:           }
                    554:        }
                    555:     }    
                    556:     return %returnhash;
                    557: }
                    558: 
                    559: # ------------------------------------- Find the IDs behind a list of usernames
                    560: 
                    561: sub idrget {
                    562:     my ($udom,@unames)=@_;
                    563:     my %returnhash=();
1.191     harris41  564:     foreach (@unames) {
1.70      www       565:         $returnhash{$_}=(&userenvironment($udom,$_,'id'))[1];
1.191     harris41  566:     }
1.70      www       567:     return %returnhash;
                    568: }
                    569: 
                    570: # ------------------------------- Store away a list of names and associated IDs
                    571: 
                    572: sub idput {
                    573:     my ($udom,%ids)=@_;
                    574:     my %servers=();
1.191     harris41  575:     foreach (keys %ids) {
1.70      www       576:         my $uhom=&homeserver($_,$udom);
                    577:         if ($uhom ne 'no_host') {
                    578:             my $id=&escape($ids{$_});
                    579:             $id=~tr/A-Z/a-z/;
                    580:             my $unam=&escape($_);
                    581: 	    if ($servers{$uhom}) {
                    582: 		$servers{$uhom}.='&'.$id.'='.$unam;
                    583:             } else {
                    584:                 $servers{$uhom}=$id.'='.$unam;
                    585:             }
                    586:             &critical('put:'.$udom.':'.$unam.':environment:id='.$id,$uhom);
                    587:         }
1.191     harris41  588:     }
                    589:     foreach (keys %servers) {
1.70      www       590:         &critical('idput:'.$udom.':'.$servers{$_},$_);
1.191     harris41  591:     }
1.70      www       592: }
                    593: 
                    594: # ------------------------------------- Find the section of student in a course
1.298     matthew   595: 
                    596: sub getsection {
                    597:     my ($udom,$unam,$courseid)=@_;
                    598:     $courseid=~s/\_/\//g;
                    599:     $courseid=~s/^(\w)/\/$1/;
                    600:     my %Pending; 
                    601:     my %Expired;
                    602:     #
                    603:     # Each role can either have not started yet (pending), be active, 
                    604:     #    or have expired.
                    605:     #
                    606:     # If there is an active role, we are done.
                    607:     #
                    608:     # If there is more than one role which has not started yet, 
                    609:     #     choose the one which will start sooner
                    610:     # If there is one role which has not started yet, return it.
                    611:     #
                    612:     # If there is more than one expired role, choose the one which ended last.
                    613:     # If there is a role which has expired, return it.
                    614:     #
                    615:     foreach (split(/\&/,&reply('dump:'.$udom.':'.$unam.':roles',
                    616:                         &homeserver($unam,$udom)))) {
                    617:         my ($key,$value)=split(/\=/,$_);
                    618:         $key=&unescape($key);
                    619:         next if ($key !~/^$courseid(?:\/)*(\w+)*\_st$/);
                    620:         my $section=$1;
                    621:         if ($key eq $courseid.'_st') { $section=''; }
                    622:         my ($dummy,$end,$start)=split(/\_/,&unescape($value));
                    623:         my $now=time;
                    624:         if (defined($end) && ($now > $end)) {
                    625:             $Expired{$end}=$section;
                    626:             next;
                    627:         }
                    628:         if (defined($start) && ($now < $start)) {
                    629:             $Pending{$start}=$section;
                    630:             next;
                    631:         }
                    632:         return $section;
                    633:     }
                    634:     #
                    635:     # Presumedly there will be few matching roles from the above
                    636:     # loop and the sorting time will be negligible.
                    637:     if (scalar(keys(%Pending))) {
                    638:         my ($time) = sort {$a <=> $b} keys(%Pending);
                    639:         return $Pending{$time};
                    640:     } 
                    641:     if (scalar(keys(%Expired))) {
                    642:         my @sorted = sort {$a <=> $b} keys(%Expired);
                    643:         my $time = pop(@sorted);
                    644:         return $Expired{$time};
                    645:     }
                    646:     return '-1';
                    647: }
1.70      www       648: 
                    649: sub usection {
                    650:     my ($udom,$unam,$courseid)=@_;
                    651:     $courseid=~s/\_/\//g;
                    652:     $courseid=~s/^(\w)/\/$1/;
1.191     harris41  653:     foreach (split(/\&/,&reply('dump:'.$udom.':'.$unam.':roles',
                    654:                         &homeserver($unam,$udom)))) {
1.70      www       655:         my ($key,$value)=split(/\=/,$_);
                    656:         $key=&unescape($key);
                    657:         if ($key=~/^$courseid(?:\/)*(\w+)*\_st$/) {
                    658:             my $section=$1;
                    659:             if ($key eq $courseid.'_st') { $section=''; }
                    660: 	    my ($dummy,$end,$start)=split(/\_/,&unescape($value));
                    661:             my $now=time;
                    662:             my $notactive=0;
                    663:             if ($start) {
                    664: 		if ($now<$start) { $notactive=1; }
                    665:             }
                    666:             if ($end) {
                    667:                 if ($now>$end) { $notactive=1; }
                    668:             } 
                    669:             unless ($notactive) { return $section; }
                    670:         }
1.191     harris41  671:     }
1.70      www       672:     return '-1';
                    673: }
                    674: 
                    675: # ------------------------------------- Read an entry from a user's environment
                    676: 
                    677: sub userenvironment {
                    678:     my ($udom,$unam,@what)=@_;
                    679:     my %returnhash=();
                    680:     my @answer=split(/\&/,
                    681:                 &reply('get:'.$udom.':'.$unam.':environment:'.join('&',@what),
                    682:                       &homeserver($unam,$udom)));
                    683:     my $i;
                    684:     for ($i=0;$i<=$#what;$i++) {
                    685: 	$returnhash{$what[$i]}=&unescape($answer[$i]);
                    686:     }
                    687:     return %returnhash;
1.1       albertel  688: }
                    689: 
1.263     www       690: # -------------------------------------------------------------------- New chat
                    691: 
                    692: sub chatsend {
                    693:     my ($newentry,$anon)=@_;
                    694:     my $cnum=$ENV{'course.'.$ENV{'request.course.id'}.'.num'};
                    695:     my $cdom=$ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
                    696:     my $chome=$ENV{'course.'.$ENV{'request.course.id'}.'.home'};
                    697:     &reply('chatsend:'.$cdom.':'.$cnum.':'.
                    698: 	   &escape($ENV{'user.domain'}.':'.$ENV{'user.name'}.':'.$anon.':'.
                    699: 		   &escape($newentry)),$chome);
1.292     www       700: }
                    701: 
                    702: # ------------------------------------------ Find current version of a resource
                    703: 
                    704: sub getversion {
                    705:     my $fname=&clutter(shift);
                    706:     unless ($fname=~/^\/res\//) { return -1; }
                    707:     return &currentversion(&filelocation('',$fname));
                    708: }
                    709: 
                    710: sub currentversion {
                    711:     my $fname=shift;
                    712:     my $author=$fname;
                    713:     $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
                    714:     my ($udom,$uname)=split(/\//,$author);
                    715:     my $home=homeserver($uname,$udom);
                    716:     if ($home eq 'no_host') { 
                    717:         return -1; 
                    718:     }
                    719:     my $answer=reply("currentversion:$fname",$home);
                    720:     if (($answer eq 'con_lost') || ($answer eq 'rejected')) {
                    721: 	return -1;
                    722:     }
                    723:     return $answer;
1.263     www       724: }
                    725: 
1.1       albertel  726: # ----------------------------- Subscribe to a resource, return URL if possible
1.11      www       727: 
1.1       albertel  728: sub subscribe {
                    729:     my $fname=shift;
                    730:     my $author=$fname;
                    731:     $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
                    732:     my ($udom,$uname)=split(/\//,$author);
                    733:     my $home=homeserver($uname,$udom);
1.290     www       734:     if ($home eq 'no_host') { 
1.1       albertel  735:         return 'not_found'; 
                    736:     }
                    737:     my $answer=reply("sub:$fname",$home);
1.64      www       738:     if (($answer eq 'con_lost') || ($answer eq 'rejected')) {
                    739: 	$answer.=' by '.$home;
                    740:     }
1.1       albertel  741:     return $answer;
                    742: }
                    743:     
1.8       www       744: # -------------------------------------------------------------- Replicate file
                    745: 
                    746: sub repcopy {
                    747:     my $filename=shift;
1.23      www       748:     $filename=~s/\/+/\//g;
1.214     www       749:     if ($filename=~/^\/home\/httpd\/html\/adm\//) { return OK; }
1.8       www       750:     my $transname="$filename.in.transfer";
1.17      www       751:     if ((-e $filename) || (-e $transname)) { return OK; }
1.8       www       752:     my $remoteurl=subscribe($filename);
1.64      www       753:     if ($remoteurl =~ /^con_lost by/) {
                    754: 	   &logthis("Subscribe returned $remoteurl: $filename");
1.8       www       755:            return HTTP_SERVICE_UNAVAILABLE;
                    756:     } elsif ($remoteurl eq 'not_found') {
                    757: 	   &logthis("Subscribe returned not_found: $filename");
                    758: 	   return HTTP_NOT_FOUND;
1.64      www       759:     } elsif ($remoteurl =~ /^rejected by/) {
                    760: 	   &logthis("Subscribe returned $remoteurl: $filename");
1.8       www       761:            return FORBIDDEN;
1.20      www       762:     } elsif ($remoteurl eq 'directory') {
                    763:            return OK;
1.8       www       764:     } else {
1.290     www       765:         my $author=$filename;
                    766:         $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
                    767:         my ($udom,$uname)=split(/\//,$author);
                    768:         my $home=homeserver($uname,$udom);
                    769:         unless ($home eq $perlvar{'lonHostID'}) {
1.8       www       770:            my @parts=split(/\//,$filename);
                    771:            my $path="/$parts[1]/$parts[2]/$parts[3]/$parts[4]";
                    772:            if ($path ne "$perlvar{'lonDocRoot'}/res") {
                    773:                &logthis("Malconfiguration for replication: $filename");
                    774: 	       return HTTP_BAD_REQUEST;
                    775:            }
                    776:            my $count;
                    777:            for ($count=5;$count<$#parts;$count++) {
                    778:                $path.="/$parts[$count]";
                    779:                if ((-e $path)!=1) {
                    780: 		   mkdir($path,0777);
                    781:                }
                    782:            }
                    783:            my $ua=new LWP::UserAgent;
                    784:            my $request=new HTTP::Request('GET',"$remoteurl");
                    785:            my $response=$ua->request($request,$transname);
                    786:            if ($response->is_error()) {
                    787: 	       unlink($transname);
                    788:                my $message=$response->status_line;
1.12      www       789:                &logthis("<font color=blue>WARNING:"
                    790:                        ." LWP get: $message: $filename</font>");
1.8       www       791:                return HTTP_SERVICE_UNAVAILABLE;
                    792:            } else {
1.16      www       793: 	       if ($remoteurl!~/\.meta$/) {
                    794:                   my $mrequest=new HTTP::Request('GET',$remoteurl.'.meta');
                    795:                   my $mresponse=$ua->request($mrequest,$filename.'.meta');
                    796:                   if ($mresponse->is_error()) {
                    797: 		      unlink($filename.'.meta');
                    798:                       &logthis(
                    799:                      "<font color=yellow>INFO: No metadata: $filename</font>");
                    800:                   }
                    801: 	       }
1.8       www       802:                rename($transname,$filename);
                    803:                return OK;
                    804:            }
1.290     www       805:        }
1.8       www       806:     }
                    807: }
                    808: 
1.15      www       809: # --------------------------------------------------------- Server Side Include
                    810: 
                    811: sub ssi {
                    812: 
1.23      www       813:     my ($fn,%form)=@_;
1.15      www       814: 
                    815:     my $ua=new LWP::UserAgent;
1.23      www       816:     
                    817:     my $request;
                    818:     
                    819:     if (%form) {
                    820:       $request=new HTTP::Request('POST',"http://".$ENV{'HTTP_HOST'}.$fn);
1.201     albertel  821:       $request->content(join('&',map { &escape($_).'='.&escape($form{$_}) } keys %form));
1.23      www       822:     } else {
                    823:       $request=new HTTP::Request('GET',"http://".$ENV{'HTTP_HOST'}.$fn);
                    824:     }
                    825: 
1.15      www       826:     $request->header(Cookie => $ENV{'HTTP_COOKIE'});
                    827:     my $response=$ua->request($request);
                    828: 
                    829:     return $response->content;
                    830: }
1.254     www       831: 
                    832: # ------- Add a token to a remote URI's query string to vouch for access rights
                    833: 
                    834: sub tokenwrapper {
                    835:     my $uri=shift;
1.259     www       836:     $uri=~s/^http\:\/\/([^\/]+)//;
                    837:     $uri=~s/^\///;
                    838:     $ENV{'user.environment'}=~/\/([^\/]+)\.id/;
                    839:     my $token=$1;
                    840:     if ($uri=~/^uploaded\/([^\/]+)\/([^\/]+)\/([^\/]+)(\?\.*)*$/) {
                    841: 	&appenv('userfile.'.$1.'/'.$2.'/'.$3 => $ENV{'request.course.id'});
                    842:         return 'http://'.$hostname{ &homeserver($2,$1)}.'/'.$uri.
                    843:                (($uri=~/\?/)?'&':'?').'token='.$token;
                    844:     } else {
                    845: 	return '/adm/notfound.html';
                    846:     }
1.254     www       847: }
                    848:     
1.257     www       849: # --------------- Take an uploaded file and put it into the userfiles directory
1.259     www       850: # input: name of form element, coursedoc=1 means this is for the course
1.257     www       851: # output: url of file in userspace
                    852: 
                    853: sub userfileupload {
1.259     www       854:     my ($formname,$coursedoc)=@_;
1.257     www       855:     my $fname=$ENV{'form.'.$formname.'.filename'};
                    856:     $fname=~s/\\/\//g;
                    857:     $fname=~s/^.*\/([^\/]+)$/$1/;
                    858:     unless ($fname) { return 'error: no uploaded file'; }
                    859:     chop($ENV{'form.'.$formname});
1.258     www       860: # Create the directory if not present
1.259     www       861:     my $docuname='';
                    862:     my $docudom='';
                    863:     my $docuhome='';
                    864:     if ($coursedoc) {
                    865: 	$docuname=$ENV{'course.'.$ENV{'request.course.id'}.'.num'};
                    866: 	$docudom=$ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
                    867: 	$docuhome=$ENV{'course.'.$ENV{'request.course.id'}.'.home'};
                    868:     } else {
                    869:         $docuname=$ENV{'user.name'};
                    870:         $docudom=$ENV{'user.domain'};
                    871:         $docuhome=$ENV{'user.home'};
                    872:     }
1.271     www       873:     return 
                    874:         &finishuserfileupload($docuname,$docudom,$docuhome,$formname,$fname);
                    875: }
                    876: 
                    877: sub finishuserfileupload {
                    878:     my ($docuname,$docudom,$docuhome,$formname,$fname)=@_;
1.259     www       879:     my $path=$docudom.'/'.$docuname.'/';
1.258     www       880:     my $filepath=$perlvar{'lonDocRoot'};
1.259     www       881:     my @parts=split(/\//,$filepath.'/userfiles/'.$path);
1.258     www       882:     my $count;
                    883:     for ($count=4;$count<=$#parts;$count++) {
                    884:         $filepath.="/$parts[$count]";
                    885:         if ((-e $filepath)!=1) {
                    886: 	    mkdir($filepath,0777);
                    887:         }
                    888:     }
                    889: # Save the file
                    890:     {
                    891:        my $fh=Apache::File->new('>'.$filepath.'/'.$fname);
                    892:        print $fh $ENV{'form.'.$formname};
                    893:     }
1.259     www       894: # Notify homeserver to grep it
                    895: #
1.295     www       896:     
                    897:     my $fetchresult= 
                    898:  &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$fname,$docuhome);
                    899:     if ($fetchresult eq 'ok') {
1.259     www       900: #
1.258     www       901: # Return the URL to it
1.263     www       902:         return '/uploaded/'.$path.$fname;
                    903:     } else {
1.295     www       904:         &logthis('Failed to transfer '.$docudom.'/'.$docuname.'/'.$fname.
                    905:          ' to host '.$docuhome.': '.$fetchresult);
1.263     www       906:         return '/adm/notfound.html';
                    907:     }    
1.257     www       908: }
1.15      www       909: 
1.14      www       910: # ------------------------------------------------------------------------- Log
                    911: 
                    912: sub log {
                    913:     my ($dom,$nam,$hom,$what)=@_;
1.47      www       914:     return critical("log:$dom:$nam:$what",$hom);
1.157     www       915: }
                    916: 
                    917: # ------------------------------------------------------------------ Course Log
                    918: 
                    919: sub flushcourselogs {
                    920:     &logthis('Flushing course log buffers');
1.191     harris41  921:     foreach (keys %courselogs) {
1.157     www       922:         my $crsid=$_;
1.188     www       923:         if (&reply('log:'.$coursedombuf{$crsid}.':'.
                    924: 		          &escape($courselogs{$crsid}),
                    925: 		          $coursehombuf{$crsid}) eq 'ok') {
1.157     www       926: 	    delete $courselogs{$crsid};
                    927:         } else {
                    928:             &logthis('Failed to flush log buffer for '.$crsid);
                    929:             if (length($courselogs{$crsid})>40000) {
                    930:                &logthis("<font color=blue>WARNING: Buffer for ".$crsid.
                    931:                         " exceeded maximum size, deleting.</font>");
                    932:                delete $courselogs{$crsid};
                    933:             }
                    934:         }        
1.191     harris41  935:     }
1.185     www       936:     &logthis('Flushing access logs');
1.191     harris41  937:     foreach (keys %accesshash) {
1.185     www       938:         my $entry=$_;
                    939:         $entry=~/\_\_\_(\w+)\/(\w+)\/(.*)\_\_\_(\w+)$/;
                    940:         my %temphash=($entry => $accesshash{$entry});
1.266     albertel  941:         if (&Apache::lonnet::put('nohist_resevaldata',\%temphash,$1,$2) eq 'ok') {
1.185     www       942: 	    delete $accesshash{$entry};
                    943:         }
1.191     harris41  944:     }
1.186     www       945:     $dumpcount++;
1.157     www       946: }
                    947: 
                    948: sub courselog {
                    949:     my $what=shift;
1.158     www       950:     $what=time.':'.$what;
1.157     www       951:     unless ($ENV{'request.course.id'}) { return ''; }
1.188     www       952:     $coursedombuf{$ENV{'request.course.id'}}=
                    953:        $ENV{'course.'.$ENV{'request.course.id'}.'.domain'}.':'.
                    954:        $ENV{'course.'.$ENV{'request.course.id'}.'.num'};
                    955:     $coursehombuf{$ENV{'request.course.id'}}=
                    956:        $ENV{'course.'.$ENV{'request.course.id'}.'.home'};
1.157     www       957:     if (defined $courselogs{$ENV{'request.course.id'}}) {
                    958: 	$courselogs{$ENV{'request.course.id'}}.='&'.$what;
                    959:     } else {
                    960: 	$courselogs{$ENV{'request.course.id'}}.=$what;
                    961:     }
                    962:     if (length($courselogs{$ENV{'request.course.id'}})>4048) {
                    963: 	&flushcourselogs();
                    964:     }
1.158     www       965: }
                    966: 
                    967: sub courseacclog {
                    968:     my $fnsymb=shift;
                    969:     unless ($ENV{'request.course.id'}) { return ''; }
                    970:     my $what=$fnsymb.':'.$ENV{'user.name'}.':'.$ENV{'user.domain'};
1.192     www       971:     if ($fnsymb=~/(problem|exam|quiz|assess|survey|form)$/) {
1.187     www       972:         $what.=':POST';
1.191     harris41  973: 	foreach (keys %ENV) {
1.158     www       974:             if ($_=~/^form\.(.*)/) {
                    975: 		$what.=':'.$1.'='.$ENV{$_};
                    976:             }
1.191     harris41  977:         }
1.158     www       978:     }
                    979:     &courselog($what);
1.149     www       980: }
                    981: 
1.185     www       982: sub countacc {
                    983:     my $url=&declutter(shift);
                    984:     unless ($ENV{'request.course.id'}) { return ''; }
                    985:     $accesshash{$ENV{'request.course.id'}.'___'.$url.'___course'}=1;
1.281     www       986:     my $key=$$.$processmarker.'_'.$dumpcount.'___'.$url.'___count';
1.185     www       987:     if (defined($accesshash{$key})) {
                    988: 	$accesshash{$key}++;
                    989:     } else {
                    990:         $accesshash{$key}=1;
                    991:     }
                    992: }
                    993:     
1.149     www       994: # ----------------------------------------------------------- Check out an item
                    995: 
                    996: sub checkout {
                    997:     my ($symb,$tuname,$tudom,$tcrsid)=@_;
                    998:     my $now=time;
                    999:     my $lonhost=$perlvar{'lonHostID'};
                   1000:     my $infostr=&escape(
1.234     www      1001:                  'CHECKOUTTOKEN&'.
1.149     www      1002:                  $tuname.'&'.
                   1003:                  $tudom.'&'.
                   1004:                  $tcrsid.'&'.
                   1005:                  $symb.'&'.
                   1006: 		 $now.'&'.$ENV{'REMOTE_ADDR'});
                   1007:     my $token=&reply('tmpput:'.$infostr,$lonhost);
1.151     www      1008:     if ($token=~/^error\:/) { 
                   1009:         &logthis("<font color=blue>WARNING: ".
                   1010:                 "Checkout tmpput failed ".$tudom.' - '.$tuname.' - '.$symb.
                   1011:                  "</font>");
                   1012:         return ''; 
                   1013:     }
                   1014: 
1.149     www      1015:     $token=~s/^(\d+)\_.*\_(\d+)$/$1\*$2\*$lonhost/;
                   1016:     $token=~tr/a-z/A-Z/;
                   1017: 
1.153     www      1018:     my %infohash=('resource.0.outtoken' => $token,
                   1019:                   'resource.0.checkouttime' => $now,
                   1020:                   'resource.0.outremote' => $ENV{'REMOTE_ADDR'});
1.149     www      1021: 
                   1022:     unless (&cstore(\%infohash,$symb,$tcrsid,$tudom,$tuname) eq 'ok') {
                   1023:        return '';
1.151     www      1024:     } else {
                   1025:         &logthis("<font color=blue>WARNING: ".
                   1026:                 "Checkout cstore failed ".$tudom.' - '.$tuname.' - '.$symb.
                   1027:                  "</font>");
1.149     www      1028:     }    
                   1029: 
                   1030:     if (&log($tudom,$tuname,&homeserver($tuname,$tudom),
                   1031:                          &escape('Checkout '.$infostr.' - '.
                   1032:                                                  $token)) ne 'ok') {
                   1033: 	return '';
1.151     www      1034:     } else {
                   1035:         &logthis("<font color=blue>WARNING: ".
                   1036:                 "Checkout log failed ".$tudom.' - '.$tuname.' - '.$symb.
                   1037:                  "</font>");
1.149     www      1038:     }
1.151     www      1039:     return $token;
1.149     www      1040: }
                   1041: 
                   1042: # ------------------------------------------------------------ Check in an item
                   1043: 
                   1044: sub checkin {
                   1045:     my $token=shift;
1.150     www      1046:     my $now=time;
                   1047:     my ($ta,$tb,$lonhost)=split(/\*/,$token);
                   1048:     $lonhost=~tr/A-Z/a-z/;
                   1049:     my $dtoken=$ta.'_'.$hostip{$lonhost}.'_'.$tb;
                   1050:     $dtoken=~s/\W/\_/g;
1.234     www      1051:     my ($dummy,$tuname,$tudom,$tcrsid,$symb,$chtim,$rmaddr)=
1.150     www      1052:                  split(/\&/,&unescape(&reply('tmpget:'.$dtoken,$lonhost)));
                   1053: 
1.154     www      1054:     unless (($tuname) && ($tudom)) {
                   1055:         &logthis('Check in '.$token.' ('.$dtoken.') failed');
                   1056:         return '';
                   1057:     }
                   1058:     
                   1059:     unless (&allowed('mgr',$tcrsid)) {
                   1060:         &logthis('Check in '.$token.' ('.$dtoken.') unauthorized: '.
                   1061:                  $ENV{'user.name'}.' - '.$ENV{'user.domain'});
                   1062:         return '';
                   1063:     }
                   1064: 
1.153     www      1065:     my %infohash=('resource.0.intoken' => $token,
                   1066:                   'resource.0.checkintime' => $now,
                   1067:                   'resource.0.inremote' => $ENV{'REMOTE_ADDR'});
1.150     www      1068: 
                   1069:     unless (&cstore(\%infohash,$symb,$tcrsid,$tudom,$tuname) eq 'ok') {
                   1070:        return '';
                   1071:     }    
                   1072: 
                   1073:     if (&log($tudom,$tuname,&homeserver($tuname,$tudom),
                   1074:                          &escape('Checkin - '.$token)) ne 'ok') {
                   1075: 	return '';
                   1076:     }
                   1077: 
                   1078:     return ($symb,$tuname,$tudom,$tcrsid);    
1.110     www      1079: }
                   1080: 
                   1081: # --------------------------------------------- Set Expire Date for Spreadsheet
                   1082: 
                   1083: sub expirespread {
                   1084:     my ($uname,$udom,$stype,$usymb)=@_;
                   1085:     my $cid=$ENV{'request.course.id'}; 
                   1086:     if ($cid) {
                   1087:        my $now=time;
                   1088:        my $key=$uname.':'.$udom.':'.$stype.':'.$usymb;
                   1089:        return &reply('put:'.$ENV{'course.'.$cid.'.domain'}.':'.
                   1090:                             $ENV{'course.'.$cid.'.num'}.
                   1091: 	        	    ':nohist_expirationdates:'.
                   1092:                             &escape($key).'='.$now,
                   1093:                             $ENV{'course.'.$cid.'.home'})
                   1094:     }
                   1095:     return 'ok';
1.14      www      1096: }
                   1097: 
1.109     www      1098: # ----------------------------------------------------- Devalidate Spreadsheets
                   1099: 
                   1100: sub devalidate {
                   1101:     my $symb=shift;
                   1102:     my $cid=$ENV{'request.course.id'}; 
                   1103:     if ($cid) {
                   1104: 	my $key=$ENV{'user.name'}.':'.$ENV{'user.domain'}.':';
                   1105:         my $status=
1.299     matthew  1106: 	    &del('nohist_calculatedsheets',
1.133     albertel 1107: 		 [$key.'studentcalc'],
                   1108: 		 $ENV{'course.'.$cid.'.domain'},
                   1109: 		 $ENV{'course.'.$cid.'.num'})
                   1110: 		.' '.
                   1111: 	    &del('nohist_calculatedsheets_'.$cid,
                   1112: 		 [$key.'assesscalc:'.$symb]);
1.109     www      1113:         unless ($status eq 'ok ok') {
                   1114:            &logthis('Could not devalidate spreadsheet '.
                   1115:                     $ENV{'user.name'}.' at '.$ENV{'user.domain'}.' for '.
                   1116: 		    $symb.': '.$status);
1.133     albertel 1117:         }
1.109     www      1118:     }
                   1119: }
                   1120: 
1.265     albertel 1121: sub get_scalar {
                   1122:     my ($string,$end) = @_;
                   1123:     my $value;
                   1124:     if ($$string =~ s/^([^&]*?)($end)/$2/) {
                   1125: 	$value = $1;
                   1126:     } elsif ($$string =~ s/^([^&]*?)&//) {
                   1127: 	$value = $1;
                   1128:     }
                   1129:     return &unescape($value);
                   1130: }
                   1131: 
                   1132: sub array2str {
                   1133:   my (@array) = @_;
                   1134:   my $result=&arrayref2str(\@array);
                   1135:   $result=~s/^__ARRAY_REF__//;
                   1136:   $result=~s/__END_ARRAY_REF__$//;
                   1137:   return $result;
                   1138: }
                   1139: 
1.204     albertel 1140: sub arrayref2str {
                   1141:   my ($arrayref) = @_;
1.265     albertel 1142:   my $result='__ARRAY_REF__';
1.204     albertel 1143:   foreach my $elem (@$arrayref) {
1.265     albertel 1144:     if(ref($elem) eq 'ARRAY') {
                   1145:       $result.=&arrayref2str($elem).'&';
                   1146:     } elsif(ref($elem) eq 'HASH') {
                   1147:       $result.=&hashref2str($elem).'&';
                   1148:     } elsif(ref($elem)) {
                   1149:       #print("Got a ref of ".(ref($elem))." skipping.");
1.204     albertel 1150:     } else {
                   1151:       $result.=&escape($elem).'&';
                   1152:     }
                   1153:   }
                   1154:   $result=~s/\&$//;
1.265     albertel 1155:   $result .= '__END_ARRAY_REF__';
1.204     albertel 1156:   return $result;
                   1157: }
                   1158: 
1.168     albertel 1159: sub hash2str {
1.204     albertel 1160:   my (%hash) = @_;
                   1161:   my $result=&hashref2str(\%hash);
1.265     albertel 1162:   $result=~s/^__HASH_REF__//;
                   1163:   $result=~s/__END_HASH_REF__$//;
1.204     albertel 1164:   return $result;
                   1165: }
                   1166: 
                   1167: sub hashref2str {
                   1168:   my ($hashref)=@_;
1.265     albertel 1169:   my $result='__HASH_REF__';
1.204     albertel 1170:   foreach (keys(%$hashref)) {
                   1171:     if (ref($_) eq 'ARRAY') {
1.265     albertel 1172:       $result.=&arrayref2str($_).'=';
1.204     albertel 1173:     } elsif (ref($_) eq 'HASH') {
1.265     albertel 1174:       $result.=&hashref2str($_).'=';
1.204     albertel 1175:     } elsif (ref($_)) {
1.265     albertel 1176:       $result.='=';
                   1177:       #print("Got a ref of ".(ref($_))." skipping.");
1.204     albertel 1178:     } else {
1.265     albertel 1179: 	if ($_) {$result.=&escape($_).'=';} else { last; }
1.204     albertel 1180:     }
                   1181: 
1.265     albertel 1182:     if(ref($hashref->{$_}) eq 'ARRAY') {
                   1183:       $result.=&arrayref2str($hashref->{$_}).'&';
                   1184:     } elsif(ref($hashref->{$_}) eq 'HASH') {
                   1185:       $result.=&hashref2str($hashref->{$_}).'&';
                   1186:     } elsif(ref($hashref->{$_})) {
                   1187:        $result.='&';
                   1188:       #print("Got a ref of ".(ref($hashref->{$_}))." skipping.");
1.204     albertel 1189:     } else {
1.265     albertel 1190:       $result.=&escape($hashref->{$_}).'&';
1.204     albertel 1191:     }
                   1192:   }
1.168     albertel 1193:   $result=~s/\&$//;
1.265     albertel 1194:   $result .= '__END_HASH_REF__';
1.168     albertel 1195:   return $result;
                   1196: }
                   1197: 
                   1198: sub str2hash {
1.265     albertel 1199:     my ($string)=@_;
                   1200:     my ($hash)=&str2hashref('__HASH_REF__'.$string.'__END_HASH_REF__');
                   1201:     return %$hash;
                   1202: }
                   1203: 
                   1204: sub str2hashref {
1.168     albertel 1205:   my ($string) = @_;
1.265     albertel 1206: 
                   1207:   my %hash;
                   1208: 
                   1209:   if($string !~ /^__HASH_REF__/) {
                   1210:       if (! ($string eq '' || !defined($string))) {
                   1211: 	  $hash{'error'}='Not hash reference';
                   1212:       }
                   1213:       return (\%hash, $string);
                   1214:   }
                   1215: 
                   1216:   $string =~ s/^__HASH_REF__//;
                   1217: 
                   1218:   while($string !~ /^__END_HASH_REF__/) {
                   1219:       #key
                   1220:       my $key='';
                   1221:       if($string =~ /^__HASH_REF__/) {
                   1222:           ($key, $string)=&str2hashref($string);
                   1223:           if(defined($key->{'error'})) {
                   1224:               $hash{'error'}='Bad data';
                   1225:               return (\%hash, $string);
                   1226:           }
                   1227:       } elsif($string =~ /^__ARRAY_REF__/) {
                   1228:           ($key, $string)=&str2arrayref($string);
                   1229:           if($key->[0] eq 'Array reference error') {
                   1230:               $hash{'error'}='Bad data';
                   1231:               return (\%hash, $string);
                   1232:           }
                   1233:       } else {
                   1234:           $string =~ s/^(.*?)=//;
1.267     albertel 1235: 	  $key=&unescape($1);
1.265     albertel 1236:       }
                   1237:       $string =~ s/^=//;
                   1238: 
                   1239:       #value
                   1240:       my $value='';
                   1241:       if($string =~ /^__HASH_REF__/) {
                   1242:           ($value, $string)=&str2hashref($string);
                   1243:           if(defined($value->{'error'})) {
                   1244:               $hash{'error'}='Bad data';
                   1245:               return (\%hash, $string);
                   1246:           }
                   1247:       } elsif($string =~ /^__ARRAY_REF__/) {
                   1248:           ($value, $string)=&str2arrayref($string);
                   1249:           if($value->[0] eq 'Array reference error') {
                   1250:               $hash{'error'}='Bad data';
                   1251:               return (\%hash, $string);
                   1252:           }
                   1253:       } else {
                   1254: 	  $value=&get_scalar(\$string,'__END_HASH_REF__');
                   1255:       }
                   1256:       $string =~ s/^&//;
                   1257: 
                   1258:       $hash{$key}=$value;
1.204     albertel 1259:   }
1.265     albertel 1260: 
                   1261:   $string =~ s/^__END_HASH_REF__//;
                   1262: 
                   1263:   return (\%hash, $string);
1.204     albertel 1264: }
                   1265: 
                   1266: sub str2array {
1.265     albertel 1267:     my ($string)=@_;
                   1268:     my ($array)=&str2arrayref('__ARRAY_REF__'.$string.'__END_ARRAY_REF__');
                   1269:     return @$array;
                   1270: }
                   1271: 
                   1272: sub str2arrayref {
1.204     albertel 1273:   my ($string) = @_;
1.265     albertel 1274:   my @array;
                   1275: 
                   1276:   if($string !~ /^__ARRAY_REF__/) {
                   1277:       if (! ($string eq '' || !defined($string))) {
                   1278: 	  $array[0]='Array reference error';
                   1279:       }
                   1280:       return (\@array, $string);
                   1281:   }
                   1282: 
                   1283:   $string =~ s/^__ARRAY_REF__//;
                   1284: 
                   1285:   while($string !~ /^__END_ARRAY_REF__/) {
                   1286:       my $value='';
                   1287:       if($string =~ /^__HASH_REF__/) {
                   1288:           ($value, $string)=&str2hashref($string);
                   1289:           if(defined($value->{'error'})) {
                   1290:               $array[0] ='Array reference error';
                   1291:               return (\@array, $string);
                   1292:           }
                   1293:       } elsif($string =~ /^__ARRAY_REF__/) {
                   1294:           ($value, $string)=&str2arrayref($string);
                   1295:           if($value->[0] eq 'Array reference error') {
                   1296:               $array[0] ='Array reference error';
                   1297:               return (\@array, $string);
                   1298:           }
                   1299:       } else {
                   1300: 	  $value=&get_scalar(\$string,'__END_ARRAY_REF__');
                   1301:       }
                   1302:       $string =~ s/^&//;
                   1303: 
                   1304:       push(@array, $value);
1.191     harris41 1305:   }
1.265     albertel 1306: 
                   1307:   $string =~ s/^__END_ARRAY_REF__//;
                   1308: 
                   1309:   return (\@array, $string);
1.168     albertel 1310: }
                   1311: 
1.167     albertel 1312: # -------------------------------------------------------------------Temp Store
                   1313: 
1.168     albertel 1314: sub tmpreset {
                   1315:   my ($symb,$namespace,$domain,$stuname) = @_;
                   1316:   if (!$symb) {
                   1317:     $symb=&symbread();
                   1318:     if (!$symb) { $symb= $ENV{'REQUEST_URI'}; }
                   1319:   }
                   1320:   $symb=escape($symb);
                   1321: 
                   1322:   if (!$namespace) { $namespace=$ENV{'request.state'}; }
                   1323:   $namespace=~s/\//\_/g;
                   1324:   $namespace=~s/\W//g;
                   1325: 
                   1326:   #FIXME needs to do something for /pub resources
                   1327:   if (!$domain) { $domain=$ENV{'user.domain'}; }
                   1328:   if (!$stuname) { $stuname=$ENV{'user.name'}; }
                   1329:   my $path=$perlvar{'lonDaemons'}.'/tmp';
                   1330:   my %hash;
                   1331:   if (tie(%hash,'GDBM_File',
                   1332: 	  $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
1.256     albertel 1333: 	  &GDBM_WRCREAT(),0640)) {
1.168     albertel 1334:     foreach my $key (keys %hash) {
1.180     albertel 1335:       if ($key=~ /:$symb/) {
1.168     albertel 1336: 	delete($hash{$key});
                   1337:       }
                   1338:     }
                   1339:   }
                   1340: }
                   1341: 
1.167     albertel 1342: sub tmpstore {
1.168     albertel 1343:   my ($storehash,$symb,$namespace,$domain,$stuname) = @_;
                   1344: 
                   1345:   if (!$symb) {
                   1346:     $symb=&symbread();
                   1347:     if (!$symb) { $symb= $ENV{'request.url'}; }
                   1348:   }
                   1349:   $symb=escape($symb);
                   1350: 
                   1351:   if (!$namespace) {
                   1352:     # I don't think we would ever want to store this for a course.
                   1353:     # it seems this will only be used if we don't have a course.
                   1354:     #$namespace=$ENV{'request.course.id'};
                   1355:     #if (!$namespace) {
                   1356:       $namespace=$ENV{'request.state'};
                   1357:     #}
                   1358:   }
                   1359:   $namespace=~s/\//\_/g;
                   1360:   $namespace=~s/\W//g;
                   1361: #FIXME needs to do something for /pub resources
                   1362:   if (!$domain) { $domain=$ENV{'user.domain'}; }
                   1363:   if (!$stuname) { $stuname=$ENV{'user.name'}; }
                   1364:   my $now=time;
                   1365:   my %hash;
                   1366:   my $path=$perlvar{'lonDaemons'}.'/tmp';
                   1367:   if (tie(%hash,'GDBM_File',
                   1368: 	  $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
1.256     albertel 1369: 	  &GDBM_WRCREAT(),0640)) {
1.168     albertel 1370:     $hash{"version:$symb"}++;
                   1371:     my $version=$hash{"version:$symb"};
                   1372:     my $allkeys=''; 
                   1373:     foreach my $key (keys(%$storehash)) {
                   1374:       $allkeys.=$key.':';
                   1375:       $hash{"$version:$symb:$key"}=$$storehash{$key};
                   1376:     }
                   1377:     $hash{"$version:$symb:timestamp"}=$now;
                   1378:     $allkeys.='timestamp';
                   1379:     $hash{"$version:keys:$symb"}=$allkeys;
                   1380:     if (untie(%hash)) {
                   1381:       return 'ok';
                   1382:     } else {
                   1383:       return "error:$!";
                   1384:     }
                   1385:   } else {
                   1386:     return "error:$!";
                   1387:   }
                   1388: }
1.167     albertel 1389: 
1.168     albertel 1390: # -----------------------------------------------------------------Temp Restore
1.167     albertel 1391: 
1.168     albertel 1392: sub tmprestore {
                   1393:   my ($symb,$namespace,$domain,$stuname) = @_;
1.167     albertel 1394: 
1.168     albertel 1395:   if (!$symb) {
                   1396:     $symb=&symbread();
                   1397:     if (!$symb) { $symb= $ENV{'request.url'}; }
                   1398:   }
                   1399:   $symb=escape($symb);
                   1400: 
                   1401:   if (!$namespace) { $namespace=$ENV{'request.state'}; }
                   1402:   #FIXME needs to do something for /pub resources
                   1403:   if (!$domain) { $domain=$ENV{'user.domain'}; }
                   1404:   if (!$stuname) { $stuname=$ENV{'user.name'}; }
                   1405: 
                   1406:   my %returnhash;
                   1407:   $namespace=~s/\//\_/g;
                   1408:   $namespace=~s/\W//g;
                   1409:   my %hash;
                   1410:   my $path=$perlvar{'lonDaemons'}.'/tmp';
                   1411:   if (tie(%hash,'GDBM_File',
                   1412: 	  $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
1.256     albertel 1413: 	  &GDBM_READER(),0640)) {
1.168     albertel 1414:     my $version=$hash{"version:$symb"};
                   1415:     $returnhash{'version'}=$version;
                   1416:     my $scope;
                   1417:     for ($scope=1;$scope<=$version;$scope++) {
                   1418:       my $vkeys=$hash{"$scope:keys:$symb"};
                   1419:       my @keys=split(/:/,$vkeys);
                   1420:       my $key;
                   1421:       $returnhash{"$scope:keys"}=$vkeys;
                   1422:       foreach $key (@keys) {
                   1423: 	$returnhash{"$scope:$key"}=$hash{"$scope:$symb:$key"};
                   1424: 	$returnhash{"$key"}=$hash{"$scope:$symb:$key"};
1.167     albertel 1425:       }
                   1426:     }
1.168     albertel 1427:     if (!(untie(%hash))) {
                   1428:       return "error:$!";
                   1429:     }
                   1430:   } else {
                   1431:     return "error:$!";
                   1432:   }
                   1433:   return %returnhash;
1.167     albertel 1434: }
                   1435: 
1.9       www      1436: # ----------------------------------------------------------------------- Store
                   1437: 
                   1438: sub store {
1.124     www      1439:     my ($storehash,$symb,$namespace,$domain,$stuname) = @_;
                   1440:     my $home='';
                   1441: 
1.168     albertel 1442:     if ($stuname) { $home=&homeserver($stuname,$domain); }
1.124     www      1443: 
1.213     www      1444:     $symb=&symbclean($symb);
1.122     albertel 1445:     if (!$symb) { unless ($symb=&symbread()) { return ''; } }
1.109     www      1446: 
                   1447:     &devalidate($symb);
                   1448: 
                   1449:     $symb=escape($symb);
1.187     www      1450:     if (!$namespace) { 
                   1451:        unless ($namespace=$ENV{'request.course.id'}) { 
                   1452:           return ''; 
                   1453:        } 
                   1454:     }
1.122     albertel 1455:     if (!$domain) { $domain=$ENV{'user.domain'}; }
                   1456:     if (!$stuname) { $stuname=$ENV{'user.name'}; }
                   1457:     if (!$home) { $home=$ENV{'user.home'}; }
1.12      www      1458:     my $namevalue='';
1.191     harris41 1459:     foreach (keys %$storehash) {
1.122     albertel 1460:         $namevalue.=escape($_).'='.escape($$storehash{$_}).'&';
1.191     harris41 1461:     }
1.12      www      1462:     $namevalue=~s/\&$//;
1.187     www      1463:     &courselog($symb.':'.$stuname.':'.$domain.':STORE:'.$namevalue);
1.124     www      1464:     return reply("store:$domain:$stuname:$namespace:$symb:$namevalue","$home");
1.9       www      1465: }
                   1466: 
1.47      www      1467: # -------------------------------------------------------------- Critical Store
                   1468: 
                   1469: sub cstore {
1.124     www      1470:     my ($storehash,$symb,$namespace,$domain,$stuname) = @_;
                   1471:     my $home='';
                   1472: 
1.168     albertel 1473:     if ($stuname) { $home=&homeserver($stuname,$domain); }
1.124     www      1474: 
1.213     www      1475:     $symb=&symbclean($symb);
1.122     albertel 1476:     if (!$symb) { unless ($symb=&symbread()) { return ''; } }
1.109     www      1477: 
                   1478:     &devalidate($symb);
                   1479: 
                   1480:     $symb=escape($symb);
1.187     www      1481:     if (!$namespace) { 
                   1482:        unless ($namespace=$ENV{'request.course.id'}) { 
                   1483:           return ''; 
                   1484:        } 
                   1485:     }
1.122     albertel 1486:     if (!$domain) { $domain=$ENV{'user.domain'}; }
                   1487:     if (!$stuname) { $stuname=$ENV{'user.name'}; }
                   1488:     if (!$home) { $home=$ENV{'user.home'}; }
                   1489: 
1.47      www      1490:     my $namevalue='';
1.191     harris41 1491:     foreach (keys %$storehash) {
1.122     albertel 1492:         $namevalue.=escape($_).'='.escape($$storehash{$_}).'&';
1.191     harris41 1493:     }
1.47      www      1494:     $namevalue=~s/\&$//;
1.187     www      1495:     &courselog($symb.':'.$stuname.':'.$domain.':CSTORE:'.$namevalue);
1.188     www      1496:     return critical
                   1497:                 ("store:$domain:$stuname:$namespace:$symb:$namevalue","$home");
1.47      www      1498: }
                   1499: 
1.9       www      1500: # --------------------------------------------------------------------- Restore
                   1501: 
                   1502: sub restore {
1.124     www      1503:     my ($symb,$namespace,$domain,$stuname) = @_;
                   1504:     my $home='';
                   1505: 
1.168     albertel 1506:     if ($stuname) { $home=&homeserver($stuname,$domain); }
1.124     www      1507: 
1.122     albertel 1508:     if (!$symb) {
                   1509:       unless ($symb=escape(&symbread())) { return ''; }
                   1510:     } else {
1.213     www      1511:       $symb=&escape(&symbclean($symb));
1.122     albertel 1512:     }
1.188     www      1513:     if (!$namespace) { 
                   1514:        unless ($namespace=$ENV{'request.course.id'}) { 
                   1515:           return ''; 
                   1516:        } 
                   1517:     }
1.122     albertel 1518:     if (!$domain) { $domain=$ENV{'user.domain'}; }
                   1519:     if (!$stuname) { $stuname=$ENV{'user.name'}; }
                   1520:     if (!$home) { $home=$ENV{'user.home'}; }
                   1521:     my $answer=&reply("restore:$domain:$stuname:$namespace:$symb","$home");
                   1522: 
1.12      www      1523:     my %returnhash=();
1.191     harris41 1524:     foreach (split(/\&/,$answer)) {
1.12      www      1525: 	my ($name,$value)=split(/\=/,$_);
                   1526:         $returnhash{&unescape($name)}=&unescape($value);
1.191     harris41 1527:     }
1.75      www      1528:     my $version;
                   1529:     for ($version=1;$version<=$returnhash{'version'};$version++) {
1.191     harris41 1530:        foreach (split(/\:/,$returnhash{$version.':keys'})) {
1.75      www      1531:           $returnhash{$_}=$returnhash{$version.':'.$_};
1.191     harris41 1532:        }
1.75      www      1533:     }
1.13      www      1534:     return %returnhash;
1.34      www      1535: }
                   1536: 
                   1537: # ---------------------------------------------------------- Course Description
                   1538: 
                   1539: sub coursedescription {
                   1540:     my $courseid=shift;
                   1541:     $courseid=~s/^\///;
1.49      www      1542:     $courseid=~s/\_/\//g;
1.34      www      1543:     my ($cdomain,$cnum)=split(/\//,$courseid);
1.129     albertel 1544:     my $chome=&homeserver($cnum,$cdomain);
1.34      www      1545:     if ($chome ne 'no_host') {
1.129     albertel 1546:        my %returnhash=&dump('environment',$cdomain,$cnum);
                   1547:        if (!exists($returnhash{'con_lost'})) {
1.96      www      1548:            my $normalid=$cdomain.'_'.$cnum;
1.53      www      1549:            my %envhash=();
1.129     albertel 1550:            $returnhash{'home'}= $chome;
                   1551: 	   $returnhash{'domain'} = $cdomain;
                   1552: 	   $returnhash{'num'} = $cnum;
1.130     albertel 1553:            while (my ($name,$value) = each %returnhash) {
1.53      www      1554:                $envhash{'course.'.$normalid.'.'.$name}=$value;
1.129     albertel 1555:            }
1.270     www      1556:            $returnhash{'url'}=&clutter($returnhash{'url'});
1.34      www      1557:            $returnhash{'fn'}=$perlvar{'lonDaemons'}.'/tmp/'.
1.38      www      1558: 	       $ENV{'user.name'}.'_'.$cdomain.'_'.$cnum;
1.54      www      1559:            $envhash{'course.'.$normalid.'.last_cache'}=time;
1.60      www      1560:            $envhash{'course.'.$normalid.'.home'}=$chome;
                   1561:            $envhash{'course.'.$normalid.'.domain'}=$cdomain;
                   1562:            $envhash{'course.'.$normalid.'.num'}=$cnum;
1.53      www      1563:            &appenv(%envhash);
1.34      www      1564:            return %returnhash;
                   1565:        }
                   1566:     }
                   1567:     return ();
1.9       www      1568: }
1.1       albertel 1569: 
1.103     harris41 1570: # -------------------------------------------------------- Get user privileges
1.11      www      1571: 
                   1572: sub rolesinit {
                   1573:     my ($domain,$username,$authhost)=@_;
                   1574:     my $rolesdump=reply("dump:$domain:$username:roles",$authhost);
1.12      www      1575:     if (($rolesdump eq 'con_lost') || ($rolesdump eq '')) { return ''; }
1.11      www      1576:     my %allroles=();
                   1577:     my %thesepriv=();
                   1578:     my $now=time;
1.21      www      1579:     my $userroles="user.login.time=$now\n";
1.11      www      1580:     my $thesestr;
                   1581: 
                   1582:     if ($rolesdump ne '') {
1.191     harris41 1583:         foreach (split(/&/,$rolesdump)) {
1.21      www      1584: 	  if ($_!~/^rolesdef\&/) {
1.11      www      1585:             my ($area,$role)=split(/=/,$_);
1.21      www      1586:             $area=~s/\_\w\w$//;
1.11      www      1587:             my ($trole,$tend,$tstart)=split(/_/,$role);
1.21      www      1588:             $userroles.='user.role.'.$trole.'.'.$area.'='.
                   1589:                         $tstart.'.'.$tend."\n";
1.11      www      1590:             if ($tend!=0) {
                   1591: 	        if ($tend<$now) {
                   1592: 	            $trole='';
                   1593:                 } 
                   1594:             }
                   1595:             if ($tstart!=0) {
                   1596:                 if ($tstart>$now) {
                   1597:                    $trole='';        
                   1598:                 }
                   1599:             }
                   1600:             if (($area ne '') && ($trole ne '')) {
1.50      www      1601: 	       my $spec=$trole.'.'.$area;
1.12      www      1602:                my ($tdummy,$tdomain,$trest)=split(/\//,$area);
                   1603:                if ($trole =~ /^cr\//) {
                   1604: 		   my ($rdummy,$rdomain,$rauthor,$rrole)=split(/\//,$trole);
                   1605:                    my $homsvr=homeserver($rauthor,$rdomain);
                   1606:                    if ($hostname{$homsvr} ne '') {
                   1607:                       my $roledef=
1.21      www      1608: 			  reply("get:$rdomain:$rauthor:roles:rolesdef_$rrole",
1.12      www      1609:                                 $homsvr);
                   1610:                       if (($roledef ne 'con_lost') && ($roledef ne '')) {
                   1611:                          my ($syspriv,$dompriv,$coursepriv)=
1.21      www      1612: 			     split(/\_/,unescape($roledef));
1.50      www      1613:  	                 $allroles{'cm./'}.=':'.$syspriv;
                   1614:                          $allroles{$spec.'./'}.=':'.$syspriv;
1.12      www      1615:                          if ($tdomain ne '') {
1.50      www      1616:                              $allroles{'cm./'.$tdomain.'/'}.=':'.$dompriv;
                   1617:                              $allroles{$spec.'./'.$tdomain.'/'}.=':'.$dompriv;
1.12      www      1618:                              if ($trest ne '') {
1.50      www      1619: 		                $allroles{'cm.'.$area}.=':'.$coursepriv;
                   1620: 		                $allroles{$spec.'.'.$area}.=':'.$coursepriv;
1.12      www      1621:                              }
                   1622: 	                 }
                   1623:                       }
1.11      www      1624:                    }
1.12      www      1625:                } else {
1.50      www      1626: 	           $allroles{'cm./'}.=':'.$pr{$trole.':s'};
                   1627: 	           $allroles{$spec.'./'}.=':'.$pr{$trole.':s'};
1.12      www      1628:                    if ($tdomain ne '') {
1.50      www      1629:                      $allroles{'cm./'.$tdomain.'/'}.=':'.$pr{$trole.':d'};
                   1630:                      $allroles{$spec.'./'.$tdomain.'/'}.=':'.$pr{$trole.':d'};
1.12      www      1631:                       if ($trest ne '') {
1.50      www      1632: 		          $allroles{'cm.'.$area}.=':'.$pr{$trole.':c'};
                   1633: 		          $allroles{$spec.'.'.$area}.=':'.$pr{$trole.':c'};
1.12      www      1634:                       }
                   1635: 	           }
1.11      www      1636: 	       }
1.12      www      1637:             }
                   1638:           } 
1.191     harris41 1639:         }
1.125     www      1640:         my $adv=0;
1.128     www      1641:         my $author=0;
1.191     harris41 1642:         foreach (keys %allroles) {
1.11      www      1643:             %thesepriv=();
1.146     www      1644:             if (($_!~/^st/) && ($_!~/^ta/) && ($_!~/^cm/)) { $adv=1; }
1.128     www      1645:             if (($_=~/^au/) || ($_=~/^ca/)) { $author=1; }
1.191     harris41 1646:             foreach (split(/:/,$allroles{$_})) {
1.11      www      1647:                 if ($_ ne '') {
1.103     harris41 1648: 		    my ($privilege,$restrictions)=split(/&/,$_);
1.11      www      1649:                     if ($restrictions eq '') {
1.103     harris41 1650: 			$thesepriv{$privilege}='F';
1.11      www      1651:                     } else {
1.103     harris41 1652:                         if ($thesepriv{$privilege} ne 'F') {
                   1653: 			    $thesepriv{$privilege}.=$restrictions;
1.11      www      1654:                         }
                   1655:                     }
                   1656:                 }
1.191     harris41 1657:             }
1.11      www      1658:             $thesestr='';
1.191     harris41 1659:             foreach (keys %thesepriv) { $thesestr.=':'.$_.'&'.$thesepriv{$_}; }
1.11      www      1660:             $userroles.='user.priv.'.$_.'='.$thesestr."\n";
1.191     harris41 1661:         }
1.128     www      1662:         $userroles.='user.adv='.$adv."\n".
                   1663: 	            'user.author='.$author."\n";
1.126     www      1664:         $ENV{'user.adv'}=$adv;
1.11      www      1665:     }
                   1666:     return $userroles;  
                   1667: }
                   1668: 
1.12      www      1669: # --------------------------------------------------------------- get interface
                   1670: 
                   1671: sub get {
1.131     albertel 1672:    my ($namespace,$storearr,$udomain,$uname)=@_;
1.12      www      1673:    my $items='';
1.191     harris41 1674:    foreach (@$storearr) {
1.12      www      1675:        $items.=escape($_).'&';
1.191     harris41 1676:    }
1.12      www      1677:    $items=~s/\&$//;
1.131     albertel 1678:    if (!$udomain) { $udomain=$ENV{'user.domain'}; }
                   1679:    if (!$uname) { $uname=$ENV{'user.name'}; }
                   1680:    my $uhome=&homeserver($uname,$udomain);
                   1681: 
1.133     albertel 1682:    my $rep=&reply("get:$udomain:$uname:$namespace:$items",$uhome);
1.15      www      1683:    my @pairs=split(/\&/,$rep);
1.273     albertel 1684:    if ( $#pairs==0 && $pairs[0] =~ /^(con_lost|error|no_such_host)/i) {
                   1685:      return @pairs;
                   1686:    }
1.15      www      1687:    my %returnhash=();
1.42      www      1688:    my $i=0;
1.191     harris41 1689:    foreach (@$storearr) {
1.42      www      1690:       $returnhash{$_}=unescape($pairs[$i]);
                   1691:       $i++;
1.191     harris41 1692:    }
1.15      www      1693:    return %returnhash;
1.27      www      1694: }
                   1695: 
                   1696: # --------------------------------------------------------------- del interface
                   1697: 
                   1698: sub del {
1.133     albertel 1699:    my ($namespace,$storearr,$udomain,$uname)=@_;
1.27      www      1700:    my $items='';
1.191     harris41 1701:    foreach (@$storearr) {
1.27      www      1702:        $items.=escape($_).'&';
1.191     harris41 1703:    }
1.27      www      1704:    $items=~s/\&$//;
1.133     albertel 1705:    if (!$udomain) { $udomain=$ENV{'user.domain'}; }
                   1706:    if (!$uname) { $uname=$ENV{'user.name'}; }
                   1707:    my $uhome=&homeserver($uname,$udomain);
                   1708: 
                   1709:    return &reply("del:$udomain:$uname:$namespace:$items",$uhome);
1.15      www      1710: }
                   1711: 
                   1712: # -------------------------------------------------------------- dump interface
                   1713: 
                   1714: sub dump {
1.193     www      1715:    my ($namespace,$udomain,$uname,$regexp)=@_;
1.129     albertel 1716:    if (!$udomain) { $udomain=$ENV{'user.domain'}; }
                   1717:    if (!$uname) { $uname=$ENV{'user.name'}; }
                   1718:    my $uhome=&homeserver($uname,$udomain);
1.193     www      1719:    if ($regexp) {
                   1720:        $regexp=&escape($regexp);
                   1721:    } else {
                   1722:        $regexp='.';
                   1723:    }
                   1724:    my $rep=reply("dump:$udomain:$uname:$namespace:$regexp",$uhome);
1.12      www      1725:    my @pairs=split(/\&/,$rep);
                   1726:    my %returnhash=();
1.191     harris41 1727:    foreach (@pairs) {
1.12      www      1728:       my ($key,$value)=split(/=/,$_);
1.29      www      1729:       $returnhash{unescape($key)}=unescape($value);
1.191     harris41 1730:    }
1.12      www      1731:    return %returnhash;
                   1732: }
                   1733: 
                   1734: # --------------------------------------------------------------- put interface
                   1735: 
                   1736: sub put {
1.134     albertel 1737:    my ($namespace,$storehash,$udomain,$uname)=@_;
                   1738:    if (!$udomain) { $udomain=$ENV{'user.domain'}; }
                   1739:    if (!$uname) { $uname=$ENV{'user.name'}; }
                   1740:    my $uhome=&homeserver($uname,$udomain);
1.12      www      1741:    my $items='';
1.191     harris41 1742:    foreach (keys %$storehash) {
1.134     albertel 1743:        $items.=&escape($_).'='.&escape($$storehash{$_}).'&';
1.191     harris41 1744:    }
1.12      www      1745:    $items=~s/\&$//;
1.134     albertel 1746:    return &reply("put:$udomain:$uname:$namespace:$items",$uhome);
1.47      www      1747: }
                   1748: 
                   1749: # ------------------------------------------------------ critical put interface
                   1750: 
                   1751: sub cput {
1.134     albertel 1752:    my ($namespace,$storehash,$udomain,$uname)=@_;
                   1753:    if (!$udomain) { $udomain=$ENV{'user.domain'}; }
                   1754:    if (!$uname) { $uname=$ENV{'user.name'}; }
                   1755:    my $uhome=&homeserver($uname,$udomain);
1.47      www      1756:    my $items='';
1.191     harris41 1757:    foreach (keys %$storehash) {
1.134     albertel 1758:        $items.=escape($_).'='.escape($$storehash{$_}).'&';
1.191     harris41 1759:    }
1.47      www      1760:    $items=~s/\&$//;
1.134     albertel 1761:    return &critical("put:$udomain:$uname:$namespace:$items",$uhome);
1.12      www      1762: }
                   1763: 
                   1764: # -------------------------------------------------------------- eget interface
                   1765: 
                   1766: sub eget {
1.133     albertel 1767:    my ($namespace,$storearr,$udomain,$uname)=@_;
1.12      www      1768:    my $items='';
1.191     harris41 1769:    foreach (@$storearr) {
1.12      www      1770:        $items.=escape($_).'&';
1.191     harris41 1771:    }
1.12      www      1772:    $items=~s/\&$//;
1.133     albertel 1773:    if (!$udomain) { $udomain=$ENV{'user.domain'}; }
                   1774:    if (!$uname) { $uname=$ENV{'user.name'}; }
                   1775:    my $uhome=&homeserver($uname,$udomain);
                   1776:    my $rep=&reply("eget:$udomain:$uname:$namespace:$items",$uhome);
1.12      www      1777:    my @pairs=split(/\&/,$rep);
                   1778:    my %returnhash=();
1.42      www      1779:    my $i=0;
1.191     harris41 1780:    foreach (@$storearr) {
1.42      www      1781:       $returnhash{$_}=unescape($pairs[$i]);
                   1782:       $i++;
1.191     harris41 1783:    }
1.12      www      1784:    return %returnhash;
                   1785: }
                   1786: 
1.103     harris41 1787: # ------------------------------------------------- Check for a user privilege
1.12      www      1788: 
                   1789: sub allowed {
                   1790:     my ($priv,$uri)=@_;
1.152     www      1791: 
                   1792:     my $orguri=$uri;
1.52      www      1793:     $uri=&declutter($uri);
1.29      www      1794: 
1.54      www      1795: # Free bre access to adm and meta resources
1.29      www      1796: 
1.54      www      1797:     if ((($uri=~/^adm\//) || ($uri=~/\.meta$/)) && ($priv eq 'bre')) {
1.14      www      1798: 	return 'F';
1.159     www      1799:     }
                   1800: 
                   1801: # Free bre to public access
                   1802: 
                   1803:     if ($priv eq 'bre') {
1.238     www      1804:         my $copyright=&metadata($uri,'copyright');
                   1805: 	if ($copyright eq 'public') { return 'F'; }
                   1806:         if ($copyright eq 'priv') {
                   1807:             $uri=~/([^\/]+)\/([^\/]+)\//;
                   1808: 	    unless (($ENV{'user.name'} eq $2) && ($ENV{'user.domain'} eq $1)) {
                   1809: 		return '';
                   1810:             }
                   1811:         }
                   1812:         if ($copyright eq 'domain') {
                   1813:             $uri=~/([^\/]+)\/([^\/]+)\//;
                   1814: 	    unless (($ENV{'user.domain'} eq $1) ||
                   1815:                  ($ENV{'course.'.$ENV{'request.course.id'}.'.domain'} eq $1)) {
                   1816: 		return '';
                   1817:             }
1.262     matthew  1818:         }
                   1819:         if ($ENV{'request.role'}=~ /li\.\//) {
                   1820:             # Library role, so allow browsing of resources in this domain.
                   1821:             return 'F';
1.238     www      1822:         }
1.14      www      1823:     }
1.264     matthew  1824:     # Domain coordinator is trying to create a course
                   1825:     if (($priv eq 'ccc') && ($ENV{'request.role'} =~ /^dc\./)) {
                   1826:         # uri is the requested domain in this case.
                   1827:         # comparison to 'request.role.domain' shows if the user has selected
                   1828:         # a role of dc for the domain in question. 
                   1829:         return 'F' if ($uri eq $ENV{'request.role.domain'});
                   1830:     }
1.29      www      1831: 
1.52      www      1832:     my $thisallowed='';
                   1833:     my $statecond=0;
                   1834:     my $courseprivid='';
                   1835: 
                   1836: # Course
                   1837: 
                   1838:     if ($ENV{'user.priv.'.$ENV{'request.role'}.'./'}=~/$priv\&([^\:]*)/) {
                   1839:        $thisallowed.=$1;
                   1840:     }
1.29      www      1841: 
1.52      www      1842: # Domain
                   1843: 
                   1844:     if ($ENV{'user.priv.'.$ENV{'request.role'}.'./'.(split(/\//,$uri))[0].'/'}
                   1845:        =~/$priv\&([^\:]*)/) {
1.12      www      1846:        $thisallowed.=$1;
                   1847:     }
1.52      www      1848: 
                   1849: # Course: uri itself is a course
1.66      www      1850:     my $courseuri=$uri;
                   1851:     $courseuri=~s/\_(\d)/\/$1/;
1.83      www      1852:     $courseuri=~s/^([^\/])/\/$1/;
1.81      www      1853: 
1.83      www      1854:     if ($ENV{'user.priv.'.$ENV{'request.role'}.'.'.$courseuri}
1.52      www      1855:        =~/$priv\&([^\:]*)/) {
1.12      www      1856:        $thisallowed.=$1;
                   1857:     }
1.29      www      1858: 
1.52      www      1859: # Full access at system, domain or course-wide level? Exit.
1.29      www      1860: 
                   1861:     if ($thisallowed=~/F/) {
                   1862: 	return 'F';
                   1863:     }
                   1864: 
1.52      www      1865: # If this is generating or modifying users, exit with special codes
1.29      www      1866: 
1.166     www      1867:     if (':csu:cdc:ccc:cin:cta:cep:ccr:cst:cad:cli:cau:cdg:cca:'=~/\:$priv\:/) {
1.52      www      1868: 	return $thisallowed;
                   1869:     }
                   1870: #
1.103     harris41 1871: # Gathered so far: system, domain and course wide privileges
1.52      www      1872: #
                   1873: # Course: See if uri or referer is an individual resource that is part of 
                   1874: # the course
                   1875: 
                   1876:     if ($ENV{'request.course.id'}) {
1.232     www      1877: 
1.52      www      1878:        $courseprivid=$ENV{'request.course.id'};
                   1879:        if ($ENV{'request.course.sec'}) {
                   1880:           $courseprivid.='/'.$ENV{'request.course.sec'};
                   1881:        }
                   1882:        $courseprivid=~s/\_/\//;
                   1883:        my $checkreferer=1;
1.232     www      1884:        my ($match,$cond)=&is_on_map($uri);
                   1885:        if ($match) {
                   1886:            $statecond=$cond;
1.52      www      1887:            if ($ENV{'user.priv.'.$ENV{'request.role'}.'./'.$courseprivid}
                   1888:                =~/$priv\&([^\:]*)/) {
                   1889:                $thisallowed.=$1;
                   1890:                $checkreferer=0;
                   1891:            }
1.29      www      1892:        }
1.83      www      1893:        
1.148     www      1894:        if ($checkreferer) {
1.152     www      1895: 	  my $refuri=$ENV{'httpref.'.$orguri};
1.148     www      1896:             unless ($refuri) {
1.191     harris41 1897:                 foreach (keys %ENV) {
1.148     www      1898: 		    if ($_=~/^httpref\..*\*/) {
                   1899: 			my $pattern=$_;
1.156     www      1900:                         $pattern=~s/^httpref\.\/res\///;
1.148     www      1901:                         $pattern=~s/\*/\[\^\/\]\+/g;
                   1902:                         $pattern=~s/\//\\\//g;
1.152     www      1903:                         if ($orguri=~/$pattern/) {
1.148     www      1904: 			    $refuri=$ENV{$_};
                   1905:                         }
                   1906:                     }
1.191     harris41 1907:                 }
1.148     www      1908:             }
1.232     www      1909: 
1.148     www      1910:          if ($refuri) { 
1.152     www      1911: 	  $refuri=&declutter($refuri);
1.232     www      1912:           my ($match,$cond)=&is_on_map($refuri);
                   1913:             if ($match) {
                   1914:               my $refstatecond=$cond;
1.52      www      1915:               if ($ENV{'user.priv.'.$ENV{'request.role'}.'./'.$courseprivid}
                   1916:                   =~/$priv\&([^\:]*)/) {
                   1917:                   $thisallowed.=$1;
1.53      www      1918:                   $uri=$refuri;
                   1919:                   $statecond=$refstatecond;
1.52      www      1920:               }
                   1921:           }
1.148     www      1922:         }
1.29      www      1923:        }
1.52      www      1924:    }
1.29      www      1925: 
1.52      www      1926: #
1.103     harris41 1927: # Gathered now: all privileges that could apply, and condition number
1.52      www      1928: # 
                   1929: #
                   1930: # Full or no access?
                   1931: #
1.29      www      1932: 
1.52      www      1933:     if ($thisallowed=~/F/) {
                   1934: 	return 'F';
                   1935:     }
1.29      www      1936: 
1.52      www      1937:     unless ($thisallowed) {
                   1938:         return '';
                   1939:     }
1.29      www      1940: 
1.52      www      1941: # Restrictions exist, deal with them
                   1942: #
                   1943: #   C:according to course preferences
                   1944: #   R:according to resource settings
                   1945: #   L:unless locked
                   1946: #   X:according to user session state
                   1947: #
                   1948: 
                   1949: # Possibly locked functionality, check all courses
1.54      www      1950: # Locks might take effect only after 10 minutes cache expiration for other
                   1951: # courses, and 2 minutes for current course
1.52      www      1952: 
                   1953:     my $envkey;
                   1954:     if ($thisallowed=~/L/) {
                   1955:         foreach $envkey (keys %ENV) {
1.54      www      1956:            if ($envkey=~/^user\.role\.(st|ta)\.([^\.]*)/) {
                   1957:                my $courseid=$2;
                   1958:                my $roleid=$1.'.'.$2;
1.92      www      1959:                $courseid=~s/^\///;
1.54      www      1960:                my $expiretime=600;
                   1961:                if ($ENV{'request.role'} eq $roleid) {
                   1962: 		  $expiretime=120;
                   1963:                }
                   1964: 	       my ($cdom,$cnum,$csec)=split(/\//,$courseid);
                   1965:                my $prefix='course.'.$cdom.'_'.$cnum.'.';
                   1966:                if ((time-$ENV{$prefix.'last_cache'})>$expiretime) {
                   1967: 		   &coursedescription($courseid);
                   1968:                }
                   1969:                if (($ENV{$prefix.'res.'.$uri.'.lock.sections'}=~/\,$csec\,/)
                   1970:                 || ($ENV{$prefix.'res.'.$uri.'.lock.sections'} eq 'all')) {
                   1971: 		   if ($ENV{$prefix.'res.'.$uri.'.lock.expire'}>time) {
1.57      www      1972:                        &log($ENV{'user.domain'},$ENV{'user.name'},
1.239     www      1973:                             $ENV{'user.home'},
1.57      www      1974:                             'Locked by res: '.$priv.' for '.$uri.' due to '.
1.52      www      1975:                             $cdom.'/'.$cnum.'/'.$csec.' expire '.
1.54      www      1976:                             $ENV{$prefix.'priv.'.$priv.'.lock.expire'});
1.52      www      1977: 		       return '';
                   1978:                    }
                   1979:                }
1.54      www      1980:                if (($ENV{$prefix.'priv.'.$priv.'.lock.sections'}=~/\,$csec\,/)
                   1981:                 || ($ENV{$prefix.'priv.'.$priv.'.lock.sections'} eq 'all')) {
                   1982: 		   if ($ENV{'priv.'.$priv.'.lock.expire'}>time) {
1.57      www      1983:                        &log($ENV{'user.domain'},$ENV{'user.name'},
1.239     www      1984:                             $ENV{'user.home'},
1.57      www      1985:                             'Locked by priv: '.$priv.' for '.$uri.' due to '.
1.52      www      1986:                             $cdom.'/'.$cnum.'/'.$csec.' expire '.
1.54      www      1987:                             $ENV{$prefix.'priv.'.$priv.'.lock.expire'});
1.52      www      1988: 		       return '';
                   1989:                    }
                   1990:                }
                   1991: 	   }
1.29      www      1992:        }
1.52      www      1993:     }
                   1994:    
                   1995: #
                   1996: # Rest of the restrictions depend on selected course
                   1997: #
                   1998: 
                   1999:     unless ($ENV{'request.course.id'}) {
                   2000:        return '1';
                   2001:     }
1.29      www      2002: 
1.52      www      2003: #
                   2004: # Now user is definitely in a course
                   2005: #
1.53      www      2006: 
                   2007: 
                   2008: # Course preferences
                   2009: 
                   2010:    if ($thisallowed=~/C/) {
1.54      www      2011:        my $rolecode=(split(/\./,$ENV{'request.role'}))[0];
1.237     www      2012:        my $unamedom=$ENV{'user.name'}.':'.$ENV{'user.domain'};
1.54      www      2013:        if ($ENV{'course.'.$ENV{'request.course.id'}.'.'.$priv.'.roles.denied'}
1.194     www      2014: 	   =~/$rolecode/) {
1.57      www      2015:            &log($ENV{'user.domain'},$ENV{'user.name'},$ENV{'user.host'},
                   2016:                 'Denied by role: '.$priv.' for '.$uri.' as '.$rolecode.' in '.
1.237     www      2017:                 $ENV{'request.course.id'});
                   2018:            return '';
                   2019:        }
                   2020: 
                   2021:        if ($ENV{'course.'.$ENV{'request.course.id'}.'.'.$priv.'.users.denied'}
                   2022: 	   =~/$unamedom/) {
                   2023:            &log($ENV{'user.domain'},$ENV{'user.name'},$ENV{'user.host'},
                   2024:                 'Denied by user: '.$priv.' for '.$uri.' as '.$unamedom.' in '.
1.54      www      2025:                 $ENV{'request.course.id'});
                   2026:            return '';
                   2027:        }
1.53      www      2028:    }
                   2029: 
                   2030: # Resource preferences
                   2031: 
                   2032:    if ($thisallowed=~/R/) {
1.54      www      2033:        my $rolecode=(split(/\./,$ENV{'request.role'}))[0];
                   2034:        my $filename=$perlvar{'lonDocRoot'}.'/res/'.$uri.'.meta';
                   2035:        if (-e $filename) {
                   2036:            my @content;
                   2037:            {
                   2038: 	     my $fh=Apache::File->new($filename);
                   2039:              @content=<$fh>;
                   2040: 	   }
                   2041:            if (join('',@content)=~
                   2042:                     /\<roledeny[^\>]*\>[^\<]*$rolecode[^\<]*\<\/roledeny\>/) {
1.57      www      2043: 	       &log($ENV{'user.domain'},$ENV{'user.name'},$ENV{'user.host'},
                   2044:                     'Denied by role: '.$priv.' for '.$uri.' as '.$rolecode);
1.54      www      2045:            return '';
                   2046: 
                   2047:            }
                   2048:        }
1.53      www      2049:    }
1.30      www      2050: 
1.246     www      2051: # Restricted by state or randomout?
1.30      www      2052: 
1.52      www      2053:    if ($thisallowed=~/X/) {
1.247     www      2054:       if ($ENV{'acc.randomout'}) {
1.249     www      2055:          my $symb=&symbread($uri,1);
1.248     www      2056:          if (($symb) && ($ENV{'acc.randomout'}=~/\&$symb\&/)) { 
                   2057:             return ''; 
                   2058:          }
1.247     www      2059:       }
                   2060:       if (&condval($statecond)) {
1.52      www      2061: 	 return '2';
                   2062:       } else {
                   2063:          return '';
                   2064:       }
                   2065:    }
1.30      www      2066: 
1.52      www      2067:    return 'F';
1.232     www      2068: }
                   2069: 
                   2070: # --------------------------------------------------- Is a resource on the map?
                   2071: 
                   2072: sub is_on_map {
                   2073:     my $uri=&declutter(shift);
                   2074:     my @uriparts=split(/\//,$uri);
                   2075:     my $filename=$uriparts[$#uriparts];
                   2076:     my $pathname=$uri;
1.289     bowersj2 2077:     $pathname=~s|/\Q$filename\E$||;
                   2078:     #Trying to find the conditional for the file
1.232     www      2079:     my $match=($ENV{'acc.res.'.$ENV{'request.course.id'}.'.'.$pathname}=~
1.289     bowersj2 2080: 	       /\&\Q$filename\E\:([\d\|]+)\&/);
1.232     www      2081:     if ($match) {
1.289     bowersj2 2082: 	return (1,$1);
                   2083:     } else {
                   2084: 	return (0,0);
                   2085:     }
1.12      www      2086: }
                   2087: 
                   2088: # ----------------------------------------------------------------- Define Role
                   2089: 
                   2090: sub definerole {
                   2091:   if (allowed('mcr','/')) {
                   2092:     my ($rolename,$sysrole,$domrole,$courole)=@_;
1.191     harris41 2093:     foreach (split('/',$sysrole)) {
1.21      www      2094: 	my ($crole,$cqual)=split(/\&/,$_);
                   2095:         if ($pr{'cr:s'}!~/$crole/) { return "refused:s:$crole"; }
                   2096:         if ($pr{'cr:s'}=~/$crole\&/) {
                   2097: 	    if ($pr{'cr:s'}!~/$crole\&\w*$cqual/) { 
                   2098:                return "refused:s:$crole&$cqual"; 
                   2099:             }
                   2100:         }
1.191     harris41 2101:     }
                   2102:     foreach (split('/',$domrole)) {
1.21      www      2103: 	my ($crole,$cqual)=split(/\&/,$_);
                   2104:         if ($pr{'cr:d'}!~/$crole/) { return "refused:d:$crole"; }
                   2105:         if ($pr{'cr:d'}=~/$crole\&/) {
                   2106: 	    if ($pr{'cr:d'}!~/$crole\&\w*$cqual/) { 
                   2107:                return "refused:d:$crole&$cqual"; 
                   2108:             }
                   2109:         }
1.191     harris41 2110:     }
                   2111:     foreach (split('/',$courole)) {
1.21      www      2112: 	my ($crole,$cqual)=split(/\&/,$_);
                   2113:         if ($pr{'cr:c'}!~/$crole/) { return "refused:c:$crole"; }
                   2114:         if ($pr{'cr:c'}=~/$crole\&/) {
                   2115: 	    if ($pr{'cr:c'}!~/$crole\&\w*$cqual/) { 
                   2116:                return "refused:c:$crole&$cqual"; 
                   2117:             }
                   2118:         }
1.191     harris41 2119:     }
1.12      www      2120:     my $command="encrypt:rolesput:$ENV{'user.domain'}:$ENV{'user.name'}:".
                   2121:                 "$ENV{'user.domain'}:$ENV{'user.name'}:".
1.21      www      2122: 	        "rolesdef_$rolename=".
                   2123:                 escape($sysrole.'_'.$domrole.'_'.$courole);
1.12      www      2124:     return reply($command,$ENV{'user.home'});
                   2125:   } else {
                   2126:     return 'refused';
                   2127:   }
1.105     harris41 2128: }
                   2129: 
                   2130: # ---------------- Make a metadata query against the network of library servers
                   2131: 
                   2132: sub metadata_query {
1.244     matthew  2133:     my ($query,$custom,$customshow,$server_array)=@_;
1.120     harris41 2134:     my %rhash;
1.244     matthew  2135:     my @server_list = (defined($server_array) ? @$server_array
                   2136:                                               : keys(%libserv) );
                   2137:     for my $server (@server_list) {
1.118     harris41 2138: 	unless ($custom or $customshow) {
                   2139: 	    my $reply=&reply("querysend:".&escape($query),$server);
                   2140: 	    $rhash{$server}=$reply;
                   2141: 	}
                   2142: 	else {
                   2143: 	    my $reply=&reply("querysend:".&escape($query).':'.
                   2144: 			     &escape($custom).':'.&escape($customshow),
                   2145: 			     $server);
                   2146: 	    $rhash{$server}=$reply;
                   2147: 	}
1.112     harris41 2148:     }
1.118     harris41 2149:     return \%rhash;
1.240     www      2150: }
                   2151: 
                   2152: # ----------------------------------------- Send log queries and wait for reply
                   2153: 
                   2154: sub log_query {
                   2155:     my ($uname,$udom,$query,%filters)=@_;
                   2156:     my $uhome=&homeserver($uname,$udom);
                   2157:     if ($uhome eq 'no_host') { return 'error: no_host'; }
                   2158:     my $uhost=$hostname{$uhome};
1.241     www      2159:     my $command=&escape(join(':',map{$_.'='.$filters{$_}} keys %filters));
1.240     www      2160:     my $queryid=&reply("querysend:".$query.':'.$udom.':'.$uname.':'.$command,
                   2161:                        $uhome);
                   2162:     unless ($queryid=~/^$uhost\_/) { return 'error: '.$queryid; }
1.242     www      2163:     return get_query_reply($queryid);
                   2164: }
                   2165: 
                   2166: sub get_query_reply {
                   2167:     my $queryid=shift;
1.240     www      2168:     my $replyfile=$perlvar{'lonDaemons'}.'/tmp/'.$queryid;
                   2169:     my $reply='';
                   2170:     for (1..100) {
                   2171: 	sleep 2;
                   2172:         if (-e $replyfile.'.end') {
                   2173: 	    if (my $fh=Apache::File->new($replyfile)) {
                   2174:                $reply.=<$fh>;
                   2175:                $fh->close;
                   2176: 	   } else { return 'error: reply_file_error'; }
1.242     www      2177:            return &unescape($reply);
                   2178: 	}
1.240     www      2179:     }
1.242     www      2180:     return 'timeout:'.$queryid;
1.240     www      2181: }
                   2182: 
                   2183: sub courselog_query {
1.241     www      2184: #
                   2185: # possible filters:
                   2186: # url: url or symb
                   2187: # username
                   2188: # domain
                   2189: # action: view, submit, grade
                   2190: # start: timestamp
                   2191: # end: timestamp
                   2192: #
1.240     www      2193:     my (%filters)=@_;
                   2194:     unless ($ENV{'request.course.id'}) { return 'no_course'; }
1.241     www      2195:     if ($filters{'url'}) {
                   2196: 	$filters{'url'}=&symbclean(&declutter($filters{'url'}));
                   2197:         $filters{'url'}=~s/\.(\w+)$/(\\.\\d+)*\\.$1/;
                   2198:         $filters{'url'}=~s/\.(\w+)\_\_\_/(\\.\\d+)*\\.$1/;
                   2199:     }
1.240     www      2200:     my $cname=$ENV{'course.'.$ENV{'request.course.id'}.'.num'};
                   2201:     my $cdom=$ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
                   2202:     return &log_query($cname,$cdom,'courselog',%filters);
                   2203: }
                   2204: 
                   2205: sub userlog_query {
                   2206:     my ($uname,$udom,%filters)=@_;
                   2207:     return &log_query($uname,$udom,'userlog',%filters);
1.12      www      2208: }
                   2209: 
                   2210: # ------------------------------------------------------------------ Plain Text
                   2211: 
                   2212: sub plaintext {
1.22      www      2213:     my $short=shift;
                   2214:     return $prp{$short};
1.12      www      2215: }
                   2216: 
                   2217: # ----------------------------------------------------------------- Assign Role
                   2218: 
                   2219: sub assignrole {
1.21      www      2220:     my ($udom,$uname,$url,$role,$end,$start)=@_;
                   2221:     my $mrole;
                   2222:     if ($role =~ /^cr\//) {
1.104     www      2223: 	unless (&allowed('ccr',$url)) {
                   2224:            &logthis('Refused custom assignrole: '.
                   2225:              $udom.' '.$uname.' '.$url.' '.$role.' '.$end.' '.$start.' by '.
                   2226: 		    $ENV{'user.name'}.' at '.$ENV{'user.domain'});
                   2227:            return 'refused'; 
                   2228:         }
1.21      www      2229:         $mrole='cr';
                   2230:     } else {
1.82      www      2231:         my $cwosec=$url;
1.83      www      2232:         $cwosec=~s/^\/(\w+)\/(\w+)\/.*/$1\/$2/;
1.104     www      2233:         unless (&allowed('c'.$role,$cwosec)) { 
                   2234:            &logthis('Refused assignrole: '.
                   2235:              $udom.' '.$uname.' '.$url.' '.$role.' '.$end.' '.$start.' by '.
                   2236: 		    $ENV{'user.name'}.' at '.$ENV{'user.domain'});
                   2237:            return 'refused'; 
                   2238:         }
1.21      www      2239:         $mrole=$role;
                   2240:     }
                   2241:     my $command="encrypt:rolesput:$ENV{'user.domain'}:$ENV{'user.name'}:".
                   2242:                 "$udom:$uname:$url".'_'."$mrole=$role";
1.81      www      2243:     if ($end) { $command.='_'.$end; }
1.21      www      2244:     if ($start) {
                   2245: 	if ($end) { 
1.81      www      2246:            $command.='_'.$start; 
1.21      www      2247:         } else {
1.81      www      2248:            $command.='_0_'.$start;
1.21      www      2249:         }
                   2250:     }
                   2251:     return &reply($command,&homeserver($uname,$udom));
1.169     harris41 2252: }
                   2253: 
                   2254: # -------------------------------------------------- Modify user authentication
1.197     www      2255: # Overrides without validation
                   2256: 
1.169     harris41 2257: sub modifyuserauth {
                   2258:     my ($udom,$uname,$umode,$upass)=@_;
                   2259:     my $uhome=&homeserver($uname,$udom);
1.197     www      2260:     unless (&allowed('mau',$udom)) { return 'refused'; }
                   2261:     &logthis('Call to modify user authentication '.$udom.', '.$uname.', '.
1.272     matthew  2262:              $umode.' by '.$ENV{'user.name'}.' at '.$ENV{'user.domain'}.
                   2263:              ' in domain '.$ENV{'request.role.domain'});  
1.169     harris41 2264:     my $reply=&reply('encrypt:changeuserauth:'.$udom.':'.$uname.':'.$umode.':'.
                   2265: 		     &escape($upass),$uhome);
1.197     www      2266:     &log($ENV{'user.domain'},$ENV{'user.name'},$ENV{'user.home'},
                   2267:         'Authentication changed for '.$udom.', '.$uname.', '.$umode.
                   2268:          '(Remote '.$ENV{'REMOTE_ADDR'}.'): '.$reply);
                   2269:     &log($udom,,$uname,$uhome,
                   2270:         'Authentication changed by '.$ENV{'user.domain'}.', '.
                   2271:                                      $ENV{'user.name'}.', '.$umode.
                   2272:          '(Remote '.$ENV{'REMOTE_ADDR'}.'): '.$reply);
1.169     harris41 2273:     unless ($reply eq 'ok') {
1.197     www      2274:         &logthis('Authentication mode error: '.$reply);
1.169     harris41 2275: 	return 'error: '.$reply;
                   2276:     }   
1.170     harris41 2277:     return 'ok';
1.80      www      2278: }
                   2279: 
1.81      www      2280: # --------------------------------------------------------------- Modify a user
1.80      www      2281: 
1.81      www      2282: sub modifyuser {
1.206     matthew  2283:     my ($udom,    $uname, $uid,
                   2284:         $umode,   $upass, $first,
                   2285:         $middle,  $last,  $gene,
                   2286:         $forceid, $desiredhome)=@_;
1.198     www      2287:     $udom=~s/\W//g;
                   2288:     $uname=~s/\W//g;
1.81      www      2289:     &logthis('Call to modify user '.$udom.', '.$uname.', '.$uid.', '.
1.80      www      2290:              $umode.', '.$first.', '.$middle.', '.
1.206     matthew  2291: 	     $last.', '.$gene.'(forceid: '.$forceid.')'.
                   2292:              (defined($desiredhome) ? ' desiredhome = '.$desiredhome :
                   2293:                                      ' desiredhome not specified'). 
1.272     matthew  2294:              ' by '.$ENV{'user.name'}.' at '.$ENV{'user.domain'}.
                   2295:              ' in domain '.$ENV{'request.role.domain'});
1.230     stredwic 2296:     my $uhome=&homeserver($uname,$udom,'true');
1.80      www      2297: # ----------------------------------------------------------------- Create User
1.81      www      2298:     if (($uhome eq 'no_host') && ($umode) && ($upass)) {
1.80      www      2299:         my $unhome='';
1.209     matthew  2300:         if (defined($desiredhome) && $hostdom{$desiredhome} eq $udom) { 
                   2301:             $unhome = $desiredhome;
                   2302: 	} elsif($ENV{'course.'.$ENV{'request.course.id'}.'.domain'} eq $udom) {
1.80      www      2303: 	    $unhome=$ENV{'course.'.$ENV{'request.course.id'}.'.home'};
1.209     matthew  2304:         } else { # load balancing routine for determining $unhome
1.80      www      2305:             my $tryserver;
1.81      www      2306:             my $loadm=10000000;
1.80      www      2307:             foreach $tryserver (keys %libserv) {
                   2308: 	       if ($hostdom{$tryserver} eq $udom) {
                   2309:                   my $answer=reply('load',$tryserver);
                   2310:                   if (($answer=~/\d+/) && ($answer<$loadm)) {
                   2311: 		      $loadm=$answer;
                   2312:                       $unhome=$tryserver;
                   2313:                   }
                   2314: 	       }
                   2315: 	    }
                   2316:         }
                   2317:         if (($unhome eq '') || ($unhome eq 'no_host')) {
1.206     matthew  2318: 	    return 'error: unable to find a home server for '.$uname.
                   2319:                    ' in domain '.$udom;
1.80      www      2320:         }
                   2321:         my $reply=&reply('encrypt:makeuser:'.$udom.':'.$uname.':'.$umode.':'.
                   2322:                          &escape($upass),$unhome);
                   2323: 	unless ($reply eq 'ok') {
                   2324:             return 'error: '.$reply;
                   2325:         }   
1.230     stredwic 2326:         $uhome=&homeserver($uname,$udom,'true');
1.80      www      2327:         if (($uhome eq '') || ($uhome eq 'no_host') || ($uhome ne $unhome)) {
                   2328: 	    return 'error: verify home';
                   2329:         }
1.209     matthew  2330:     }   # End of creation of new user
1.80      www      2331: # ---------------------------------------------------------------------- Add ID
                   2332:     if ($uid) {
                   2333:        $uid=~tr/A-Z/a-z/;
                   2334:        my %uidhash=&idrget($udom,$uname);
1.196     www      2335:        if (($uidhash{$uname}) && ($uidhash{$uname}!~/error\:/) 
                   2336:          && (!$forceid)) {
1.80      www      2337: 	  unless ($uid eq $uidhash{$uname}) {
                   2338: 	      return 'error: mismatch '.$uidhash{$uname}.' versus '.$uid;
                   2339:           }
                   2340:        } else {
                   2341: 	  &idput($udom,($uname => $uid));
                   2342:        }
                   2343:     }
                   2344: # -------------------------------------------------------------- Add names, etc
1.134     albertel 2345:     my %names=&get('environment',
                   2346: 		   ['firstname','middlename','lastname','generation'],
                   2347: 		   $udom,$uname);
1.207     albertel 2348:     if ($names{'firstname'} =~ m/^error:.*/) { %names=(); }
1.134     albertel 2349:     if ($first)  { $names{'firstname'}  = $first; }
                   2350:     if ($middle) { $names{'middlename'} = $middle; }
                   2351:     if ($last)   { $names{'lastname'}   = $last; }
                   2352:     if ($gene)   { $names{'generation'} = $gene; }
                   2353:     my $reply = &put('environment', \%names, $udom,$uname);
                   2354:     if ($reply ne 'ok') { return 'error: '.$reply; }
1.81      www      2355:     &logthis('Success modifying user '.$udom.', '.$uname.', '.$uid.', '.
1.80      www      2356:              $umode.', '.$first.', '.$middle.', '.
                   2357: 	     $last.', '.$gene.' by '.
                   2358:              $ENV{'user.name'}.' at '.$ENV{'user.domain'});
1.134     albertel 2359:     return 'ok';
1.80      www      2360: }
                   2361: 
1.81      www      2362: # -------------------------------------------------------------- Modify student
1.80      www      2363: 
1.81      www      2364: sub modifystudent {
                   2365:     my ($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene,$usec,
1.209     matthew  2366:         $end,$start,$forceid,$desiredhome)=@_;
1.81      www      2367:     my $cid='';
                   2368:     unless ($cid=$ENV{'request.course.id'}) {
1.80      www      2369: 	return 'not_in_class';
                   2370:     }
                   2371: # --------------------------------------------------------------- Make the user
1.81      www      2372:     my $reply=&modifyuser
1.209     matthew  2373: 	($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene,$forceid,
                   2374:          $desiredhome);
1.80      www      2375:     unless ($reply eq 'ok') { return $reply; }
1.297     matthew  2376:     # This will cause &modify_student_enrollment to get the uid from the
                   2377:     # students environment
                   2378:     $uid = undef if (!$forceid);
                   2379:     $reply = &modify_student_enrollment($udom,$uname,$uid,$first,$middle,
                   2380:                                         $last,$gene,$usec,$end,$start);
                   2381:     return $reply;
                   2382: }
                   2383: 
                   2384: sub modify_student_enrollment {
                   2385:     my ($udom,$uname,$uid,$first,$middle,$last,$gene,$usec,$end,$start) = @_;
                   2386:     # Get the course id from the environment
                   2387:     my $cid='';
                   2388:     unless ($cid=$ENV{'request.course.id'}) {
                   2389: 	return 'not_in_class';
                   2390:     }
                   2391:     # Make sure the user exists
1.81      www      2392:     my $uhome=&homeserver($uname,$udom);
                   2393:     if (($uhome eq '') || ($uhome eq 'no_host')) { 
                   2394: 	return 'error: no such user';
                   2395:     }
1.297     matthew  2396:     #
                   2397:     # Get student data if we were not given enough information
                   2398:     if (!defined($first)  || $first  eq '' || 
                   2399:         !defined($last)   || $last   eq '' || 
                   2400:         !defined($uid)    || $uid    eq '' || 
                   2401:         !defined($middle) || $middle eq '' || 
                   2402:         !defined($gene)   || $gene   eq '') {
1.294     matthew  2403:         # They did not supply us with enough data to enroll the student, so
                   2404:         # we need to pick up more information.
1.297     matthew  2405:         my %tmp = &get('environment',
1.294     matthew  2406:                        ['firstname','middlename','lastname', 'generation','id']
1.297     matthew  2407:                        ,$udom,$uname);
                   2408: 
                   2409:         foreach (keys(%tmp)) {
                   2410:             &logthis("key $_ = ".$tmp{$_});
                   2411:         }
1.294     matthew  2412:         $first  = $tmp{'firstname'}  if (!defined($first)  || $first  eq '');
                   2413:         $middle = $tmp{'middlename'} if (!defined($middle) || $middle eq '');
                   2414:         $last   = $tmp{'lastname'}   if (!defined($last)   || $last eq '');
1.297     matthew  2415:         $gene   = $tmp{'generation'} if (!defined($gene)   || $gene eq '');
1.294     matthew  2416:         $uid    = $tmp{'id'}         if (!defined($uid)    || $uid  eq '');
                   2417:     }
                   2418:     my $fullname = &Apache::loncoursedata::ProcessFullName($last,$gene,
                   2419:                                                            $first,$middle);
1.297     matthew  2420:     my $reply=critical('put:'.$ENV{'course.'.$cid.'.domain'}.':'.
1.81      www      2421: 	              $ENV{'course.'.$cid.'.num'}.':classlist:'.
                   2422:                       &escape($uname.':'.$udom).'='.
1.294     matthew  2423:                       &escape(join(':',$end,$start,$uid,$usec,$fullname)),
1.81      www      2424: 	              $ENV{'course.'.$cid.'.home'});
                   2425:     unless (($reply eq 'ok') || ($reply eq 'delayed')) {
                   2426: 	return 'error: '.$reply;
                   2427:     }
1.297     matthew  2428:     # Add student role to user
1.83      www      2429:     my $uurl='/'.$cid;
1.81      www      2430:     $uurl=~s/\_/\//g;
                   2431:     if ($usec) {
                   2432: 	$uurl.='/'.$usec;
                   2433:     }
                   2434:     return &assignrole($udom,$uname,$uurl,'st',$end,$start);
1.21      www      2435: }
                   2436: 
1.84      www      2437: # ------------------------------------------------- Write to course preferences
                   2438: 
                   2439: sub writecoursepref {
                   2440:     my ($courseid,%prefs)=@_;
                   2441:     $courseid=~s/^\///;
                   2442:     $courseid=~s/\_/\//g;
                   2443:     my ($cdomain,$cnum)=split(/\//,$courseid);
                   2444:     my $chome=homeserver($cnum,$cdomain);
                   2445:     if (($chome eq '') || ($chome eq 'no_host')) { 
                   2446: 	return 'error: no such course';
                   2447:     }
                   2448:     my $cstring='';
1.191     harris41 2449:     foreach (keys %prefs) {
1.84      www      2450: 	$cstring.=escape($_).'='.escape($prefs{$_}).'&';
1.191     harris41 2451:     }
1.84      www      2452:     $cstring=~s/\&$//;
                   2453:     return reply('put:'.$cdomain.':'.$cnum.':environment:'.$cstring,$chome);
                   2454: }
                   2455: 
                   2456: # ---------------------------------------------------------- Make/modify course
                   2457: 
                   2458: sub createcourse {
1.271     www      2459:     my ($udom,$description,$url,$course_server,$nonstandard)=@_;
1.84      www      2460:     $url=&declutter($url);
                   2461:     my $cid='';
1.264     matthew  2462:     unless (&allowed('ccc',$udom)) {
1.84      www      2463:         return 'refused';
                   2464:     }
                   2465: # ------------------------------------------------------------------- Create ID
                   2466:    my $uname=substr($$.time,0,5).unpack("H8",pack("I32",time)).
                   2467:        unpack("H2",pack("I32",int(rand(255)))).$perlvar{'lonHostID'};
                   2468: # ----------------------------------------------- Make sure that does not exist
1.230     stredwic 2469:    my $uhome=&homeserver($uname,$udom,'true');
1.84      www      2470:    unless (($uhome eq '') || ($uhome eq 'no_host')) {
                   2471:        $uname=substr($$.time,0,5).unpack("H8",pack("I32",time)).
                   2472:         unpack("H2",pack("I32",int(rand(255)))).$perlvar{'lonHostID'};
1.230     stredwic 2473:        $uhome=&homeserver($uname,$udom,'true');       
1.84      www      2474:        unless (($uhome eq '') || ($uhome eq 'no_host')) {
                   2475:            return 'error: unable to generate unique course-ID';
                   2476:        } 
                   2477:    }
1.264     matthew  2478: # ------------------------------------------------ Check supplied server name
                   2479:     $course_server = $ENV{'user.homeserver'} if (! defined($course_server));
                   2480:     if (! exists($libserv{$course_server})) {
                   2481:         return 'error:bad server name '.$course_server;
                   2482:     }
1.84      www      2483: # ------------------------------------------------------------- Make the course
                   2484:     my $reply=&reply('encrypt:makeuser:'.$udom.':'.$uname.':none::',
1.264     matthew  2485:                       $course_server);
1.84      www      2486:     unless ($reply eq 'ok') { return 'error: '.$reply; }
1.230     stredwic 2487:     $uhome=&homeserver($uname,$udom,'true');
1.84      www      2488:     if (($uhome eq '') || ($uhome eq 'no_host')) { 
                   2489: 	return 'error: no such course';
                   2490:     }
1.271     www      2491: # ----------------------------------------------------------------- Course made
                   2492:     my $topurl=$url;
                   2493:     unless ($nonstandard) {
                   2494: # ------------------------------------------ For standard courses, make top url
                   2495:         my $mapurl=&clutter($url);
1.278     www      2496:         if ($mapurl eq '/res/') { $mapurl=''; }
1.271     www      2497:         $ENV{'form.initmap'}=(<<ENDINITMAP);
                   2498: <map>
                   2499: <resource id="1" type="start"></resource>
                   2500: <resource id="2" src="$mapurl"></resource>
                   2501: <resource id="3" type="finish"></resource>
                   2502: <link index="1" from="1" to="2"></link>
                   2503: <link index="2" from="2" to="3"></link>
                   2504: </map>
                   2505: ENDINITMAP
                   2506:         $topurl=&declutter(
                   2507:         &finishuserfileupload($uname,$udom,$uhome,'initmap','default.sequence')
                   2508:                           );
                   2509:     }
                   2510: # ----------------------------------------------------------- Write preferences
1.84      www      2511:     &writecoursepref($udom.'_'.$uname,
                   2512:                      ('description' => $description,
1.271     www      2513:                       'url'         => $topurl));
1.84      www      2514:     return '/'.$udom.'/'.$uname;
                   2515: }
                   2516: 
1.21      www      2517: # ---------------------------------------------------------- Assign Custom Role
                   2518: 
                   2519: sub assigncustomrole {
                   2520:     my ($udom,$uname,$url,$rdom,$rnam,$rolename,$end,$start)=@_;
                   2521:     return &assignrole($udom,$uname,$url,'cr/'.$rdom.'/'.$rnam.'/'.$rolename,
                   2522:                        $end,$start);
                   2523: }
                   2524: 
                   2525: # ----------------------------------------------------------------- Revoke Role
                   2526: 
                   2527: sub revokerole {
                   2528:     my ($udom,$uname,$url,$role)=@_;
                   2529:     my $now=time;
                   2530:     return &assignrole($udom,$uname,$url,$role,$now);
                   2531: }
                   2532: 
                   2533: # ---------------------------------------------------------- Revoke Custom Role
                   2534: 
                   2535: sub revokecustomrole {
                   2536:     my ($udom,$uname,$url,$rdom,$rnam,$rolename)=@_;
                   2537:     my $now=time;
                   2538:     return &assigncustomrole($udom,$uname,$url,$rdom,$rnam,$rolename,$now);
1.17      www      2539: }
                   2540: 
                   2541: # ------------------------------------------------------------ Directory lister
                   2542: 
                   2543: sub dirlist {
1.253     stredwic 2544:     my ($uri,$userdomain,$username,$alternateDirectoryRoot)=@_;
                   2545: 
1.18      www      2546:     $uri=~s/^\///;
                   2547:     $uri=~s/\/$//;
1.253     stredwic 2548:     my ($udom, $uname);
                   2549:     (undef,$udom,$uname)=split(/\//,$uri);
                   2550:     if(defined($userdomain)) {
                   2551:         $udom = $userdomain;
                   2552:     }
                   2553:     if(defined($username)) {
                   2554:         $uname = $username;
                   2555:     }
                   2556: 
                   2557:     my $dirRoot = $perlvar{'lonDocRoot'};
                   2558:     if(defined($alternateDirectoryRoot)) {
                   2559:         $dirRoot = $alternateDirectoryRoot;
                   2560:         $dirRoot =~ s/\/$//;
                   2561:     }
                   2562: 
                   2563:     if($udom) {
                   2564:         if($uname) {
                   2565:             my $listing=reply('ls:'.$dirRoot.'/'.$uri,
                   2566:                               homeserver($uname,$udom));
                   2567:             return split(/:/,$listing);
                   2568:         } elsif(!defined($alternateDirectoryRoot)) {
                   2569:             my $tryserver;
                   2570:             my %allusers=();
                   2571:             foreach $tryserver (keys %libserv) {
                   2572:                 if($hostdom{$tryserver} eq $udom) {
                   2573:                     my $listing=reply('ls:'.$perlvar{'lonDocRoot'}.'/res/'.
                   2574:                                       $udom, $tryserver);
                   2575:                     if (($listing ne 'no_such_dir') && ($listing ne 'empty')
                   2576:                         && ($listing ne 'con_lost')) {
                   2577:                         foreach (split(/:/,$listing)) {
                   2578:                             my ($entry,@stat)=split(/&/,$_);
                   2579:                             $allusers{$entry}=1;
                   2580:                         }
                   2581:                     }
1.191     harris41 2582:                 }
1.253     stredwic 2583:             }
                   2584:             my $alluserstr='';
                   2585:             foreach (sort keys %allusers) {
                   2586:                 $alluserstr.=$_.'&user:';
                   2587:             }
                   2588:             $alluserstr=~s/:$//;
                   2589:             return split(/:/,$alluserstr);
                   2590:         } else {
                   2591:             my @emptyResults = ();
                   2592:             push(@emptyResults, 'missing user name');
                   2593:             return split(':',@emptyResults);
                   2594:         }
                   2595:     } elsif(!defined($alternateDirectoryRoot)) {
                   2596:         my $tryserver;
                   2597:         my %alldom=();
                   2598:         foreach $tryserver (keys %libserv) {
                   2599:             $alldom{$hostdom{$tryserver}}=1;
                   2600:         }
                   2601:         my $alldomstr='';
                   2602:         foreach (sort keys %alldom) {
                   2603:             $alldomstr.=$perlvar{'lonDocRoot'}.'/res/'.$_.'&domain:';
                   2604:         }
                   2605:         $alldomstr=~s/:$//;
                   2606:         return split(/:/,$alldomstr);       
                   2607:     } else {
                   2608:         my @emptyResults = ();
                   2609:         push(@emptyResults, 'missing domain');
                   2610:         return split(':',@emptyResults);
1.275     stredwic 2611:     }
                   2612: }
                   2613: 
                   2614: # --------------------------------------------- GetFileTimestamp
                   2615: # This function utilizes dirlist and returns the date stamp for
                   2616: # when it was last modified.  It will also return an error of -1
                   2617: # if an error occurs
                   2618: 
                   2619: sub GetFileTimestamp {
                   2620:     my ($studentDomain,$studentName,$filename,$root)=@_;
                   2621:     $studentDomain=~s/\W//g;
                   2622:     $studentName=~s/\W//g;
                   2623:     my $subdir=$studentName.'__';
                   2624:     $subdir =~ s/(.)(.)(.).*/$1\/$2\/$3/;
                   2625:     my $proname="$studentDomain/$subdir/$studentName";
                   2626:     $proname .= '/'.$filename;
                   2627:     my @dir = &Apache::lonnet::dirlist($proname, $studentDomain, $studentName,
                   2628:                                        $root);
                   2629:     my $fileStat = $dir[0];
                   2630:     my @stats = split('&', $fileStat);
                   2631:     if($stats[0] ne 'empty' && $stats[0] ne 'no_such_dir') {
                   2632:         return $stats[9];
                   2633:     } else {
                   2634:         return -1;
1.253     stredwic 2635:     }
1.26      www      2636: }
                   2637: 
                   2638: # -------------------------------------------------------- Value of a Condition
                   2639: 
1.40      www      2640: sub directcondval {
                   2641:     my $number=shift;
                   2642:     if ($ENV{'user.state.'.$ENV{'request.course.id'}}) {
                   2643:        return substr($ENV{'user.state.'.$ENV{'request.course.id'}},$number,1);
                   2644:     } else {
                   2645:        return 2;
                   2646:     }
                   2647: }
                   2648: 
1.26      www      2649: sub condval {
                   2650:     my $condidx=shift;
                   2651:     my $result=0;
1.54      www      2652:     my $allpathcond='';
1.191     harris41 2653:     foreach (split(/\|/,$condidx)) {
1.54      www      2654:        if (defined($ENV{'acc.cond.'.$ENV{'request.course.id'}.'.'.$_})) {
                   2655: 	   $allpathcond.=
                   2656:                '('.$ENV{'acc.cond.'.$ENV{'request.course.id'}.'.'.$_}.')|';
                   2657:        }
1.191     harris41 2658:     }
1.54      www      2659:     $allpathcond=~s/\|$//;
1.33      www      2660:     if ($ENV{'request.course.id'}) {
1.54      www      2661:        if ($allpathcond) {
1.26      www      2662:           my $operand='|';
                   2663: 	  my @stack;
1.191     harris41 2664:            foreach ($allpathcond=~/(\d+|\(|\)|\&|\|)/g) {
1.26      www      2665:               if ($_ eq '(') {
                   2666:                  push @stack,($operand,$result)
                   2667:               } elsif ($_ eq ')') {
                   2668:                   my $before=pop @stack;
                   2669: 		  if (pop @stack eq '&') {
                   2670: 		      $result=$result>$before?$before:$result;
                   2671:                   } else {
                   2672:                       $result=$result>$before?$result:$before;
                   2673:                   }
                   2674:               } elsif (($_ eq '&') || ($_ eq '|')) {
                   2675:                   $operand=$_;
                   2676:               } else {
1.40      www      2677:                   my $new=directcondval($_);
1.26      www      2678:                   if ($operand eq '&') {
                   2679:                      $result=$result>$new?$new:$result;
                   2680:                   } else {
                   2681:                      $result=$result>$new?$result:$new;
1.191     harris41 2682:                   }
1.26      www      2683:               }
1.191     harris41 2684:           }
1.26      www      2685:        }
                   2686:     }
                   2687:     return $result;
1.279     www      2688: }
                   2689: 
                   2690: # ---------------------------------------------------- Devalidate courseresdata
                   2691: 
                   2692: sub devalidatecourseresdata {
                   2693:     my ($coursenum,$coursedomain)=@_;
                   2694:     my $hashid=$coursenum.':'.$coursedomain;
                   2695:     delete $courseresdatacache{$hashid.'.time'};
1.28      www      2696: }
                   2697: 
1.200     www      2698: # --------------------------------------------------- Course Resourcedata Query
                   2699: 
                   2700: sub courseresdata {
                   2701:     my ($coursenum,$coursedomain,@which)=@_;
                   2702:     my $coursehom=&homeserver($coursenum,$coursedomain);
                   2703:     my $hashid=$coursenum.':'.$coursedomain;
1.250     albertel 2704:     my $dodump=0;
                   2705:     if (!defined($courseresdatacache{$hashid.'.time'})) {
                   2706: 	$dodump=1;
                   2707:     } else {
                   2708: 	if (time-$courseresdatacache{$hashid.'.time'}>300) { $dodump=1; }
                   2709:     }
                   2710:     if ($dodump) {
1.251     albertel 2711: 	my %dumpreply=&dump('resourcedata',$coursedomain,$coursenum);
                   2712: 	my ($tmp) = keys(%dumpreply);
                   2713: 	if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
                   2714: 	    $courseresdatacache{$hashid.'.time'}=time;
                   2715: 	    $courseresdatacache{$hashid}=\%dumpreply;
1.250     albertel 2716: 	}
                   2717:     }
1.251     albertel 2718:     foreach my $item (@which) {
1.287     albertel 2719: 	if (defined($courseresdatacache{$hashid}->{$item})) {
1.251     albertel 2720: 	    return $courseresdatacache{$hashid}->{$item};
                   2721: 	}
1.250     albertel 2722:     }
1.291     albertel 2723:     return undef;
1.200     www      2724: }
                   2725: 
1.28      www      2726: # --------------------------------------------------------- Value of a Variable
                   2727: 
1.58      www      2728: sub EXT {
1.282     albertel 2729:     my ($varname,$symbparm,$udom,$uname,)=@_;
1.218     albertel 2730: 
1.68      www      2731:     unless ($varname) { return ''; }
1.218     albertel 2732: 
                   2733:     #get real user name/domain, courseid and symb
                   2734:     my $courseid;
                   2735:     if (!($uname && $udom)) {
                   2736:       (my $cursymb,$courseid,$udom,$uname)=&Apache::lonxml::whichuser();
                   2737:       if (!$symbparm) {	$symbparm=$cursymb; }
                   2738:     } else {
                   2739: 	$courseid=$ENV{'request.course.id'};
                   2740:     }
                   2741: 
1.48      www      2742:     my ($realm,$space,$qualifier,@therest)=split(/\./,$varname);
                   2743:     my $rest;
                   2744:     if ($therest[0]) {
                   2745:        $rest=join('.',@therest);
                   2746:     } else {
                   2747:        $rest='';
                   2748:     }
1.57      www      2749:     my $qualifierrest=$qualifier;
                   2750:     if ($rest) { $qualifierrest.='.'.$rest; }
                   2751:     my $spacequalifierrest=$space;
                   2752:     if ($qualifierrest) { $spacequalifierrest.='.'.$qualifierrest; }
1.28      www      2753:     if ($realm eq 'user') {
1.48      www      2754: # --------------------------------------------------------------- user.resource
                   2755: 	if ($space eq 'resource') {
1.218     albertel 2756: 	    my %restored=&restore(undef,undef,$udom,$uname);
1.57      www      2757:             return $restored{$qualifierrest};
1.48      www      2758: # ----------------------------------------------------------------- user.access
                   2759:         } elsif ($space eq 'access') {
1.218     albertel 2760: 	    # FIXME - not supporting calls for a specific user
1.48      www      2761:             return &allowed($qualifier,$rest);
                   2762: # ------------------------------------------ user.preferences, user.environment
                   2763:         } elsif (($space eq 'preferences') || ($space eq 'environment')) {
1.218     albertel 2764: 	    if (($uname eq $ENV{'user.name'}) &&
                   2765: 		($udom eq $ENV{'user.domain'})) {
                   2766: 		return $ENV{join('.',('environment',$qualifierrest))};
                   2767: 	    } else {
                   2768: 		my %returnhash=&userenvironment($udom,$uname,$qualifierrest);
                   2769: 		return $returnhash{$qualifierrest};
                   2770: 	    }
1.48      www      2771: # ----------------------------------------------------------------- user.course
                   2772:         } elsif ($space eq 'course') {
1.218     albertel 2773: 	    # FIXME - not supporting calls for a specific user
1.48      www      2774:             return $ENV{join('.',('request.course',$qualifier))};
                   2775: # ------------------------------------------------------------------- user.role
                   2776:         } elsif ($space eq 'role') {
1.218     albertel 2777: 	    # FIXME - not supporting calls for a specific user
1.48      www      2778:             my ($role,$where)=split(/\./,$ENV{'request.role'});
                   2779:             if ($qualifier eq 'value') {
                   2780: 		return $role;
                   2781:             } elsif ($qualifier eq 'extent') {
                   2782:                 return $where;
                   2783:             }
                   2784: # ----------------------------------------------------------------- user.domain
                   2785:         } elsif ($space eq 'domain') {
1.218     albertel 2786:             return $udom;
1.48      www      2787: # ------------------------------------------------------------------- user.name
                   2788:         } elsif ($space eq 'name') {
1.218     albertel 2789:             return $uname;
1.48      www      2790: # ---------------------------------------------------- Any other user namespace
1.29      www      2791:         } else {
1.48      www      2792:             my $item=($rest)?$qualifier.'.'.$rest:$qualifier;
1.131     albertel 2793:             my %reply=&get($space,[$item]);
1.48      www      2794:             return $reply{$item};
                   2795:         }
1.236     www      2796:     } elsif ($realm eq 'query') {
                   2797: # ---------------------------------------------- pull stuff out of query string
                   2798:         &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},[$space]);
                   2799: 	return $ENV{'form.'.$space}; 
                   2800:    } elsif ($realm eq 'request') {
1.48      www      2801: # ------------------------------------------------------------- request.browser
                   2802:         if ($space eq 'browser') {
                   2803: 	    return $ENV{'browser.'.$qualifier};
1.57      www      2804: # ------------------------------------------------------------ request.filename
                   2805:         } else {
                   2806:             return $ENV{'request.'.$spacequalifierrest};
1.29      www      2807:         }
1.28      www      2808:     } elsif ($realm eq 'course') {
1.48      www      2809: # ---------------------------------------------------------- course.description
1.218     albertel 2810:         return $ENV{'course.'.$courseid.'.'.$spacequalifierrest};
1.57      www      2811:     } elsif ($realm eq 'resource') {
1.165     www      2812: 
1.218     albertel 2813: 	if ($courseid eq $ENV{'request.course.id'}) {
1.165     www      2814: 
1.218     albertel 2815: 	    #print '<br>'.$space.' - '.$qualifier.' - '.$spacequalifierrest;
1.165     www      2816: 
1.60      www      2817: # ----------------------------------------------------- Cascading lookup scheme
1.218     albertel 2818: 	    if (!$symbparm) { $symbparm=&symbread(); }
                   2819: 	    my $symbp=$symbparm;
                   2820: 	    my $mapp=(split(/\_\_\_/,$symbp))[0];
                   2821: 
                   2822: 	    my $symbparm=$symbp.'.'.$spacequalifierrest;
                   2823: 	    my $mapparm=$mapp.'___(all).'.$spacequalifierrest;
                   2824: 
                   2825: 	    my $section;
                   2826: 	    if (($ENV{'user.name'} eq $uname) &&
                   2827: 		($ENV{'user.domain'} eq $udom)) {
1.255     albertel 2828: 		$section=$ENV{'request.course.sec'};
1.218     albertel 2829: 	    } else {
                   2830: 		$section=&usection($udom,$uname,$courseid);
                   2831: 	    }
                   2832: 
                   2833: 	    my $seclevel=$courseid.'.['.$section.'].'.$spacequalifierrest;
                   2834: 	    my $seclevelr=$courseid.'.['.$section.'].'.$symbparm;
                   2835: 	    my $seclevelm=$courseid.'.['.$section.'].'.$mapparm;
                   2836: 
                   2837: 	    my $courselevel=$courseid.'.'.$spacequalifierrest;
                   2838: 	    my $courselevelr=$courseid.'.'.$symbparm;
                   2839: 	    my $courselevelm=$courseid.'.'.$mapparm;
1.69      www      2840: 
1.60      www      2841: # ----------------------------------------------------------- first, check user
1.218     albertel 2842: 	    my %resourcedata=&get('resourcedata',
                   2843: 				  [$courselevelr,$courselevelm,$courselevel],
                   2844: 				 $udom,$uname);
                   2845: 	    if (($resourcedata{$courselevelr}!~/^error\:/) &&
                   2846: 		($resourcedata{$courselevelr}!~/^con_lost/)) {
                   2847: 
                   2848: 		if ($resourcedata{$courselevelr}) {
                   2849: 		    return $resourcedata{$courselevelr}; }
                   2850: 		if ($resourcedata{$courselevelm}) {
                   2851: 		    return $resourcedata{$courselevelm}; }
                   2852: 		if ($resourcedata{$courselevel}) {
                   2853: 		    return $resourcedata{$courselevel}; }
                   2854: 	    } else {
                   2855: 		if ($resourcedata{$courselevelr}!~/No such file/) {
                   2856: 		    &logthis("<font color=blue>WARNING:".
                   2857: 			     " Trying to get resource data for ".
                   2858: 			     $uname." at ".$udom.": ".
                   2859: 			     $resourcedata{$courselevelr}."</font>");
                   2860: 		}
                   2861: 	    }
1.95      www      2862: 
1.60      www      2863: # -------------------------------------------------------- second, check course
1.96      www      2864: 
1.218     albertel 2865: 	    my $coursereply=&courseresdata($ENV{'course.'.$courseid.'.num'},
                   2866: 					  $ENV{'course.'.$courseid.'.domain'},
                   2867: 					  ($seclevelr,$seclevelm,$seclevel,
                   2868: 					   $courselevelr,$courselevelm,
                   2869: 					   $courselevel));
1.287     albertel 2870: 	    if (defined($coursereply)) { return $coursereply; }
1.200     www      2871: 
1.60      www      2872: # ------------------------------------------------------ third, check map parms
1.218     albertel 2873: 	    my %parmhash=();
                   2874: 	    my $thisparm='';
                   2875: 	    if (tie(%parmhash,'GDBM_File',
                   2876: 		    $ENV{'request.course.fn'}.'_parms.db',
1.256     albertel 2877: 		    &GDBM_READER(),0640)) {
1.218     albertel 2878: 		$thisparm=$parmhash{$symbparm};
                   2879: 		untie(%parmhash);
                   2880: 	    }
                   2881: 	    if ($thisparm) { return $thisparm; }
                   2882: 	}
1.60      www      2883: # --------------------------------------------- last, look in resource metadata
1.71      www      2884: 
1.218     albertel 2885: 	$spacequalifierrest=~s/\./\_/;
1.282     albertel 2886: 	my $filename;
                   2887: 	if (!$symbparm) { $symbparm=&symbread(); }
                   2888: 	if ($symbparm) {
                   2889: 	    $filename=(split(/\_\_\_/,$symbparm))[2];
                   2890: 	} else {
                   2891: 	    $filename=$ENV{'request.filename'};
                   2892: 	}
                   2893: 	my $metadata=&metadata($filename,$spacequalifierrest);
1.288     albertel 2894: 	if (defined($metadata)) { return $metadata; }
1.282     albertel 2895: 	$metadata=&metadata($filename,'parameter_'.$spacequalifierrest);
1.288     albertel 2896: 	if (defined($metadata)) { return $metadata; }
1.142     www      2897: 
1.145     www      2898: # ------------------------------------------------------------------ Cascade up
1.218     albertel 2899: 	unless ($space eq '0') {
                   2900: 	    my ($part,$id)=split(/\_/,$space);
                   2901: 	    if ($id) {
                   2902: 		my $partgeneral=&EXT('resource.'.$part.'.'.$qualifierrest,
                   2903: 				     $symbparm,$udom,$uname);
1.288     albertel 2904: 		if (defined($partgeneral)) { return $partgeneral; }
1.218     albertel 2905: 	    } else {
                   2906: 		my $resourcegeneral=&EXT('resource.0.'.$qualifierrest,
                   2907: 					 $symbparm,$udom,$uname);
1.288     albertel 2908: 		if (defined($resourcegeneral)) { return $resourcegeneral; }
1.218     albertel 2909: 	    }
                   2910: 	}
1.71      www      2911: 
1.48      www      2912: # ---------------------------------------------------- Any other user namespace
                   2913:     } elsif ($realm eq 'environment') {
                   2914: # ----------------------------------------------------------------- environment
1.219     albertel 2915: 	if (($uname eq $ENV{'user.name'})&&($udom eq $ENV{'user.domain'})) {
                   2916: 	    return $ENV{'environment.'.$spacequalifierrest};
                   2917: 	} else {
                   2918: 	    my %returnhash=&userenvironment($udom,$uname,
                   2919: 					    $spacequalifierrest);
                   2920: 	    return $returnhash{$spacequalifierrest};
                   2921: 	}
1.28      www      2922:     } elsif ($realm eq 'system') {
1.48      www      2923: # ----------------------------------------------------------------- system.time
                   2924: 	if ($space eq 'time') {
                   2925: 	    return time;
                   2926:         }
1.28      www      2927:     }
1.48      www      2928:     return '';
1.61      www      2929: }
                   2930: 
1.71      www      2931: # ---------------------------------------------------------------- Get metadata
                   2932: 
                   2933: sub metadata {
1.176     www      2934:     my ($uri,$what,$liburi,$prefix,$depthcount)=@_;
1.78      www      2935: 
1.71      www      2936:     $uri=&declutter($uri);
1.288     albertel 2937:     # if it is a non metadata possible uri return quickly
1.293     matthew  2938:     if (($uri eq '') || (($uri =~ m|^/*adm/|) && ($uri !~ m|^adm/includes|)) ||
                   2939:         ($uri =~ m|/$|) || ($uri =~ m|/.meta$|)) {
1.288     albertel 2940: 	return '';
                   2941:     }
1.73      www      2942:     my $filename=$uri;
                   2943:     $uri=~s/\.meta$//;
1.172     www      2944: #
                   2945: # Is the metadata already cached?
1.177     www      2946: # Look at timestamp of caching
1.172     www      2947: # Everything is cached by the main uri, libraries are never directly cached
                   2948: #
1.277     albertel 2949:     unless (abs($metacache{$uri.':cachedtimestamp'}-time)<600 && !defined($liburi)) {
1.172     www      2950: #
                   2951: # Is this a recursive call for a library?
                   2952: #
1.171     www      2953:         if ($liburi) {
                   2954: 	    $liburi=&declutter($liburi);
                   2955:             $filename=$liburi;
                   2956:         }
1.140     www      2957:         my %metathesekeys=();
1.73      www      2958:         unless ($filename=~/\.meta$/) { $filename.='.meta'; }
                   2959: 	my $metastring=&getfile($perlvar{'lonDocRoot'}.'/res/'.$filename);
1.208     albertel 2960:         my $parser=HTML::LCParser->new(\$metastring);
1.71      www      2961:         my $token;
1.140     www      2962:         undef %metathesekeys;
1.71      www      2963:         while ($token=$parser->get_token) {
                   2964:            if ($token->[0] eq 'S') {
1.135     www      2965: 	     if (defined($token->[2]->{'package'})) {
1.172     www      2966: #
                   2967: # This is a package - get package info
                   2968: #
1.136     www      2969: 	      my $package=$token->[2]->{'package'};
                   2970: 	      my $keyroot='';
1.172     www      2971:               if ($prefix) {
1.276     albertel 2972: 		  $keyroot.=$prefix;
1.172     www      2973:               } else {
                   2974:                 if (defined($token->[2]->{'part'})) { 
                   2975:                    $keyroot.='_'.$token->[2]->{'part'}; 
                   2976: 	        }
1.136     www      2977: 	      }
                   2978:               if (defined($token->[2]->{'id'})) { 
1.165     www      2979:                  $keyroot.='_'.$token->[2]->{'id'}; 
1.136     www      2980: 	      }
                   2981:               if ($metacache{$uri.':packages'}) {
                   2982:                  $metacache{$uri.':packages'}.=','.$package.$keyroot;
                   2983:               } else {
                   2984:                  $metacache{$uri.':packages'}=$package.$keyroot;
                   2985: 	      }
1.191     harris41 2986:               foreach (keys %packagetab) {
1.137     www      2987: 		  if ($_=~/^$package\&/) {
                   2988: 		      my ($pack,$name,$subp)=split(/\&/,$_);
1.139     www      2989:                       my $value=$packagetab{$_};
1.144     www      2990: 		      my $part=$keyroot;
                   2991:                       $part=~s/^\_//;
1.139     www      2992:                       if ($subp eq 'display') {
                   2993: 			  $value.=' [Part: '.$part.']';
                   2994:                       }
                   2995:                       my $unikey='parameter'.$keyroot.'_'.$name;
1.140     www      2996:                       $metathesekeys{$unikey}=1;
1.144     www      2997:                       $metacache{$uri.':'.$unikey.'.part'}=$part;
1.141     www      2998:                       unless 
                   2999:                        (defined($metacache{$uri.':'.$unikey.'.'.$subp})) {
                   3000:                          $metacache{$uri.':'.$unikey.'.'.$subp}=$value;
                   3001: 		      }
1.137     www      3002:                   }
1.191     harris41 3003:               }
1.135     www      3004:              } else {
1.172     www      3005: #
                   3006: # This is not a package - some other kind of start tag
                   3007: # 
1.175     www      3008:               my $entry=$token->[1];
1.176     www      3009:               my $unikey;
                   3010:               if ($entry eq 'import') {
                   3011:                  $unikey='';
                   3012:               } else {
                   3013:                  $unikey=$entry;
                   3014: 	      }
1.172     www      3015:               if ($prefix) {
1.176     www      3016: 		  $unikey.=$prefix;
1.172     www      3017:               } else {
                   3018:                 if (defined($token->[2]->{'part'})) { 
                   3019:                    $unikey.='_'.$token->[2]->{'part'}; 
                   3020: 	        }
1.136     www      3021: 	      }
                   3022:               if (defined($token->[2]->{'id'})) { 
1.165     www      3023:                  $unikey.='_'.$token->[2]->{'id'}; 
1.71      www      3024: 	      }
1.175     www      3025: 
                   3026:              if ($entry eq 'import') {
                   3027: #
                   3028: # Importing a library here
1.176     www      3029: #                
                   3030:                  if ($depthcount<20) {
1.276     albertel 3031: 		     my $location=$parser->get_text('/import');
                   3032: 		     my $dir=$filename;
                   3033: 		     $dir=~s|[^/]*$||;
                   3034: 		     $location=&filelocation($dir,$location);
                   3035: 		     foreach (sort(split(/\,/,&metadata($uri,'keys',
                   3036: 							$location,$unikey,
                   3037: 							$depthcount+1)))) {
1.177     www      3038:                          $metathesekeys{$_}=1;
1.191     harris41 3039: 		     }
1.176     www      3040: 		 }
1.175     www      3041:              } else { 
                   3042: 
1.72      www      3043:               if (defined($token->[2]->{'name'})) { 
1.71      www      3044:                  $unikey.='_'.$token->[2]->{'name'}; 
                   3045: 	      }
1.140     www      3046:               $metathesekeys{$unikey}=1;
1.191     harris41 3047:               foreach (@{$token->[3]}) {
1.71      www      3048: 		  $metacache{$uri.':'.$unikey.'.'.$_}=$token->[2]->{$_};
1.191     harris41 3049:               }
1.78      www      3050:               unless (
1.208     albertel 3051:                  $metacache{$uri.':'.$unikey}=&HTML::Entities::decode($parser->get_text('/'.$entry))
1.78      www      3052: 		      ) { $metacache{$uri.':'.$unikey}=
                   3053: 			      $metacache{$uri.':'.$unikey.'.default'};
                   3054: 		      }
1.172     www      3055: # end of not-a-package not-a-library import
1.175     www      3056: 	   }
1.172     www      3057: # end of not-a-package start tag
                   3058: 	  }
                   3059: # the next is the end of "start tag"
1.140     www      3060: 	 }
1.71      www      3061:        }
1.274     albertel 3062:        $metacache{$uri.':keys'}=join(',',keys %metathesekeys);
1.261     albertel 3063: 	&metadata_generate_part0(\%metathesekeys,\%metacache,$uri);
1.274     albertel 3064:        $metacache{$uri.':allpossiblekeys'}=join(',',keys %metathesekeys);
1.174     www      3065:        $metacache{$uri.':cachedtimestamp'}=time;
1.177     www      3066: # this is the end of "was not already recently cached
1.71      www      3067:     }
                   3068:     return $metacache{$uri.':'.$what};
1.261     albertel 3069: }
                   3070: 
                   3071: sub metadata_generate_part0 {
                   3072:     my ($metadata,$metacache,$uri) = @_;
                   3073:     my %allnames;
                   3074:     foreach my $metakey (sort keys %$metadata) {
                   3075: 	if ($metakey=~/^parameter\_(.*)/) {
                   3076: 	  my $part=$$metacache{$uri.':'.$metakey.'.part'};
                   3077: 	  my $name=$$metacache{$uri.':'.$metakey.'.name'};
                   3078: 	  if (! exists($$metadata{'parameter_0_'.$name})) {
                   3079: 	    $allnames{$name}=$part;
                   3080: 	  }
                   3081: 	}
                   3082:     }
                   3083:     foreach my $name (keys(%allnames)) {
                   3084:       $$metadata{"parameter_0_$name"}=1;
                   3085:       my $key="$uri:parameter_0_$name";
                   3086:       $$metacache{"$key.part"}='0';
                   3087:       $$metacache{"$key.name"}=$name;
                   3088:       $$metacache{"$key.type"}=$$metacache{$uri.':parameter_'.
                   3089: 					   $allnames{$name}.'_'.$name.
                   3090: 					   '.type'};
                   3091:       my $olddis=$$metacache{$uri.':parameter_'.$allnames{$name}.'_'.$name.
                   3092: 			     '.display'};
                   3093:       my $expr='\\[Part: '.$allnames{$name}.'\\]';
                   3094:       $olddis=~s/$expr/\[Part: 0\]/;
                   3095:       $$metacache{"$key.display"}=$olddis;
                   3096:     }
1.71      www      3097: }
                   3098: 
1.31      www      3099: # ------------------------------------------------- Update symbolic store links
                   3100: 
                   3101: sub symblist {
                   3102:     my ($mapname,%newhash)=@_;
                   3103:     $mapname=declutter($mapname);
                   3104:     my %hash;
                   3105:     if (($ENV{'request.course.fn'}) && (%newhash)) {
                   3106:         if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.'_symb.db',
1.256     albertel 3107:                       &GDBM_WRCREAT(),0640)) {
1.191     harris41 3108: 	    foreach (keys %newhash) {
1.211     www      3109:                 $hash{declutter($_)}=$mapname.'___'.$newhash{$_};
1.191     harris41 3110:             }
1.31      www      3111:             if (untie(%hash)) {
                   3112: 		return 'ok';
                   3113:             }
                   3114:         }
                   3115:     }
                   3116:     return 'error';
1.212     www      3117: }
                   3118: 
                   3119: # --------------------------------------------------------------- Verify a symb
                   3120: 
                   3121: sub symbverify {
                   3122:     my ($symb,$thisfn)=@_;
1.213     www      3123:     $thisfn=&declutter($thisfn);
1.215     www      3124: # direct jump to resource in page or to a sequence - will construct own symbs
                   3125:     if ($thisfn=~/\.(page|sequence)$/) { return 1; }
                   3126: # check URL part
1.213     www      3127:     my ($map,$resid,$url)=split(/\_\_\_/,$symb);
                   3128:     unless (&symbclean($url) eq &symbclean($thisfn)) { return 0; }
                   3129: 
1.216     www      3130:     $symb=&symbclean($symb);
1.213     www      3131: 
                   3132:     my %bighash;
                   3133:     my $okay=0;
                   3134:     if (tie(%bighash,'GDBM_File',$ENV{'request.course.fn'}.'.db',
1.256     albertel 3135:                             &GDBM_READER(),0640)) {
1.280     www      3136:         my $ids=$bighash{'ids_'.&clutter($thisfn)};
1.216     www      3137:         unless ($ids) { 
                   3138:            $ids=$bighash{'ids_/'.$thisfn};
                   3139:         }
                   3140:         if ($ids) {
                   3141: # ------------------------------------------------------------------- Has ID(s)
                   3142: 	    foreach (split(/\,/,$ids)) {
                   3143:                my ($mapid,$resid)=split(/\./,$_);
                   3144:                if (
                   3145:   &symbclean(&declutter($bighash{'map_id_'.$mapid}).'___'.$resid.'___'.$thisfn)
                   3146:    eq $symb) { 
                   3147:                   $okay=1; 
                   3148:                }
                   3149: 	   }
                   3150:         }
1.213     www      3151: 	untie(%bighash);
                   3152:     }
                   3153:     return $okay;
1.31      www      3154: }
                   3155: 
1.210     www      3156: # --------------------------------------------------------------- Clean-up symb
                   3157: 
                   3158: sub symbclean {
                   3159:     my $symb=shift;
1.213     www      3160: 
1.210     www      3161: # remove version from map
                   3162:     $symb=~s/\.(\d+)\.(\w+)\_\_\_/\.$2\_\_\_/;
1.215     www      3163: 
1.210     www      3164: # remove version from URL
                   3165:     $symb=~s/\.(\d+)\.(\w+)$/\.$2/;
1.213     www      3166: 
1.210     www      3167:     return $symb;
                   3168: }
                   3169: 
1.31      www      3170: # ------------------------------------------------------ Return symb list entry
                   3171: 
                   3172: sub symbread {
1.249     www      3173:     my ($thisfn,$donotrecurse)=@_;
1.242     www      3174: # no filename provided? try from environment
1.44      www      3175:     unless ($thisfn) {
1.210     www      3176:         if ($ENV{'request.symb'}) { return &symbclean($ENV{'request.symb'}); }
1.44      www      3177: 	$thisfn=$ENV{'request.filename'};
                   3178:     }
1.242     www      3179: # is that filename actually a symb? Verify, clean, and return
                   3180:     if ($thisfn=~/\_\_\_\d+\_\_\_(.*)$/) {
                   3181: 	if (&symbverify($thisfn,$1)) { return &symbclean($thisfn); }
                   3182:     }
1.44      www      3183:     $thisfn=declutter($thisfn);
1.31      www      3184:     my %hash;
1.37      www      3185:     my %bighash;
                   3186:     my $syval='';
1.45      www      3187:     if (($ENV{'request.course.fn'}) && ($thisfn)) {
1.31      www      3188:         if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.'_symb.db',
1.256     albertel 3189:                       &GDBM_READER(),0640)) {
1.31      www      3190: 	    $syval=$hash{$thisfn};
1.37      www      3191:             untie(%hash);
                   3192:         }
                   3193: # ---------------------------------------------------------- There was an entry
                   3194:         if ($syval) {
                   3195:            unless ($syval=~/\_\d+$/) {
                   3196: 	       unless ($ENV{'form.request.prefix'}=~/\.(\d+)\_$/) {
1.44      www      3197:                   &appenv('request.ambiguous' => $thisfn);
1.37      www      3198:                   return '';
                   3199:                }    
                   3200:                $syval.=$1;
                   3201: 	   }
                   3202:         } else {
                   3203: # ------------------------------------------------------- Was not in symb table
                   3204:            if (tie(%bighash,'GDBM_File',$ENV{'request.course.fn'}.'.db',
1.256     albertel 3205:                             &GDBM_READER(),0640)) {
1.37      www      3206: # ---------------------------------------------- Get ID(s) for current resource
1.280     www      3207:               my $ids=$bighash{'ids_'.&clutter($thisfn)};
1.65      www      3208:               unless ($ids) { 
                   3209:                  $ids=$bighash{'ids_/'.$thisfn};
1.242     www      3210:               }
                   3211:               unless ($ids) {
                   3212: # alias?
                   3213: 		  $ids=$bighash{'mapalias_'.$thisfn};
1.65      www      3214:               }
1.37      www      3215:               if ($ids) {
                   3216: # ------------------------------------------------------------------- Has ID(s)
                   3217:                  my @possibilities=split(/\,/,$ids);
1.39      www      3218:                  if ($#possibilities==0) {
                   3219: # ----------------------------------------------- There is only one possibility
1.37      www      3220: 		     my ($mapid,$resid)=split(/\./,$ids);
                   3221:                      $syval=declutter($bighash{'map_id_'.$mapid}).'___'.$resid;
1.249     www      3222:                  } elsif (!$donotrecurse) {
1.39      www      3223: # ------------------------------------------ There is more than one possibility
                   3224:                      my $realpossible=0;
1.191     harris41 3225:                      foreach (@possibilities) {
1.39      www      3226: 			 my $file=$bighash{'src_'.$_};
                   3227:                          if (&allowed('bre',$file)) {
                   3228:          		    my ($mapid,$resid)=split(/\./,$_);
                   3229:                             if ($bighash{'map_type_'.$mapid} ne 'page') {
                   3230: 				$realpossible++;
                   3231:                                 $syval=declutter($bighash{'map_id_'.$mapid}).
                   3232:                                        '___'.$resid;
                   3233:                             }
                   3234: 			 }
1.191     harris41 3235:                      }
1.39      www      3236: 		     if ($realpossible!=1) { $syval=''; }
1.249     www      3237:                  } else {
                   3238:                      $syval='';
1.37      www      3239:                  }
                   3240: 	      }
                   3241:               untie(%bighash)
                   3242:            } 
1.31      www      3243:         }
1.62      www      3244:         if ($syval) {
1.210     www      3245:            return &symbclean($syval.'___'.$thisfn); 
1.62      www      3246:         }
1.31      www      3247:     }
1.44      www      3248:     &appenv('request.ambiguous' => $thisfn);
1.31      www      3249:     return '';
                   3250: }
                   3251: 
                   3252: # ---------------------------------------------------------- Return random seed
                   3253: 
1.32      www      3254: sub numval {
                   3255:     my $txt=shift;
                   3256:     $txt=~tr/A-J/0-9/;
                   3257:     $txt=~tr/a-j/0-9/;
                   3258:     $txt=~tr/K-T/0-9/;
                   3259:     $txt=~tr/k-t/0-9/;
                   3260:     $txt=~tr/U-Z/0-5/;
                   3261:     $txt=~tr/u-z/0-5/;
                   3262:     $txt=~s/\D//g;
                   3263:     return int($txt);
                   3264: }    
                   3265: 
1.31      www      3266: sub rndseed {
1.155     albertel 3267:     my ($symb,$courseid,$domain,$username)=@_;
                   3268:     if (!$symb) {
                   3269:       unless ($symb=&symbread()) { return time; }
                   3270:     }
                   3271:     if (!$courseid) { $courseid=$ENV{'request.course.id'};}
                   3272:     if (!$domain) {$domain=$ENV{'user.domain'};}
                   3273:     if (!$username) {$username=$ENV{'user.name'};}
                   3274:     {
1.98      albertel 3275:       use integer;
                   3276:       my $symbchck=unpack("%32C*",$symb) << 27;
1.100     albertel 3277:       my $symbseed=numval($symb) << 22;
1.155     albertel 3278:       my $namechck=unpack("%32C*",$username) << 17;
                   3279:       my $nameseed=numval($username) << 12;
                   3280:       my $domainseed=unpack("%32C*",$domain) << 7;
                   3281:       my $courseseed=unpack("%32C*",$courseid);
1.98      albertel 3282:       my $num=$symbseed+$nameseed+$domainseed+$courseseed+$namechck+$symbchck;
1.99      albertel 3283:       #uncommenting these lines can break things!
                   3284:       #&Apache::lonxml::debug("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
                   3285:       #&Apache::lonxml::debug("rndseed :$num:$symb");
1.98      albertel 3286:       return $num;
                   3287:     }
1.36      albertel 3288: }
                   3289: 
1.76      www      3290: sub ireceipt {
                   3291:     my ($funame,$fudom,$fucourseid,$fusymb)=@_;
                   3292:     my $cuname=unpack("%32C*",$funame);
                   3293:     my $cudom=unpack("%32C*",$fudom);
                   3294:     my $cucourseid=unpack("%32C*",$fucourseid);
                   3295:     my $cusymb=unpack("%32C*",$fusymb);
1.77      www      3296:     my $cunique=unpack("%32C*",$perlvar{'lonReceipt'});
1.76      www      3297:     return unpack("%32C*",$perlvar{'lonHostID'}).'-'.
                   3298:            ($cunique%$cuname+
                   3299:             $cunique%$cudom+
                   3300:             $cusymb%$cuname+
                   3301:             $cusymb%$cudom+
                   3302:             $cucourseid%$cuname+
                   3303:             $cucourseid%$cudom);
                   3304: }
                   3305: 
                   3306: sub receipt {
1.260     ng       3307:   my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser();
                   3308:   return &ireceipt($name,$domain,$courseid,$symb);
1.76      www      3309: }
1.260     ng       3310: 
1.36      albertel 3311: # ------------------------------------------------------------ Serves up a file
                   3312: # returns either the contents of the file or a -1
                   3313: sub getfile {
1.269     www      3314:  my $file=shift;
                   3315:  if ($file=~/^\/*uploaded\//) { # user file
                   3316:     my $ua=new LWP::UserAgent;
                   3317:     my $request=new HTTP::Request('GET',&tokenwrapper($file));
                   3318:     my $response=$ua->request($request);
                   3319:     if ($response->is_success()) {
                   3320:        return $response->content;
                   3321:     } else { 
                   3322:        return -1; 
                   3323:     }
                   3324:  } else { # normal file from res space
1.37      www      3325:   &repcopy($file);
1.36      albertel 3326:   if (! -e $file ) { return -1; };
                   3327:   my $fh=Apache::File->new($file);
                   3328:   my $a='';
                   3329:   while (<$fh>) { $a .=$_; }
1.269     www      3330:   return $a;
                   3331:  }
1.36      albertel 3332: }
                   3333: 
                   3334: sub filelocation {
                   3335:   my ($dir,$file) = @_;
                   3336:   my $location;
                   3337:   $file=~ s/^\s*(\S+)\s*$/$1/; ## strip off leading and trailing spaces
1.59      albertel 3338:   if ($file=~m:^/~:) { # is a contruction space reference
                   3339:     $location = $file;
                   3340:     $location =~ s:/~(.*?)/(.*):/home/$1/public_html/$2:;
1.270     www      3341:   } elsif ($file=~/^\/*uploaded/) { # is an uploaded file
                   3342:     $location=$file;
1.36      albertel 3343:   } else {
1.59      albertel 3344:     $file=~s/^$perlvar{'lonDocRoot'}//;
                   3345:     $file=~s:^/*res::;
                   3346:     if ( !( $file =~ m:^/:) ) {
                   3347:       $location = $dir. '/'.$file;
                   3348:     } else {
                   3349:       $location = '/home/httpd/html/res'.$file;
                   3350:     }
1.36      albertel 3351:   }
                   3352:   $location=~s://+:/:g; # remove duplicate /
1.46      www      3353:   while ($location=~m:/\.\./:) {$location=~ s:/[^/]+/\.\./:/:g;} #remove dir/..
                   3354:   return $location;
                   3355: }
1.36      albertel 3356: 
1.46      www      3357: sub hreflocation {
                   3358:     my ($dir,$file)=@_;
1.191     harris41 3359:     unless (($file=~/^http:\/\//i) || ($file=~/^\//)) {
1.46      www      3360:        my $finalpath=filelocation($dir,$file);
                   3361:        $finalpath=~s/^\/home\/httpd\/html//;
1.225     albertel 3362:        $finalpath=~s-/home/(\w+)/public_html/-/~$1/-;
1.46      www      3363:        return $finalpath;
                   3364:     } else {
                   3365:        return $file;
                   3366:     }
1.31      www      3367: }
                   3368: 
                   3369: # ------------------------------------------------------------- Declutters URLs
                   3370: 
                   3371: sub declutter {
                   3372:     my $thisfn=shift;
                   3373:     $thisfn=~s/^$perlvar{'lonDocRoot'}//;
                   3374:     $thisfn=~s/^\///;
                   3375:     $thisfn=~s/^res\///;
1.235     www      3376:     $thisfn=~s/\?.+$//;
1.268     www      3377:     return $thisfn;
                   3378: }
                   3379: 
                   3380: # ------------------------------------------------------------- Clutter up URLs
                   3381: 
                   3382: sub clutter {
                   3383:     my $thisfn='/'.&declutter(shift);
1.270     www      3384:     unless ($thisfn=~/^\/(uploaded|adm|userfiles|ext|raw|priv)\//) { 
                   3385:        $thisfn='/res'.$thisfn; 
                   3386:     }
1.31      www      3387:     return $thisfn;
1.12      www      3388: }
                   3389: 
                   3390: # -------------------------------------------------------- Escape Special Chars
                   3391: 
                   3392: sub escape {
                   3393:     my $str=shift;
                   3394:     $str =~ s/(\W)/"%".unpack('H2',$1)/eg;
                   3395:     return $str;
                   3396: }
                   3397: 
                   3398: # ----------------------------------------------------- Un-Escape Special Chars
                   3399: 
                   3400: sub unescape {
                   3401:     my $str=shift;
                   3402:     $str =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
                   3403:     return $str;
                   3404: }
1.11      www      3405: 
1.1       albertel 3406: # ================================================================ Main Program
                   3407: 
1.184     www      3408: sub goodbye {
1.204     albertel 3409:    &logthis("Starting Shut down");
1.184     www      3410:    &flushcourselogs();
                   3411:    &logthis("Shutting down");
                   3412: }
                   3413: 
1.179     www      3414: BEGIN {
1.228     harris41 3415: # ----------------------------------- Read loncapa.conf and loncapa_apache.conf
1.195     www      3416:     unless ($readit) {
1.217     harris41 3417: {
                   3418:     my $config=Apache::File->new("/etc/httpd/conf/loncapa.conf");
                   3419: 
                   3420:     while (my $configline=<$config>) {
                   3421:         if ($configline =~ /^[^\#]*PerlSetVar/) {
1.1       albertel 3422: 	   my ($dummy,$varname,$varvalue)=split(/\s+/,$configline);
1.8       www      3423:            chomp($varvalue);
1.1       albertel 3424:            $perlvar{$varname}=$varvalue;
                   3425:         }
                   3426:     }
                   3427: }
1.227     harris41 3428: {
                   3429:     my $config=Apache::File->new("/etc/httpd/conf/loncapa_apache.conf");
                   3430: 
                   3431:     while (my $configline=<$config>) {
                   3432:         if ($configline =~ /^[^\#]*PerlSetVar/) {
                   3433: 	   my ($dummy,$varname,$varvalue)=split(/\s+/,$configline);
                   3434:            chomp($varvalue);
                   3435:            $perlvar{$varname}=$varvalue;
                   3436:         }
                   3437:     }
                   3438: }
1.1       albertel 3439: 
                   3440: # ------------------------------------------------------------- Read hosts file
                   3441: {
                   3442:     my $config=Apache::File->new("$perlvar{'lonTabDir'}/hosts.tab");
                   3443: 
                   3444:     while (my $configline=<$config>) {
1.154     www      3445:        chomp($configline);
1.245     www      3446:        my ($id,$domain,$role,$name,$ip,$domdescr)=split(/:/,$configline);
1.252     albertel 3447:        if ($id && $domain && $role && $name && $ip) {
                   3448: 	 $hostname{$id}=$name;
                   3449: 	 $hostdom{$id}=$domain;
                   3450: 	 $hostip{$id}=$ip;
1.300   ! albertel 3451: 	 $iphost{$ip}=$id;
1.252     albertel 3452: 	 if ($domdescr) { $domaindescription{$domain}=$domdescr; }
                   3453: 	 if ($role eq 'library') { $libserv{$id}=$name; }
                   3454:        } else {
                   3455: 	 if ($configline) {
                   3456: 	   &logthis("Skipping hosts.tab line -$configline-");
                   3457: 	 }
1.245     www      3458:        }
1.1       albertel 3459:     }
                   3460: }
                   3461: 
                   3462: # ------------------------------------------------------ Read spare server file
                   3463: {
                   3464:     my $config=Apache::File->new("$perlvar{'lonTabDir'}/spare.tab");
                   3465: 
                   3466:     while (my $configline=<$config>) {
                   3467:        chomp($configline);
1.284     matthew  3468:        if ($configline) {
1.1       albertel 3469:           $spareid{$configline}=1;
                   3470:        }
                   3471:     }
                   3472: }
1.11      www      3473: # ------------------------------------------------------------ Read permissions
                   3474: {
                   3475:     my $config=Apache::File->new("$perlvar{'lonTabDir'}/roles.tab");
                   3476: 
                   3477:     while (my $configline=<$config>) {
                   3478:        chomp($configline);
1.160     www      3479:       if ($configline) {
1.11      www      3480:        my ($role,$perm)=split(/ /,$configline);
                   3481:        if ($perm ne '') { $pr{$role}=$perm; }
1.160     www      3482:       }
1.11      www      3483:     }
                   3484: }
                   3485: 
                   3486: # -------------------------------------------- Read plain texts for permissions
                   3487: {
                   3488:     my $config=Apache::File->new("$perlvar{'lonTabDir'}/rolesplain.tab");
                   3489: 
                   3490:     while (my $configline=<$config>) {
                   3491:        chomp($configline);
1.160     www      3492:       if ($configline) {
1.11      www      3493:        my ($short,$plain)=split(/:/,$configline);
                   3494:        if ($plain ne '') { $prp{$short}=$plain; }
1.160     www      3495:       }
1.135     www      3496:     }
                   3497: }
                   3498: 
                   3499: # ---------------------------------------------------------- Read package table
                   3500: {
                   3501:     my $config=Apache::File->new("$perlvar{'lonTabDir'}/packages.tab");
                   3502: 
                   3503:     while (my $configline=<$config>) {
                   3504:        chomp($configline);
                   3505:        my ($short,$plain)=split(/:/,$configline);
1.143     www      3506:        my ($pack,$name)=split(/\&/,$short);
                   3507:        if ($plain ne '') {
                   3508:           $packagetab{$pack.'&'.$name.'&name'}=$name; 
                   3509:           $packagetab{$short}=$plain; 
1.25      www      3510:        }
1.11      www      3511:     }
                   3512: }
                   3513: 
1.71      www      3514: %metacache=();
1.185     www      3515: 
1.281     www      3516: $processmarker='_'.time.'_'.$perlvar{'lonHostID'};
1.186     www      3517: $dumpcount=0;
1.22      www      3518: 
1.163     harris41 3519: &logtouch();
1.12      www      3520: &logthis('<font color=yellow>INFO: Read configuration</font>');
1.195     www      3521: $readit=1;
                   3522: }
1.1       albertel 3523: }
1.179     www      3524: 
1.1       albertel 3525: 1;
1.191     harris41 3526: __END__
                   3527: 
1.243     albertel 3528: =pod
                   3529: 
1.191     harris41 3530: =head1 NAME
                   3531: 
1.243     albertel 3532: Apache::lonnet - Subroutines to ask questions about things in the network.
1.191     harris41 3533: 
                   3534: =head1 SYNOPSIS
                   3535: 
1.243     albertel 3536: Invoked by other LON-CAPA modules, when they need to talk to or about objects in the network.
1.191     harris41 3537: 
                   3538:  &Apache::lonnet::SUBROUTINENAME(ARGUMENTS);
                   3539: 
1.243     albertel 3540: Common parameters:
                   3541: 
                   3542: =over 4
                   3543: 
                   3544: =item *
                   3545: 
                   3546: $uname : an internal username (if $cname expecting a course Id specifically)
                   3547: 
                   3548: =item *
                   3549: 
                   3550: $udom : a domain (if $cdom expecting a course's domain specifically)
                   3551: 
                   3552: =item *
                   3553: 
                   3554: $symb : a resource instance identifier
                   3555: 
                   3556: =item *
                   3557: 
                   3558: $namespace : the name of a .db file that contains the data needed or
                   3559: being set.
                   3560: 
                   3561: =back
                   3562: 
1.191     harris41 3563: =head1 INTRODUCTION
                   3564: 
                   3565: This module provides subroutines which interact with the
1.243     albertel 3566: lonc/lond (TCP) network layer of LON-CAPA. And Can be used to ask about 
                   3567: - classes
                   3568: - users 
                   3569: - resources
                   3570: 
                   3571: For many of these objects you can also use this to store data about
                   3572: them or modify them in various ways.
1.191     harris41 3573: 
                   3574: This is part of the LearningOnline Network with CAPA project
                   3575: described at http://www.lon-capa.org.
                   3576: 
1.243     albertel 3577: =head1 RETURN MESSAGES
1.191     harris41 3578: 
                   3579: =over 4
                   3580: 
                   3581: =item *
                   3582: 
1.243     albertel 3583: con_lost : unable to contact remote host
1.191     harris41 3584: 
                   3585: =item *
                   3586: 
1.243     albertel 3587: con_delayed : unable to contact remote host, message will be delivered
                   3588: when the connection is brought back up
1.191     harris41 3589: 
                   3590: =item *
                   3591: 
1.243     albertel 3592: con_failed : unable to contact remote host and unable to save message
                   3593: for later delivery
1.191     harris41 3594: 
                   3595: =item *
                   3596: 
1.243     albertel 3597: error: : an error a occured, a description of the error follows the :
1.191     harris41 3598: 
                   3599: =item *
                   3600: 
1.243     albertel 3601: no_such_host : unable to fund a host associated with the user/domain
                   3602: that was requested
1.191     harris41 3603: 
1.243     albertel 3604: =back
1.191     harris41 3605: 
1.243     albertel 3606: =head1 PUBLIC SUBROUTINES
1.191     harris41 3607: 
1.243     albertel 3608: =head2 Session Environment Functions
1.191     harris41 3609: 
1.243     albertel 3610: =over 4
1.191     harris41 3611: 
                   3612: =item *
                   3613: 
1.243     albertel 3614: appenv(%hash) : the value of %hash is written to the user envirnoment
                   3615: file, and will be restored for each access this user makes during this
                   3616: session, also modifies the %ENV for the current process
1.191     harris41 3617: 
                   3618: =item *
                   3619: 
1.243     albertel 3620: delenv($regexp) : removes all items from the session environment file that matches the regular expression in $regexp. The values are also delted from the current processes %ENV.
1.191     harris41 3621: 
1.243     albertel 3622: =back
                   3623: 
                   3624: =head2 User Information
1.191     harris41 3625: 
1.243     albertel 3626: =over 4
1.191     harris41 3627: 
                   3628: =item *
                   3629: 
                   3630: queryauthenticate($uname,$udom) : try to determine user's current
                   3631: authentication scheme
                   3632: 
                   3633: =item *
                   3634: 
                   3635: authenticate($uname,$upass,$udom) : try to authenticate user from domain's lib
1.243     albertel 3636: servers (first use the current one), $upass should be the users password
1.191     harris41 3637: 
                   3638: =item *
                   3639: 
1.243     albertel 3640: homeserver($uname,$udom) : find the server which has the user's
                   3641: directory and files (there must be only one), this caches the answer,
                   3642: and also caches if there is a borken connection.
1.191     harris41 3643: 
                   3644: =item *
                   3645: 
1.243     albertel 3646: idget($udom,@ids) : find the usernames behind a list of IDs (IDs are a
                   3647: unique resource in a domain, there must be only 1 ID per username, and
                   3648: only 1 username per ID in a specific domain) (returns hash:
1.191     harris41 3649: id=>name,id=>name)
                   3650: 
                   3651: =item *
                   3652: 
                   3653: idrget($udom,@unames) : find the IDs behind a list of usernames (returns hash:
                   3654: name=>id,name=>id)
                   3655: 
                   3656: =item *
                   3657: 
                   3658: idput($udom,%ids) : store away a list of names and associated IDs
                   3659: 
                   3660: =item *
                   3661: 
1.243     albertel 3662: rolesinit($udom,$username,$authhost) : get user privileges
                   3663: 
                   3664: =item *
                   3665: 
                   3666: usection($udom,$uname,$cname) : finds the section of student in the
                   3667: course $cname, return section name/number or '' for "not in course"
                   3668: and '-1' for "no section"
                   3669: 
                   3670: =item *
                   3671: 
                   3672: userenvironment($udom,$uname,@what) : gets the values of the keys
                   3673: passed in @what from the requested user's environment, returns a hash
                   3674: 
                   3675: =back
                   3676: 
                   3677: =head2 User Roles
                   3678: 
                   3679: =over 4
                   3680: 
                   3681: =item *
                   3682: 
                   3683: allowed($priv,$uri) : check for a user privilege; returns codes for allowed
                   3684: actions
                   3685:  F: full access
                   3686:  U,I,K: authentication modes (cxx only)
                   3687:  '': forbidden
                   3688:  1: user needs to choose course
                   3689:  2: browse allowed
                   3690: 
                   3691: =item *
                   3692: 
                   3693: definerole($rolename,$sysrole,$domrole,$courole) : define role; define a custom
                   3694: role rolename set privileges in format of lonTabs/roles.tab for system, domain,
                   3695: and course level
                   3696: 
                   3697: =item *
                   3698: 
                   3699: plaintext($short) : return value in %prp hash (rolesplain.tab); plain text
                   3700: explanation of a user role term
                   3701: 
                   3702: =back
                   3703: 
                   3704: =head2 User Modification
                   3705: 
                   3706: =over 4
                   3707: 
                   3708: =item *
                   3709: 
                   3710: assignrole($udom,$uname,$url,$role,$end,$start) : assign role; give a role to a
                   3711: user for the level given by URL.  Optional start and end dates (leave empty
                   3712: string or zero for "no date")
1.191     harris41 3713: 
                   3714: =item *
                   3715: 
1.243     albertel 3716: changepass($uname,$udom,$currentpass,$newpass,$server) : attempts to
                   3717: change a users, password, possible return values are: ok,
                   3718: pwchange_failure, non_authorized, auth_mode_error, unknown_user,
                   3719: refused
1.191     harris41 3720: 
                   3721: =item *
                   3722: 
1.243     albertel 3723: modifyuserauth($udom,$uname,$umode,$upass) : modify user authentication
1.191     harris41 3724: 
                   3725: =item *
                   3726: 
1.243     albertel 3727: modifyuser($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene) : 
                   3728: modify user
1.191     harris41 3729: 
                   3730: =item *
                   3731: 
1.286     matthew  3732: modifystudent
                   3733: 
                   3734: modify a students enrollment and identification information.
                   3735: The course id is resolved based on the current users environment.  
                   3736: This means the envoking user must be a course coordinator or otherwise
                   3737: associated with a course.
                   3738: 
1.297     matthew  3739: This call is essentially a wrapper for lonnet::modifyuser and
                   3740: lonnet::modify_student_enrollment
1.286     matthew  3741: 
                   3742: Inputs: 
                   3743: 
                   3744: =over 4
                   3745: 
                   3746: =item B<$udom> Students loncapa domain
                   3747: 
                   3748: =item B<$uname> Students loncapa login name
                   3749: 
                   3750: =item B<$uid> Students id/student number
                   3751: 
                   3752: =item B<$umode> Students authentication mode
                   3753: 
                   3754: =item B<$upass> Students password
                   3755: 
                   3756: =item B<$first> Students first name
                   3757: 
                   3758: =item B<$middle> Students middle name
                   3759: 
                   3760: =item B<$last> Students last name
                   3761: 
                   3762: =item B<$gene> Students generation
                   3763: 
                   3764: =item B<$usec> Students section in course
                   3765: 
                   3766: =item B<$end> Unix time of the roles expiration
                   3767: 
                   3768: =item B<$start> Unix time of the roles start date
                   3769: 
                   3770: =item B<$forceid> If defined, allow $uid to be changed
                   3771: 
                   3772: =item B<$desiredhome> server to use as home server for student
                   3773: 
                   3774: =back
1.297     matthew  3775: 
                   3776: =item *
                   3777: 
                   3778: modify_student_enrollment
                   3779: 
                   3780: Change a students enrollment status in a class.  The environment variable
                   3781: 'role.request.course' must be defined for this function to proceed.
                   3782: 
                   3783: Inputs:
                   3784: 
                   3785: =over 4
                   3786: 
                   3787: =item $udom, students domain
                   3788: 
                   3789: =item $uname, students name
                   3790: 
                   3791: =item $uid, students user id
                   3792: 
                   3793: =item $first, students first name
                   3794: 
                   3795: =item $middle
                   3796: 
                   3797: =item $last
                   3798: 
                   3799: =item $gene
                   3800: 
                   3801: =item $usec
                   3802: 
                   3803: =item $end
                   3804: 
                   3805: =item $start
                   3806: 
                   3807: =back
                   3808: 
1.191     harris41 3809: 
                   3810: =item *
                   3811: 
1.243     albertel 3812: assigncustomrole($udom,$uname,$url,$rdom,$rnam,$rolename,$end,$start) : assign
                   3813: custom role; give a custom role to a user for the level given by URL.  Specify
                   3814: name and domain of role author, and role name
1.191     harris41 3815: 
                   3816: =item *
                   3817: 
1.243     albertel 3818: revokerole($udom,$uname,$url,$role) : revoke a role for url
1.191     harris41 3819: 
                   3820: =item *
                   3821: 
1.243     albertel 3822: revokecustomrole($udom,$uname,$url,$role) : revoke a custom role
                   3823: 
                   3824: =back
                   3825: 
                   3826: =head2 Course Infomation
                   3827: 
                   3828: =over 4
1.191     harris41 3829: 
                   3830: =item *
                   3831: 
1.243     albertel 3832: coursedescription($courseid) : course description
1.191     harris41 3833: 
                   3834: =item *
                   3835: 
1.243     albertel 3836: courseresdata($coursenum,$coursedomain,@which) : request for current
                   3837: parameter setting for a specific course, @what should be a list of
                   3838: parameters to ask about. This routine caches answers for 5 minutes.
                   3839: 
                   3840: =back
                   3841: 
                   3842: =head2 Course Modification
                   3843: 
                   3844: =over 4
1.191     harris41 3845: 
                   3846: =item *
                   3847: 
1.243     albertel 3848: writecoursepref($courseid,%prefs) : write preferences (environment
                   3849: database) for a course
1.191     harris41 3850: 
                   3851: =item *
                   3852: 
1.243     albertel 3853: createcourse($udom,$description,$url) : make/modify course
                   3854: 
                   3855: =back
                   3856: 
                   3857: =head2 Resource Subroutines
                   3858: 
                   3859: =over 4
1.191     harris41 3860: 
                   3861: =item *
                   3862: 
1.243     albertel 3863: subscribe($fname) : subscribe to a resource, returns URL if possible (probably should use repcopy instead)
1.191     harris41 3864: 
                   3865: =item *
                   3866: 
1.243     albertel 3867: repcopy($filename) : subscribes to the requested file, and attempts to
                   3868: replicate from the owning library server, Might return
                   3869: HTTP_SERVICE_UNAVAILABLE, HTTP_NOT_FOUND, FORBIDDEN, OK, or
                   3870: HTTP_BAD_REQUEST, also attempts to grab the metadata for the
                   3871: resource. Expects the local filesystem pathname
                   3872: (/home/httpd/html/res/....)
                   3873: 
                   3874: =back
                   3875: 
                   3876: =head2 Resource Information
                   3877: 
                   3878: =over 4
1.191     harris41 3879: 
                   3880: =item *
                   3881: 
1.243     albertel 3882: EXT($varname,$symb,$udom,$uname) : evaluates and returns the value of
                   3883: a vairety of different possible values, $varname should be a request
                   3884: string, and the other parameters can be used to specify who and what
                   3885: one is asking about.
                   3886: 
                   3887: Possible values for $varname are environment.lastname (or other item
                   3888: from the envirnment hash), user.name (or someother aspect about the
                   3889: user), resource.0.maxtries (or some other part and parameter of a
                   3890: resource)
1.204     albertel 3891: 
                   3892: =item *
                   3893: 
1.243     albertel 3894: directcondval($number) : get current value of a condition; reads from a state
                   3895: string
1.204     albertel 3896: 
                   3897: =item *
                   3898: 
1.243     albertel 3899: condval($condidx) : value of condition index based on state
1.204     albertel 3900: 
                   3901: =item *
                   3902: 
1.243     albertel 3903: metadata($uri,$what,$liburi,$prefix,$depthcount) : request a
                   3904: resource's metadata, $what should be either a specific key, or either
                   3905: 'keys' (to get a list of possible keys) or 'packages' to get a list of
                   3906: packages that this resource currently uses, the last 3 arguments are only used internally for recursive metadata.
                   3907: 
                   3908: this function automatically caches all requests
1.191     harris41 3909: 
                   3910: =item *
                   3911: 
1.243     albertel 3912: metadata_query($query,$custom,$customshow) : make a metadata query against the
                   3913: network of library servers; returns file handle of where SQL and regex results
                   3914: will be stored for query
1.191     harris41 3915: 
                   3916: =item *
                   3917: 
1.243     albertel 3918: symbread($filename) : return symbolic list entry (filename argument optional);
                   3919: returns the data handle
1.191     harris41 3920: 
                   3921: =item *
                   3922: 
1.243     albertel 3923: symbverify($symb,$thisfn) : verifies that $symb actually exists and is
                   3924: a possible symb for the URL in $thisfn, returns a 1 on success, 0 on
                   3925: failure, user must be in a course, as it assumes the existance of the
                   3926: course initi hash, and uses $ENV('request.course.id'}
                   3927: 
1.191     harris41 3928: 
                   3929: =item *
                   3930: 
1.243     albertel 3931: symbclean($symb) : removes versions numbers from a symb, returns the
                   3932: cleaned symb
1.191     harris41 3933: 
                   3934: =item *
                   3935: 
1.243     albertel 3936: is_on_map($uri) : checks if the $uri is somewhere on the current
                   3937: course map, user must be in a course for it to work.
1.191     harris41 3938: 
                   3939: =item *
                   3940: 
1.243     albertel 3941: numval($salt) : return random seed value (addend for rndseed)
1.191     harris41 3942: 
                   3943: =item *
                   3944: 
1.243     albertel 3945: rndseed($symb,$courseid,$udom,$uname) : create a random sum; returns
                   3946: a random seed, all arguments are optional, if they aren't sent it uses the
                   3947: environment to derive them. Note: if symb isn't sent and it can't get one
                   3948: from &symbread it will use the current time as its return value
1.191     harris41 3949: 
                   3950: =item *
                   3951: 
1.243     albertel 3952: ireceipt($funame,$fudom,$fucourseid,$fusymb) : return unique,
                   3953: unfakeable, receipt
1.191     harris41 3954: 
                   3955: =item *
                   3956: 
1.243     albertel 3957: receipt() : API to ireceipt working off of ENV values; given out to users
1.191     harris41 3958: 
                   3959: =item *
                   3960: 
1.243     albertel 3961: countacc($url) : count the number of accesses to a given URL
1.191     harris41 3962: 
                   3963: =item *
                   3964: 
1.243     albertel 3965: checkout($symb,$tuname,$tudom,$tcrsid) :  creates a record of a user having looked at an item, most likely printed out or otherwise using a resource
1.191     harris41 3966: 
                   3967: =item *
                   3968: 
1.243     albertel 3969: checkin($token) : updates that a resource has beeen returned (a hard copy version for instance) and returns the data that $token was Checkout with ($symb, $tuname, $tudom, and $tcrsid)
1.191     harris41 3970: 
                   3971: =item *
                   3972: 
1.243     albertel 3973: expirespread($uname,$udom,$stype,$usymb) : set expire date for spreadsheet
1.191     harris41 3974: 
                   3975: =item *
                   3976: 
1.243     albertel 3977: devalidate($symb) : devalidate temporary spreadsheet calculations,
                   3978: forcing spreadsheet to reevaluate the resource scores next time.
                   3979: 
                   3980: =back
                   3981: 
                   3982: =head2 Storing/Retreiving Data
                   3983: 
                   3984: =over 4
1.191     harris41 3985: 
                   3986: =item *
                   3987: 
1.243     albertel 3988: store($storehash,$symb,$namespace,$udom,$uname) : stores hash permanently
                   3989: for this url; hashref needs to be given and should be a \%hashname; the
                   3990: remaining args aren't required and if they aren't passed or are '' they will
                   3991: be derived from the ENV
1.191     harris41 3992: 
                   3993: =item *
                   3994: 
1.243     albertel 3995: cstore($storehash,$symb,$namespace,$udom,$uname) : same as store but
                   3996: uses critical subroutine
1.191     harris41 3997: 
                   3998: =item *
                   3999: 
1.243     albertel 4000: restore($symb,$namespace,$udom,$uname) : returns hash for this symb;
                   4001: all args are optional
1.191     harris41 4002: 
                   4003: =item *
                   4004: 
1.243     albertel 4005: tmpstore($storehash,$symb,$namespace,$udom,$uname) : storage that
                   4006: works very similar to store/cstore, but all data is stored in a
                   4007: temporary location and can be reset using tmpreset, $storehash should
                   4008: be a hash reference, returns nothing on success
1.191     harris41 4009: 
                   4010: =item *
                   4011: 
1.243     albertel 4012: tmprestore($symb,$namespace,$udom,$uname) : storage that works very
                   4013: similar to restore, but all data is stored in a temporary location and
                   4014: can be reset using tmpreset. Returns a hash of values on success,
                   4015: error string otherwise.
1.191     harris41 4016: 
                   4017: =item *
                   4018: 
1.243     albertel 4019: tmpreset($symb,$namespace,$udom,$uname) : temporary storage reset,
                   4020: deltes all keys for $symb form the temporary storage hash.
1.191     harris41 4021: 
                   4022: =item *
                   4023: 
1.243     albertel 4024: get($namespace,$storearr,$udom,$uname) : returns hash with keys from array
                   4025: reference filled in from namesp ($udom and $uname are optional)
1.191     harris41 4026: 
                   4027: =item *
                   4028: 
1.243     albertel 4029: del($namespace,$storearr,$udom,$uname) : deletes keys out of array from
                   4030: namesp ($udom and $uname are optional)
1.191     harris41 4031: 
                   4032: =item *
                   4033: 
1.243     albertel 4034: dump($namespace,$udom,$uname,$regexp) : 
                   4035: dumps the complete (or key matching regexp) namespace into a hash
                   4036: ($udom, $uname and $regexp are optional)
1.191     harris41 4037: 
                   4038: =item *
                   4039: 
1.243     albertel 4040: put($namespace,$storehash,$udom,$uname) : stores hash in namesp
                   4041: ($udom and $uname are optional)
1.191     harris41 4042: 
                   4043: =item *
                   4044: 
1.243     albertel 4045: cput($namespace,$storehash,$udom,$uname) : critical put
                   4046: ($udom and $uname are optional)
1.191     harris41 4047: 
                   4048: =item *
                   4049: 
1.243     albertel 4050: eget($namespace,$storearr,$udom,$uname) : returns hash with keys from array
                   4051: reference filled in from namesp (encrypts the return communication)
                   4052: ($udom and $uname are optional)
1.191     harris41 4053: 
                   4054: =item *
                   4055: 
1.243     albertel 4056: log($udom,$name,$home,$message) : write to permanent log for user; use
                   4057: critical subroutine
                   4058: 
                   4059: =back
                   4060: 
                   4061: =head2 Network Status Functions
                   4062: 
                   4063: =over 4
1.191     harris41 4064: 
                   4065: =item *
                   4066: 
                   4067: dirlist($uri) : return directory list based on URI
                   4068: 
                   4069: =item *
                   4070: 
1.243     albertel 4071: spareserver() : find server with least workload from spare.tab
                   4072: 
                   4073: =back
                   4074: 
                   4075: =head2 Apache Request
                   4076: 
                   4077: =over 4
1.191     harris41 4078: 
                   4079: =item *
                   4080: 
1.243     albertel 4081: ssi($url,%hash) : server side include, does a complete request cycle on url to
                   4082: localhost, posts hash
                   4083: 
                   4084: =back
                   4085: 
                   4086: =head2 Data to String to Data
                   4087: 
                   4088: =over 4
1.191     harris41 4089: 
                   4090: =item *
                   4091: 
1.243     albertel 4092: hash2str(%hash) : convert a hash into a string complete with escaping and '='
                   4093: and '&' separators, supports elements that are arrayrefs and hashrefs
1.191     harris41 4094: 
                   4095: =item *
                   4096: 
1.243     albertel 4097: hashref2str($hashref) : convert a hashref into a string complete with
                   4098: escaping and '=' and '&' separators, supports elements that are
                   4099: arrayrefs and hashrefs
1.191     harris41 4100: 
                   4101: =item *
                   4102: 
1.243     albertel 4103: arrayref2str($arrayref) : convert an arrayref into a string complete
                   4104: with escaping and '&' separators, supports elements that are arrayrefs
                   4105: and hashrefs
1.191     harris41 4106: 
                   4107: =item *
                   4108: 
1.243     albertel 4109: str2hash($string) : convert string to hash using unescaping and
                   4110: splitting on '=' and '&', supports elements that are arrayrefs and
                   4111: hashrefs
1.191     harris41 4112: 
                   4113: =item *
                   4114: 
1.243     albertel 4115: str2array($string) : convert string to hash using unescaping and
                   4116: splitting on '&', supports elements that are arrayrefs and hashrefs
                   4117: 
                   4118: =back
                   4119: 
                   4120: =head2 Logging Routines
                   4121: 
                   4122: =over 4
                   4123: 
                   4124: These routines allow one to make log messages in the lonnet.log and
                   4125: lonnet.perm logfiles.
1.191     harris41 4126: 
                   4127: =item *
                   4128: 
1.243     albertel 4129: logtouch() : make sure the logfile, lonnet.log, exists
1.191     harris41 4130: 
                   4131: =item *
                   4132: 
1.243     albertel 4133: logthis() : append message to the normal lonnet.log file, it gets
                   4134: preiodically rolled over and deleted.
1.191     harris41 4135: 
                   4136: =item *
                   4137: 
1.243     albertel 4138: logperm() : append a permanent message to lonnet.perm.log, this log
                   4139: file never gets deleted by any automated portion of the system, only
                   4140: messages of critical importance should go in here.
                   4141: 
                   4142: =back
                   4143: 
                   4144: =head2 General File Helper Routines
                   4145: 
                   4146: =over 4
1.191     harris41 4147: 
                   4148: =item *
                   4149: 
1.243     albertel 4150: getfile($file) : returns the entire contents of a file or -1; it
                   4151: properly subscribes to and replicates the file if neccessary.
1.191     harris41 4152: 
                   4153: =item *
                   4154: 
1.243     albertel 4155: filelocation($dir,$file) : returns file system location of a file
                   4156: based on URI; meant to be "fairly clean" absolute reference, $dir is a
                   4157: directory that relative $file lookups are to looked in ($dir of /a/dir
                   4158: and a file of ../bob will become /a/bob)
1.191     harris41 4159: 
                   4160: =item *
                   4161: 
                   4162: hreflocation($dir,$file) : returns file system location or a URL; same as
                   4163: filelocation except for hrefs
                   4164: 
                   4165: =item *
                   4166: 
                   4167: declutter() : declutters URLs (remove docroot, beginning slashes, 'res' etc)
                   4168: 
1.243     albertel 4169: =back
                   4170: 
                   4171: =head2 HTTP Helper Routines
                   4172: 
                   4173: =over 4
                   4174: 
1.191     harris41 4175: =item *
                   4176: 
                   4177: escape() : unpack non-word characters into CGI-compatible hex codes
                   4178: 
                   4179: =item *
                   4180: 
                   4181: unescape() : pack CGI-compatible hex codes into actual non-word ASCII character
                   4182: 
1.243     albertel 4183: =back
                   4184: 
                   4185: =head1 PRIVATE SUBROUTINES
                   4186: 
                   4187: =head2 Underlying communication routines (Shouldn't call)
                   4188: 
                   4189: =over 4
                   4190: 
                   4191: =item *
                   4192: 
                   4193: subreply() : tries to pass a message to lonc, returns con_lost if incapable
                   4194: 
                   4195: =item *
                   4196: 
                   4197: reply() : uses subreply to send a message to remote machine, logs all failures
                   4198: 
                   4199: =item *
                   4200: 
                   4201: critical() : passes a critical message to another server; if cannot
                   4202: get through then place message in connection buffer directory and
                   4203: returns con_delayed, if incapable of saving message, returns
                   4204: con_failed
                   4205: 
                   4206: =item *
                   4207: 
                   4208: reconlonc() : tries to reconnect lonc client processes.
                   4209: 
                   4210: =back
                   4211: 
                   4212: =head2 Resource Access Logging
                   4213: 
                   4214: =over 4
                   4215: 
                   4216: =item *
                   4217: 
                   4218: flushcourselogs() : flush (save) buffer logs and access logs
                   4219: 
                   4220: =item *
                   4221: 
                   4222: courselog($what) : save message for course in hash
                   4223: 
                   4224: =item *
                   4225: 
                   4226: courseacclog($what) : save message for course using &courselog().  Perform
                   4227: special processing for specific resource types (problems, exams, quizzes, etc).
                   4228: 
1.191     harris41 4229: =item *
                   4230: 
                   4231: goodbye() : flush course logs and log shutting down; it is called in srm.conf
                   4232: as a PerlChildExitHandler
1.243     albertel 4233: 
                   4234: =back
                   4235: 
                   4236: =head2 Other
                   4237: 
                   4238: =over 4
                   4239: 
                   4240: =item *
                   4241: 
                   4242: symblist($mapname,%newhash) : update symbolic storage links
1.191     harris41 4243: 
                   4244: =back
                   4245: 
                   4246: =cut

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