File:  [LON-CAPA] / loncom / lonnet / perl / lonnet.pm
Revision 1.1471: download - view: text, annotated - select for diffs
Tue Nov 9 20:14:04 2021 UTC (2 years, 8 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- Improve efficiency in &get_commblock_resources() in course with folder
  level time-limits triggered by starting timer.
  - Only look for answerable problems in folders with activated blocks
    which are still pre time-limit.

    1: # The LearningOnline Network
    2: # TCP networking package
    3: #
    4: # $Id: lonnet.pm,v 1.1471 2021/11/09 20:14:04 raeburn Exp $
    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: #
   28: ###
   29: 
   30: =pod
   31: 
   32: =head1 NAME
   33: 
   34: Apache::lonnet.pm
   35: 
   36: =head1 SYNOPSIS
   37: 
   38: This file is an interface to the lonc processes of
   39: the LON-CAPA network as well as set of elaborated functions for handling information
   40: necessary for navigating through a given cluster of LON-CAPA machines within a
   41: domain. There are over 40 specialized functions in this module which handle the
   42: reading and transmission of metadata, user information (ids, names, environments, roles,
   43: logs), file information (storage, reading, directories, extensions, replication, embedded
   44: styles and descriptors), educational resources (course descriptions, section names and
   45: numbers), url hashing (to assign roles on a url basis), and translating abbreviated symbols to
   46: and from more descriptive phrases or explanations.
   47: 
   48: This is part of the LearningOnline Network with CAPA project
   49: described at http://www.lon-capa.org.
   50: 
   51: =head1 Package Variables
   52: 
   53: These are largely undocumented, so if you decipher one please note it here.
   54: 
   55: =over 4
   56: 
   57: =item $processmarker
   58: 
   59: Contains the time this process was started and this servers host id.
   60: 
   61: =item $dumpcount
   62: 
   63: Counts the number of times a message log flush has been attempted (regardless
   64: of success) by this process.  Used as part of the filename when messages are
   65: delayed.
   66: 
   67: =back
   68: 
   69: =cut
   70: 
   71: package Apache::lonnet;
   72: 
   73: use strict;
   74: use HTTP::Date;
   75: use Image::Magick;
   76: use CGI::Cookie;
   77: 
   78: use Encode;
   79: 
   80: use vars qw(%perlvar %spareid %pr %prp $memcache %packagetab $tmpdir $deftex
   81:             $_64bit %env %protocol %loncaparevs %serverhomeIDs %needsrelease
   82:             %managerstab $passwdmin);
   83: 
   84: my (%badServerCache, $memcache, %courselogs, %accesshash, %domainrolehash,
   85:     %userrolehash, $processmarker, $dumpcount, %coursedombuf,
   86:     %coursenumbuf, %coursehombuf, %coursedescrbuf, %courseinstcodebuf,
   87:     %courseownerbuf, %coursetypebuf,$locknum);
   88: 
   89: use IO::Socket;
   90: use GDBM_File;
   91: use HTML::LCParser;
   92: use Fcntl qw(:flock);
   93: use Storable qw(thaw nfreeze);
   94: use Time::HiRes qw( sleep gettimeofday tv_interval );
   95: use Cache::Memcached;
   96: use Digest::MD5;
   97: use Math::Random;
   98: use File::MMagic;
   99: use Net::CIDR;
  100: use Sys::Hostname::FQDN();
  101: use LONCAPA qw(:DEFAULT :match);
  102: use LONCAPA::Configuration;
  103: use LONCAPA::lonmetadata;
  104: use LONCAPA::Lond;
  105: use LONCAPA::LWPReq;
  106: use LONCAPA::transliterate;
  107: 
  108: use File::Copy;
  109: 
  110: my $readit;
  111: my $max_connection_retries = 20;     # Or some such value.
  112: 
  113: require Exporter;
  114: 
  115: our @ISA = qw (Exporter);
  116: our @EXPORT = qw(%env);
  117: 
  118: 
  119: # ------------------------------------ Logging (parameters, docs, slots, roles)
  120: {
  121:     my $logid;
  122:     sub write_log {
  123: 	my ($context,$hash_name,$storehash,$delflag,$uname,$udom,$cnum,$cdom)=@_;
  124:         if ($context eq 'course') {
  125:             if (($cnum eq '') || ($cdom eq '')) {
  126:                 $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
  127:                 $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
  128:             }
  129:         }
  130: 	$logid ++;
  131:         my $now = time();
  132: 	my $id=$now.'00000'.$$.'00000'.$logid;
  133:         my $ip = &get_requestor_ip();
  134:         my $logentry = { 
  135:                           $id => {
  136:                                    'exe_uname' => $env{'user.name'},
  137:                                    'exe_udom'  => $env{'user.domain'},
  138:                                    'exe_time'  => $now,
  139:                                    'exe_ip'    => $ip,
  140:                                    'delflag'   => $delflag,
  141:                                    'logentry'  => $storehash,
  142:                                    'uname'     => $uname,
  143:                                    'udom'      => $udom,
  144:                                   }
  145:                        };
  146: 	return &put('nohist_'.$hash_name,$logentry,$cdom,$cnum);
  147:     }
  148: }
  149: 
  150: sub logtouch {
  151:     my $execdir=$perlvar{'lonDaemons'};
  152:     unless (-e "$execdir/logs/lonnet.log") {	
  153: 	open(my $fh,">>","$execdir/logs/lonnet.log");
  154: 	close $fh;
  155:     }
  156:     my ($wwwuid,$wwwgid)=(getpwnam('www'))[2,3];
  157:     chown($wwwuid,$wwwgid,$execdir.'/logs/lonnet.log');
  158: }
  159: 
  160: sub logthis {
  161:     my $message=shift;
  162:     my $execdir=$perlvar{'lonDaemons'};
  163:     my $now=time;
  164:     my $local=localtime($now);
  165:     if (open(my $fh,">>","$execdir/logs/lonnet.log")) {
  166: 	my $logstring = $local. " ($$): ".$message."\n"; # Keep any \'s in string.
  167: 	print $fh $logstring;
  168: 	close($fh);
  169:     }
  170:     return 1;
  171: }
  172: 
  173: sub logperm {
  174:     my $message=shift;
  175:     my $execdir=$perlvar{'lonDaemons'};
  176:     my $now=time;
  177:     my $local=localtime($now);
  178:     if (open(my $fh,">>","$execdir/logs/lonnet.perm.log")) {
  179: 	print $fh "$now:$message:$local\n";
  180: 	close($fh);
  181:     }
  182:     return 1;
  183: }
  184: 
  185: sub create_connection {
  186:     my ($hostname,$lonid) = @_;
  187:     my $client=IO::Socket::UNIX->new(Peer    => $perlvar{'lonSockCreate'},
  188: 				     Type    => SOCK_STREAM,
  189: 				     Timeout => 10);
  190:     return 0 if (!$client);
  191:     print $client (join(':',$hostname,$lonid,&machine_ids($hostname),$loncaparevs{$lonid})."\n");
  192:     my $result = <$client>;
  193:     chomp($result);
  194:     return 1 if ($result eq 'done');
  195:     return 0;
  196: }
  197: 
  198: sub get_server_timezone {
  199:     my ($cnum,$cdom) = @_;
  200:     my $home=&homeserver($cnum,$cdom);
  201:     if ($home ne 'no_host') {
  202:         my $cachetime = 24*3600;
  203:         my ($timezone,$cached)=&is_cached_new('servertimezone',$home);
  204:         if (defined($cached)) {
  205:             return $timezone;
  206:         } else {
  207:             my $timezone = &reply('servertimezone',$home);
  208:             return &do_cache_new('servertimezone',$home,$timezone,$cachetime);
  209:         }
  210:     }
  211: }
  212: 
  213: sub get_server_distarch {
  214:     my ($lonhost,$ignore_cache) = @_;
  215:     if (defined($lonhost)) {
  216:         if (!defined(&hostname($lonhost))) {
  217:             return;
  218:         }
  219:         my $cachetime = 12*3600;
  220:         if (!$ignore_cache) {
  221:             my ($distarch,$cached)=&is_cached_new('serverdistarch',$lonhost);
  222:             if (defined($cached)) {
  223:                 return $distarch;
  224:             }
  225:         }
  226:         my $rep = &reply('serverdistarch',$lonhost);
  227:         unless ($rep eq 'unknown_command' || $rep eq 'no_such_host' ||
  228:                 $rep eq 'con_lost' || $rep eq 'rejected' || $rep eq 'refused' ||
  229:                 $rep eq '') {
  230:             return &do_cache_new('serverdistarch',$lonhost,$rep,$cachetime);
  231:         }
  232:     }
  233:     return;
  234: }
  235: 
  236: sub get_servercerts_info {
  237:     my ($lonhost,$hostname,$context) = @_;
  238:     return if ($lonhost eq '');
  239:     if ($hostname eq '') {
  240:         $hostname = &hostname($lonhost);
  241:     }
  242:     return if ($hostname eq '');
  243:     my ($rep,$uselocal);
  244:     if ($context eq 'install') {
  245:         $uselocal = 1;
  246:     } elsif (grep { $_ eq $lonhost } &current_machine_ids()) {
  247:         $uselocal = 1;
  248:     }
  249:     if (($context ne 'cgi') && ($context ne 'install') && ($uselocal)) {
  250:         my $distro = (split(/\:/,&get_server_distarch($lonhost)))[0];
  251:         if ($distro eq '') {
  252:             $uselocal = 0;
  253:         } elsif ($distro =~ /^(?:centos|redhat|scientific)(\d+)$/) {
  254:             if ($1 < 6) {
  255:                 $uselocal = 0;
  256:             }
  257:         }  elsif ($distro =~ /^(?:sles)(\d+)$/) {
  258:             if ($1 < 12) {
  259:                 $uselocal = 0;
  260:             }
  261:         }
  262:     }
  263:     if ($uselocal) {
  264:         $rep = LONCAPA::Lond::server_certs(\%perlvar,$lonhost,$hostname);
  265:     } else {
  266:         $rep=&reply('servercerts',$lonhost);
  267:     }
  268:     my ($result,%returnhash);
  269:     if (($rep=~/^(refused|rejected|error)/) || ($rep eq 'con_lost') ||
  270:         ($rep eq 'unknown_cmd')) {
  271:         $result = $rep;
  272:     } else {
  273:         $result = 'ok';
  274:         my @pairs=split(/\&/,$rep);
  275:         foreach my $item (@pairs) {
  276:             my ($key,$value)=split(/=/,$item,2);
  277:             my $what = &unescape($key);
  278:             $returnhash{$what}=&thaw_unescape($value);
  279:         }
  280:     }
  281:     return ($result,\%returnhash);
  282: }
  283: 
  284: sub get_server_loncaparev {
  285:     my ($dom,$lonhost,$ignore_cache,$caller) = @_;
  286:     if (defined($lonhost)) {
  287:         if (!defined(&hostname($lonhost))) {
  288:             undef($lonhost);
  289:         }
  290:     }
  291:     if (!defined($lonhost)) {
  292:         if (defined(&domain($dom,'primary'))) {
  293:             $lonhost=&domain($dom,'primary');
  294:             if ($lonhost eq 'no_host') {
  295:                 undef($lonhost);
  296:             }
  297:         }
  298:     }
  299:     if (defined($lonhost)) {
  300:         my $cachetime = 12*3600;
  301:         if (!$ignore_cache) {
  302:             my ($loncaparev,$cached)=&is_cached_new('serverloncaparev',$lonhost);
  303:             if (defined($cached)) {
  304:                 return $loncaparev;
  305:             }
  306:         }
  307:         my ($answer,$loncaparev);
  308:         my @ids=&current_machine_ids();
  309:         if (grep(/^\Q$lonhost\E$/,@ids)) {
  310:             $answer = $perlvar{'lonVersion'};
  311:             if ($answer =~ /^[\'\"]?([\w.\-]+)[\'\"]?$/) {
  312:                 $loncaparev = $1;
  313:             }
  314:         } else {
  315:             $answer = &reply('serverloncaparev',$lonhost);
  316:             if (($answer eq 'unknown_cmd') || ($answer eq 'con_lost')) {
  317:                 if ($caller eq 'loncron') {
  318:                     my $hostname = &hostname($lonhost);
  319:                     my $protocol = $protocol{$lonhost};
  320:                     $protocol = 'http' if ($protocol ne 'https');
  321:                     my $url = $protocol.'://'.$hostname.'/adm/about.html';
  322:                     my $request=new HTTP::Request('GET',$url);
  323:                     my $response=&LONCAPA::LWPReq::makerequest($lonhost,$request,'',\%perlvar,4,1);
  324:                     unless ($response->is_error()) {
  325:                         my $content = $response->content;
  326:                         if ($content =~ /<p>VERSION\:\s*([\w.\-]+)<\/p>/) {
  327:                             $loncaparev = $1;
  328:                         }
  329:                     }
  330:                 } else {
  331:                     $loncaparev = $loncaparevs{$lonhost};
  332:                 }
  333:             } elsif ($answer =~ /^[\'\"]?([\w.\-]+)[\'\"]?$/) {
  334:                 $loncaparev = $1;
  335:             }
  336:         }
  337:         return &do_cache_new('serverloncaparev',$lonhost,$loncaparev,$cachetime);
  338:     }
  339: }
  340: 
  341: sub get_server_homeID {
  342:     my ($hostname,$ignore_cache,$caller) = @_;
  343:     unless ($ignore_cache) {
  344:         my ($serverhomeID,$cached)=&is_cached_new('serverhomeID',$hostname);
  345:         if (defined($cached)) {
  346:             return $serverhomeID;
  347:         }
  348:     }
  349:     my $cachetime = 12*3600;
  350:     my $serverhomeID;
  351:     if ($caller eq 'loncron') { 
  352:         my @machine_ids = &machine_ids($hostname);
  353:         foreach my $id (@machine_ids) {
  354:             my $response = &reply('serverhomeID',$id);
  355:             unless (($response eq 'unknown_cmd') || ($response eq 'con_lost')) {
  356:                 $serverhomeID = $response;
  357:                 last;
  358:             }
  359:         }
  360:         if ($serverhomeID eq '') {
  361:             $serverhomeID = $machine_ids[-1];
  362:         }
  363:     } else {
  364:         $serverhomeID = $serverhomeIDs{$hostname};
  365:     }
  366:     return &do_cache_new('serverhomeID',$hostname,$serverhomeID,$cachetime);
  367: }
  368: 
  369: sub get_remote_globals {
  370:     my ($lonhost,$whathash,$ignore_cache) = @_;
  371:     my ($result,%returnhash,%whatneeded);
  372:     if (ref($whathash) eq 'HASH') {
  373:         foreach my $what (sort(keys(%{$whathash}))) {
  374:             my $hashid = $lonhost.'-'.$what;
  375:             my ($response,$cached);
  376:             unless ($ignore_cache) {
  377:                 ($response,$cached)=&is_cached_new('lonnetglobal',$hashid);
  378:             }
  379:             if (defined($cached)) {
  380:                 $returnhash{$what} = $response;
  381:             } else {
  382:                 $whatneeded{$what} = 1;
  383:             }
  384:         }
  385:         if (keys(%whatneeded) == 0) {
  386:             $result = 'ok';
  387:         } else {
  388:             my $requested = &freeze_escape(\%whatneeded);
  389:             my $rep=&reply('readlonnetglobal:'.$requested,$lonhost);
  390:             if (($rep=~/^(refused|rejected|error)/) || ($rep eq 'con_lost') ||
  391:                 ($rep eq 'unknown_cmd')) {
  392:                 $result = $rep;
  393:             } else {
  394:                 $result = 'ok';
  395:                 my @pairs=split(/\&/,$rep);
  396:                 foreach my $item (@pairs) {
  397:                     my ($key,$value)=split(/=/,$item,2);
  398:                     my $what = &unescape($key);
  399:                     my $hashid = $lonhost.'-'.$what;
  400:                     $returnhash{$what}=&thaw_unescape($value);
  401:                     &do_cache_new('lonnetglobal',$hashid,$returnhash{$what},600);
  402:                 }
  403:             }
  404:         }
  405:     }
  406:     return ($result,\%returnhash);
  407: }
  408: 
  409: sub remote_devalidate_cache {
  410:     my ($lonhost,$cachekeys) = @_;
  411:     my $items;
  412:     return unless (ref($cachekeys) eq 'ARRAY');
  413:     my $cachestr = join('&',@{$cachekeys});
  414:     my $response = &reply('devalidatecache:'.&escape($cachestr),$lonhost);
  415:     return $response;
  416: }
  417: 
  418: # -------------------------------------------------- Non-critical communication
  419: sub subreply {
  420:     my ($cmd,$server)=@_;
  421:     my $peerfile="$perlvar{'lonSockDir'}/".&hostname($server);
  422:     #
  423:     #  With loncnew process trimming, there's a timing hole between lonc server
  424:     #  process exit and the master server picking up the listen on the AF_UNIX
  425:     #  socket.  In that time interval, a lock file will exist:
  426: 
  427:     my $lockfile=$peerfile.".lock";
  428:     while (-e $lockfile) {	# Need to wait for the lockfile to disappear.
  429: 	sleep(0.1);
  430:     }
  431:     # At this point, either a loncnew parent is listening or an old lonc
  432:     # or loncnew child is listening so we can connect or everything's dead.
  433:     #
  434:     #   We'll give the connection a few tries before abandoning it.  If
  435:     #   connection is not possible, we'll con_lost back to the client.
  436:     #   
  437:     my $client;
  438:     for (my $retries = 0; $retries < $max_connection_retries; $retries++) {
  439: 	$client=IO::Socket::UNIX->new(Peer    =>"$peerfile",
  440: 				      Type    => SOCK_STREAM,
  441: 				      Timeout => 10);
  442: 	if ($client) {
  443: 	    last;		# Connected!
  444: 	} else {
  445: 	    &create_connection(&hostname($server),$server);
  446: 	}
  447:         sleep(0.1);	# Try again later if failed connection.
  448:     }
  449:     my $answer;
  450:     if ($client) {
  451: 	print $client "sethost:$server:$cmd\n";
  452: 	$answer=<$client>;
  453: 	if (!$answer) { $answer="con_lost"; }
  454: 	chomp($answer);
  455:     } else {
  456: 	$answer = 'con_lost';	# Failed connection.
  457:     }
  458:     return $answer;
  459: }
  460: 
  461: sub reply {
  462:     my ($cmd,$server)=@_;
  463:     unless (defined(&hostname($server))) { return 'no_such_host'; }
  464:     my $answer=subreply($cmd,$server);
  465:     if (($answer=~/^refused/) || ($answer=~/^rejected/)) {
  466:         my $logged = $cmd;
  467:         if ($cmd =~ /^encrypt:([^:]+):/) {
  468:             my $subcmd = $1;
  469:             if (($subcmd eq 'auth') || ($subcmd eq 'passwd') ||
  470:                 ($subcmd eq 'changeuserauth') || ($subcmd eq 'makeuser') ||
  471:                 ($subcmd eq 'putdom') || ($subcmd eq 'autoexportgrades') ||
  472:                 ($subcmd eq 'put')) {
  473:                 (undef,undef,my @rest) = split(/:/,$cmd);
  474:                 if (($subcmd eq 'auth') || ($subcmd eq 'putdom')) {
  475:                     splice(@rest,2,1,'Hidden');
  476:                 } elsif ($subcmd eq 'passwd') {
  477:                     splice(@rest,2,2,('Hidden','Hidden'));
  478:                 } elsif (($subcmd eq 'changeuserauth') || ($subcmd eq 'makeuser') ||
  479:                          ($subcmd eq 'autoexportgrades') || ($subcmd eq 'put')) {
  480:                     splice(@rest,3,1,'Hidden');
  481:                 }
  482:                 $logged = join(':',('encrypt:'.$subcmd,@rest));
  483:             }
  484:         }
  485:         &logthis("<font color=\"blue\">WARNING:".
  486:                  " $logged to $server returned $answer</font>");
  487:     }
  488:     return $answer;
  489: }
  490: 
  491: # ----------------------------------------------------------- Send USR1 to lonc
  492: 
  493: sub reconlonc {
  494:     my ($lonid) = @_;
  495:     if ($lonid) {
  496:         my $hostname = &hostname($lonid);
  497: 	my $peerfile="$perlvar{'lonSockDir'}/$hostname";
  498: 	if ($hostname && -e $peerfile) {
  499: 	    &logthis("Trying to reconnect lonc for $lonid ($hostname)");
  500: 	    my $client=IO::Socket::UNIX->new(Peer    => $peerfile,
  501: 					     Type    => SOCK_STREAM,
  502: 					     Timeout => 10);
  503: 	    if ($client) {
  504: 		print $client ("reset_retries\n");
  505: 		my $answer=<$client>;
  506: 		#reset just this one.
  507: 	    }
  508: 	}
  509: 	return;
  510:     }
  511: 
  512:     &logthis("Trying to reconnect lonc");
  513:     my $loncfile="$perlvar{'lonDaemons'}/logs/lonc.pid";
  514:     if (open(my $fh,"<",$loncfile)) {
  515: 	my $loncpid=<$fh>;
  516:         chomp($loncpid);
  517:         if (kill 0 => $loncpid) {
  518: 	    &logthis("lonc at pid $loncpid responding, sending USR1");
  519:             kill USR1 => $loncpid;
  520:             sleep 1;
  521:         } else {
  522: 	    &logthis(
  523:                "<font color=\"blue\">WARNING:".
  524:                " lonc at pid $loncpid not responding, giving up</font>");
  525:         }
  526:     } else {
  527: 	&logthis('<font color="blue">WARNING: lonc not running, giving up</font>');
  528:     }
  529: }
  530: 
  531: # ------------------------------------------------------ Critical communication
  532: 
  533: sub critical {
  534:     my ($cmd,$server)=@_;
  535:     unless (&hostname($server)) {
  536:         &logthis("<font color=\"blue\">WARNING:".
  537:                " Critical message to unknown server ($server)</font>");
  538:         return 'no_such_host';
  539:     }
  540:     my $answer=reply($cmd,$server);
  541:     if ($answer eq 'con_lost') {
  542: 	&reconlonc($server);
  543: 	my $answer=reply($cmd,$server);
  544:         if ($answer eq 'con_lost') {
  545:             my $now=time;
  546:             my $middlename=$cmd;
  547:             $middlename=substr($middlename,0,16);
  548:             $middlename=~s/\W//g;
  549:             my $dfilename=
  550:       "$perlvar{'lonSockDir'}/delayed/$now.$dumpcount.$$.$middlename.$server";
  551:             $dumpcount++;
  552:             {
  553: 		my $dfh;
  554: 		if (open($dfh,">",$dfilename)) {
  555: 		    print $dfh "$cmd\n"; 
  556: 		    close($dfh);
  557: 		}
  558:             }
  559:             sleep 1;
  560:             my $wcmd='';
  561:             {
  562: 		my $dfh;
  563: 		if (open($dfh,"<",$dfilename)) {
  564: 		    $wcmd=<$dfh>; 
  565: 		    close($dfh);
  566: 		}
  567:             }
  568:             chomp($wcmd);
  569:             if ($wcmd eq $cmd) {
  570: 		&logthis("<font color=\"blue\">WARNING: ".
  571:                          "Connection buffer $dfilename: $cmd</font>");
  572:                 &logperm("D:$server:$cmd");
  573: 	        return 'con_delayed';
  574:             } else {
  575:                 &logthis("<font color=\"red\">CRITICAL:"
  576:                         ." Critical connection failed: $server $cmd</font>");
  577:                 &logperm("F:$server:$cmd");
  578:                 return 'con_failed';
  579:             }
  580:         }
  581:     }
  582:     return $answer;
  583: }
  584: 
  585: # ------------------------------------------- check if return value is an error
  586: 
  587: sub error {
  588:     my ($result) = @_;
  589:     if ($result =~ /^(con_lost|no_such_host|error: (\d+) (.*))/) {
  590: 	if ($2 == 2) { return undef; }
  591: 	return $1;
  592:     }
  593:     return undef;
  594: }
  595: 
  596: sub convert_and_load_session_env {
  597:     my ($lonidsdir,$handle)=@_;
  598:     my @profile;
  599:     {
  600: 	my $opened = open(my $idf,'+<',"$lonidsdir/$handle.id");
  601: 	if (!$opened) {
  602: 	    return 0;
  603: 	}
  604: 	flock($idf,LOCK_SH);
  605: 	@profile=<$idf>;
  606: 	close($idf);
  607:     }
  608:     my %temp_env;
  609:     foreach my $line (@profile) {
  610: 	if ($line !~ m/=/) {
  611: 	    return 0;
  612: 	}
  613: 	chomp($line);
  614: 	my ($envname,$envvalue)=split(/=/,$line,2);
  615: 	$temp_env{&unescape($envname)} = &unescape($envvalue);
  616:     }
  617:     unlink("$lonidsdir/$handle.id");
  618:     if (tie(my %disk_env,'GDBM_File',"$lonidsdir/$handle.id",&GDBM_WRCREAT(),
  619: 	    0640)) {
  620: 	%disk_env = %temp_env;
  621: 	@env{keys(%temp_env)} = @disk_env{keys(%temp_env)};
  622: 	untie(%disk_env);
  623:     }
  624:     return 1;
  625: }
  626: 
  627: # ------------------------------------------- Transfer profile into environment
  628: my $env_loaded;
  629: sub transfer_profile_to_env {
  630:     my ($lonidsdir,$handle,$force_transfer) = @_;
  631:     if (!$force_transfer && $env_loaded) { return; } 
  632: 
  633:     if (!defined($lonidsdir)) {
  634: 	$lonidsdir = $perlvar{'lonIDsDir'};
  635:     }
  636:     if (!defined($handle)) {
  637:         ($handle) = ($env{'user.environment'} =~m|/([^/]+)\.id$| );
  638:     }
  639: 
  640:     my $convert;
  641:     {
  642:     	my $opened = open(my $idf,'+<',"$lonidsdir/$handle.id");
  643: 	if (!$opened) {
  644: 	    return;
  645: 	}
  646: 	flock($idf,LOCK_SH);
  647: 	if (tie(my %disk_env,'GDBM_File',"$lonidsdir/$handle.id",
  648: 		&GDBM_READER(),0640)) {
  649: 	    @env{keys(%disk_env)} = @disk_env{keys(%disk_env)};
  650: 	    untie(%disk_env);
  651: 	} else {
  652: 	    $convert = 1;
  653: 	}
  654:     }
  655:     if ($convert) {
  656: 	if (!&convert_and_load_session_env($lonidsdir,$handle)) {
  657: 	    &logthis("Failed to load session, or convert session.");
  658: 	}
  659:     }
  660: 
  661:     my %remove;
  662:     while ( my $envname = each(%env) ) {
  663:         if (my ($key,$time) = ($envname =~ /^(cgi\.(\d+)_\d+\.)/)) {
  664:             if ($time < time-300) {
  665:                 $remove{$key}++;
  666:             }
  667:         }
  668:     }
  669: 
  670:     $env{'user.environment'} = "$lonidsdir/$handle.id";
  671:     $env_loaded=1;
  672:     foreach my $expired_key (keys(%remove)) {
  673:         &delenv($expired_key);
  674:     }
  675: }
  676: 
  677: # ---------------------------------------------------- Check for valid session 
  678: sub check_for_valid_session {
  679:     my ($r,$name,$userhashref,$domref) = @_;
  680:     my %cookies=CGI::Cookie->parse($r->header_in('Cookie'));
  681:     my ($lonidsdir,$linkname,$pubname,$secure,$lonid);
  682:     if ($name eq 'lonDAV') {
  683:         $lonidsdir=$r->dir_config('lonDAVsessDir');
  684:     } else {
  685:         $lonidsdir=$r->dir_config('lonIDsDir');
  686:         if ($name eq '') {
  687:             $name = 'lonID';
  688:         }
  689:     }
  690:     if ($name eq 'lonID') {
  691:         $secure = 'lonSID';
  692:         $linkname = 'lonLinkID';
  693:         $pubname = 'lonPubID';
  694:         if (exists($cookies{$secure})) {
  695:             $lonid=$cookies{$secure};
  696:         } elsif (exists($cookies{$name})) {
  697:             $lonid=$cookies{$name};
  698:         } elsif ((exists($cookies{$linkname})) && ($ENV{'SERVER_PORT'} != 443)) {
  699:             $lonid=$cookies{$linkname};
  700:         } elsif (exists($cookies{$pubname})) {
  701:             $lonid=$cookies{$pubname};
  702:         }
  703:     } else {
  704:         $lonid=$cookies{$name};
  705:     }
  706:     return undef if (!$lonid);
  707: 
  708:     my $handle=&LONCAPA::clean_handle($lonid->value);
  709:     if (-l "$lonidsdir/$handle.id") {
  710:         my $link = readlink("$lonidsdir/$handle.id");
  711:         if ((-e $link) && ($link =~ m{^\Q$lonidsdir\E/(.+)\.id$})) {
  712:             $handle = $1;
  713:         }
  714:     }
  715:     if (!-e "$lonidsdir/$handle.id") {
  716:         if ((ref($domref)) && ($name eq 'lonID') && 
  717:             ($handle =~ /^($match_username)\_\d+\_($match_domain)\_(.+)$/)) {
  718:             my ($possuname,$possudom,$possuhome) = ($1,$2,$3);
  719:             if ((&domain($possudom) ne '') && (&homeserver($possuname,$possudom) eq $possuhome)) {
  720:                 $$domref = $possudom;
  721:             }
  722:         }
  723:         return undef;
  724:     }
  725: 
  726:     my $opened = open(my $idf,'+<',"$lonidsdir/$handle.id");
  727:     return undef if (!$opened);
  728: 
  729:     flock($idf,LOCK_SH);
  730:     my %disk_env;
  731:     if (!tie(%disk_env,'GDBM_File',"$lonidsdir/$handle.id",
  732: 	    &GDBM_READER(),0640)) {
  733: 	return undef;	
  734:     }
  735: 
  736:     if (!defined($disk_env{'user.name'})
  737: 	|| !defined($disk_env{'user.domain'})) {
  738:         untie(%disk_env);
  739: 	return undef;
  740:     }
  741: 
  742:     if (ref($userhashref) eq 'HASH') {
  743:         $userhashref->{'name'} = $disk_env{'user.name'};
  744:         $userhashref->{'domain'} = $disk_env{'user.domain'};
  745:         if ($disk_env{'request.role'}) {
  746:             $userhashref->{'role'} = $disk_env{'request.role'};
  747:         }
  748:         $userhashref->{'lti'} = $disk_env{'request.lti.login'};
  749:         if ($userhashref->{'lti'}) {
  750:             $userhashref->{'ltitarget'} = $disk_env{'request.lti.target'};
  751:             $userhashref->{'ltiuri'} = $disk_env{'request.lti.uri'};
  752:         }
  753:     }
  754:     untie(%disk_env);
  755: 
  756:     return $handle;
  757: }
  758: 
  759: sub timed_flock {
  760:     my ($file,$lock_type) = @_;
  761:     my $failed=0;
  762:     eval {
  763: 	local $SIG{__DIE__}='DEFAULT';
  764: 	local $SIG{ALRM}=sub {
  765: 	    $failed=1;
  766: 	    die("failed lock");
  767: 	};
  768: 	alarm(13);
  769: 	flock($file,$lock_type);
  770: 	alarm(0);
  771:     };
  772:     if ($failed) {
  773: 	return undef;
  774:     } else {
  775: 	return 1;
  776:     }
  777: }
  778: 
  779: sub get_sessionfile_vars {
  780:     my ($handle,$lonidsdir,$storearr) = @_;
  781:     my %returnhash;
  782:     unless (ref($storearr) eq 'ARRAY') {
  783:         return %returnhash;
  784:     }
  785:     if (-l "$lonidsdir/$handle.id") {
  786:         my $link = readlink("$lonidsdir/$handle.id");
  787:         if ((-e $link) && ($link =~ m{^\Q$lonidsdir\E/(.+)\.id$})) {
  788:             $handle = $1;
  789:         }
  790:     }
  791:     if ((-e "$lonidsdir/$handle.id") &&
  792:         ($handle =~ /^($match_username)\_\d+\_($match_domain)\_(.+)$/)) {
  793:         my ($possuname,$possudom,$possuhome) = ($1,$2,$3);
  794:         if ((&domain($possudom) ne '') && (&homeserver($possuname,$possudom) eq $possuhome)) {
  795:             if (open(my $idf,'+<',"$lonidsdir/$handle.id")) {
  796:                 flock($idf,LOCK_SH);
  797:                 if (tie(my %disk_env,'GDBM_File',"$lonidsdir/$handle.id",
  798:                         &GDBM_READER(),0640)) {
  799:                     foreach my $item (@{$storearr}) {
  800:                         $returnhash{$item} = $disk_env{$item};
  801:                     }
  802:                     untie(%disk_env);
  803:                 }
  804:             }
  805:         }
  806:     }
  807:     return %returnhash;
  808: }
  809: 
  810: # ---------------------------------------------------------- Append Environment
  811: 
  812: sub appenv {
  813:     my ($newenv,$roles) = @_;
  814:     if (ref($newenv) eq 'HASH') {
  815:         foreach my $key (keys(%{$newenv})) {
  816:             my $refused = 0;
  817: 	    if (($key =~ /^user\.role/) || ($key =~ /^user\.priv/)) {
  818:                 $refused = 1;
  819:                 if (ref($roles) eq 'ARRAY') {
  820:                     my ($type,$role) = ($key =~ m{^user\.(role|priv)\.(.+?)\./});
  821:                     if (grep(/^\Q$role\E$/,@{$roles})) {
  822:                         $refused = 0;
  823:                     }
  824:                 }
  825:             }
  826:             if ($refused) {
  827:                 &logthis("<font color=\"blue\">WARNING: ".
  828:                          "Attempt to modify environment ".$key." to ".$newenv->{$key}
  829:                          .'</font>');
  830: 	        delete($newenv->{$key});
  831:             } else {
  832:                 $env{$key}=$newenv->{$key};
  833:             }
  834:         }
  835:         my $lonids = $perlvar{'lonIDsDir'};
  836:         if ($env{'user.environment'} =~ m{^\Q$lonids/\E$match_username\_\d+\_$match_domain\_[\w\-.]+\.id$}) {
  837:             my $opened = open(my $env_file,'+<',$env{'user.environment'});
  838:             if ($opened
  839: 	        && &timed_flock($env_file,LOCK_EX)
  840: 	        &&
  841: 	        tie(my %disk_env,'GDBM_File',$env{'user.environment'},
  842: 	            (&GDBM_WRITER()|&GDBM_NOLOCK()),0640)) {
  843: 	        while (my ($key,$value) = each(%{$newenv})) {
  844: 	            $disk_env{$key} = $value;
  845: 	        }
  846: 	        untie(%disk_env);
  847:             }
  848:         }
  849:     }
  850:     return 'ok';
  851: }
  852: # ----------------------------------------------------- Delete from Environment
  853: 
  854: sub delenv {
  855:     my ($delthis,$regexp,$roles) = @_;
  856:     if (($delthis=~/^user\.role/) || ($delthis=~/^user\.priv/)) {
  857:         my $refused = 1;
  858:         if (ref($roles) eq 'ARRAY') {
  859:             my ($type,$role) = ($delthis =~ /^user\.(role|priv)\.([^.]+)\./);
  860:             if (grep(/^\Q$role\E$/,@{$roles})) {
  861:                 $refused = 0;
  862:             }
  863:         }
  864:         if ($refused) {
  865:             &logthis("<font color=\"blue\">WARNING: ".
  866:                      "Attempt to delete from environment ".$delthis);
  867:             return 'error';
  868:         }
  869:     }
  870:     my $opened = open(my $env_file,'+<',$env{'user.environment'});
  871:     if ($opened
  872: 	&& &timed_flock($env_file,LOCK_EX)
  873: 	&&
  874: 	tie(my %disk_env,'GDBM_File',$env{'user.environment'},
  875: 	    (&GDBM_WRITER()|&GDBM_NOLOCK()),0640)) {
  876: 	foreach my $key (keys(%disk_env)) {
  877: 	    if ($regexp) {
  878:                 if ($key=~/^$delthis/) {
  879:                     delete($env{$key});
  880:                     delete($disk_env{$key});
  881:                 } 
  882:             } else {
  883:                 if ($key=~/^\Q$delthis\E/) {
  884: 		    delete($env{$key});
  885: 		    delete($disk_env{$key});
  886: 	        }
  887:             }
  888: 	}
  889: 	untie(%disk_env);
  890:     }
  891:     return 'ok';
  892: }
  893: 
  894: sub get_env_multiple {
  895:     my ($name) = @_;
  896:     my @values;
  897:     if (defined($env{$name})) {
  898:         # exists is it an array
  899:         if (ref($env{$name})) {
  900:             @values=@{ $env{$name} };
  901:         } else {
  902:             $values[0]=$env{$name};
  903:         }
  904:     }
  905:     return(@values);
  906: }
  907: 
  908: # ------------------------------------------------------------------- Locking
  909: 
  910: sub set_lock {
  911:     my ($text)=@_;
  912:     $locknum++;
  913:     my $id=$$.'-'.$locknum;
  914:     &appenv({'session.locks' => $env{'session.locks'}.','.$id,
  915:              'session.lock.'.$id => $text});
  916:     return $id;
  917: }
  918: 
  919: sub get_locks {
  920:     my $num=0;
  921:     my %texts=();
  922:     foreach my $lock (split(/\,/,$env{'session.locks'})) {
  923:        if ($lock=~/\w/) {
  924:           $num++;
  925:           $texts{$lock}=$env{'session.lock.'.$lock};
  926:        }
  927:    }
  928:    return ($num,%texts);
  929: }
  930: 
  931: sub remove_lock {
  932:     my ($id)=@_;
  933:     my $newlocks='';
  934:     foreach my $lock (split(/\,/,$env{'session.locks'})) {
  935:        if (($lock=~/\w/) && ($lock ne $id)) {
  936:           $newlocks.=','.$lock;
  937:        }
  938:     }
  939:     &appenv({'session.locks' => $newlocks});
  940:     &delenv('session.lock.'.$id);
  941: }
  942: 
  943: sub remove_all_locks {
  944:     my $activelocks=$env{'session.locks'};
  945:     foreach my $lock (split(/\,/,$env{'session.locks'})) {
  946:        if ($lock=~/\w/) {
  947:           &remove_lock($lock);
  948:        }
  949:     }
  950: }
  951: 
  952: 
  953: # ------------------------------------------ Find out current server userload
  954: sub userload {
  955:     my $numusers=0;
  956:     {
  957: 	opendir(LONIDS,$perlvar{'lonIDsDir'});
  958: 	my $filename;
  959: 	my $curtime=time;
  960: 	while ($filename=readdir(LONIDS)) {
  961: 	    next if ($filename eq '.' || $filename eq '..');
  962: 	    next if ($filename =~ /publicuser_\d+\.id/);
  963:             next if ($filename =~ /^[a-f0-9]+_linked\.id$/);
  964: 	    my ($mtime)=(stat($perlvar{'lonIDsDir'}.'/'.$filename))[9];
  965: 	    if ($curtime-$mtime < 1800) { $numusers++; }
  966: 	}
  967: 	closedir(LONIDS);
  968:     }
  969:     my $userloadpercent=0;
  970:     my $maxuserload=$perlvar{'lonUserLoadLim'};
  971:     if ($maxuserload) {
  972: 	$userloadpercent=100*$numusers/$maxuserload;
  973:     }
  974:     $userloadpercent=sprintf("%.2f",$userloadpercent);
  975:     return $userloadpercent;
  976: }
  977: 
  978: # ------------------------------ Find server with least workload from spare.tab
  979: 
  980: sub spareserver {
  981:     my ($r,$loadpercent,$userloadpercent,$want_server_name,$udom) = @_;
  982:     my $spare_server;
  983:     if ($userloadpercent !~ /\d/) { $userloadpercent=0; }
  984:     my $lowest_load=($loadpercent > $userloadpercent) ? $loadpercent 
  985:                                                      :  $userloadpercent;
  986:     my ($uint_dom,$remotesessions);
  987:     if (($udom ne '') && (&domain($udom) ne '')) {
  988:         my $uprimary_id = &Apache::lonnet::domain($udom,'primary');
  989:         $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);
  990:         my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);
  991:         $remotesessions = $udomdefaults{'remotesessions'};
  992:     }
  993:     my $spareshash = &this_host_spares($udom);
  994:     if (ref($spareshash) eq 'HASH') {
  995:         if (ref($spareshash->{'primary'}) eq 'ARRAY') {
  996:             foreach my $try_server (@{ $spareshash->{'primary'} }) {
  997:                 next unless (&spare_can_host($udom,$uint_dom,$remotesessions,
  998:                                              $try_server));
  999: 	        ($spare_server, $lowest_load) =
 1000: 	            &compare_server_load($try_server, $spare_server, $lowest_load);
 1001:             }
 1002:         }
 1003: 
 1004:         my $found_server = ($spare_server ne '' && $lowest_load < 100);
 1005: 
 1006:         if (!$found_server) {
 1007:             if (ref($spareshash->{'default'}) eq 'ARRAY') { 
 1008: 	        foreach my $try_server (@{ $spareshash->{'default'} }) {
 1009:                     next unless (&spare_can_host($udom,$uint_dom,
 1010:                                                  $remotesessions,$try_server));
 1011: 	            ($spare_server, $lowest_load) =
 1012: 		        &compare_server_load($try_server, $spare_server, $lowest_load);
 1013:                 }
 1014: 	    }
 1015:         }
 1016:     }
 1017: 
 1018:     if (!$want_server_name) {
 1019:         if (defined($spare_server)) {
 1020:             my $hostname = &hostname($spare_server);
 1021:             if (defined($hostname)) {
 1022:                 my $protocol = 'http';
 1023:                 if ($protocol{$spare_server} eq 'https') {
 1024:                     $protocol = $protocol{$spare_server};
 1025:                 }
 1026:                 my $alias = &Apache::lonnet::use_proxy_alias($r,$spare_server);
 1027:                 $hostname = $alias if ($alias ne '');
 1028: 	        $spare_server = $protocol.'://'.$hostname;
 1029:             }
 1030:         }
 1031:     }
 1032:     return $spare_server;
 1033: }
 1034: 
 1035: sub compare_server_load {
 1036:     my ($try_server, $spare_server, $lowest_load, $required) = @_;
 1037: 
 1038:     if ($required) {
 1039:         my ($reqdmajor,$reqdminor) = ($required =~ /^(\d+)\.(\d+)$/);
 1040:         my $remoterev = &get_server_loncaparev(undef,$try_server);
 1041:         my ($major,$minor) = ($remoterev =~ /^\'?(\d+)\.(\d+)\.[\w.\-]+\'?$/);
 1042:         if (($major eq '' && $minor eq '') ||
 1043:             (($reqdmajor > $major) || (($reqdmajor == $major) && ($reqdminor > $minor)))) {
 1044:             return ($spare_server,$lowest_load);
 1045:         }
 1046:     }
 1047: 
 1048:     my $loadans     = &reply('load',    $try_server);
 1049:     my $userloadans = &reply('userload',$try_server);
 1050: 
 1051:     if ($loadans !~ /\d/ && $userloadans !~ /\d/) {
 1052: 	return ($spare_server, $lowest_load); #didn't get a number from the server
 1053:     }
 1054: 
 1055:     my $load;
 1056:     if ($loadans =~ /\d/) {
 1057: 	if ($userloadans =~ /\d/) {
 1058: 	    #both are numbers, pick the bigger one
 1059: 	    $load = ($loadans > $userloadans) ? $loadans 
 1060: 		                              : $userloadans;
 1061: 	} else {
 1062: 	    $load = $loadans;
 1063: 	}
 1064:     } else {
 1065: 	$load = $userloadans;
 1066:     }
 1067: 
 1068:     if (($load =~ /\d/) && ($load < $lowest_load)) {
 1069: 	$spare_server = $try_server;
 1070: 	$lowest_load  = $load;
 1071:     }
 1072:     return ($spare_server,$lowest_load);
 1073: }
 1074: 
 1075: # --------------------------- ask offload servers if user already has a session
 1076: sub find_existing_session {
 1077:     my ($udom,$uname) = @_;
 1078:     my $spareshash = &this_host_spares($udom);
 1079:     if (ref($spareshash) eq 'HASH') {
 1080:         if (ref($spareshash->{'primary'}) eq 'ARRAY') {
 1081:             foreach my $try_server (@{ $spareshash->{'primary'} }) {
 1082:                 return $try_server if (&has_user_session($try_server, $udom, $uname));
 1083:             }
 1084:         }
 1085:         if (ref($spareshash->{'default'}) eq 'ARRAY') {
 1086:             foreach my $try_server (@{ $spareshash->{'default'} }) {
 1087:                 return $try_server if (&has_user_session($try_server, $udom, $uname));
 1088:             }
 1089:         }
 1090:     }
 1091:     return;
 1092: }
 1093: 
 1094: sub delusersession {
 1095:     my ($lonid,$udom,$uname) = @_;
 1096:     my $uprimary_id = &domain($udom,'primary');
 1097:     my $uintdom = &internet_dom($uprimary_id);
 1098:     my $intdom = &internet_dom($lonid);
 1099:     my $serverhomedom = &host_domain($lonid);
 1100:     if (($uintdom ne '') && ($uintdom eq $intdom)) {
 1101:         return &reply(join(':','delusersession',
 1102:                             map {&escape($_)} ($udom,$uname)),$lonid);
 1103:     }
 1104:     return;
 1105: }
 1106: 
 1107: # check if user's browser sent load balancer cookie and server still has session
 1108: # and is not overloaded.
 1109: sub check_for_balancer_cookie {
 1110:     my ($r,$update_mtime) = @_;
 1111:     my ($otherserver,$cookie);
 1112:     my %cookies=CGI::Cookie->parse($r->header_in('Cookie'));
 1113:     if (exists($cookies{'balanceID'})) {
 1114:         my $balid = $cookies{'balanceID'};
 1115:         $cookie=&LONCAPA::clean_handle($balid->value);
 1116:         my $balancedir=$r->dir_config('lonBalanceDir');
 1117:         if ((-d $balancedir) && (-e "$balancedir/$cookie.id")) {
 1118:             if ($cookie =~ /^($match_domain)_($match_username)_[a-f0-9]+$/) {
 1119:                 my ($possudom,$possuname) = ($1,$2);
 1120:                 my $has_session = 0;
 1121:                 if ((&domain($possudom) ne '') &&
 1122:                     (&homeserver($possuname,$possudom) ne 'no_host')) {
 1123:                     my $try_server;
 1124:                     my $opened = open(my $idf,'+<',"$balancedir/$cookie.id");
 1125:                     if ($opened) {
 1126:                         flock($idf,LOCK_SH);
 1127:                         while (my $line = <$idf>) {
 1128:                             chomp($line);
 1129:                             if (&hostname($line) ne '') {
 1130:                                 $try_server = $line;
 1131:                                 last;
 1132:                             }
 1133:                         }
 1134:                         close($idf);
 1135:                         if (($try_server) &&
 1136:                             (&has_user_session($try_server,$possudom,$possuname))) {
 1137:                             my $lowest_load = 30000;
 1138:                             ($otherserver,$lowest_load) =
 1139:                                 &compare_server_load($try_server,undef,$lowest_load);
 1140:                             if ($otherserver ne '' && $lowest_load < 100) {
 1141:                                 $has_session = 1;
 1142:                             } else {
 1143:                                 undef($otherserver);
 1144:                             }
 1145:                         }
 1146:                     }
 1147:                 }
 1148:                 if ($has_session) {
 1149:                     if ($update_mtime) {
 1150:                         my $atime = my $mtime = time;
 1151:                         utime($atime,$mtime,"$balancedir/$cookie.id");
 1152:                     }
 1153:                 } else {
 1154:                     unlink("$balancedir/$cookie.id");
 1155:                 }
 1156:             }
 1157:         }
 1158:     }
 1159:     return ($otherserver,$cookie);
 1160: }
 1161: 
 1162: sub updatebalcookie {
 1163:     my ($cookie,$balancer,$lastentry)=@_;
 1164:     if ($cookie =~ /^($match_domain)\_($match_username)\_[a-f0-9]{32}$/) {
 1165:         my ($udom,$uname) = ($1,$2);
 1166:         my $uprimary_id = &domain($udom,'primary');
 1167:         my $uintdom = &internet_dom($uprimary_id);
 1168:         my $intdom = &internet_dom($balancer);
 1169:         my $serverhomedom = &host_domain($balancer);
 1170:         if (($uintdom ne '') && ($uintdom eq $intdom)) {
 1171:             return &reply('updatebalcookie:'.&escape($cookie).':'.&escape($lastentry),$balancer);
 1172:         }
 1173:     }
 1174:     return;
 1175: }
 1176: 
 1177: sub delbalcookie {
 1178:     my ($cookie,$balancer) =@_;
 1179:     if ($cookie =~ /^($match_domain)\_($match_username)\_[a-f0-9]{32}$/) {
 1180:         my ($udom,$uname) = ($1,$2);
 1181:         my $uprimary_id = &domain($udom,'primary');
 1182:         my $uintdom = &internet_dom($uprimary_id);
 1183:         my $intdom = &internet_dom($balancer);
 1184:         my $serverhomedom = &host_domain($balancer);
 1185:         if (($uintdom ne '') && ($uintdom eq $intdom)) {
 1186:             return &reply('delbalcookie:'.&escape($cookie),$balancer);
 1187:         }
 1188:     }
 1189: }
 1190: 
 1191: # -------------------------------- ask if server already has a session for user
 1192: sub has_user_session {
 1193:     my ($lonid,$udom,$uname) = @_;
 1194:     my $result = &reply(join(':','userhassession',
 1195: 			     map {&escape($_)} ($udom,$uname)),$lonid);
 1196:     return 1 if ($result eq 'ok');
 1197: 
 1198:     return 0;
 1199: }
 1200: 
 1201: # --------- determine least loaded server in a user's domain which allows login
 1202: 
 1203: sub choose_server {
 1204:     my ($udom,$checkloginvia,$required,$skiploadbal) = @_;
 1205:     my %domconfhash = &Apache::loncommon::get_domainconf($udom);
 1206:     my %servers = &get_servers($udom);
 1207:     my $lowest_load = 30000;
 1208:     my ($login_host,$hostname,$portal_path,$isredirect,$balancers);
 1209:     if ($skiploadbal) {
 1210:         ($balancers,my $cached)=&is_cached_new('loadbalancing',$udom);
 1211:         unless (defined($cached)) {
 1212:             my $cachetime = 60*60*24;
 1213:             my %domconfig =
 1214:                 &Apache::lonnet::get_dom('configuration',['loadbalancing'],$udom);
 1215:             if (ref($domconfig{'loadbalancing'}) eq 'HASH') {
 1216:                 $balancers = &do_cache_new('loadbalancing',$udom,$domconfig{'loadbalancing'},
 1217:                                            $cachetime);
 1218:             }
 1219:         }
 1220:     }
 1221:     foreach my $lonhost (keys(%servers)) {
 1222:         if ($skiploadbal) {
 1223:             if (ref($balancers) eq 'HASH') {
 1224:                 next if (exists($balancers->{$lonhost}));
 1225:             }
 1226:         }
 1227:         my $loginvia;
 1228:         if ($checkloginvia) {
 1229:             $loginvia = $domconfhash{$udom.'.login.loginvia_'.$lonhost};
 1230:             if ($loginvia) {
 1231:                 my ($server,$path) = split(/:/,$loginvia);
 1232:                 ($login_host, $lowest_load) =
 1233:                     &compare_server_load($server, $login_host, $lowest_load, $required);
 1234:                 if ($login_host eq $server) {
 1235:                     $portal_path = $path;
 1236:                     $isredirect = 1;
 1237:                 }
 1238:             } else {
 1239:                 ($login_host, $lowest_load) =
 1240:                     &compare_server_load($lonhost, $login_host, $lowest_load, $required);
 1241:                 if ($login_host eq $lonhost) {
 1242:                     $portal_path = '';
 1243:                     $isredirect = ''; 
 1244:                 }
 1245:             }
 1246:         } else {
 1247:             ($login_host, $lowest_load) =
 1248:                 &compare_server_load($lonhost, $login_host, $lowest_load, $required);
 1249:         }
 1250:     }
 1251:     if ($login_host ne '') {
 1252:         $hostname = &hostname($login_host);
 1253:     }
 1254:     return ($login_host,$hostname,$portal_path,$isredirect,$lowest_load);
 1255: }
 1256: 
 1257: sub get_course_sessions {
 1258:     my ($cnum,$cdom,$lastactivity) = @_;
 1259:     my %servers = &internet_dom_servers($cdom);
 1260:     my %returnhash;
 1261:     foreach my $server (sort(keys(%servers))) {
 1262:         my $rep = &reply("coursesessions:$cdom:$cnum:$lastactivity",$server);
 1263:         my @pairs=split(/\&/,$rep);
 1264:         unless (($rep eq 'unknown_cmd') || ($rep =~ /^error/)) {
 1265:             foreach my $item (@pairs) {
 1266:                 my ($key,$value)=split(/=/,$item,2);
 1267:                 $key = &unescape($key);
 1268:                 next if ($key =~ /^error: 2 /);
 1269:                 if (exists($returnhash{$key})) {
 1270:                     next if ($value < $returnhash{$key});
 1271:                 }
 1272:                 $returnhash{$key}=$value;
 1273:             }
 1274:         }
 1275:     }
 1276:     return %returnhash;
 1277: }
 1278: 
 1279: # --------------------------------------------- Try to change a user's password
 1280: 
 1281: sub changepass {
 1282:     my ($uname,$udom,$currentpass,$newpass,$server,$context)=@_;
 1283:     $currentpass = &escape($currentpass);
 1284:     $newpass     = &escape($newpass);
 1285:     my $lonhost = $perlvar{'lonHostID'};
 1286:     my $answer = reply("encrypt:passwd:$udom:$uname:$currentpass:$newpass:$context:$lonhost",
 1287: 		       $server);
 1288:     if (! $answer) {
 1289: 	&logthis("No reply on password change request to $server ".
 1290: 		 "by $uname in domain $udom.");
 1291:     } elsif ($answer =~ "^ok") {
 1292:         &logthis("$uname in $udom successfully changed their password ".
 1293: 		 "on $server.");
 1294:     } elsif ($answer =~ "^pwchange_failure") {
 1295: 	&logthis("$uname in $udom was unable to change their password ".
 1296: 		 "on $server.  The action was blocked by either lcpasswd ".
 1297: 		 "or pwchange");
 1298:     } elsif ($answer =~ "^non_authorized") {
 1299:         &logthis("$uname in $udom did not get their password correct when ".
 1300: 		 "attempting to change it on $server.");
 1301:     } elsif ($answer =~ "^auth_mode_error") {
 1302:         &logthis("$uname in $udom attempted to change their password despite ".
 1303: 		 "not being locally or internally authenticated on $server.");
 1304:     } elsif ($answer =~ "^unknown_user") {
 1305:         &logthis("$uname in $udom attempted to change their password ".
 1306: 		 "on $server but were unable to because $server is not ".
 1307: 		 "their home server.");
 1308:     } elsif ($answer =~ "^refused") {
 1309: 	&logthis("$server refused to change $uname in $udom password because ".
 1310: 		 "it was sent an unencrypted request to change the password.");
 1311:     } elsif ($answer =~ "invalid_client") {
 1312:         &logthis("$server refused to change $uname in $udom password because ".
 1313:                  "it was a reset by e-mail originating from an invalid server.");
 1314:     } elsif ($answer =~ "^prioruse") {
 1315:        &logthis("$server refused to change $uname in $udom password because ".
 1316:                 "the password had been used before");
 1317:     }
 1318:     return $answer;
 1319: }
 1320: 
 1321: # ----------------------- Try to determine user's current authentication scheme
 1322: 
 1323: sub queryauthenticate {
 1324:     my ($uname,$udom)=@_;
 1325:     my $uhome=&homeserver($uname,$udom);
 1326:     if (!$uhome) {
 1327: 	&logthis("User $uname at $udom is unknown when looking for authentication mechanism");
 1328: 	return 'no_host';
 1329:     }
 1330:     my $answer=reply("encrypt:currentauth:$udom:$uname",$uhome);
 1331:     if ($answer =~ /^(unknown_user|refused|con_lost)/) {
 1332: 	&logthis("User $uname at $udom threw error $answer when checking authentication mechanism");
 1333:     }
 1334:     return $answer;
 1335: }
 1336: 
 1337: # --------- Try to authenticate user from domain's lib servers (first this one)
 1338: 
 1339: sub authenticate {
 1340:     my ($uname,$upass,$udom,$checkdefauth,$clientcancheckhost)=@_;
 1341:     $upass=&escape($upass);
 1342:     $uname= &LONCAPA::clean_username($uname);
 1343:     my $uhome=&homeserver($uname,$udom,1);
 1344:     my $newhome;
 1345:     if ((!$uhome) || ($uhome eq 'no_host')) {
 1346: # Maybe the machine was offline and only re-appeared again recently?
 1347:         &reconlonc();
 1348: # One more
 1349: 	$uhome=&homeserver($uname,$udom,1);
 1350:         if (($uhome eq 'no_host') && $checkdefauth) {
 1351:             if (defined(&domain($udom,'primary'))) {
 1352:                 $newhome=&domain($udom,'primary');
 1353:             }
 1354:             if ($newhome ne '') {
 1355:                 $uhome = $newhome;
 1356:             }
 1357:         }
 1358: 	if ((!$uhome) || ($uhome eq 'no_host')) {
 1359: 	    &logthis("User $uname at $udom is unknown in authenticate");
 1360: 	    return 'no_host';
 1361:         }
 1362:     }
 1363:     my $answer=reply("encrypt:auth:$udom:$uname:$upass:$checkdefauth:$clientcancheckhost",$uhome);
 1364:     if ($answer eq 'authorized') {
 1365:         if ($newhome) {
 1366:             &logthis("User $uname at $udom authorized by $uhome, but needs account");
 1367:             return 'no_account_on_host'; 
 1368:         } else {
 1369:             &logthis("User $uname at $udom authorized by $uhome");
 1370:             return $uhome;
 1371:         }
 1372:     }
 1373:     if ($answer eq 'non_authorized') {
 1374: 	&logthis("User $uname at $udom rejected by $uhome");
 1375: 	return 'no_host'; 
 1376:     }
 1377:     &logthis("User $uname at $udom threw error $answer when checking authentication mechanism");
 1378:     return 'no_host';
 1379: }
 1380: 
 1381: sub can_host_session {
 1382:     my ($udom,$lonhost,$remoterev,$remotesessions,$hostedsessions) = @_;
 1383:     my $canhost = 1;
 1384:     my $host_idn = &Apache::lonnet::internet_dom($lonhost);
 1385:     if (ref($remotesessions) eq 'HASH') {
 1386:         if (ref($remotesessions->{'excludedomain'}) eq 'ARRAY') {
 1387:             if (grep(/^\Q$host_idn\E$/,@{$remotesessions->{'excludedomain'}})) {
 1388:                 $canhost = 0;
 1389:             } else {
 1390:                 $canhost = 1;
 1391:             }
 1392:         }
 1393:         if (ref($remotesessions->{'includedomain'}) eq 'ARRAY') {
 1394:             if (grep(/^\Q$host_idn\E$/,@{$remotesessions->{'includedomain'}})) {
 1395:                 $canhost = 1;
 1396:             } else {
 1397:                 $canhost = 0;
 1398:             }
 1399:         }
 1400:         if ($canhost) {
 1401:             if ($remotesessions->{'version'} ne '') {
 1402:                 my ($reqmajor,$reqminor) = ($remotesessions->{'version'} =~ /^(\d+)\.(\d+)$/);
 1403:                 if ($reqmajor ne '' && $reqminor ne '') {
 1404:                     if ($remoterev =~ /^\'?(\d+)\.(\d+)/) {
 1405:                         my $major = $1;
 1406:                         my $minor = $2;
 1407:                         if (($major < $reqmajor ) ||
 1408:                             (($major == $reqmajor) && ($minor < $reqminor))) {
 1409:                             $canhost = 0;
 1410:                         }
 1411:                     } else {
 1412:                         $canhost = 0;
 1413:                     }
 1414:                 }
 1415:             }
 1416:         }
 1417:     }
 1418:     if ($canhost) {
 1419:         if (ref($hostedsessions) eq 'HASH') {
 1420:             my $uprimary_id = &Apache::lonnet::domain($udom,'primary');
 1421:             my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);
 1422:             if (ref($hostedsessions->{'excludedomain'}) eq 'ARRAY') {
 1423:                 if (($uint_dom ne '') && 
 1424:                     (grep(/^\Q$uint_dom\E$/,@{$hostedsessions->{'excludedomain'}}))) {
 1425:                     $canhost = 0;
 1426:                 } else {
 1427:                     $canhost = 1;
 1428:                 }
 1429:             }
 1430:             if (ref($hostedsessions->{'includedomain'}) eq 'ARRAY') {
 1431:                 if (($uint_dom ne '') && 
 1432:                     (grep(/^\Q$uint_dom\E$/,@{$hostedsessions->{'includedomain'}}))) {
 1433:                     $canhost = 1;
 1434:                 } else {
 1435:                     $canhost = 0;
 1436:                 }
 1437:             }
 1438:         }
 1439:     }
 1440:     return $canhost;
 1441: }
 1442: 
 1443: sub spare_can_host {
 1444:     my ($udom,$uint_dom,$remotesessions,$try_server)=@_;
 1445:     my $canhost=1;
 1446:     my $try_server_hostname = &hostname($try_server);
 1447:     my $serverhomeID = &get_server_homeID($try_server_hostname);
 1448:     my $serverhomedom = &host_domain($serverhomeID);
 1449:     my %defdomdefaults = &get_domain_defaults($serverhomedom);
 1450:     if (ref($defdomdefaults{'offloadnow'}) eq 'HASH') {
 1451:         if ($defdomdefaults{'offloadnow'}{$try_server}) {
 1452:             $canhost = 0;
 1453:         }
 1454:     }
 1455:     if ($canhost) {
 1456:         if (ref($defdomdefaults{'offloadoth'}) eq 'HASH') {
 1457:             if ($defdomdefaults{'offloadoth'}{$try_server}) {
 1458:                 unless (&shared_institution($udom,$try_server)) {
 1459:                     $canhost = 0;
 1460:                 }
 1461:             }
 1462:         }
 1463:     }
 1464:     if (($canhost) && ($uint_dom)) {
 1465:         my @intdoms;
 1466:         my $internet_names = &get_internet_names($try_server);
 1467:         if (ref($internet_names) eq 'ARRAY') {
 1468:             @intdoms = @{$internet_names};
 1469:         }
 1470:         unless (grep(/^\Q$uint_dom\E$/,@intdoms)) {
 1471:             my $remoterev = &get_server_loncaparev(undef,$try_server);
 1472:             $canhost = &can_host_session($udom,$try_server,$remoterev,
 1473:                                          $remotesessions,
 1474:                                          $defdomdefaults{'hostedsessions'});
 1475:         }
 1476:     }
 1477:     return $canhost;
 1478: }
 1479: 
 1480: sub this_host_spares {
 1481:     my ($dom) = @_;
 1482:     my ($dom_in_use,$lonhost_in_use,$result);
 1483:     my @hosts = &current_machine_ids();
 1484:     foreach my $lonhost (@hosts) {
 1485:         if (&host_domain($lonhost) eq $dom) {
 1486:             $dom_in_use = $dom;
 1487:             $lonhost_in_use = $lonhost;
 1488:             last;
 1489:         }
 1490:     }
 1491:     if ($dom_in_use ne '') {
 1492:         $result = &spares_for_offload($dom_in_use,$lonhost_in_use);
 1493:     }
 1494:     if (ref($result) ne 'HASH') {
 1495:         $lonhost_in_use = $perlvar{'lonHostID'};
 1496:         $dom_in_use = &host_domain($lonhost_in_use);
 1497:         $result = &spares_for_offload($dom_in_use,$lonhost_in_use);
 1498:         if (ref($result) ne 'HASH') {
 1499:             $result = \%spareid;
 1500:         }
 1501:     }
 1502:     return $result;
 1503: }
 1504: 
 1505: sub spares_for_offload  {
 1506:     my ($dom_in_use,$lonhost_in_use) = @_;
 1507:     my ($result,$cached)=&is_cached_new('spares',$dom_in_use);
 1508:     if (defined($cached)) {
 1509:         return $result;
 1510:     } else {
 1511:         my $cachetime = 60*60*24;
 1512:         my %domconfig =
 1513:             &Apache::lonnet::get_dom('configuration',['usersessions'],$dom_in_use);
 1514:         if (ref($domconfig{'usersessions'}) eq 'HASH') {
 1515:             if (ref($domconfig{'usersessions'}{'spares'}) eq 'HASH') {
 1516:                 if (ref($domconfig{'usersessions'}{'spares'}{$lonhost_in_use}) eq 'HASH') {
 1517:                     return &do_cache_new('spares',$dom_in_use,$domconfig{'usersessions'}{'spares'}{$lonhost_in_use},$cachetime);
 1518:                 }
 1519:             }
 1520:         }
 1521:     }
 1522:     return;
 1523: }
 1524: 
 1525: sub get_lonbalancer_config {
 1526:     my ($servers) = @_;
 1527:     my ($currbalancer,$currtargets);
 1528:     if (ref($servers) eq 'HASH') {
 1529:         foreach my $server (keys(%{$servers})) {
 1530:             my %what = (
 1531:                          spareid => 1,
 1532:                          perlvar => 1,
 1533:                        );
 1534:             my ($result,$returnhash) = &get_remote_globals($server,\%what);
 1535:             if ($result eq 'ok') {
 1536:                 if (ref($returnhash) eq 'HASH') {
 1537:                     if (ref($returnhash->{'perlvar'}) eq 'HASH') {
 1538:                         if ($returnhash->{'perlvar'}->{'lonBalancer'} eq 'yes') {
 1539:                             $currbalancer = $server;
 1540:                             $currtargets = {};
 1541:                             if (ref($returnhash->{'spareid'}) eq 'HASH') {
 1542:                                 if (ref($returnhash->{'spareid'}->{'primary'}) eq 'ARRAY') {
 1543:                                     $currtargets->{'primary'} = $returnhash->{'spareid'}->{'primary'};
 1544:                                 }
 1545:                                 if (ref($returnhash->{'spareid'}->{'default'}) eq 'ARRAY') {
 1546:                                     $currtargets->{'default'} = $returnhash->{'spareid'}->{'default'};
 1547:                                 }
 1548:                             }
 1549:                             last;
 1550:                         }
 1551:                     }
 1552:                 }
 1553:             }
 1554:         }
 1555:     }
 1556:     return ($currbalancer,$currtargets);
 1557: }
 1558: 
 1559: sub check_loadbalancing {
 1560:     my ($uname,$udom,$caller) = @_;
 1561:     my ($is_balancer,$currtargets,$currrules,$dom_in_use,$homeintdom,
 1562:         $rule_in_effect,$offloadto,$otherserver,$setcookie,$dom_balancers);
 1563:     my $lonhost = $perlvar{'lonHostID'};
 1564:     my @hosts = &current_machine_ids();
 1565:     my $uprimary_id = &Apache::lonnet::domain($udom,'primary');
 1566:     my $uintdom = &Apache::lonnet::internet_dom($uprimary_id);
 1567:     my $intdom = &Apache::lonnet::internet_dom($lonhost);
 1568:     my $serverhomedom = &host_domain($lonhost);
 1569:     my $domneedscache;
 1570:     my $cachetime = 60*60*24;
 1571: 
 1572:     if (($uintdom ne '') && ($uintdom eq $intdom)) {
 1573:         $dom_in_use = $udom;
 1574:         $homeintdom = 1;
 1575:     } else {
 1576:         $dom_in_use = $serverhomedom;
 1577:     }
 1578:     my ($result,$cached)=&is_cached_new('loadbalancing',$dom_in_use);
 1579:     unless (defined($cached)) {
 1580:         my %domconfig =
 1581:             &Apache::lonnet::get_dom('configuration',['loadbalancing'],$dom_in_use);
 1582:         if (ref($domconfig{'loadbalancing'}) eq 'HASH') {
 1583:             $result = &do_cache_new('loadbalancing',$dom_in_use,$domconfig{'loadbalancing'},$cachetime);
 1584:         } else {
 1585:             $domneedscache = $dom_in_use;
 1586:         }
 1587:     }
 1588:     if (ref($result) eq 'HASH') {
 1589:         ($is_balancer,$currtargets,$currrules,$setcookie,$dom_balancers) =
 1590:             &check_balancer_result($result,@hosts);
 1591:         if ($is_balancer) {
 1592:             if (ref($currrules) eq 'HASH') {
 1593:                 if ($homeintdom) {
 1594:                     if ($uname ne '') {
 1595:                         if (($currrules->{'_LC_adv'} ne '') || ($currrules->{'_LC_author'} ne '')) {
 1596:                             my ($is_adv,$is_author) = &is_advanced_user($udom,$uname);
 1597:                             if (($currrules->{'_LC_author'} ne '') && ($is_author)) {
 1598:                                 $rule_in_effect = $currrules->{'_LC_author'};
 1599:                             } elsif (($currrules->{'_LC_adv'} ne '') && ($is_adv)) {
 1600:                                 $rule_in_effect = $currrules->{'_LC_adv'}
 1601:                             }
 1602:                         }
 1603:                         if ($rule_in_effect eq '') {
 1604:                             my %userenv = &userenvironment($udom,$uname,'inststatus');
 1605:                             if ($userenv{'inststatus'} ne '') {
 1606:                                 my @statuses = map { &unescape($_); } split(/:/,$userenv{'inststatus'});
 1607:                                 my ($othertitle,$usertypes,$types) =
 1608:                                     &Apache::loncommon::sorted_inst_types($udom);
 1609:                                 if (ref($types) eq 'ARRAY') {
 1610:                                     foreach my $type (@{$types}) {
 1611:                                         if (grep(/^\Q$type\E$/,@statuses)) {
 1612:                                             if (exists($currrules->{$type})) {
 1613:                                                 $rule_in_effect = $currrules->{$type};
 1614:                                             }
 1615:                                         }
 1616:                                     }
 1617:                                 }
 1618:                             } else {
 1619:                                 if (exists($currrules->{'default'})) {
 1620:                                     $rule_in_effect = $currrules->{'default'};
 1621:                                 }
 1622:                             }
 1623:                         }
 1624:                     } else {
 1625:                         if (exists($currrules->{'default'})) {
 1626:                             $rule_in_effect = $currrules->{'default'};
 1627:                         }
 1628:                     }
 1629:                 } else {
 1630:                     if ($currrules->{'_LC_external'} ne '') {
 1631:                         $rule_in_effect = $currrules->{'_LC_external'};
 1632:                     }
 1633:                 }
 1634:                 $offloadto = &get_loadbalancer_targets($rule_in_effect,$currtargets,
 1635:                                                        $uname,$udom);
 1636:             }
 1637:         }
 1638:     } elsif (($homeintdom) && ($udom ne $serverhomedom)) {
 1639:         ($result,$cached)=&is_cached_new('loadbalancing',$serverhomedom);
 1640:         unless (defined($cached)) {
 1641:             my %domconfig =
 1642:                 &Apache::lonnet::get_dom('configuration',['loadbalancing'],$serverhomedom);
 1643:             if (ref($domconfig{'loadbalancing'}) eq 'HASH') {
 1644:                 $result = &do_cache_new('loadbalancing',$serverhomedom,$domconfig{'loadbalancing'},$cachetime);
 1645:             } else {
 1646:                 $domneedscache = $serverhomedom;
 1647:             }
 1648:         }
 1649:         if (ref($result) eq 'HASH') {
 1650:             ($is_balancer,$currtargets,$currrules,$setcookie,$dom_balancers) =
 1651:                 &check_balancer_result($result,@hosts);
 1652:             if ($is_balancer) {
 1653:                 if (ref($currrules) eq 'HASH') {
 1654:                     if ($currrules->{'_LC_internetdom'} ne '') {
 1655:                         $rule_in_effect = $currrules->{'_LC_internetdom'};
 1656:                     }
 1657:                 }
 1658:                 $offloadto = &get_loadbalancer_targets($rule_in_effect,$currtargets,
 1659:                                                        $uname,$udom);
 1660:             }
 1661:         } else {
 1662:             if ($perlvar{'lonBalancer'} eq 'yes') {
 1663:                 $is_balancer = 1;
 1664:                 $offloadto = &this_host_spares($dom_in_use);
 1665:             }
 1666:             unless (defined($cached)) {
 1667:                 $domneedscache = $serverhomedom;
 1668:             }
 1669:         }
 1670:     } else {
 1671:         if ($perlvar{'lonBalancer'} eq 'yes') {
 1672:             $is_balancer = 1;
 1673:             $offloadto = &this_host_spares($dom_in_use);
 1674:         }
 1675:         unless (defined($cached)) {
 1676:             $domneedscache = $serverhomedom;
 1677:         }
 1678:     }
 1679:     if ($domneedscache) {
 1680:         &do_cache_new('loadbalancing',$domneedscache,$is_balancer,$cachetime);
 1681:     }
 1682:     if (($is_balancer) && ($caller ne 'switchserver')) {
 1683:         my $lowest_load = 30000;
 1684:         if (ref($offloadto) eq 'HASH') {
 1685:             if (ref($offloadto->{'primary'}) eq 'ARRAY') {
 1686:                 foreach my $try_server (@{$offloadto->{'primary'}}) {
 1687:                     ($otherserver,$lowest_load) =
 1688:                         &compare_server_load($try_server,$otherserver,$lowest_load);
 1689:                 }
 1690:             }
 1691:             my $found_server = ($otherserver ne '' && $lowest_load < 100);
 1692: 
 1693:             if (!$found_server) {
 1694:                 if (ref($offloadto->{'default'}) eq 'ARRAY') {
 1695:                     foreach my $try_server (@{$offloadto->{'default'}}) {
 1696:                         ($otherserver,$lowest_load) =
 1697:                             &compare_server_load($try_server,$otherserver,$lowest_load);
 1698:                     }
 1699:                 }
 1700:             }
 1701:         } elsif (ref($offloadto) eq 'ARRAY') {
 1702:             if (@{$offloadto} == 1) {
 1703:                 $otherserver = $offloadto->[0];
 1704:             } elsif (@{$offloadto} > 1) {
 1705:                 foreach my $try_server (@{$offloadto}) {
 1706:                     ($otherserver,$lowest_load) =
 1707:                         &compare_server_load($try_server,$otherserver,$lowest_load);
 1708:                 }
 1709:             }
 1710:         }
 1711:         unless ($caller eq 'login') {
 1712:             if (($otherserver ne '') && (grep(/^\Q$otherserver\E$/,@hosts))) {
 1713:                 $is_balancer = 0;
 1714:                 if ($uname ne '' && $udom ne '') {
 1715:                     if (($env{'user.name'} eq $uname) && ($env{'user.domain'} eq $udom)) {
 1716:                         &appenv({'user.loadbalexempt'     => $lonhost,
 1717:                                  'user.loadbalcheck.time' => time});
 1718:                     }
 1719:                 }
 1720:             }
 1721:         }
 1722:     }
 1723:     if (($is_balancer) && (!$homeintdom)) {
 1724:         undef($setcookie);
 1725:     }
 1726:     return ($is_balancer,$otherserver,$setcookie,$offloadto,$dom_balancers);
 1727: }
 1728: 
 1729: sub check_balancer_result {
 1730:     my ($result,@hosts) = @_;
 1731:     my ($is_balancer,$currtargets,$currrules,$setcookie,$dom_balancers);
 1732:     if (ref($result) eq 'HASH') {
 1733:         if ($result->{'lonhost'} ne '') {
 1734:             my $currbalancer = $result->{'lonhost'};
 1735:             if (grep(/^\Q$currbalancer\E$/,@hosts)) {
 1736:                 $is_balancer = 1;
 1737:                 $currtargets = $result->{'targets'};
 1738:                 $currrules = $result->{'rules'};
 1739:             }
 1740:             $dom_balancers = $currbalancer;
 1741:         } else {
 1742:             if (keys(%{$result})) {
 1743:                 foreach my $key (keys(%{$result})) {
 1744:                     if (($key ne '') && (grep(/^\Q$key\E$/,@hosts)) &&
 1745:                         (ref($result->{$key}) eq 'HASH')) {
 1746:                         $is_balancer = 1;
 1747:                         $currrules = $result->{$key}{'rules'};
 1748:                         $currtargets = $result->{$key}{'targets'};
 1749:                         $setcookie = $result->{$key}{'cookie'};
 1750:                         last;
 1751:                     }
 1752:                 }
 1753:                 $dom_balancers = join(',',sort(keys(%{$result})));
 1754:             }
 1755:         }
 1756:     }
 1757:     return ($is_balancer,$currtargets,$currrules,$setcookie,$dom_balancers);
 1758: }
 1759: 
 1760: sub get_loadbalancer_targets {
 1761:     my ($rule_in_effect,$currtargets,$uname,$udom) = @_;
 1762:     my $offloadto;
 1763:     if ($rule_in_effect eq 'none') {
 1764:         return [$perlvar{'lonHostID'}];
 1765:     } elsif ($rule_in_effect eq '') {
 1766:         $offloadto = $currtargets;
 1767:     } else {
 1768:         if ($rule_in_effect eq 'homeserver') {
 1769:             my $homeserver = &homeserver($uname,$udom);
 1770:             if ($homeserver ne 'no_host') {
 1771:                 $offloadto = [$homeserver];
 1772:             }
 1773:         } elsif ($rule_in_effect eq 'externalbalancer') {
 1774:             my %domconfig =
 1775:                 &Apache::lonnet::get_dom('configuration',['loadbalancing'],$udom);
 1776:             if (ref($domconfig{'loadbalancing'}) eq 'HASH') {
 1777:                 if ($domconfig{'loadbalancing'}{'lonhost'} ne '') {
 1778:                     if (&hostname($domconfig{'loadbalancing'}{'lonhost'}) ne '') {
 1779:                         $offloadto = [$domconfig{'loadbalancing'}{'lonhost'}];
 1780:                     }
 1781:                 }
 1782:             } else {
 1783:                 my %servers = &internet_dom_servers($udom);
 1784:                 my ($remotebalancer,$remotetargets) = &get_lonbalancer_config(\%servers);
 1785:                 if (&hostname($remotebalancer) ne '') {
 1786:                     $offloadto = [$remotebalancer];
 1787:                 }
 1788:             }
 1789:         } elsif (&hostname($rule_in_effect) ne '') {
 1790:             $offloadto = [$rule_in_effect];
 1791:         }
 1792:     }
 1793:     return $offloadto;
 1794: }
 1795: 
 1796: sub internet_dom_servers {
 1797:     my ($dom) = @_;
 1798:     my (%uniqservers,%servers);
 1799:     my $primaryserver = &hostname(&domain($dom,'primary'));
 1800:     my @machinedoms = &machine_domains($primaryserver);
 1801:     foreach my $mdom (@machinedoms) {
 1802:         my %currservers = %servers;
 1803:         my %server = &get_servers($mdom);
 1804:         %servers = (%currservers,%server);
 1805:     }
 1806:     my %by_hostname;
 1807:     foreach my $id (keys(%servers)) {
 1808:         push(@{$by_hostname{$servers{$id}}},$id);
 1809:     }
 1810:     foreach my $hostname (sort(keys(%by_hostname))) {
 1811:         if (@{$by_hostname{$hostname}} > 1) {
 1812:             my $match = 0;
 1813:             foreach my $id (@{$by_hostname{$hostname}}) {
 1814:                 if (&host_domain($id) eq $dom) {
 1815:                     $uniqservers{$id} = $hostname;
 1816:                     $match = 1;
 1817:                 }
 1818:             }
 1819:             unless ($match) {
 1820:                 $uniqservers{$by_hostname{$hostname}[0]} = $hostname;
 1821:             }
 1822:         } else {
 1823:             $uniqservers{$by_hostname{$hostname}[0]} = $hostname;
 1824:         }
 1825:     }
 1826:     return %uniqservers;
 1827: }
 1828: 
 1829: sub trusted_domains {
 1830:     my ($cmdtype,$calldom) = @_;
 1831:     my ($trusted,$untrusted);
 1832:     if (&domain($calldom) eq '') {
 1833:         return ($trusted,$untrusted);
 1834:     }
 1835:     unless ($cmdtype =~ /^(content|shared|enroll|coaurem|othcoau|domroles|catalog|reqcrs|msg)$/) {
 1836:         return ($trusted,$untrusted);
 1837:     }
 1838:     my $callprimary = &domain($calldom,'primary');
 1839:     my $intcalldom = &Apache::lonnet::internet_dom($callprimary);
 1840:     if ($intcalldom eq '') {
 1841:         return ($trusted,$untrusted);
 1842:     }
 1843: 
 1844:     my ($trustconfig,$cached)=&Apache::lonnet::is_cached_new('trust',$calldom);
 1845:     unless (defined($cached)) {
 1846:         my %domconfig = &Apache::lonnet::get_dom('configuration',['trust'],$calldom);
 1847:         &Apache::lonnet::do_cache_new('trust',$calldom,$domconfig{'trust'},3600);
 1848:         $trustconfig = $domconfig{'trust'};
 1849:     }
 1850:     if (ref($trustconfig)) {
 1851:         my (%possexc,%possinc,@allexc,@allinc); 
 1852:         if (ref($trustconfig->{$cmdtype}) eq 'HASH') {
 1853:             if (ref($trustconfig->{$cmdtype}->{'exc'}) eq 'ARRAY') {
 1854:                 map { $possexc{$_} = 1; } @{$trustconfig->{$cmdtype}->{'exc'}}; 
 1855:             }
 1856:             if (ref($trustconfig->{$cmdtype}->{'inc'}) eq 'ARRAY') {
 1857:                 $possinc{$intcalldom} = 1;
 1858:                 map { $possinc{$_} = 1; } @{$trustconfig->{$cmdtype}->{'inc'}};
 1859:             }
 1860:         }
 1861:         if (keys(%possexc)) {
 1862:             if (keys(%possinc)) {
 1863:                 foreach my $key (sort(keys(%possexc))) {
 1864:                     next if ($key eq $intcalldom);
 1865:                     unless ($possinc{$key}) {
 1866:                         push(@allexc,$key);
 1867:                     }
 1868:                 }
 1869:             } else {
 1870:                 @allexc = sort(keys(%possexc));
 1871:             }
 1872:         }
 1873:         if (keys(%possinc)) {
 1874:             $possinc{$intcalldom} = 1;
 1875:             @allinc = sort(keys(%possinc));
 1876:         }
 1877:         if ((@allexc > 0) || (@allinc > 0)) {
 1878:             my %doms_by_intdom;
 1879:             my %allintdoms = &all_host_intdom();
 1880:             my %alldoms = &all_host_domain();
 1881:             foreach my $key (%allintdoms) {
 1882:                 if (ref($doms_by_intdom{$allintdoms{$key}}) eq 'ARRAY') {
 1883:                     unless (grep(/^\Q$alldoms{$key}\E$/,@{$doms_by_intdom{$allintdoms{$key}}})) {
 1884:                         push(@{$doms_by_intdom{$allintdoms{$key}}},$alldoms{$key});
 1885:                     }
 1886:                 } else {
 1887:                     $doms_by_intdom{$allintdoms{$key}} = [$alldoms{$key}]; 
 1888:                 }
 1889:             }
 1890:             foreach my $exc (@allexc) {
 1891:                 if (ref($doms_by_intdom{$exc}) eq 'ARRAY') {
 1892:                     push(@{$untrusted},@{$doms_by_intdom{$exc}});
 1893:                 }
 1894:             }
 1895:             foreach my $inc (@allinc) {
 1896:                 if (ref($doms_by_intdom{$inc}) eq 'ARRAY') {
 1897:                     push(@{$trusted},@{$doms_by_intdom{$inc}});
 1898:                 }
 1899:             }
 1900:         }
 1901:     }
 1902:     return ($trusted,$untrusted);
 1903: }
 1904: 
 1905: sub will_trust {
 1906:     my ($cmdtype,$domain,$possdom) = @_;
 1907:     return 1 if ($domain eq $possdom);
 1908:     my ($trustedref,$untrustedref) = &trusted_domains($cmdtype,$possdom);
 1909:     my $willtrust; 
 1910:     if ((ref($trustedref) eq 'ARRAY') && (@{$trustedref} > 0)) {
 1911:         if (grep(/^\Q$domain\E$/,@{$trustedref})) {
 1912:             $willtrust = 1;
 1913:         }
 1914:     } elsif ((ref($untrustedref) eq 'ARRAY') && (@{$untrustedref} > 0)) {
 1915:         unless (grep(/^\Q$domain\E$/,@{$untrustedref})) {
 1916:             $willtrust = 1;
 1917:         }
 1918:     } else {
 1919:         $willtrust = 1;
 1920:     }
 1921:     return $willtrust;
 1922: }
 1923: 
 1924: # ---------------------- Find the homebase for a user from domain's lib servers
 1925: 
 1926: my %homecache;
 1927: sub homeserver {
 1928:     my ($uname,$udom,$ignoreBadCache)=@_;
 1929:     my $index="$uname:$udom";
 1930: 
 1931:     if (exists($homecache{$index})) { return $homecache{$index}; }
 1932: 
 1933:     my %servers = &get_servers($udom,'library');
 1934:     foreach my $tryserver (keys(%servers)) {
 1935:         next if ($ignoreBadCache ne 'true' && 
 1936: 		 exists($badServerCache{$tryserver}));
 1937: 
 1938: 	my $answer=reply("home:$udom:$uname",$tryserver);
 1939: 	if ($answer eq 'found') {
 1940: 	    delete($badServerCache{$tryserver}); 
 1941: 	    return $homecache{$index}=$tryserver;
 1942: 	} elsif ($answer eq 'no_host') {
 1943: 	    $badServerCache{$tryserver}=1;
 1944: 	}
 1945:     }    
 1946:     return 'no_host';
 1947: }
 1948: 
 1949: # ----- Find the usernames behind a list of student/employee IDs or clicker IDs
 1950: 
 1951: sub idget {
 1952:     my ($udom,$idsref,$namespace)=@_;
 1953:     my %returnhash=();
 1954:     my @ids=(); 
 1955:     if (ref($idsref) eq 'ARRAY') {
 1956:         @ids = @{$idsref};
 1957:     } else {
 1958:         return %returnhash; 
 1959:     }
 1960:     if ($namespace eq '') {
 1961:         $namespace = 'ids';
 1962:     }
 1963:     
 1964:     my %servers = &get_servers($udom,'library');
 1965:     foreach my $tryserver (keys(%servers)) {
 1966: 	my $idlist=join('&', map { &escape($_); } @ids);
 1967: 	if ($namespace eq 'ids') {
 1968: 	    $idlist=~tr/A-Z/a-z/;
 1969: 	}
 1970: 	my $reply;
 1971: 	if ($namespace eq 'ids') {
 1972: 	    $reply=&reply("idget:$udom:".$idlist,$tryserver);
 1973: 	} else {
 1974: 	    $reply=&reply("getdom:$udom:$namespace:$idlist",$tryserver);
 1975: 	}
 1976: 	my @answer=();
 1977: 	if (($reply ne 'con_lost') && ($reply!~/^error\:/)) {
 1978: 	    @answer=split(/\&/,$reply);
 1979: 	}                    ;
 1980: 	my $i;
 1981: 	for ($i=0;$i<=$#ids;$i++) {
 1982: 	    if ($answer[$i]) {
 1983: 		$returnhash{$ids[$i]}=&unescape($answer[$i]);
 1984: 	    }
 1985: 	}
 1986:     }
 1987:     return %returnhash;
 1988: }
 1989: 
 1990: # ------------------------------------- Find the IDs behind a list of usernames
 1991: 
 1992: sub idrget {
 1993:     my ($udom,@unames)=@_;
 1994:     my %returnhash=();
 1995:     foreach my $uname (@unames) {
 1996:         $returnhash{$uname}=(&userenvironment($udom,$uname,'id'))[1];
 1997:     }
 1998:     return %returnhash;
 1999: }
 2000: 
 2001: # Store away a list of names and associated student/employee IDs or clicker IDs
 2002: 
 2003: sub idput {
 2004:     my ($udom,$idsref,$uhom,$namespace)=@_;
 2005:     my %servers=();
 2006:     my %ids=();
 2007:     my %byid = ();
 2008:     if (ref($idsref) eq 'HASH') {
 2009:         %ids=%{$idsref};
 2010:     }
 2011:     if ($namespace eq '') {
 2012:         $namespace = 'ids'; 
 2013:     }
 2014:     foreach my $uname (keys(%ids)) {
 2015: 	&cput('environment',{'id'=>$ids{$uname}},$udom,$uname);
 2016:         if ($uhom eq '') {
 2017:             $uhom=&homeserver($uname,$udom);
 2018:         }
 2019:         if ($uhom ne 'no_host') {
 2020:             my $esc_unam=&escape($uname);
 2021:             if ($namespace eq 'ids') {
 2022:                 my $id=&escape($ids{$uname});
 2023:                 $id=~tr/A-Z/a-z/;
 2024:                 my $esc_unam=&escape($uname);
 2025:                 $servers{$uhom}.=$id.'='.$esc_unam.'&';
 2026:             } else {
 2027:                 my @currids = split(/,/,$ids{$uname});
 2028:                 foreach my $id (@currids) {
 2029:                     $byid{$uhom}{$id} .= $uname.',';
 2030:                 }
 2031:             }
 2032:         }
 2033:     }
 2034:     if ($namespace eq 'clickers') {
 2035:         foreach my $server (keys(%byid)) {
 2036:             if (ref($byid{$server}) eq 'HASH') {
 2037:                 foreach my $id (keys(%{$byid{$server}})) {
 2038:                     $byid{$server} =~ s/,$//;
 2039:                     $servers{$uhom}.=&escape($id).'='.&escape($byid{$server}).'&'; 
 2040:                 }
 2041:             }
 2042:         }
 2043:     }
 2044:     foreach my $server (keys(%servers)) {
 2045:         $servers{$server} =~ s/\&$//;
 2046:         if ($namespace eq 'ids') {     
 2047:             &critical('idput:'.$udom.':'.$servers{$server},$server);
 2048:         } else {
 2049:             &critical('updateclickers:'.$udom.':add:'.$servers{$server},$server);
 2050:         }
 2051:     }
 2052: }
 2053: 
 2054: # ------------- Delete unwanted student/employee IDs or clicker IDs from domain
 2055: 
 2056: sub iddel {
 2057:     my ($udom,$idshashref,$uhome,$namespace)=@_;
 2058:     my %result=();
 2059:     my %ids=();
 2060:     my %byid = ();
 2061:     if (ref($idshashref) eq 'HASH') {
 2062:         %ids=%{$idshashref};
 2063:     } else {
 2064:         return %result;
 2065:     }
 2066:     if ($namespace eq '') {
 2067:         $namespace = 'ids';
 2068:     }
 2069:     my %servers=();
 2070:     while (my ($id,$unamestr) = each(%ids)) {
 2071:         if ($namespace eq 'ids') {
 2072:             my $uhom = $uhome;
 2073:             if ($uhom eq '') { 
 2074:                 $uhom=&homeserver($unamestr,$udom);
 2075:             }
 2076:             if ($uhom ne 'no_host') {
 2077:                 $servers{$uhom}.='&'.&escape($id);
 2078:             }
 2079:          } else {
 2080:             my @curritems = split(/,/,$ids{$id});
 2081:             foreach my $uname (@curritems) {
 2082:                 my $uhom = $uhome;
 2083:                 if ($uhom eq '') {
 2084:                     $uhom=&homeserver($uname,$udom);
 2085:                 }
 2086:                 if ($uhom ne 'no_host') { 
 2087:                     $byid{$uhom}{$id} .= $uname.',';
 2088:                 }
 2089:             }
 2090:         }
 2091:     }
 2092:     if ($namespace eq 'clickers') {
 2093:         foreach my $server (keys(%byid)) {
 2094:             if (ref($byid{$server}) eq 'HASH') {
 2095:                 foreach my $id (keys(%{$byid{$server}})) {
 2096:                     $byid{$server}{$id} =~ s/,$//;
 2097:                     $servers{$server}.=&escape($id).'='.&escape($byid{$server}{$id}).'&';
 2098:                 }
 2099:             }
 2100:         }
 2101:     }
 2102:     foreach my $server (keys(%servers)) {
 2103:         $servers{$server} =~ s/\&$//;
 2104:         if ($namespace eq 'ids') {
 2105:             $result{$server} = &critical('iddel:'.$udom.':'.$servers{$server},$uhome);
 2106:         } elsif ($namespace eq 'clickers') {
 2107:             $result{$server} = &critical('updateclickers:'.$udom.':del:'.$servers{$server},$server);
 2108:         }
 2109:     }
 2110:     return %result;
 2111: }
 2112: 
 2113: # ----- Update clicker ID-to-username look-ups in clickers.db on library server 
 2114: 
 2115: sub updateclickers {
 2116:     my ($udom,$action,$idshashref,$uhome,$critical) = @_;
 2117:     my %clickers;
 2118:     if (ref($idshashref) eq 'HASH') {
 2119:         %clickers=%{$idshashref};
 2120:     } else {
 2121:         return;
 2122:     }
 2123:     my $items='';
 2124:     foreach my $item (keys(%clickers)) {
 2125:         $items.=&escape($item).'='.&escape($clickers{$item}).'&';
 2126:     }
 2127:     $items=~s/\&$//;
 2128:     my $request = "updateclickers:$udom:$action:$items";
 2129:     if ($critical) {
 2130:         return &critical($request,$uhome);
 2131:     } else {
 2132:         return &reply($request,$uhome);
 2133:     }
 2134: }
 2135: 
 2136: # ------------------------------dump from db file owned by domainconfig user
 2137: sub dump_dom {
 2138:     my ($namespace, $udom, $regexp) = @_;
 2139: 
 2140:     $udom ||= $env{'user.domain'};
 2141: 
 2142:     return () unless $udom;
 2143: 
 2144:     return &dump($namespace, $udom, &get_domainconfiguser($udom), $regexp);
 2145: }
 2146: 
 2147: # ------------------------------------------ get items from domain db files   
 2148: 
 2149: sub get_dom {
 2150:     my ($namespace,$storearr,$udom,$uhome,$encrypt)=@_;
 2151:     return if ($udom eq 'public');
 2152:     my $items='';
 2153:     foreach my $item (@$storearr) {
 2154:         $items.=&escape($item).'&';
 2155:     }
 2156:     $items=~s/\&$//;
 2157:     if (!$udom) {
 2158:         $udom=$env{'user.domain'};
 2159:         return if ($udom eq 'public');
 2160:         if (defined(&domain($udom,'primary'))) {
 2161:             $uhome=&domain($udom,'primary');
 2162:         } else {
 2163:             undef($uhome);
 2164:         }
 2165:     } else {
 2166:         if (!$uhome) {
 2167:             if (defined(&domain($udom,'primary'))) {
 2168:                 $uhome=&domain($udom,'primary');
 2169:             }
 2170:         }
 2171:     }
 2172:     if ($udom && $uhome && ($uhome ne 'no_host')) {
 2173:         my $rep;
 2174:         if (grep { $_ eq $uhome } &current_machine_ids()) {
 2175:             # domain information is hosted on this machine
 2176:             $rep = &LONCAPA::Lond::get_dom("getdom:$udom:$namespace:$items");
 2177:         } else {
 2178:             if ($encrypt) {
 2179:                 $rep=&reply("encrypt:egetdom:$udom:$namespace:$items",$uhome);
 2180:             } else {
 2181:                 $rep=&reply("getdom:$udom:$namespace:$items",$uhome);
 2182:             }
 2183:         }
 2184:         my %returnhash;
 2185:         if ($rep eq '' || $rep =~ /^error: 2 /) {
 2186:             return %returnhash;
 2187:         }
 2188:         my @pairs=split(/\&/,$rep);
 2189:         if ( $#pairs==0 && $pairs[0] =~ /^(con_lost|error|no_such_host)/i) {
 2190:             return @pairs;
 2191:         }
 2192:         my $i=0;
 2193:         foreach my $item (@$storearr) {
 2194:             $returnhash{$item}=&thaw_unescape($pairs[$i]);
 2195:             $i++;
 2196:         }
 2197:         return %returnhash;
 2198:     } else {
 2199:         &logthis("get_dom failed - no homeserver and/or domain ($udom) ($uhome)");
 2200:     }
 2201: }
 2202: 
 2203: # -------------------------------------------- put items in domain db files 
 2204: 
 2205: sub put_dom {
 2206:     my ($namespace,$storehash,$udom,$uhome,$encrypt)=@_;
 2207:     if (!$udom) {
 2208:         $udom=$env{'user.domain'};
 2209:         if (defined(&domain($udom,'primary'))) {
 2210:             $uhome=&domain($udom,'primary');
 2211:         } else {
 2212:             undef($uhome);
 2213:         }
 2214:     } else {
 2215:         if (!$uhome) {
 2216:             if (defined(&domain($udom,'primary'))) {
 2217:                 $uhome=&domain($udom,'primary');
 2218:             }
 2219:         }
 2220:     } 
 2221:     if ($udom && $uhome && ($uhome ne 'no_host')) {
 2222:         my $items='';
 2223:         foreach my $item (keys(%$storehash)) {
 2224:             $items.=&escape($item).'='.&freeze_escape($$storehash{$item}).'&';
 2225:         }
 2226:         $items=~s/\&$//;
 2227:         if ($encrypt) {
 2228:             return &reply("encrypt:putdom:$udom:$namespace:$items",$uhome);
 2229:         } else {
 2230:             return &reply("putdom:$udom:$namespace:$items",$uhome);
 2231:         }
 2232:     } else {
 2233:         &logthis("put_dom failed - no homeserver and/or domain");
 2234:     }
 2235: }
 2236: 
 2237: # --------------------- newput for items in db file owned by domainconfig user
 2238: sub newput_dom {
 2239:     my ($namespace,$storehash,$udom) = @_;
 2240:     my $result;
 2241:     if (!$udom) {
 2242:         $udom=$env{'user.domain'};
 2243:     }
 2244:     if ($udom) {
 2245:         my $uname = &get_domainconfiguser($udom);
 2246:         $result = &newput($namespace,$storehash,$udom,$uname);
 2247:     }
 2248:     return $result;
 2249: }
 2250: 
 2251: # --------------------- delete for items in db file owned by domainconfig user
 2252: sub del_dom {
 2253:     my ($namespace,$storearr,$udom)=@_;
 2254:     if (ref($storearr) eq 'ARRAY') {
 2255:         if (!$udom) {
 2256:             $udom=$env{'user.domain'};
 2257:         }
 2258:         if ($udom) {
 2259:             my $uname = &get_domainconfiguser($udom); 
 2260:             return &del($namespace,$storearr,$udom,$uname);
 2261:         }
 2262:     }
 2263: }
 2264: 
 2265: # ----------------------------------construct domainconfig user for a domain 
 2266: sub get_domainconfiguser {
 2267:     my ($udom) = @_;
 2268:     return $udom.'-domainconfig';
 2269: }
 2270: 
 2271: sub retrieve_inst_usertypes {
 2272:     my ($udom) = @_;
 2273:     my (%returnhash,@order);
 2274:     my %domdefs = &Apache::lonnet::get_domain_defaults($udom);
 2275:     if ((ref($domdefs{'inststatustypes'}) eq 'HASH') && 
 2276:         (ref($domdefs{'inststatusorder'}) eq 'ARRAY')) {
 2277:         return ($domdefs{'inststatustypes'},$domdefs{'inststatusorder'});
 2278:     } else {
 2279:         if (defined(&domain($udom,'primary'))) {
 2280:             my $uhome=&domain($udom,'primary');
 2281:             my $rep=&reply("inst_usertypes:$udom",$uhome);
 2282:             if ($rep =~ /^(con_lost|error|no_such_host|refused)/) {
 2283:                 &logthis("retrieve_inst_usertypes failed - $rep returned from $uhome in domain: $udom");
 2284:                 return (\%returnhash,\@order);
 2285:             }
 2286:             my ($hashitems,$orderitems) = split(/:/,$rep); 
 2287:             my @pairs=split(/\&/,$hashitems);
 2288:             foreach my $item (@pairs) {
 2289:                 my ($key,$value)=split(/=/,$item,2);
 2290:                 $key = &unescape($key);
 2291:                 next if ($key =~ /^error: 2 /);
 2292:                 $returnhash{$key}=&thaw_unescape($value);
 2293:             }
 2294:             my @esc_order = split(/\&/,$orderitems);
 2295:             foreach my $item (@esc_order) {
 2296:                 push(@order,&unescape($item));
 2297:             }
 2298:         } else {
 2299:             &logthis("retrieve_inst_usertypes failed - no primary domain server for $udom");
 2300:         }
 2301:         return (\%returnhash,\@order);
 2302:     }
 2303: }
 2304: 
 2305: sub is_domainimage {
 2306:     my ($url) = @_;
 2307:     if ($url=~m-^/+res/+($match_domain)/+\1\-domainconfig/+(img|logo|domlogo|login)/+[^/]-) {
 2308:         if (&domain($1) ne '') {
 2309:             return '1';
 2310:         }
 2311:     }
 2312:     return;
 2313: }
 2314: 
 2315: sub inst_directory_query {
 2316:     my ($srch) = @_;
 2317:     my $udom = $srch->{'srchdomain'};
 2318:     my %results;
 2319:     my $homeserver = &domain($udom,'primary');
 2320:     my $outcome;
 2321:     if ($homeserver ne '') {
 2322:         unless ($homeserver eq $perlvar{'lonHostID'}) {
 2323:             if ($srch->{'srchby'} eq 'email') {
 2324:                 my $lcrev = &get_server_loncaparev($udom,$homeserver);
 2325:                 my ($major,$minor) = ($lcrev =~ /^\'?(\d+)\.(\d+)\.[\w.\-]+\'?$/);
 2326:                 if (($major eq '' && $minor eq '') || ($major < 2) ||
 2327:                     (($major == 2) && ($minor < 12))) {
 2328:                     return;
 2329:                 }
 2330:             }
 2331:         }
 2332: 	my $queryid=&reply("querysend:instdirsearch:".
 2333: 			   &escape($srch->{'srchby'}).':'.
 2334: 			   &escape($srch->{'srchterm'}).':'.
 2335: 			   &escape($srch->{'srchtype'}),$homeserver);
 2336: 	my $host=&hostname($homeserver);
 2337: 	if ($queryid !~/^\Q$host\E\_/) {
 2338: 	    &logthis('institutional directory search invalid queryid: '.$queryid.' for host: '.$homeserver.' in domain '.$udom);
 2339: 	    return;
 2340: 	}
 2341: 	my $response = &get_query_reply($queryid);
 2342: 	my $maxtries = 5;
 2343: 	my $tries = 1;
 2344: 	while (($response=~/^timeout/) && ($tries < $maxtries)) {
 2345: 	    $response = &get_query_reply($queryid);
 2346: 	    $tries ++;
 2347: 	}
 2348: 
 2349:         if (!&error($response) && $response ne 'refused') {
 2350:             if ($response eq 'unavailable') {
 2351:                 $outcome = $response;
 2352:             } else {
 2353:                 $outcome = 'ok';
 2354:                 my @matches = split(/\n/,$response);
 2355:                 foreach my $match (@matches) {
 2356:                     my ($key,$value) = split(/=/,$match);
 2357:                     $results{&unescape($key).':'.$udom} = &thaw_unescape($value);
 2358:                 }
 2359:             }
 2360:         }
 2361:     }
 2362:     return ($outcome,%results);
 2363: }
 2364: 
 2365: sub usersearch {
 2366:     my ($srch) = @_;
 2367:     my $dom = $srch->{'srchdomain'};
 2368:     my %results;
 2369:     my %libserv = &all_library();
 2370:     my $query = 'usersearch';
 2371:     foreach my $tryserver (keys(%libserv)) {
 2372:         if (&host_domain($tryserver) eq $dom) {
 2373:             unless ($tryserver eq $perlvar{'lonHostID'}) {
 2374:                 if ($srch->{'srchby'} eq 'email') {
 2375:                     my $lcrev = &get_server_loncaparev($dom,$tryserver);
 2376:                     my ($major,$minor) = ($lcrev =~ /^\'?(\d+)\.(\d+)\.[\w.\-]+\'?$/);
 2377:                     next if (($major eq '' && $minor eq '') || ($major < 2) ||
 2378:                              (($major == 2) && ($minor < 12)));
 2379:                 }
 2380:             }
 2381:             my $host=&hostname($tryserver);
 2382:             my $queryid=
 2383:                 &reply("querysend:".&escape($query).':'.
 2384:                        &escape($srch->{'srchby'}).':'.
 2385:                        &escape($srch->{'srchtype'}).':'.
 2386:                        &escape($srch->{'srchterm'}),$tryserver);
 2387:             if ($queryid !~/^\Q$host\E\_/) {
 2388:                 &logthis('usersearch: invalid queryid: '.$queryid.' for host: '.$host.'in domain '.$dom.' and server: '.$tryserver);
 2389:                 next;
 2390:             }
 2391:             my $reply = &get_query_reply($queryid);
 2392:             my $maxtries = 1;
 2393:             my $tries = 1;
 2394:             while (($reply=~/^timeout/) && ($tries < $maxtries)) {
 2395:                 $reply = &get_query_reply($queryid);
 2396:                 $tries ++;
 2397:             }
 2398:             if ( ($reply =~/^timeout/) || ($reply =~/^error/) ) {
 2399:                 &logthis('usersrch error: '.$reply.' for '.$dom.' - searching for : '.$srch->{'srchterm'}.' by '.$srch->{'srchby'}.' ('.$srch->{'srchtype'}.') -  maxtries: '.$maxtries.' tries: '.$tries);
 2400:             } else {
 2401:                 my @matches;
 2402:                 if ($reply =~ /\n/) {
 2403:                     @matches = split(/\n/,$reply);
 2404:                 } else {
 2405:                     @matches = split(/\&/,$reply);
 2406:                 }
 2407:                 foreach my $match (@matches) {
 2408:                     my ($uname,$udom,%userhash);
 2409:                     foreach my $entry (split(/:/,$match)) {
 2410:                         my ($key,$value) =
 2411:                             map {&unescape($_);} split(/=/,$entry);
 2412:                         $userhash{$key} = $value;
 2413:                         if ($key eq 'username') {
 2414:                             $uname = $value;
 2415:                         } elsif ($key eq 'domain') {
 2416:                             $udom = $value;
 2417:                         }
 2418:                     }
 2419:                     $results{$uname.':'.$udom} = \%userhash;
 2420:                 }
 2421:             }
 2422:         }
 2423:     }
 2424:     return %results;
 2425: }
 2426: 
 2427: sub get_instuser {
 2428:     my ($udom,$uname,$id) = @_;
 2429:     my $homeserver = &domain($udom,'primary');
 2430:     my ($outcome,%results);
 2431:     if ($homeserver ne '') {
 2432:         my $queryid=&reply("querysend:getinstuser:".&escape($uname).':'.
 2433:                            &escape($id).':'.&escape($udom),$homeserver);
 2434:         my $host=&hostname($homeserver);
 2435:         if ($queryid !~/^\Q$host\E\_/) {
 2436:             &logthis('get_instuser invalid queryid: '.$queryid.' for host: '.$homeserver.'in domain '.$udom);
 2437:             return;
 2438:         }
 2439:         my $response = &get_query_reply($queryid);
 2440:         my $maxtries = 5;
 2441:         my $tries = 1;
 2442:         while (($response=~/^timeout/) && ($tries < $maxtries)) {
 2443:             $response = &get_query_reply($queryid);
 2444:             $tries ++;
 2445:         }
 2446:         if (!&error($response) && $response ne 'refused') {
 2447:             if ($response eq 'unavailable') {
 2448:                 $outcome = $response;
 2449:             } else {
 2450:                 $outcome = 'ok';
 2451:                 my @matches = split(/\n/,$response);
 2452:                 foreach my $match (@matches) {
 2453:                     my ($key,$value) = split(/=/,$match);
 2454:                     $results{&unescape($key)} = &thaw_unescape($value);
 2455:                 }
 2456:             }
 2457:         }
 2458:     }
 2459:     my %userinfo;
 2460:     if (ref($results{$uname}) eq 'HASH') {
 2461:         %userinfo = %{$results{$uname}};
 2462:     } 
 2463:     return ($outcome,%userinfo);
 2464: }
 2465: 
 2466: sub get_multiple_instusers {
 2467:     my ($udom,$users,$caller) = @_;
 2468:     my ($outcome,$results);
 2469:     if (ref($users) eq 'HASH') {
 2470:         my $count = keys(%{$users}); 
 2471:         my $requested = &freeze_escape($users);
 2472:         my $homeserver = &domain($udom,'primary');
 2473:         if ($homeserver ne '') {
 2474:             my $queryid=&reply('querysend:getmultinstusers:::'.$caller.'='.$requested,$homeserver);
 2475:             my $host=&hostname($homeserver);
 2476:             if ($queryid !~/^\Q$host\E\_/) {
 2477:                 &logthis('get_multiple_instusers invalid queryid: '.$queryid.
 2478:                          ' for host: '.$homeserver.'in domain '.$udom);
 2479:                 return ($outcome,$results);
 2480:             }
 2481:             my $response = &get_query_reply($queryid);
 2482:             my $maxtries = 5;
 2483:             if ($count > 100) {
 2484:                 $maxtries = 1+int($count/20);
 2485:             }
 2486:             my $tries = 1;
 2487:             while (($response=~/^timeout/) && ($tries <= $maxtries)) {
 2488:                 $response = &get_query_reply($queryid);
 2489:                 $tries ++;
 2490:             }
 2491:             if ($response eq '') {
 2492:                 $results = {};
 2493:                 foreach my $key (keys(%{$users})) {
 2494:                     my ($uname,$id);
 2495:                     if ($caller eq 'id') {
 2496:                         $id = $key;
 2497:                     } else {
 2498:                         $uname = $key;
 2499:                     }
 2500:                     my ($resp,%info) = &get_instuser($udom,$uname,$id);
 2501:                     $outcome = $resp;
 2502:                     if ($resp eq 'ok') {
 2503:                         %{$results} = (%{$results}, %info);
 2504:                     } else {
 2505:                         last;
 2506:                     }
 2507:                 }
 2508:             } elsif(!&error($response) && ($response ne 'refused')) {
 2509:                 if (($response eq 'unavailable') || ($response eq 'invalid') || ($response eq 'timeout')) {
 2510:                     $outcome = $response;
 2511:                 } else {
 2512:                     ($outcome,my $userdata) = split(/=/,$response,2);
 2513:                     if ($outcome eq 'ok') {
 2514:                         $results = &thaw_unescape($userdata); 
 2515:                     }
 2516:                 }
 2517:             }
 2518:         }
 2519:     }
 2520:     return ($outcome,$results);
 2521: }
 2522: 
 2523: sub inst_rulecheck {
 2524:     my ($udom,$uname,$id,$item,$rules) = @_;
 2525:     my %returnhash;
 2526:     if ($udom ne '') {
 2527:         if (ref($rules) eq 'ARRAY') {
 2528:             @{$rules} = map {&escape($_);} (@{$rules});
 2529:             my $rulestr = join(':',@{$rules});
 2530:             my $homeserver=&domain($udom,'primary');
 2531:             if (($homeserver ne '') && ($homeserver ne 'no_host')) {
 2532:                 my $response;
 2533:                 if ($item eq 'username') {                
 2534:                     $response=&unescape(&reply('instrulecheck:'.&escape($udom).
 2535:                                               ':'.&escape($uname).':'.$rulestr,
 2536:                                               $homeserver));
 2537:                 } elsif ($item eq 'id') {
 2538:                     $response=&unescape(&reply('instidrulecheck:'.&escape($udom).
 2539:                                               ':'.&escape($id).':'.$rulestr,
 2540:                                               $homeserver));
 2541:                 } elsif ($item eq 'selfcreate') {
 2542:                     $response=&unescape(&reply('instselfcreatecheck:'.
 2543:                                                &escape($udom).':'.&escape($uname).
 2544:                                               ':'.$rulestr,$homeserver));
 2545:                 }
 2546:                 if ($response ne 'refused') {
 2547:                     my @pairs=split(/\&/,$response);
 2548:                     foreach my $item (@pairs) {
 2549:                         my ($key,$value)=split(/=/,$item,2);
 2550:                         $key = &unescape($key);
 2551:                         next if ($key =~ /^error: 2 /);
 2552:                         $returnhash{$key}=&thaw_unescape($value);
 2553:                     }
 2554:                 }
 2555:             }
 2556:         }
 2557:     }
 2558:     return %returnhash;
 2559: }
 2560: 
 2561: sub inst_userrules {
 2562:     my ($udom,$check) = @_;
 2563:     my (%ruleshash,@ruleorder);
 2564:     if ($udom ne '') {
 2565:         my $homeserver=&domain($udom,'primary');
 2566:         if (($homeserver ne '') && ($homeserver ne 'no_host')) {
 2567:             my $response;
 2568:             if ($check eq 'id') {
 2569:                 $response=&reply('instidrules:'.&escape($udom),
 2570:                                  $homeserver);
 2571:             } elsif ($check eq 'email') {
 2572:                 $response=&reply('instemailrules:'.&escape($udom),
 2573:                                  $homeserver);
 2574:             } else {
 2575:                 $response=&reply('instuserrules:'.&escape($udom),
 2576:                                  $homeserver);
 2577:             }
 2578:             if (($response ne 'refused') && ($response ne 'error') && 
 2579:                 ($response ne 'unknown_cmd') && 
 2580:                 ($response ne 'no_such_host')) {
 2581:                 my ($hashitems,$orderitems) = split(/:/,$response);
 2582:                 my @pairs=split(/\&/,$hashitems);
 2583:                 foreach my $item (@pairs) {
 2584:                     my ($key,$value)=split(/=/,$item,2);
 2585:                     $key = &unescape($key);
 2586:                     next if ($key =~ /^error: 2 /);
 2587:                     $ruleshash{$key}=&thaw_unescape($value);
 2588:                 }
 2589:                 my @esc_order = split(/\&/,$orderitems);
 2590:                 foreach my $item (@esc_order) {
 2591:                     push(@ruleorder,&unescape($item));
 2592:                 }
 2593:             }
 2594:         }
 2595:     }
 2596:     return (\%ruleshash,\@ruleorder);
 2597: }
 2598: 
 2599: # ------------- Get Authentication, Language and User Tools Defaults for Domain
 2600: 
 2601: sub get_domain_defaults {
 2602:     my ($domain,$ignore_cache) = @_;
 2603:     return if (($domain eq '') || ($domain eq 'public'));
 2604:     my $cachetime = 60*60*24;
 2605:     unless ($ignore_cache) {
 2606:         my ($result,$cached)=&is_cached_new('domdefaults',$domain);
 2607:         if (defined($cached)) {
 2608:             if (ref($result) eq 'HASH') {
 2609:                 return %{$result};
 2610:             }
 2611:         }
 2612:     }
 2613:     my %domdefaults;
 2614:     my %domconfig =
 2615:          &Apache::lonnet::get_dom('configuration',['defaults','quotas',
 2616:                                   'requestcourses','inststatus',
 2617:                                   'coursedefaults','usersessions',
 2618:                                   'requestauthor','selfenrollment',
 2619:                                   'coursecategories','ssl','autoenroll',
 2620:                                   'trust','helpsettings','wafproxy'],$domain);
 2621:     my @coursetypes = ('official','unofficial','community','textbook','placement');
 2622:     if (ref($domconfig{'defaults'}) eq 'HASH') {
 2623:         $domdefaults{'lang_def'} = $domconfig{'defaults'}{'lang_def'}; 
 2624:         $domdefaults{'auth_def'} = $domconfig{'defaults'}{'auth_def'};
 2625:         $domdefaults{'auth_arg_def'} = $domconfig{'defaults'}{'auth_arg_def'};
 2626:         $domdefaults{'timezone_def'} = $domconfig{'defaults'}{'timezone_def'};
 2627:         $domdefaults{'datelocale_def'} = $domconfig{'defaults'}{'datelocale_def'};
 2628:         $domdefaults{'portal_def'} = $domconfig{'defaults'}{'portal_def'};
 2629:         $domdefaults{'intauth_cost'} = $domconfig{'defaults'}{'intauth_cost'};
 2630:         $domdefaults{'intauth_switch'} = $domconfig{'defaults'}{'intauth_switch'};
 2631:         $domdefaults{'intauth_check'} = $domconfig{'defaults'}{'intauth_check'};
 2632:     } else {
 2633:         $domdefaults{'lang_def'} = &domain($domain,'lang_def');
 2634:         $domdefaults{'auth_def'} = &domain($domain,'auth_def');
 2635:         $domdefaults{'auth_arg_def'} = &domain($domain,'auth_arg_def');
 2636:     }
 2637:     if (ref($domconfig{'quotas'}) eq 'HASH') {
 2638:         if (ref($domconfig{'quotas'}{'defaultquota'}) eq 'HASH') {
 2639:             $domdefaults{'defaultquota'} = $domconfig{'quotas'}{'defaultquota'};
 2640:         } else {
 2641:             $domdefaults{'defaultquota'} = $domconfig{'quotas'};
 2642:         }
 2643:         my @usertools = ('aboutme','blog','webdav','portfolio');
 2644:         foreach my $item (@usertools) {
 2645:             if (ref($domconfig{'quotas'}{$item}) eq 'HASH') {
 2646:                 $domdefaults{$item} = $domconfig{'quotas'}{$item};
 2647:             }
 2648:         }
 2649:         if (ref($domconfig{'quotas'}{'authorquota'}) eq 'HASH') {
 2650:             $domdefaults{'authorquota'} = $domconfig{'quotas'}{'authorquota'};
 2651:         }
 2652:     }
 2653:     if (ref($domconfig{'requestcourses'}) eq 'HASH') {
 2654:         foreach my $item ('official','unofficial','community','textbook','placement') {
 2655:             $domdefaults{$item} = $domconfig{'requestcourses'}{$item};
 2656:         }
 2657:     }
 2658:     if (ref($domconfig{'requestauthor'}) eq 'HASH') {
 2659:         $domdefaults{'requestauthor'} = $domconfig{'requestauthor'};
 2660:     }
 2661:     if (ref($domconfig{'inststatus'}) eq 'HASH') {
 2662:         foreach my $item ('inststatustypes','inststatusorder','inststatusguest') {
 2663:             $domdefaults{$item} = $domconfig{'inststatus'}{$item};
 2664:         }
 2665:     }
 2666:     if (ref($domconfig{'coursedefaults'}) eq 'HASH') {
 2667:         $domdefaults{'canuse_pdfforms'} = $domconfig{'coursedefaults'}{'canuse_pdfforms'};
 2668:         $domdefaults{'usejsme'} = $domconfig{'coursedefaults'}{'usejsme'};
 2669:         $domdefaults{'uselcmath'} = $domconfig{'coursedefaults'}{'uselcmath'};
 2670:         if (ref($domconfig{'coursedefaults'}{'postsubmit'}) eq 'HASH') {
 2671:             $domdefaults{'postsubmit'} = $domconfig{'coursedefaults'}{'postsubmit'}{'client'};
 2672:         }
 2673:         foreach my $type (@coursetypes) {
 2674:             if (ref($domconfig{'coursedefaults'}{'coursecredits'}) eq 'HASH') {
 2675:                 unless ($type eq 'community') {
 2676:                     $domdefaults{$type.'credits'} = $domconfig{'coursedefaults'}{'coursecredits'}{$type};
 2677:                 }
 2678:             }
 2679:             if (ref($domconfig{'coursedefaults'}{'uploadquota'}) eq 'HASH') {
 2680:                 $domdefaults{$type.'quota'} = $domconfig{'coursedefaults'}{'uploadquota'}{$type};
 2681:             }
 2682:             if ($domdefaults{'postsubmit'} eq 'on') {
 2683:                 if (ref($domconfig{'coursedefaults'}{'postsubmit'}{'timeout'}) eq 'HASH') {
 2684:                     $domdefaults{$type.'postsubtimeout'} = 
 2685:                         $domconfig{'coursedefaults'}{'postsubmit'}{'timeout'}{$type}; 
 2686:                 }
 2687:             }
 2688:         }
 2689:         if (ref($domconfig{'coursedefaults'}{'canclone'}) eq 'HASH') {
 2690:             if (ref($domconfig{'coursedefaults'}{'canclone'}{'instcode'}) eq 'ARRAY') {
 2691:                 my @clonecodes = @{$domconfig{'coursedefaults'}{'canclone'}{'instcode'}};
 2692:                 if (@clonecodes) {
 2693:                     $domdefaults{'canclone'} = join('+',@clonecodes);
 2694:                 }
 2695:             }
 2696:         } elsif ($domconfig{'coursedefaults'}{'canclone'}) {
 2697:             $domdefaults{'canclone'}=$domconfig{'coursedefaults'}{'canclone'};
 2698:         }
 2699:         if ($domconfig{'coursedefaults'}{'texengine'}) {
 2700:             $domdefaults{'texengine'} = $domconfig{'coursedefaults'}{'texengine'};
 2701:         } 
 2702:     }
 2703:     if (ref($domconfig{'usersessions'}) eq 'HASH') {
 2704:         if (ref($domconfig{'usersessions'}{'remote'}) eq 'HASH') {
 2705:             $domdefaults{'remotesessions'} = $domconfig{'usersessions'}{'remote'};
 2706:         }
 2707:         if (ref($domconfig{'usersessions'}{'hosted'}) eq 'HASH') {
 2708:             $domdefaults{'hostedsessions'} = $domconfig{'usersessions'}{'hosted'};
 2709:         }
 2710:         if (ref($domconfig{'usersessions'}{'offloadnow'}) eq 'HASH') {
 2711:             $domdefaults{'offloadnow'} = $domconfig{'usersessions'}{'offloadnow'};
 2712:         }
 2713:         if (ref($domconfig{'usersessions'}{'offloadoth'}) eq 'HASH') {
 2714:             $domdefaults{'offloadoth'} = $domconfig{'usersessions'}{'offloadoth'};
 2715:         }
 2716:     }
 2717:     if (ref($domconfig{'selfenrollment'}) eq 'HASH') {
 2718:         if (ref($domconfig{'selfenrollment'}{'admin'}) eq 'HASH') {
 2719:             my @settings = ('types','registered','enroll_dates','access_dates','section',
 2720:                             'approval','limit');
 2721:             foreach my $type (@coursetypes) {
 2722:                 if (ref($domconfig{'selfenrollment'}{'admin'}{$type}) eq 'HASH') {
 2723:                     my @mgrdc = ();
 2724:                     foreach my $item (@settings) {
 2725:                         if ($domconfig{'selfenrollment'}{'admin'}{$type}{$item} eq '0') {
 2726:                             push(@mgrdc,$item);
 2727:                         }
 2728:                     }
 2729:                     if (@mgrdc) {
 2730:                         $domdefaults{$type.'selfenrolladmdc'} = join(',',@mgrdc);
 2731:                     }
 2732:                 }
 2733:             }
 2734:         }
 2735:         if (ref($domconfig{'selfenrollment'}{'default'}) eq 'HASH') {
 2736:             foreach my $type (@coursetypes) {
 2737:                 if (ref($domconfig{'selfenrollment'}{'default'}{$type}) eq 'HASH') {
 2738:                     foreach my $item (keys(%{$domconfig{'selfenrollment'}{'default'}{$type}})) {
 2739:                         $domdefaults{$type.'selfenroll'.$item} = $domconfig{'selfenrollment'}{'default'}{$type}{$item};
 2740:                     }
 2741:                 }
 2742:             }
 2743:         }
 2744:     }
 2745:     if (ref($domconfig{'coursecategories'}) eq 'HASH') {
 2746:         $domdefaults{'catauth'} = 'std';
 2747:         $domdefaults{'catunauth'} = 'std';
 2748:         if ($domconfig{'coursecategories'}{'auth'}) {
 2749:             $domdefaults{'catauth'} = $domconfig{'coursecategories'}{'auth'};
 2750:         }
 2751:         if ($domconfig{'coursecategories'}{'unauth'}) {
 2752:             $domdefaults{'catunauth'} = $domconfig{'coursecategories'}{'unauth'};
 2753:         }
 2754:     }
 2755:     if (ref($domconfig{'ssl'}) eq 'HASH') {
 2756:         if (ref($domconfig{'ssl'}{'replication'}) eq 'HASH') {
 2757:             $domdefaults{'replication'} = $domconfig{'ssl'}{'replication'};
 2758:         }
 2759:         if (ref($domconfig{'ssl'}{'connto'}) eq 'HASH') {
 2760:             $domdefaults{'connect'} = $domconfig{'ssl'}{'connto'};
 2761:         }
 2762:         if (ref($domconfig{'ssl'}{'connfrom'}) eq 'HASH') {
 2763:             $domdefaults{'connect'} = $domconfig{'ssl'}{'connfrom'};
 2764:         }
 2765:     }
 2766:     if (ref($domconfig{'trust'}) eq 'HASH') {
 2767:         my @prefixes = qw(content shared enroll othcoau coaurem domroles catalog reqcrs msg);
 2768:         foreach my $prefix (@prefixes) {
 2769:             if (ref($domconfig{'trust'}{$prefix}) eq 'HASH') {
 2770:                 $domdefaults{'trust'.$prefix} = $domconfig{'trust'}{$prefix};
 2771:             }
 2772:         }
 2773:     }
 2774:     if (ref($domconfig{'autoenroll'}) eq 'HASH') {
 2775:         $domdefaults{'autofailsafe'} = $domconfig{'autoenroll'}{'autofailsafe'};
 2776:     }
 2777:     if (ref($domconfig{'helpsettings'}) eq 'HASH') {
 2778:         $domdefaults{'submitbugs'} = $domconfig{'helpsettings'}{'submitbugs'};
 2779:         if (ref($domconfig{'helpsettings'}{'adhoc'}) eq 'HASH') {
 2780:             $domdefaults{'adhocroles'} = $domconfig{'helpsettings'}{'adhoc'};
 2781:         }
 2782:     }
 2783:     if (ref($domconfig{'wafproxy'}) eq 'HASH') {
 2784:         foreach my $item ('ipheader','trusted','vpnint','vpnext','sslopt') {
 2785:             if ($domconfig{'wafproxy'}{$item}) {
 2786:                 $domdefaults{'waf_'.$item} = $domconfig{'wafproxy'}{$item};
 2787:             }
 2788:         }
 2789:     } 
 2790:     &do_cache_new('domdefaults',$domain,\%domdefaults,$cachetime);
 2791:     return %domdefaults;
 2792: }
 2793: 
 2794: sub get_dom_cats {
 2795:     my ($dom) = @_;
 2796:     return unless (&domain($dom));
 2797:     my ($cats,$cached)=&is_cached_new('cats',$dom);
 2798:     unless (defined($cached)) {
 2799:         my %domconfig = &get_dom('configuration',['coursecategories'],$dom);
 2800:         if (ref($domconfig{'coursecategories'}) eq 'HASH') {
 2801:             if (ref($domconfig{'coursecategories'}{'cats'}) eq 'HASH') {
 2802:                 %{$cats} = %{$domconfig{'coursecategories'}{'cats'}};
 2803:             } else {
 2804:                 $cats = {};
 2805:             }
 2806:         } else {
 2807:             $cats = {};
 2808:         }
 2809:         &Apache::lonnet::do_cache_new('cats',$dom,$cats,3600);
 2810:     }
 2811:     return $cats;
 2812: }
 2813: 
 2814: sub get_dom_instcats {
 2815:     my ($dom) = @_;
 2816:     return unless (&domain($dom));
 2817:     my ($instcats,$cached)=&is_cached_new('instcats',$dom);
 2818:     unless (defined($cached)) {
 2819:         my (%coursecodes,%codes,@codetitles,%cat_titles,%cat_order);
 2820:         my $totcodes = &retrieve_instcodes(\%coursecodes,$dom);
 2821:         if ($totcodes > 0) {
 2822:             my $caller = 'global';
 2823:             if (&auto_instcode_format($caller,$dom,\%coursecodes,\%codes,
 2824:                                       \@codetitles,\%cat_titles,\%cat_order) eq 'ok') {
 2825:                 $instcats = {
 2826:                                 codes => \%codes,
 2827:                                 codetitles => \@codetitles,
 2828:                                 cat_titles => \%cat_titles,
 2829:                                 cat_order => \%cat_order,
 2830:                             };
 2831:                 &do_cache_new('instcats',$dom,$instcats,3600);
 2832:             }
 2833:         }
 2834:     }
 2835:     return $instcats;
 2836: }
 2837: 
 2838: sub retrieve_instcodes {
 2839:     my ($coursecodes,$dom) = @_;
 2840:     my $totcodes;
 2841:     my %courses = &courseiddump($dom,'.',1,'.','.','.',undef,undef,'Course');
 2842:     foreach my $course (keys(%courses)) {
 2843:         if (ref($courses{$course}) eq 'HASH') {
 2844:             if ($courses{$course}{'inst_code'} ne '') {
 2845:                 $$coursecodes{$course} = $courses{$course}{'inst_code'};
 2846:                 $totcodes ++;
 2847:             }
 2848:         }
 2849:     }
 2850:     return $totcodes;
 2851: }
 2852: 
 2853: sub course_portal_url {
 2854:     my ($cnum,$cdom,$r) = @_;
 2855:     my $chome = &homeserver($cnum,$cdom);
 2856:     my $hostname = &hostname($chome);
 2857:     my $protocol = $protocol{$chome};
 2858:     $protocol = 'http' if ($protocol ne 'https');
 2859:     my %domdefaults = &get_domain_defaults($cdom);
 2860:     my $firsturl;
 2861:     if ($domdefaults{'portal_def'}) {
 2862:         $firsturl = $domdefaults{'portal_def'};
 2863:     } else {
 2864:         my $alias = &Apache::lonnet::use_proxy_alias($r,$chome);
 2865:         $hostname = $alias if ($alias ne '');
 2866:         $firsturl = $protocol.'://'.$hostname;
 2867:     }
 2868:     return $firsturl;
 2869: }
 2870: 
 2871: # --------------------------------------------- Get domain config for passwords
 2872: 
 2873: sub get_passwdconf {
 2874:     my ($dom) = @_;
 2875:     my (%passwdconf,$gotconf,$lookup);
 2876:     my ($result,$cached)=&is_cached_new('passwdconf',$dom);
 2877:     if (defined($cached)) {
 2878:         if (ref($result) eq 'HASH') {
 2879:             %passwdconf = %{$result};
 2880:             $gotconf = 1;
 2881:         }
 2882:     }
 2883:     unless ($gotconf) {
 2884:         my %domconfig = &get_dom('configuration',['passwords'],$dom);
 2885:         if (ref($domconfig{'passwords'}) eq 'HASH') {
 2886:             %passwdconf = %{$domconfig{'passwords'}};
 2887:         }
 2888:         my $cachetime = 24*60*60;
 2889:         &do_cache_new('passwdconf',$dom,\%passwdconf,$cachetime);
 2890:     }
 2891:     return %passwdconf;
 2892: }
 2893: 
 2894: # --------------------------------------------------- Assign a key to a student
 2895: 
 2896: sub assign_access_key {
 2897: #
 2898: # a valid key looks like uname:udom#comments
 2899: # comments are being appended
 2900: #
 2901:     my ($ckey,$kdom,$knum,$cdom,$cnum,$udom,$uname,$logentry)=@_;
 2902:     $kdom=
 2903:    $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($kdom));
 2904:     $knum=
 2905:    $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($knum));
 2906:     $cdom=
 2907:    $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($cdom));
 2908:     $cnum=
 2909:    $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($cnum));
 2910:     $udom=$env{'user.name'} unless (defined($udom));
 2911:     $uname=$env{'user.domain'} unless (defined($uname));
 2912:     my %existing=&get('accesskeys',[$ckey],$kdom,$knum);
 2913:     if (($existing{$ckey}=~/^\#(.*)$/) || # - new key
 2914:         ($existing{$ckey}=~/^\Q$uname\E\:\Q$udom\E\#(.*)$/)) { 
 2915:                                                   # assigned to this person
 2916:                                                   # - this should not happen,
 2917:                                                   # unless something went wrong
 2918:                                                   # the first time around
 2919: # ready to assign
 2920:         $logentry=$1.'; '.$logentry;
 2921:         if (&put('accesskeys',{$ckey=>$uname.':'.$udom.'#'.$logentry},
 2922:                                                  $kdom,$knum) eq 'ok') {
 2923: # key now belongs to user
 2924: 	    my $envkey='key.'.$cdom.'_'.$cnum;
 2925:             if (&put('environment',{$envkey => $ckey}) eq 'ok') {
 2926:                 &appenv({'environment.'.$envkey => $ckey});
 2927:                 return 'ok';
 2928:             } else {
 2929:                 return 
 2930:   'error: Count not permanently assign key, will need to be re-entered later.';
 2931: 	    }
 2932:         } else {
 2933:             return 'error: Could not assign key, try again later.';
 2934:         }
 2935:     } elsif (!$existing{$ckey}) {
 2936: # the key does not exist
 2937: 	return 'error: The key does not exist';
 2938:     } else {
 2939: # the key is somebody else's
 2940: 	return 'error: The key is already in use';
 2941:     }
 2942: }
 2943: 
 2944: # ------------------------------------------ put an additional comment on a key
 2945: 
 2946: sub comment_access_key {
 2947: #
 2948: # a valid key looks like uname:udom#comments
 2949: # comments are being appended
 2950: #
 2951:     my ($ckey,$cdom,$cnum,$logentry)=@_;
 2952:     $cdom=
 2953:    $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($cdom));
 2954:     $cnum=
 2955:    $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($cnum));
 2956:     my %existing=&get('accesskeys',[$ckey],$cdom,$cnum);
 2957:     if ($existing{$ckey}) {
 2958:         $existing{$ckey}.='; '.$logentry;
 2959: # ready to assign
 2960:         if (&put('accesskeys',{$ckey=>$existing{$ckey}},
 2961:                                                  $cdom,$cnum) eq 'ok') {
 2962: 	    return 'ok';
 2963:         } else {
 2964: 	    return 'error: Count not store comment.';
 2965:         }
 2966:     } else {
 2967: # the key does not exist
 2968: 	return 'error: The key does not exist';
 2969:     }
 2970: }
 2971: 
 2972: # ------------------------------------------------------ Generate a set of keys
 2973: 
 2974: sub generate_access_keys {
 2975:     my ($number,$cdom,$cnum,$logentry)=@_;
 2976:     $cdom=
 2977:    $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($cdom));
 2978:     $cnum=
 2979:    $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($cnum));
 2980:     unless (&allowed('mky',$cdom)) { return 0; }
 2981:     unless (($cdom) && ($cnum)) { return 0; }
 2982:     if ($number>10000) { return 0; }
 2983:     sleep(2); # make sure don't get same seed twice
 2984:     srand(time()^($$+($$<<15))); # from "Programming Perl"
 2985:     my $total=0;
 2986:     for (my $i=1;$i<=$number;$i++) {
 2987:        my $newkey=sprintf("%lx",int(100000*rand)).'-'.
 2988:                   sprintf("%lx",int(100000*rand)).'-'.
 2989:                   sprintf("%lx",int(100000*rand));
 2990:        $newkey=~s/1/g/g; # folks mix up 1 and l
 2991:        $newkey=~s/0/h/g; # and also 0 and O
 2992:        my %existing=&get('accesskeys',[$newkey],$cdom,$cnum);
 2993:        if ($existing{$newkey}) {
 2994:            $i--;
 2995:        } else {
 2996: 	  if (&put('accesskeys',
 2997:               { $newkey => '# generated '.localtime().
 2998:                            ' by '.$env{'user.name'}.'@'.$env{'user.domain'}.
 2999:                            '; '.$logentry },
 3000: 		   $cdom,$cnum) eq 'ok') {
 3001:               $total++;
 3002: 	  }
 3003:        }
 3004:     }
 3005:     &log($env{'user.domain'},$env{'user.name'},$env{'user.home'},
 3006:          'Generated '.$total.' keys for '.$cnum.' at '.$cdom);
 3007:     return $total;
 3008: }
 3009: 
 3010: # ------------------------------------------------------- Validate an accesskey
 3011: 
 3012: sub validate_access_key {
 3013:     my ($ckey,$cdom,$cnum,$udom,$uname)=@_;
 3014:     $cdom=
 3015:    $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($cdom));
 3016:     $cnum=
 3017:    $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($cnum));
 3018:     $udom=$env{'user.domain'} unless (defined($udom));
 3019:     $uname=$env{'user.name'} unless (defined($uname));
 3020:     my %existing=&get('accesskeys',[$ckey],$cdom,$cnum);
 3021:     return ($existing{$ckey}=~/^\Q$uname\E\:\Q$udom\E\#/);
 3022: }
 3023: 
 3024: # ------------------------------------- Find the section of student in a course
 3025: sub devalidate_getsection_cache {
 3026:     my ($udom,$unam,$courseid)=@_;
 3027:     my $hashid="$udom:$unam:$courseid";
 3028:     &devalidate_cache_new('getsection',$hashid);
 3029: }
 3030: 
 3031: sub courseid_to_courseurl {
 3032:     my ($courseid) = @_;
 3033:     #already url style courseid
 3034:     return $courseid if ($courseid =~ m{^/});
 3035: 
 3036:     if (exists($env{'course.'.$courseid.'.num'})) {
 3037: 	my $cnum = $env{'course.'.$courseid.'.num'};
 3038: 	my $cdom = $env{'course.'.$courseid.'.domain'};
 3039: 	return "/$cdom/$cnum";
 3040:     }
 3041: 
 3042:     my %courseinfo=&Apache::lonnet::coursedescription($courseid);
 3043:     if (exists($courseinfo{'num'})) {
 3044: 	return "/$courseinfo{'domain'}/$courseinfo{'num'}";
 3045:     }
 3046: 
 3047:     return undef;
 3048: }
 3049: 
 3050: sub getsection {
 3051:     my ($udom,$unam,$courseid)=@_;
 3052:     my $cachetime=1800;
 3053: 
 3054:     my $hashid="$udom:$unam:$courseid";
 3055:     my ($result,$cached)=&is_cached_new('getsection',$hashid);
 3056:     if (defined($cached)) { return $result; }
 3057: 
 3058:     my %Pending; 
 3059:     my %Expired;
 3060:     #
 3061:     # Each role can either have not started yet (pending), be active, 
 3062:     #    or have expired.
 3063:     #
 3064:     # If there is an active role, we are done.
 3065:     #
 3066:     # If there is more than one role which has not started yet, 
 3067:     #     choose the one which will start sooner
 3068:     # If there is one role which has not started yet, return it.
 3069:     #
 3070:     # If there is more than one expired role, choose the one which ended last.
 3071:     # If there is a role which has expired, return it.
 3072:     #
 3073:     $courseid = &courseid_to_courseurl($courseid);
 3074:     my %roleshash = &dump('roles',$udom,$unam,$courseid);
 3075:     foreach my $key (keys(%roleshash)) {
 3076:         next if ($key !~/^\Q$courseid\E(?:\/)*(\w+)*\_st$/);
 3077:         my $section=$1;
 3078:         if ($key eq $courseid.'_st') { $section=''; }
 3079:         my ($dummy,$end,$start)=split(/\_/,&unescape($roleshash{$key}));
 3080:         my $now=time;
 3081:         if (defined($end) && $end && ($now > $end)) {
 3082:             $Expired{$end}=$section;
 3083:             next;
 3084:         }
 3085:         if (defined($start) && $start && ($now < $start)) {
 3086:             $Pending{$start}=$section;
 3087:             next;
 3088:         }
 3089:         return &do_cache_new('getsection',$hashid,$section,$cachetime);
 3090:     }
 3091:     #
 3092:     # Presumedly there will be few matching roles from the above
 3093:     # loop and the sorting time will be negligible.
 3094:     if (scalar(keys(%Pending))) {
 3095:         my ($time) = sort {$a <=> $b} keys(%Pending);
 3096:         return &do_cache_new('getsection',$hashid,$Pending{$time},$cachetime);
 3097:     } 
 3098:     if (scalar(keys(%Expired))) {
 3099:         my @sorted = sort {$a <=> $b} keys(%Expired);
 3100:         my $time = pop(@sorted);
 3101:         return &do_cache_new('getsection',$hashid,$Expired{$time},$cachetime);
 3102:     }
 3103:     return &do_cache_new('getsection',$hashid,'-1',$cachetime);
 3104: }
 3105: 
 3106: sub save_cache {
 3107:     &purge_remembered();
 3108:     #&Apache::loncommon::validate_page();
 3109:     undef(%env);
 3110:     undef($env_loaded);
 3111: }
 3112: 
 3113: my $to_remember=-1;
 3114: my %remembered;
 3115: my %accessed;
 3116: my $kicks=0;
 3117: my $hits=0;
 3118: sub make_key {
 3119:     my ($name,$id) = @_;
 3120:     if (length($id) > 65 
 3121: 	&& length(&escape($id)) > 200) {
 3122: 	$id=length($id).':'.&Digest::MD5::md5_hex($id);
 3123:     }
 3124:     return &escape($name.':'.$id);
 3125: }
 3126: 
 3127: sub devalidate_cache_new {
 3128:     my ($name,$id,$debug) = @_;
 3129:     if ($debug) { &Apache::lonnet::logthis("deleting $name:$id"); }
 3130:     my $remembered_id=$name.':'.$id;
 3131:     $id=&make_key($name,$id);
 3132:     $memcache->delete($id);
 3133:     delete($remembered{$remembered_id});
 3134:     delete($accessed{$remembered_id});
 3135: }
 3136: 
 3137: sub is_cached_new {
 3138:     my ($name,$id,$debug) = @_;
 3139:     my $remembered_id=$name.':'.$id; # this is to avoid make_key (which is slow) whenever possible
 3140:     if (exists($remembered{$remembered_id})) {
 3141: 	if ($debug) { &Apache::lonnet::logthis("Early return $remembered_id of $remembered{$remembered_id} "); }
 3142: 	$accessed{$remembered_id}=[&gettimeofday()];
 3143: 	$hits++;
 3144: 	return ($remembered{$remembered_id},1);
 3145:     }
 3146:     $id=&make_key($name,$id);
 3147:     my $value = $memcache->get($id);
 3148:     if (!(defined($value))) {
 3149: 	if ($debug) { &Apache::lonnet::logthis("getting $id is not defined"); }
 3150: 	return (undef,undef);
 3151:     }
 3152:     if ($value eq '__undef__') {
 3153: 	if ($debug) { &Apache::lonnet::logthis("getting $id is __undef__"); }
 3154: 	$value=undef;
 3155:     }
 3156:     &make_room($remembered_id,$value,$debug);
 3157:     if ($debug) { &Apache::lonnet::logthis("getting $id is $value"); }
 3158:     return ($value,1);
 3159: }
 3160: 
 3161: sub do_cache_new {
 3162:     my ($name,$id,$value,$time,$debug) = @_;
 3163:     my $remembered_id=$name.':'.$id;
 3164:     $id=&make_key($name,$id);
 3165:     my $setvalue=$value;
 3166:     if (!defined($setvalue)) {
 3167: 	$setvalue='__undef__';
 3168:     }
 3169:     if (!defined($time) ) {
 3170: 	$time=600;
 3171:     }
 3172:     if ($debug) { &Apache::lonnet::logthis("Setting $id to $value"); }
 3173:     my $result = $memcache->set($id,$setvalue,$time);
 3174:     if (! $result) {
 3175: 	&logthis("caching of id -> $id  failed");
 3176: 	$memcache->disconnect_all();
 3177:     }
 3178:     # need to make a copy of $value
 3179:     &make_room($remembered_id,$value,$debug);
 3180:     return $value;
 3181: }
 3182: 
 3183: sub make_room {
 3184:     my ($remembered_id,$value,$debug)=@_;
 3185: 
 3186:     $remembered{$remembered_id}= (ref($value)) ? &Storable::dclone($value)
 3187:                                     : $value;
 3188:     if ($to_remember<0) { return; }
 3189:     $accessed{$remembered_id}=[&gettimeofday()];
 3190:     if (scalar(keys(%remembered)) <= $to_remember) { return; }
 3191:     my $to_kick;
 3192:     my $max_time=0;
 3193:     foreach my $other (keys(%accessed)) {
 3194: 	if (&tv_interval($accessed{$other}) > $max_time) {
 3195: 	    $to_kick=$other;
 3196: 	    $max_time=&tv_interval($accessed{$other});
 3197: 	}
 3198:     }
 3199:     delete($remembered{$to_kick});
 3200:     delete($accessed{$to_kick});
 3201:     $kicks++;
 3202:     if ($debug) { &logthis("kicking $to_kick $max_time $kicks\n"); }
 3203:     return;
 3204: }
 3205: 
 3206: sub purge_remembered {
 3207:     #&logthis("Tossing ".scalar(keys(%remembered)));
 3208:     #&logthis(sprintf("%-20s is %s",'%remembered',length(&freeze(\%remembered))));
 3209:     undef(%remembered);
 3210:     undef(%accessed);
 3211: }
 3212: # ------------------------------------- Read an entry from a user's environment
 3213: 
 3214: sub userenvironment {
 3215:     my ($udom,$unam,@what)=@_;
 3216:     my $items;
 3217:     foreach my $item (@what) {
 3218:         $items.=&escape($item).'&';
 3219:     }
 3220:     $items=~s/\&$//;
 3221:     my %returnhash=();
 3222:     my $uhome = &homeserver($unam,$udom);
 3223:     unless ($uhome eq 'no_host') {
 3224:         my @answer=split(/\&/, 
 3225:             &reply('get:'.$udom.':'.$unam.':environment:'.$items,$uhome));
 3226:         if ($#answer==0 && $answer[0] =~ /^(con_lost|error:|no_such_host)/i) {
 3227:             return %returnhash;
 3228:         }
 3229:         my $i;
 3230:         for ($i=0;$i<=$#what;$i++) {
 3231: 	    $returnhash{$what[$i]}=&unescape($answer[$i]);
 3232:         }
 3233:     }
 3234:     return %returnhash;
 3235: }
 3236: 
 3237: # ---------------------------------------------------------- Get a studentphoto
 3238: sub studentphoto {
 3239:     my ($udom,$unam,$ext) = @_;
 3240:     my $home=&Apache::lonnet::homeserver($unam,$udom);
 3241:     if (defined($env{'request.course.id'})) {
 3242:         if ($env{'course.'.$env{'request.course.id'}.'.internal.showphoto'}) {
 3243:             if ($udom eq $env{'course.'.$env{'request.course.id'}.'.domain'}) {
 3244:                 return(&retrievestudentphoto($udom,$unam,$ext)); 
 3245:             } else {
 3246:                 my ($result,$perm_reqd)=
 3247: 		    &Apache::lonnet::auto_photo_permission($unam,$udom);
 3248:                 if ($result eq 'ok') {
 3249:                     if (!($perm_reqd eq 'yes')) {
 3250:                         return(&retrievestudentphoto($udom,$unam,$ext));
 3251:                     }
 3252:                 }
 3253:             }
 3254:         }
 3255:     } else {
 3256:         my ($result,$perm_reqd) = 
 3257: 	    &Apache::lonnet::auto_photo_permission($unam,$udom);
 3258:         if ($result eq 'ok') {
 3259:             if (!($perm_reqd eq 'yes')) {
 3260:                 return(&retrievestudentphoto($udom,$unam,$ext));
 3261:             }
 3262:         }
 3263:     }
 3264:     return '/adm/lonKaputt/lonlogo_broken.gif';
 3265: }
 3266: 
 3267: sub retrievestudentphoto {
 3268:     my ($udom,$unam,$ext,$type) = @_;
 3269:     my $home=&Apache::lonnet::homeserver($unam,$udom);
 3270:     my $ret=&Apache::lonnet::reply("studentphoto:$udom:$unam:$ext:$type",$home);
 3271:     if ($ret eq 'ok') {
 3272:         my $url="/uploaded/$udom/$unam/internal/studentphoto.$ext";
 3273:         if ($type eq 'thumbnail') {
 3274:             $url="/uploaded/$udom/$unam/internal/studentphoto_tn.$ext"; 
 3275:         }
 3276:         my $tokenurl=&Apache::lonnet::tokenwrapper($url);
 3277:         return $tokenurl;
 3278:     } else {
 3279:         if ($type eq 'thumbnail') {
 3280:             return '/adm/lonKaputt/genericstudent_tn.gif';
 3281:         } else { 
 3282:             return '/adm/lonKaputt/lonlogo_broken.gif';
 3283:         }
 3284:     }
 3285: }
 3286: 
 3287: # -------------------------------------------------------------------- New chat
 3288: 
 3289: sub chatsend {
 3290:     my ($newentry,$anon,$group)=@_;
 3291:     my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
 3292:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 3293:     my $chome=$env{'course.'.$env{'request.course.id'}.'.home'};
 3294:     &reply('chatsend:'.$cdom.':'.$cnum.':'.
 3295: 	   &escape($env{'user.domain'}.':'.$env{'user.name'}.':'.$anon.':'.
 3296: 		   &escape($newentry)).':'.$group,$chome);
 3297: }
 3298: 
 3299: # ------------------------------------------ Find current version of a resource
 3300: 
 3301: sub getversion {
 3302:     my $fname=&clutter(shift);
 3303:     unless ($fname=~m{^(/adm/wrapper|)/res/}) { return -1; }
 3304:     return &currentversion(&filelocation('',$fname));
 3305: }
 3306: 
 3307: sub currentversion {
 3308:     my $fname=shift;
 3309:     my $author=$fname;
 3310:     $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
 3311:     my ($udom,$uname)=split(/\//,$author);
 3312:     my $home=&homeserver($uname,$udom);
 3313:     if ($home eq 'no_host') { 
 3314:         return -1; 
 3315:     }
 3316:     my $answer=&reply("currentversion:$fname",$home);
 3317:     if (($answer eq 'con_lost') || ($answer eq 'rejected')) {
 3318: 	return -1;
 3319:     }
 3320:     return $answer;
 3321: }
 3322: 
 3323: #
 3324: # Return special version number of resource if set by override, empty otherwise
 3325: #
 3326: sub usedversion {
 3327:     my $fname=shift;
 3328:     unless ($fname) { $fname=$env{'request.uri'}; }
 3329:     my ($urlversion)=($fname=~/\.(\d+)\.\w+$/);
 3330:     if ($urlversion) { return $urlversion; }
 3331:     return '';
 3332: }
 3333: 
 3334: # ----------------------------- Subscribe to a resource, return URL if possible
 3335: 
 3336: sub subscribe {
 3337:     my $fname=shift;
 3338:     if ($fname=~/\/(aboutme|syllabus|bulletinboard|smppg)$/) { return ''; }
 3339:     $fname=~s/[\n\r]//g;
 3340:     my $author=$fname;
 3341:     $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
 3342:     my ($udom,$uname)=split(/\//,$author);
 3343:     my $home=homeserver($uname,$udom);
 3344:     if ($home eq 'no_host') {
 3345:         return 'not_found';
 3346:     }
 3347:     my $answer=reply("sub:$fname",$home);
 3348:     if (($answer eq 'con_lost') || ($answer eq 'rejected')) {
 3349: 	$answer.=' by '.$home;
 3350:     }
 3351:     return $answer;
 3352: }
 3353:     
 3354: # -------------------------------------------------------------- Replicate file
 3355: 
 3356: sub repcopy {
 3357:     my $filename=shift;
 3358:     $filename=~s/\/+/\//g;
 3359:     my $londocroot = $perlvar{'lonDocRoot'};
 3360:     if ($filename=~m{^\Q$londocroot/adm/\E}) { return 'ok'; }
 3361:     if ($filename=~m{^\Q/home/httpd/lonUsers/\E}) { return 'ok'; }
 3362:     if ($filename=~m{^\Q$londocroot/userfiles/\E} or
 3363: 	$filename=~m{^/*(uploaded|editupload)/}) {
 3364: 	return &repcopy_userfile($filename);
 3365:     }
 3366:     $filename=~s/[\n\r]//g;
 3367:     my $transname="$filename.in.transfer";
 3368: # FIXME: this should flock
 3369:     if ((-e $filename) || (-e $transname)) { return 'ok'; }
 3370:     my $remoteurl=subscribe($filename);
 3371:     if ($remoteurl =~ /^con_lost by/) {
 3372: 	   &logthis("Subscribe returned $remoteurl: $filename");
 3373:            return 'unavailable';
 3374:     } elsif ($remoteurl eq 'not_found') {
 3375: 	   #&logthis("Subscribe returned not_found: $filename");
 3376: 	   return 'not_found';
 3377:     } elsif ($remoteurl =~ /^rejected by/) {
 3378: 	   &logthis("Subscribe returned $remoteurl: $filename");
 3379:            return 'forbidden';
 3380:     } elsif ($remoteurl eq 'directory') {
 3381:            return 'ok';
 3382:     } else {
 3383:         my $author=$filename;
 3384:         $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
 3385:         my ($udom,$uname)=split(/\//,$author);
 3386:         my $home=homeserver($uname,$udom);
 3387:         unless ($home eq $perlvar{'lonHostID'}) {
 3388:            my @parts=split(/\//,$filename);
 3389:            my $path="/$parts[1]/$parts[2]/$parts[3]/$parts[4]";
 3390:            if ($path ne "$londocroot/res") {
 3391:                &logthis("Malconfiguration for replication: $filename");
 3392: 	       return 'bad_request';
 3393:            }
 3394:            my $count;
 3395:            for ($count=5;$count<$#parts;$count++) {
 3396:                $path.="/$parts[$count]";
 3397:                if ((-e $path)!=1) {
 3398: 		   mkdir($path,0777);
 3399:                }
 3400:            }
 3401:            my $request=new HTTP::Request('GET',"$remoteurl");
 3402:            my $response;
 3403:            if ($remoteurl =~ m{/raw/}) {
 3404:                $response=&LONCAPA::LWPReq::makerequest($home,$request,$transname,\%perlvar,'',0,1);
 3405:            } else {
 3406:                $response=&LONCAPA::LWPReq::makerequest($home,$request,$transname,\%perlvar,'',1);
 3407:            }
 3408:            if ($response->is_error()) {
 3409: 	       unlink($transname);
 3410:                my $message=$response->status_line;
 3411:                &logthis("<font color=\"blue\">WARNING:"
 3412:                        ." LWP get: $message: $filename</font>");
 3413:                return 'unavailable';
 3414:            } else {
 3415: 	       if ($remoteurl!~/\.meta$/) {
 3416:                   my $mrequest=new HTTP::Request('GET',$remoteurl.'.meta');
 3417:                   my $mresponse;
 3418:                   if ($remoteurl =~ m{/raw/}) {
 3419:                       $mresponse = &LONCAPA::LWPReq::makerequest($home,$mrequest,$filename.'.meta',\%perlvar,'',0,1);
 3420:                   } else {
 3421:                       $mresponse = &LONCAPA::LWPReq::makerequest($home,$mrequest,$filename.'.meta',\%perlvar,'',1);
 3422:                   }
 3423:                   if ($mresponse->is_error()) {
 3424: 		      unlink($filename.'.meta');
 3425:                       &logthis(
 3426:                      "<font color=\"yellow\">INFO: No metadata: $filename</font>");
 3427:                   }
 3428: 	       }
 3429:                rename($transname,$filename);
 3430:                return 'ok';
 3431:            }
 3432:        }
 3433:     }
 3434: }
 3435: 
 3436: # ------------------------------------------------- Unsubscribe from a resource
 3437: 
 3438: sub unsubscribe {
 3439:     my ($fname) = @_;
 3440:     my $answer;
 3441:     if ($fname=~/\/(aboutme|syllabus|bulletinboard|smppg)$/) { return $answer; }
 3442:     $fname=~s/[\n\r]//g;
 3443:     my $author=$fname;
 3444:     $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
 3445:     my ($udom,$uname)=split(/\//,$author);
 3446:     my $home=homeserver($uname,$udom);
 3447:     if ($home eq 'no_host') {
 3448:         $answer = 'no_host';
 3449:     } elsif (grep { $_ eq $home } &current_machine_ids()) {
 3450:         $answer = 'home';
 3451:     } else {
 3452:         my $defdom = $perlvar{'lonDefDomain'};
 3453:         if (&will_trust('content',$defdom,$udom)) {
 3454:             $answer = reply("unsub:$fname",$home);
 3455:         } else {
 3456:             $answer = 'untrusted';
 3457:         }
 3458:     }
 3459:     return $answer;
 3460: }
 3461: 
 3462: # ------------------------------------------------ Get server side include body
 3463: sub ssi_body {
 3464:     my ($filelink,%form)=@_;
 3465:     if (! exists($form{'LONCAPA_INTERNAL_no_discussion'})) {
 3466:         $form{'LONCAPA_INTERNAL_no_discussion'}='true';
 3467:     }
 3468:     my $output='';
 3469:     my $response;
 3470:     if ($filelink=~/^https?\:/) {
 3471:        ($output,$response)=&externalssi($filelink);
 3472:     } else {
 3473:        $filelink .= $filelink=~/\?/ ? '&' : '?';
 3474:        $filelink .= 'inhibitmenu=yes';
 3475:        ($output,$response)=&ssi($filelink,%form);
 3476:     }
 3477:     $output=~s|//(\s*<!--)? BEGIN LON-CAPA Internal.+?// END LON-CAPA Internal\s*(-->)?\s||gs;
 3478:     $output=~s/^.*?\<body[^\>]*\>//si;
 3479:     $output=~s/\<\/body\s*\>.*?$//si;
 3480:     if (wantarray) {
 3481:         return ($output, $response);
 3482:     } else {
 3483:         return $output;
 3484:     }
 3485: }
 3486: 
 3487: # --------------------------------------------------------- Server Side Include
 3488: 
 3489: sub absolute_url {
 3490:     my ($host_name,$unalias,$keep_proto) = @_;
 3491:     my $protocol = ($ENV{'SERVER_PORT'} == 443?'https://':'http://');
 3492:     if ($host_name eq '') {
 3493: 	$host_name = $ENV{'SERVER_NAME'};
 3494:     }
 3495:     if ($unalias) {
 3496:         my $alias = &get_proxy_alias();
 3497:         if ($alias eq $host_name) {
 3498:             my $lonhost = $perlvar{'lonHostID'};
 3499:             my $hostname = &hostname($lonhost);
 3500:             my $lcproto; 
 3501:             if (($keep_proto) || ($hostname eq '')) {
 3502:                 $lcproto = $protocol;
 3503:             } else {
 3504:                 $lcproto = $protocol{$lonhost};
 3505:                 $lcproto = 'http' if ($lcproto ne 'https');
 3506:                 $lcproto .= '://';
 3507:             }
 3508:             unless ($hostname eq '') {
 3509:                 return $lcproto.$hostname;
 3510:             }
 3511:         }
 3512:     }
 3513:     return $protocol.$host_name;
 3514: }
 3515: 
 3516: #
 3517: #   Server side include.
 3518: # Parameters:
 3519: #  fn     Possibly encrypted resource name/id.
 3520: #  form   Hash that describes how the rendering should be done
 3521: #         and other things.
 3522: # Returns:
 3523: #   Scalar context: The content of the response.
 3524: #   Array context:  2 element list of the content and the full response object.
 3525: #     
 3526: sub ssi {
 3527: 
 3528:     my ($fn,%form)=@_;
 3529:     my ($host,$request,$response);
 3530:     $host = &absolute_url('',1);
 3531: 
 3532:     $form{'no_update_last_known'}=1;
 3533:     &Apache::lonenc::check_encrypt(\$fn);
 3534:     if (%form) {
 3535:       $request=new HTTP::Request('POST',$host.$fn);
 3536:       $request->content(join('&',map { 
 3537:             my $name = escape($_);
 3538:             "$name=" . ( ref($form{$_}) eq 'ARRAY' 
 3539:             ? join("&$name=", map {escape($_) } @{$form{$_}}) 
 3540:             : &escape($form{$_}) );    
 3541:         } keys(%form)));
 3542:     } else {
 3543:       $request=new HTTP::Request('GET',$host.$fn);
 3544:     }
 3545: 
 3546:     $request->header(Cookie => $ENV{'HTTP_COOKIE'});
 3547:     my $lonhost = $perlvar{'lonHostID'};
 3548:     my $islocal;
 3549:     if (($env{'request.course.id'}) &&
 3550:         ($form{'grade_courseid'} eq $env{'request.course.id'}) &&
 3551:         ($form{'grade_username'} ne '') && ($form{'grade_domain'} ne '') &&
 3552:         ($form{'grade_symb'} ne '') &&
 3553:         (&Apache::lonnet::allowed('mgr',$env{'request.course.id'}.
 3554:                                  ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:'')))) {
 3555:         $islocal = 1;
 3556:     }
 3557:     $response= &LONCAPA::LWPReq::makerequest($lonhost,$request,'',\%perlvar,
 3558:                                              '','','',$islocal);
 3559: 
 3560:     if (wantarray) {
 3561: 	return ($response->content, $response);
 3562:     } else {
 3563: 	return $response->content;
 3564:     }
 3565: }
 3566: 
 3567: sub externalssi {
 3568:     my ($url)=@_;
 3569:     my $request=new HTTP::Request('GET',$url);
 3570:     my $response = &LONCAPA::LWPReq::makerequest('',$request,'',\%perlvar);
 3571:     if (wantarray) {
 3572:         return ($response->content, $response);
 3573:     } else {
 3574:         return $response->content;
 3575:     }
 3576: }
 3577: 
 3578: 
 3579: # If the local copy of a replicated resource is outdated, trigger a  
 3580: # connection from the homeserver to flush the delayed queue. If no update 
 3581: # happens, remove local copies of outdated resource (and corresponding
 3582: # metadata file).
 3583: 
 3584: sub remove_stale_resfile {
 3585:     my ($url) = @_;
 3586:     my $removed;
 3587:     if ($url=~m{^/res/($match_domain)/($match_username)/}) {
 3588:         my $audom = $1;
 3589:         my $auname = $2;
 3590:         unless (($url =~ /\.\d+\.\w+$/) || ($url =~ m{^/res/lib/templates/})) {
 3591:             my $homeserver = &homeserver($auname,$audom);
 3592:             unless (($homeserver eq 'no_host') ||
 3593:                     (grep { $_ eq $homeserver } &current_machine_ids())) {
 3594:                 my $fname = &filelocation('',$url);
 3595:                 if (-e $fname) {
 3596:                     my $hostname = &hostname($homeserver);
 3597:                     if ($hostname) {
 3598:                         my $protocol = $protocol{$homeserver};
 3599:                         $protocol = 'http' if ($protocol ne 'https');
 3600:                         my $uri = &declutter($url);
 3601:                         my $request=new HTTP::Request('HEAD',$protocol.'://'.$hostname.'/raw/'.$uri);
 3602:                         my $response = &LONCAPA::LWPReq::makerequest($homeserver,$request,'',\%perlvar,5,0,1);
 3603:                         if ($response->is_success()) {
 3604:                             my $remmodtime = &HTTP::Date::str2time( $response->header('Last-modified') );
 3605:                             my $locmodtime = (stat($fname))[9];
 3606:                             if ($locmodtime < $remmodtime) {
 3607:                                 my $stale;
 3608:                                 my $answer = &reply('pong',$homeserver);
 3609:                                 if ($answer eq $homeserver.':'.$perlvar{'lonHostID'}) {
 3610:                                     sleep(0.2);
 3611:                                     $locmodtime = (stat($fname))[9];
 3612:                                     if ($locmodtime < $remmodtime) {
 3613:                                         my $posstransfer = $fname.'.in.transfer';
 3614:                                         if ((-e $posstransfer) && ($remmodtime < (stat($posstransfer))[9])) {
 3615:                                             $removed = 1;
 3616:                                         } else {
 3617:                                             $stale = 1;
 3618:                                         }
 3619:                                     } else {
 3620:                                         $removed = 1;
 3621:                                     }
 3622:                                 } else {
 3623:                                     $stale = 1;
 3624:                                 }
 3625:                                 if ($stale) {
 3626:                                     if (unlink($fname)) {
 3627:                                         if ($uri!~/\.meta$/) {
 3628:                                             if (-e $fname.'.meta') {
 3629:                                                 unlink($fname.'.meta');
 3630:                                             }
 3631:                                         }
 3632:                                         my $unsubresult = &unsubscribe($fname);
 3633:                                         unless ($unsubresult eq 'ok') {
 3634:                                             &logthis("no unsub of $fname from $homeserver, reason: $unsubresult");
 3635:                                         }
 3636:                                         $removed = 1;
 3637:                                     }
 3638:                                 }
 3639:                             }
 3640:                         }
 3641:                     }
 3642:                 }
 3643:             }
 3644:         }
 3645:     }
 3646:     return $removed;
 3647: }
 3648: 
 3649: # -------------------------------- Allow a /uploaded/ URI to be vouched for
 3650: 
 3651: sub allowuploaded {
 3652:     my ($srcurl,$url)=@_;
 3653:     $url=&clutter(&declutter($url));
 3654:     my $dir=$url;
 3655:     $dir=~s/\/[^\/]+$//;
 3656:     my %httpref=();
 3657:     my $httpurl=&hreflocation('',$url);
 3658:     $httpref{'httpref.'.$httpurl}=$srcurl;
 3659:     &Apache::lonnet::appenv(\%httpref);
 3660: }
 3661: 
 3662: #
 3663: # Determine if the current user should be able to edit a particular resource,
 3664: # when viewing in course context.
 3665: # (a) When viewing resource used to determine if "Edit" item is included in 
 3666: #     Functions.
 3667: # (b) When displaying folder contents in course editor, used to determine if
 3668: #     "Edit" link will be displayed alongside resource.
 3669: #
 3670: #  input: six args -- filename (decluttered), course number, course domain,
 3671: #                   url, symb (if registered) and group (if this is a group
 3672: #                   item -- e.g., bulletin board, group page etc.).
 3673: #  output: array of five scalars -- 
 3674: #          $cfile -- url for file editing if editable on current server
 3675: #          $home -- homeserver of resource (i.e., for author if published,
 3676: #                                           or course if uploaded.).
 3677: #          $switchserver --  1 if server switch will be needed.
 3678: #          $forceedit -- 1 if icon/link should be to go to edit mode 
 3679: #          $forceview -- 1 if icon/link should be to go to view mode
 3680: #
 3681: 
 3682: sub can_edit_resource {
 3683:     my ($file,$cnum,$cdom,$resurl,$symb,$group) = @_;
 3684:     my ($cfile,$home,$switchserver,$forceedit,$forceview,$uploaded,$incourse);
 3685: #
 3686: # For aboutme pages user can only edit his/her own.
 3687: #
 3688:     if ($resurl =~ m{^/?adm/($match_domain)/($match_username)/aboutme$}) {
 3689:         my ($sdom,$sname) = ($1,$2);
 3690:         if (($sdom eq $env{'user.domain'}) && ($sname eq $env{'user.name'})) {
 3691:             $home = $env{'user.home'};
 3692:             $cfile = $resurl;
 3693:             if ($env{'form.forceedit'}) {
 3694:                 $forceview = 1;
 3695:             } else {
 3696:                 $forceedit = 1;
 3697:             }
 3698:             return ($cfile,$home,$switchserver,$forceedit,$forceview);
 3699:         } else {
 3700:             return;
 3701:         }
 3702:     }
 3703: 
 3704:     if ($env{'request.course.id'}) {
 3705:         my $crsedit = &Apache::lonnet::allowed('mdc',$env{'request.course.id'});
 3706:         if ($group ne '') {
 3707: # if this is a group homepage or group bulletin board, check group privs
 3708:             my $allowed = 0;
 3709:             if ($resurl =~ m{^/?adm/$cdom/$cnum/$group/smppg$}) {
 3710:                 if ((&allowed('mdg',$env{'request.course.id'}.
 3711:                               ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) ||
 3712:                         (&allowed('mgh',$env{'request.course.id'}.'/'.$group)) || $crsedit) {
 3713:                     $allowed = 1;
 3714:                 }
 3715:             } elsif ($resurl =~ m{^/?adm/$cdom/$cnum/\d+/bulletinboard$}) {
 3716:                 if ((&allowed('mdg',$env{'request.course.id'}.($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) ||
 3717:                         (&allowed('cgb',$env{'request.course.id'}.'/'.$group)) || $crsedit) {
 3718:                     $allowed = 1;
 3719:                 }
 3720:             }
 3721:             if ($allowed) {
 3722:                 $home=&homeserver($cnum,$cdom);
 3723:                 if ($env{'form.forceedit'}) {
 3724:                     $forceview = 1;
 3725:                 } else {
 3726:                     $forceedit = 1;
 3727:                 }
 3728:                 $cfile = $resurl;
 3729:             } else {
 3730:                 return;
 3731:             }
 3732:         } else {
 3733:             if ($resurl =~ m{^/?adm/viewclasslist$}) {
 3734:                 unless (&Apache::lonnet::allowed('opa',$env{'request.course.id'})) {
 3735:                     return;
 3736:                 }
 3737:             } elsif (!$crsedit) {
 3738: #
 3739: # No edit allowed where CC has switched to student role.
 3740: #
 3741:                 return;
 3742:             }
 3743:         }
 3744:     }
 3745: 
 3746:     if ($file ne '') {
 3747:         if (($cnum =~ /$match_courseid/) && ($cdom =~ /$match_domain/)) {
 3748:             if (&is_course_upload($file,$cnum,$cdom)) {
 3749:                 $uploaded = 1;
 3750:                 $incourse = 1;
 3751:                 if ($file =~/\.(htm|html|css|js|txt)$/) {
 3752:                     $cfile = &hreflocation('',$file);
 3753:                     if ($env{'form.forceedit'}) {
 3754:                         $forceview = 1;
 3755:                     } else {
 3756:                         $forceedit = 1;
 3757:                     }
 3758:                 }
 3759:             } elsif ($resurl =~ m{^/public/$cdom/$cnum/syllabus}) {
 3760:                 $incourse = 1;
 3761:                 if ($env{'form.forceedit'}) {
 3762:                     $forceview = 1;
 3763:                 } else {
 3764:                     $forceedit = 1;
 3765:                 }
 3766:                 $cfile = $resurl;
 3767:             } elsif (($resurl ne '') && (&is_on_map($resurl))) { 
 3768:                 if ($resurl =~ m{^/adm/$match_domain/$match_username/\d+/smppg|bulletinboard$}) {
 3769:                     $incourse = 1;
 3770:                     if ($env{'form.forceedit'}) {
 3771:                         $forceview = 1;
 3772:                     } else {
 3773:                         $forceedit = 1;
 3774:                     }
 3775:                     $cfile = $resurl;
 3776:                 } elsif ($resurl eq '/res/lib/templates/simpleproblem.problem') {
 3777:                     $incourse = 1;
 3778:                     $cfile = $resurl.'/smpedit';
 3779:                 } elsif ($resurl =~ m{^/adm/wrapper/ext/}) {
 3780:                     $incourse = 1;
 3781:                     if ($env{'form.forceedit'}) {
 3782:                         $forceview = 1;
 3783:                     } else {
 3784:                         $forceedit = 1;
 3785:                     }
 3786:                     $cfile = $resurl;
 3787:                 } elsif (($resurl =~ m{^/ext/}) && ($symb ne '')) {
 3788:                     my ($map,$id,$res) = &decode_symb($symb);
 3789:                     if ($map =~ /\.page$/) {
 3790:                         $incourse = 1;
 3791:                         if ($env{'form.forceedit'}) {
 3792:                             $forceview = 1;
 3793:                             $cfile = $map;
 3794:                         } else {
 3795:                             $forceedit = 1;
 3796:                             $cfile =  '/adm/wrapper'.$resurl;
 3797:                         }
 3798:                     }
 3799:                 } elsif ($resurl =~ m{^/adm/wrapper/adm/$cdom/$cnum/\d+/ext\.tool$}) {
 3800:                     $incourse = 1;
 3801:                     if ($env{'form.forceedit'}) {
 3802:                         $forceview = 1;
 3803:                     } else {
 3804:                         $forceedit = 1;
 3805:                     }
 3806:                     $cfile = $resurl;
 3807:                 } elsif ($resurl =~ m{^/?adm/viewclasslist$}) {
 3808:                     $incourse = 1;
 3809:                     if ($env{'form.forceedit'}) {
 3810:                         $forceview = 1;
 3811:                     } else {
 3812:                         $forceedit = 1;
 3813:                     }
 3814:                     $cfile = ($resurl =~ m{^/} ? $resurl : "/$resurl");
 3815:                 }
 3816:             } elsif ($resurl eq '/res/lib/templates/simpleproblem.problem/smpedit') {
 3817:                 my $template = '/res/lib/templates/simpleproblem.problem';
 3818:                 if (&is_on_map($template)) { 
 3819:                     $incourse = 1;
 3820:                     $forceview = 1;
 3821:                     $cfile = $template;
 3822:                 }
 3823:             } elsif (($resurl =~ m{^/adm/wrapper/ext/}) && ($env{'form.folderpath'} =~ /^supplemental/)) {
 3824:                 $incourse = 1;
 3825:                 if ($env{'form.forceedit'}) {
 3826:                     $forceview = 1;
 3827:                 } else {
 3828:                     $forceedit = 1;
 3829:                 }
 3830:                 $cfile = $resurl;
 3831:             } elsif (($resurl =~ m{^/adm/wrapper/adm/$cdom/$cnum/\d+/ext\.tool$}) && ($env{'form.folderpath'} =~ /^supplemental/)) {
 3832:                 $incourse = 1;
 3833:                 if ($env{'form.forceedit'}) {
 3834:                     $forceview = 1;
 3835:                 } else {
 3836:                     $forceedit = 1;
 3837:                 }
 3838:                 $cfile = $resurl;
 3839:             } elsif (($resurl eq '/adm/extresedit') && ($symb || $env{'form.folderpath'})) {
 3840:                 $incourse = 1;
 3841:                 $forceview = 1;
 3842:                 if ($symb) {
 3843:                     my ($map,$id,$res)=&decode_symb($symb);
 3844:                     $env{'request.symb'} = $symb;
 3845:                     $cfile = &clutter($res);
 3846:                 } else {
 3847:                     $cfile = $env{'form.suppurl'};
 3848:                     my $escfile = &unescape($cfile);
 3849:                     if ($escfile =~ m{^/adm/$cdom/$cnum/\d+/ext\.tool$}) {
 3850:                         $cfile = '/adm/wrapper'.$escfile;
 3851:                     } else {
 3852:                         $escfile =~ s{^http://}{};
 3853:                         $cfile = &escape("/adm/wrapper/ext/$escfile");
 3854:                     }
 3855:                 }
 3856:             } elsif ($resurl =~ m{^/?adm/viewclasslist$}) {
 3857:                 if ($env{'form.forceedit'}) {
 3858:                     $forceview = 1;
 3859:                 } else {
 3860:                     $forceedit = 1;
 3861:                 }
 3862:                 $cfile = ($resurl =~ m{^/} ? $resurl : "/$resurl");
 3863:             }
 3864:         }
 3865:         if ($uploaded || $incourse) {
 3866:             $home=&homeserver($cnum,$cdom);
 3867:         } elsif ($file !~ m{/$}) {
 3868:             $file=~s{^(priv/$match_domain/$match_username)}{/$1};
 3869:             $file=~s{^($match_domain/$match_username)}{/priv/$1};
 3870:             # Check that the user has permission to edit this resource
 3871:             my $setpriv = 1;
 3872:             my ($cfuname,$cfudom)=&constructaccess($file,$setpriv);
 3873:             if (defined($cfudom)) {
 3874:                 $home=&homeserver($cfuname,$cfudom);
 3875:                 $cfile=$file;
 3876:             }
 3877:         }
 3878:         if (($cfile ne '') && (!$incourse || $uploaded) && 
 3879:             (($home ne '') && ($home ne 'no_host'))) {
 3880:             my @ids=&current_machine_ids();
 3881:             unless (grep(/^\Q$home\E$/,@ids)) {
 3882:                 $switchserver=1;
 3883:             }
 3884:         }
 3885:     }
 3886:     return ($cfile,$home,$switchserver,$forceedit,$forceview);
 3887: }
 3888: 
 3889: sub is_course_upload {
 3890:     my ($file,$cnum,$cdom) = @_;
 3891:     my $uploadpath = &LONCAPA::propath($cdom,$cnum);
 3892:     $uploadpath =~ s{^\/}{};
 3893:     if (($file =~ m{^\Q$uploadpath\E/userfiles/(docs|supplemental)/}) ||
 3894:         ($file =~ m{^userfiles/\Q$cdom\E/\Q$cnum\E/(docs|supplemental)/})) {
 3895:         return 1;
 3896:     }
 3897:     return;
 3898: }
 3899: 
 3900: sub in_course {
 3901:     my ($udom,$uname,$cdom,$cnum,$type,$hideprivileged) = @_;
 3902:     if ($hideprivileged) {
 3903:         my $skipuser;
 3904:         my %coursehash = &coursedescription($cdom.'_'.$cnum);
 3905:         my @possdoms = ($cdom);  
 3906:         if ($coursehash{'checkforpriv'}) { 
 3907:             push(@possdoms,split(/,/,$coursehash{'checkforpriv'})); 
 3908:         }
 3909:         if (&privileged($uname,$udom,\@possdoms)) {
 3910:             $skipuser = 1;
 3911:             if ($coursehash{'nothideprivileged'}) {
 3912:                 foreach my $item (split(/\s*\,\s*/,$coursehash{'nothideprivileged'})) {
 3913:                     my $user;
 3914:                     if ($item =~ /:/) {
 3915:                         $user = $item;
 3916:                     } else {
 3917:                         $user = join(':',split(/[\@]/,$item));
 3918:                     }
 3919:                     if ($user eq $uname.':'.$udom) {
 3920:                         undef($skipuser);
 3921:                         last;
 3922:                     }
 3923:                 }
 3924:             }
 3925:             if ($skipuser) {
 3926:                 return 0;
 3927:             }
 3928:         }
 3929:     }
 3930:     $type ||= 'any';
 3931:     if (!defined($cdom) || !defined($cnum)) {
 3932:         my $cid  = $env{'request.course.id'};
 3933:         $cdom = $env{'course.'.$cid.'.domain'};
 3934:         $cnum = $env{'course.'.$cid.'.num'};
 3935:     }
 3936:     my $typesref;
 3937:     if (($type eq 'any') || ($type eq 'all')) {
 3938:         $typesref = ['active','previous','future'];
 3939:     } elsif ($type eq 'previous' || $type eq 'future') {
 3940:         $typesref = [$type];
 3941:     }
 3942:     my %roles = &get_my_roles($uname,$udom,'userroles',
 3943:                               $typesref,undef,[$cdom]);
 3944:     my ($tmp) = keys(%roles);
 3945:     return 0 if ($tmp =~ /^(con_lost|error|no_such_host)/i);
 3946:     my @course_roles = grep(/^\Q$cnum\E:\Q$cdom\E:/, keys(%roles));
 3947:     if (@course_roles > 0) {
 3948:         return 1;
 3949:     }
 3950:     return 0;
 3951: }
 3952: 
 3953: # --------- File operations in /home/httpd/html/userfiles/$domain/1/2/3/$course
 3954: # input: action, courseID, current domain, intended
 3955: #        path to file, source of file, instruction to parse file for objects,
 3956: #        ref to hash for embedded objects,
 3957: #        ref to hash for codebase of java objects.
 3958: #        reference to scalar to accommodate mime type determined
 3959: #          from File::MMagic if $parser = parse.
 3960: #
 3961: # output: url to file (if action was uploaddoc), 
 3962: #         ok if successful, or diagnostic message otherwise (if action was propagate or copy)
 3963: #
 3964: # Allows directory structure to be used within lonUsers/../userfiles/ for a 
 3965: # course.
 3966: #
 3967: # action = propagate - /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
 3968: #          will be copied to /home/httpd/lonUsers/1/2/3/$course/userfiles in
 3969: #          course's home server.
 3970: #
 3971: # action = copy - /home/httpd/html/userfiles/$domain/1/2/3/$course/$file will
 3972: #          be copied from $source (current location) to 
 3973: #          /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
 3974: #         and will then be copied to
 3975: #          /home/httpd/lonUsers/$domain/1/2/3/$course/userfiles/$file in
 3976: #         course's home server.
 3977: #
 3978: # action = uploaddoc - /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
 3979: #         will be retrived from $env{form.uploaddoc} (from DOCS interface) to
 3980: #         /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
 3981: #         and will then be copied to /home/httpd/lonUsers/1/2/3/$course/userfiles/$file
 3982: #         in course's home server.
 3983: #
 3984: 
 3985: sub process_coursefile {
 3986:     my ($action,$docuname,$docudom,$file,$source,$parser,$allfiles,$codebase,
 3987:         $mimetype)=@_;
 3988:     my $fetchresult;
 3989:     my $home=&homeserver($docuname,$docudom);
 3990:     if ($action eq 'propagate') {
 3991:         $fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
 3992: 			     $home);
 3993:     } else {
 3994:         my $fpath = '';
 3995:         my $fname = $file;
 3996:         ($fpath,$fname) = ($file =~ m|^(.*)/([^/]+)$|);
 3997:         $fpath=$docudom.'/'.$docuname.'/'.$fpath;
 3998:         my $filepath = &build_filepath($fpath);
 3999:         if ($action eq 'copy') {
 4000:             if ($source eq '') {
 4001:                 $fetchresult = 'no source file';
 4002:                 return $fetchresult;
 4003:             } else {
 4004:                 my $destination = $filepath.'/'.$fname;
 4005:                 rename($source,$destination);
 4006:                 $fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
 4007:                                  $home);
 4008:             }
 4009:         } elsif ($action eq 'uploaddoc') {
 4010:             open(my $fh,'>',$filepath.'/'.$fname);
 4011:             print $fh $env{'form.'.$source};
 4012:             close($fh);
 4013:             if ($parser eq 'parse') {
 4014:                 my $mm = new File::MMagic;
 4015:                 my $type = $mm->checktype_filename($filepath.'/'.$fname);
 4016:                 if ($type eq 'text/html') {
 4017:                     my $parse_result = &extract_embedded_items($filepath.'/'.$fname,$allfiles,$codebase);
 4018:                     unless ($parse_result eq 'ok') {
 4019:                         &logthis('Failed to parse '.$filepath.'/'.$fname.' for embedded media: '.$parse_result);
 4020:                     }
 4021:                 }
 4022:                 if (ref($mimetype)) {
 4023:                     $$mimetype = $type;
 4024:                 } 
 4025:             }
 4026:             $fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
 4027:                                  $home);
 4028:             if ($fetchresult eq 'ok') {
 4029:                 return '/uploaded/'.$fpath.'/'.$fname;
 4030:             } else {
 4031:                 &logthis('Failed to transfer '.$docudom.'/'.$docuname.'/'.$file.
 4032:                         ' to host '.$home.': '.$fetchresult);
 4033:                 return '/adm/notfound.html';
 4034:             }
 4035:         }
 4036:     }
 4037:     unless ( $fetchresult eq 'ok') {
 4038:         &logthis('Failed to transfer '.$docudom.'/'.$docuname.'/'.$file.
 4039:              ' to host '.$home.': '.$fetchresult);
 4040:     }
 4041:     return $fetchresult;
 4042: }
 4043: 
 4044: sub build_filepath {
 4045:     my ($fpath) = @_;
 4046:     my $filepath=$perlvar{'lonDocRoot'}.'/userfiles';
 4047:     unless ($fpath eq '') {
 4048:         my @parts=split('/',$fpath);
 4049:         foreach my $part (@parts) {
 4050:             $filepath.= '/'.$part;
 4051:             if ((-e $filepath)!=1) {
 4052:                 mkdir($filepath,0777);
 4053:             }
 4054:         }
 4055:     }
 4056:     return $filepath;
 4057: }
 4058: 
 4059: sub store_edited_file {
 4060:     my ($primary_url,$content,$docudom,$docuname,$fetchresult) = @_;
 4061:     my $file = $primary_url;
 4062:     $file =~ s#^/uploaded/$docudom/$docuname/##;
 4063:     my $fpath = '';
 4064:     my $fname = $file;
 4065:     ($fpath,$fname) = ($file =~ m|^(.*)/([^/]+)$|);
 4066:     $fpath=$docudom.'/'.$docuname.'/'.$fpath;
 4067:     my $filepath = &build_filepath($fpath);
 4068:     open(my $fh,'>',$filepath.'/'.$fname);
 4069:     print $fh $content;
 4070:     close($fh);
 4071:     my $home=&homeserver($docuname,$docudom);
 4072:     $$fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
 4073: 			  $home);
 4074:     if ($$fetchresult eq 'ok') {
 4075:         return '/uploaded/'.$fpath.'/'.$fname;
 4076:     } else {
 4077:         &logthis('Failed to transfer '.$docudom.'/'.$docuname.'/'.$file.
 4078: 		 ' to host '.$home.': '.$$fetchresult);
 4079:         return '/adm/notfound.html';
 4080:     }
 4081: }
 4082: 
 4083: sub clean_filename {
 4084:     my ($fname,$args)=@_;
 4085: # Replace Windows backslashes by forward slashes
 4086:     $fname=~s/\\/\//g;
 4087:     if (!$args->{'keep_path'}) {
 4088:         # Get rid of everything but the actual filename
 4089: 	$fname=~s/^.*\/([^\/]+)$/$1/;
 4090:     }
 4091: # Replace spaces by underscores
 4092:     $fname=~s/\s+/\_/g;
 4093: # Transliterate non-ascii text to ascii
 4094:     my $lang = &Apache::lonlocal::current_language();
 4095:     $fname = &LONCAPA::transliterate::fname_to_ascii($fname,$lang);
 4096: # Replace all other weird characters by nothing
 4097:     $fname=~s{[^/\w\.\-]}{}g;
 4098: # Replace all .\d. sequences with _\d. so they no longer look like version
 4099: # numbers
 4100:     $fname=~s/\.(\d+)(?=\.)/_$1/g;
 4101: # Replace three or more adjacent underscores with one for consistency 
 4102: # with loncfile::filename_check() so complete url can be extracted by
 4103: # lonnet::decode_symb()
 4104:     $fname=~s/_{3,}/_/g;
 4105:     return $fname;
 4106: }
 4107: 
 4108: # This Function checks if an Image's dimensions exceed either $resizewidth (width) 
 4109: # or $resizeheight (height) - both pixels. If so, the image is scaled to produce an 
 4110: # image with the same aspect ratio as the original, but with dimensions which do 
 4111: # not exceed $resizewidth and $resizeheight.
 4112:  
 4113: sub resizeImage {
 4114:     my ($img_path,$resizewidth,$resizeheight) = @_;
 4115:     my $ima = Image::Magick->new;
 4116:     my $resized;
 4117:     if (-e $img_path) {
 4118:         $ima->Read($img_path);
 4119:         if (($resizewidth =~ /^\d+$/) && ($resizeheight > 0)) {
 4120:             my $width = $ima->Get('width');
 4121:             my $height = $ima->Get('height');
 4122:             if ($width > $resizewidth) {
 4123: 	        my $factor = $width/$resizewidth;
 4124:                 my $newheight = $height/$factor;
 4125:                 $ima->Scale(width=>$resizewidth,height=>$newheight);
 4126:                 $resized = 1;
 4127:             }
 4128:         }
 4129:         if (($resizeheight =~ /^\d+$/) && ($resizeheight > 0)) {
 4130:             my $width = $ima->Get('width');
 4131:             my $height = $ima->Get('height');
 4132:             if ($height > $resizeheight) {
 4133:                 my $factor = $height/$resizeheight;
 4134:                 my $newwidth = $width/$factor;
 4135:                 $ima->Scale(width=>$newwidth,height=>$resizeheight);
 4136:                 $resized = 1;
 4137:             }
 4138:         }
 4139:         if ($resized) {
 4140:             $ima->Write($img_path);
 4141:         }
 4142:     }
 4143:     return;
 4144: }
 4145: 
 4146: # --------------- Take an uploaded file and put it into the userfiles directory
 4147: # input: $formname - the contents of the file are in $env{"form.$formname"}
 4148: #                    the desired filename is in $env{"form.$formname.filename"}
 4149: #        $context - possible values: coursedoc, existingfile, overwrite, 
 4150: #                                    canceloverwrite, scantron or ''.
 4151: #                   if 'coursedoc': upload to the current course
 4152: #                   if 'existingfile': write file to tmp/overwrites directory 
 4153: #                   if 'canceloverwrite': delete file written to tmp/overwrites directory
 4154: #                   $context is passed as argument to &finishuserfileupload
 4155: #        $subdir - directory in userfile to store the file into
 4156: #        $parser - instruction to parse file for objects ($parser = parse) or
 4157: #                  if context is 'scantron', $parser is hashref of csv column mapping
 4158: #                  (e.g.,{ PaperID => 0, LastName => 1, FirstName => 2, ID => 3, 
 4159: #                          Section => 4, CODE => 5, FirstQuestion => 9 }).
 4160: #        $allfiles - reference to hash for embedded objects
 4161: #        $codebase - reference to hash for codebase of java objects
 4162: #        $desuname - username for permanent storage of uploaded file
 4163: #        $dsetudom - domain for permanaent storage of uploaded file
 4164: #        $thumbwidth - width (pixels) of thumbnail to make for uploaded image 
 4165: #        $thumbheight - height (pixels) of thumbnail to make for uploaded image
 4166: #        $resizewidth - width (pixels) to which to resize uploaded image
 4167: #        $resizeheight - height (pixels) to which to resize uploaded image
 4168: #        $mimetype - reference to scalar to accommodate mime type determined
 4169: #                    from File::MMagic.
 4170: # 
 4171: # output: url of file in userspace, or error: <message> 
 4172: #             or /adm/notfound.html if failure to upload occurse
 4173: 
 4174: sub userfileupload {
 4175:     my ($formname,$context,$subdir,$parser,$allfiles,$codebase,$destuname,
 4176:         $destudom,$thumbwidth,$thumbheight,$resizewidth,$resizeheight,$mimetype)=@_;
 4177:     if (!defined($subdir)) { $subdir='unknown'; }
 4178:     my $fname=$env{'form.'.$formname.'.filename'};
 4179:     $fname=&clean_filename($fname);
 4180:     # See if there is anything left
 4181:     unless ($fname) { return 'error: no uploaded file'; }
 4182:     # If filename now begins with a . prepend unix timestamp _ milliseconds
 4183:     if ($fname =~ /^\./) {
 4184:         my ($s,$usec) = &gettimeofday();
 4185:         while (length($usec) < 6) {
 4186:             $usec = '0'.$usec;
 4187:         }
 4188:         $fname = $s.'_'.substr($usec,0,3).$fname;
 4189:     }
 4190:     # Files uploaded to help request form, or uploaded to "create course" page are handled differently
 4191:     if ((($formname eq 'screenshot') && ($subdir eq 'helprequests')) ||
 4192:         (($formname eq 'coursecreatorxml') && ($subdir eq 'batchupload')) ||
 4193:          ($context eq 'existingfile') || ($context eq 'canceloverwrite')) {
 4194:         my $now = time;
 4195:         my $filepath;
 4196:         if (($formname eq 'screenshot') && ($subdir eq 'helprequests')) {
 4197:              $filepath = 'tmp/helprequests/'.$now;
 4198:         } elsif (($formname eq 'coursecreatorxml') && ($subdir eq 'batchupload')) {
 4199:              $filepath = 'tmp/addcourse/'.$destudom.'/web/'.$env{'user.name'}.
 4200:                          '_'.$env{'user.domain'}.'/pending';
 4201:         } elsif (($context eq 'existingfile') || ($context eq 'canceloverwrite')) {
 4202:             my ($docuname,$docudom);
 4203:             if ($destudom =~ /^$match_domain$/) {
 4204:                 $docudom = $destudom;
 4205:             } else {
 4206:                 $docudom = $env{'user.domain'};
 4207:             }
 4208:             if ($destuname =~ /^$match_username$/) {
 4209:                 $docuname = $destuname;
 4210:             } else {
 4211:                 $docuname = $env{'user.name'};
 4212:             }
 4213:             if (exists($env{'form.group'})) {
 4214:                 $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
 4215:                 $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 4216:             }
 4217:             $filepath = 'tmp/overwrites/'.$docudom.'/'.$docuname.'/'.$subdir;
 4218:             if ($context eq 'canceloverwrite') {
 4219:                 my $tempfile =  $perlvar{'lonDaemons'}.'/'.$filepath.'/'.$fname;
 4220:                 if (-e  $tempfile) {
 4221:                     my @info = stat($tempfile);
 4222:                     if ($info[9] eq $env{'form.timestamp'}) {
 4223:                         unlink($tempfile);
 4224:                     }
 4225:                 }
 4226:                 return;
 4227:             }
 4228:         }
 4229:         # Create the directory if not present
 4230:         my @parts=split(/\//,$filepath);
 4231:         my $fullpath = $perlvar{'lonDaemons'};
 4232:         for (my $i=0;$i<@parts;$i++) {
 4233:             $fullpath .= '/'.$parts[$i];
 4234:             if ((-e $fullpath)!=1) {
 4235:                 mkdir($fullpath,0777);
 4236:             }
 4237:         }
 4238:         open(my $fh,'>',$fullpath.'/'.$fname);
 4239:         print $fh $env{'form.'.$formname};
 4240:         close($fh);
 4241:         if ($context eq 'existingfile') {
 4242:             my @info = stat($fullpath.'/'.$fname);
 4243:             return ($fullpath.'/'.$fname,$info[9]);
 4244:         } else {
 4245:             return $fullpath.'/'.$fname;
 4246:         }
 4247:     }
 4248:     if ($subdir eq 'scantron') {
 4249:         $fname = 'scantron_orig_'.$fname;
 4250:     } else {
 4251:         $fname="$subdir/$fname";
 4252:     }
 4253:     if ($context eq 'coursedoc') {
 4254: 	my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
 4255: 	my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 4256:         if ($env{'form.folder'} =~ m/^(default|supplemental)/) {
 4257:             return &finishuserfileupload($docuname,$docudom,
 4258: 					 $formname,$fname,$parser,$allfiles,
 4259: 					 $codebase,$thumbwidth,$thumbheight,
 4260:                                          $resizewidth,$resizeheight,$context,$mimetype);
 4261:         } else {
 4262:             if ($env{'form.folder'}) {
 4263:                 $fname=$env{'form.folder'}.'/'.$fname;
 4264:             }
 4265:             return &process_coursefile('uploaddoc',$docuname,$docudom,
 4266: 				       $fname,$formname,$parser,
 4267: 				       $allfiles,$codebase,$mimetype);
 4268:         }
 4269:     } elsif (defined($destuname)) {
 4270:         my $docuname=$destuname;
 4271:         my $docudom=$destudom;
 4272: 	return &finishuserfileupload($docuname,$docudom,$formname,$fname,
 4273: 				     $parser,$allfiles,$codebase,
 4274:                                      $thumbwidth,$thumbheight,
 4275:                                      $resizewidth,$resizeheight,$context,$mimetype);
 4276:     } else {
 4277:         my $docuname=$env{'user.name'};
 4278:         my $docudom=$env{'user.domain'};
 4279:         if ((exists($env{'form.group'})) || ($context eq 'syllabus')) {
 4280:             $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
 4281:             $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 4282:         }
 4283: 	return &finishuserfileupload($docuname,$docudom,$formname,$fname,
 4284: 				     $parser,$allfiles,$codebase,
 4285:                                      $thumbwidth,$thumbheight,
 4286:                                      $resizewidth,$resizeheight,$context,$mimetype);
 4287:     }
 4288: }
 4289: 
 4290: sub finishuserfileupload {
 4291:     my ($docuname,$docudom,$formname,$fname,$parser,$allfiles,$codebase,
 4292:         $thumbwidth,$thumbheight,$resizewidth,$resizeheight,$context,$mimetype) = @_;
 4293:     my $path=$docudom.'/'.$docuname.'/';
 4294:     my $filepath=$perlvar{'lonDocRoot'};
 4295:   
 4296:     my ($fnamepath,$file,$fetchthumb);
 4297:     $file=$fname;
 4298:     if ($fname=~m|/|) {
 4299:         ($fnamepath,$file) = ($fname =~ m|^(.*)/([^/]+)$|);
 4300: 	$path.=$fnamepath.'/';
 4301:     }
 4302:     my @parts=split(/\//,$filepath.'/userfiles/'.$path);
 4303:     my $count;
 4304:     for ($count=4;$count<=$#parts;$count++) {
 4305:         $filepath.="/$parts[$count]";
 4306:         if ((-e $filepath)!=1) {
 4307: 	    mkdir($filepath,0777);
 4308:         }
 4309:     }
 4310: 
 4311: # Save the file
 4312:     {
 4313: 	if (!open(FH,'>',$filepath.'/'.$file)) {
 4314: 	    &logthis('Failed to create '.$filepath.'/'.$file);
 4315: 	    print STDERR ('Failed to create '.$filepath.'/'.$file."\n");
 4316: 	    return '/adm/notfound.html';
 4317: 	}
 4318:         if ($context eq 'overwrite') {
 4319:             my $source =  LONCAPA::tempdir().'/overwrites/'.$docudom.'/'.$docuname.'/'.$fname;
 4320:             my $target = $filepath.'/'.$file;
 4321:             if (-e $source) {
 4322:                 my @info = stat($source);
 4323:                 if ($info[9] eq $env{'form.timestamp'}) {   
 4324:                     unless (&File::Copy::move($source,$target)) {
 4325:                         &logthis('Failed to overwrite '.$filepath.'/'.$file);
 4326:                         return "Moving from $source failed";
 4327:                     }
 4328:                 } else {
 4329:                     return "Temporary file: $source had unexpected date/time for last modification";
 4330:                 }
 4331:             } else {
 4332:                 return "Temporary file: $source missing";
 4333:             }
 4334:         } elsif (!print FH ($env{'form.'.$formname})) {
 4335: 	    &logthis('Failed to write to '.$filepath.'/'.$file);
 4336: 	    print STDERR ('Failed to write to '.$filepath.'/'.$file."\n");
 4337: 	    return '/adm/notfound.html';
 4338: 	}
 4339: 	close(FH);
 4340:         if ($resizewidth && $resizeheight) {
 4341:             my $mm = new File::MMagic;
 4342:             my $mime_type = $mm->checktype_filename($filepath.'/'.$file);
 4343:             if ($mime_type =~ m{^image/}) {
 4344: 	        &resizeImage($filepath.'/'.$file,$resizewidth,$resizeheight);
 4345:             }  
 4346: 	}
 4347:     }
 4348:     if (($context eq 'coursedoc') || ($parser eq 'parse')) {
 4349:         if (ref($mimetype)) {
 4350:             if ($$mimetype eq '') {
 4351:                 my $mm = new File::MMagic;
 4352:                 my $type = $mm->checktype_filename($filepath.'/'.$file);
 4353:                 $$mimetype = $type;
 4354:             }
 4355:         }
 4356:     }
 4357:     if (($context ne 'scantron') && ($parser eq 'parse')) {
 4358:         if ((ref($mimetype)) && ($$mimetype eq 'text/html')) {
 4359:             my $parse_result = &extract_embedded_items($filepath.'/'.$file,
 4360:                                                        $allfiles,$codebase);
 4361:             unless ($parse_result eq 'ok') {
 4362:                 &logthis('Failed to parse '.$filepath.$file.
 4363: 	   	         ' for embedded media: '.$parse_result); 
 4364:             }
 4365:         }
 4366:     } elsif (($context eq 'scantron') && (ref($parser) eq 'HASH')) {
 4367:         my $format = $env{'form.scantron_format'};
 4368:         &bubblesheet_converter($docudom,$filepath.'/'.$file,$parser,$format);
 4369:     }
 4370:     if (($thumbwidth =~ /^\d+$/) && ($thumbheight =~ /^\d+$/)) {
 4371:         my $input = $filepath.'/'.$file;
 4372:         my $output = $filepath.'/'.'tn-'.$file;
 4373:         my $thumbsize = $thumbwidth.'x'.$thumbheight;
 4374:         my @args = ('convert','-sample',$thumbsize,$input,$output);
 4375:         system({$args[0]} @args);
 4376:         if (-e $filepath.'/'.'tn-'.$file) {
 4377:             $fetchthumb  = 1; 
 4378:         }
 4379:     }
 4380:  
 4381: # Notify homeserver to grep it
 4382: #
 4383:     my $docuhome=&homeserver($docuname,$docudom);	
 4384:     my $fetchresult= &reply('fetchuserfile:'.$path.$file,$docuhome);
 4385:     if ($fetchresult eq 'ok') {
 4386:         if ($fetchthumb) {
 4387:             my $thumbresult= &reply('fetchuserfile:'.$path.'tn-'.$file,$docuhome);
 4388:             if ($thumbresult ne 'ok') {
 4389:                 &logthis('Failed to transfer '.$path.'tn-'.$file.' to host '.
 4390:                          $docuhome.': '.$thumbresult);
 4391:             }
 4392:         }
 4393: #
 4394: # Return the URL to it
 4395:         return '/uploaded/'.$path.$file;
 4396:     } else {
 4397:         &logthis('Failed to transfer '.$path.$file.' to host '.$docuhome.
 4398: 		 ': '.$fetchresult);
 4399:         return '/adm/notfound.html';
 4400:     }
 4401: }
 4402: 
 4403: sub extract_embedded_items {
 4404:     my ($fullpath,$allfiles,$codebase,$content) = @_;
 4405:     my @state = ();
 4406:     my (%lastids,%related,%shockwave,%flashvars);
 4407:     my %javafiles = (
 4408:                       codebase => '',
 4409:                       code => '',
 4410:                       archive => ''
 4411:                     );
 4412:     my %mediafiles = (
 4413:                       src => '',
 4414:                       movie => '',
 4415:                      );
 4416:     my $p;
 4417:     if ($content) {
 4418:         $p = HTML::LCParser->new($content);
 4419:     } else {
 4420:         $p = HTML::LCParser->new($fullpath);
 4421:     }
 4422:     while (my $t=$p->get_token()) {
 4423: 	if ($t->[0] eq 'S') {
 4424: 	    my ($tagname, $attr) = ($t->[1],$t->[2]);
 4425: 	    push(@state, $tagname);
 4426:             if (lc($tagname) eq 'allow') {
 4427:                 &add_filetype($allfiles,$attr->{'src'},'src');
 4428:             }
 4429: 	    if (lc($tagname) eq 'img') {
 4430: 		&add_filetype($allfiles,$attr->{'src'},'src');
 4431: 	    }
 4432: 	    if (lc($tagname) eq 'a') {
 4433:                 unless (($attr->{'href'} =~ /^#/) || ($attr->{'href'} eq '')) {
 4434:                     &add_filetype($allfiles,$attr->{'href'},'href');
 4435:                 }
 4436: 	    }
 4437:             if (lc($tagname) eq 'script') {
 4438:                 my $src;
 4439:                 if ($attr->{'archive'} =~ /\.jar$/i) {
 4440:                     &add_filetype($allfiles,$attr->{'archive'},'archive');
 4441:                 } else {
 4442:                     if ($attr->{'src'} ne '') {
 4443:                         $src = $attr->{'src'};
 4444:                         &add_filetype($allfiles,$src,'src');
 4445:                     }
 4446:                 }
 4447:                 my $text = $p->get_trimmed_text();
 4448:                 if ($text =~ /\Qswfobject.registerObject(\E([^\)]+)\)/) {
 4449:                     my @swfargs = split(/,/,$1);
 4450:                     foreach my $item (@swfargs) {
 4451:                         $item =~ s/["']//g;
 4452:                         $item =~ s/^\s+//;
 4453:                         $item =~ s/\s+$//;
 4454:                     }
 4455:                     if (($swfargs[0] ne'') && ($swfargs[2] ne '')) {
 4456:                         if (ref($related{$swfargs[0]}) eq 'ARRAY') {
 4457:                             push(@{$related{$swfargs[0]}},$swfargs[2]);
 4458:                         } else {
 4459:                             $related{$swfargs[0]} = [$swfargs[2]];
 4460:                         }
 4461:                     }
 4462:                 }
 4463:             }
 4464:             if (lc($tagname) eq 'link') {
 4465:                 if (lc($attr->{'rel'}) eq 'stylesheet') { 
 4466:                     &add_filetype($allfiles,$attr->{'href'},'href');
 4467:                 }
 4468:             }
 4469: 	    if (lc($tagname) eq 'object' ||
 4470: 		(lc($tagname) eq 'embed' && lc($state[-2]) ne 'object')) {
 4471: 		foreach my $item (keys(%javafiles)) {
 4472: 		    $javafiles{$item} = '';
 4473: 		}
 4474:                 if ((lc($tagname) eq 'object') && (lc($state[-2]) ne 'object')) {
 4475:                     $lastids{lc($tagname)} = $attr->{'id'};
 4476:                 }
 4477: 	    }
 4478: 	    if (lc($state[-2]) eq 'object' && lc($tagname) eq 'param') {
 4479: 		my $name = lc($attr->{'name'});
 4480: 		foreach my $item (keys(%javafiles)) {
 4481: 		    if ($name eq $item) {
 4482: 			$javafiles{$item} = $attr->{'value'};
 4483: 			last;
 4484: 		    }
 4485: 		}
 4486:                 my $pathfrom;
 4487: 		foreach my $item (keys(%mediafiles)) {
 4488: 		    if ($name eq $item) {
 4489:                         $pathfrom = $attr->{'value'};
 4490:                         $shockwave{$lastids{lc($state[-2])}} = $pathfrom;
 4491: 			&add_filetype($allfiles,$pathfrom,$name);
 4492: 			last;
 4493: 		    }
 4494: 		}
 4495:                 if ($name eq 'flashvars') {
 4496:                     $flashvars{$lastids{lc($state[-2])}} = $attr->{'value'};
 4497:                 }
 4498:                 if ($pathfrom ne '') {
 4499:                     &embedded_dependency($allfiles,\%related,$lastids{lc($state[-2])},
 4500:                                          $pathfrom);
 4501:                 }
 4502: 	    }
 4503: 	    if (lc($tagname) eq 'embed' || lc($tagname) eq 'applet') {
 4504: 		foreach my $item (keys(%javafiles)) {
 4505: 		    if ($attr->{$item}) {
 4506: 			$javafiles{$item} = $attr->{$item};
 4507: 			last;
 4508: 		    }
 4509: 		}
 4510: 		foreach my $item (keys(%mediafiles)) {
 4511: 		    if ($attr->{$item}) {
 4512: 			&add_filetype($allfiles,$attr->{$item},$item);
 4513: 			last;
 4514: 		    }
 4515: 		}
 4516:                 if (lc($tagname) eq 'embed') {
 4517:                     if (($attr->{'name'} ne '') && ($attr->{'src'} ne '')) {
 4518:                         &embedded_dependency($allfiles,\%related,$attr->{'name'},
 4519:                                              $attr->{'src'});
 4520:                     }
 4521:                 }
 4522: 	    }
 4523:             if (lc($tagname) eq 'iframe') {
 4524:                 my $src = $attr->{'src'} ;
 4525:                 if (($src ne '') && ($src !~ m{^(/|https?://)})) {
 4526:                     &add_filetype($allfiles,$src,'src');
 4527:                 } elsif ($src =~ m{^/}) {
 4528:                     if ($env{'request.course.id'}) {
 4529:                         my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 4530:                         my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 4531:                         my $url = &hreflocation('',$fullpath);
 4532:                         if ($url =~ m{^/uploaded/$cdom/$cnum/docs/(\w+/\d+)/}) {
 4533:                             my $relpath = $1;
 4534:                             if ($src =~ m{^/uploaded/$cdom/$cnum/docs/\Q$relpath\E/(.+)$}) {
 4535:                                 &add_filetype($allfiles,$1,'src');
 4536:                             }
 4537:                         }
 4538:                     }
 4539:                 }
 4540:             }
 4541:             if ($t->[4] =~ m{/>$}) {
 4542:                 pop(@state);
 4543:             }
 4544: 	} elsif ($t->[0] eq 'E') {
 4545: 	    my ($tagname) = ($t->[1]);
 4546: 	    if ($javafiles{'codebase'} ne '') {
 4547: 		$javafiles{'codebase'} .= '/';
 4548: 	    }  
 4549: 	    if (lc($tagname) eq 'applet' ||
 4550: 		lc($tagname) eq 'object' ||
 4551: 		(lc($tagname) eq 'embed' && lc($state[-2]) ne 'object')
 4552: 		) {
 4553: 		foreach my $item (keys(%javafiles)) {
 4554: 		    if ($item ne 'codebase' && $javafiles{$item} ne '') {
 4555: 			my $file=$javafiles{'codebase'}.$javafiles{$item};
 4556: 			&add_filetype($allfiles,$file,$item);
 4557: 		    }
 4558: 		}
 4559: 	    } 
 4560: 	    pop @state;
 4561: 	}
 4562:     }
 4563:     foreach my $id (sort(keys(%flashvars))) {
 4564:         if ($shockwave{$id} ne '') {
 4565:             my @pairs = split(/\&/,$flashvars{$id});
 4566:             foreach my $pair (@pairs) {
 4567:                 my ($key,$value) = split(/\=/,$pair);
 4568:                 if ($key eq 'thumb') {
 4569:                     &add_filetype($allfiles,$value,$key);
 4570:                 } elsif ($key eq 'content') {
 4571:                     my ($path) = ($shockwave{$id} =~ m{^(.+/)[^/]+$});
 4572:                     my ($ext) = ($value =~ /\.([^.]+)$/);
 4573:                     if ($ext ne '') {
 4574:                         &add_filetype($allfiles,$path.$value,$ext);
 4575:                     }
 4576:                 }
 4577:             }
 4578:         }
 4579:     }
 4580:     return 'ok';
 4581: }
 4582: 
 4583: sub add_filetype {
 4584:     my ($allfiles,$file,$type)=@_;
 4585:     if (exists($allfiles->{$file})) {
 4586: 	unless (grep/^\Q$type\E$/, @{$allfiles->{$file}}) {
 4587: 	    push(@{$allfiles->{$file}}, &escape($type));
 4588: 	}
 4589:     } else {
 4590: 	@{$allfiles->{$file}} = (&escape($type));
 4591:     }
 4592: }
 4593: 
 4594: sub embedded_dependency {
 4595:     my ($allfiles,$related,$identifier,$pathfrom) = @_;
 4596:     if ((ref($allfiles) eq 'HASH') && (ref($related) eq 'HASH')) {
 4597:         if (($identifier ne '') &&
 4598:             (ref($related->{$identifier}) eq 'ARRAY') &&
 4599:             ($pathfrom ne '')) {
 4600:             my ($path) = ($pathfrom =~ m{^(.+/)[^/]+$});
 4601:             foreach my $dep (@{$related->{$identifier}}) {
 4602:                 &add_filetype($allfiles,$path.$dep,'object');
 4603:             }
 4604:         }
 4605:     }
 4606:     return;
 4607: }
 4608: 
 4609: sub bubblesheet_converter {
 4610:     my ($cdom,$fullpath,$config,$format) = @_;
 4611:     if ((&domain($cdom) ne '') &&
 4612:         ($fullpath =~ m{^\Q$perlvar{'lonDocRoot'}/userfiles/$cdom/\E$match_courseid/scantron_orig}) &&
 4613:         (-e $fullpath) && (ref($config) eq 'HASH') && ($format ne '')) {
 4614:         my (%csvcols,%csvoptions);
 4615:         if (ref($config->{'fields'}) eq 'HASH') {  
 4616:             %csvcols = %{$config->{'fields'}};
 4617:         }
 4618:         if (ref($config->{'options'}) eq 'HASH') {
 4619:             %csvoptions = %{$config->{'options'}};
 4620:         }
 4621:         my %csvbynum = reverse(%csvcols);
 4622:         my %scantronconf = &get_scantron_config($format,$cdom);
 4623:         if (keys(%scantronconf)) {
 4624:             my %bynum = (
 4625:                           $scantronconf{CODEstart} => 'CODEstart',
 4626:                           $scantronconf{IDstart}   => 'IDstart',
 4627:                           $scantronconf{PaperID}   => 'PaperID',
 4628:                           $scantronconf{FirstName} => 'FirstName',
 4629:                           $scantronconf{LastName}  => 'LastName',
 4630:                           $scantronconf{Qstart}    => 'Qstart',
 4631:                         );
 4632:             my @ordered;
 4633:             foreach my $item (sort { $a <=> $b } keys(%bynum)) {
 4634:                 push(@ordered,$bynum{$item});
 4635:             }
 4636:             my %mapstart = (
 4637:                               CODEstart => 'CODE',
 4638:                               IDstart   => 'ID',
 4639:                               PaperID   => 'PaperID',
 4640:                               FirstName => 'FirstName',
 4641:                               LastName  => 'LastName',
 4642:                               Qstart    => 'FirstQuestion',
 4643:                            );
 4644:             my %maplength = (
 4645:                               CODEstart => 'CODElength',
 4646:                               IDstart   => 'IDlength',
 4647:                               PaperID   => 'PaperIDlength',
 4648:                               FirstName => 'FirstNamelength',
 4649:                               LastName  => 'LastNamelength',
 4650:             );
 4651:             if (open(my $fh,'<',$fullpath)) {
 4652:                 my $output;
 4653:                 my %lettdig = &letter_to_digits();
 4654:                 my %diglett = reverse(%lettdig);
 4655:                 my $numletts = scalar(keys(%lettdig));
 4656:                 my $num = 0;
 4657:                 while (my $line=<$fh>) {
 4658:                     $num ++;
 4659:                     next if (($num == 1) && ($csvoptions{'hdr'} == 1));
 4660:                     $line =~ s{[\r\n]+$}{};
 4661:                     my %found;
 4662:                     my @values = split(/,/,$line);
 4663:                     my ($qstart,$record);
 4664:                     for (my $i=0; $i<@values; $i++) {
 4665:                         if ((($qstart ne '') && ($i > $qstart)) ||
 4666:                             ($csvbynum{$i} eq 'FirstQuestion')) {
 4667:                             if ($values[$i] eq '') {
 4668:                                 $values[$i] = $scantronconf{'Qoff'};
 4669:                             } elsif ($scantronconf{'Qon'} eq 'number') {
 4670:                                 if ($values[$i] =~ /^[A-Ja-j]$/) {
 4671:                                     $values[$i] = $lettdig{uc($values[$i])};
 4672:                                 }
 4673:                             } elsif ($scantronconf{'Qon'} eq 'letter') {
 4674:                                 if ($values[$i] =~ /^[0-9]$/) {
 4675:                                     $values[$i] = $diglett{$values[$i]};
 4676:                                 }
 4677:                             } else {
 4678:                                 if ($values[$i] =~ /^[0-9A-Ja-j]$/) {
 4679:                                     my $digit;
 4680:                                     if ($values[$i] =~ /^[A-Ja-j]$/) {
 4681:                                         $digit = $lettdig{uc($values[$i])}-1;
 4682:                                         if ($values[$i] eq 'J') {
 4683:                                             $digit += $numletts;
 4684:                                         }
 4685:                                     } elsif ($values[$i] =~ /^[0-9]$/) {
 4686:                                         $digit = $values[$i]-1;
 4687:                                         if ($values[$i] eq '0') {
 4688:                                             $digit += $numletts;
 4689:                                         }
 4690:                                     }
 4691:                                     my $qval='';
 4692:                                     for (my $j=0; $j<$scantronconf{'Qlength'}; $j++) {
 4693:                                         if ($j == $digit) {
 4694:                                             $qval .= $scantronconf{'Qon'};
 4695:                                         } else {
 4696:                                             $qval .= $scantronconf{'Qoff'};
 4697:                                         }
 4698:                                     }
 4699:                                     $values[$i] = $qval;
 4700:                                 }
 4701:                             }
 4702:                             if (length($values[$i]) > $scantronconf{'Qlength'}) {
 4703:                                 $values[$i] = substr($values[$i],0,$scantronconf{'Qlength'});
 4704:                             }
 4705:                             my $numblank = $scantronconf{'Qlength'} - length($values[$i]);
 4706:                             if ($numblank > 0) {
 4707:                                  $values[$i] .= ($scantronconf{'Qoff'} x $numblank);
 4708:                             }
 4709:                             if ($csvbynum{$i} eq 'FirstQuestion') {
 4710:                                 $qstart = $i;
 4711:                                 $found{$csvbynum{$i}} = $values[$i];
 4712:                             } else {
 4713:                                 $found{'FirstQuestion'} .= $values[$i];
 4714:                             }
 4715:                         } elsif (exists($csvbynum{$i})) {
 4716:                             if ($csvoptions{'rem'}) {
 4717:                                 $values[$i] =~ s/^\s+//;
 4718:                             }
 4719:                             if (($csvbynum{$i} eq 'PaperID') && ($csvoptions{'pad'})) {
 4720:                                 while (length($values[$i]) < $scantronconf{$maplength{$csvbynum{$i}}}) {
 4721:                                     $values[$i] = '0'.$values[$i];
 4722:                                 }
 4723:                             }
 4724:                             $found{$csvbynum{$i}} = $values[$i];
 4725:                         }
 4726:                     }
 4727:                     foreach my $item (@ordered) {
 4728:                         my $currlength = 1+length($record);
 4729:                         my $numspaces = $scantronconf{$item} - $currlength;
 4730:                         if ($numspaces > 0) {
 4731:                             $record .= (' ' x $numspaces);
 4732:                         }
 4733:                         if (($mapstart{$item} ne '') && (exists($found{$mapstart{$item}}))) {
 4734:                             unless ($item eq 'Qstart') {
 4735:                                 if (length($found{$mapstart{$item}}) > $scantronconf{$maplength{$item}}) {
 4736:                                     $found{$mapstart{$item}} = substr($found{$mapstart{$item}},0,$scantronconf{$maplength{$item}});
 4737:                                 }
 4738:                             }
 4739:                             $record .= $found{$mapstart{$item}};
 4740:                         }
 4741:                     }
 4742:                     $output .= "$record\n";
 4743:                 }
 4744:                 close($fh);
 4745:                 if ($output) {
 4746:                     if (open(my $fh,'>',$fullpath)) {
 4747:                         print $fh $output;
 4748:                         close($fh);
 4749:                     }
 4750:                 }
 4751:             }
 4752:         }
 4753:         return;
 4754:     }
 4755: }
 4756: 
 4757: sub letter_to_digits {
 4758:     my %lettdig = (
 4759:                     A => 1,
 4760:                     B => 2,
 4761:                     C => 3,
 4762:                     D => 4,
 4763:                     E => 5,
 4764:                     F => 6,
 4765:                     G => 7,
 4766:                     H => 8,
 4767:                     I => 9,
 4768:                     J => 0,
 4769:                   );
 4770:     return %lettdig;
 4771: }
 4772: 
 4773: sub get_scantron_config {
 4774:     my ($which,$cdom) = @_;
 4775:     my @lines = &get_scantronformat_file($cdom);
 4776:     my %config;
 4777:     #FIXME probably should move to XML it has already gotten a bit much now
 4778:     foreach my $line (@lines) {
 4779:         my ($name,$descrip)=split(/:/,$line);
 4780:         if ($name ne $which ) { next; }
 4781:         chomp($line);
 4782:         my @config=split(/:/,$line);
 4783:         $config{'name'}=$config[0];
 4784:         $config{'description'}=$config[1];
 4785:         $config{'CODElocation'}=$config[2];
 4786:         $config{'CODEstart'}=$config[3];
 4787:         $config{'CODElength'}=$config[4];
 4788:         $config{'IDstart'}=$config[5];
 4789:         $config{'IDlength'}=$config[6];
 4790:         $config{'Qstart'}=$config[7];
 4791:         $config{'Qlength'}=$config[8];
 4792:         $config{'Qoff'}=$config[9];
 4793:         $config{'Qon'}=$config[10];
 4794:         $config{'PaperID'}=$config[11];
 4795:         $config{'PaperIDlength'}=$config[12];
 4796:         $config{'FirstName'}=$config[13];
 4797:         $config{'FirstNamelength'}=$config[14];
 4798:         $config{'LastName'}=$config[15];
 4799:         $config{'LastNamelength'}=$config[16];
 4800:         $config{'BubblesPerRow'}=$config[17];
 4801:         last;
 4802:     }
 4803:     return %config;
 4804: }
 4805: 
 4806: sub get_scantronformat_file {
 4807:     my ($cdom) = @_;
 4808:     if ($cdom eq '') {
 4809:         $cdom= $env{'course.'.$env{'request.course.id'}.'.domain'};
 4810:     }
 4811:     my %domconfig = &get_dom('configuration',['scantron'],$cdom);
 4812:     my $gottab = 0;
 4813:     my @lines;
 4814:     if (ref($domconfig{'scantron'}) eq 'HASH') {
 4815:         if ($domconfig{'scantron'}{'scantronformat'} ne '') {
 4816:             my $formatfile = &getfile($perlvar{'lonDocRoot'}.$domconfig{'scantron'}{'scantronformat'});
 4817:             if ($formatfile ne '-1') {
 4818:                 @lines = split("\n",$formatfile,-1);
 4819:                 $gottab = 1;
 4820:             }
 4821:         }
 4822:     }
 4823:     if (!$gottab) {
 4824:         my $confname = $cdom.'-domainconfig';
 4825:         my $default = $perlvar{'lonDocRoot'}.'/res/'.$cdom.'/'.$confname.'/default.tab';
 4826:         my $formatfile = &getfile($default);
 4827:         if ($formatfile ne '-1') {
 4828:             @lines = split("\n",$formatfile,-1);
 4829:             $gottab = 1;
 4830:         }
 4831:     }
 4832:     if (!$gottab) {
 4833:         my @domains = &current_machine_domains();
 4834:         if (grep(/^\Q$cdom\E$/,@domains)) {
 4835:             if (open(my $fh,'<',$perlvar{'lonTabDir'}.'/scantronformat.tab')) {
 4836:                 @lines = <$fh>;
 4837:                 close($fh);
 4838:             }
 4839:         } else {
 4840:             if (open(my $fh,'<',$perlvar{'lonTabDir'}.'/default_scantronformat.tab')) {
 4841:                 @lines = <$fh>;
 4842:                 close($fh);
 4843:             }
 4844:         }
 4845:     }
 4846:     return @lines;
 4847: }
 4848: 
 4849: sub removeuploadedurl {
 4850:     my ($url)=@_;	
 4851:     my (undef,undef,$udom,$uname,$fname)=split('/',$url,5);    
 4852:     return &removeuserfile($uname,$udom,$fname);
 4853: }
 4854: 
 4855: sub removeuserfile {
 4856:     my ($docuname,$docudom,$fname)=@_;
 4857:     my $home=&homeserver($docuname,$docudom);    
 4858:     my $result = &reply("removeuserfile:$docudom/$docuname/$fname",$home);
 4859:     if ($result eq 'ok') {	
 4860:         if (($fname !~ /\.meta$/) && (&is_portfolio_file($fname))) {
 4861:             my $metafile = $fname.'.meta';
 4862:             my $metaresult = &removeuserfile($docuname,$docudom,$metafile); 
 4863: 	    my $url = "/uploaded/$docudom/$docuname/$fname";
 4864:             my ($file,$group) = (&parse_portfolio_url($url))[3,4];	   
 4865:             my $sqlresult = 
 4866:                 &update_portfolio_table($docuname,$docudom,$file,
 4867:                                         'portfolio_metadata',$group,
 4868:                                         'delete');
 4869:         }
 4870:     }
 4871:     return $result;
 4872: }
 4873: 
 4874: sub mkdiruserfile {
 4875:     my ($docuname,$docudom,$dir)=@_;
 4876:     my $home=&homeserver($docuname,$docudom);
 4877:     return &reply("mkdiruserfile:".&escape("$docudom/$docuname/$dir"),$home);
 4878: }
 4879: 
 4880: sub renameuserfile {
 4881:     my ($docuname,$docudom,$old,$new)=@_;
 4882:     my $home=&homeserver($docuname,$docudom);
 4883:     my $result = &reply("renameuserfile:$docudom:$docuname:".
 4884:                         &escape("$old").':'.&escape("$new"),$home);
 4885:     if ($result eq 'ok') {
 4886:         if (($old !~ /\.meta$/) && (&is_portfolio_file($old))) {
 4887:             my $oldmeta = $old.'.meta';
 4888:             my $newmeta = $new.'.meta';
 4889:             my $metaresult = 
 4890:                 &renameuserfile($docuname,$docudom,$oldmeta,$newmeta);
 4891: 	    my $url = "/uploaded/$docudom/$docuname/$old";
 4892:             my ($file,$group) = (&parse_portfolio_url($url))[3,4];
 4893:             my $sqlresult = 
 4894:                 &update_portfolio_table($docuname,$docudom,$file,
 4895:                                         'portfolio_metadata',$group,
 4896:                                         'delete');
 4897:         }
 4898:     }
 4899:     return $result;
 4900: }
 4901: 
 4902: # ------------------------------------------------------------------------- Log
 4903: 
 4904: sub log {
 4905:     my ($dom,$nam,$hom,$what)=@_;
 4906:     return critical("log:$dom:$nam:$what",$hom);
 4907: }
 4908: 
 4909: # ------------------------------------------------------------------ Course Log
 4910: #
 4911: # This routine flushes several buffers of non-mission-critical nature
 4912: #
 4913: 
 4914: sub flushcourselogs {
 4915:     &logthis('Flushing log buffers');
 4916: #
 4917: # course logs
 4918: # This is a log of all transactions in a course, which can be used
 4919: # for data mining purposes
 4920: #
 4921: # It also collects the courseid database, which lists last transaction
 4922: # times and course titles for all courseids
 4923: #
 4924:     my %courseidbuffer=();
 4925:     foreach my $crsid (keys(%courselogs)) {
 4926:         if (&reply('log:'.$coursedombuf{$crsid}.':'.$coursenumbuf{$crsid}.':'.
 4927: 		          &escape($courselogs{$crsid}),
 4928: 		          $coursehombuf{$crsid}) eq 'ok') {
 4929: 	    delete $courselogs{$crsid};
 4930:         } else {
 4931:             &logthis('Failed to flush log buffer for '.$crsid);
 4932:             if (length($courselogs{$crsid})>40000) {
 4933:                &logthis("<font color=\"blue\">WARNING: Buffer for ".$crsid.
 4934:                         " exceeded maximum size, deleting.</font>");
 4935:                delete $courselogs{$crsid};
 4936:             }
 4937:         }
 4938:         $courseidbuffer{$coursehombuf{$crsid}}{$crsid} = {
 4939:             'description' => $coursedescrbuf{$crsid},
 4940:             'inst_code'    => $courseinstcodebuf{$crsid},
 4941:             'type'        => $coursetypebuf{$crsid},
 4942:             'owner'       => $courseownerbuf{$crsid},
 4943:         };
 4944:     }
 4945: #
 4946: # Write course id database (reverse lookup) to homeserver of courses 
 4947: # Is used in pickcourse
 4948: #
 4949:     foreach my $crs_home (keys(%courseidbuffer)) {
 4950:         my $response = &courseidput(&host_domain($crs_home),
 4951:                                     $courseidbuffer{$crs_home},
 4952:                                     $crs_home,'timeonly');
 4953:     }
 4954: #
 4955: # File accesses
 4956: # Writes to the dynamic metadata of resources to get hit counts, etc.
 4957: #
 4958:     foreach my $entry (keys(%accesshash)) {
 4959:         if ($entry =~ /___count$/) {
 4960:             my ($dom,$name);
 4961:             ($dom,$name,undef)=
 4962: 		($entry=~m{___($match_domain)/($match_name)/(.*)___count$});
 4963:             if (! defined($dom) || $dom eq '' || 
 4964:                 ! defined($name) || $name eq '') {
 4965:                 my $cid = $env{'request.course.id'};
 4966:                 $dom  = $env{'request.'.$cid.'.domain'};
 4967:                 $name = $env{'request.'.$cid.'.num'};
 4968:             }
 4969:             my $value = $accesshash{$entry};
 4970:             my (undef,$url,undef) = ($entry =~ /^(.*)___(.*)___count$/);
 4971:             my %temphash=($url => $value);
 4972:             my $result = &inc('nohist_accesscount',\%temphash,$dom,$name);
 4973:             if ($result eq 'ok') {
 4974:                 delete $accesshash{$entry};
 4975:             }
 4976:         } else {
 4977:             my ($dom,$name) = ($entry=~m{___($match_domain)/($match_name)/(.*)___(\w+)$});
 4978:             if (($dom eq 'uploaded') || ($dom eq 'adm')) { next; }
 4979:             my %temphash=($entry => $accesshash{$entry});
 4980:             if (&put('nohist_resevaldata',\%temphash,$dom,$name) eq 'ok') {
 4981:                 delete $accesshash{$entry};
 4982:             }
 4983:         }
 4984:     }
 4985: #
 4986: # Roles
 4987: # Reverse lookup of user roles for course faculty/staff and co-authorship
 4988: #
 4989:     foreach my $entry (keys(%userrolehash)) {
 4990:         my ($role,$uname,$udom,$runame,$rudom,$rsec)=
 4991: 	    split(/\:/,$entry);
 4992:         if (&Apache::lonnet::put('nohist_userroles',
 4993:              { $role.':'.$uname.':'.$udom.':'.$rsec => $userrolehash{$entry} },
 4994:                 $rudom,$runame) eq 'ok') {
 4995: 	    delete $userrolehash{$entry};
 4996:         }
 4997:     }
 4998: #
 4999: # Reverse lookup of domain roles (dc, ad, li, sc, dh, da, au)
 5000: #
 5001:     my %domrolebuffer = ();
 5002:     foreach my $entry (keys(%domainrolehash)) {
 5003:         my ($role,$uname,$udom,$runame,$rudom,$rsec)=split(/:/,$entry);
 5004:         if ($domrolebuffer{$rudom}) {
 5005:             $domrolebuffer{$rudom}.='&'.&escape($entry).
 5006:                       '='.&escape($domainrolehash{$entry});
 5007:         } else {
 5008:             $domrolebuffer{$rudom}.=&escape($entry).
 5009:                       '='.&escape($domainrolehash{$entry});
 5010:         }
 5011:         delete $domainrolehash{$entry};
 5012:     }
 5013:     foreach my $dom (keys(%domrolebuffer)) {
 5014: 	my %servers;
 5015: 	if (defined(&domain($dom,'primary'))) {
 5016: 	    my $primary=&domain($dom,'primary');
 5017: 	    my $hostname=&hostname($primary);
 5018: 	    $servers{$primary} = $hostname;
 5019: 	} else { 
 5020: 	    %servers = &get_servers($dom,'library');
 5021: 	}
 5022: 	foreach my $tryserver (keys(%servers)) {
 5023: 	    if (&reply('domroleput:'.$dom.':'.
 5024: 		       $domrolebuffer{$dom},$tryserver) eq 'ok') {
 5025: 		last;
 5026: 	    } else {  
 5027: 		&logthis('Put of domain roles failed for '.$dom.' and  '.$tryserver);
 5028: 	    }
 5029:         }
 5030:     }
 5031:     $dumpcount++;
 5032: }
 5033: 
 5034: sub courselog {
 5035:     my $what=shift;
 5036:     $what=time.':'.$what;
 5037:     unless ($env{'request.course.id'}) { return ''; }
 5038:     $coursedombuf{$env{'request.course.id'}}=
 5039:        $env{'course.'.$env{'request.course.id'}.'.domain'};
 5040:     $coursenumbuf{$env{'request.course.id'}}=
 5041:        $env{'course.'.$env{'request.course.id'}.'.num'};
 5042:     $coursehombuf{$env{'request.course.id'}}=
 5043:        $env{'course.'.$env{'request.course.id'}.'.home'};
 5044:     $coursedescrbuf{$env{'request.course.id'}}=
 5045:        $env{'course.'.$env{'request.course.id'}.'.description'};
 5046:     $courseinstcodebuf{$env{'request.course.id'}}=
 5047:        $env{'course.'.$env{'request.course.id'}.'.internal.coursecode'};
 5048:     $courseownerbuf{$env{'request.course.id'}}=
 5049:        $env{'course.'.$env{'request.course.id'}.'.internal.courseowner'};
 5050:     $coursetypebuf{$env{'request.course.id'}}=
 5051:        $env{'course.'.$env{'request.course.id'}.'.type'};
 5052:     if (defined $courselogs{$env{'request.course.id'}}) {
 5053: 	$courselogs{$env{'request.course.id'}}.='&'.$what;
 5054:     } else {
 5055: 	$courselogs{$env{'request.course.id'}}.=$what;
 5056:     }
 5057:     if (length($courselogs{$env{'request.course.id'}})>4048) {
 5058: 	&flushcourselogs();
 5059:     }
 5060: }
 5061: 
 5062: sub courseacclog {
 5063:     my $fnsymb=shift;
 5064:     unless ($env{'request.course.id'}) { return ''; }
 5065:     my $what=$fnsymb.':'.$env{'user.name'}.':'.$env{'user.domain'};
 5066:     if ($fnsymb=~/$LONCAPA::assess_re/) {
 5067:         $what.=':POST';
 5068:         # FIXME: Probably ought to escape things....
 5069: 	foreach my $key (keys(%env)) {
 5070:             if ($key=~/^form\.(.*)/) {
 5071:                 my $formitem = $1;
 5072:                 if ($formitem =~ /^HWFILE(?:SIZE|TOOBIG)/) {
 5073:                     $what.=':'.$formitem.'='.$env{$key};
 5074:                 } elsif ($formitem !~ /^HWFILE(?:[^.]+)$/) {
 5075:                     if ($formitem eq 'proctorpassword') {
 5076:                         $what.=':'.$formitem.'=' . '*' x length($env{$key});
 5077:                     } else {
 5078:                         $what.=':'.$formitem.'='.$env{$key};
 5079:                     }
 5080:                 }
 5081:             }
 5082:         }
 5083:     } elsif ($fnsymb =~ m:^/adm/searchcat:) {
 5084:         # FIXME: We should not be depending on a form parameter that someone
 5085:         # editing lonsearchcat.pm might change in the future.
 5086:         if ($env{'form.phase'} eq 'course_search') {
 5087:             $what.= ':POST';
 5088:             # FIXME: Probably ought to escape things....
 5089:             foreach my $element ('courseexp','crsfulltext','crsrelated',
 5090:                                  'crsdiscuss') {
 5091:                 $what.=':'.$element.'='.$env{'form.'.$element};
 5092:             }
 5093:         }
 5094:     }
 5095:     &courselog($what);
 5096: }
 5097: 
 5098: sub countacc {
 5099:     my $url=&declutter(shift);
 5100:     return if (! defined($url) || $url eq '');
 5101:     unless ($env{'request.course.id'}) { return ''; }
 5102: #
 5103: # Mark that this url was used in this course
 5104: #
 5105:     $accesshash{$env{'request.course.id'}.'___'.$url.'___course'}=1;
 5106: #
 5107: # Increase the access count for this resource in this child process
 5108: #
 5109:     my $key=$$.$processmarker.'_'.$dumpcount.'___'.$url.'___count';
 5110:     $accesshash{$key}++;
 5111: }
 5112: 
 5113: sub linklog {
 5114:     my ($from,$to)=@_;
 5115:     $from=&declutter($from);
 5116:     $to=&declutter($to);
 5117:     $accesshash{$from.'___'.$to.'___comefrom'}=1;
 5118:     $accesshash{$to.'___'.$from.'___goto'}=1;
 5119: }
 5120: 
 5121: sub statslog {
 5122:     my ($symb,$part,$users,$av_attempts,$degdiff)=@_;
 5123:     if ($users<2) { return; }
 5124:     my %dynstore=&LONCAPA::lonmetadata::dynamic_metadata_storage({
 5125:             'course'       => $env{'request.course.id'},
 5126:             'sections'     => '"all"',
 5127:             'num_students' => $users,
 5128:             'part'         => $part,
 5129:             'symb'         => $symb,
 5130:             'mean_tries'   => $av_attempts,
 5131:             'deg_of_diff'  => $degdiff});
 5132:     foreach my $key (keys(%dynstore)) {
 5133:         $accesshash{$key}=$dynstore{$key};
 5134:     }
 5135: }
 5136:   
 5137: sub userrolelog {
 5138:     my ($trole,$username,$domain,$area,$tstart,$tend)=@_;
 5139:     if ( $trole =~ /^(ca|aa|in|cc|ep|cr|ta|co)/ ) {
 5140:        my (undef,$rudom,$runame,$rsec)=split(/\//,$area);
 5141:        $userrolehash
 5142:          {$trole.':'.$username.':'.$domain.':'.$runame.':'.$rudom.':'.$rsec}
 5143:                     =$tend.':'.$tstart;
 5144:     }
 5145:     if ($env{'request.role'} =~ /dc\./ && $trole =~ /^(au|in|cc|ep|cr|ta|co)/) {
 5146:        $userrolehash
 5147:          {$trole.':'.$username.':'.$domain.':'.$env{'user.name'}.':'.$env{'user.domain'}.':'}
 5148:                     =$tend.':'.$tstart;
 5149:     }
 5150:     if ($trole =~ /^(dc|ad|li|au|dg|sc|dh|da)/ ) {
 5151:        my (undef,$rudom,$runame,$rsec)=split(/\//,$area);
 5152:        $domainrolehash
 5153:          {$trole.':'.$username.':'.$domain.':'.$runame.':'.$rudom.':'.$rsec}
 5154:                     = $tend.':'.$tstart;
 5155:     }
 5156: }
 5157: 
 5158: sub courserolelog {
 5159:     my ($trole,$username,$domain,$area,$tstart,$tend,$delflag,$selfenroll,$context)=@_;
 5160:     if ($area =~ m-^/($match_domain)/($match_courseid)/?([^/]*)-) {
 5161:         my $cdom = $1;
 5162:         my $cnum = $2;
 5163:         my $sec = $3;
 5164:         my $namespace = 'rolelog';
 5165:         my %storehash = (
 5166:                            role    => $trole,
 5167:                            start   => $tstart,
 5168:                            end     => $tend,
 5169:                            selfenroll => $selfenroll,
 5170:                            context    => $context,
 5171:                         );
 5172:         if ($trole eq 'gr') {
 5173:             $namespace = 'groupslog';
 5174:             $storehash{'group'} = $sec;
 5175:         } else {
 5176:             $storehash{'section'} = $sec;
 5177:         }
 5178:         &write_log('course',$namespace,\%storehash,$delflag,$username,
 5179:                    $domain,$cnum,$cdom);
 5180:         if (($trole ne 'st') || ($sec ne '')) {
 5181:             &devalidate_cache_new('getcourseroles',$cdom.'_'.$cnum);
 5182:         }
 5183:     }
 5184:     return;
 5185: }
 5186: 
 5187: sub domainrolelog {
 5188:     my ($trole,$username,$domain,$area,$tstart,$tend,$delflag,$context)=@_;
 5189:     if ($area =~ m{^/($match_domain)/$}) {
 5190:         my $cdom = $1;
 5191:         my $domconfiguser = &Apache::lonnet::get_domainconfiguser($cdom);
 5192:         my $namespace = 'rolelog';
 5193:         my %storehash = (
 5194:                            role    => $trole,
 5195:                            start   => $tstart,
 5196:                            end     => $tend,
 5197:                            context => $context,
 5198:                         );
 5199:         &write_log('domain',$namespace,\%storehash,$delflag,$username,
 5200:                    $domain,$domconfiguser,$cdom);
 5201:     }
 5202:     return;
 5203: 
 5204: }
 5205: 
 5206: sub coauthorrolelog {
 5207:     my ($trole,$username,$domain,$area,$tstart,$tend,$delflag,$context)=@_;
 5208:     if ($area =~ m{^/($match_domain)/($match_username)$}) {
 5209:         my $audom = $1;
 5210:         my $auname = $2;
 5211:         my $namespace = 'rolelog';
 5212:         my %storehash = (
 5213:                            role    => $trole,
 5214:                            start   => $tstart,
 5215:                            end     => $tend,
 5216:                            context => $context,
 5217:                         );
 5218:         &write_log('author',$namespace,\%storehash,$delflag,$username,
 5219:                    $domain,$auname,$audom);
 5220:     }
 5221:     return;
 5222: }
 5223: 
 5224: sub get_course_adv_roles {
 5225:     my ($cid,$codes) = @_;
 5226:     $cid=$env{'request.course.id'} unless (defined($cid));
 5227:     my %coursehash=&coursedescription($cid);
 5228:     my $crstype = &Apache::loncommon::course_type($cid);
 5229:     my %nothide=();
 5230:     foreach my $user (split(/\s*\,\s*/,$coursehash{'nothideprivileged'})) {
 5231:         if ($user !~ /:/) {
 5232: 	    $nothide{join(':',split(/[\@]/,$user))}=1;
 5233:         } else {
 5234:             $nothide{$user}=1;
 5235:         }
 5236:     }
 5237:     my @possdoms = ($coursehash{'domain'});
 5238:     if ($coursehash{'checkforpriv'}) {
 5239:         push(@possdoms,split(/,/,$coursehash{'checkforpriv'}));
 5240:     }
 5241:     my %returnhash=();
 5242:     my %dumphash=
 5243:             &dump('nohist_userroles',$coursehash{'domain'},$coursehash{'num'});
 5244:     my $now=time;
 5245:     my %privileged;
 5246:     foreach my $entry (keys(%dumphash)) {
 5247: 	my ($tend,$tstart)=split(/\:/,$dumphash{$entry});
 5248:         if (($tstart) && ($tstart<0)) { next; }
 5249:         if (($tend) && ($tend<$now)) { next; }
 5250:         if (($tstart) && ($now<$tstart)) { next; }
 5251:         my ($role,$username,$domain,$section)=split(/\:/,$entry);
 5252: 	if ($username eq '' || $domain eq '') { next; }
 5253:         if ((&privileged($username,$domain,\@possdoms)) &&
 5254:             (!$nothide{$username.':'.$domain})) { next; }
 5255: 	if ($role eq 'cr') { next; }
 5256:         if ($codes) {
 5257:             if ($section) { $role .= ':'.$section; }
 5258:             if ($returnhash{$role}) {
 5259:                 $returnhash{$role}.=','.$username.':'.$domain;
 5260:             } else {
 5261:                 $returnhash{$role}=$username.':'.$domain;
 5262:             }
 5263:         } else {
 5264:             my $key=&plaintext($role,$crstype);
 5265:             if ($section) { $key.=' ('.&Apache::lonlocal::mt('Section [_1]',$section).')'; }
 5266:             if ($returnhash{$key}) {
 5267: 	        $returnhash{$key}.=','.$username.':'.$domain;
 5268:             } else {
 5269:                 $returnhash{$key}=$username.':'.$domain;
 5270:             }
 5271:         }
 5272:     }
 5273:     return %returnhash;
 5274: }
 5275: 
 5276: sub get_my_roles {
 5277:     my ($uname,$udom,$context,$types,$roles,$roledoms,$withsec,$hidepriv)=@_;
 5278:     unless (defined($uname)) { $uname=$env{'user.name'}; }
 5279:     unless (defined($udom)) { $udom=$env{'user.domain'}; }
 5280:     my (%dumphash,%nothide);
 5281:     if ($context eq 'userroles') {
 5282:         %dumphash = &dump('roles',$udom,$uname);
 5283:     } else {
 5284:         %dumphash = &dump('nohist_userroles',$udom,$uname);
 5285:         if ($hidepriv) {
 5286:             my %coursehash=&coursedescription($udom.'_'.$uname);
 5287:             foreach my $user (split(/\s*\,\s*/,$coursehash{'nothideprivileged'})) {
 5288:                 if ($user !~ /:/) {
 5289:                     $nothide{join(':',split(/[\@]/,$user))} = 1;
 5290:                 } else {
 5291:                     $nothide{$user} = 1;
 5292:                 }
 5293:             }
 5294:         }
 5295:     }
 5296:     my %returnhash=();
 5297:     my $now=time;
 5298:     my %privileged;
 5299:     foreach my $entry (keys(%dumphash)) {
 5300:         my ($role,$tend,$tstart);
 5301:         if ($context eq 'userroles') {
 5302:             next if ($entry =~ /^rolesdef/);
 5303: 	    ($role,$tend,$tstart)=split(/_/,$dumphash{$entry});
 5304:         } else {
 5305:             ($tend,$tstart)=split(/\:/,$dumphash{$entry});
 5306:         }
 5307:         if (($tstart) && ($tstart<0)) { next; }
 5308:         my $status = 'active';
 5309:         if (($tend) && ($tend<=$now)) {
 5310:             $status = 'previous';
 5311:         } 
 5312:         if (($tstart) && ($now<$tstart)) {
 5313:             $status = 'future';
 5314:         }
 5315:         if (ref($types) eq 'ARRAY') {
 5316:             if (!grep(/^\Q$status\E$/,@{$types})) {
 5317:                 next;
 5318:             } 
 5319:         } else {
 5320:             if ($status ne 'active') {
 5321:                 next;
 5322:             }
 5323:         }
 5324:         my ($rolecode,$username,$domain,$section,$area);
 5325:         if ($context eq 'userroles') {
 5326:             ($area,$rolecode) = ($entry =~ /^(.+)_([^_]+)$/);
 5327:             (undef,$domain,$username,$section) = split(/\//,$area);
 5328:         } else {
 5329:             ($role,$username,$domain,$section) = split(/\:/,$entry);
 5330:         }
 5331:         if (ref($roledoms) eq 'ARRAY') {
 5332:             if (!grep(/^\Q$domain\E$/,@{$roledoms})) {
 5333:                 next;
 5334:             }
 5335:         }
 5336:         if (ref($roles) eq 'ARRAY') {
 5337:             if (!grep(/^\Q$role\E$/,@{$roles})) {
 5338:                 if ($role =~ /^cr\//) {
 5339:                     if (!grep(/^cr$/,@{$roles})) {
 5340:                         next;
 5341:                     }
 5342:                 } elsif ($role =~ /^gr\//) {
 5343:                     if (!grep(/^gr$/,@{$roles})) {
 5344:                         next;
 5345:                     }
 5346:                 } else {
 5347:                     next;
 5348:                 }
 5349:             }
 5350:         }
 5351:         if ($hidepriv) {
 5352:             my @privroles = ('dc','su');
 5353:             if ($context eq 'userroles') {
 5354:                 next if (grep(/^\Q$role\E$/,@privroles));
 5355:             } else {
 5356:                 my $possdoms = [$domain];
 5357:                 if (ref($roledoms) eq 'ARRAY') {
 5358:                    push(@{$possdoms},@{$roledoms}); 
 5359:                 }
 5360:                 if (&privileged($username,$domain,$possdoms,\@privroles)) {
 5361:                     if (!$nothide{$username.':'.$domain}) {
 5362:                         next;
 5363:                     }
 5364:                 }
 5365:             }
 5366:         }
 5367:         if ($withsec) {
 5368:             $returnhash{$username.':'.$domain.':'.$role.':'.$section} =
 5369:                 $tstart.':'.$tend;
 5370:         } else {
 5371:             $returnhash{$username.':'.$domain.':'.$role}=$tstart.':'.$tend;
 5372:         }
 5373:     }
 5374:     return %returnhash;
 5375: }
 5376: 
 5377: sub get_all_adhocroles {
 5378:     my ($dom) = @_;
 5379:     my @roles_by_num = ();
 5380:     my %domdefaults = &get_domain_defaults($dom);
 5381:     my (%description,%access_in_dom,%access_info);
 5382:     if (ref($domdefaults{'adhocroles'}) eq 'HASH') {
 5383:         my $count = 0;
 5384:         my %domcurrent = %{$domdefaults{'adhocroles'}};
 5385:         my %ordered;
 5386:         foreach my $role (sort(keys(%domcurrent))) {
 5387:             my ($order,$desc,$access_in_dom);
 5388:             if (ref($domcurrent{$role}) eq 'HASH') {
 5389:                 $order = $domcurrent{$role}{'order'};
 5390:                 $desc = $domcurrent{$role}{'desc'};
 5391:                 $access_in_dom{$role} = $domcurrent{$role}{'access'};
 5392:                 $access_info{$role} = $domcurrent{$role}{$access_in_dom{$role}};
 5393:             }
 5394:             if ($order eq '') {
 5395:                 $order = $count;
 5396:             }
 5397:             $ordered{$order} = $role;
 5398:             if ($desc ne '') {
 5399:                 $description{$role} = $desc;
 5400:             } else {
 5401:                 $description{$role}= $role;
 5402:             }
 5403:             $count++;
 5404:         }
 5405:         foreach my $item (sort {$a <=> $b } (keys(%ordered))) {
 5406:             push(@roles_by_num,$ordered{$item});
 5407:         }
 5408:     }
 5409:     return (\@roles_by_num,\%description,\%access_in_dom,\%access_info);
 5410: }
 5411: 
 5412: sub get_my_adhocroles {
 5413:     my ($cid,$checkreg) = @_;
 5414:     my ($cdom,$cnum,%info,@possroles,$description,$roles_by_num);
 5415:     if ($env{'request.course.id'} eq $cid) {
 5416:         $cdom = $env{'course.'.$cid.'.domain'};
 5417:         $cnum = $env{'course.'.$cid.'.num'};
 5418:         $info{'internal.coursecode'} = $env{'course.'.$cid.'.internal.coursecode'};
 5419:     } elsif ($cid =~ /^($match_domain)_($match_courseid)$/) {
 5420:         $cdom = $1;
 5421:         $cnum = $2;
 5422:         %info = &Apache::lonnet::get('environment',['internal.coursecode'],
 5423:                                      $cdom,$cnum);
 5424:     }
 5425:     if (($info{'internal.coursecode'} ne '') && ($checkreg)) {
 5426:         my $user = $env{'user.name'}.':'.$env{'user.domain'};
 5427:         my %rosterhash = &get('classlist',[$user],$cdom,$cnum);
 5428:         if ($rosterhash{$user} ne '') {
 5429:             my $type = (split(/:/,$rosterhash{$user}))[5];
 5430:             return ([],{}) if ($type eq 'auto');
 5431:         }
 5432:     }
 5433:     if (($cdom ne '') && ($cnum ne ''))  {
 5434:         if (($env{"user.role.dh./$cdom/"}) || ($env{"user.role.da./$cdom/"})) {
 5435:             my $then=$env{'user.login.time'};
 5436:             my $update=$env{'user.update.time'};
 5437:             if (!$update) {
 5438:                 $update = $then;
 5439:             }
 5440:             my @liveroles;
 5441:             foreach my $role ('dh','da') {
 5442:                 if ($env{"user.role.$role./$cdom/"}) {
 5443:                     my ($tstart,$tend)=split(/\./,$env{"user.role.$role./$cdom/"});
 5444:                     my $limit = $update;
 5445:                     if ($env{'request.role'} eq "$role./$cdom/") {
 5446:                         $limit = $then;
 5447:                     }
 5448:                     my $activerole = 1;
 5449:                     if ($tstart && $tstart>$limit) { $activerole = 0; }
 5450:                     if ($tend   && $tend  <$limit) { $activerole = 0; }
 5451:                     if ($activerole) {
 5452:                         push(@liveroles,$role);
 5453:                     }
 5454:                 }
 5455:             }
 5456:             if (@liveroles) {
 5457:                 if (&homeserver($cnum,$cdom) ne 'no_host') {
 5458:                     my ($accessref,$accessinfo,%access_in_dom);
 5459:                     ($roles_by_num,$description,$accessref,$accessinfo) = &get_all_adhocroles($cdom);
 5460:                     if (ref($roles_by_num) eq 'ARRAY') {
 5461:                         if (@{$roles_by_num}) {
 5462:                             my %settings;
 5463:                             if ($env{'request.course.id'} eq $cid) {
 5464:                                 foreach my $envkey (keys(%env)) {
 5465:                                     if ($envkey =~ /^\Qcourse.$cid.\E(internal\.adhoc.+)$/) {
 5466:                                         $settings{$1} = $env{$envkey};
 5467:                                     }
 5468:                                 }
 5469:                             } else {
 5470:                                 %settings = &dump('environment',$cdom,$cnum,'internal\.adhoc');
 5471:                             }
 5472:                             my %setincrs;
 5473:                             if ($settings{'internal.adhocaccess'}) {
 5474:                                 map { $setincrs{$_} = 1; } split(/,/,$settings{'internal.adhocaccess'});
 5475:                             }
 5476:                             my @statuses;
 5477:                             if ($env{'environment.inststatus'}) {
 5478:                                 @statuses = split(/,/,$env{'environment.inststatus'});
 5479:                             }
 5480:                             my $user = $env{'user.name'}.':'.$env{'user.domain'};
 5481:                             if (ref($accessref) eq 'HASH') {
 5482:                                 %access_in_dom = %{$accessref};
 5483:                             }
 5484:                             foreach my $role (@{$roles_by_num}) {
 5485:                                 my ($curraccess,@okstatus,@personnel);
 5486:                                 if ($setincrs{$role}) {
 5487:                                     ($curraccess,my $rest) = split(/=/,$settings{'internal.adhoc.'.$role});
 5488:                                     if ($curraccess eq 'status') {
 5489:                                         @okstatus = split(/\&/,$rest);
 5490:                                     } elsif (($curraccess eq 'exc') || ($curraccess eq 'inc')) {
 5491:                                         @personnel = split(/\&/,$rest);
 5492:                                     }
 5493:                                 } else {
 5494:                                     $curraccess = $access_in_dom{$role};
 5495:                                     if (ref($accessinfo) eq 'HASH') {
 5496:                                         if ($curraccess eq 'status') {
 5497:                                             if (ref($accessinfo->{$role}) eq 'ARRAY') {
 5498:                                                 @okstatus = @{$accessinfo->{$role}};
 5499:                                             }
 5500:                                         } elsif (($curraccess eq 'exc') || ($curraccess eq 'inc')) {
 5501:                                             if (ref($accessinfo->{$role}) eq 'ARRAY') {
 5502:                                                 @personnel = @{$accessinfo->{$role}};
 5503:                                             }
 5504:                                         }
 5505:                                     }
 5506:                                 }
 5507:                                 if ($curraccess eq 'none') {
 5508:                                     next;
 5509:                                 } elsif ($curraccess eq 'all') {
 5510:                                     push(@possroles,$role);
 5511:                                 } elsif ($curraccess eq 'dh') {
 5512:                                     if (grep(/^dh$/,@liveroles)) {
 5513:                                         push(@possroles,$role);
 5514:                                     } else {
 5515:                                         next;
 5516:                                     }
 5517:                                 } elsif ($curraccess eq 'da') {
 5518:                                     if (grep(/^da$/,@liveroles)) {
 5519:                                         push(@possroles,$role);
 5520:                                     } else {
 5521:                                         next;
 5522:                                     }
 5523:                                 } elsif ($curraccess eq 'status') {
 5524:                                     if (@okstatus) {
 5525:                                         if (!@statuses) {
 5526:                                             if (grep(/^default$/,@okstatus)) {
 5527:                                                 push(@possroles,$role);
 5528:                                             }
 5529:                                         } else {
 5530:                                             foreach my $status (@okstatus) {
 5531:                                                 if (grep(/^\Q$status\E$/,@statuses)) {
 5532:                                                     push(@possroles,$role);
 5533:                                                     last;
 5534:                                                 }
 5535:                                             }
 5536:                                         }
 5537:                                     }
 5538:                                 } elsif (($curraccess eq 'exc') || ($curraccess eq 'inc')) {
 5539:                                     if (grep(/^\Q$user\E$/,@personnel)) {
 5540:                                         if ($curraccess eq 'exc') {
 5541:                                             push(@possroles,$role);
 5542:                                         }
 5543:                                     } elsif ($curraccess eq 'inc') {
 5544:                                         push(@possroles,$role);
 5545:                                     }
 5546:                                 }
 5547:                             }
 5548:                         }
 5549:                     }
 5550:                 }
 5551:             }
 5552:         }
 5553:     }
 5554:     unless (ref($description) eq 'HASH') {
 5555:         if (ref($roles_by_num) eq 'ARRAY') {
 5556:             my %desc;
 5557:             map { $desc{$_} = $_; } (@{$roles_by_num});
 5558:             $description = \%desc;
 5559:         } else {
 5560:             $description = {};
 5561:         }
 5562:     }
 5563:     return (\@possroles,$description);
 5564: }
 5565: 
 5566: # ----------------------------------------------------- Frontpage Announcements
 5567: #
 5568: #
 5569: 
 5570: sub postannounce {
 5571:     my ($server,$text)=@_;
 5572:     unless (&allowed('psa',&host_domain($server))) { return 'refused'; }
 5573:     unless ($text=~/\w/) { $text=''; }
 5574:     return &reply('setannounce:'.&escape($text),$server);
 5575: }
 5576: 
 5577: sub getannounce {
 5578: 
 5579:     if (open(my $fh,"<",$perlvar{'lonDocRoot'}.'/announcement.txt')) {
 5580: 	my $announcement='';
 5581: 	while (my $line = <$fh>) { $announcement .= $line; }
 5582: 	close($fh);
 5583: 	if ($announcement=~/\w/) { 
 5584: 	    return 
 5585:    '<table bgcolor="#FF5555" cellpadding="5" cellspacing="3">'.
 5586:    '<tr><td bgcolor="#FFFFFF"><tt>'.$announcement.'</tt></td></tr></table>'; 
 5587: 	} else {
 5588: 	    return '';
 5589: 	}
 5590:     } else {
 5591: 	return '';
 5592:     }
 5593: }
 5594: 
 5595: # ---------------------------------------------------------- Course ID routines
 5596: # Deal with domain's nohist_courseid.db files
 5597: #
 5598: 
 5599: sub courseidput {
 5600:     my ($domain,$storehash,$coursehome,$caller) = @_;
 5601:     return unless (ref($storehash) eq 'HASH');
 5602:     my $outcome;
 5603:     if ($caller eq 'timeonly') {
 5604:         my $cids = '';
 5605:         foreach my $item (keys(%$storehash)) {
 5606:             $cids.=&escape($item).'&';
 5607:         }
 5608:         $cids=~s/\&$//;
 5609:         $outcome = &reply('courseidputhash:'.$domain.':'.$caller.':'.$cids,
 5610:                           $coursehome);       
 5611:     } else {
 5612:         my $items = '';
 5613:         foreach my $item (keys(%$storehash)) {
 5614:             $items.= &escape($item).'='.
 5615:                      &freeze_escape($$storehash{$item}).'&';
 5616:         }
 5617:         $items=~s/\&$//;
 5618:         $outcome = &reply('courseidputhash:'.$domain.':'.$caller.':'.$items,
 5619:                           $coursehome);
 5620:     }
 5621:     if ($outcome eq 'unknown_cmd') {
 5622:         my $what;
 5623:         foreach my $cid (keys(%$storehash)) {
 5624:             $what .= &escape($cid).'=';
 5625:             foreach my $item ('description','inst_code','owner','type') {
 5626:                 $what .= &escape($storehash->{$cid}{$item}).':';
 5627:             }
 5628:             $what =~ s/\:$/&/;
 5629:         }
 5630:         $what =~ s/\&$//;  
 5631:         return &reply('courseidput:'.$domain.':'.$what,$coursehome);
 5632:     } else {
 5633:         return $outcome;
 5634:     }
 5635: }
 5636: 
 5637: sub courseiddump {
 5638:     my ($domfilter,$descfilter,$sincefilter,$instcodefilter,$ownerfilter,
 5639:         $coursefilter,$hostidflag,$hostidref,$typefilter,$regexp_ok,
 5640:         $selfenrollonly,$catfilter,$showhidden,$caller,$cloner,$cc_clone,
 5641:         $cloneonly,$createdbefore,$createdafter,$creationcontext,$domcloner,
 5642:         $hasuniquecode,$reqcrsdom,$reqinstcode)=@_;
 5643:     my $as_hash = 1;
 5644:     my %returnhash;
 5645:     if (!$domfilter) { $domfilter=''; }
 5646:     my %libserv = &all_library();
 5647:     foreach my $tryserver (keys(%libserv)) {
 5648:         if ( (  $hostidflag == 1 
 5649: 	        && grep(/^\Q$tryserver\E$/,@{$hostidref}) ) 
 5650: 	     || (!defined($hostidflag)) ) {
 5651: 
 5652: 	    if (($domfilter eq '') ||
 5653: 		(&host_domain($tryserver) eq $domfilter)) {
 5654:                 my $rep;
 5655:                 if (grep { $_ eq $tryserver } current_machine_ids()) {
 5656:                     $rep = LONCAPA::Lond::dump_course_id_handler(
 5657:                         join(":", (&host_domain($tryserver), $sincefilter, 
 5658:                                 &escape($descfilter), &escape($instcodefilter), 
 5659:                                 &escape($ownerfilter), &escape($coursefilter),
 5660:                                 &escape($typefilter), &escape($regexp_ok), 
 5661:                                 $as_hash, &escape($selfenrollonly), 
 5662:                                 &escape($catfilter), $showhidden, $caller, 
 5663:                                 &escape($cloner), &escape($cc_clone), $cloneonly, 
 5664:                                 &escape($createdbefore), &escape($createdafter), 
 5665:                                 &escape($creationcontext),$domcloner,$hasuniquecode,
 5666:                                 $reqcrsdom,&escape($reqinstcode))));
 5667:                 } else {
 5668:                     $rep = &reply('courseiddump:'.&host_domain($tryserver).':'.
 5669:                              $sincefilter.':'.&escape($descfilter).':'.
 5670:                              &escape($instcodefilter).':'.&escape($ownerfilter).
 5671:                              ':'.&escape($coursefilter).':'.&escape($typefilter).
 5672:                              ':'.&escape($regexp_ok).':'.$as_hash.':'.
 5673:                              &escape($selfenrollonly).':'.&escape($catfilter).':'.
 5674:                              $showhidden.':'.$caller.':'.&escape($cloner).':'.
 5675:                              &escape($cc_clone).':'.$cloneonly.':'.
 5676:                              &escape($createdbefore).':'.&escape($createdafter).':'.
 5677:                              &escape($creationcontext).':'.$domcloner.':'.$hasuniquecode.
 5678:                              ':'.$reqcrsdom.':'.&escape($reqinstcode),$tryserver);
 5679:                 }
 5680:                      
 5681:                 my @pairs=split(/\&/,$rep);
 5682:                 foreach my $item (@pairs) {
 5683:                     my ($key,$value)=split(/\=/,$item,2);
 5684:                     $key = &unescape($key);
 5685:                     next if ($key =~ /^error: 2 /);
 5686:                     my $result = &thaw_unescape($value);
 5687:                     if (ref($result) eq 'HASH') {
 5688:                         $returnhash{$key}=$result;
 5689:                     } else {
 5690:                         my @responses = split(/:/,$value);
 5691:                         my @items = ('description','inst_code','owner','type');
 5692:                         for (my $i=0; $i<@responses; $i++) {
 5693:                             $returnhash{$key}{$items[$i]} = &unescape($responses[$i]);
 5694:                         }
 5695:                     }
 5696:                 }
 5697:             }
 5698:         }
 5699:     }
 5700:     return %returnhash;
 5701: }
 5702: 
 5703: sub courselastaccess {
 5704:     my ($cdom,$cnum,$hostidref) = @_;
 5705:     my %returnhash;
 5706:     if ($cdom && $cnum) {
 5707:         my $chome = &homeserver($cnum,$cdom);
 5708:         if ($chome ne 'no_host') {
 5709:             my $rep = &reply('courselastaccess:'.$cdom.':'.$cnum,$chome);
 5710:             &extract_lastaccess(\%returnhash,$rep);
 5711:         }
 5712:     } else {
 5713:         if (!$cdom) { $cdom=''; }
 5714:         my %libserv = &all_library();
 5715:         foreach my $tryserver (keys(%libserv)) {
 5716:             if (ref($hostidref) eq 'ARRAY') {
 5717:                 next unless (grep(/^\Q$tryserver\E$/,@{$hostidref}));
 5718:             } 
 5719:             if (($cdom eq '') || (&host_domain($tryserver) eq $cdom)) {
 5720:                 my $rep = &reply('courselastaccess:'.&host_domain($tryserver).':',$tryserver);
 5721:                 &extract_lastaccess(\%returnhash,$rep);
 5722:             }
 5723:         }
 5724:     }
 5725:     return %returnhash;
 5726: }
 5727: 
 5728: sub extract_lastaccess {
 5729:     my ($returnhash,$rep) = @_;
 5730:     if (ref($returnhash) eq 'HASH') {
 5731:         unless ($rep eq 'unknown_command' || $rep eq 'no_such_host' || 
 5732:                 $rep eq 'con_lost' || $rep eq 'rejected' || $rep eq 'refused' ||
 5733:                  $rep eq '') {
 5734:             my @pairs=split(/\&/,$rep);
 5735:             foreach my $item (@pairs) {
 5736:                 my ($key,$value)=split(/\=/,$item,2);
 5737:                 $key = &unescape($key);
 5738:                 next if ($key =~ /^error: 2 /);
 5739:                 $returnhash->{$key} = &thaw_unescape($value);
 5740:             }
 5741:         }
 5742:     }
 5743:     return;
 5744: }
 5745: 
 5746: # ---------------------------------------------------------- DC e-mail
 5747: 
 5748: sub dcmailput {
 5749:     my ($domain,$msgid,$message,$server)=@_;
 5750:     my $status = &Apache::lonnet::critical(
 5751:        'dcmailput:'.$domain.':'.&escape($msgid).'='.
 5752:        &escape($message),$server);
 5753:     return $status;
 5754: }
 5755: 
 5756: sub dcmaildump {
 5757:     my ($dom,$startdate,$enddate,$senders) = @_;
 5758:     my %returnhash=();
 5759: 
 5760:     if (defined(&domain($dom,'primary'))) {
 5761:         my $cmd='dcmaildump:'.$dom.':'.&escape($startdate).':'.
 5762:                                                          &escape($enddate).':';
 5763: 	my @esc_senders=map { &escape($_)} @$senders;
 5764: 	$cmd.=&escape(join('&',@esc_senders));
 5765: 	foreach my $line (split(/\&/,&reply($cmd,&domain($dom,'primary')))) {
 5766:             my ($key,$value) = split(/\=/,$line,2);
 5767:             if (($key) && ($value)) {
 5768:                 $returnhash{&unescape($key)} = &unescape($value);
 5769:             }
 5770:         }
 5771:     }
 5772:     return %returnhash;
 5773: }
 5774: # ---------------------------------------------------------- Domain roles
 5775: 
 5776: sub get_domain_roles {
 5777:     my ($dom,$roles,$startdate,$enddate)=@_;
 5778:     if ((!defined($startdate)) || ($startdate eq '')) {
 5779:         $startdate = '.';
 5780:     }
 5781:     if ((!defined($enddate)) || ($enddate eq '')) {
 5782:         $enddate = '.';
 5783:     }
 5784:     my $rolelist;
 5785:     if (ref($roles) eq 'ARRAY') {
 5786:         $rolelist = join('&',@{$roles});
 5787:     }
 5788:     my %personnel = ();
 5789: 
 5790:     my %servers = &get_servers($dom,'library');
 5791:     foreach my $tryserver (keys(%servers)) {
 5792: 	%{$personnel{$tryserver}}=();
 5793: 	foreach my $line (split(/\&/,&reply('domrolesdump:'.$dom.':'.
 5794: 					    &escape($startdate).':'.
 5795: 					    &escape($enddate).':'.
 5796: 					    &escape($rolelist), $tryserver))) {
 5797: 	    my ($key,$value) = split(/\=/,$line,2);
 5798: 	    if (($key) && ($value)) {
 5799: 		$personnel{$tryserver}{&unescape($key)} = &unescape($value);
 5800: 	    }
 5801: 	}
 5802:     }
 5803:     return %personnel;
 5804: }
 5805: 
 5806: sub get_active_domroles {
 5807:     my ($dom,$roles) = @_;
 5808:     return () unless (ref($roles) eq 'ARRAY');
 5809:     my $now = time;
 5810:     my %dompersonnel = &get_domain_roles($dom,$roles,$now,$now);
 5811:     my %domroles;
 5812:     foreach my $server (keys(%dompersonnel)) {
 5813:         foreach my $user (sort(keys(%{$dompersonnel{$server}}))) {
 5814:             my ($trole,$uname,$udom,$runame,$rudom,$rsec) = split(/:/,$user);
 5815:             $domroles{$uname.':'.$udom} = $dompersonnel{$server}{$user};
 5816:         }
 5817:     }
 5818:     return %domroles;
 5819: }
 5820: 
 5821: # ----------------------------------------------------------- Interval timing 
 5822: 
 5823: {
 5824: # Caches needed for speedup of navmaps
 5825: # We don't want to cache this for very long at all (5 seconds at most)
 5826: # 
 5827: # The user for whom we cache
 5828: my $cachedkey='';
 5829: # The cached times for this user
 5830: my %cachedtimes=();
 5831: # When this was last done
 5832: my $cachedtime='';
 5833: 
 5834: sub load_all_first_access {
 5835:     my ($uname,$udom,$ignorecache)=@_;
 5836:     if (($cachedkey eq $uname.':'.$udom) &&
 5837:         (abs($cachedtime-time)<5) && (!$env{'form.markaccess'}) &&
 5838:         (!$ignorecache)) {
 5839:         return;
 5840:     }
 5841:     $cachedtime=time;
 5842:     $cachedkey=$uname.':'.$udom;
 5843:     %cachedtimes=&dump('firstaccesstimes',$udom,$uname);
 5844: }
 5845: 
 5846: sub get_first_access {
 5847:     my ($type,$argsymb,$argmap,$ignorecache)=@_;
 5848:     my ($symb,$courseid,$udom,$uname)=&whichuser();
 5849:     if ($argsymb) { $symb=$argsymb; }
 5850:     my ($map,$id,$res)=&decode_symb($symb);
 5851:     if ($argmap) { $map = $argmap; }
 5852:     if ($type eq 'course') {
 5853: 	$res='course';
 5854:     } elsif ($type eq 'map') {
 5855: 	$res=&symbread($map);
 5856:     } else {
 5857: 	$res=$symb;
 5858:     }
 5859:     &load_all_first_access($uname,$udom,$ignorecache);
 5860:     return $cachedtimes{"$courseid\0$res"};
 5861: }
 5862: 
 5863: sub set_first_access {
 5864:     my ($type,$interval)=@_;
 5865:     my ($symb,$courseid,$udom,$uname)=&whichuser();
 5866:     my ($map,$id,$res)=&decode_symb($symb);
 5867:     if ($type eq 'course') {
 5868: 	$res='course';
 5869:     } elsif ($type eq 'map') {
 5870: 	$res=&symbread($map);
 5871:     } else {
 5872: 	$res=$symb;
 5873:     }
 5874:     $cachedkey='';
 5875:     my $firstaccess=&get_first_access($type,$symb,$map);
 5876:     if ($firstaccess) {
 5877:         &logthis("First access time already set ($firstaccess) when attempting ".
 5878:                  "to set new value (type: $type, extent: $res) for $uname:$udom ".
 5879:                  "in $courseid");
 5880:         return 'already_set';
 5881:     } else {
 5882:         my $start = time;
 5883: 	my $putres = &put('firstaccesstimes',{"$courseid\0$res"=>$start},
 5884:                           $udom,$uname);
 5885:         if ($putres eq 'ok') {
 5886:             &put('timerinterval',{"$courseid\0$res"=>$interval},
 5887:                  $udom,$uname); 
 5888:             &appenv(
 5889:                      {
 5890:                         'course.'.$courseid.'.firstaccess.'.$res   => $start,
 5891:                         'course.'.$courseid.'.timerinterval.'.$res => $interval,
 5892:                      }
 5893:                   );
 5894:             if (($cachedtime) && (abs($start-$cachedtime) < 5)) {
 5895:                 $cachedtimes{"$courseid\0$res"} = $start;
 5896:             }
 5897:         } elsif ($putres ne 'refused') {
 5898:             &logthis("Result: $putres when attempting to set first access time ".
 5899:                      "(type: $type, extent: $res) for $uname:$udom in $courseid");
 5900:         }
 5901:         return $putres;
 5902:     }
 5903:     return 'already_set';
 5904: }
 5905: }
 5906: 
 5907: # --------------------------------------------- Set Expire Date for Spreadsheet
 5908: 
 5909: sub expirespread {
 5910:     my ($uname,$udom,$stype,$usymb)=@_;
 5911:     my $cid=$env{'request.course.id'}; 
 5912:     if ($cid) {
 5913:        my $now=time;
 5914:        my $key=$uname.':'.$udom.':'.$stype.':'.$usymb;
 5915:        return &reply('put:'.$env{'course.'.$cid.'.domain'}.':'.
 5916:                             $env{'course.'.$cid.'.num'}.
 5917: 	        	    ':nohist_expirationdates:'.
 5918:                             &escape($key).'='.$now,
 5919:                             $env{'course.'.$cid.'.home'})
 5920:     }
 5921:     return 'ok';
 5922: }
 5923: 
 5924: # ----------------------------------------------------- Devalidate Spreadsheets
 5925: 
 5926: sub devalidate {
 5927:     my ($symb,$uname,$udom)=@_;
 5928:     my $cid=$env{'request.course.id'}; 
 5929:     if ($cid) {
 5930:         # delete the stored spreadsheets for
 5931:         # - the student level sheet of this user in course's homespace
 5932:         # - the assessment level sheet for this resource 
 5933:         #   for this user in user's homespace
 5934: 	# - current conditional state info
 5935: 	my $key=$uname.':'.$udom.':';
 5936:         my $status=
 5937: 	    &del('nohist_calculatedsheets',
 5938: 		 [$key.'studentcalc:'],
 5939: 		 $env{'course.'.$cid.'.domain'},
 5940: 		 $env{'course.'.$cid.'.num'})
 5941: 		.' '.
 5942: 	    &del('nohist_calculatedsheets_'.$cid,
 5943: 		 [$key.'assesscalc:'.$symb],$udom,$uname);
 5944:         unless ($status eq 'ok ok') {
 5945:            &logthis('Could not devalidate spreadsheet '.
 5946:                     $uname.' at '.$udom.' for '.
 5947: 		    $symb.': '.$status);
 5948:         }
 5949: 	&delenv('user.state.'.$cid);
 5950:     }
 5951: }
 5952: 
 5953: sub get_scalar {
 5954:     my ($string,$end) = @_;
 5955:     my $value;
 5956:     if ($$string =~ s/^([^&]*?)($end)/$2/) {
 5957: 	$value = $1;
 5958:     } elsif ($$string =~ s/^([^&]*?)&//) {
 5959: 	$value = $1;
 5960:     }
 5961:     return &unescape($value);
 5962: }
 5963: 
 5964: sub array2str {
 5965:   my (@array) = @_;
 5966:   my $result=&arrayref2str(\@array);
 5967:   $result=~s/^__ARRAY_REF__//;
 5968:   $result=~s/__END_ARRAY_REF__$//;
 5969:   return $result;
 5970: }
 5971: 
 5972: sub arrayref2str {
 5973:   my ($arrayref) = @_;
 5974:   my $result='__ARRAY_REF__';
 5975:   foreach my $elem (@$arrayref) {
 5976:     if(ref($elem) eq 'ARRAY') {
 5977:       $result.=&arrayref2str($elem).'&';
 5978:     } elsif(ref($elem) eq 'HASH') {
 5979:       $result.=&hashref2str($elem).'&';
 5980:     } elsif(ref($elem)) {
 5981:       #print("Got a ref of ".(ref($elem))." skipping.");
 5982:     } else {
 5983:       $result.=&escape($elem).'&';
 5984:     }
 5985:   }
 5986:   $result=~s/\&$//;
 5987:   $result .= '__END_ARRAY_REF__';
 5988:   return $result;
 5989: }
 5990: 
 5991: sub hash2str {
 5992:   my (%hash) = @_;
 5993:   my $result=&hashref2str(\%hash);
 5994:   $result=~s/^__HASH_REF__//;
 5995:   $result=~s/__END_HASH_REF__$//;
 5996:   return $result;
 5997: }
 5998: 
 5999: sub hashref2str {
 6000:   my ($hashref)=@_;
 6001:   my $result='__HASH_REF__';
 6002:   foreach my $key (sort(keys(%$hashref))) {
 6003:     if (ref($key) eq 'ARRAY') {
 6004:       $result.=&arrayref2str($key).'=';
 6005:     } elsif (ref($key) eq 'HASH') {
 6006:       $result.=&hashref2str($key).'=';
 6007:     } elsif (ref($key)) {
 6008:       $result.='=';
 6009:       #print("Got a ref of ".(ref($key))." skipping.");
 6010:     } else {
 6011: 	if (defined($key)) {$result.=&escape($key).'=';} else { last; }
 6012:     }
 6013: 
 6014:     if(ref($hashref->{$key}) eq 'ARRAY') {
 6015:       $result.=&arrayref2str($hashref->{$key}).'&';
 6016:     } elsif(ref($hashref->{$key}) eq 'HASH') {
 6017:       $result.=&hashref2str($hashref->{$key}).'&';
 6018:     } elsif(ref($hashref->{$key})) {
 6019:        $result.='&';
 6020:       #print("Got a ref of ".(ref($hashref->{$key}))." skipping.");
 6021:     } else {
 6022:       $result.=&escape($hashref->{$key}).'&';
 6023:     }
 6024:   }
 6025:   $result=~s/\&$//;
 6026:   $result .= '__END_HASH_REF__';
 6027:   return $result;
 6028: }
 6029: 
 6030: sub str2hash {
 6031:     my ($string)=@_;
 6032:     my ($hash)=&str2hashref('__HASH_REF__'.$string.'__END_HASH_REF__');
 6033:     return %$hash;
 6034: }
 6035: 
 6036: sub str2hashref {
 6037:   my ($string) = @_;
 6038: 
 6039:   my %hash;
 6040: 
 6041:   if($string !~ /^__HASH_REF__/) {
 6042:       if (! ($string eq '' || !defined($string))) {
 6043: 	  $hash{'error'}='Not hash reference';
 6044:       }
 6045:       return (\%hash, $string);
 6046:   }
 6047: 
 6048:   $string =~ s/^__HASH_REF__//;
 6049: 
 6050:   while($string !~ /^__END_HASH_REF__/) {
 6051:       #key
 6052:       my $key='';
 6053:       if($string =~ /^__HASH_REF__/) {
 6054:           ($key, $string)=&str2hashref($string);
 6055:           if(defined($key->{'error'})) {
 6056:               $hash{'error'}='Bad data';
 6057:               return (\%hash, $string);
 6058:           }
 6059:       } elsif($string =~ /^__ARRAY_REF__/) {
 6060:           ($key, $string)=&str2arrayref($string);
 6061:           if($key->[0] eq 'Array reference error') {
 6062:               $hash{'error'}='Bad data';
 6063:               return (\%hash, $string);
 6064:           }
 6065:       } else {
 6066:           $string =~ s/^(.*?)=//;
 6067: 	  $key=&unescape($1);
 6068:       }
 6069:       $string =~ s/^=//;
 6070: 
 6071:       #value
 6072:       my $value='';
 6073:       if($string =~ /^__HASH_REF__/) {
 6074:           ($value, $string)=&str2hashref($string);
 6075:           if(defined($value->{'error'})) {
 6076:               $hash{'error'}='Bad data';
 6077:               return (\%hash, $string);
 6078:           }
 6079:       } elsif($string =~ /^__ARRAY_REF__/) {
 6080:           ($value, $string)=&str2arrayref($string);
 6081:           if($value->[0] eq 'Array reference error') {
 6082:               $hash{'error'}='Bad data';
 6083:               return (\%hash, $string);
 6084:           }
 6085:       } else {
 6086: 	  $value=&get_scalar(\$string,'__END_HASH_REF__');
 6087:       }
 6088:       $string =~ s/^&//;
 6089: 
 6090:       $hash{$key}=$value;
 6091:   }
 6092: 
 6093:   $string =~ s/^__END_HASH_REF__//;
 6094: 
 6095:   return (\%hash, $string);
 6096: }
 6097: 
 6098: sub str2array {
 6099:     my ($string)=@_;
 6100:     my ($array)=&str2arrayref('__ARRAY_REF__'.$string.'__END_ARRAY_REF__');
 6101:     return @$array;
 6102: }
 6103: 
 6104: sub str2arrayref {
 6105:   my ($string) = @_;
 6106:   my @array;
 6107: 
 6108:   if($string !~ /^__ARRAY_REF__/) {
 6109:       if (! ($string eq '' || !defined($string))) {
 6110: 	  $array[0]='Array reference error';
 6111:       }
 6112:       return (\@array, $string);
 6113:   }
 6114: 
 6115:   $string =~ s/^__ARRAY_REF__//;
 6116: 
 6117:   while($string !~ /^__END_ARRAY_REF__/) {
 6118:       my $value='';
 6119:       if($string =~ /^__HASH_REF__/) {
 6120:           ($value, $string)=&str2hashref($string);
 6121:           if(defined($value->{'error'})) {
 6122:               $array[0] ='Array reference error';
 6123:               return (\@array, $string);
 6124:           }
 6125:       } elsif($string =~ /^__ARRAY_REF__/) {
 6126:           ($value, $string)=&str2arrayref($string);
 6127:           if($value->[0] eq 'Array reference error') {
 6128:               $array[0] ='Array reference error';
 6129:               return (\@array, $string);
 6130:           }
 6131:       } else {
 6132: 	  $value=&get_scalar(\$string,'__END_ARRAY_REF__');
 6133:       }
 6134:       $string =~ s/^&//;
 6135: 
 6136:       push(@array, $value);
 6137:   }
 6138: 
 6139:   $string =~ s/^__END_ARRAY_REF__//;
 6140: 
 6141:   return (\@array, $string);
 6142: }
 6143: 
 6144: # -------------------------------------------------------------------Temp Store
 6145: 
 6146: sub tmpreset {
 6147:   my ($symb,$namespace,$domain,$stuname) = @_;
 6148:   if (!$symb) {
 6149:     $symb=&symbread();
 6150:     if (!$symb) { $symb= $env{'request.url'}; }
 6151:   }
 6152:   $symb=escape($symb);
 6153: 
 6154:   if (!$namespace) { $namespace=$env{'request.state'}; }
 6155:   $namespace=~s/\//\_/g;
 6156:   $namespace=~s/\W//g;
 6157: 
 6158:   if (!$domain) { $domain=$env{'user.domain'}; }
 6159:   if (!$stuname) { $stuname=$env{'user.name'}; }
 6160:   if ($domain eq 'public' && $stuname eq 'public') {
 6161:       $stuname=&get_requestor_ip();
 6162:   }
 6163:   my $path=LONCAPA::tempdir();
 6164:   my %hash;
 6165:   if (tie(%hash,'GDBM_File',
 6166: 	  $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
 6167: 	  &GDBM_WRCREAT(),0640)) {
 6168:     foreach my $key (keys(%hash)) {
 6169:       if ($key=~ /:$symb/) {
 6170: 	delete($hash{$key});
 6171:       }
 6172:     }
 6173:   }
 6174: }
 6175: 
 6176: sub tmpstore {
 6177:   my ($storehash,$symb,$namespace,$domain,$stuname) = @_;
 6178: 
 6179:   if (!$symb) {
 6180:     $symb=&symbread();
 6181:     if (!$symb) { $symb= $env{'request.url'}; }
 6182:   }
 6183:   $symb=escape($symb);
 6184: 
 6185:   if (!$namespace) {
 6186:     # I don't think we would ever want to store this for a course.
 6187:     # it seems this will only be used if we don't have a course.
 6188:     #$namespace=$env{'request.course.id'};
 6189:     #if (!$namespace) {
 6190:       $namespace=$env{'request.state'};
 6191:     #}
 6192:   }
 6193:   $namespace=~s/\//\_/g;
 6194:   $namespace=~s/\W//g;
 6195:   if (!$domain) { $domain=$env{'user.domain'}; }
 6196:   if (!$stuname) { $stuname=$env{'user.name'}; }
 6197:   if ($domain eq 'public' && $stuname eq 'public') {
 6198:       $stuname=&get_requestor_ip();
 6199:   }
 6200:   my $now=time;
 6201:   my %hash;
 6202:   my $path=LONCAPA::tempdir();
 6203:   if (tie(%hash,'GDBM_File',
 6204: 	  $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
 6205: 	  &GDBM_WRCREAT(),0640)) {
 6206:     $hash{"version:$symb"}++;
 6207:     my $version=$hash{"version:$symb"};
 6208:     my $allkeys=''; 
 6209:     foreach my $key (keys(%$storehash)) {
 6210:       $allkeys.=$key.':';
 6211:       $hash{"$version:$symb:$key"}=&freeze_escape($$storehash{$key});
 6212:     }
 6213:     $hash{"$version:$symb:timestamp"}=$now;
 6214:     $allkeys.='timestamp';
 6215:     $hash{"$version:keys:$symb"}=$allkeys;
 6216:     if (untie(%hash)) {
 6217:       return 'ok';
 6218:     } else {
 6219:       return "error:$!";
 6220:     }
 6221:   } else {
 6222:     return "error:$!";
 6223:   }
 6224: }
 6225: 
 6226: # -----------------------------------------------------------------Temp Restore
 6227: 
 6228: sub tmprestore {
 6229:   my ($symb,$namespace,$domain,$stuname) = @_;
 6230: 
 6231:   if (!$symb) {
 6232:     $symb=&symbread();
 6233:     if (!$symb) { $symb= $env{'request.url'}; }
 6234:   }
 6235:   $symb=escape($symb);
 6236: 
 6237:   if (!$namespace) { $namespace=$env{'request.state'}; }
 6238: 
 6239:   if (!$domain) { $domain=$env{'user.domain'}; }
 6240:   if (!$stuname) { $stuname=$env{'user.name'}; }
 6241:   if ($domain eq 'public' && $stuname eq 'public') {
 6242:       $stuname=&get_requestor_ip();
 6243:   }
 6244:   my %returnhash;
 6245:   $namespace=~s/\//\_/g;
 6246:   $namespace=~s/\W//g;
 6247:   my %hash;
 6248:   my $path=LONCAPA::tempdir();
 6249:   if (tie(%hash,'GDBM_File',
 6250: 	  $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
 6251: 	  &GDBM_READER(),0640)) {
 6252:     my $version=$hash{"version:$symb"};
 6253:     $returnhash{'version'}=$version;
 6254:     my $scope;
 6255:     for ($scope=1;$scope<=$version;$scope++) {
 6256:       my $vkeys=$hash{"$scope:keys:$symb"};
 6257:       my @keys=split(/:/,$vkeys);
 6258:       my $key;
 6259:       $returnhash{"$scope:keys"}=$vkeys;
 6260:       foreach $key (@keys) {
 6261: 	$returnhash{"$scope:$key"}=&thaw_unescape($hash{"$scope:$symb:$key"});
 6262: 	$returnhash{"$key"}=&thaw_unescape($hash{"$scope:$symb:$key"});
 6263:       }
 6264:     }
 6265:     if (!(untie(%hash))) {
 6266:       return "error:$!";
 6267:     }
 6268:   } else {
 6269:     return "error:$!";
 6270:   }
 6271:   return %returnhash;
 6272: }
 6273: 
 6274: # ----------------------------------------------------------------------- Store
 6275: 
 6276: sub store {
 6277:     my ($storehash,$symb,$namespace,$domain,$stuname,$laststore) = @_;
 6278:     my $home='';
 6279: 
 6280:     if ($stuname) { $home=&homeserver($stuname,$domain); }
 6281: 
 6282:     $symb=&symbclean($symb);
 6283:     if (!$symb) { unless ($symb=&symbread()) { return ''; } }
 6284: 
 6285:     if (!$domain) { $domain=$env{'user.domain'}; }
 6286:     if (!$stuname) { $stuname=$env{'user.name'}; }
 6287: 
 6288:     &devalidate($symb,$stuname,$domain);
 6289: 
 6290:     $symb=escape($symb);
 6291:     if (!$namespace) { 
 6292:        unless ($namespace=$env{'request.course.id'}) { 
 6293:           return ''; 
 6294:        } 
 6295:     }
 6296:     if (!$home) { $home=$env{'user.home'}; }
 6297: 
 6298:     $$storehash{'ip'}=&get_requestor_ip();
 6299:     $$storehash{'host'}=$perlvar{'lonHostID'};
 6300: 
 6301:     my $namevalue='';
 6302:     foreach my $key (keys(%$storehash)) {
 6303:         $namevalue.=&escape($key).'='.&freeze_escape($$storehash{$key}).'&';
 6304:     }
 6305:     $namevalue=~s/\&$//;
 6306:     &courselog($symb.':'.$stuname.':'.$domain.':STORE:'.$namevalue);
 6307:     return reply("store:$domain:$stuname:$namespace:$symb:$namevalue:$laststore","$home");
 6308: }
 6309: 
 6310: # -------------------------------------------------------------- Critical Store
 6311: 
 6312: sub cstore {
 6313:     my ($storehash,$symb,$namespace,$domain,$stuname,$laststore) = @_;
 6314:     my $home='';
 6315: 
 6316:     if ($stuname) { $home=&homeserver($stuname,$domain); }
 6317: 
 6318:     $symb=&symbclean($symb);
 6319:     if (!$symb) { unless ($symb=&symbread()) { return ''; } }
 6320: 
 6321:     if (!$domain) { $domain=$env{'user.domain'}; }
 6322:     if (!$stuname) { $stuname=$env{'user.name'}; }
 6323: 
 6324:     &devalidate($symb,$stuname,$domain);
 6325: 
 6326:     $symb=escape($symb);
 6327:     if (!$namespace) { 
 6328:        unless ($namespace=$env{'request.course.id'}) { 
 6329:           return ''; 
 6330:        } 
 6331:     }
 6332:     if (!$home) { $home=$env{'user.home'}; }
 6333: 
 6334:     $$storehash{'ip'}=&get_requestor_ip();
 6335:     $$storehash{'host'}=$perlvar{'lonHostID'};
 6336: 
 6337:     my $namevalue='';
 6338:     foreach my $key (keys(%$storehash)) {
 6339:         $namevalue.=&escape($key).'='.&freeze_escape($$storehash{$key}).'&';
 6340:     }
 6341:     $namevalue=~s/\&$//;
 6342:     &courselog($symb.':'.$stuname.':'.$domain.':CSTORE:'.$namevalue);
 6343:     return critical
 6344:                 ("store:$domain:$stuname:$namespace:$symb:$namevalue:$laststore","$home");
 6345: }
 6346: 
 6347: # --------------------------------------------------------------------- Restore
 6348: 
 6349: sub restore {
 6350:     my ($symb,$namespace,$domain,$stuname) = @_;
 6351:     my $home='';
 6352: 
 6353:     if ($stuname) { $home=&homeserver($stuname,$domain); }
 6354: 
 6355:     if (!$symb) {
 6356:         return if ($namespace eq 'courserequests');
 6357:         unless ($symb=escape(&symbread())) { return ''; }
 6358:     } else {
 6359:         unless ($namespace eq 'courserequests') {
 6360:             $symb=&escape(&symbclean($symb));
 6361:         }
 6362:     }
 6363:     if (!$namespace) { 
 6364:        unless ($namespace=$env{'request.course.id'}) { 
 6365:           return ''; 
 6366:        } 
 6367:     }
 6368:     if (!$domain) { $domain=$env{'user.domain'}; }
 6369:     if (!$stuname) { $stuname=$env{'user.name'}; }
 6370:     if (!$home) { $home=$env{'user.home'}; }
 6371:     my $answer=&reply("restore:$domain:$stuname:$namespace:$symb","$home");
 6372: 
 6373:     my %returnhash=();
 6374:     foreach my $line (split(/\&/,$answer)) {
 6375: 	my ($name,$value)=split(/\=/,$line);
 6376:         $returnhash{&unescape($name)}=&thaw_unescape($value);
 6377:     }
 6378:     my $version;
 6379:     for ($version=1;$version<=$returnhash{'version'};$version++) {
 6380:        foreach my $item (split(/\:/,$returnhash{$version.':keys'})) {
 6381:           $returnhash{$item}=$returnhash{$version.':'.$item};
 6382:        }
 6383:     }
 6384:     return %returnhash;
 6385: }
 6386: 
 6387: # ---------------------------------------------------------- Course Description
 6388: #
 6389: #  
 6390: 
 6391: sub coursedescription {
 6392:     my ($courseid,$args)=@_;
 6393:     $courseid=~s/^\///;
 6394:     $courseid=~s/\_/\//g;
 6395:     my ($cdomain,$cnum)=split(/\//,$courseid);
 6396:     my $chome=&homeserver($cnum,$cdomain);
 6397:     my $normalid=$cdomain.'_'.$cnum;
 6398:     # need to always cache even if we get errors otherwise we keep 
 6399:     # trying and trying and trying to get the course description.
 6400:     my %envhash=();
 6401:     my %returnhash=();
 6402:     
 6403:     my $expiretime=600;
 6404:     if ($env{'request.course.id'} eq $normalid) {
 6405: 	$expiretime=120;
 6406:     }
 6407: 
 6408:     my $prefix='course.'.$cdomain.'_'.$cnum.'.';
 6409:     if (!$args->{'freshen_cache'}
 6410: 	&& ((time-$env{$prefix.'last_cache'}) < $expiretime) ) {
 6411: 	foreach my $key (keys(%env)) {
 6412: 	    next if ($key !~ /^\Q$prefix\E(.*)/);
 6413: 	    my ($setting) = $1;
 6414: 	    $returnhash{$setting} = $env{$key};
 6415: 	}
 6416: 	return %returnhash;
 6417:     }
 6418: 
 6419:     # get the data again
 6420: 
 6421:     if (!$args->{'one_time'}) {
 6422: 	$envhash{'course.'.$normalid.'.last_cache'}=time;
 6423:     }
 6424: 
 6425:     if ($chome ne 'no_host') {
 6426:        %returnhash=&dump('environment',$cdomain,$cnum);
 6427:        if (!exists($returnhash{'con_lost'})) {
 6428: 	   my $username = $env{'user.name'}; # Defult username
 6429: 	   if(defined $args->{'user'}) {
 6430: 	       $username = $args->{'user'};
 6431: 	   }
 6432:            $returnhash{'home'}= $chome;
 6433: 	   $returnhash{'domain'} = $cdomain;
 6434: 	   $returnhash{'num'} = $cnum;
 6435:            if (!defined($returnhash{'type'})) {
 6436:                $returnhash{'type'} = 'Course';
 6437:            }
 6438:            while (my ($name,$value) = each %returnhash) {
 6439:                $envhash{'course.'.$normalid.'.'.$name}=$value;
 6440:            }
 6441:            $returnhash{'url'}=&clutter($returnhash{'url'});
 6442:            $returnhash{'fn'}=LONCAPA::tempdir() .
 6443: 	       $username.'_'.$cdomain.'_'.$cnum;
 6444:            $envhash{'course.'.$normalid.'.home'}=$chome;
 6445:            $envhash{'course.'.$normalid.'.domain'}=$cdomain;
 6446:            $envhash{'course.'.$normalid.'.num'}=$cnum;
 6447:        }
 6448:     }
 6449:     if (!$args->{'one_time'}) {
 6450: 	&appenv(\%envhash);
 6451:     }
 6452:     return %returnhash;
 6453: }
 6454: 
 6455: sub update_released_required {
 6456:     my ($needsrelease,$cdom,$cnum,$chome,$cid) = @_;
 6457:     if ($cdom eq '' || $cnum eq '' || $chome eq '' || $cid eq '') {
 6458:         $cid = $env{'request.course.id'};
 6459:         $cdom = $env{'course.'.$cid.'.domain'};
 6460:         $cnum = $env{'course.'.$cid.'.num'};
 6461:         $chome = $env{'course.'.$cid.'.home'};
 6462:     }
 6463:     if ($needsrelease) {
 6464:         my %curr_reqd_hash = &userenvironment($cdom,$cnum,'internal.releaserequired');
 6465:         my $needsupdate;
 6466:         if ($curr_reqd_hash{'internal.releaserequired'} eq '') {
 6467:             $needsupdate = 1;
 6468:         } else {
 6469:             my ($currmajor,$currminor) = split(/\./,$curr_reqd_hash{'internal.releaserequired'});
 6470:             my ($needsmajor,$needsminor) = split(/\./,$needsrelease);
 6471:             if (($currmajor < $needsmajor) || ($currmajor == $needsmajor && $currminor < $needsminor)) {
 6472:                 $needsupdate = 1;
 6473:             }
 6474:         }
 6475:         if ($needsupdate) {
 6476:             my %needshash = (
 6477:                              'internal.releaserequired' => $needsrelease,
 6478:                             );
 6479:             my $putresult = &put('environment',\%needshash,$cdom,$cnum);
 6480:             if ($putresult eq 'ok') {
 6481:                 &appenv({'course.'.$cid.'.internal.releaserequired' => $needsrelease});
 6482:                 my %crsinfo = &courseiddump($cdom,'.',1,'.','.',$cnum,undef,undef,'.');
 6483:                 if (ref($crsinfo{$cid}) eq 'HASH') {
 6484:                     $crsinfo{$cid}{'releaserequired'} = $needsrelease;
 6485:                     &courseidput($cdom,\%crsinfo,$chome,'notime');
 6486:                 }
 6487:             }
 6488:         }
 6489:     }
 6490:     return;
 6491: }
 6492: 
 6493: # -------------------------------------------------See if a user is privileged
 6494: 
 6495: sub privileged {
 6496:     my ($username,$domain,$possdomains,$possroles)=@_;
 6497:     my $now = time;
 6498:     my $roles;
 6499:     if (ref($possroles) eq 'ARRAY') {
 6500:         $roles = $possroles; 
 6501:     } else {
 6502:         $roles = ['dc','su'];
 6503:     }
 6504:     if (ref($possdomains) eq 'ARRAY') {
 6505:         my %privileged = &privileged_by_domain($possdomains,$roles);
 6506:         foreach my $dom (@{$possdomains}) {
 6507:             if (($username =~ /^$match_username$/) && ($domain =~ /^$match_domain$/) &&
 6508:                 (ref($privileged{$dom}) eq 'HASH')) {
 6509:                 foreach my $role (@{$roles}) {
 6510:                     if (ref($privileged{$dom}{$role}) eq 'HASH') {
 6511:                         if (exists($privileged{$dom}{$role}{$username.':'.$domain})) {
 6512:                             my ($end,$start) = split(/:/,$privileged{$dom}{$role}{$username.':'.$domain});
 6513:                             return 1 unless (($end && $end < $now) ||
 6514:                                              ($start && $start > $now));
 6515:                         }
 6516:                     }
 6517:                 }
 6518:             }
 6519:         }
 6520:     } else {
 6521:         my %rolesdump = &dump("roles", $domain, $username) or return 0;
 6522:         my $now = time;
 6523: 
 6524:         for my $role (@rolesdump{grep { ! /^rolesdef_/ } keys(%rolesdump)}) {
 6525:             my ($trole, $tend, $tstart) = split(/_/, $role);
 6526:             if (grep(/^\Q$trole\E$/,@{$roles})) {
 6527:                 return 1 unless ($tend && $tend < $now) 
 6528:                         or ($tstart && $tstart > $now);
 6529:             }
 6530:         }
 6531:     }
 6532:     return 0;
 6533: }
 6534: 
 6535: sub privileged_by_domain {
 6536:     my ($domains,$roles) = @_;
 6537:     my %privileged = ();
 6538:     my $cachetime = 60*60*24;
 6539:     my $now = time;
 6540:     unless ((ref($domains) eq 'ARRAY') && (ref($roles) eq 'ARRAY')) {
 6541:         return %privileged;
 6542:     }
 6543:     foreach my $dom (@{$domains}) {
 6544:         next if (ref($privileged{$dom}) eq 'HASH');
 6545:         my $needroles;
 6546:         foreach my $role (@{$roles}) {
 6547:             my ($result,$cached)=&is_cached_new('priv_'.$role,$dom);
 6548:             if (defined($cached)) {
 6549:                 if (ref($result) eq 'HASH') {
 6550:                     $privileged{$dom}{$role} = $result;
 6551:                 }
 6552:             } else {
 6553:                 $needroles = 1;
 6554:             }
 6555:         }
 6556:         if ($needroles) {
 6557:             my %dompersonnel = &get_domain_roles($dom,$roles);
 6558:             $privileged{$dom} = {};
 6559:             foreach my $server (keys(%dompersonnel)) {
 6560:                 if (ref($dompersonnel{$server}) eq 'HASH') {
 6561:                     foreach my $item (keys(%{$dompersonnel{$server}})) {
 6562:                         my ($trole,$uname,$udom,$rest) = split(/:/,$item,4);
 6563:                         my ($end,$start) = split(/:/,$dompersonnel{$server}{$item});
 6564:                         next if ($end && $end < $now);
 6565:                         $privileged{$dom}{$trole}{$uname.':'.$udom} = 
 6566:                             $dompersonnel{$server}{$item};
 6567:                     }
 6568:                 }
 6569:             }
 6570:             if (ref($privileged{$dom}) eq 'HASH') {
 6571:                 foreach my $role (@{$roles}) {
 6572:                     if (ref($privileged{$dom}{$role}) eq 'HASH') {
 6573:                         &do_cache_new('priv_'.$role,$dom,$privileged{$dom}{$role},$cachetime);
 6574:                     } else {
 6575:                         my %hash = ();
 6576:                         &do_cache_new('priv_'.$role,$dom,\%hash,$cachetime);
 6577:                     }
 6578:                 }
 6579:             }
 6580:         }
 6581:     }
 6582:     return %privileged;
 6583: }
 6584: 
 6585: # -------------------------------------------------------- Get user privileges
 6586: 
 6587: sub rolesinit {
 6588:     my ($domain, $username) = @_;
 6589:     my %userroles = ('user.login.time' => time);
 6590:     my %rolesdump = &dump("roles", $domain, $username) or return \%userroles;
 6591: 
 6592:     # firstaccess and timerinterval are related to timed maps/resources. 
 6593:     # also, blocking can be triggered by an activating timer
 6594:     # it's saved in the user's %env.
 6595:     my %firstaccess = &dump('firstaccesstimes', $domain, $username);
 6596:     my %timerinterval = &dump('timerinterval', $domain, $username);
 6597:     my (%coursetimerstarts, %firstaccchk, %firstaccenv, %coursetimerintervals,
 6598:         %timerintchk, %timerintenv);
 6599: 
 6600:     foreach my $key (keys(%firstaccess)) {
 6601:         my ($cid, $rest) = split(/\0/, $key);
 6602:         $coursetimerstarts{$cid}{$rest} = $firstaccess{$key};
 6603:     }
 6604: 
 6605:     foreach my $key (keys(%timerinterval)) {
 6606:         my ($cid,$rest) = split(/\0/,$key);
 6607:         $coursetimerintervals{$cid}{$rest} = $timerinterval{$key};
 6608:     }
 6609: 
 6610:     my %allroles=();
 6611:     my %allgroups=();
 6612: 
 6613:     for my $area (grep { ! /^rolesdef_/ } keys(%rolesdump)) {
 6614:         my $role = $rolesdump{$area};
 6615:         $area =~ s/\_\w\w$//;
 6616: 
 6617:         my ($trole, $tend, $tstart, $group_privs);
 6618: 
 6619:         if ($role =~ /^cr/) {
 6620:         # Custom role, defined by a user 
 6621:         # e.g., user.role.cr/msu/smith/mynewrole
 6622:             if ($role =~ m|^(cr/$match_domain/$match_username/[a-zA-Z0-9]+)_(.*)$|) {
 6623:                 $trole = $1;
 6624:                 ($tend, $tstart) = split('_', $2);
 6625:             } else {
 6626:                 $trole = $role;
 6627:             }
 6628:         } elsif ($role =~ m|^gr/|) {
 6629:         # Role of member in a group, defined within a course/community
 6630:         # e.g., user.role.gr/msu/04935610a19ee4a5fmsul1/leopards
 6631:             ($trole, $tend, $tstart) = split(/_/, $role);
 6632:             next if $tstart eq '-1';
 6633:             ($trole, $group_privs) = split(/\//, $trole);
 6634:             $group_privs = &unescape($group_privs);
 6635:         } else {
 6636:         # Just a normal role, defined in roles.tab
 6637:             ($trole, $tend, $tstart) = split(/_/,$role);
 6638:         }
 6639: 
 6640:         my %new_role = &set_arearole($trole,$area,$tstart,$tend,$domain,
 6641:                  $username);
 6642:         @userroles{keys(%new_role)} = @new_role{keys(%new_role)};
 6643: 
 6644:         # role expired or not available yet?
 6645:         $trole = '' if ($tend != 0 && $tend < $userroles{'user.login.time'}) or 
 6646:             ($tstart != 0 && $tstart > $userroles{'user.login.time'});
 6647: 
 6648:         next if $area eq '' or $trole eq '';
 6649: 
 6650:         my $spec = "$trole.$area";
 6651:         my ($tdummy, $tdomain, $trest) = split(/\//, $area);
 6652: 
 6653:         if ($trole =~ /^cr\//) {
 6654:         # Custom role, defined by a user
 6655:             &custom_roleprivs(\%allroles,$trole,$tdomain,$trest,$spec,$area);
 6656:         } elsif ($trole eq 'gr') {
 6657:         # Role of a member in a group, defined within a course/community
 6658:             &group_roleprivs(\%allgroups,$area,$group_privs,$tend,$tstart);
 6659:             next;
 6660:         } else {
 6661:         # Normal role, defined in roles.tab
 6662:             &standard_roleprivs(\%allroles,$trole,$tdomain,$spec,$trest,$area);
 6663:         }
 6664: 
 6665:         my $cid = $tdomain.'_'.$trest;
 6666:         unless ($firstaccchk{$cid}) {
 6667:             if (ref($coursetimerstarts{$cid}) eq 'HASH') {
 6668:                 foreach my $item (keys(%{$coursetimerstarts{$cid}})) {
 6669:                     $firstaccenv{'course.'.$cid.'.firstaccess.'.$item} = 
 6670:                         $coursetimerstarts{$cid}{$item}; 
 6671:                 }
 6672:             }
 6673:             $firstaccchk{$cid} = 1;
 6674:         }
 6675:         unless ($timerintchk{$cid}) {
 6676:             if (ref($coursetimerintervals{$cid}) eq 'HASH') {
 6677:                 foreach my $item (keys(%{$coursetimerintervals{$cid}})) {
 6678:                     $timerintenv{'course.'.$cid.'.timerinterval.'.$item} =
 6679:                        $coursetimerintervals{$cid}{$item};
 6680:                 }
 6681:             }
 6682:             $timerintchk{$cid} = 1;
 6683:         }
 6684:     }
 6685: 
 6686:     @userroles{'user.author','user.adv','user.rar'} = &set_userprivs(\%userroles,
 6687:                                                           \%allroles, \%allgroups);
 6688:     $env{'user.adv'} = $userroles{'user.adv'};
 6689:     $env{'user.rar'} = $userroles{'user.rar'};
 6690: 
 6691:     return (\%userroles,\%firstaccenv,\%timerintenv);
 6692: }
 6693: 
 6694: sub set_arearole {
 6695:     my ($trole,$area,$tstart,$tend,$domain,$username,$nolog) = @_;
 6696:     unless ($nolog) {
 6697: # log the associated role with the area
 6698:         &userrolelog($trole,$username,$domain,$area,$tstart,$tend);
 6699:     }
 6700:     return ('user.role.'.$trole.'.'.$area => $tstart.'.'.$tend);
 6701: }
 6702: 
 6703: sub custom_roleprivs {
 6704:     my ($allroles,$trole,$tdomain,$trest,$spec,$area) = @_;
 6705:     my ($rdummy,$rdomain,$rauthor,$rrole)=split(/\//,$trole);
 6706:     my $homsvr = &homeserver($rauthor,$rdomain);
 6707:     if (&hostname($homsvr) ne '') {
 6708:         my ($rdummy,$roledef)=
 6709:             &get('roles',["rolesdef_$rrole"],$rdomain,$rauthor);
 6710:         if (($rdummy ne 'con_lost') && ($roledef ne '')) {
 6711:             my ($syspriv,$dompriv,$coursepriv)=split(/\_/,$roledef);
 6712:             if (defined($syspriv)) {
 6713:                 if ($trest =~ /^$match_community$/) {
 6714:                     $syspriv =~ s/bre\&S//; 
 6715:                 }
 6716:                 $$allroles{'cm./'}.=':'.$syspriv;
 6717:                 $$allroles{$spec.'./'}.=':'.$syspriv;
 6718:             }
 6719:             if ($tdomain ne '') {
 6720:                 if (defined($dompriv)) {
 6721:                     $$allroles{'cm./'.$tdomain.'/'}.=':'.$dompriv;
 6722:                     $$allroles{$spec.'./'.$tdomain.'/'}.=':'.$dompriv;
 6723:                 }
 6724:                 if (($trest ne '') && (defined($coursepriv))) {
 6725:                     if ($trole =~ m{^cr/$tdomain/$tdomain\Q-domainconfig\E/([^/]+)$}) {
 6726:                         my $rolename = $1;
 6727:                         $coursepriv = &course_adhocrole_privs($rolename,$tdomain,$trest,$coursepriv);
 6728:                     }
 6729:                     $$allroles{'cm.'.$area}.=':'.$coursepriv;
 6730:                     $$allroles{$spec.'.'.$area}.=':'.$coursepriv;
 6731:                 }
 6732:             }
 6733:         }
 6734:     }
 6735: }
 6736: 
 6737: sub course_adhocrole_privs {
 6738:     my ($rolename,$cdom,$cnum,$coursepriv) = @_;
 6739:     my %overrides = &get('environment',["internal.adhocpriv.$rolename"],$cdom,$cnum);
 6740:     if ($overrides{"internal.adhocpriv.$rolename"}) {
 6741:         my (%currprivs,%storeprivs);
 6742:         foreach my $item (split(/:/,$coursepriv)) {
 6743:             my ($priv,$restrict) = split(/\&/,$item);
 6744:             $currprivs{$priv} = $restrict;
 6745:         }
 6746:         my (%possadd,%possremove,%full);
 6747:         foreach my $item (split(/\:/,$Apache::lonnet::pr{'cr:c'})) {
 6748:             my ($priv,$restrict)=split(/\&/,$item);
 6749:             $full{$priv} = $restrict;
 6750:         }
 6751:         foreach my $item (split(/,/,$overrides{"internal.adhocpriv.$rolename"})) {
 6752:              next if ($item eq '');
 6753:              my ($rule,$rest) = split(/=/,$item);
 6754:              next unless (($rule eq 'off') || ($rule eq 'on'));
 6755:              foreach my $priv (split(/:/,$rest)) {
 6756:                  if ($priv ne '') {
 6757:                      if ($rule eq 'off') {
 6758:                          $possremove{$priv} = 1;
 6759:                      } else {
 6760:                          $possadd{$priv} = 1;
 6761:                      }
 6762:                  }
 6763:              }
 6764:          }
 6765:          foreach my $priv (sort(keys(%full))) {
 6766:              if (exists($currprivs{$priv})) {
 6767:                  unless (exists($possremove{$priv})) {
 6768:                      $storeprivs{$priv} = $currprivs{$priv};
 6769:                  }
 6770:              } elsif (exists($possadd{$priv})) {
 6771:                  $storeprivs{$priv} = $full{$priv};
 6772:              }
 6773:          }
 6774:          $coursepriv = ':'.join(':',map { $_.'&'.$storeprivs{$_}; } sort(keys(%storeprivs)));
 6775:      }
 6776:      return $coursepriv;
 6777: }
 6778: 
 6779: sub group_roleprivs {
 6780:     my ($allgroups,$area,$group_privs,$tend,$tstart) = @_;
 6781:     my $access = 1;
 6782:     my $now = time;
 6783:     if (($tend!=0) && ($tend<$now)) { $access = 0; }
 6784:     if (($tstart!=0) && ($tstart>$now)) { $access=0; }
 6785:     if ($access) {
 6786:         my ($course,$group) = ($area =~ m|(/$match_domain/$match_courseid)/([^/]+)$|);
 6787:         $$allgroups{$course}{$group} .=':'.$group_privs;
 6788:     }
 6789: }
 6790: 
 6791: sub standard_roleprivs {
 6792:     my ($allroles,$trole,$tdomain,$spec,$trest,$area) = @_;
 6793:     if (defined($pr{$trole.':s'})) {
 6794:         $$allroles{'cm./'}.=':'.$pr{$trole.':s'};
 6795:         $$allroles{$spec.'./'}.=':'.$pr{$trole.':s'};
 6796:     }
 6797:     if ($tdomain ne '') {
 6798:         if (defined($pr{$trole.':d'})) {
 6799:             $$allroles{'cm./'.$tdomain.'/'}.=':'.$pr{$trole.':d'};
 6800:             $$allroles{$spec.'./'.$tdomain.'/'}.=':'.$pr{$trole.':d'};
 6801:         }
 6802:         if (($trest ne '') && (defined($pr{$trole.':c'}))) {
 6803:             $$allroles{'cm.'.$area}.=':'.$pr{$trole.':c'};
 6804:             $$allroles{$spec.'.'.$area}.=':'.$pr{$trole.':c'};
 6805:         }
 6806:     }
 6807: }
 6808: 
 6809: sub set_userprivs {
 6810:     my ($userroles,$allroles,$allgroups,$groups_roles) = @_; 
 6811:     my $author=0;
 6812:     my $adv=0;
 6813:     my $rar=0;
 6814:     my %grouproles = ();
 6815:     if (keys(%{$allgroups}) > 0) {
 6816:         my @groupkeys; 
 6817:         foreach my $role (keys(%{$allroles})) {
 6818:             push(@groupkeys,$role);
 6819:         }
 6820:         if (ref($groups_roles) eq 'HASH') {
 6821:             foreach my $key (keys(%{$groups_roles})) {
 6822:                 unless (grep(/^\Q$key\E$/,@groupkeys)) {
 6823:                     push(@groupkeys,$key);
 6824:                 }
 6825:             }
 6826:         }
 6827:         if (@groupkeys > 0) {
 6828:             foreach my $role (@groupkeys) {
 6829:                 my ($trole,$area,$sec,$extendedarea);
 6830:                 if ($role =~ m-^(\w+|cr/$match_domain/$match_username/\w+)\.(/$match_domain/$match_courseid)(/?\w*)\.-) {
 6831:                     $trole = $1;
 6832:                     $area = $2;
 6833:                     $sec = $3;
 6834:                     $extendedarea = $area.$sec;
 6835:                     if (exists($$allgroups{$area})) {
 6836:                         foreach my $group (keys(%{$$allgroups{$area}})) {
 6837:                             my $spec = $trole.'.'.$extendedarea;
 6838:                             $grouproles{$spec.'.'.$area.'/'.$group} = 
 6839:                                                 $$allgroups{$area}{$group};
 6840:                         }
 6841:                     }
 6842:                 }
 6843:             }
 6844:         }
 6845:     }
 6846:     foreach my $group (keys(%grouproles)) {
 6847:         $$allroles{$group} = $grouproles{$group};
 6848:     }
 6849:     foreach my $role (keys(%{$allroles})) {
 6850:         my %thesepriv;
 6851:         if (($role=~/^au/) || ($role=~/^ca/) || ($role=~/^aa/)) { $author=1; }
 6852:         foreach my $item (split(/:/,$$allroles{$role})) {
 6853:             if ($item ne '') {
 6854:                 my ($privilege,$restrictions)=split(/&/,$item);
 6855:                 if ($restrictions eq '') {
 6856:                     $thesepriv{$privilege}='F';
 6857:                 } elsif ($thesepriv{$privilege} ne 'F') {
 6858:                     $thesepriv{$privilege}.=$restrictions;
 6859:                 }
 6860:                 if ($thesepriv{'adv'} eq 'F') { $adv=1; }
 6861:                 if ($thesepriv{'rar'} eq 'F') { $rar=1; }
 6862:             }
 6863:         }
 6864:         my $thesestr='';
 6865:         foreach my $priv (sort(keys(%thesepriv))) {
 6866: 	    $thesestr.=':'.$priv.'&'.$thesepriv{$priv};
 6867: 	}
 6868:         $userroles->{'user.priv.'.$role} = $thesestr;
 6869:     }
 6870:     return ($author,$adv,$rar);
 6871: }
 6872: 
 6873: sub role_status {
 6874:     my ($rolekey,$update,$refresh,$now,$role,$where,$trolecode,$tstatus,$tstart,$tend) = @_;
 6875:     if (exists($env{$rolekey}) && $env{$rolekey} ne '') {
 6876:         my ($one,$two) = split(m{\./},$rolekey,2);
 6877:         (undef,undef,$$role) = split(/\./,$one,3);
 6878:         unless (!defined($$role) || $$role eq '') {
 6879:             $$where = '/'.$two;
 6880:             $$trolecode=$$role.'.'.$$where;
 6881:             ($$tstart,$$tend)=split(/\./,$env{$rolekey});
 6882:             $$tstatus='is';
 6883:             if ($$tstart && $$tstart>$update) {
 6884:                 $$tstatus='future';
 6885:                 if ($$tstart<$now) {
 6886:                     if ($$tstart && $$tstart>$refresh) {
 6887:                         if (($$where ne '') && ($$role ne '')) {
 6888:                             my (%allroles,%allgroups,$group_privs,
 6889:                                 %groups_roles,@rolecodes);
 6890:                             my %userroles = (
 6891:                                 'user.role.'.$$role.'.'.$$where => $$tstart.'.'.$$tend
 6892:                             );
 6893:                             @rolecodes = ('cm'); 
 6894:                             my $spec=$$role.'.'.$$where;
 6895:                             my ($tdummy,$tdomain,$trest)=split(/\//,$$where);
 6896:                             if ($$role =~ /^cr\//) {
 6897:                                 &custom_roleprivs(\%allroles,$$role,$tdomain,$trest,$spec,$$where);
 6898:                                 push(@rolecodes,'cr');
 6899:                             } elsif ($$role eq 'gr') {
 6900:                                 push(@rolecodes,$$role);
 6901:                                 my %rolehash = &get('roles',[$$where.'_'.$$role],$env{'user.domain'},
 6902:                                                     $env{'user.name'});
 6903:                                 my ($trole) = split('_',$rolehash{$$where.'_'.$$role},2);
 6904:                                 (undef,my $group_privs) = split(/\//,$trole);
 6905:                                 $group_privs = &unescape($group_privs);
 6906:                                 &group_roleprivs(\%allgroups,$$where,$group_privs,$$tend,$$tstart);
 6907:                                 my %course_roles = &get_my_roles($env{'user.name'},$env{'user.domain'},'userroles',['active'],['cc','co','in','ta','ep','ad','st','cr'],[$tdomain],1);
 6908:                                 &get_groups_roles($tdomain,$trest,
 6909:                                                   \%course_roles,\@rolecodes,
 6910:                                                   \%groups_roles);
 6911:                             } else {
 6912:                                 push(@rolecodes,$$role);
 6913:                                 &standard_roleprivs(\%allroles,$$role,$tdomain,$spec,$trest,$$where);
 6914:                             }
 6915:                             my ($author,$adv,$rar)= &set_userprivs(\%userroles,\%allroles,\%allgroups,
 6916:                                                                    \%groups_roles);
 6917:                             &appenv(\%userroles,\@rolecodes);
 6918:                             &log($env{'user.domain'},$env{'user.name'},$env{'user.home'},"Role ".$spec);
 6919:                         }
 6920:                     }
 6921:                     $$tstatus = 'is';
 6922:                 }
 6923:             }
 6924:             if ($$tend) {
 6925:                 if ($$tend<$update) {
 6926:                     $$tstatus='expired';
 6927:                 } elsif ($$tend<$now) {
 6928:                     $$tstatus='will_not';
 6929:                 }
 6930:             }
 6931:         }
 6932:     }
 6933: }
 6934: 
 6935: sub get_groups_roles {
 6936:     my ($cdom,$rest,$cdom_courseroles,$rolecodes,$groups_roles) = @_;
 6937:     return unless((ref($cdom_courseroles) eq 'HASH') && 
 6938:                   (ref($rolecodes) eq 'ARRAY') && 
 6939:                   (ref($groups_roles) eq 'HASH')); 
 6940:     if (keys(%{$cdom_courseroles}) > 0) {
 6941:         my ($cnum) = ($rest =~ /^($match_courseid)/);
 6942:         if ($cdom ne '' && $cnum ne '') {
 6943:             foreach my $key (keys(%{$cdom_courseroles})) {
 6944:                 if ($key =~ /^\Q$cnum\E:\Q$cdom\E:([^:]+):?([^:]*)/) {
 6945:                     my $crsrole = $1;
 6946:                     my $crssec = $2;
 6947:                     if ($crsrole =~ /^cr/) {
 6948:                         unless (grep(/^cr$/,@{$rolecodes})) {
 6949:                             push(@{$rolecodes},'cr');
 6950:                         }
 6951:                     } else {
 6952:                         unless(grep(/^\Q$crsrole\E$/,@{$rolecodes})) {
 6953:                             push(@{$rolecodes},$crsrole);
 6954:                         }
 6955:                     }
 6956:                     my $rolekey = "$crsrole./$cdom/$cnum";
 6957:                     if ($crssec ne '') {
 6958:                         $rolekey .= "/$crssec";
 6959:                     }
 6960:                     $rolekey .= './';
 6961:                     $groups_roles->{$rolekey} = $rolecodes;
 6962:                 }
 6963:             }
 6964:         }
 6965:     }
 6966:     return;
 6967: }
 6968: 
 6969: sub delete_env_groupprivs {
 6970:     my ($where,$courseroles,$possroles) = @_;
 6971:     return unless((ref($courseroles) eq 'HASH') && (ref($possroles) eq 'ARRAY'));
 6972:     my ($dummy,$udom,$uname,$group) = split(/\//,$where);
 6973:     unless (ref($courseroles->{$udom}) eq 'HASH') {
 6974:         %{$courseroles->{$udom}} =
 6975:             &get_my_roles('','','userroles',['active'],
 6976:                           $possroles,[$udom],1);
 6977:     }
 6978:     if (ref($courseroles->{$udom}) eq 'HASH') {
 6979:         foreach my $item (keys(%{$courseroles->{$udom}})) {
 6980:             my ($cnum,$cdom,$crsrole,$crssec) = split(/:/,$item);
 6981:             my $area = '/'.$cdom.'/'.$cnum;
 6982:             my $privkey = "user.priv.$crsrole.$area";
 6983:             if ($crssec ne '') {
 6984:                 $privkey .= '/'.$crssec;
 6985:             }
 6986:             $privkey .= ".$area/$group";
 6987:             &Apache::lonnet::delenv($privkey,undef,[$crsrole]);
 6988:         }
 6989:     }
 6990:     return;
 6991: }
 6992: 
 6993: sub check_adhoc_privs {
 6994:     my ($cdom,$cnum,$update,$refresh,$now,$checkrole,$caller,$sec) = @_;
 6995:     my $cckey = 'user.role.'.$checkrole.'./'.$cdom.'/'.$cnum;
 6996:     if ($sec) {
 6997:         $cckey .= '/'.$sec;
 6998:     } 
 6999:     my $setprivs;
 7000:     if ($env{$cckey}) {
 7001:         my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus,$tpstart,$tpend);
 7002:         &role_status($cckey,$update,$refresh,$now,\$role,\$where,\$trolecode,\$tstatus,\$tstart,\$tend);
 7003:         unless (($tstatus eq 'is') || ($tstatus eq 'will_not')) {
 7004:             &set_adhoc_privileges($cdom,$cnum,$checkrole,$caller,$sec);
 7005:             $setprivs = 1;
 7006:         }
 7007:     } else {
 7008:         &set_adhoc_privileges($cdom,$cnum,$checkrole,$caller,$sec);
 7009:         $setprivs = 1;
 7010:     }
 7011:     return $setprivs;
 7012: }
 7013: 
 7014: sub set_adhoc_privileges {
 7015: # role can be cc, ca, or cr/<dom>/<dom>-domainconfig/role
 7016:     my ($dcdom,$pickedcourse,$role,$caller,$sec) = @_;
 7017:     my $area = '/'.$dcdom.'/'.$pickedcourse;
 7018:     if ($sec ne '') {
 7019:         $area .= '/'.$sec;
 7020:     }
 7021:     my $spec = $role.'.'.$area;
 7022:     my %userroles = &set_arearole($role,$area,'','',$env{'user.domain'},
 7023:                                   $env{'user.name'},1);
 7024:     my %rolehash = ();
 7025:     if ($role =~ m{^\Qcr/$dcdom/$dcdom\E\-domainconfig/(\w+)$}) {
 7026:         my $rolename = $1;
 7027:         &custom_roleprivs(\%rolehash,$role,$dcdom,$pickedcourse,$spec,$area);
 7028:         my %domdef = &get_domain_defaults($dcdom);
 7029:         if (ref($domdef{'adhocroles'}) eq 'HASH') {
 7030:             if (ref($domdef{'adhocroles'}{$rolename}) eq 'HASH') {
 7031:                 &appenv({'request.role.desc' => $domdef{'adhocroles'}{$rolename}{'desc'},});
 7032:             }
 7033:         }
 7034:     } else {
 7035:         &standard_roleprivs(\%rolehash,$role,$dcdom,$spec,$pickedcourse,$area);
 7036:     }
 7037:     my ($author,$adv,$rar)= &set_userprivs(\%userroles,\%rolehash);
 7038:     &appenv(\%userroles,[$role,'cm']);
 7039:     &log($env{'user.domain'},$env{'user.name'},$env{'user.home'},"Role ".$spec);
 7040:     unless (($caller eq 'constructaccess' && $env{'request.course.id'}) ||
 7041:             ($caller eq 'tiny')) {
 7042:         &appenv( {'request.role'        => $spec,
 7043:                   'request.role.domain' => $dcdom,
 7044:                   'request.course.sec'  => $sec,
 7045:                  }
 7046:                );
 7047:         my $tadv=0;
 7048:         if (&allowed('adv') eq 'F') { $tadv=1; }
 7049:         &appenv({'request.role.adv'    => $tadv});
 7050:     }
 7051: }
 7052: 
 7053: # --------------------------------------------------------------- get interface
 7054: 
 7055: sub get {
 7056:    my ($namespace,$storearr,$udomain,$uname)=@_;
 7057:    my $items='';
 7058:    foreach my $item (@$storearr) {
 7059:        $items.=&escape($item).'&';
 7060:    }
 7061:    $items=~s/\&$//;
 7062:    if (!$udomain) { $udomain=$env{'user.domain'}; }
 7063:    if (!$uname) { $uname=$env{'user.name'}; }
 7064:    my $uhome=&homeserver($uname,$udomain);
 7065: 
 7066:    my $rep=&reply("get:$udomain:$uname:$namespace:$items",$uhome);
 7067:    my @pairs=split(/\&/,$rep);
 7068:    if ( $#pairs==0 && $pairs[0] =~ /^(con_lost|error|no_such_host)/i) {
 7069:      return @pairs;
 7070:    }
 7071:    my %returnhash=();
 7072:    my $i=0;
 7073:    foreach my $item (@$storearr) {
 7074:       $returnhash{$item}=&thaw_unescape($pairs[$i]);
 7075:       $i++;
 7076:    }
 7077:    return %returnhash;
 7078: }
 7079: 
 7080: # --------------------------------------------------------------- del interface
 7081: 
 7082: sub del {
 7083:    my ($namespace,$storearr,$udomain,$uname)=@_;
 7084:    my $items='';
 7085:    foreach my $item (@$storearr) {
 7086:        $items.=&escape($item).'&';
 7087:    }
 7088: 
 7089:    $items=~s/\&$//;
 7090:    if (!$udomain) { $udomain=$env{'user.domain'}; }
 7091:    if (!$uname) { $uname=$env{'user.name'}; }
 7092:    my $uhome=&homeserver($uname,$udomain);
 7093:    return &reply("del:$udomain:$uname:$namespace:$items",$uhome);
 7094: }
 7095: 
 7096: # -------------------------------------------------------------- dump interface
 7097: 
 7098: sub unserialize {
 7099:     my ($rep, $escapedkeys) = @_;
 7100: 
 7101:     return {} if $rep =~ /^error/;
 7102: 
 7103:     my %returnhash=();
 7104: 	foreach my $item (split(/\&/,$rep)) {
 7105: 	    my ($key, $value) = split(/=/, $item, 2);
 7106: 	    $key = unescape($key) unless $escapedkeys;
 7107: 	    next if $key =~ /^error: 2 /;
 7108: 	    $returnhash{$key} = &thaw_unescape($value);
 7109: 	}
 7110:     #return %returnhash;
 7111:     return \%returnhash;
 7112: }        
 7113: 
 7114: # see Lond::dump_with_regexp
 7115: # if $escapedkeys hash keys won't get unescaped.
 7116: sub dump {
 7117:     my ($namespace,$udomain,$uname,$regexp,$range,$escapedkeys,$encrypt)=@_;
 7118:     if (!$udomain) { $udomain=$env{'user.domain'}; }
 7119:     if (!$uname) { $uname=$env{'user.name'}; }
 7120:     my $uhome=&homeserver($uname,$udomain);
 7121: 
 7122:     if ($regexp) {
 7123:         $regexp=&escape($regexp);
 7124:     } else {
 7125:         $regexp='.';
 7126:     }
 7127:     if (grep { $_ eq $uhome } current_machine_ids()) {
 7128:         # user is hosted on this machine
 7129:         my $reply = LONCAPA::Lond::dump_with_regexp(join(":", ($udomain,
 7130:                     $uname, $namespace, $regexp, $range)), $perlvar{'lonVersion'});
 7131:         return %{unserialize($reply, $escapedkeys)};
 7132:     }
 7133:     my $rep;
 7134:     if ($encrypt) {
 7135:         $rep=&reply("encrypt:edump:$udomain:$uname:$namespace:$regexp:$range",$uhome);
 7136:     } else {
 7137:         $rep=&reply("dump:$udomain:$uname:$namespace:$regexp:$range",$uhome);
 7138:     }
 7139:     my @pairs=split(/\&/,$rep);
 7140:     my %returnhash=();
 7141:     if (!($rep =~ /^error/ )) {
 7142: 	foreach my $item (@pairs) {
 7143: 	    my ($key,$value)=split(/=/,$item,2);
 7144:         $key = unescape($key) unless $escapedkeys;
 7145:         #$key = &unescape($key);
 7146: 	    next if ($key =~ /^error: 2 /);
 7147: 	    $returnhash{$key}=&thaw_unescape($value);
 7148: 	}
 7149:     }
 7150:     return %returnhash;
 7151: }
 7152: 
 7153: 
 7154: # --------------------------------------------------------- dumpstore interface
 7155: 
 7156: sub dumpstore {
 7157:    my ($namespace,$udomain,$uname,$regexp,$range)=@_;
 7158:    # same as dump but keys must be escaped. They may contain colon separated
 7159:    # lists of values that may themself contain colons (e.g. symbs).
 7160:    return &dump($namespace, $udomain, $uname, $regexp, $range, 1);
 7161: }
 7162: 
 7163: # -------------------------------------------------------------- keys interface
 7164: 
 7165: sub getkeys {
 7166:    my ($namespace,$udomain,$uname)=@_;
 7167:    if (!$udomain) { $udomain=$env{'user.domain'}; }
 7168:    if (!$uname) { $uname=$env{'user.name'}; }
 7169:    my $uhome=&homeserver($uname,$udomain);
 7170:    my $rep=reply("keys:$udomain:$uname:$namespace",$uhome);
 7171:    my @keyarray=();
 7172:    foreach my $key (split(/\&/,$rep)) {
 7173:       next if ($key =~ /^error: 2 /);
 7174:       push(@keyarray,&unescape($key));
 7175:    }
 7176:    return @keyarray;
 7177: }
 7178: 
 7179: # --------------------------------------------------------------- currentdump
 7180: sub currentdump {
 7181:    my ($courseid,$sdom,$sname)=@_;
 7182:    $courseid = $env{'request.course.id'} if (! defined($courseid));
 7183:    $sdom     = $env{'user.domain'}       if (! defined($sdom));
 7184:    $sname    = $env{'user.name'}         if (! defined($sname));
 7185:    my $uhome = &homeserver($sname,$sdom);
 7186:    my $rep;
 7187: 
 7188:    if (grep { $_ eq $uhome } current_machine_ids()) {
 7189:        $rep = LONCAPA::Lond::dump_profile_database(join(":", ($sdom, $sname, 
 7190:                    $courseid)));
 7191:    } else {
 7192:        $rep = reply('currentdump:'.$sdom.':'.$sname.':'.$courseid,$uhome);
 7193:    }
 7194: 
 7195:    return if ($rep =~ /^(error:|no_such_host)/);
 7196:    #
 7197:    my %returnhash=();
 7198:    #
 7199:    if ($rep eq 'unknown_cmd') {
 7200:        # an old lond will not know currentdump
 7201:        # Do a dump and make it look like a currentdump
 7202:        my @tmp = &dumpstore($courseid,$sdom,$sname,'.');
 7203:        return if ($tmp[0] =~ /^(error:|no_such_host)/);
 7204:        my %hash = @tmp;
 7205:        @tmp=();
 7206:        %returnhash = %{&convert_dump_to_currentdump(\%hash)};
 7207:    } else {
 7208:        my @pairs=split(/\&/,$rep);
 7209:        foreach my $pair (@pairs) {
 7210:            my ($key,$value)=split(/=/,$pair,2);
 7211:            my ($symb,$param) = split(/:/,$key);
 7212:            $returnhash{&unescape($symb)}->{&unescape($param)} = 
 7213:                                                         &thaw_unescape($value);
 7214:        }
 7215:    }
 7216:    return %returnhash;
 7217: }
 7218: 
 7219: sub convert_dump_to_currentdump{
 7220:     my %hash = %{shift()};
 7221:     my %returnhash;
 7222:     # Code ripped from lond, essentially.  The only difference
 7223:     # here is the unescaping done by lonnet::dump().  Conceivably
 7224:     # we might run in to problems with parameter names =~ /^v\./
 7225:     while (my ($key,$value) = each(%hash)) {
 7226:         my ($v,$symb,$param) = split(/:/,$key);
 7227: 	$symb  = &unescape($symb);
 7228: 	$param = &unescape($param);
 7229:         next if ($v eq 'version' || $symb eq 'keys');
 7230:         next if (exists($returnhash{$symb}) &&
 7231:                  exists($returnhash{$symb}->{$param}) &&
 7232:                  $returnhash{$symb}->{'v.'.$param} > $v);
 7233:         $returnhash{$symb}->{$param}=$value;
 7234:         $returnhash{$symb}->{'v.'.$param}=$v;
 7235:     }
 7236:     #
 7237:     # Remove all of the keys in the hashes which keep track of
 7238:     # the version of the parameter.
 7239:     while (my ($symb,$param_hash) = each(%returnhash)) {
 7240:         # use a foreach because we are going to delete from the hash.
 7241:         foreach my $key (keys(%$param_hash)) {
 7242:             delete($param_hash->{$key}) if ($key =~ /^v\./);
 7243:         }
 7244:     }
 7245:     return \%returnhash;
 7246: }
 7247: 
 7248: # ------------------------------------------------------ critical inc interface
 7249: 
 7250: sub cinc {
 7251:     return &inc(@_,'critical');
 7252: }
 7253: 
 7254: # --------------------------------------------------------------- inc interface
 7255: 
 7256: sub inc {
 7257:     my ($namespace,$store,$udomain,$uname,$critical) = @_;
 7258:     if (!$udomain) { $udomain=$env{'user.domain'}; }
 7259:     if (!$uname) { $uname=$env{'user.name'}; }
 7260:     my $uhome=&homeserver($uname,$udomain);
 7261:     my $items='';
 7262:     if (! ref($store)) {
 7263:         # got a single value, so use that instead
 7264:         $items = &escape($store).'=&';
 7265:     } elsif (ref($store) eq 'SCALAR') {
 7266:         $items = &escape($$store).'=&';        
 7267:     } elsif (ref($store) eq 'ARRAY') {
 7268:         $items = join('=&',map {&escape($_);} @{$store});
 7269:     } elsif (ref($store) eq 'HASH') {
 7270:         while (my($key,$value) = each(%{$store})) {
 7271:             $items.= &escape($key).'='.&escape($value).'&';
 7272:         }
 7273:     }
 7274:     $items=~s/\&$//;
 7275:     if ($critical) {
 7276: 	return &critical("inc:$udomain:$uname:$namespace:$items",$uhome);
 7277:     } else {
 7278: 	return &reply("inc:$udomain:$uname:$namespace:$items",$uhome);
 7279:     }
 7280: }
 7281: 
 7282: # --------------------------------------------------------------- put interface
 7283: 
 7284: sub put {
 7285:    my ($namespace,$storehash,$udomain,$uname,$encrypt)=@_;
 7286:    if (!$udomain) { $udomain=$env{'user.domain'}; }
 7287:    if (!$uname) { $uname=$env{'user.name'}; }
 7288:    my $uhome=&homeserver($uname,$udomain);
 7289:    my $items='';
 7290:    foreach my $item (keys(%$storehash)) {
 7291:        $items.=&escape($item).'='.&freeze_escape($$storehash{$item}).'&';
 7292:    }
 7293:    $items=~s/\&$//;
 7294:    if ($encrypt) {
 7295:        return &reply("encrypt:put:$udomain:$uname:$namespace:$items",$uhome);
 7296:    } else {
 7297:        return &reply("put:$udomain:$uname:$namespace:$items",$uhome);
 7298:    }
 7299: }
 7300: 
 7301: # ------------------------------------------------------------ newput interface
 7302: 
 7303: sub newput {
 7304:    my ($namespace,$storehash,$udomain,$uname)=@_;
 7305:    if (!$udomain) { $udomain=$env{'user.domain'}; }
 7306:    if (!$uname) { $uname=$env{'user.name'}; }
 7307:    my $uhome=&homeserver($uname,$udomain);
 7308:    my $items='';
 7309:    foreach my $key (keys(%$storehash)) {
 7310:        $items.=&escape($key).'='.&freeze_escape($$storehash{$key}).'&';
 7311:    }
 7312:    $items=~s/\&$//;
 7313:    return &reply("newput:$udomain:$uname:$namespace:$items",$uhome);
 7314: }
 7315: 
 7316: # ---------------------------------------------------------  putstore interface
 7317: 
 7318: sub putstore {
 7319:    my ($namespace,$symb,$version,$storehash,$udomain,$uname,$tolog)=@_;
 7320:    if (!$udomain) { $udomain=$env{'user.domain'}; }
 7321:    if (!$uname) { $uname=$env{'user.name'}; }
 7322:    my $uhome=&homeserver($uname,$udomain);
 7323:    my $items='';
 7324:    foreach my $key (keys(%$storehash)) {
 7325:        $items.= &escape($key).'='.&freeze_escape($storehash->{$key}).'&';
 7326:    }
 7327:    $items=~s/\&$//;
 7328:    my $esc_symb=&escape($symb);
 7329:    my $esc_v=&escape($version);
 7330:    my $reply =
 7331:        &reply("putstore:$udomain:$uname:$namespace:$esc_symb:$esc_v:$items",
 7332: 	      $uhome);
 7333:    if (($tolog) && ($reply eq 'ok')) {
 7334:        my $namevalue='';
 7335:        foreach my $key (keys(%{$storehash})) {
 7336:            $namevalue.=&escape($key).'='.&freeze_escape($storehash->{$key}).'&';
 7337:        }
 7338:        my $ip = &get_requestor_ip();
 7339:        $namevalue .= 'ip='.&escape($ip).
 7340:                      '&host='.&escape($perlvar{'lonHostID'}).
 7341:                      '&version='.$esc_v.
 7342:                      '&by='.&escape($env{'user.name'}.':'.$env{'user.domain'});
 7343:        &Apache::lonnet::courselog($symb.':'.$uname.':'.$udomain.':PUTSTORE:'.$namevalue);
 7344:    }
 7345:    if ($reply eq 'unknown_cmd') {
 7346:        # gfall back to way things use to be done
 7347:        return &old_putstore($namespace,$symb,$version,$storehash,$udomain,
 7348: 			    $uname);
 7349:    }
 7350:    return $reply;
 7351: }
 7352: 
 7353: sub old_putstore {
 7354:     my ($namespace,$symb,$version,$storehash,$udomain,$uname)=@_;
 7355:     if (!$udomain) { $udomain=$env{'user.domain'}; }
 7356:     if (!$uname) { $uname=$env{'user.name'}; }
 7357:     my $uhome=&homeserver($uname,$udomain);
 7358:     my %newstorehash;
 7359:     foreach my $item (keys(%$storehash)) {
 7360: 	my $key = $version.':'.&escape($symb).':'.$item;
 7361: 	$newstorehash{$key} = $storehash->{$item};
 7362:     }
 7363:     my $items='';
 7364:     my %allitems = ();
 7365:     foreach my $item (keys(%newstorehash)) {
 7366: 	if ($item =~ m/^([^\:]+):([^\:]+):([^\:]+)$/) {
 7367: 	    my $key = $1.':keys:'.$2;
 7368: 	    $allitems{$key} .= $3.':';
 7369: 	}
 7370: 	$items.=$item.'='.&freeze_escape($newstorehash{$item}).'&';
 7371:     }
 7372:     foreach my $item (keys(%allitems)) {
 7373: 	$allitems{$item} =~ s/\:$//;
 7374: 	$items.= $item.'='.$allitems{$item}.'&';
 7375:     }
 7376:     $items=~s/\&$//;
 7377:     return &reply("put:$udomain:$uname:$namespace:$items",$uhome);
 7378: }
 7379: 
 7380: # ------------------------------------------------------ critical put interface
 7381: 
 7382: sub cput {
 7383:    my ($namespace,$storehash,$udomain,$uname)=@_;
 7384:    if (!$udomain) { $udomain=$env{'user.domain'}; }
 7385:    if (!$uname) { $uname=$env{'user.name'}; }
 7386:    my $uhome=&homeserver($uname,$udomain);
 7387:    my $items='';
 7388:    foreach my $item (keys(%$storehash)) {
 7389:        $items.=&escape($item).'='.&freeze_escape($$storehash{$item}).'&';
 7390:    }
 7391:    $items=~s/\&$//;
 7392:    return &critical("put:$udomain:$uname:$namespace:$items",$uhome);
 7393: }
 7394: 
 7395: # -------------------------------------------------------------- eget interface
 7396: 
 7397: sub eget {
 7398:    my ($namespace,$storearr,$udomain,$uname)=@_;
 7399:    my $items='';
 7400:    foreach my $item (@$storearr) {
 7401:        $items.=&escape($item).'&';
 7402:    }
 7403:    $items=~s/\&$//;
 7404:    if (!$udomain) { $udomain=$env{'user.domain'}; }
 7405:    if (!$uname) { $uname=$env{'user.name'}; }
 7406:    my $uhome=&homeserver($uname,$udomain);
 7407:    my $rep=&reply("eget:$udomain:$uname:$namespace:$items",$uhome);
 7408:    my @pairs=split(/\&/,$rep);
 7409:    my %returnhash=();
 7410:    my $i=0;
 7411:    foreach my $item (@$storearr) {
 7412:       $returnhash{$item}=&thaw_unescape($pairs[$i]);
 7413:       $i++;
 7414:    }
 7415:    return %returnhash;
 7416: }
 7417: 
 7418: # ------------------------------------------------------------ tmpput interface
 7419: sub tmpput {
 7420:     my ($storehash,$server,$context)=@_;
 7421:     my $items='';
 7422:     foreach my $item (keys(%$storehash)) {
 7423: 	$items.=&escape($item).'='.&freeze_escape($$storehash{$item}).'&';
 7424:     }
 7425:     $items=~s/\&$//;
 7426:     if (defined($context)) {
 7427:         $items .= ':'.&escape($context);
 7428:     }
 7429:     return &reply("tmpput:$items",$server);
 7430: }
 7431: 
 7432: # ------------------------------------------------------------ tmpget interface
 7433: sub tmpget {
 7434:     my ($token,$server)=@_;
 7435:     if (!defined($server)) { $server = $perlvar{'lonHostID'}; }
 7436:     my $rep=&reply("tmpget:$token",$server);
 7437:     my %returnhash;
 7438:     if ($rep =~ /^(con_lost|error|no_such_host)/i) {
 7439:         return %returnhash;
 7440:     }
 7441:     foreach my $item (split(/\&/,$rep)) {
 7442: 	my ($key,$value)=split(/=/,$item);
 7443: 	$returnhash{&unescape($key)}=&thaw_unescape($value);
 7444:     }
 7445:     return %returnhash;
 7446: }
 7447: 
 7448: # ------------------------------------------------------------ tmpdel interface
 7449: sub tmpdel {
 7450:     my ($token,$server)=@_;
 7451:     if (!defined($server)) { $server = $perlvar{'lonHostID'}; }
 7452:     return &reply("tmpdel:$token",$server);
 7453: }
 7454: 
 7455: # ------------------------------------------------------------ get_timebased_id 
 7456: 
 7457: sub get_timebased_id {
 7458:     my ($prefix,$keyid,$namespace,$cdom,$cnum,$idtype,$who,$locktries,
 7459:         $maxtries) = @_;
 7460:     my ($newid,$error,$dellock);
 7461:     unless (($prefix =~ /^\w+$/) && ($keyid =~ /^\w+$/) && ($namespace ne '')) {  
 7462:         return ('','ok','invalid call to get suffix');
 7463:     }
 7464: 
 7465: # set defaults for any optional args for which values were not supplied
 7466:     if ($who eq '') {
 7467:         $who = $env{'user.name'}.':'.$env{'user.domain'};
 7468:     }
 7469:     if (!$locktries) {
 7470:         $locktries = 3;
 7471:     }
 7472:     if (!$maxtries) {
 7473:         $maxtries = 10;
 7474:     }
 7475:     
 7476:     if (($cdom eq '') || ($cnum eq '')) {
 7477:         if ($env{'request.course.id'}) {
 7478:             $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 7479:             $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 7480:         }
 7481:         if (($cdom eq '') || ($cnum eq '')) {
 7482:             return ('','ok','call to get suffix not in course context');
 7483:         }
 7484:     }
 7485: 
 7486: # construct locking item
 7487:     my $lockhash = {
 7488:                       $prefix."\0".'locked_'.$keyid => $who,
 7489:                    };
 7490:     my $tries = 0;
 7491: 
 7492: # attempt to get lock on nohist_$namespace file
 7493:     my $gotlock = &Apache::lonnet::newput('nohist_'.$namespace,$lockhash,$cdom,$cnum);
 7494:     while (($gotlock ne 'ok') && $tries <$locktries) {
 7495:         $tries ++;
 7496:         sleep 1;
 7497:         $gotlock = &Apache::lonnet::newput('nohist_'.$namespace,$lockhash,$cdom,$cnum);
 7498:     }
 7499: 
 7500: # attempt to get unique identifier, based on current timestamp
 7501:     if ($gotlock eq 'ok') {
 7502:         my %inuse = &Apache::lonnet::dump('nohist_'.$namespace,$cdom,$cnum,$prefix);
 7503:         my $id = time;
 7504:         $newid = $id;
 7505:         if ($idtype eq 'addcode') {
 7506:             $newid .= &sixnum_code();
 7507:         }
 7508:         my $idtries = 0;
 7509:         while (exists($inuse{$prefix."\0".$newid}) && $idtries < $maxtries) {
 7510:             if ($idtype eq 'concat') {
 7511:                 $newid = $id.$idtries;
 7512:             } elsif ($idtype eq 'addcode') {
 7513:                 $newid = $newid.&sixnum_code();
 7514:             } else {
 7515:                 $newid ++;
 7516:             }
 7517:             $idtries ++;
 7518:         }
 7519:         if (!exists($inuse{$prefix."\0".$newid})) {
 7520:             my %new_item =  (
 7521:                               $prefix."\0".$newid => $who,
 7522:                             );
 7523:             my $putresult = &Apache::lonnet::put('nohist_'.$namespace,\%new_item,
 7524:                                                  $cdom,$cnum);
 7525:             if ($putresult ne 'ok') {
 7526:                 undef($newid);
 7527:                 $error = 'error saving new item: '.$putresult;
 7528:             }
 7529:         } else {
 7530:              undef($newid);
 7531:              $error = ('error: no unique suffix available for the new item ');
 7532:         }
 7533: #  remove lock
 7534:         my @del_lock = ($prefix."\0".'locked_'.$keyid);
 7535:         $dellock = &Apache::lonnet::del('nohist_'.$namespace,\@del_lock,$cdom,$cnum);
 7536:     } else {
 7537:         $error = "error: could not obtain lockfile\n";
 7538:         $dellock = 'ok';
 7539:         if (($prefix eq 'paste') && ($namespace eq 'courseeditor') && ($keyid eq 'num')) {
 7540:             $dellock = 'nolock';
 7541:         }
 7542:     }
 7543:     return ($newid,$dellock,$error);
 7544: }
 7545: 
 7546: sub sixnum_code {
 7547:     my $code;
 7548:     for (0..6) {
 7549:         $code .= int( rand(9) );
 7550:     }
 7551:     return $code;
 7552: }
 7553: 
 7554: # -------------------------------------------------- portfolio access checking
 7555: 
 7556: sub portfolio_access {
 7557:     my ($requrl,$clientip) = @_;
 7558:     my (undef,$udom,$unum,$file_name,$group) = &parse_portfolio_url($requrl);
 7559:     my $result = &get_portfolio_access($udom,$unum,$file_name,$group,$clientip);
 7560:     if ($result) {
 7561:         my %setters;
 7562:         if ($env{'user.name'} eq 'public' && $env{'user.domain'} eq 'public') {
 7563:             my ($startblock,$endblock) =
 7564:                 &Apache::loncommon::blockcheck(\%setters,'port',$unum,$udom);
 7565:             if ($startblock && $endblock) {
 7566:                 return 'B';
 7567:             }
 7568:         } else {
 7569:             my ($startblock,$endblock) =
 7570:                 &Apache::loncommon::blockcheck(\%setters,'port');
 7571:             if ($startblock && $endblock) {
 7572:                 return 'B';
 7573:             }
 7574:         }
 7575:     }
 7576:     if ($result eq 'ok') {
 7577:        return 'F';
 7578:     } elsif ($result =~ /^[^:]+:guest_/) {
 7579:        return 'A';
 7580:     }
 7581:     return '';
 7582: }
 7583: 
 7584: sub get_portfolio_access {
 7585:     my ($udom,$unum,$file_name,$group,$clientip,$access_hash) = @_;
 7586: 
 7587:     if (!ref($access_hash)) {
 7588: 	my $current_perms = &get_portfile_permissions($udom,$unum);
 7589: 	my %access_controls = &get_access_controls($current_perms,$group,
 7590: 						   $file_name);
 7591: 	$access_hash = $access_controls{$file_name};
 7592:     }
 7593: 
 7594:     my ($public,$guest,@domains,@users,@courses,@groups,@ips);
 7595:     my $now = time;
 7596:     if (ref($access_hash) eq 'HASH') {
 7597:         foreach my $key (keys(%{$access_hash})) {
 7598:             my ($num,$scope,$end,$start) = ($key =~ /^([^:]+):([a-z]+)_(\d*)_?(\d*)$/);
 7599:             if ($start > $now) {
 7600:                 next;
 7601:             }
 7602:             if ($end && $end<$now) {
 7603:                 next;
 7604:             }
 7605:             if ($scope eq 'public') {
 7606:                 $public = $key;
 7607:                 last;
 7608:             } elsif ($scope eq 'guest') {
 7609:                 $guest = $key;
 7610:             } elsif ($scope eq 'domains') {
 7611:                 push(@domains,$key);
 7612:             } elsif ($scope eq 'users') {
 7613:                 push(@users,$key);
 7614:             } elsif ($scope eq 'course') {
 7615:                 push(@courses,$key);
 7616:             } elsif ($scope eq 'group') {
 7617:                 push(@groups,$key);
 7618:             } elsif ($scope eq 'ip') {
 7619:                 push(@ips,$key);
 7620:             }
 7621:         }
 7622:         if ($public) {
 7623:             return 'ok';
 7624:         } elsif (@ips > 0) {
 7625:             my $allowed;
 7626:             foreach my $ipkey (@ips) {
 7627:                 if (ref($access_hash->{$ipkey}{'ip'}) eq 'ARRAY') {
 7628:                     if (&Apache::loncommon::check_ip_acc(join(',',@{$access_hash->{$ipkey}{'ip'}}),$clientip)) {
 7629:                         $allowed = 1;
 7630:                         last; 
 7631:                     }
 7632:                 }
 7633:             }
 7634:             if ($allowed) {
 7635:                 return 'ok';
 7636:             }
 7637:         }
 7638:         if ($env{'user.name'} eq 'public' && $env{'user.domain'} eq 'public') {
 7639:             if ($guest) {
 7640:                 return $guest;
 7641:             }
 7642:         } else {
 7643:             if (@domains > 0) {
 7644:                 foreach my $domkey (@domains) {
 7645:                     if (ref($access_hash->{$domkey}{'dom'}) eq 'ARRAY') {
 7646:                         if (grep(/^\Q$env{'user.domain'}\E$/,@{$access_hash->{$domkey}{'dom'}})) {
 7647:                             return 'ok';
 7648:                         }
 7649:                     }
 7650:                 }
 7651:             }
 7652:             if (@users > 0) {
 7653:                 foreach my $userkey (@users) {
 7654:                     if (ref($access_hash->{$userkey}{'users'}) eq 'ARRAY') {
 7655:                         foreach my $item (@{$access_hash->{$userkey}{'users'}}) {
 7656:                             if (ref($item) eq 'HASH') {
 7657:                                 if (($item->{'uname'} eq $env{'user.name'}) &&
 7658:                                     ($item->{'udom'} eq $env{'user.domain'})) {
 7659:                                     return 'ok';
 7660:                                 }
 7661:                             }
 7662:                         }
 7663:                     } 
 7664:                 }
 7665:             }
 7666:             my %roleshash;
 7667:             my @courses_and_groups = @courses;
 7668:             push(@courses_and_groups,@groups); 
 7669:             if (@courses_and_groups > 0) {
 7670:                 my (%allgroups,%allroles); 
 7671:                 my ($start,$end,$role,$sec,$group);
 7672:                 foreach my $envkey (%env) {
 7673:                     if ($envkey =~ m-^user\.role\.(gr|cc|co|in|ta|ep|ad|st)\./($match_domain)/($match_courseid)/?([^/]*)$-) {
 7674:                         my $cid = $2.'_'.$3; 
 7675:                         if ($1 eq 'gr') {
 7676:                             $group = $4;
 7677:                             $allgroups{$cid}{$group} = $env{$envkey};
 7678:                         } else {
 7679:                             if ($4 eq '') {
 7680:                                 $sec = 'none';
 7681:                             } else {
 7682:                                 $sec = $4;
 7683:                             }
 7684:                             $allroles{$cid}{$1}{$sec} = $env{$envkey};
 7685:                         }
 7686:                     } elsif ($envkey =~ m-^user\.role\./cr/($match_domain/$match_username/\w*)./($match_domain)/($match_courseid)/?([^/]*)$-) {
 7687:                         my $cid = $2.'_'.$3;
 7688:                         if ($4 eq '') {
 7689:                             $sec = 'none';
 7690:                         } else {
 7691:                             $sec = $4;
 7692:                         }
 7693:                         $allroles{$cid}{$1}{$sec} = $env{$envkey};
 7694:                     }
 7695:                 }
 7696:                 if (keys(%allroles) == 0) {
 7697:                     return;
 7698:                 }
 7699:                 foreach my $key (@courses_and_groups) {
 7700:                     my %content = %{$$access_hash{$key}};
 7701:                     my $cnum = $content{'number'};
 7702:                     my $cdom = $content{'domain'};
 7703:                     my $cid = $cdom.'_'.$cnum;
 7704:                     if (!exists($allroles{$cid})) {
 7705:                         next;
 7706:                     }    
 7707:                     foreach my $role_id (keys(%{$content{'roles'}})) {
 7708:                         my @sections = @{$content{'roles'}{$role_id}{'section'}};
 7709:                         my @groups = @{$content{'roles'}{$role_id}{'group'}};
 7710:                         my @status = @{$content{'roles'}{$role_id}{'access'}};
 7711:                         my @roles = @{$content{'roles'}{$role_id}{'role'}};
 7712:                         foreach my $role (keys(%{$allroles{$cid}})) {
 7713:                             if ((grep/^all$/,@roles) || (grep/^\Q$role\E$/,@roles)) {
 7714:                                 foreach my $sec (keys(%{$allroles{$cid}{$role}})) {
 7715:                                     if (&course_group_datechecker($allroles{$cid}{$role}{$sec},$now,\@status) eq 'ok') {
 7716:                                         if (grep/^all$/,@sections) {
 7717:                                             return 'ok';
 7718:                                         } else {
 7719:                                             if (grep/^$sec$/,@sections) {
 7720:                                                 return 'ok';
 7721:                                             }
 7722:                                         }
 7723:                                     }
 7724:                                 }
 7725:                                 if (keys(%{$allgroups{$cid}}) == 0) {
 7726:                                     if (grep/^none$/,@groups) {
 7727:                                         return 'ok';
 7728:                                     }
 7729:                                 } else {
 7730:                                     if (grep/^all$/,@groups) {
 7731:                                         return 'ok';
 7732:                                     } 
 7733:                                     foreach my $group (keys(%{$allgroups{$cid}})) {
 7734:                                         if (grep/^$group$/,@groups) {
 7735:                                             return 'ok';
 7736:                                         }
 7737:                                     }
 7738:                                 } 
 7739:                             }
 7740:                         }
 7741:                     }
 7742:                 }
 7743:             }
 7744:             if ($guest) {
 7745:                 return $guest;
 7746:             }
 7747:         }
 7748:     }
 7749:     return;
 7750: }
 7751: 
 7752: sub course_group_datechecker {
 7753:     my ($dates,$now,$status) = @_;
 7754:     my ($start,$end) = split(/\./,$dates);
 7755:     if (!$start && !$end) {
 7756:         return 'ok';
 7757:     }
 7758:     if (grep/^active$/,@{$status}) {
 7759:         if (((!$start) || ($start && $start <= $now)) && ((!$end) || ($end && $end >= $now))) {
 7760:             return 'ok';
 7761:         }
 7762:     }
 7763:     if (grep/^previous$/,@{$status}) {
 7764:         if ($end > $now ) {
 7765:             return 'ok';
 7766:         }
 7767:     }
 7768:     if (grep/^future$/,@{$status}) {
 7769:         if ($start > $now) {
 7770:             return 'ok';
 7771:         }
 7772:     }
 7773:     return; 
 7774: }
 7775: 
 7776: sub parse_portfolio_url {
 7777:     my ($url) = @_;
 7778: 
 7779:     my ($type,$udom,$unum,$group,$file_name);
 7780:     
 7781:     if ($url =~  m-^/*(?:uploaded|editupload)/($match_domain)/($match_username)/portfolio(/.+)$-) {
 7782: 	$type = 1;
 7783:         $udom = $1;
 7784:         $unum = $2;
 7785:         $file_name = $3;
 7786:     } elsif ($url =~ m-^/*(?:uploaded|editupload)/($match_domain)/($match_courseid)/groups/([^/]+)/portfolio/(.+)$-) {
 7787: 	$type = 2;
 7788:         $udom = $1;
 7789:         $unum = $2;
 7790:         $group = $3;
 7791:         $file_name = $3.'/'.$4;
 7792:     }
 7793:     if (wantarray) {
 7794: 	return ($type,$udom,$unum,$file_name,$group);
 7795:     }
 7796:     return $type;
 7797: }
 7798: 
 7799: sub is_portfolio_url {
 7800:     my ($url) = @_;
 7801:     return scalar(&parse_portfolio_url($url));
 7802: }
 7803: 
 7804: sub is_portfolio_file {
 7805:     my ($file) = @_;
 7806:     if (($file =~ /^portfolio/) || ($file =~ /^groups\/\w+\/portfolio/)) {
 7807:         return 1;
 7808:     }
 7809:     return;
 7810: }
 7811: 
 7812: sub usertools_access {
 7813:     my ($uname,$udom,$tool,$action,$context,$userenvref,$domdefref,$is_advref)=@_;
 7814:     my ($access,%tools);
 7815:     if ($context eq '') {
 7816:         $context = 'tools';
 7817:     }
 7818:     if ($context eq 'requestcourses') {
 7819:         %tools = (
 7820:                       official   => 1,
 7821:                       unofficial => 1,
 7822:                       community  => 1,
 7823:                       textbook   => 1,
 7824:                       placement  => 1,
 7825:                       lti        => 1,
 7826:                  );
 7827:     } elsif ($context eq 'requestauthor') {
 7828:         %tools = (
 7829:                       requestauthor => 1,
 7830:                  );
 7831:     } else {
 7832:         %tools = (
 7833:                       aboutme   => 1,
 7834:                       blog      => 1,
 7835:                       webdav    => 1,
 7836:                       portfolio => 1,
 7837:                  );
 7838:     }
 7839:     return if (!defined($tools{$tool}));
 7840: 
 7841:     if (($udom eq '') || ($uname eq '')) {
 7842:         $udom = $env{'user.domain'};
 7843:         $uname = $env{'user.name'};
 7844:     }
 7845: 
 7846:     if (($udom eq $env{'user.domain'}) && ($uname eq $env{'user.name'})) {
 7847:         if ($action ne 'reload') {
 7848:             if ($context eq 'requestcourses') {
 7849:                 return $env{'environment.canrequest.'.$tool};
 7850:             } elsif ($context eq 'requestauthor') {
 7851:                 return $env{'environment.canrequest.author'};
 7852:             } else {
 7853:                 return $env{'environment.availabletools.'.$tool};
 7854:             }
 7855:         }
 7856:     }
 7857: 
 7858:     my ($toolstatus,$inststatus,$envkey);
 7859:     if ($context eq 'requestauthor') {
 7860:         $envkey = $context; 
 7861:     } else {
 7862:         $envkey = $context.'.'.$tool;
 7863:     }
 7864: 
 7865:     if (($udom eq $env{'user.domain'}) && ($uname eq $env{'user.name'}) &&
 7866:          ($action ne 'reload')) {
 7867:         $toolstatus = $env{'environment.'.$envkey};
 7868:         $inststatus = $env{'environment.inststatus'};
 7869:     } else {
 7870:         if (ref($userenvref) eq 'HASH') {
 7871:             $toolstatus = $userenvref->{$envkey};
 7872:             $inststatus = $userenvref->{'inststatus'};
 7873:         } else {
 7874:             my %userenv = &userenvironment($udom,$uname,$envkey,'inststatus');
 7875:             $toolstatus = $userenv{$envkey};
 7876:             $inststatus = $userenv{'inststatus'};
 7877:         }
 7878:     }
 7879: 
 7880:     if ($toolstatus ne '') {
 7881:         if ($toolstatus) {
 7882:             $access = 1;
 7883:         } else {
 7884:             $access = 0;
 7885:         }
 7886:         return $access;
 7887:     }
 7888: 
 7889:     my ($is_adv,%domdef);
 7890:     if (ref($is_advref) eq 'HASH') {
 7891:         $is_adv = $is_advref->{'is_adv'};
 7892:     } else {
 7893:         $is_adv = &is_advanced_user($udom,$uname);
 7894:     }
 7895:     if (ref($domdefref) eq 'HASH') {
 7896:         %domdef = %{$domdefref};
 7897:     } else {
 7898:         %domdef = &get_domain_defaults($udom);
 7899:     }
 7900:     if (ref($domdef{$tool}) eq 'HASH') {
 7901:         if ($is_adv) {
 7902:             if ($domdef{$tool}{'_LC_adv'} ne '') {
 7903:                 if ($domdef{$tool}{'_LC_adv'}) { 
 7904:                     $access = 1;
 7905:                 } else {
 7906:                     $access = 0;
 7907:                 }
 7908:                 return $access;
 7909:             }
 7910:         }
 7911:         if ($inststatus ne '') {
 7912:             my ($hasaccess,$hasnoaccess);
 7913:             foreach my $affiliation (split(/:/,$inststatus)) {
 7914:                 if ($domdef{$tool}{$affiliation} ne '') { 
 7915:                     if ($domdef{$tool}{$affiliation}) {
 7916:                         $hasaccess = 1;
 7917:                     } else {
 7918:                         $hasnoaccess = 1;
 7919:                     }
 7920:                 }
 7921:             }
 7922:             if ($hasaccess || $hasnoaccess) {
 7923:                 if ($hasaccess) {
 7924:                     $access = 1;
 7925:                 } elsif ($hasnoaccess) {
 7926:                     $access = 0; 
 7927:                 }
 7928:                 return $access;
 7929:             }
 7930:         } else {
 7931:             if ($domdef{$tool}{'default'} ne '') {
 7932:                 if ($domdef{$tool}{'default'}) {
 7933:                     $access = 1;
 7934:                 } elsif ($domdef{$tool}{'default'} == 0) {
 7935:                     $access = 0;
 7936:                 }
 7937:                 return $access;
 7938:             }
 7939:         }
 7940:     } else {
 7941:         if (($context eq 'tools') && ($tool ne 'webdav')) {
 7942:             $access = 1;
 7943:         } else {
 7944:             $access = 0;
 7945:         }
 7946:         return $access;
 7947:     }
 7948: }
 7949: 
 7950: sub is_course_owner {
 7951:     my ($cdom,$cnum,$udom,$uname) = @_;
 7952:     if (($udom eq '') || ($uname eq '')) {
 7953:         $udom = $env{'user.domain'};
 7954:         $uname = $env{'user.name'};
 7955:     }
 7956:     unless (($udom eq '') || ($uname eq '')) {
 7957:         if (exists($env{'course.'.$cdom.'_'.$cnum.'.internal.courseowner'})) {
 7958:             if ($env{'course.'.$cdom.'_'.$cnum.'.internal.courseowner'} eq $uname.':'.$udom) {
 7959:                 return 1;
 7960:             } else {
 7961:                 my %courseinfo = &Apache::lonnet::coursedescription($cdom.'/'.$cnum);
 7962:                 if ($courseinfo{'internal.courseowner'} eq $uname.':'.$udom) {
 7963:                     return 1;
 7964:                 }
 7965:             }
 7966:         }
 7967:     }
 7968:     return;
 7969: }
 7970: 
 7971: sub is_advanced_user {
 7972:     my ($udom,$uname) = @_;
 7973:     if ($udom ne '' && $uname ne '') {
 7974:         if (($udom eq $env{'user.domain'}) && ($uname eq $env{'user.name'})) {
 7975:             if (wantarray) {
 7976:                 return ($env{'user.adv'},$env{'user.author'});
 7977:             } else {
 7978:                 return $env{'user.adv'};
 7979:             }
 7980:         }
 7981:     }
 7982:     my %roleshash = &get_my_roles($uname,$udom,'userroles',undef,undef,undef,1);
 7983:     my %allroles;
 7984:     my ($is_adv,$is_author);
 7985:     foreach my $role (keys(%roleshash)) {
 7986:         my ($trest,$tdomain,$trole,$sec) = split(/:/,$role);
 7987:         my $area = '/'.$tdomain.'/'.$trest;
 7988:         if ($sec ne '') {
 7989:             $area .= '/'.$sec;
 7990:         }
 7991:         if (($area ne '') && ($trole ne '')) {
 7992:             my $spec=$trole.'.'.$area;
 7993:             if ($trole =~ /^cr\//) {
 7994:                 &custom_roleprivs(\%allroles,$trole,$tdomain,$trest,$spec,$area);
 7995:             } elsif ($trole ne 'gr') {
 7996:                 &standard_roleprivs(\%allroles,$trole,$tdomain,$spec,$trest,$area);
 7997:             }
 7998:             if ($trole eq 'au') {
 7999:                 $is_author = 1;
 8000:             }
 8001:         }
 8002:     }
 8003:     foreach my $role (keys(%allroles)) {
 8004:         last if ($is_adv);
 8005:         foreach my $item (split(/:/,$allroles{$role})) {
 8006:             if ($item ne '') {
 8007:                 my ($privilege,$restrictions)=split(/&/,$item);
 8008:                 if ($privilege eq 'adv') {
 8009:                     $is_adv = 1;
 8010:                     last;
 8011:                 }
 8012:             }
 8013:         }
 8014:     }
 8015:     if (wantarray) {
 8016:         return ($is_adv,$is_author);
 8017:     }
 8018:     return $is_adv;
 8019: }
 8020: 
 8021: sub check_can_request {
 8022:     my ($dom,$can_request,$request_domains,$uname,$udom) = @_;
 8023:     my $canreq = 0;
 8024:     if (($env{'user.name'} ne '') && ($env{'user.domain'} ne '')) {
 8025:         $uname = $env{'user.name'};
 8026:         $udom = $env{'user.domain'};
 8027:     }
 8028:     my ($types,$typename) = &Apache::loncommon::course_types();
 8029:     my @options = ('approval','validate','autolimit');
 8030:     my $optregex = join('|',@options);
 8031:     if ((ref($can_request) eq 'HASH') && (ref($types) eq 'ARRAY')) {
 8032:         foreach my $type (@{$types}) {
 8033:             if (&usertools_access($uname,$udom,$type,undef,
 8034:                                   'requestcourses')) {
 8035:                 $canreq ++;
 8036:                 if (ref($request_domains) eq 'HASH') {
 8037:                     push(@{$request_domains->{$type}},$udom);
 8038:                 }
 8039:                 if ($dom eq $udom) {
 8040:                     $can_request->{$type} = 1;
 8041:                 }
 8042:             }
 8043:             if (($env{'user.name'} ne '') && ($env{'user.domain'} ne '') &&
 8044:                 ($env{'environment.reqcrsotherdom.'.$type} ne '')) {
 8045:                 my @curr = split(',',$env{'environment.reqcrsotherdom.'.$type});
 8046:                 if (@curr > 0) {
 8047:                     foreach my $item (@curr) {
 8048:                         if (ref($request_domains) eq 'HASH') {
 8049:                             my ($otherdom) = ($item =~ /^($match_domain):($optregex)(=?\d*)$/);
 8050:                             if ($otherdom ne '') {
 8051:                                 if (ref($request_domains->{$type}) eq 'ARRAY') {
 8052:                                     unless (grep(/^\Q$otherdom\E$/,@{$request_domains->{$type}})) {
 8053:                                         push(@{$request_domains->{$type}},$otherdom);
 8054:                                     }
 8055:                                 } else {
 8056:                                     push(@{$request_domains->{$type}},$otherdom);
 8057:                                 }
 8058:                             }
 8059:                         }
 8060:                     }
 8061:                     unless ($dom eq $env{'user.domain'}) {
 8062:                         $canreq ++;
 8063:                         if (grep(/^\Q$dom\E:($optregex)(=?\d*)$/,@curr)) {
 8064:                             $can_request->{$type} = 1;
 8065:                         }
 8066:                     }
 8067:                 }
 8068:             }
 8069:         }
 8070:     }
 8071:     return $canreq;
 8072: }
 8073: 
 8074: # ---------------------------------------------- Custom access rule evaluation
 8075: 
 8076: sub customaccess {
 8077:     my ($priv,$uri)=@_;
 8078:     my ($urole,$urealm)=split(/\./,$env{'request.role'},2);
 8079:     my (undef,$udom,$ucrs,$usec)=split(/\//,$urealm);
 8080:     $udom = &LONCAPA::clean_domain($udom);
 8081:     $ucrs = &LONCAPA::clean_username($ucrs);
 8082:     my $access=0;
 8083:     foreach my $right (split(/\s*\,\s*/,&metadata($uri,'rule_rights'))) {
 8084: 	my ($effect,$realm,$role,$type)=split(/\:/,$right);
 8085: 	if ($type eq 'user') {
 8086: 	    foreach my $scope (split(/\s*\,\s*/,$realm)) {
 8087: 		my ($tdom,$tuname)=split(m{/},$scope);
 8088: 		if ($tdom) {
 8089: 		    if ($tdom ne $env{'user.domain'}) { next; }
 8090: 		}
 8091: 		if ($tuname) {
 8092: 		    if ($tuname ne $env{'user.name'}) { next; }
 8093: 		}
 8094: 		$access=($effect eq 'allow');
 8095: 		last;
 8096: 	    }
 8097: 	} else {
 8098: 	    if ($role) {
 8099: 		if ($role ne $urole) { next; }
 8100: 	    }
 8101: 	    foreach my $scope (split(/\s*\,\s*/,$realm)) {
 8102: 		my ($tdom,$tcrs,$tsec)=split(/\_/,$scope);
 8103: 		if ($tdom) {
 8104: 		    if ($tdom ne $udom) { next; }
 8105: 		}
 8106: 		if ($tcrs) {
 8107: 		    if ($tcrs ne $ucrs) { next; }
 8108: 		}
 8109: 		if ($tsec) {
 8110: 		    if ($tsec ne $usec) { next; }
 8111: 		}
 8112: 		$access=($effect eq 'allow');
 8113: 		last;
 8114: 	    }
 8115: 	    if ($realm eq '' && $role eq '') {
 8116: 		$access=($effect eq 'allow');
 8117: 	    }
 8118: 	}
 8119:     }
 8120:     return $access;
 8121: }
 8122: 
 8123: # ------------------------------------------------- Check for a user privilege
 8124: 
 8125: sub allowed {
 8126:     my ($priv,$uri,$symb,$role,$clientip,$noblockcheck,$ignorecache,$nodeeplinkcheck,$nodeeplinkout)=@_;
 8127:     my $ver_orguri=$uri;
 8128:     $uri=&deversion($uri);
 8129:     my $orguri=$uri;
 8130:     $uri=&declutter($uri);
 8131: 
 8132:     if ($priv eq 'evb') {
 8133: # Evade communication block restrictions for specified role in a course
 8134:         if ($env{'user.priv.'.$role} =~/evb\&([^\:]*)/) {
 8135:             return $1;
 8136:         } else {
 8137:             return;
 8138:         }
 8139:     }
 8140: 
 8141:     if (defined($env{'allowed.'.$priv})) { return $env{'allowed.'.$priv}; }
 8142: # Free bre access to adm and meta resources
 8143:     if (((($uri=~/^adm\//) && ($uri !~ m{/(?:smppg|bulletinboard|viewclasslist|aboutme|ext\.tool)$})) 
 8144: 	 || (($uri=~/\.meta$/) && ($uri!~m|^uploaded/|) )) 
 8145: 	&& ($priv eq 'bre')) {
 8146: 	return 'F';
 8147:     }
 8148: 
 8149: # Free bre access to user's own portfolio contents
 8150:     my ($space,$domain,$name,@dir)=split('/',$uri);
 8151:     if (($space=~/^(uploaded|editupload)$/) && ($env{'user.name'} eq $name) && 
 8152: 	($env{'user.domain'} eq $domain) && ('portfolio' eq $dir[0])) {
 8153:         my %setters;
 8154:         my ($startblock,$endblock) = 
 8155:             &Apache::loncommon::blockcheck(\%setters,'port');
 8156:         if ($startblock && $endblock) {
 8157:             return 'B';
 8158:         } else {
 8159:             return 'F';
 8160:         }
 8161:     }
 8162: 
 8163: # bre access to group portfolio for rgf priv in group, or mdg or vcg in course.
 8164:     if (($space=~/^(uploaded|editupload)$/) && ($dir[0] eq 'groups') 
 8165:          && ($dir[2] eq 'portfolio') && ($priv eq 'bre')) {
 8166:         if (exists($env{'request.course.id'})) {
 8167:             my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 8168:             my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 8169:             if (($domain eq $cdom) && ($name eq $cnum)) {
 8170:                 my $courseprivid=$env{'request.course.id'};
 8171:                 $courseprivid=~s/\_/\//;
 8172:                 if ($env{'user.priv.'.$env{'request.role'}.'./'.$courseprivid
 8173:                     .'/'.$dir[1]} =~/rgf\&([^\:]*)/) {
 8174:                     return $1; 
 8175:                 } else {
 8176:                     if ($env{'request.course.sec'}) {
 8177:                         $courseprivid.='/'.$env{'request.course.sec'};
 8178:                     }
 8179:                     if ($env{'user.priv.'.$env{'request.role'}.'./'.
 8180:                         $courseprivid} =~/(mdg|vcg)\&([^\:]*)/) {
 8181:                         return $2;
 8182:                     }
 8183:                 }
 8184:             }
 8185:         }
 8186:     }
 8187: 
 8188: # Free bre to public access
 8189: 
 8190:     if ($priv eq 'bre') {
 8191:         my $copyright;
 8192:         unless ($uri =~ /ext\.tool/) {
 8193:             $copyright=&metadata($uri,'copyright');
 8194:         }
 8195: 	if (($copyright eq 'public') && (!$env{'request.course.id'})) { 
 8196:            return 'F'; 
 8197:         }
 8198:         if ($copyright eq 'priv') {
 8199:             $uri=~/([^\/]+)\/([^\/]+)\//;
 8200: 	    unless (($env{'user.name'} eq $2) && ($env{'user.domain'} eq $1)) {
 8201: 		return '';
 8202:             }
 8203:         }
 8204:         if ($copyright eq 'domain') {
 8205:             $uri=~/([^\/]+)\/([^\/]+)\//;
 8206: 	    unless (($env{'user.domain'} eq $1) ||
 8207:                  ($env{'course.'.$env{'request.course.id'}.'.domain'} eq $1)) {
 8208: 		return '';
 8209:             }
 8210:         }
 8211:         if ($env{'request.role'}=~ /li\.\//) {
 8212:             # Library role, so allow browsing of resources in this domain.
 8213:             return 'F';
 8214:         }
 8215:         if ($copyright eq 'custom') {
 8216: 	    unless (&customaccess($priv,$uri)) { return ''; }
 8217:         }
 8218:     }
 8219:     # Domain coordinator is trying to create a course
 8220:     if (($priv eq 'ccc') && ($env{'request.role'} =~ /^dc\./)) {
 8221:         # uri is the requested domain in this case.
 8222:         # comparison to 'request.role.domain' shows if the user has selected
 8223:         # a role of dc for the domain in question.
 8224:         return 'F' if ($uri eq $env{'request.role.domain'});
 8225:     }
 8226: 
 8227:     my $thisallowed='';
 8228:     my $statecond=0;
 8229:     my $courseprivid='';
 8230: 
 8231:     my $ownaccess;
 8232:     # Community Coordinator or Assistant Co-author browsing resource space.
 8233:     if (($priv eq 'bro') && ($env{'user.author'})) {
 8234:         if ($uri eq '') {
 8235:             $ownaccess = 1;
 8236:         } else {
 8237:             if (($env{'user.domain'} ne '') && ($env{'user.name'} ne '')) {
 8238:                 my $udom = $env{'user.domain'};
 8239:                 my $uname = $env{'user.name'};
 8240:                 if ($uri =~ m{^\Q$udom\E/?$}) {
 8241:                     $ownaccess = 1;
 8242:                 } elsif ($uri =~ m{^\Q$udom\E/\Q$uname\E/?}) {
 8243:                     unless ($uri =~ m{\.\./}) {
 8244:                         $ownaccess = 1;
 8245:                     }
 8246:                 } elsif (($udom ne 'public') && ($uname ne 'public')) {
 8247:                     my $now = time;
 8248:                     if ($uri =~ m{^([^/]+)/?$}) {
 8249:                         my $adom = $1;
 8250:                         foreach my $key (keys(%env)) {
 8251:                             if ($key =~ m{^user\.role\.(ca|aa)/\Q$adom\E}) {
 8252:                                 my ($start,$end) = split(/\./,$env{$key});
 8253:                                 if (($now >= $start) && (!$end || $end > $now)) {
 8254:                                     $ownaccess = 1;
 8255:                                     last;
 8256:                                 }
 8257:                             }
 8258:                         }
 8259:                     } elsif ($uri =~ m{^([^/]+)/([^/]+)/?}) {
 8260:                         my $adom = $1;
 8261:                         my $aname = $2;
 8262:                         foreach my $role ('ca','aa') { 
 8263:                             if ($env{"user.role.$role./$adom/$aname"}) {
 8264:                                 my ($start,$end) =
 8265:                                     split(/\./,$env{"user.role.$role./$adom/$aname"});
 8266:                                 if (($now >= $start) && (!$end || $end > $now)) {
 8267:                                     $ownaccess = 1;
 8268:                                     last;
 8269:                                 }
 8270:                             }
 8271:                         }
 8272:                     }
 8273:                 }
 8274:             }
 8275:         }
 8276:     }
 8277: 
 8278: # Course
 8279: 
 8280:     if ($env{'user.priv.'.$env{'request.role'}.'./'}=~/\Q$priv\E\&([^\:]*)/) {
 8281:         unless (($priv eq 'bro') && (!$ownaccess)) {
 8282:             $thisallowed.=$1;
 8283:         }
 8284:     }
 8285: 
 8286: # Domain
 8287: 
 8288:     if ($env{'user.priv.'.$env{'request.role'}.'./'.(split(/\//,$uri))[0].'/'}
 8289:        =~/\Q$priv\E\&([^\:]*)/) {
 8290:         unless (($priv eq 'bro') && (!$ownaccess)) {
 8291:             $thisallowed.=$1;
 8292:         }
 8293:     }
 8294: 
 8295: # User who is not author or co-author might still be able to edit
 8296: # resource of an author in the domain (e.g., if Domain Coordinator).
 8297:     if (($priv eq 'eco') && ($thisallowed eq '') && ($env{'request.course.id'}) &&
 8298:         (&allowed('mdc',$env{'request.course.id'}))) {
 8299:         if ($env{"user.priv.cm./$uri/"}=~/\Q$priv\E\&([^\:]*)/) {
 8300:             $thisallowed.=$1;
 8301:         }
 8302:     }
 8303: 
 8304: # Course: uri itself is a course
 8305:     my $courseuri=$uri;
 8306:     $courseuri=~s/\_(\d)/\/$1/;
 8307:     $courseuri=~s/^([^\/])/\/$1/;
 8308: 
 8309:     if ($env{'user.priv.'.$env{'request.role'}.'.'.$courseuri}
 8310:        =~/\Q$priv\E\&([^\:]*)/) {
 8311:         if ($priv eq 'mip') {
 8312:             my $rem = $1;
 8313:             if (($uri ne '') && ($env{'request.course.id'} eq $uri) &&
 8314:                 ($env{'course.'.$env{'request.course.id'}.'.internal.courseowner'} eq $env{'user.name'}.':'.$env{'user.domain'})) {
 8315:                 my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 8316:                 if ($cdom ne '') {
 8317:                     my %passwdconf = &get_passwdconf($cdom);
 8318:                     if (ref($passwdconf{'crsownerchg'}) eq 'HASH') {
 8319:                         if (ref($passwdconf{'crsownerchg'}{'by'}) eq 'ARRAY') {
 8320:                             if (@{$passwdconf{'crsownerchg'}{'by'}}) {
 8321:                                 my @inststatuses = split(':',$env{'environment.inststatus'});
 8322:                                 unless (@inststatuses) {
 8323:                                     @inststatuses = ('default');
 8324:                                 }
 8325:                                 foreach my $status (@inststatuses) {
 8326:                                     if (grep(/^\Q$status\E$/,@{$passwdconf{'crsownerchg'}{'by'}})) {
 8327:                                         $thisallowed.=$rem;
 8328:                                     }
 8329:                                 }
 8330:                             }
 8331:                         }
 8332:                     }
 8333:                 }
 8334:             }
 8335:         } else {
 8336:             unless (($priv eq 'bro') && (!$ownaccess)) {
 8337:                 $thisallowed.=$1;
 8338:             }
 8339:         }
 8340:     }
 8341: 
 8342: # URI is an uploaded document for this course, default permissions don't matter
 8343: # not allowing 'edit' access (editupload) to uploaded course docs
 8344:     if (($priv eq 'bre') && ($uri=~m|^uploaded/|)) {
 8345: 	$thisallowed='';
 8346:         my ($match)=&is_on_map($uri);
 8347:         if ($match) {
 8348:             if ($env{'user.priv.'.$env{'request.role'}.'./'}
 8349:                   =~/\Q$priv\E\&([^\:]*)/) {
 8350:                 my $value = $1;
 8351:                 my $deeplinkblock;
 8352:                 unless ($nodeeplinkcheck) {
 8353:                     $deeplinkblock = &deeplink_check($priv,$symb,$uri);
 8354:                 }
 8355:                 if ($deeplinkblock) {
 8356:                     $thisallowed='D';
 8357:                 } elsif ($noblockcheck) {
 8358:                     $thisallowed.=$value;
 8359:                 } else {
 8360:                     my @blockers = &has_comm_blocking($priv,$symb,$uri,$ignorecache);
 8361:                     if (@blockers > 0) {
 8362:                         $thisallowed = 'B';
 8363:                     } else {
 8364:                         $thisallowed.=$value;
 8365:                     }
 8366:                 }
 8367:             }
 8368:         } else {
 8369:             my $refuri = $env{'httpref.'.$orguri} || $env{'httpref.'.$ver_orguri};
 8370:             if ($refuri) {
 8371:                 if ($refuri =~ m|^/adm/|) {
 8372:                     $thisallowed='F';
 8373:                 } else {
 8374:                     $refuri=&declutter($refuri);
 8375:                     my ($match) = &is_on_map($refuri);
 8376:                     if ($match) {
 8377:                         my $deeplinkblock;
 8378:                         unless ($nodeeplinkcheck) {
 8379:                             $deeplinkblock = &deeplink_check($priv,$symb,$refuri);
 8380:                         }
 8381:                         if ($deeplinkblock) {
 8382:                             $thisallowed='D';
 8383:                         } elsif ($noblockcheck) {
 8384:                             $thisallowed='F';
 8385:                         } else {
 8386:                             my @blockers = &has_comm_blocking($priv,'',$refuri,'',1);
 8387:                             if (@blockers > 0) {
 8388:                                 $thisallowed = 'B';
 8389:                             } else {
 8390:                                 $thisallowed='F';
 8391:                             }
 8392:                         }
 8393:                     }
 8394:                 }
 8395:             }
 8396:         }
 8397:     }
 8398: 
 8399:     if ($priv eq 'bre'
 8400: 	&& $thisallowed ne 'F' 
 8401: 	&& $thisallowed ne '2'
 8402: 	&& &is_portfolio_url($uri)) {
 8403: 	$thisallowed = &portfolio_access($uri,$clientip);
 8404:     }
 8405: 
 8406: # Full access at system, domain or course-wide level? Exit.
 8407:     if ($thisallowed=~/F/) {
 8408: 	return 'F';
 8409:     }
 8410: 
 8411: # If this is generating or modifying users, exit with special codes
 8412: 
 8413:     if (':csu:cdc:ccc:cin:cta:cep:ccr:cst:cad:cli:cau:cdg:cca:caa:'=~/\:\Q$priv\E\:/) {
 8414: 	if (($priv eq 'cca') || ($priv eq 'caa')) {
 8415: 	    my ($audom,$auname)=split('/',$uri);
 8416: # no author name given, so this just checks on the general right to make a co-author in this domain
 8417: 	    unless ($auname) { return $thisallowed; }
 8418: # an author name is given, so we are about to actually make a co-author for a certain account
 8419: 	    if (($auname ne $env{'user.name'} && $env{'request.role'} !~ /^dc\./) ||
 8420: 		(($audom ne $env{'user.domain'} && $env{'request.role'} !~ /^dc\./) &&
 8421: 		 ($audom ne $env{'request.role.domain'}))) { return ''; }
 8422: 	}
 8423: 	return $thisallowed;
 8424:     }
 8425: #
 8426: # Gathered so far: system, domain and course wide privileges
 8427: #
 8428: # Course: See if uri or referer is an individual resource that is part of 
 8429: # the course
 8430: 
 8431:     if ($env{'request.course.id'}) {
 8432: 
 8433: # If this is modifying password (internal auth) domains must match for user and user's role.
 8434: 
 8435:         if ($priv eq 'mip') {
 8436:             if ($env{'user.domain'} eq $env{'request.role.domain'}) {
 8437:                 return $thisallowed;
 8438:             } else {
 8439:                 return '';
 8440:             }
 8441:         }
 8442: 
 8443:        $courseprivid=$env{'request.course.id'};
 8444:        if ($env{'request.course.sec'}) {
 8445:           $courseprivid.='/'.$env{'request.course.sec'};
 8446:        }
 8447:        $courseprivid=~s/\_/\//;
 8448:        my $checkreferer=1;
 8449:        my ($match,$cond)=&is_on_map($uri);
 8450:        if ($match) {
 8451:            $statecond=$cond;
 8452:            if ($env{'user.priv.'.$env{'request.role'}.'./'.$courseprivid}
 8453:                =~/\Q$priv\E\&([^\:]*)/) {
 8454:                my $value = $1;
 8455:                if ($priv eq 'bre') {
 8456:                    my $deeplinkblock;
 8457:                    unless ($nodeeplinkcheck) {
 8458:                        $deeplinkblock = &deeplink_check($priv,$symb,$uri);
 8459:                    }
 8460:                    if ($deeplinkblock) {
 8461:                        $thisallowed = 'D';
 8462:                    } elsif ($noblockcheck) {
 8463:                        $thisallowed.=$value;
 8464:                    } else {
 8465:                        my @blockers = &has_comm_blocking($priv,$symb,$uri,$ignorecache);
 8466:                        if (@blockers > 0) {
 8467:                            $thisallowed = 'B';
 8468:                        } else {
 8469:                            $thisallowed.=$value;
 8470:                        }
 8471:                    }
 8472:                } else {
 8473:                    $thisallowed.=$value;
 8474:                }
 8475:                $checkreferer=0;
 8476:            }
 8477:        }
 8478: 
 8479:        if ($checkreferer) {
 8480: 	  my $refuri=$env{'httpref.'.$orguri};
 8481:             unless ($refuri) {
 8482:                 foreach my $key (keys(%env)) {
 8483: 		    if ($key=~/^httpref\..*\*/) {
 8484: 			my $pattern=$key;
 8485:                         $pattern=~s/^httpref\.\/res\///;
 8486:                         $pattern=~s/\*/\[\^\/\]\+/g;
 8487:                         $pattern=~s/\//\\\//g;
 8488:                         if ($orguri=~/$pattern/) {
 8489: 			    $refuri=$env{$key};
 8490:                         }
 8491:                     }
 8492:                 }
 8493:             }
 8494: 
 8495:          if ($refuri) { 
 8496: 	  $refuri=&declutter($refuri);
 8497:           my ($match,$cond)=&is_on_map($refuri);
 8498:             if ($match) {
 8499:               my $refstatecond=$cond;
 8500:               if ($env{'user.priv.'.$env{'request.role'}.'./'.$courseprivid}
 8501:                   =~/\Q$priv\E\&([^\:]*)/) {
 8502:                   my $value = $1;
 8503:                   if ($priv eq 'bre') {
 8504:                       my $deeplinkblock;
 8505:                       unless ($nodeeplinkcheck) {
 8506:                           $deeplinkblock = &deeplink_check($priv,$symb,$refuri);
 8507:                       }
 8508:                       if ($deeplinkblock) {
 8509:                           $thisallowed = 'D';
 8510:                       } elsif ($noblockcheck) {
 8511:                           $thisallowed.=$value;
 8512:                       } else {
 8513:                           my @blockers = &has_comm_blocking($priv,'',$refuri,'',1);
 8514:                           if (@blockers > 0) {
 8515:                               $thisallowed = 'B';
 8516:                           } else {
 8517:                               $thisallowed.=$value;
 8518:                           }
 8519:                       }
 8520:                   } else {
 8521:                       $thisallowed.=$value;
 8522:                   }
 8523:                   $uri=$refuri;
 8524:                   $statecond=$refstatecond;
 8525:               }
 8526:           }
 8527:         }
 8528:        }
 8529:    }
 8530: 
 8531: #
 8532: # Gathered now: all privileges that could apply, and condition number
 8533: # 
 8534: #
 8535: # Full or no access?
 8536: #
 8537: 
 8538:     if ($thisallowed=~/F/) {
 8539: 	return 'F';
 8540:     }
 8541: 
 8542:     unless ($thisallowed) {
 8543:         return '';
 8544:     }
 8545: 
 8546: # Restrictions exist, deal with them
 8547: #
 8548: #   C:according to course preferences
 8549: #   R:according to resource settings
 8550: #   L:unless locked
 8551: #   X:according to user session state
 8552: #
 8553: 
 8554: # Possibly locked functionality, check all courses
 8555: # In roles.tab, L (unless locked) available for bre, pch, plc, pac and sma.
 8556: # Locks might take effect only after 10 minutes cache expiration for other
 8557: # courses, and 2 minutes for current course, in which user has st or ta role
 8558: # which is neither expired nor a future role (unless current course).
 8559: 
 8560:     my ($needlockcheck,$now,$crsonly);
 8561:     if ($thisallowed=~/L/) {
 8562:         $now = time;
 8563:         if ($priv eq 'bre') {
 8564:             if ($uri ne '') {
 8565:                 if ($orguri =~ m{^/+res/}) {
 8566:                     if ($uri =~ m{^lib/templates/}) {
 8567:                         if ($env{'request.course.id'}) {
 8568:                             $crsonly = 1;
 8569:                             $needlockcheck = 1;
 8570:                         }
 8571:                     } else {
 8572:                         $needlockcheck = 1;
 8573:                     }
 8574:                 } elsif ($env{'request.course.id'}) {
 8575:                     my ($crsdom,$crsnum) = split('_',$env{'request.course.id'});
 8576:                     if (($uri =~ m{^(adm|uploaded|public)/$crsdom/$crsnum/}) ||
 8577:                         ($uri =~ m{^adm/$match_domain/$match_username/\d+/(smppg|bulletinboard)$})) {
 8578:                         $crsonly = 1;
 8579:                     }
 8580:                     $needlockcheck = 1;
 8581:                 }
 8582:             }
 8583:         } elsif (($priv eq 'pch') || ($priv eq 'plc') || ($priv eq 'pac') || ($priv eq 'sma')) {
 8584:             $needlockcheck = 1;
 8585:         }
 8586:     }
 8587:     if ($needlockcheck) {
 8588:         foreach my $envkey (keys(%env)) {
 8589:            if ($envkey=~/^user\.role\.(st|ta)\.([^\.]*)/) {
 8590:                my $courseid=$2;
 8591:                my $roleid=$1.'.'.$2;
 8592:                $courseid=~s/^\///;
 8593:                unless ($env{'request.role'} eq $roleid) {
 8594:                    my ($start,$end) = split(/\./,$env{$envkey});
 8595:                    next unless (($now >= $start) && (!$end || $end > $now));
 8596:                }
 8597:                my $expiretime=600;
 8598:                if ($env{'request.role'} eq $roleid) {
 8599: 		  $expiretime=120;
 8600:                }
 8601: 	       my ($cdom,$cnum,$csec)=split(/\//,$courseid);
 8602:                my $prefix='course.'.$cdom.'_'.$cnum.'.';
 8603:                if ((time-$env{$prefix.'last_cache'})>$expiretime) {
 8604: 		   &coursedescription($courseid,{'freshen_cache' => 1});
 8605:                }
 8606:                if (($env{$prefix.'res.'.$uri.'.lock.sections'}=~/\,\Q$csec\E\,/)
 8607:                 || ($env{$prefix.'res.'.$uri.'.lock.sections'} eq 'all')) {
 8608: 		   if ($env{$prefix.'res.'.$uri.'.lock.expire'}>time) {
 8609:                        &log($env{'user.domain'},$env{'user.name'},
 8610:                             $env{'user.home'},
 8611:                             'Locked by res: '.$priv.' for '.$uri.' due to '.
 8612:                             $cdom.'/'.$cnum.'/'.$csec.' expire '.
 8613:                             $env{$prefix.'priv.'.$priv.'.lock.expire'});
 8614: 		       return '';
 8615:                    }
 8616:                }
 8617:                if (($env{$prefix.'priv.'.$priv.'.lock.sections'}=~/\,\Q$csec\E\,/)
 8618:                 || ($env{$prefix.'priv.'.$priv.'.lock.sections'} eq 'all')) {
 8619: 		   if ($env{$prefix.'priv.'.$priv.'.lock.expire'}>time) {
 8620:                        &log($env{'user.domain'},$env{'user.name'},
 8621:                             $env{'user.home'},
 8622:                             'Locked by priv: '.$priv.' for '.$uri.' due to '.
 8623:                             $cdom.'/'.$cnum.'/'.$csec.' expire '.
 8624:                             $env{$prefix.'priv.'.$priv.'.lock.expire'});
 8625: 		       return '';
 8626:                    }
 8627:                }
 8628: 	   }
 8629:        }
 8630:     }
 8631: 
 8632: #
 8633: # Rest of the restrictions depend on selected course
 8634: #
 8635: 
 8636:     unless ($env{'request.course.id'}) {
 8637: 	if ($thisallowed eq 'A') {
 8638: 	    return 'A';
 8639:         } elsif ($thisallowed eq 'B') {
 8640:             return 'B';
 8641: 	} else {
 8642: 	    return '1';
 8643: 	}
 8644:     }
 8645: 
 8646: #
 8647: # Now user is definitely in a course
 8648: #
 8649: 
 8650: 
 8651: # Course preferences
 8652: 
 8653:    if ($thisallowed=~/C/) {
 8654:        my $rolecode=(split(/\./,$env{'request.role'}))[0];
 8655:        my $unamedom=$env{'user.name'}.':'.$env{'user.domain'};
 8656:        if ($env{'course.'.$env{'request.course.id'}.'.'.$priv.'.roles.denied'}
 8657: 	   =~/\Q$rolecode\E/) {
 8658: 	   if (($priv ne 'pch') && ($priv ne 'plc') && ($priv ne 'pac')) {
 8659: 	       &logthis($env{'user.domain'}.':'.$env{'user.name'}.':'.$env{'user.home'}.':'.
 8660: 			'Denied by role: '.$priv.' for '.$uri.' as '.$rolecode.' in '.
 8661: 			$env{'request.course.id'});
 8662: 	   }
 8663:            return '';
 8664:        }
 8665: 
 8666:        if ($env{'course.'.$env{'request.course.id'}.'.'.$priv.'.users.denied'}
 8667: 	   =~/\Q$unamedom\E/) {
 8668: 	   if (($priv ne 'pch') && ($priv ne 'plc') && ($priv ne 'pac')) {
 8669: 	       &logthis($env{'user.domain'}.':'.$env{'user.name'}.':'.$env{'user.home'}.
 8670: 			'Denied by user: '.$priv.' for '.$uri.' as '.$unamedom.' in '.
 8671: 			$env{'request.course.id'});
 8672: 	   }
 8673:            return '';
 8674:        }
 8675:    }
 8676: 
 8677: # Resource preferences
 8678: 
 8679:    if ($thisallowed=~/R/) {
 8680:        my $rolecode=(split(/\./,$env{'request.role'}))[0];
 8681:        if (&metadata($uri,'roledeny')=~/\Q$rolecode\E/) {
 8682: 	   if (($priv ne 'pch') && ($priv ne 'plc')) { 
 8683: 	       &logthis($env{'user.domain'}.':'.$env{'user.name'}.':'.$env{'user.home'}.':'.
 8684: 			'Denied by role: '.$priv.' for '.$uri.' as '.$rolecode);
 8685: 	   }
 8686: 	   return '';
 8687:        }
 8688:    }
 8689: 
 8690: # Restricted for deeplinked session?
 8691: 
 8692:     if ($env{'request.deeplink.login'}) {
 8693:         if ($env{'acc.deeplinkout'} && !$nodeeplinkout) {
 8694:             if (!$symb) { $symb=&symbread($uri,1); }
 8695:             if (($symb) && ($env{'acc.deeplinkout'}=~/\&\Q$symb\E\&/)) {
 8696:                 return '';
 8697:             }
 8698:         }
 8699:     }
 8700: 
 8701: # Restricted by state or randomout?
 8702: 
 8703:    if ($thisallowed=~/X/) {
 8704:       if ($env{'acc.randomout'}) {
 8705: 	 if (!$symb) { $symb=&symbread($uri,1); }
 8706:          if (($symb) && ($env{'acc.randomout'}=~/\&\Q$symb\E\&/)) { 
 8707:             return ''; 
 8708:          }
 8709:       }
 8710:       if (&condval($statecond)) {
 8711: 	 return '2';
 8712:       } else {
 8713:          return '';
 8714:       }
 8715:    }
 8716: 
 8717:     if ($thisallowed eq 'A') {
 8718: 	return 'A';
 8719:     } elsif ($thisallowed eq 'B') {
 8720:         return 'B';
 8721:     } elsif ($thisallowed eq 'D') {
 8722:         return 'D';
 8723:     }
 8724:    return 'F';
 8725: }
 8726: 
 8727: # ------------------------------------------- Check construction space access
 8728: 
 8729: sub constructaccess {
 8730:     my ($url,$setpriv)=@_;
 8731: 
 8732: # We do not allow editing of previous versions of files
 8733:     if ($url=~/\.(\d+)\.(\w+)$/) { return ''; }
 8734: 
 8735: # Get username and domain from URL
 8736:     my ($ownername,$ownerdomain,$ownerhome);
 8737: 
 8738:     ($ownerdomain,$ownername) =
 8739:         ($url=~ m{^(?:\Q$perlvar{'lonDocRoot'}\E|)(?:/daxepage|/daxeopen)?/priv/($match_domain)/($match_username)(?:/|$)});
 8740: 
 8741: # The URL does not really point to any authorspace, forget it
 8742:     unless (($ownername) && ($ownerdomain)) { return ''; }
 8743: 
 8744: # Now we need to see if the user has access to the authorspace of
 8745: # $ownername at $ownerdomain
 8746: 
 8747:     if (($ownername eq $env{'user.name'}) && ($ownerdomain eq $env{'user.domain'})) {
 8748: # Real author for this?
 8749:        $ownerhome = $env{'user.home'};
 8750:        if (exists($env{'user.priv.au./'.$ownerdomain.'/./'})) {
 8751:           return ($ownername,$ownerdomain,$ownerhome);
 8752:        }
 8753:     } else {
 8754: # Co-author for this?
 8755:         if (exists($env{'user.priv.ca./'.$ownerdomain.'/'.$ownername.'./'}) ||
 8756:             exists($env{'user.priv.aa./'.$ownerdomain.'/'.$ownername.'./'}) ) {
 8757:             $ownerhome = &homeserver($ownername,$ownerdomain);
 8758:             return ($ownername,$ownerdomain,$ownerhome);
 8759:         }
 8760:         if ($env{'request.course.id'}) {
 8761:             if (($ownername eq $env{'course.'.$env{'request.course.id'}.'.num'}) &&
 8762:                 ($ownerdomain eq $env{'course.'.$env{'request.course.id'}.'.domain'})) {
 8763:                 if (&allowed('mdc',$env{'request.course.id'})) {
 8764:                     $ownerhome = $env{'course.'.$env{'request.course.id'}.'.home'};
 8765:                     return ($ownername,$ownerdomain,$ownerhome);
 8766:                 }
 8767:             }
 8768:         }
 8769:     }
 8770: 
 8771: # We don't have any access right now. If we are not possibly going to do anything about this,
 8772: # we might as well leave
 8773:    unless ($setpriv) { return ''; }
 8774: 
 8775: # Backdoor access?
 8776:     my $allowed=&allowed('eco',$ownerdomain);
 8777: # Nope
 8778:     unless ($allowed) { return ''; }
 8779: # Looks like we may have access, but could be locked by the owner of the construction space
 8780:     if ($allowed eq 'U') {
 8781:         my %blocked=&get('environment',['domcoord.author'],
 8782:                          $ownerdomain,$ownername);
 8783: # Is blocked by owner
 8784:         if ($blocked{'domcoord.author'} eq 'blocked') { return ''; }
 8785:     }
 8786:     if (($allowed eq 'F') || ($allowed eq 'U')) {
 8787: # Grant temporary access
 8788:         my $then=$env{'user.login.time'};
 8789:         my $update=$env{'user.update.time'};
 8790:         if (!$update) { $update = $then; }
 8791:         my $refresh=$env{'user.refresh.time'};
 8792:         if (!$refresh) { $refresh = $update; }
 8793:         my $now = time;
 8794:         &check_adhoc_privs($ownerdomain,$ownername,$update,$refresh,
 8795:                            $now,'ca','constructaccess');
 8796:         $ownerhome = &homeserver($ownername,$ownerdomain);
 8797:         return($ownername,$ownerdomain,$ownerhome);
 8798:     }
 8799: # No business here
 8800:     return '';
 8801: }
 8802: 
 8803: # ----------------------------------------------------------- Content Blocking
 8804: 
 8805: {
 8806: # Caches for faster Course Contents display where content blocking
 8807: # is in operation (i.e., interval param set) for timed quiz.
 8808: #
 8809: # User for whom data are being temporarily cached.
 8810: my $cacheduser='';
 8811: # Course for which data are being temporarily cached.
 8812: my $cachedcid='';
 8813: # Cached blockers for this user (a hash of blocking items). 
 8814: my %cachedblockers=();
 8815: # When the data were last cached.
 8816: my $cachedlast='';
 8817: 
 8818: sub load_all_blockers {
 8819:     my ($uname,$udom)=@_;
 8820:     if (($uname ne '') && ($udom ne '')) { 
 8821:         if (($cacheduser eq $uname.':'.$udom) &&
 8822:             ($cachedcid eq $env{'request.course.id'}) &&
 8823:             (abs($cachedlast-time)<5)) {
 8824:             return;
 8825:         }
 8826:     }
 8827:     $cachedlast=time;
 8828:     $cacheduser=$uname.':'.$udom;
 8829:     $cachedcid=$env{'request.course.id'};
 8830:     %cachedblockers = &get_commblock_resources();
 8831:     return;
 8832: }
 8833: 
 8834: sub get_comm_blocks {
 8835:     my ($cdom,$cnum) = @_;
 8836:     if ($cdom eq '' || $cnum eq '') {
 8837:         return unless ($env{'request.course.id'});
 8838:         $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 8839:         $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 8840:     }
 8841:     my %commblocks;
 8842:     my $hashid=$cdom.'_'.$cnum;
 8843:     my ($blocksref,$cached)=&is_cached_new('comm_block',$hashid);
 8844:     if ((defined($cached)) && (ref($blocksref) eq 'HASH')) {
 8845:         %commblocks = %{$blocksref};
 8846:     } else {
 8847:         %commblocks = &Apache::lonnet::dump('comm_block',$cdom,$cnum);
 8848:         my $cachetime = 600;
 8849:         &do_cache_new('comm_block',$hashid,\%commblocks,$cachetime);
 8850:     }
 8851:     return %commblocks;
 8852: }
 8853: 
 8854: sub get_commblock_resources {
 8855:     my ($blocks) = @_;
 8856:     my %blockers = ();
 8857:     return %blockers unless ($env{'request.course.id'});
 8858:     my $courseurl = &courseid_to_courseurl($env{'request.course.id'});
 8859:     if ($env{'request.course.sec'}) {
 8860:         $courseurl .= '/'.$env{'request.course.sec'};
 8861:     }
 8862:     return %blockers if ($env{'user.priv.'.$env{'request.role'}.'.'.$courseurl} =~/evb\&([^\:]*)/);
 8863:     my %commblocks;
 8864:     if (ref($blocks) eq 'HASH') {
 8865:         %commblocks = %{$blocks};
 8866:     } else {
 8867:         %commblocks = &get_comm_blocks();
 8868:     }
 8869:     return %blockers unless (keys(%commblocks) > 0); 
 8870:     my $navmap = Apache::lonnavmaps::navmap->new();
 8871:     return %blockers unless (ref($navmap));
 8872:     my $now = time;
 8873:     foreach my $block (keys(%commblocks)) {
 8874:         if ($block =~ /^(\d+)____(\d+)$/) {
 8875:             my ($start,$end) = ($1,$2);
 8876:             if ($start <= $now && $end >= $now) {
 8877:                 if (ref($commblocks{$block}{'blocks'}) eq 'HASH') {
 8878:                     if (ref($commblocks{$block}{'blocks'}{'docs'}) eq 'HASH') {
 8879:                         if (ref($commblocks{$block}{'blocks'}{'docs'}{'maps'}) eq 'HASH') {
 8880:                             if (keys(%{$commblocks{$block}{'blocks'}{'docs'}{'maps'}})) {
 8881:                                 $blockers{$block}{maps} = $commblocks{$block}{'blocks'}{'docs'}{'maps'}; 
 8882:                             }
 8883:                         }
 8884:                         if (ref($commblocks{$block}{'blocks'}{'docs'}{'resources'}) eq 'HASH') {
 8885:                             if (keys(%{$commblocks{$block}{'blocks'}{'docs'}{'resources'}})) {
 8886:                                 $blockers{$block}{'resources'} = $commblocks{$block}{'blocks'}{'docs'}{'resources'};
 8887:                             }
 8888:                         }
 8889:                     }
 8890:                 }
 8891:             }
 8892:         } elsif ($block =~ /^firstaccess____(.+)$/) {
 8893:             my $item = $1;
 8894:             if (ref($commblocks{$block}{'blocks'}) eq 'HASH') {
 8895:                 if (ref($commblocks{$block}{'blocks'}{'docs'}) eq 'HASH') {
 8896:                     my (@interval,$mapname);
 8897:                     my $type = 'map';
 8898:                     if ($item eq 'course') {
 8899:                         $type = 'course';
 8900:                         @interval=&EXT("resource.0.interval");
 8901:                     } else {
 8902:                         if ($item =~ /___\d+___/) {
 8903:                             $type = 'resource';
 8904:                             @interval=&EXT("resource.0.interval",$item);
 8905:                         } else {
 8906:                             $mapname = &deversion($item);
 8907:                             if (ref($navmap)) {
 8908:                                 my $timelimit = $navmap->get_mapparam(undef,$mapname,'0.interval');
 8909:                                 @interval = ($timelimit,'map');
 8910:                             }
 8911:                         }
 8912:                     }
 8913:                     if ($interval[0] =~ /^(\d+)/) {
 8914:                         my $timelimit = $1; 
 8915:                         my $first_access;
 8916:                         if ($type eq 'resource') {
 8917:                             $first_access=&get_first_access($interval[1],$item);
 8918:                         } elsif ($type eq 'map') {
 8919:                             $first_access=&get_first_access($interval[1],undef,$item);
 8920:                         } else {
 8921:                             $first_access=&get_first_access($interval[1]);
 8922:                         }
 8923:                         if ($first_access) {
 8924:                             my $timesup = $first_access+$timelimit;
 8925:                             if ($timesup > $now) {
 8926:                                 my $activeblock;
 8927:                                 if ($type eq 'resource') {
 8928:                                     if (ref($navmap)) {
 8929:                                         my $res = $navmap->getBySymb($item);
 8930:                                         if ($res->answerable()) {
 8931:                                             $activeblock = 1;
 8932:                                         }
 8933:                                     }
 8934:                                 } elsif ($type eq 'map') {
 8935:                                     my $mapsymb = &symbread($mapname,1);
 8936:                                     if (($mapsymb) && (ref($navmap))) {
 8937:                                         my $mapres = $navmap->getBySymb($mapsymb);
 8938:                                         if (ref($mapres)) {
 8939:                                             my $first = $mapres->map_start();
 8940:                                             my $finish = $mapres->map_finish();
 8941:                                             my $it = $navmap->getIterator($first,$finish,undef,0,0);
 8942:                                             if (ref($it)) {
 8943:                                                 my $res;
 8944:                                                 while ($res = $it->next(undef,1)) {
 8945:                                                     next unless (ref($res));
 8946:                                                     my $symb = $res->symb();
 8947:                                                     next if (($symb eq $mapsymb) || ($symb eq ''));
 8948:                                                     @interval=&EXT("resource.0.interval",$symb);
 8949:                                                     if ($interval[1] eq 'map') {
 8950:                                                         if ($res->answerable()) {
 8951:                                                             $activeblock = 1;
 8952:                                                             last;
 8953:                                                         }
 8954:                                                     }
 8955:                                                 }
 8956:                                             }
 8957:                                         }
 8958:                                     }
 8959:                                 }
 8960:                                 if ($activeblock) {
 8961:                                     if (ref($commblocks{$block}{'blocks'}{'docs'}{'maps'}) eq 'HASH') {
 8962:                                          if (keys(%{$commblocks{$block}{'blocks'}{'docs'}{'maps'}})) {
 8963:                                              $blockers{$block}{'maps'} = $commblocks{$block}{'blocks'}{'docs'}{'maps'};
 8964:                                          }
 8965:                                     }
 8966:                                     if (ref($commblocks{$block}{'blocks'}{'docs'}{'resources'}) eq 'HASH') {
 8967:                                         if (keys(%{$commblocks{$block}{'blocks'}{'docs'}{'resources'}})) {
 8968:                                             $blockers{$block}{'resources'} = $commblocks{$block}{'blocks'}{'docs'}{'resources'};
 8969:                                         }
 8970:                                     }
 8971:                                 }
 8972:                             }
 8973:                         }
 8974:                     }
 8975:                 }
 8976:             }
 8977:         }
 8978:     }
 8979:     return %blockers;
 8980: }
 8981: 
 8982: sub has_comm_blocking {
 8983:     my ($priv,$symb,$uri,$ignoresymbdb,$noenccheck,$blocked,$blocks) = @_;
 8984:     my @blockers;
 8985:     return unless ($env{'request.course.id'});
 8986:     return unless ($priv eq 'bre');
 8987:     return if ($env{'request.state'} eq 'construct');
 8988:     my $courseurl = &courseid_to_courseurl($env{'request.course.id'});
 8989:     if ($env{'request.course.sec'}) {
 8990:         $courseurl .= '/'.$env{'request.course.sec'};
 8991:     }
 8992:     return if ($env{'user.priv.'.$env{'request.role'}.'.'.$courseurl} =~/evb\&([^\:]*)/);
 8993:     my %blockinfo;
 8994:     if (ref($blocks) eq 'HASH') {
 8995:         %blockinfo = &get_commblock_resources($blocks);
 8996:     } else {
 8997:         &load_all_blockers($env{'user.name'},$env{'user.domain'});
 8998:         %blockinfo = %cachedblockers;
 8999:     }
 9000:     return unless (keys(%blockinfo) > 0);
 9001:     my (%possibles,@symbs);
 9002:     if (!$symb) {
 9003:         $symb = &symbread($uri,1,1,1,\%possibles,$ignoresymbdb,$noenccheck);
 9004:     }
 9005:     if ($symb) {
 9006:         @symbs = ($symb);
 9007:     } elsif (keys(%possibles)) { 
 9008:         @symbs = keys(%possibles);
 9009:     }
 9010:     my $noblock;
 9011:     foreach my $symb (@symbs) {
 9012:         last if ($noblock);
 9013:         my ($map,$resid,$resurl)=&decode_symb($symb);
 9014:         foreach my $block (keys(%blockinfo)) {
 9015:             if ($block =~ /^firstaccess____(.+)$/) {
 9016:                 my $item = $1;
 9017:                 unless ($blocked) {
 9018:                     if (($item eq $map) || ($item eq $symb)) {
 9019:                         $noblock = 1;
 9020:                         last;
 9021:                     }
 9022:                 }
 9023:             }
 9024:             if (ref($blockinfo{$block}) eq 'HASH') {
 9025:                 if (ref($blockinfo{$block}{'resources'}) eq 'HASH') {
 9026:                     if ($blockinfo{$block}{'resources'}{$symb}) {
 9027:                         unless (grep(/^\Q$block\E$/,@blockers)) {
 9028:                             push(@blockers,$block);
 9029:                         }
 9030:                     }
 9031:                 }
 9032:                 if (ref($blockinfo{$block}{'maps'}) eq 'HASH') {
 9033:                     if ($blockinfo{$block}{'maps'}{$map}) {
 9034:                         unless (grep(/^\Q$block\E$/,@blockers)) {
 9035:                             push(@blockers,$block);
 9036:                         }
 9037:                     }
 9038:                 }
 9039:             }
 9040:         }
 9041:     }
 9042:     unless ($noblock) { 
 9043:         return @blockers;
 9044:     }
 9045:     return;
 9046: }
 9047: }
 9048: 
 9049: sub deeplink_check {
 9050:     my ($priv,$symb,$uri) = @_;
 9051:     return unless ($env{'request.course.id'});
 9052:     return unless ($priv eq 'bre');
 9053:     return if ($env{'request.state'} eq 'construct');
 9054:     return if ($env{'request.role.adv'});
 9055:     my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
 9056:     my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
 9057:     my (%possibles,@symbs);
 9058:     if (!$symb) {
 9059:         $symb = &symbread($uri,1,1,1,\%possibles);
 9060:     }
 9061:     if ($symb) {
 9062:         @symbs = ($symb);
 9063:     } elsif (keys(%possibles)) {
 9064:         @symbs = keys(%possibles);
 9065:     }
 9066: 
 9067:     my ($deeplink_symb,$allow);
 9068:     if ($env{'request.deeplink.login'}) {
 9069:         $deeplink_symb = &Apache::loncommon::deeplink_login_symb($cnum,$cdom);
 9070:     }
 9071:     foreach my $symb (@symbs) {
 9072:         last if ($allow);
 9073:         my $deeplink = &EXT("resource.0.deeplink",$symb);
 9074:         if ($deeplink eq '') {
 9075:             $allow = 1;
 9076:         } else {
 9077:             my ($state,$others,$listed,$scope,$protect) = split(/,/,$deeplink);
 9078:             if ($state ne 'only') {
 9079:                 $allow = 1;
 9080:             } else {
 9081:                 my $check_deeplink_entry;
 9082:                 if ($protect ne 'none') {
 9083:                     my ($acctype,$item) = split(/:/,$protect);
 9084:                     if (($acctype eq 'ltic') && ($env{'user.linkprotector'})) {
 9085:                         if (grep(/^\Q$item\Ec$/,split(/,/,$env{'user.linkprotector'}))) {
 9086:                             $check_deeplink_entry = 1
 9087:                         }
 9088:                     } elsif (($acctype eq 'ltid') && ($env{'user.linkprotector'})) {
 9089:                         if (grep(/^\Q$item\Ed$/,split(/,/,$env{'user.linkprotector'}))) {
 9090:                             $check_deeplink_entry = 1;
 9091:                         }
 9092:                     } elsif (($acctype eq 'key') && ($env{'user.deeplinkkey'})) {
 9093:                         if (grep(/^\Q$item\E$/,split(/,/,$env{'user.deeplinkkey'}))) {
 9094:                             $check_deeplink_entry = 1;
 9095:                         }
 9096:                     }
 9097:                 }
 9098:                 if (($protect eq 'none') || ($check_deeplink_entry)) {
 9099:                     if ($scope eq 'res') {
 9100:                         if ($symb eq $deeplink_symb) {
 9101:                             $allow = 1;
 9102:                         }
 9103:                     } elsif (($scope eq 'map') || ($scope eq 'rec')) {
 9104:                         my ($map_from_symb,$map_from_login);
 9105:                         $map_from_symb = &deversion((&decode_symb($symb))[0]);
 9106:                         if ($deeplink_symb =~ /\.(page|sequence)$/) {
 9107:                             $map_from_login = &deversion((&decode_symb($deeplink_symb))[2]);
 9108:                         } else {
 9109:                             $map_from_login = &deversion((&decode_symb($deeplink_symb))[0]);
 9110:                         }
 9111:                         if (($map_from_symb) && ($map_from_login)) {
 9112:                             if ($map_from_symb eq $map_from_login) {
 9113:                                 $allow = 1;
 9114:                             } elsif ($scope eq 'rec') {
 9115:                                 my @recurseup = &get_map_hierarchy($map_from_symb,$env{'request.course.id'});
 9116:                                 if (grep(/^\Q$map_from_login\E$/,@recurseup)) {
 9117:                                     $allow = 1;
 9118:                                 }
 9119:                             }
 9120:                         }
 9121:                     }
 9122:                 }
 9123:             }
 9124:         }
 9125:     }
 9126:     return if ($allow);
 9127:     return 1;
 9128: }
 9129: 
 9130: # -------------------------------- Deversion and split uri into path an filename   
 9131: 
 9132: #
 9133: #   Removes the version from a URI and
 9134: #   splits it in to its filename and path to the filename.
 9135: #   Seems like File::Basename could have done this more clearly.
 9136: #   Parameters:
 9137: #      $uri   - input URI
 9138: #   Returns:
 9139: #     Two element list consisting of 
 9140: #     $pathname  - the URI up to and excluding the trailing /
 9141: #     $filename  - The part of the URI following the last /
 9142: #  NOTE:
 9143: #    Another realization of this is simply:
 9144: #    use File::Basename;
 9145: #    ...
 9146: #    $uri = shift;
 9147: #    $filename = basename($uri);
 9148: #    $path     = dirname($uri);
 9149: #    return ($filename, $path);
 9150: #
 9151: #     The implementation below is probably faster however.
 9152: #
 9153: sub split_uri_for_cond {
 9154:     my $uri=&deversion(&declutter(shift));
 9155:     my @uriparts=split(/\//,$uri);
 9156:     my $filename=pop(@uriparts);
 9157:     my $pathname=join('/',@uriparts);
 9158:     return ($pathname,$filename);
 9159: }
 9160: # --------------------------------------------------- Is a resource on the map?
 9161: 
 9162: sub is_on_map {
 9163:     my ($pathname,$filename) = &split_uri_for_cond(shift);
 9164:     #Trying to find the conditional for the file
 9165:     my $match=($env{'acc.res.'.$env{'request.course.id'}.'.'.$pathname}=~
 9166: 	       /\&\Q$filename\E\:([\d\|]+)\&/);
 9167:     if ($match) {
 9168: 	return (1,$1);
 9169:     } else {
 9170: 	return (0,0);
 9171:     }
 9172: }
 9173: 
 9174: # --------------------------------------------------------- Get symb from alias
 9175: 
 9176: sub get_symb_from_alias {
 9177:     my $symb=shift;
 9178:     my ($map,$resid,$url)=&decode_symb($symb);
 9179: # Already is a symb
 9180:     if ($url) { return $symb; }
 9181: # Must be an alias
 9182:     my $aliassymb='';
 9183:     my %bighash;
 9184:     if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
 9185:                             &GDBM_READER(),0640)) {
 9186:         my $rid=$bighash{'mapalias_'.$symb};
 9187: 	if ($rid) {
 9188: 	    my ($mapid,$resid)=split(/\./,$rid);
 9189: 	    $aliassymb=&encode_symb($bighash{'map_id_'.$mapid},
 9190: 				    $resid,$bighash{'src_'.$rid});
 9191: 	}
 9192:         untie %bighash;
 9193:     }
 9194:     return $aliassymb;
 9195: }
 9196: 
 9197: # ----------------------------------------------------------------- Define Role
 9198: 
 9199: sub definerole {
 9200:   if (allowed('mcr','/')) {
 9201:     my ($rolename,$sysrole,$domrole,$courole,$uname,$udom)=@_;
 9202:     foreach my $role (split(':',$sysrole)) {
 9203: 	my ($crole,$cqual)=split(/\&/,$role);
 9204:         if ($pr{'cr:s'}!~/\Q$crole\E/) { return "refused:s:$crole"; }
 9205:         if ($pr{'cr:s'}=~/\Q$crole\E\&/) {
 9206: 	    if ($pr{'cr:s'}!~/\Q$crole\E\&\w*\Q$cqual\E/) { 
 9207:                return "refused:s:$crole&$cqual"; 
 9208:             }
 9209:         }
 9210:     }
 9211:     foreach my $role (split(':',$domrole)) {
 9212: 	my ($crole,$cqual)=split(/\&/,$role);
 9213:         if ($pr{'cr:d'}!~/\Q$crole\E/) { return "refused:d:$crole"; }
 9214:         if ($pr{'cr:d'}=~/\Q$crole\E\&/) {
 9215: 	    if ($pr{'cr:d'}!~/\Q$crole\W\&\w*\Q$cqual\E/) { 
 9216:                return "refused:d:$crole&$cqual"; 
 9217:             }
 9218:         }
 9219:     }
 9220:     foreach my $role (split(':',$courole)) {
 9221: 	my ($crole,$cqual)=split(/\&/,$role);
 9222:         if ($pr{'cr:c'}!~/\Q$crole\E/) { return "refused:c:$crole"; }
 9223:         if ($pr{'cr:c'}=~/\Q$crole\E\&/) {
 9224: 	    if ($pr{'cr:c'}!~/\Q$crole\E\&\w*\Q$cqual\E/) { 
 9225:                return "refused:c:$crole&$cqual"; 
 9226:             }
 9227:         }
 9228:     }
 9229:     my $uhome;
 9230:     if (($uname ne '') && ($udom ne '')) {
 9231:         $uhome = &homeserver($uname,$udom);
 9232:         return $uhome if ($uhome eq 'no_host');
 9233:     } else {
 9234:         $uname = $env{'user.name'};
 9235:         $udom = $env{'user.domain'};
 9236:         $uhome = $env{'user.home'};
 9237:     }
 9238:     my $command="encrypt:rolesput:$env{'user.domain'}:$env{'user.name'}:".
 9239:                 "$udom:$uname:rolesdef_$rolename=".
 9240:                 escape($sysrole.'_'.$domrole.'_'.$courole);
 9241:     return reply($command,$uhome);
 9242:   } else {
 9243:     return 'refused';
 9244:   }
 9245: }
 9246: 
 9247: # ---------------- Make a metadata query against the network of library servers
 9248: 
 9249: sub metadata_query {
 9250:     my ($query,$custom,$customshow,$server_array,$domains_hash)=@_;
 9251:     my %rhash;
 9252:     my %libserv = &all_library();
 9253:     my @server_list = (defined($server_array) ? @$server_array
 9254:                                               : keys(%libserv) );
 9255:     for my $server (@server_list) {
 9256:         my $domains = ''; 
 9257:         if (ref($domains_hash) eq 'HASH') {
 9258:             $domains = $domains_hash->{$server}; 
 9259:         }
 9260: 	unless ($custom or $customshow) {
 9261: 	    my $reply=&reply("querysend:".&escape($query).':::'.&escape($domains),$server);
 9262: 	    $rhash{$server}=$reply;
 9263: 	}
 9264: 	else {
 9265: 	    my $reply=&reply("querysend:".&escape($query).':'.
 9266: 			     &escape($custom).':'.&escape($customshow).':'.&escape($domains),
 9267: 			     $server);
 9268: 	    $rhash{$server}=$reply;
 9269: 	}
 9270:     }
 9271:     return \%rhash;
 9272: }
 9273: 
 9274: # ----------------------------------------- Send log queries and wait for reply
 9275: 
 9276: sub log_query {
 9277:     my ($uname,$udom,$query,%filters)=@_;
 9278:     my $uhome=&homeserver($uname,$udom);
 9279:     if ($uhome eq 'no_host') { return 'error: no_host'; }
 9280:     my $uhost=&hostname($uhome);
 9281:     my $command=&escape(join(':',map{$_.'='.$filters{$_}} keys(%filters)));
 9282:     my $queryid=&reply("querysend:".$query.':'.$udom.':'.$uname.':'.$command,
 9283:                        $uhome);
 9284:     unless ($queryid=~/^\Q$uhost\E\_/) { return 'error: '.$queryid; }
 9285:     return get_query_reply($queryid);
 9286: }
 9287: 
 9288: # -------------------------- Update MySQL table for portfolio file
 9289: 
 9290: sub update_portfolio_table {
 9291:     my ($uname,$udom,$file_name,$query,$group,$action) = @_;
 9292:     if ($group ne '') {
 9293:         $file_name =~s /^\Q$group\E//;
 9294:     }
 9295:     my $homeserver = &homeserver($uname,$udom);
 9296:     my $queryid=
 9297:         &reply("querysend:".$query.':'.&escape($uname.':'.$udom.':'.$group).
 9298:                ':'.&escape($file_name).':'.$action,$homeserver);
 9299:     my $reply = &get_query_reply($queryid);
 9300:     return $reply;
 9301: }
 9302: 
 9303: # -------------------------- Update MySQL allusers table
 9304: 
 9305: sub update_allusers_table {
 9306:     my ($uname,$udom,$names) = @_;
 9307:     my $homeserver = &homeserver($uname,$udom);
 9308:     my $queryid=
 9309:         &reply('querysend:allusers:'.&escape($uname).':'.&escape($udom).':'.
 9310:                'lastname='.&escape($names->{'lastname'}).'%%'.
 9311:                'firstname='.&escape($names->{'firstname'}).'%%'.
 9312:                'middlename='.&escape($names->{'middlename'}).'%%'.
 9313:                'generation='.&escape($names->{'generation'}).'%%'.
 9314:                'permanentemail='.&escape($names->{'permanentemail'}).'%%'.
 9315:                'id='.&escape($names->{'id'}),$homeserver);
 9316:     return;
 9317: }
 9318: 
 9319: # ------- Request retrieval of institutional classlists for course(s)
 9320: 
 9321: sub fetch_enrollment_query {
 9322:     my ($context,$affiliatesref,$replyref,$dom,$cnum) = @_;
 9323:     my ($homeserver,$sleep,$loopmax);
 9324:     my $maxtries = 1;
 9325:     if ($context eq 'automated') {
 9326:         $homeserver = $perlvar{'lonHostID'};
 9327:         $sleep = 2;
 9328:         $loopmax = 100;
 9329:         $maxtries = 10; # will wait for up to 2000s for retrieval of classlist data before timeout
 9330:     } else {
 9331:         $homeserver = &homeserver($cnum,$dom);
 9332:     }
 9333:     my $host=&hostname($homeserver);
 9334:     my $cmd = '';
 9335:     foreach my $affiliate (keys(%{$affiliatesref})) {
 9336:         $cmd .= $affiliate.'='.join(",",@{$$affiliatesref{$affiliate}}).'%%';
 9337:     }
 9338:     $cmd =~ s/%%$//;
 9339:     $cmd = &escape($cmd);
 9340:     my $query = 'fetchenrollment';
 9341:     my $queryid=&reply("querysend:".$query.':'.$dom.':'.$env{'user.name'}.':'.$cmd,$homeserver);
 9342:     unless ($queryid=~/^\Q$host\E\_/) { 
 9343:         &logthis('fetch_enrollment_query: invalid queryid: '.$queryid.' for host: '.$host.' and homeserver: '.$homeserver.' context: '.$context.' '.$cnum); 
 9344:         return 'error: '.$queryid;
 9345:     }
 9346:     my $reply = &get_query_reply($queryid,$sleep,$loopmax);
 9347:     my $tries = 1;
 9348:     while (($reply=~/^timeout/) && ($tries < $maxtries)) {
 9349:         $reply = &get_query_reply($queryid,$sleep,$loopmax);
 9350:         $tries ++;
 9351:     }
 9352:     if ( ($reply =~/^timeout/) || ($reply =~/^error/) ) {
 9353:         &logthis('fetch_enrollment_query error: '.$reply.' for '.$dom.' '.$env{'user.name'}.' for '.$queryid.' context: '.$context.' '.$cnum.' maxtries: '.$maxtries.' tries: '.$tries);
 9354:     } else {
 9355:         my @responses = split(/:/,$reply);
 9356:         if (grep { $_ eq $homeserver } &current_machine_ids()) {
 9357:             foreach my $line (@responses) {
 9358:                 my ($key,$value) = split(/=/,$line,2);
 9359:                 $$replyref{$key} = $value;
 9360:             }
 9361:         } else {
 9362:             my $pathname = LONCAPA::tempdir();
 9363:             foreach my $line (@responses) {
 9364:                 my ($key,$value) = split(/=/,$line);
 9365:                 $$replyref{$key} = $value;
 9366:                 if ($value > 0) {
 9367:                     foreach my $item (@{$$affiliatesref{$key}}) {
 9368:                         my $filename = $dom.'_'.$key.'_'.$item.'_classlist.xml';
 9369:                         my $destname = $pathname.'/'.$filename;
 9370:                         my $xml_classlist = &reply("autoretrieve:".$filename,$homeserver);
 9371:                         if ($xml_classlist =~ /^error/) {
 9372:                             &logthis('fetch_enrollment_query - autoretrieve error: '.$xml_classlist.' for '.$filename.' from server: '.$homeserver.' '.$context.' '.$cnum);
 9373:                         } else {
 9374:                             if ( open(FILE,">",$destname) ) {
 9375:                                 print FILE &unescape($xml_classlist);
 9376:                                 close(FILE);
 9377:                             } else {
 9378:                                 &logthis('fetch_enrollment_query - error opening classlist file '.$destname.' '.$context.' '.$cnum);
 9379:                             }
 9380:                         }
 9381:                     }
 9382:                 }
 9383:             }
 9384:         }
 9385:         return 'ok';
 9386:     }
 9387:     return 'error';
 9388: }
 9389: 
 9390: sub get_query_reply {
 9391:     my ($queryid,$sleep,$loopmax) = @_;
 9392:     if (($sleep eq '') || ($sleep !~ /^\d+\.?\d*$/)) {
 9393:         $sleep = 0.2;
 9394:     }
 9395:     if (($loopmax eq '') || ($loopmax =~ /\D/)) {
 9396:         $loopmax = 100;
 9397:     }
 9398:     my $replyfile=LONCAPA::tempdir().$queryid;
 9399:     my $reply='';
 9400:     for (1..$loopmax) {
 9401: 	sleep($sleep);
 9402:         if (-e $replyfile.'.end') {
 9403: 	    if (open(my $fh,"<",$replyfile)) {
 9404: 		$reply = join('',<$fh>);
 9405: 		close($fh);
 9406: 	   } else { return 'error: reply_file_error'; }
 9407:            return &unescape($reply);
 9408: 	}
 9409:     }
 9410:     return 'timeout:'.$queryid;
 9411: }
 9412: 
 9413: sub courselog_query {
 9414: #
 9415: # possible filters:
 9416: # url: url or symb
 9417: # username
 9418: # domain
 9419: # action: view, submit, grade
 9420: # start: timestamp
 9421: # end: timestamp
 9422: #
 9423:     my (%filters)=@_;
 9424:     unless ($env{'request.course.id'}) { return 'no_course'; }
 9425:     if ($filters{'url'}) {
 9426: 	$filters{'url'}=&symbclean(&declutter($filters{'url'}));
 9427:         $filters{'url'}=~s/\.(\w+)$/(\\.\\d+)*\\.$1/;
 9428:         $filters{'url'}=~s/\.(\w+)\_\_\_/(\\.\\d+)*\\.$1/;
 9429:     }
 9430:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
 9431:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
 9432:     return &log_query($cname,$cdom,'courselog',%filters);
 9433: }
 9434: 
 9435: sub userlog_query {
 9436: #
 9437: # possible filters:
 9438: # action: log check role
 9439: # start: timestamp
 9440: # end: timestamp
 9441: #
 9442:     my ($uname,$udom,%filters)=@_;
 9443:     return &log_query($uname,$udom,'userlog',%filters);
 9444: }
 9445: 
 9446: #--------- Call auto-enrollment subs in localenroll.pm for homeserver for course 
 9447: 
 9448: sub auto_run {
 9449:     my ($cnum,$cdom) = @_;
 9450:     my $response = 0;
 9451:     my $settings;
 9452:     my %domconfig = &get_dom('configuration',['autoenroll'],$cdom);
 9453:     if (ref($domconfig{'autoenroll'}) eq 'HASH') {
 9454:         $settings = $domconfig{'autoenroll'};
 9455:         if ($settings->{'run'} eq '1') {
 9456:             $response = 1;
 9457:         }
 9458:     } else {
 9459:         my $homeserver;
 9460:         if (&is_course($cdom,$cnum)) {
 9461:             $homeserver = &homeserver($cnum,$cdom);
 9462:         } else {
 9463:             $homeserver = &domain($cdom,'primary');
 9464:         }
 9465:         if ($homeserver ne 'no_host') {
 9466:             $response = &reply('autorun:'.$cdom,$homeserver);
 9467:         }
 9468:     }
 9469:     return $response;
 9470: }
 9471: 
 9472: sub auto_get_sections {
 9473:     my ($cnum,$cdom,$inst_coursecode) = @_;
 9474:     my $homeserver;
 9475:     if (($cdom =~ /^$match_domain$/) && ($cnum =~ /^$match_courseid$/)) { 
 9476:         $homeserver = &homeserver($cnum,$cdom);
 9477:     }
 9478:     if (!defined($homeserver)) { 
 9479:         if ($cdom =~ /^$match_domain$/) {
 9480:             $homeserver = &domain($cdom,'primary');
 9481:         }
 9482:     }
 9483:     my @secs;
 9484:     if (defined($homeserver)) {
 9485:         my $response=&unescape(&reply('autogetsections:'.$inst_coursecode.':'.$cdom,$homeserver));
 9486:         unless ($response eq 'refused') {
 9487:             @secs = split(/:/,$response);
 9488:         }
 9489:     }
 9490:     return @secs;
 9491: }
 9492: 
 9493: sub auto_new_course {
 9494:     my ($cnum,$cdom,$inst_course_id,$owner,$coowners) = @_;
 9495:     my $homeserver = &homeserver($cnum,$cdom);
 9496:     my $response=&unescape(&reply('autonewcourse:'.$inst_course_id.':'.&escape($owner).':'.$cdom.':'.&escape($coowners),$homeserver));
 9497:     return $response;
 9498: }
 9499: 
 9500: sub auto_validate_courseID {
 9501:     my ($cnum,$cdom,$inst_course_id) = @_;
 9502:     my $homeserver = &homeserver($cnum,$cdom);
 9503:     my $response=&unescape(&reply('autovalidatecourse:'.$inst_course_id.':'.$cdom,$homeserver));
 9504:     return $response;
 9505: }
 9506: 
 9507: sub auto_validate_instcode {
 9508:     my ($cnum,$cdom,$instcode,$owner) = @_;
 9509:     my ($homeserver,$response);
 9510:     if (($cdom =~ /^$match_domain$/) && ($cnum =~ /^$match_courseid$/)) {
 9511:         $homeserver = &homeserver($cnum,$cdom);
 9512:     }
 9513:     if (!defined($homeserver)) {
 9514:         if ($cdom =~ /^$match_domain$/) {
 9515:             $homeserver = &domain($cdom,'primary');
 9516:         }
 9517:     }
 9518:     $response=&unescape(&reply('autovalidateinstcode:'.$cdom.':'.
 9519:                         &escape($instcode).':'.&escape($owner),$homeserver));
 9520:     my ($outcome,$description,$defaultcredits) = map { &unescape($_); } split('&',$response,3);
 9521:     return ($outcome,$description,$defaultcredits);
 9522: }
 9523: 
 9524: sub auto_validate_inst_crosslist {
 9525:     my ($cnum,$cdom,$instcode,$inst_xlist,$coowner) = @_;
 9526:     my ($homeserver,$response);
 9527:     if (($cdom =~ /^$match_domain$/) && ($cnum =~ /^$match_courseid$/)) {
 9528:         $homeserver = &homeserver($cnum,$cdom);
 9529:     }
 9530:     if (!defined($homeserver)) {
 9531:         if ($cdom =~ /^$match_domain$/) {
 9532:             $homeserver = &domain($cdom,'primary');
 9533:         }
 9534:     }
 9535:     unless (($homeserver eq '') || ($homeserver eq 'no_host')) {
 9536:         $response=&reply('autovalidateinstcrosslist:'.$cdom.':'.
 9537:                          &escape($instcode).':'.&escape($inst_xlist).':'.
 9538:                          &escape($coowner),$homeserver);
 9539:     }
 9540:     return $response;
 9541: }
 9542: 
 9543: sub auto_create_password {
 9544:     my ($cnum,$cdom,$authparam,$udom) = @_;
 9545:     my ($homeserver,$response);
 9546:     my $create_passwd = 0;
 9547:     my $authchk = '';
 9548:     if ($udom =~ /^$match_domain$/) {
 9549:         $homeserver = &domain($udom,'primary');
 9550:     }
 9551:     if ($homeserver eq '') {
 9552:         if (($cdom =~ /^$match_domain$/) && ($cnum =~ /^$match_courseid$/)) {
 9553:             $homeserver = &homeserver($cnum,$cdom);
 9554:         }
 9555:     }
 9556:     if ($homeserver eq '') {
 9557:         $authchk = 'nodomain';
 9558:     } else {
 9559:         $response=&unescape(&reply('autocreatepassword:'.$authparam.':'.$cdom,$homeserver));
 9560:         if ($response eq 'refused') {
 9561:             $authchk = 'refused';
 9562:         } else {
 9563:             ($authparam,$create_passwd,$authchk) = split(/:/,$response);
 9564:         }
 9565:     }
 9566:     return ($authparam,$create_passwd,$authchk);
 9567: }
 9568: 
 9569: sub auto_photo_permission {
 9570:     my ($cnum,$cdom,$students) = @_;
 9571:     my $homeserver = &homeserver($cnum,$cdom);
 9572:     my ($outcome,$perm_reqd,$conditions) = 
 9573: 	split(/:/,&unescape(&reply('autophotopermission:'.$cdom,$homeserver)),3);
 9574:     if ($outcome =~ /^(con_lost|unknown_cmd|no_such_host)$/) {
 9575: 	return (undef,undef);
 9576:     }
 9577:     return ($outcome,$perm_reqd,$conditions);
 9578: }
 9579: 
 9580: sub auto_checkphotos {
 9581:     my ($uname,$udom,$pid) = @_;
 9582:     my $homeserver = &homeserver($uname,$udom);
 9583:     my ($result,$resulttype);
 9584:     my $outcome = &unescape(&reply('autophotocheck:'.&escape($udom).':'.
 9585: 				   &escape($uname).':'.&escape($pid),
 9586: 				   $homeserver));
 9587:     if ($outcome =~ /^(con_lost|unknown_cmd|no_such_host)$/) {
 9588: 	return (undef,undef);
 9589:     }
 9590:     if ($outcome) {
 9591:         ($result,$resulttype) = split(/:/,$outcome);
 9592:     } 
 9593:     return ($result,$resulttype);
 9594: }
 9595: 
 9596: sub auto_photochoice {
 9597:     my ($cnum,$cdom) = @_;
 9598:     my $homeserver = &homeserver($cnum,$cdom);
 9599:     my ($update,$comment) = split(/:/,&unescape(&reply('autophotochoice:'.
 9600: 						       &escape($cdom),
 9601: 						       $homeserver)));
 9602:     if ($update =~ /^(con_lost|unknown_cmd|no_such_host)$/) {
 9603: 	return (undef,undef);
 9604:     }
 9605:     return ($update,$comment);
 9606: }
 9607: 
 9608: sub auto_photoupdate {
 9609:     my ($affiliatesref,$dom,$cnum,$photo) = @_;
 9610:     my $homeserver = &homeserver($cnum,$dom);
 9611:     my $host=&hostname($homeserver);
 9612:     my $cmd = '';
 9613:     my $maxtries = 1;
 9614:     foreach my $affiliate (keys(%{$affiliatesref})) {
 9615:         $cmd .= $affiliate.'='.join(",",@{$$affiliatesref{$affiliate}}).'%%';
 9616:     }
 9617:     $cmd =~ s/%%$//;
 9618:     $cmd = &escape($cmd);
 9619:     my $query = 'institutionalphotos';
 9620:     my $queryid=&reply("querysend:".$query.':'.$dom.':'.$cnum.':'.$cmd,$homeserver);
 9621:     unless ($queryid=~/^\Q$host\E\_/) {
 9622:         &logthis('institutionalphotos: invalid queryid: '.$queryid.' for host: '.$host.' and homeserver: '.$homeserver.' and course: '.$cnum);
 9623:         return 'error: '.$queryid;
 9624:     }
 9625:     my $reply = &get_query_reply($queryid);
 9626:     my $tries = 1;
 9627:     while (($reply=~/^timeout/) && ($tries < $maxtries)) {
 9628:         $reply = &get_query_reply($queryid);
 9629:         $tries ++;
 9630:     }
 9631:     if ( ($reply =~/^timeout/) || ($reply =~/^error/) ) {
 9632:         &logthis('institutionalphotos error: '.$reply.' for '.$dom.' '.$env{'user.name'}.' for '.$queryid.' course: '.$cnum.' maxtries: '.$maxtries.' tries: '.$tries);
 9633:     } else {
 9634:         my @responses = split(/:/,$reply);
 9635:         my $outcome = shift(@responses); 
 9636:         foreach my $item (@responses) {
 9637:             my ($key,$value) = split(/=/,$item);
 9638:             $$photo{$key} = $value;
 9639:         }
 9640:         return $outcome;
 9641:     }
 9642:     return 'error';
 9643: }
 9644: 
 9645: sub auto_instcode_format {
 9646:     my ($caller,$codedom,$instcodes,$codes,$codetitles,$cat_titles,
 9647: 	$cat_order) = @_;
 9648:     my $courses = '';
 9649:     my @homeservers;
 9650:     if ($caller eq 'global') {
 9651: 	my %servers = &get_servers($codedom,'library');
 9652: 	foreach my $tryserver (keys(%servers)) {
 9653: 	    if (!grep(/^\Q$tryserver\E$/,@homeservers)) {
 9654: 		push(@homeservers,$tryserver);
 9655: 	    }
 9656:         }
 9657:     } elsif ($caller eq 'requests') {
 9658:         if ($codedom =~ /^$match_domain$/) {
 9659:             my $chome = &domain($codedom,'primary');
 9660:             unless ($chome eq 'no_host') {
 9661:                 push(@homeservers,$chome);
 9662:             }
 9663:         }
 9664:     } else {
 9665:         push(@homeservers,&homeserver($caller,$codedom));
 9666:     }
 9667:     foreach my $code (keys(%{$instcodes})) {
 9668:         $courses .= &escape($code).'='.&escape($$instcodes{$code}).'&';
 9669:     }
 9670:     chop($courses);
 9671:     my $ok_response = 0;
 9672:     my $response;
 9673:     while (@homeservers > 0 && $ok_response == 0) {
 9674:         my $server = shift(@homeservers); 
 9675:         $response=&reply('autoinstcodeformat:'.$codedom.':'.$courses,$server);
 9676:         if ($response !~ /(con_lost|error|no_such_host|refused)/) {
 9677:             my ($codes_str,$codetitles_str,$cat_titles_str,$cat_order_str) = 
 9678: 		split(/:/,$response);
 9679:             %{$codes} = (%{$codes},&str2hash($codes_str));
 9680:             push(@{$codetitles},&str2array($codetitles_str));
 9681:             %{$cat_titles} = (%{$cat_titles},&str2hash($cat_titles_str));
 9682:             %{$cat_order} = (%{$cat_order},&str2hash($cat_order_str));
 9683:             $ok_response = 1;
 9684:         }
 9685:     }
 9686:     if ($ok_response) {
 9687:         return 'ok';
 9688:     } else {
 9689:         return $response;
 9690:     }
 9691: }
 9692: 
 9693: sub auto_instcode_defaults {
 9694:     my ($domain,$returnhash,$code_order) = @_;
 9695:     my @homeservers;
 9696: 
 9697:     my %servers = &get_servers($domain,'library');
 9698:     foreach my $tryserver (keys(%servers)) {
 9699: 	if (!grep(/^\Q$tryserver\E$/,@homeservers)) {
 9700: 	    push(@homeservers,$tryserver);
 9701: 	}
 9702:     }
 9703: 
 9704:     my $response;
 9705:     foreach my $server (@homeservers) {
 9706:         $response=&reply('autoinstcodedefaults:'.$domain,$server);
 9707:         next if ($response =~ /(con_lost|error|no_such_host|refused)/);
 9708: 	
 9709: 	foreach my $pair (split(/\&/,$response)) {
 9710: 	    my ($name,$value)=split(/\=/,$pair);
 9711: 	    if ($name eq 'code_order') {
 9712: 		@{$code_order} = split(/\&/,&unescape($value));
 9713: 	    } else {
 9714: 		$returnhash->{&unescape($name)}=&unescape($value);
 9715: 	    }
 9716: 	}
 9717: 	return 'ok';
 9718:     }
 9719: 
 9720:     return $response;
 9721: }
 9722: 
 9723: sub auto_possible_instcodes {
 9724:     my ($domain,$codetitles,$cat_titles,$cat_orders,$code_order) = @_;
 9725:     unless ((ref($codetitles) eq 'ARRAY') && (ref($cat_titles) eq 'HASH') && 
 9726:             (ref($cat_orders) eq 'HASH') && (ref($code_order) eq 'ARRAY')) {
 9727:         return;
 9728:     }
 9729:     my (@homeservers,$uhome);
 9730:     if (defined(&domain($domain,'primary'))) {
 9731:         $uhome=&domain($domain,'primary');
 9732:         push(@homeservers,&domain($domain,'primary'));
 9733:     } else {
 9734:         my %servers = &get_servers($domain,'library');
 9735:         foreach my $tryserver (keys(%servers)) {
 9736:             if (!grep(/^\Q$tryserver\E$/,@homeservers)) {
 9737:                 push(@homeservers,$tryserver);
 9738:             }
 9739:         }
 9740:     }
 9741:     my $response;
 9742:     foreach my $server (@homeservers) {
 9743:         $response=&reply('autopossibleinstcodes:'.$domain,$server);
 9744:         next if ($response =~ /(con_lost|error|no_such_host|refused)/);
 9745:         my ($codetitlestr,$codeorderstr,$cat_title,$cat_order) = 
 9746:             split(':',$response);
 9747:         @{$codetitles} = map { &unescape($_); } (split('&',$codetitlestr));
 9748:         @{$code_order} = map { &unescape($_); } (split('&',$codeorderstr));
 9749:         foreach my $item (split('&',$cat_title)) {   
 9750:             my ($name,$value)=split('=',$item);
 9751:             $cat_titles->{&unescape($name)}=&thaw_unescape($value);
 9752:         }
 9753:         foreach my $item (split('&',$cat_order)) {
 9754:             my ($name,$value)=split('=',$item);
 9755:             $cat_orders->{&unescape($name)}=&thaw_unescape($value);
 9756:         }
 9757:         return 'ok';
 9758:     }
 9759:     return $response;
 9760: }
 9761: 
 9762: sub auto_courserequest_checks {
 9763:     my ($dom) = @_;
 9764:     my ($homeserver,%validations);
 9765:     if ($dom =~ /^$match_domain$/) {
 9766:         $homeserver = &domain($dom,'primary');
 9767:     }
 9768:     unless ($homeserver eq 'no_host') {
 9769:         my $response=&reply('autocrsreqchecks:'.$dom,$homeserver);
 9770:         unless ($response =~ /(con_lost|error|no_such_host|refused)/) {
 9771:             my @items = split(/&/,$response);
 9772:             foreach my $item (@items) {
 9773:                 my ($key,$value) = split('=',$item);
 9774:                 $validations{&unescape($key)} = &thaw_unescape($value);
 9775:             }
 9776:         }
 9777:     }
 9778:     return %validations; 
 9779: }
 9780: 
 9781: sub auto_courserequest_validation {
 9782:     my ($dom,$owner,$crstype,$inststatuslist,$instcode,$instseclist,$custominfo) = @_;
 9783:     my ($homeserver,$response);
 9784:     if ($dom =~ /^$match_domain$/) {
 9785:         $homeserver = &domain($dom,'primary');
 9786:     }
 9787:     unless ($homeserver eq 'no_host') {
 9788:         my $customdata;
 9789:         if (ref($custominfo) eq 'HASH') {
 9790:             $customdata = &freeze_escape($custominfo);
 9791:         }
 9792:         $response=&unescape(&reply('autocrsreqvalidation:'.$dom.':'.&escape($owner).
 9793:                                     ':'.&escape($crstype).':'.&escape($inststatuslist).
 9794:                                     ':'.&escape($instcode).':'.&escape($instseclist).':'.
 9795:                                     $customdata,$homeserver));
 9796:     }
 9797:     return $response;
 9798: }
 9799: 
 9800: sub auto_validate_class_sec {
 9801:     my ($cdom,$cnum,$owners,$inst_class) = @_;
 9802:     my $homeserver = &homeserver($cnum,$cdom);
 9803:     my $ownerlist;
 9804:     if (ref($owners) eq 'ARRAY') {
 9805:         $ownerlist = join(',',@{$owners});
 9806:     } else {
 9807:         $ownerlist = $owners;
 9808:     }
 9809:     my $response=&reply('autovalidateclass_sec:'.$inst_class.':'.
 9810:                         &escape($ownerlist).':'.$cdom,$homeserver);
 9811:     return $response;
 9812: }
 9813: 
 9814: sub auto_instsec_reformat {
 9815:     my ($cdom,$action,$instsecref) = @_;
 9816:     return unless(($action eq 'clutter') || ($action eq 'declutter'));
 9817:     my @homeservers;
 9818:     if (defined(&domain($cdom,'primary'))) {
 9819:         push(@homeservers,&domain($cdom,'primary'));
 9820:     } else {
 9821:         my %servers = &get_servers($cdom,'library');
 9822:         foreach my $tryserver (keys(%servers)) {
 9823:             if (!grep(/^\Q$tryserver\E$/,@homeservers)) {
 9824:                 push(@homeservers,$tryserver);
 9825:             }
 9826:         }
 9827:     }
 9828:     my $response;
 9829:     my %reformatted = %{$instsecref};
 9830:     foreach my $server (@homeservers) {
 9831:         if (ref($instsecref) eq 'HASH') {
 9832:             my $info = &freeze_escape($instsecref);
 9833:             my $response=&reply('autoinstsecreformat:'.$cdom.':'.
 9834:                                 $action.':'.$info,$server);
 9835:             next if ($response =~ /(con_lost|error|no_such_host|refused|unknown_command)/);
 9836:             my @items = split(/&/,$response);
 9837:             foreach my $item (@items) {
 9838:                 my ($key,$value) = split(/=/,$item);
 9839:                 $reformatted{&unescape($key)} = &thaw_unescape($value);
 9840:             }
 9841:         }
 9842:     }
 9843:     return %reformatted;
 9844: }
 9845: 
 9846: sub auto_validate_instclasses {
 9847:     my ($cdom,$cnum,$owners,$classesref) = @_;
 9848:     my ($homeserver,%validations);
 9849:     $homeserver = &homeserver($cnum,$cdom);
 9850:     unless ($homeserver eq 'no_host') {
 9851:         my $ownerlist;
 9852:         if (ref($owners) eq 'ARRAY') {
 9853:             $ownerlist = join(',',@{$owners});
 9854:         } else {
 9855:             $ownerlist = $owners;
 9856:         }
 9857:         if (ref($classesref) eq 'HASH') {
 9858:             my $classes = &freeze_escape($classesref);
 9859:             my $response=&reply('autovalidateinstclasses:'.&escape($ownerlist).
 9860:                                 ':'.$cdom.':'.$classes,$homeserver);
 9861:             unless ($response =~ /(con_lost|error|no_such_host|refused)/) {
 9862:                 my @items = split(/&/,$response);
 9863:                 foreach my $item (@items) {
 9864:                     my ($key,$value) = split('=',$item);
 9865:                     $validations{&unescape($key)} = &thaw_unescape($value);
 9866:                 }
 9867:             }
 9868:         }
 9869:     }
 9870:     return %validations;
 9871: }
 9872: 
 9873: sub auto_crsreq_update {
 9874:     my ($cdom,$cnum,$crstype,$action,$ownername,$ownerdomain,$fullname,$title,
 9875:         $code,$accessstart,$accessend,$inbound) = @_;
 9876:     my ($homeserver,%crsreqresponse);
 9877:     if ($cdom =~ /^$match_domain$/) {
 9878:         $homeserver = &domain($cdom,'primary');
 9879:     }
 9880:     unless (($homeserver eq 'no_host') || ($homeserver eq '')) {
 9881:         my $info;
 9882:         if (ref($inbound) eq 'HASH') {
 9883:             $info = &freeze_escape($inbound);
 9884:         }
 9885:         my $response=&reply('autocrsrequpdate:'.$cdom.':'.$cnum.':'.&escape($crstype).
 9886:                             ':'.&escape($action).':'.&escape($ownername).':'.
 9887:                             &escape($ownerdomain).':'.&escape($fullname).':'.
 9888:                             &escape($title).':'.&escape($code).':'.
 9889:                             &escape($accessstart).':'.&escape($accessend).':'.$info,
 9890:                             $homeserver);
 9891:         unless ($response =~ /(con_lost|error|no_such_host|refused)/) {
 9892:             my @items = split(/&/,$response);
 9893:             foreach my $item (@items) {
 9894:                 my ($key,$value) = split('=',$item);
 9895:                 $crsreqresponse{&unescape($key)} = &thaw_unescape($value);
 9896:             }
 9897:         }
 9898:     }
 9899:     return \%crsreqresponse;
 9900: }
 9901: 
 9902: sub auto_export_grades {
 9903:     my ($cdom,$cnum,$inforef,$gradesref) = @_;
 9904:     my ($homeserver,%exportresponse);
 9905:     if ($cdom =~ /^$match_domain$/) {
 9906:         $homeserver = &domain($cdom,'primary');
 9907:     }
 9908:     unless (($homeserver eq 'no_host') || ($homeserver eq '')) {
 9909:         my $info;
 9910:         if (ref($inforef) eq 'HASH') {
 9911:             $info = &freeze_escape($inforef);
 9912:         }
 9913:         if (ref($gradesref) eq 'HASH') {
 9914:             my $grades = &freeze_escape($gradesref);
 9915:             my $response=&reply('encrypt:autoexportgrades:'.$cdom.':'.$cnum.':'.
 9916:                                 $info.':'.$grades,$homeserver);
 9917:             unless ($response =~ /(con_lost|error|no_such_host|refused|unknown_command)/) {
 9918:                 my @items = split(/&/,$response);
 9919:                 foreach my $item (@items) {
 9920:                     my ($key,$value) = split('=',$item);
 9921:                     $exportresponse{&unescape($key)} = &thaw_unescape($value);
 9922:                 }
 9923:             }
 9924:         }
 9925:     }
 9926:     return \%exportresponse;
 9927: }
 9928: 
 9929: sub check_instcode_cloning {
 9930:     my ($codedefaults,$code_order,$cloner,$clonefromcode,$clonetocode) = @_;
 9931:     unless ((ref($codedefaults) eq 'HASH') && (ref($code_order) eq 'ARRAY')) {
 9932:         return;
 9933:     }
 9934:     my $canclone;
 9935:     if (@{$code_order} > 0) {
 9936:         my $instcoderegexp ='^';
 9937:         my @clonecodes = split(/\&/,$cloner);
 9938:         foreach my $item (@{$code_order}) {
 9939:             if (grep(/^\Q$item\E=/,@clonecodes)) {
 9940:                 foreach my $pair (@clonecodes) {
 9941:                     my ($key,$val) = split(/\=/,$pair,2);
 9942:                     $val = &unescape($val);
 9943:                     if ($key eq $item) {
 9944:                         $instcoderegexp .= '('.$val.')';
 9945:                         last;
 9946:                     }
 9947:                 }
 9948:             } else {
 9949:                 $instcoderegexp .= $codedefaults->{$item};
 9950:             }
 9951:         }
 9952:         $instcoderegexp .= '$';
 9953:         my (@from,@to);
 9954:         eval {
 9955:                (@from) = ($clonefromcode =~ /$instcoderegexp/);
 9956:                (@to) = ($clonetocode =~ /$instcoderegexp/);
 9957:         };
 9958:         if ((@from > 0) && (@to > 0)) {
 9959:             my @diffs = &Apache::loncommon::compare_arrays(\@from,\@to);
 9960:             if (!@diffs) {
 9961:                 $canclone = 1;
 9962:             }
 9963:         }
 9964:     }
 9965:     return $canclone;
 9966: }
 9967: 
 9968: sub default_instcode_cloning {
 9969:     my ($clonedom,$domdefclone,$clonefromcode,$clonetocode,$codedefaultsref,$codeorderref) = @_;
 9970:     my (%codedefaults,@code_order,$canclone);
 9971:     if ((ref($codedefaultsref) eq 'HASH') && (ref($codeorderref) eq 'ARRAY')) {
 9972:         %codedefaults = %{$codedefaultsref};
 9973:         @code_order = @{$codeorderref};
 9974:     } elsif ($clonedom) {
 9975:         &auto_instcode_defaults($clonedom,\%codedefaults,\@code_order);
 9976:     }
 9977:     if (($domdefclone) && (@code_order)) {
 9978:         my @clonecodes = split(/\+/,$domdefclone);
 9979:         my $instcoderegexp ='^';
 9980:         foreach my $item (@code_order) {
 9981:             if (grep(/^\Q$item\E$/,@clonecodes)) {
 9982:                 $instcoderegexp .= '('.$codedefaults{$item}.')';
 9983:             } else {
 9984:                 $instcoderegexp .= $codedefaults{$item};
 9985:             }
 9986:         }
 9987:         $instcoderegexp .= '$';
 9988:         my (@from,@to);
 9989:         eval {
 9990:             (@from) = ($clonefromcode =~ /$instcoderegexp/);
 9991:             (@to) = ($clonetocode =~ /$instcoderegexp/);
 9992:         };
 9993:         if ((@from > 0) && (@to > 0)) {
 9994:             my @diffs = &Apache::loncommon::compare_arrays(\@from,\@to);
 9995:             if (!@diffs) {
 9996:                 $canclone = 1;
 9997:             }
 9998:         }
 9999:     }
10000:     return $canclone;
10001: }
10002: 
10003: # ------------------------------------------------------- Course Group routines
10004: 
10005: sub get_coursegroups {
10006:     my ($cdom,$cnum,$group,$namespace) = @_;
10007:     return(&dump($namespace,$cdom,$cnum,$group));
10008: }
10009: 
10010: sub modify_coursegroup {
10011:     my ($cdom,$cnum,$groupsettings) = @_;
10012:     return(&put('coursegroups',$groupsettings,$cdom,$cnum));
10013: }
10014: 
10015: sub toggle_coursegroup_status {
10016:     my ($cdom,$cnum,$group,$action) = @_;
10017:     my ($from_namespace,$to_namespace);
10018:     if ($action eq 'delete') {
10019:         $from_namespace = 'coursegroups';
10020:         $to_namespace = 'deleted_groups';
10021:     } else {
10022:         $from_namespace = 'deleted_groups';
10023:         $to_namespace = 'coursegroups';
10024:     }
10025:     my %curr_group = &get_coursegroups($cdom,$cnum,$group,$from_namespace);
10026:     if (my $tmp = &error(%curr_group)) {
10027:         &Apache::lonnet::logthis('Error retrieving group: '.$tmp.' in '.$cnum.':'.$cdom);
10028:         return ('read error',$tmp);
10029:     } else {
10030:         my %savedsettings = %curr_group; 
10031:         my $result = &put($to_namespace,\%savedsettings,$cdom,$cnum);
10032:         my $deloutcome;
10033:         if ($result eq 'ok') {
10034:             $deloutcome = &del($from_namespace,[$group],$cdom,$cnum);
10035:         } else {
10036:             return ('write error',$result);
10037:         }
10038:         if ($deloutcome eq 'ok') {
10039:             return 'ok';
10040:         } else {
10041:             return ('delete error',$deloutcome);
10042:         }
10043:     }
10044: }
10045: 
10046: sub modify_group_roles {
10047:     my ($cdom,$cnum,$group_id,$user,$end,$start,$userprivs,$selfenroll,$context) = @_;
10048:     my $url = '/'.$cdom.'/'.$cnum.'/'.$group_id;
10049:     my $role = 'gr/'.&escape($userprivs);
10050:     my ($uname,$udom) = split(/:/,$user);
10051:     my $result = &assignrole($udom,$uname,$url,$role,$end,$start,'',$selfenroll,$context);
10052:     if ($result eq 'ok') {
10053:         &devalidate_getgroups_cache($udom,$uname,$cdom,$cnum);
10054:     }
10055:     return $result;
10056: }
10057: 
10058: sub modify_coursegroup_membership {
10059:     my ($cdom,$cnum,$membership) = @_;
10060:     my $result = &put('groupmembership',$membership,$cdom,$cnum);
10061:     return $result;
10062: }
10063: 
10064: sub get_active_groups {
10065:     my ($udom,$uname,$cdom,$cnum) = @_;
10066:     my $now = time;
10067:     my %groups = ();
10068:     foreach my $key (keys(%env)) {
10069:         if ($key =~ m-user\.role\.gr\./($match_domain)/($match_courseid)/(\w+)$-) {
10070:             my ($start,$end) = split(/\./,$env{$key});
10071:             if (($end!=0) && ($end<$now)) { next; }
10072:             if (($start!=0) && ($start>$now)) { next; }
10073:             if ($1 eq $cdom && $2 eq $cnum) {
10074:                 $groups{$3} = $env{$key} ;
10075:             }
10076:         }
10077:     }
10078:     return %groups;
10079: }
10080: 
10081: sub get_group_membership {
10082:     my ($cdom,$cnum,$group) = @_;
10083:     return(&dump('groupmembership',$cdom,$cnum,$group));
10084: }
10085: 
10086: sub get_users_groups {
10087:     my ($udom,$uname,$courseid) = @_;
10088:     my @usersgroups;
10089:     my $cachetime=1800;
10090: 
10091:     my $hashid="$udom:$uname:$courseid";
10092:     my ($grouplist,$cached)=&is_cached_new('getgroups',$hashid);
10093:     if (defined($cached)) {
10094:         @usersgroups = split(/:/,$grouplist);
10095:     } else {  
10096:         $grouplist = '';
10097:         my $courseurl = &courseid_to_courseurl($courseid);
10098:         my %roleshash = &dump('roles',$udom,$uname,$courseurl);
10099:         my $access_end = $env{'course.'.$courseid.
10100:                               '.default_enrollment_end_date'};
10101:         my $now = time;
10102:         foreach my $key (keys(%roleshash)) {
10103:             if ($key =~ /^\Q$courseurl\E\/(\w+)\_gr$/) {
10104:                 my $group = $1;
10105:                 if ($roleshash{$key} =~ /_(\d+)_(\d+)$/) {
10106:                     my $start = $2;
10107:                     my $end = $1;
10108:                     if ($start == -1) { next; } # deleted from group
10109:                     if (($start!=0) && ($start>$now)) { next; }
10110:                     if (($end!=0) && ($end<$now)) {
10111:                         if ($access_end && $access_end < $now) {
10112:                             if ($access_end - $end < 86400) {
10113:                                 push(@usersgroups,$group);
10114:                             }
10115:                         }
10116:                         next;
10117:                     }
10118:                     push(@usersgroups,$group);
10119:                 }
10120:             }
10121:         }
10122:         @usersgroups = &sort_course_groups($courseid,@usersgroups);
10123:         $grouplist = join(':',@usersgroups);
10124:         &do_cache_new('getgroups',$hashid,$grouplist,$cachetime);
10125:     }
10126:     return @usersgroups;
10127: }
10128: 
10129: sub devalidate_getgroups_cache {
10130:     my ($udom,$uname,$cdom,$cnum)=@_;
10131:     my $courseid = $cdom.'_'.$cnum;
10132: 
10133:     my $hashid="$udom:$uname:$courseid";
10134:     &devalidate_cache_new('getgroups',$hashid);
10135: }
10136: 
10137: # ------------------------------------------------------------------ Plain Text
10138: 
10139: sub plaintext {
10140:     my ($short,$type,$cid,$forcedefault) = @_;
10141:     if ($short =~ m{^cr/}) {
10142: 	return (split('/',$short))[-1];
10143:     }
10144:     if (!defined($cid)) {
10145:         $cid = $env{'request.course.id'};
10146:     }
10147:     my %rolenames = (
10148:                       Course    => 'std',
10149:                       Community => 'alt1',
10150:                       Placement => 'std',
10151:                     );
10152:     if ($cid ne '') {
10153:         if ($env{'course.'.$cid.'.'.$short.'.plaintext'} ne '') {
10154:             unless ($forcedefault) {
10155:                 my $roletext = $env{'course.'.$cid.'.'.$short.'.plaintext'}; 
10156:                 &Apache::lonlocal::mt_escape(\$roletext);
10157:                 return &Apache::lonlocal::mt($roletext);
10158:             }
10159:         }
10160:     }
10161:     if ((defined($type)) && (defined($rolenames{$type})) &&
10162:         (defined($rolenames{$type})) && 
10163:         (defined($prp{$short}{$rolenames{$type}}))) {
10164:         return &Apache::lonlocal::mt($prp{$short}{$rolenames{$type}});
10165:     } elsif ($cid ne '') {
10166:         my $crstype = $env{'course.'.$cid.'.type'};
10167:         if (($crstype ne '') && (defined($rolenames{$crstype})) &&
10168:             (defined($prp{$short}{$rolenames{$crstype}}))) {
10169:             return &Apache::lonlocal::mt($prp{$short}{$rolenames{$crstype}});
10170:         }
10171:     }
10172:     return &Apache::lonlocal::mt($prp{$short}{'std'});
10173: }
10174: 
10175: # ----------------------------------------------------------------- Assign Role
10176: 
10177: sub assignrole {
10178:     my ($udom,$uname,$url,$role,$end,$start,$deleteflag,$selfenroll,
10179:         $context)=@_;
10180:     my $mrole;
10181:     if ($role =~ /^cr\//) {
10182:         my $cwosec=$url;
10183:         $cwosec=~s/^\/($match_domain)\/($match_courseid)\/.*/$1\/$2/;
10184: 	unless (&allowed('ccr',$cwosec)) {
10185:            my $refused = 1;
10186:            if ($context eq 'requestcourses') {
10187:                if (($env{'user.name'} ne '') && ($env{'user.domain'} ne '')) {
10188:                    if ($role =~ m{^cr/($match_domain)/($match_username)/([^/]+)$}) {
10189:                        if (($1 eq $env{'user.domain'}) && ($2 eq $env{'user.name'})) {
10190:                            my ($cdom,$cnum) = ($cwosec =~ m{^/?($match_domain)/($match_courseid)$});
10191:                            my %crsenv = &userenvironment($cdom,$cnum,('internal.courseowner'));
10192:                            if ($crsenv{'internal.courseowner'} eq
10193:                                $env{'user.name'}.':'.$env{'user.domain'}) {
10194:                                $refused = '';
10195:                            }
10196:                        }
10197:                    }
10198:                }
10199:            }
10200:            if ($refused) {
10201:                &logthis('Refused custom assignrole: '.
10202:                         $udom.' '.$uname.' '.$url.' '.$role.' '.$end.' '.$start.
10203:                         ' by '.$env{'user.name'}.' at '.$env{'user.domain'});
10204:                return 'refused';
10205:            }
10206:         }
10207:         $mrole='cr';
10208:     } elsif ($role =~ /^gr\//) {
10209:         my $cwogrp=$url;
10210:         $cwogrp=~s{^/($match_domain)/($match_courseid)/.*}{$1/$2};
10211:         unless (&allowed('mdg',$cwogrp)) {
10212:             &logthis('Refused group assignrole: '.
10213:               $udom.' '.$uname.' '.$url.' '.$role.' '.$end.' '.$start.' by '.
10214:                     $env{'user.name'}.' at '.$env{'user.domain'});
10215:             return 'refused';
10216:         }
10217:         $mrole='gr';
10218:     } else {
10219:         my $cwosec=$url;
10220:         $cwosec=~s/^\/($match_domain)\/($match_courseid)\/.*/$1\/$2/;
10221:         if (!(&allowed('c'.$role,$cwosec)) && !(&allowed('c'.$role,$udom))) {
10222:             my $refused;
10223:             if (($env{'request.course.sec'}  ne '') && ($role eq 'st')) {
10224:                 if (!(&allowed('c'.$role,$url))) {
10225:                     $refused = 1;
10226:                 }
10227:             } else {
10228:                 $refused = 1;
10229:             }
10230:             if ($refused) {
10231:                 my ($cdom,$cnum) = ($cwosec =~ m{^/?($match_domain)/($match_courseid)$});
10232:                 if (!$selfenroll && (($context eq 'course') || ($context eq 'ltienroll' && $env{'request.lti.login'}))) {
10233:                     my %crsenv;
10234:                     if ($role eq 'cc' || $role eq 'co') {
10235:                         %crsenv = &userenvironment($cdom,$cnum,('internal.courseowner'));
10236:                         if (($role eq 'cc') && ($cnum !~ /^$match_community$/)) {
10237:                             if ($env{'request.role'} eq 'cc./'.$cdom.'/'.$cnum) {
10238:                                 if ($crsenv{'internal.courseowner'} eq 
10239:                                     $env{'user.name'}.':'.$env{'user.domain'}) {
10240:                                     $refused = '';
10241:                                 }
10242:                             }
10243:                         } elsif (($role eq 'co') && ($cnum =~ /^$match_community$/)) { 
10244:                             if ($env{'request.role'} eq 'co./'.$cdom.'/'.$cnum) {
10245:                                 if ($crsenv{'internal.courseowner'} eq 
10246:                                     $env{'user.name'}.':'.$env{'user.domain'}) {
10247:                                     $refused = '';
10248:                                 }
10249:                             }
10250:                         }
10251:                     }
10252:                 } elsif (($selfenroll == 1) && ($udom eq $env{'user.domain'}) && ($uname eq $env{'user.name'})) {
10253:                     if ($role eq 'st') {
10254:                         $refused = '';
10255:                     } elsif (($context eq 'ltienroll') && ($env{'request.lti.login'})) {
10256:                         $refused = '';
10257:                     }
10258:                 } elsif ($context eq 'requestcourses') {
10259:                     my @possroles = ('st','ta','ep','in','cc','co');
10260:                     if ((grep(/^\Q$role\E$/,@possroles)) && ($env{'user.name'} ne '' && $env{'user.domain'} ne '')) {
10261:                         my $wrongcc;
10262:                         if ($cnum =~ /^$match_community$/) {
10263:                             $wrongcc = 1 if ($role eq 'cc');
10264:                         } else {
10265:                             $wrongcc = 1 if ($role eq 'co');
10266:                         }
10267:                         unless ($wrongcc) {
10268:                             my %crsenv = &userenvironment($cdom,$cnum,('internal.courseowner'));
10269:                             if ($crsenv{'internal.courseowner'} eq 
10270:                                  $env{'user.name'}.':'.$env{'user.domain'}) {
10271:                                 $refused = '';
10272:                             }
10273:                         }
10274:                     }
10275:                 } elsif ($context eq 'requestauthor') {
10276:                     if (($udom eq $env{'user.domain'}) && ($uname eq $env{'user.name'}) && 
10277:                         ($url eq '/'.$udom.'/') && ($role eq 'au')) {
10278:                         if ($env{'environment.requestauthor'} eq 'automatic') {
10279:                             $refused = '';
10280:                         } else {
10281:                             my %domdefaults = &get_domain_defaults($udom);
10282:                             if (ref($domdefaults{'requestauthor'}) eq 'HASH') {
10283:                                 my $checkbystatus;
10284:                                 if ($env{'user.adv'}) { 
10285:                                     my $disposition = $domdefaults{'requestauthor'}{'_LC_adv'};
10286:                                     if ($disposition eq 'automatic') {
10287:                                         $refused = '';
10288:                                     } elsif ($disposition eq '') {
10289:                                         $checkbystatus = 1;
10290:                                     } 
10291:                                 } else {
10292:                                     $checkbystatus = 1;
10293:                                 }
10294:                                 if ($checkbystatus) {
10295:                                     if ($env{'environment.inststatus'}) {
10296:                                         my @inststatuses = split(/,/,$env{'environment.inststatus'});
10297:                                         foreach my $type (@inststatuses) {
10298:                                             if (($type ne '') &&
10299:                                                 ($domdefaults{'requestauthor'}{$type} eq 'automatic')) {
10300:                                                 $refused = '';
10301:                                             }
10302:                                         }
10303:                                     } elsif ($domdefaults{'requestauthor'}{'default'} eq 'automatic') {
10304:                                         $refused = '';
10305:                                     }
10306:                                 }
10307:                             }
10308:                         }
10309:                     }
10310:                 }
10311:                 if ($refused) {
10312:                     &logthis('Refused assignrole: '.$udom.' '.$uname.' '.$url.
10313:                              ' '.$role.' '.$end.' '.$start.' by '.
10314: 	  	             $env{'user.name'}.' at '.$env{'user.domain'});
10315:                     return 'refused';
10316:                 }
10317:             }
10318:         } elsif ($role eq 'au') {
10319:             if ($url ne '/'.$udom.'/') {
10320:                 &logthis('Attempt by '.$env{'user.name'}.':'.$env{'user.domain'}.
10321:                          ' to assign author role for '.$uname.':'.$udom.
10322:                          ' in domain: '.$url.' refused (wrong domain).');
10323:                 return 'refused';
10324:             }
10325:         }
10326:         $mrole=$role;
10327:     }
10328:     my $command="encrypt:rolesput:$env{'user.domain'}:$env{'user.name'}:".
10329:                 "$udom:$uname:$url".'_'."$mrole=$role";
10330:     if ($end) { $command.='_'.$end; }
10331:     if ($start) {
10332: 	if ($end) { 
10333:            $command.='_'.$start; 
10334:         } else {
10335:            $command.='_0_'.$start;
10336:         }
10337:     }
10338:     my $origstart = $start;
10339:     my $origend = $end;
10340:     my $delflag;
10341: # actually delete
10342:     if ($deleteflag) {
10343: 	if ((&allowed('dro',$udom)) || (&allowed('dro',$url))) {
10344: # modify command to delete the role
10345:            $command="encrypt:rolesdel:$env{'user.domain'}:$env{'user.name'}:".
10346:                 "$udom:$uname:$url".'_'."$mrole";
10347: 	   &logthis("$env{'user.name'} at $env{'user.domain'} deletes $mrole in $url for $uname at $udom"); 
10348: # set start and finish to negative values for userrolelog
10349:            $start=-1;
10350:            $end=-1;
10351:            $delflag = 1;
10352:         }
10353:     }
10354: # send command
10355:     my $answer=&reply($command,&homeserver($uname,$udom));
10356: # log new user role if status is ok
10357:     if ($answer eq 'ok') {
10358: 	&userrolelog($role,$uname,$udom,$url,$start,$end);
10359:         if (($role eq 'cc') || ($role eq 'in') ||
10360:             ($role eq 'ep') || ($role eq 'ad') ||
10361:             ($role eq 'ta') || ($role eq 'st') ||
10362:             ($role=~/^cr/) || ($role eq 'gr') ||
10363:             ($role eq 'co')) {
10364: # for course roles, perform group memberships changes triggered by role change.
10365:             unless ($role =~ /^gr/) {
10366:                 &Apache::longroup::group_changes($udom,$uname,$url,$role,$origend,
10367:                                                  $origstart,$selfenroll,$context);
10368:             }
10369:             &courserolelog($role,$uname,$udom,$url,$origstart,$origend,$delflag,
10370:                            $selfenroll,$context);
10371:         } elsif (($role eq 'li') || ($role eq 'dg') || ($role eq 'sc') ||
10372:                  ($role eq 'au') || ($role eq 'dc') || ($role eq 'dh') ||
10373:                  ($role eq 'da')) {
10374:             &domainrolelog($role,$uname,$udom,$url,$origstart,$origend,$delflag,
10375:                            $context);
10376:         } elsif (($role eq 'ca') || ($role eq 'aa')) {
10377:             &coauthorrolelog($role,$uname,$udom,$url,$origstart,$origend,$delflag,
10378:                              $context); 
10379:         }
10380:         if ($role eq 'cc') {
10381:             &autoupdate_coowners($url,$end,$start,$uname,$udom);
10382:         }
10383:     }
10384:     return $answer;
10385: }
10386: 
10387: sub autoupdate_coowners {
10388:     my ($url,$end,$start,$uname,$udom) = @_;
10389:     my ($cdom,$cnum) = ($url =~ m{^/($match_domain)/($match_courseid)});
10390:     if (($cdom ne '') && ($cnum ne '')) {
10391:         my $now = time;
10392:         my %domdesign = &Apache::loncommon::get_domainconf($cdom);
10393:         if ($domdesign{$cdom.'.autoassign.co-owners'}) {
10394:             my %coursehash = &coursedescription($cdom.'_'.$cnum);
10395:             my $instcode = $coursehash{'internal.coursecode'};
10396:             my $xlists = $coursehash{'internal.crosslistings'};
10397:             if ($instcode ne '') {
10398:                 if (($start && $start <= $now) && ($end == 0) || ($end > $now)) {
10399:                     unless ($coursehash{'internal.courseowner'} eq $uname.':'.$udom) {
10400:                         my ($delcoowners,@newcoowners,$putresult,$delresult,$coowners);
10401:                         my ($result,$desc) = &auto_validate_instcode($cnum,$cdom,$instcode,$uname.':'.$udom);
10402:                         unless ($result eq 'valid') {
10403:                             if ($xlists ne '') {
10404:                                 foreach my $xlist (split(',',$xlists)) {
10405:                                     my ($inst_crosslist,$lcsec) = split(':',$xlist);
10406:                                     $result =
10407:                                         &auto_validate_inst_crosslist($cnum,$cdom,$instcode,
10408:                                                                       $inst_crosslist,$uname.':'.$udom);
10409:                                     last if ($result eq 'valid');
10410:                                 }
10411:                             }
10412:                         }
10413:                         if ($result eq 'valid') {
10414:                             if ($coursehash{'internal.co-owners'}) {
10415:                                 foreach my $coowner (split(',',$coursehash{'internal.co-owners'})) {
10416:                                     push(@newcoowners,$coowner);
10417:                                 }
10418:                                 unless (grep(/^\Q$uname\E:\Q$udom\E$/,@newcoowners)) {
10419:                                     push(@newcoowners,$uname.':'.$udom);
10420:                                 }
10421:                                 @newcoowners = sort(@newcoowners);
10422:                             } else {
10423:                                 push(@newcoowners,$uname.':'.$udom);
10424:                             }
10425:                         } elsif ($coursehash{'internal.co-owners'}) {
10426:                             foreach my $coowner (split(',',$coursehash{'internal.co-owners'})) {
10427:                                 unless ($coowner eq $uname.':'.$udom) {
10428:                                     push(@newcoowners,$coowner);
10429:                                 }
10430:                             }
10431:                             unless (@newcoowners > 0) {
10432:                                 $delcoowners = 1;
10433:                                 $coowners = '';
10434:                             }
10435:                         }
10436:                         if (@newcoowners || $delcoowners) {
10437:                             &store_coowners($cdom,$cnum,$coursehash{'home'},
10438:                                             $delcoowners,@newcoowners);
10439:                         }
10440:                     }
10441:                 }
10442:             }
10443:         }
10444:     }
10445: }
10446: 
10447: sub store_coowners {
10448:     my ($cdom,$cnum,$chome,$delcoowners,@newcoowners) = @_;
10449:     my $cid = $cdom.'_'.$cnum;
10450:     my ($coowners,$delresult,$putresult);
10451:     if (@newcoowners) {
10452:         $coowners = join(',',@newcoowners);
10453:         my %coownershash = (
10454:                             'internal.co-owners' => $coowners,
10455:                            );
10456:         $putresult = &put('environment',\%coownershash,$cdom,$cnum);
10457:         if ($putresult eq 'ok') {
10458:             if ($env{'course.'.$cid.'.num'} eq $cnum) {
10459:                 &appenv({'course.'.$cid.'.internal.co-owners' => $coowners});
10460:             }
10461:         }
10462:     }
10463:     if ($delcoowners) {
10464:         $delresult = &Apache::lonnet::del('environment',['internal.co-owners'],$cdom,$cnum);
10465:         if ($delresult eq 'ok') {
10466:             if ($env{'course.'.$cid.'.internal.co-owners'}) {
10467:                 &Apache::lonnet::delenv('course.'.$cid.'.internal.co-owners');
10468:             }
10469:         }
10470:     }
10471:     if (($putresult eq 'ok') || ($delresult eq 'ok')) {
10472:         my %crsinfo =
10473:             &Apache::lonnet::courseiddump($cdom,'.',1,'.','.',$cnum,undef,undef,'.');
10474:         if (ref($crsinfo{$cid}) eq 'HASH') {
10475:             $crsinfo{$cid}{'co-owners'} = \@newcoowners;
10476:             my $cidput = &Apache::lonnet::courseidput($cdom,\%crsinfo,$chome,'notime');
10477:         }
10478:     }
10479: }
10480: 
10481: # -------------------------------------------------- Modify user authentication
10482: # Overrides without validation
10483: 
10484: sub modifyuserauth {
10485:     my ($udom,$uname,$umode,$upass)=@_;
10486:     my $uhome=&homeserver($uname,$udom);
10487:     my $allowed;
10488:     if (&allowed('mau',$udom)) {
10489:         $allowed = 1;
10490:     } elsif (($umode eq 'internal') && ($udom eq $env{'user.domain'}) &&
10491:              ($env{'request.course.id'}) && (&allowed('mip',$env{'request.course.id'})) &&
10492:              (!$env{'course.'.$env{'request.course.id'}.'.internal.nopasswdchg'})) {
10493:         my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
10494:         my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
10495:         if (($cdom ne '') && ($cnum ne '')) {
10496:             my $is_owner = &is_course_owner($cdom,$cnum);
10497:             if ($is_owner) {
10498:                 $allowed = 1;
10499:             }
10500:         }
10501:     }
10502:     unless ($allowed) { return 'refused'; }
10503:     &logthis('Call to modify user authentication '.$udom.', '.$uname.', '.
10504:              $umode.' by '.$env{'user.name'}.' at '.$env{'user.domain'}.
10505:              ' in domain '.$env{'request.role.domain'});  
10506:     my $reply=&reply('encrypt:changeuserauth:'.$udom.':'.$uname.':'.$umode.':'.
10507: 		     &escape($upass),$uhome);
10508:     my $ip = &get_requestor_ip();
10509:     &log($env{'user.domain'},$env{'user.name'},$env{'user.home'},
10510:         'Authentication changed for '.$udom.', '.$uname.', '.$umode.
10511:          '(Remote '.$ip.'): '.$reply);
10512:     &log($udom,,$uname,$uhome,
10513:         'Authentication changed by '.$env{'user.domain'}.', '.
10514:                                      $env{'user.name'}.', '.$umode.
10515:          '(Remote '.$ip.'): '.$reply);
10516:     unless ($reply eq 'ok') {
10517:         &logthis('Authentication mode error: '.$reply);
10518: 	return 'error: '.$reply;
10519:     }   
10520:     return 'ok';
10521: }
10522: 
10523: # --------------------------------------------------------------- Modify a user
10524: 
10525: sub modifyuser {
10526:     my ($udom,    $uname, $uid,
10527:         $umode,   $upass, $first,
10528:         $middle,  $last,  $gene,
10529:         $forceid, $desiredhome, $email, $inststatus, $candelete)=@_;
10530:     $udom= &LONCAPA::clean_domain($udom);
10531:     $uname=&LONCAPA::clean_username($uname);
10532:     my $showcandelete = 'none';
10533:     if (ref($candelete) eq 'ARRAY') {
10534:         if (@{$candelete} > 0) {
10535:             $showcandelete = join(', ',@{$candelete});
10536:         }
10537:     }
10538:     &logthis('Call to modify user '.$udom.', '.$uname.', '.$uid.', '.
10539:              $umode.', '.$first.', '.$middle.', '.
10540: 	     $last.', '.$gene.'(forceid: '.$forceid.'; candelete: '.$showcandelete.')'.
10541:              (defined($desiredhome) ? ' desiredhome = '.$desiredhome :
10542:                                      ' desiredhome not specified'). 
10543:              ' by '.$env{'user.name'}.' at '.$env{'user.domain'}.
10544:              ' in domain '.$env{'request.role.domain'});
10545:     my $uhome=&homeserver($uname,$udom,'true');
10546:     my $newuser;
10547:     if ($uhome eq 'no_host') {
10548:         $newuser = 1;
10549:         unless (($umode && ($upass ne '')) || ($umode eq 'localauth') ||
10550:                 ($umode eq 'lti')) {
10551:             return 'error: more information needed to create new user';
10552:         }
10553:     }
10554: # ----------------------------------------------------------------- Create User
10555:     if (($uhome eq 'no_host') && 
10556: 	(($umode && $upass) || ($umode eq 'localauth') || ($umode eq 'lti'))) {
10557:         my $unhome='';
10558:         if (defined($desiredhome) && &host_domain($desiredhome) eq $udom) { 
10559:             $unhome = $desiredhome;
10560: 	} elsif($env{'course.'.$env{'request.course.id'}.'.domain'} eq $udom) {
10561: 	    $unhome=$env{'course.'.$env{'request.course.id'}.'.home'};
10562:         } else { # load balancing routine for determining $unhome
10563:             my $loadm=10000000;
10564: 	    my %servers = &get_servers($udom,'library');
10565: 	    foreach my $tryserver (keys(%servers)) {
10566: 		my $answer=reply('load',$tryserver);
10567: 		if (($answer=~/\d+/) && ($answer<$loadm)) {
10568: 		    $loadm=$answer;
10569: 		    $unhome=$tryserver;
10570: 		}
10571: 	    }
10572:         }
10573:         if (($unhome eq '') || ($unhome eq 'no_host')) {
10574: 	    return 'error: unable to find a home server for '.$uname.
10575:                    ' in domain '.$udom;
10576:         }
10577:         my $reply=&reply('encrypt:makeuser:'.$udom.':'.$uname.':'.$umode.':'.
10578:                          &escape($upass),$unhome);
10579: 	unless ($reply eq 'ok') {
10580:             return 'error: '.$reply;
10581:         }   
10582:         $uhome=&homeserver($uname,$udom,'true');
10583:         if (($uhome eq '') || ($uhome eq 'no_host') || ($uhome ne $unhome)) {
10584: 	    return 'error: unable verify users home machine.';
10585:         }
10586:     }   # End of creation of new user
10587: # ---------------------------------------------------------------------- Add ID
10588:     if ($uid) {
10589:        $uid=~tr/A-Z/a-z/;
10590:        my %uidhash=&idrget($udom,$uname);
10591:        if (($uidhash{$uname}) && ($uidhash{$uname}!~/error\:/) 
10592:          && (!$forceid)) {
10593: 	  unless ($uid eq $uidhash{$uname}) {
10594: 	      return 'error: user id "'.$uid.'" does not match '.
10595:                   'current user id "'.$uidhash{$uname}.'".';
10596:           }
10597:        } else {
10598: 	  &idput($udom,{$uname => $uid},$uhome,'ids');
10599:        }
10600:     }
10601: # -------------------------------------------------------------- Add names, etc
10602:     my @tmp=&get('environment',
10603: 		   ['firstname','middlename','lastname','generation','id',
10604:                     'permanentemail','inststatus'],
10605: 		   $udom,$uname);
10606:     my (%names,%oldnames);
10607:     if ($tmp[0] =~ m/^error:.*/) { 
10608:         %names=(); 
10609:     } else {
10610:         %names = @tmp;
10611:         %oldnames = %names;
10612:     }
10613: #
10614: # If name, email and/or uid are blank (e.g., because an uploaded file
10615: # of users did not contain them), do not overwrite existing values
10616: # unless field is in $candelete array ref.  
10617: #
10618: 
10619:     my @fields = ('firstname','middlename','lastname','generation',
10620:                   'permanentemail','id');
10621:     my %newvalues;
10622:     if (ref($candelete) eq 'ARRAY') {
10623:         foreach my $field (@fields) {
10624:             if (grep(/^\Q$field\E$/,@{$candelete})) {
10625:                 if ($field eq 'firstname') {
10626:                     $names{$field} = $first;
10627:                 } elsif ($field eq 'middlename') {
10628:                     $names{$field} = $middle;
10629:                 } elsif ($field eq 'lastname') {
10630:                     $names{$field} = $last;
10631:                 } elsif ($field eq 'generation') { 
10632:                     $names{$field} = $gene;
10633:                 } elsif ($field eq 'permanentemail') {
10634:                     $names{$field} = $email;
10635:                 } elsif ($field eq 'id') {
10636:                     $names{$field}  = $uid;
10637:                 }
10638:             }
10639:         }
10640:     }
10641:     if ($first)  { $names{'firstname'}  = $first; }
10642:     if (defined($middle)) { $names{'middlename'} = $middle; }
10643:     if ($last)   { $names{'lastname'}   = $last; }
10644:     if (defined($gene))   { $names{'generation'} = $gene; }
10645:     if ($email) {
10646:        $email=~s/[^\w\@\.\-\,]//gs;
10647:        if ($email=~/\@/) { $names{'permanentemail'} = $email; }
10648:     }
10649:     if ($uid) { $names{'id'}  = $uid; }
10650:     if (defined($inststatus)) {
10651:         $names{'inststatus'} = '';
10652:         my ($usertypes,$typesorder) = &retrieve_inst_usertypes($udom);
10653:         if (ref($usertypes) eq 'HASH') {
10654:             my @okstatuses; 
10655:             foreach my $item (split(/:/,$inststatus)) {
10656:                 if (defined($usertypes->{$item})) {
10657:                     push(@okstatuses,$item);  
10658:                 }
10659:             }
10660:             if (@okstatuses) {
10661:                 $names{'inststatus'} = join(':', map { &escape($_); } @okstatuses);
10662:             }
10663:         }
10664:     }
10665:     my $logmsg = $udom.', '.$uname.', '.$uid.', '.
10666:                  $umode.', '.$first.', '.$middle.', '.
10667:                  $last.', '.$gene.', '.$email.', '.$inststatus;
10668:     if ($env{'user.name'} ne '' && $env{'user.domain'}) {
10669:         $logmsg .= ' by '.$env{'user.name'}.' at '.$env{'user.domain'};
10670:     } else {
10671:         $logmsg .= ' during self creation';
10672:     }
10673:     my $changed;
10674:     if ($newuser) {
10675:         $changed = 1;
10676:     } else {
10677:         foreach my $field (@fields) {
10678:             if ($names{$field} ne $oldnames{$field}) {
10679:                 $changed = 1;
10680:                 last;
10681:             }
10682:         }
10683:     }
10684:     unless ($changed) {
10685:         $logmsg = 'No changes in user information needed for: '.$logmsg;
10686:         &logthis($logmsg);
10687:         return 'ok';
10688:     }
10689:     my $reply = &put('environment', \%names, $udom,$uname);
10690:     if ($reply ne 'ok') { 
10691:         return 'error: '.$reply;
10692:     }
10693:     if ($names{'permanentemail'} ne $oldnames{'permanentemail'}) {
10694:         &Apache::lonnet::devalidate_cache_new('emailscache',$uname.':'.$udom);
10695:     }
10696:     my $sqlresult = &update_allusers_table($uname,$udom,\%names);
10697:     &devalidate_cache_new('namescache',$uname.':'.$udom);
10698:     $logmsg = 'Success modifying user '.$logmsg;
10699:     &logthis($logmsg);
10700:     return 'ok';
10701: }
10702: 
10703: # -------------------------------------------------------------- Modify student
10704: 
10705: sub modifystudent {
10706:     my ($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene,$usec,
10707:         $end,$start,$forceid,$desiredhome,$email,$type,$locktype,$cid,
10708:         $selfenroll,$context,$inststatus,$credits,$instsec)=@_;
10709:     if (!$cid) {
10710: 	unless ($cid=$env{'request.course.id'}) {
10711: 	    return 'not_in_class';
10712: 	}
10713:     }
10714: # --------------------------------------------------------------- Make the user
10715:     my $reply=&modifyuser
10716: 	($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene,$forceid,
10717:          $desiredhome,$email,$inststatus);
10718:     unless ($reply eq 'ok') { return $reply; }
10719:     # This will cause &modify_student_enrollment to get the uid from the
10720:     # student's environment
10721:     $uid = undef if (!$forceid);
10722:     $reply = &modify_student_enrollment($udom,$uname,$uid,$first,$middle,$last,
10723:                                         $gene,$usec,$end,$start,$type,$locktype,
10724:                                         $cid,$selfenroll,$context,$credits,$instsec);
10725:     return $reply;
10726: }
10727: 
10728: sub modify_student_enrollment {
10729:     my ($udom,$uname,$uid,$first,$middle,$last,$gene,$usec,$end,$start,$type,
10730:         $locktype,$cid,$selfenroll,$context,$credits,$instsec) = @_;
10731:     my ($cdom,$cnum,$chome);
10732:     if (!$cid) {
10733: 	unless ($cid=$env{'request.course.id'}) {
10734: 	    return 'not_in_class';
10735: 	}
10736: 	$cdom=$env{'course.'.$cid.'.domain'};
10737: 	$cnum=$env{'course.'.$cid.'.num'};
10738:     } else {
10739: 	($cdom,$cnum)=split(/_/,$cid);
10740:     }
10741:     $chome=$env{'course.'.$cid.'.home'};
10742:     if (!$chome) {
10743: 	$chome=&homeserver($cnum,$cdom);
10744:     }
10745:     if (!$chome) { return 'unknown_course'; }
10746:     # Make sure the user exists
10747:     my $uhome=&homeserver($uname,$udom);
10748:     if (($uhome eq '') || ($uhome eq 'no_host')) { 
10749: 	return 'error: no such user';
10750:     }
10751:     # Get student data if we were not given enough information
10752:     if (!defined($first)  || $first  eq '' || 
10753:         !defined($last)   || $last   eq '' || 
10754:         !defined($uid)    || $uid    eq '' || 
10755:         !defined($middle) || $middle eq '' || 
10756:         !defined($gene)   || $gene   eq '') {
10757:         # They did not supply us with enough data to enroll the student, so
10758:         # we need to pick up more information.
10759:         my %tmp = &get('environment',
10760:                        ['firstname','middlename','lastname', 'generation','id']
10761:                        ,$udom,$uname);
10762: 
10763:         #foreach my $key (keys(%tmp)) {
10764:         #    &logthis("key $key = ".$tmp{$key});
10765:         #}
10766:         $first  = $tmp{'firstname'}  if (!defined($first)  || $first  eq '');
10767:         $middle = $tmp{'middlename'} if (!defined($middle) || $middle eq '');
10768:         $last   = $tmp{'lastname'}   if (!defined($last)   || $last eq '');
10769:         $gene   = $tmp{'generation'} if (!defined($gene)   || $gene eq '');
10770:         $uid    = $tmp{'id'}         if (!defined($uid)    || $uid  eq '');
10771:     }
10772:     my $fullname = &format_name($first,$middle,$last,$gene,'lastname');
10773:     my $user = "$uname:$udom";
10774:     my %old_entry = &Apache::lonnet::get('classlist',[$user],$cdom,$cnum);
10775:     my $reply=cput('classlist',
10776: 		   {$user => 
10777: 			join(':',$end,$start,$uid,$usec,$fullname,$type,$locktype,$credits,$instsec) },
10778: 		   $cdom,$cnum);
10779:     if (($reply eq 'ok') || ($reply eq 'delayed')) {
10780:         &devalidate_getsection_cache($udom,$uname,$cid);
10781:     } else { 
10782: 	return 'error: '.$reply;
10783:     }
10784:     # Add student role to user
10785:     my $uurl='/'.$cid;
10786:     $uurl=~s/\_/\//g;
10787:     if ($usec) {
10788: 	$uurl.='/'.$usec;
10789:     }
10790:     my $result = &assignrole($udom,$uname,$uurl,'st',$end,$start,undef,
10791:                              $selfenroll,$context);
10792:     if ($result ne 'ok') {
10793:         if ($old_entry{$user} ne '') {
10794:             $reply = &cput('classlist',\%old_entry,$cdom,$cnum);
10795:         } else {
10796:             $reply = &del('classlist',[$user],$cdom,$cnum);
10797:         }
10798:     }
10799:     return $result; 
10800: }
10801: 
10802: sub format_name {
10803:     my ($firstname,$middlename,$lastname,$generation,$first)=@_;
10804:     my $name;
10805:     if ($first ne 'lastname') {
10806: 	$name=$firstname.' '.$middlename.' '.$lastname.' '.$generation;
10807:     } else {
10808: 	if ($lastname=~/\S/) {
10809: 	    $name.= $lastname.' '.$generation.', '.$firstname.' '.$middlename;
10810: 	    $name=~s/\s+,/,/;
10811: 	} else {
10812: 	    $name.= $firstname.' '.$middlename.' '.$generation;
10813: 	}
10814:     }
10815:     $name=~s/^\s+//;
10816:     $name=~s/\s+$//;
10817:     $name=~s/\s+/ /g;
10818:     return $name;
10819: }
10820: 
10821: # ------------------------------------------------- Write to course preferences
10822: 
10823: sub writecoursepref {
10824:     my ($courseid,%prefs)=@_;
10825:     $courseid=~s/^\///;
10826:     $courseid=~s/\_/\//g;
10827:     my ($cdomain,$cnum)=split(/\//,$courseid);
10828:     my $chome=homeserver($cnum,$cdomain);
10829:     if (($chome eq '') || ($chome eq 'no_host')) { 
10830: 	return 'error: no such course';
10831:     }
10832:     my $cstring='';
10833:     foreach my $pref (keys(%prefs)) {
10834: 	$cstring.=&escape($pref).'='.&escape($prefs{$pref}).'&';
10835:     }
10836:     $cstring=~s/\&$//;
10837:     return reply('put:'.$cdomain.':'.$cnum.':environment:'.$cstring,$chome);
10838: }
10839: 
10840: # ---------------------------------------------------------- Make/modify course
10841: 
10842: sub createcourse {
10843:     my ($udom,$description,$url,$course_server,$nonstandard,$inst_code,
10844:         $course_owner,$crstype,$cnum,$context,$category,$callercontext)=@_;
10845:     $url=&declutter($url);
10846:     my $cid='';
10847:     if ($context eq 'requestcourses') {
10848:         my $can_create = 0;
10849:         my ($ownername,$ownerdom) = split(':',$course_owner);
10850:         if ($udom eq $ownerdom) {
10851:             my $reload;
10852:             if (($callercontext eq 'auto') &&
10853:                ($ownerdom eq $env{'user.domain'}) && ($ownername eq $env{'user.name'})) {
10854:                 $reload = 'reload';
10855:             }
10856:             if (&usertools_access($ownername,$ownerdom,$category,$reload,
10857:                                   $context)) {
10858:                 $can_create = 1;
10859:             }
10860:         } else {
10861:             my %userenv = &userenvironment($ownerdom,$ownername,'reqcrsotherdom.'.
10862:                                            $category);
10863:             if ($userenv{'reqcrsotherdom.'.$category} ne '') {
10864:                 my @curr = split(',',$userenv{'reqcrsotherdom.'.$category});
10865:                 if (@curr > 0) {
10866:                     my @options = qw(approval validate autolimit);
10867:                     my $optregex = join('|',@options);
10868:                     if (grep(/^\Q$udom\E:($optregex)(=?\d*)$/,@curr)) {
10869:                         $can_create = 1;
10870:                     }
10871:                 }
10872:             }
10873:         }
10874:         if ($can_create) {
10875:             unless ($ownername eq $env{'user.name'} && $ownerdom eq $env{'user.domain'}) {
10876:                 unless (&allowed('ccc',$udom)) {
10877:                     return 'refused'; 
10878:                 }
10879:             }
10880:         } else {
10881:             return 'refused';
10882:         }
10883:     } elsif (!&allowed('ccc',$udom)) {
10884:         return 'refused';
10885:     }
10886: # --------------------------------------------------------------- Get Unique ID
10887:     my $uname;
10888:     if ($cnum =~ /^$match_courseid$/) {
10889:         my $chome=&homeserver($cnum,$udom,'true');
10890:         if (($chome eq '') || ($chome eq 'no_host')) {
10891:             $uname = $cnum;
10892:         } else {
10893:             $uname = &generate_coursenum($udom,$crstype);
10894:         }
10895:     } else {
10896:         $uname = &generate_coursenum($udom,$crstype);
10897:     }
10898:     return $uname if ($uname =~ /^error/);
10899: # -------------------------------------------------- Check supplied server name
10900:     if (!defined($course_server)) {
10901:         if (defined(&domain($udom,'primary'))) {
10902:             $course_server = &domain($udom,'primary');
10903:         } else {
10904:             $course_server = $env{'user.home'}; 
10905:         }
10906:     }
10907:     my %host_servers =
10908:         &Apache::lonnet::get_servers($udom,'library');
10909:     unless ($host_servers{$course_server}) {
10910:         return 'error: invalid home server for course: '.$course_server;
10911:     }
10912: # ------------------------------------------------------------- Make the course
10913:     my $reply=&reply('encrypt:makeuser:'.$udom.':'.$uname.':none::',
10914:                       $course_server);
10915:     unless ($reply eq 'ok') { return 'error: '.$reply; }
10916:     my $uhome=&homeserver($uname,$udom,'true');
10917:     if (($uhome eq '') || ($uhome eq 'no_host')) { 
10918: 	return 'error: no such course';
10919:     }
10920: # ----------------------------------------------------------------- Course made
10921: # log existence
10922:     my $now = time;
10923:     my $newcourse = {
10924:                     $udom.'_'.$uname => {
10925:                                      description => $description,
10926:                                      inst_code   => $inst_code,
10927:                                      owner       => $course_owner,
10928:                                      type        => $crstype,
10929:                                      creator     => $env{'user.name'}.':'.
10930:                                                     $env{'user.domain'},
10931:                                      created     => $now,
10932:                                      context     => $context,
10933:                                                 },
10934:                     };
10935:     &courseidput($udom,$newcourse,$uhome,'notime');
10936: # set toplevel url
10937:     my $topurl=$url;
10938:     unless ($nonstandard) {
10939: # ------------------------------------------ For standard courses, make top url
10940:         my $mapurl=&clutter($url);
10941:         if ($mapurl eq '/res/') { $mapurl=''; }
10942:         $env{'form.initmap'}=(<<ENDINITMAP);
10943: <map>
10944: <resource id="1" type="start"></resource>
10945: <resource id="2" src="$mapurl"></resource>
10946: <resource id="3" type="finish"></resource>
10947: <link index="1" from="1" to="2"></link>
10948: <link index="2" from="2" to="3"></link>
10949: </map>
10950: ENDINITMAP
10951:         $topurl=&declutter(
10952:         &finishuserfileupload($uname,$udom,'initmap','default.sequence')
10953:                           );
10954:     }
10955: # ----------------------------------------------------------- Write preferences
10956:     &writecoursepref($udom.'_'.$uname,
10957:                      ('description'              => $description,
10958:                       'url'                      => $topurl,
10959:                       'internal.creator'         => $env{'user.name'}.':'.
10960:                                                     $env{'user.domain'},
10961:                       'internal.created'         => $now,
10962:                       'internal.creationcontext' => $context)
10963:                     );
10964:     return '/'.$udom.'/'.$uname;
10965: }
10966: 
10967: # ------------------------------------------------------------------- Create ID
10968: sub generate_coursenum {
10969:     my ($udom,$crstype) = @_;
10970:     my $domdesc = &domain($udom);
10971:     return 'error: invalid domain' if ($domdesc eq '');
10972:     my $first;
10973:     if ($crstype eq 'Community') {
10974:         $first = '0';
10975:     } else {
10976:         $first = int(1+rand(9)); 
10977:     } 
10978:     my $uname=$first.
10979:         ('a'..'z','A'..'Z','0'..'9')[int(rand(62))].
10980:         substr($$.time,0,5).unpack("H8",pack("I32",time)).
10981:         unpack("H2",pack("I32",int(rand(255)))).$perlvar{'lonHostID'};
10982: # ----------------------------------------------- Make sure that does not exist
10983:     my $uhome=&homeserver($uname,$udom,'true');
10984:     unless (($uhome eq '') || ($uhome eq 'no_host')) {
10985:         if ($crstype eq 'Community') {
10986:             $first = '0';
10987:         } else {
10988:             $first = int(1+rand(9));
10989:         }
10990:         $uname=$first.
10991:                ('a'..'z','A'..'Z','0'..'9')[int(rand(62))].
10992:                substr($$.time,0,5).unpack("H8",pack("I32",time)).
10993:                unpack("H2",pack("I32",int(rand(255)))).$perlvar{'lonHostID'};
10994:         $uhome=&homeserver($uname,$udom,'true');
10995:         unless (($uhome eq '') || ($uhome eq 'no_host')) {
10996:             return 'error: unable to generate unique course-ID';
10997:         }
10998:     }
10999:     return $uname;
11000: }
11001: 
11002: sub is_course {
11003:     my ($cdom, $cnum) = scalar(@_) == 1 ? 
11004:          ($_[0] =~ /^($match_domain)_($match_courseid)$/)  :  @_;
11005: 
11006:     return unless (($cdom =~ /^$match_domain$/) && ($cnum =~ /^$match_courseid$/));
11007:     my $uhome=&homeserver($cnum,$cdom);
11008:     my $iscourse;
11009:     if (grep { $_ eq $uhome } current_machine_ids()) {
11010:         $iscourse = &LONCAPA::Lond::is_course($cdom,$cnum);
11011:     } else {
11012:         my $hashid = $cdom.':'.$cnum;
11013:         ($iscourse,my $cached) = &is_cached_new('iscourse',$hashid);
11014:         unless (defined($cached)) {
11015:             my %courses = &courseiddump($cdom, '.', 1, '.', '.',
11016:                                         $cnum,undef,undef,'.');
11017:             $iscourse = 0;
11018:             if (exists($courses{$cdom.'_'.$cnum})) {
11019:                 $iscourse = 1;
11020:             }
11021:             &do_cache_new('iscourse',$hashid,$iscourse,3600);
11022:         }
11023:     }
11024:     return unless ($iscourse);
11025:     return wantarray ? ($cdom, $cnum) : $cdom.'_'.$cnum;
11026: }
11027: 
11028: sub store_userdata {
11029:     my ($storehash,$datakey,$namespace,$udom,$uname) = @_;
11030:     my $result;
11031:     if ($datakey ne '') {
11032:         if (ref($storehash) eq 'HASH') {
11033:             if ($udom eq '' || $uname eq '') {
11034:                 $udom = $env{'user.domain'};
11035:                 $uname = $env{'user.name'};
11036:             }
11037:             my $uhome=&homeserver($uname,$udom);
11038:             if (($uhome eq '') || ($uhome eq 'no_host')) {
11039:                 $result = 'error: no_host';
11040:             } else {
11041:                 $storehash->{'ip'} = &get_requestor_ip();
11042:                 $storehash->{'host'} = $perlvar{'lonHostID'};
11043: 
11044:                 my $namevalue='';
11045:                 foreach my $key (keys(%{$storehash})) {
11046:                     $namevalue.=&escape($key).'='.&freeze_escape($$storehash{$key}).'&';
11047:                 }
11048:                 $namevalue=~s/\&$//;
11049:                 unless ($namespace eq 'courserequests') {
11050:                     $datakey = &escape($datakey);
11051:                 }
11052:                 $result =  &reply("store:$udom:$uname:$namespace:$datakey:".
11053:                                   $namevalue,$uhome);
11054:             }
11055:         } else {
11056:             $result = 'error: data to store was not a hash reference'; 
11057:         }
11058:     } else {
11059:         $result= 'error: invalid requestkey'; 
11060:     }
11061:     return $result;
11062: }
11063: 
11064: # ---------------------------------------------------------- Assign Custom Role
11065: 
11066: sub assigncustomrole {
11067:     my ($udom,$uname,$url,$rdom,$rnam,$rolename,$end,$start,$deleteflag,$selfenroll,$context)=@_;
11068:     return &assignrole($udom,$uname,$url,'cr/'.$rdom.'/'.$rnam.'/'.$rolename,
11069:                        $end,$start,$deleteflag,$selfenroll,$context);
11070: }
11071: 
11072: # ----------------------------------------------------------------- Revoke Role
11073: 
11074: sub revokerole {
11075:     my ($udom,$uname,$url,$role,$deleteflag,$selfenroll,$context)=@_;
11076:     my $now=time;
11077:     return &assignrole($udom,$uname,$url,$role,$now,undef,$deleteflag,$selfenroll,$context);
11078: }
11079: 
11080: # ---------------------------------------------------------- Revoke Custom Role
11081: 
11082: sub revokecustomrole {
11083:     my ($udom,$uname,$url,$rdom,$rnam,$rolename,$deleteflag,$selfenroll,$context)=@_;
11084:     my $now=time;
11085:     return &assigncustomrole($udom,$uname,$url,$rdom,$rnam,$rolename,$now,
11086:            $deleteflag,$selfenroll,$context);
11087: }
11088: 
11089: # ------------------------------------------------------------ Disk usage
11090: sub diskusage {
11091:     my ($udom,$uname,$directorypath,$getpropath)=@_;
11092:     $directorypath =~ s/\/$//;
11093:     my $listing=&reply('du2:'.&escape($directorypath).':'
11094:                        .&escape($getpropath).':'.&escape($uname).':'
11095:                        .&escape($udom),homeserver($uname,$udom));
11096:     if ($listing eq 'unknown_cmd') {
11097:         if ($getpropath) {
11098:             $directorypath = &propath($udom,$uname).'/'.$directorypath; 
11099:         }
11100:         $listing = &reply('du:'.$directorypath,homeserver($uname,$udom));
11101:     }
11102:     return $listing;
11103: }
11104: 
11105: sub is_locked {
11106:     my ($file_name, $domain, $user, $which) = @_;
11107:     my @check;
11108:     my $is_locked;
11109:     push (@check,$file_name);
11110:     my %locked = &get('file_permissions',\@check,
11111: 		      $env{'user.domain'},$env{'user.name'});
11112:     my ($tmp)=keys(%locked);
11113:     if ($tmp=~/^error:/) { undef(%locked); }
11114:     
11115:     if (ref($locked{$file_name}) eq 'ARRAY') {
11116:         $is_locked = 'false';
11117:         foreach my $entry (@{$locked{$file_name}}) {
11118:            if (ref($entry) eq 'ARRAY') {
11119:                $is_locked = 'true';
11120:                if (ref($which) eq 'ARRAY') {
11121:                    push(@{$which},$entry);
11122:                } else {
11123:                    last;
11124:                }
11125:            }
11126:        }
11127:     } else {
11128:         $is_locked = 'false';
11129:     }
11130:     return $is_locked;
11131: }
11132: 
11133: sub declutter_portfile {
11134:     my ($file) = @_;
11135:     $file =~ s{^(/portfolio/|portfolio/)}{/};
11136:     return $file;
11137: }
11138: 
11139: # ------------------------------------------------------------- Mark as Read Only
11140: 
11141: sub mark_as_readonly {
11142:     my ($domain,$user,$files,$what) = @_;
11143:     my %current_permissions = &dump('file_permissions',$domain,$user);
11144:     my ($tmp)=keys(%current_permissions);
11145:     if ($tmp=~/^error:/) { undef(%current_permissions); }
11146:     foreach my $file (@{$files}) {
11147: 	$file = &declutter_portfile($file);
11148:         push(@{$current_permissions{$file}},$what);
11149:     }
11150:     &put('file_permissions',\%current_permissions,$domain,$user);
11151:     return;
11152: }
11153: 
11154: # ------------------------------------------------------------Save Selected Files
11155: 
11156: sub save_selected_files {
11157:     my ($user, $path, @files) = @_;
11158:     my $filename = $user."savedfiles";
11159:     my @other_files = &files_not_in_path($user, $path);
11160:     open (OUT,'>',LONCAPA::tempdir().$filename);
11161:     foreach my $file (@files) {
11162:         print (OUT $env{'form.currentpath'}.$file."\n");
11163:     }
11164:     foreach my $file (@other_files) {
11165:         print (OUT $file."\n");
11166:     }
11167:     close (OUT);
11168:     return 'ok';
11169: }
11170: 
11171: sub clear_selected_files {
11172:     my ($user) = @_;
11173:     my $filename = $user."savedfiles";
11174:     open (OUT,'>',LONCAPA::tempdir().$filename);
11175:     print (OUT undef);
11176:     close (OUT);
11177:     return ("ok");    
11178: }
11179: 
11180: sub files_in_path {
11181:     my ($user, $path) = @_;
11182:     my $filename = $user."savedfiles";
11183:     my %return_files;
11184:     open (IN,'<',LONCAPA::tempdir().$filename);
11185:     while (my $line_in = <IN>) {
11186:         chomp ($line_in);
11187:         my @paths_and_file = split (m!/!, $line_in);
11188:         my $file_part = pop (@paths_and_file);
11189:         my $path_part = join ('/', @paths_and_file);
11190:         $path_part.='/';
11191:         my $path_and_file = $path_part.$file_part;
11192:         if ($path_part eq $path) {
11193:             $return_files{$file_part}= 'selected';
11194:         }
11195:     }
11196:     close (IN);
11197:     return (\%return_files);
11198: }
11199: 
11200: # called in portfolio select mode, to show files selected NOT in current directory
11201: sub files_not_in_path {
11202:     my ($user, $path) = @_;
11203:     my $filename = $user."savedfiles";
11204:     my @return_files;
11205:     my $path_part;
11206:     open(IN, '<',LONCAPA::tempdir().$filename);
11207:     while (my $line = <IN>) {
11208:         #ok, I know it's clunky, but I want it to work
11209:         my @paths_and_file = split(m|/|, $line);
11210:         my $file_part = pop(@paths_and_file);
11211:         chomp($file_part);
11212:         my $path_part = join('/', @paths_and_file);
11213:         $path_part .= '/';
11214:         my $path_and_file = $path_part.$file_part;
11215:         if ($path_part ne $path) {
11216:             push(@return_files, ($path_and_file));
11217:         }
11218:     }
11219:     close(OUT);
11220:     return (@return_files);
11221: }
11222: 
11223: #------------------------------Submitted/Handedback Portfolio Files Versioning
11224:  
11225: sub portfiles_versioning {
11226:     my ($symb,$domain,$stu_name,$portfiles,$versioned_portfiles) = @_;
11227:     my $portfolio_root = '/userfiles/portfolio';
11228:     return unless ((ref($portfiles) eq 'ARRAY') && (ref($versioned_portfiles) eq 'ARRAY'));
11229:     foreach my $file (@{$portfiles}) {
11230:         &unmark_as_readonly($domain,$stu_name,[$symb,$env{'request.course.id'}],$file);
11231:         my ($directory,$answer_file) =($file =~ /^(.*?)([^\/]*)$/);
11232:         my ($answer_name,$answer_ver,$answer_ext) = &file_name_version_ext($answer_file);
11233:         my $getpropath = 1;
11234:         my ($dir_list,$listerror) = &dirlist($portfolio_root.$directory,$domain,
11235:                                              $stu_name,$getpropath);
11236:         my $version = &get_next_version($answer_name,$answer_ext,$dir_list);
11237:         my $new_answer = 
11238:             &version_selected_portfile($domain,$stu_name,$directory,$answer_file,$version);
11239:         if ($new_answer ne 'problem getting file') {
11240:             push(@{$versioned_portfiles}, $directory.$new_answer);
11241:             &mark_as_readonly($domain,$stu_name,[$directory.$new_answer],
11242:                               [$symb,$env{'request.course.id'},'graded']);
11243:         }
11244:     }
11245: }
11246: 
11247: sub get_next_version {
11248:     my ($answer_name, $answer_ext, $dir_list) = @_;
11249:     my $version;
11250:     if (ref($dir_list) eq 'ARRAY') {
11251:         foreach my $row (@{$dir_list}) {
11252:             my ($file) = split(/\&/,$row,2);
11253:             my ($file_name,$file_version,$file_ext) =
11254:                 &file_name_version_ext($file);
11255:             if (($file_name eq $answer_name) &&
11256:                 ($file_ext eq $answer_ext)) {
11257:                      # gets here if filename and extension match,
11258:                      # regardless of version
11259:                 if ($file_version ne '') {
11260:                     # a versioned file is found  so save it for later
11261:                     if ($file_version > $version) {
11262:                         $version = $file_version;
11263:                     }
11264:                 }
11265:             }
11266:         }
11267:     }
11268:     $version ++;
11269:     return($version);
11270: }
11271: 
11272: sub version_selected_portfile {
11273:     my ($domain,$stu_name,$directory,$file_name,$version) = @_;
11274:     my ($answer_name,$answer_ver,$answer_ext) =
11275:         &file_name_version_ext($file_name);
11276:     my $new_answer;
11277:     $env{'form.copy'} =
11278:         &getfile("/uploaded/$domain/$stu_name/portfolio$directory$file_name");
11279:     if($env{'form.copy'} eq '-1') {
11280:         $new_answer = 'problem getting file';
11281:     } else {
11282:         $new_answer = $answer_name.'.'.$version.'.'.$answer_ext;
11283:         my $copy_result = 
11284:             &finishuserfileupload($stu_name,$domain,'copy',
11285:                                   '/portfolio'.$directory.$new_answer);
11286:     }
11287:     undef($env{'form.copy'});
11288:     return ($new_answer);
11289: }
11290: 
11291: sub file_name_version_ext {
11292:     my ($file)=@_;
11293:     my @file_parts = split(/\./, $file);
11294:     my ($name,$version,$ext);
11295:     if (@file_parts > 1) {
11296:         $ext=pop(@file_parts);
11297:         if (@file_parts > 1 && $file_parts[-1] =~ /^\d+$/) {
11298:             $version=pop(@file_parts);
11299:         }
11300:         $name=join('.',@file_parts);
11301:     } else {
11302:         $name=join('.',@file_parts);
11303:     }
11304:     return($name,$version,$ext);
11305: }
11306: 
11307: #----------------------------------------------Get portfolio file permissions
11308: 
11309: sub get_portfile_permissions {
11310:     my ($domain,$user) = @_;
11311:     my %current_permissions = &dump('file_permissions',$domain,$user);
11312:     my ($tmp)=keys(%current_permissions);
11313:     if ($tmp=~/^error:/) { undef(%current_permissions); }
11314:     return \%current_permissions;
11315: }
11316: 
11317: #---------------------------------------------Get portfolio file access controls
11318: 
11319: sub get_access_controls {
11320:     my ($current_permissions,$group,$file) = @_;
11321:     my %access;
11322:     my $real_file = $file;
11323:     $file =~ s/\.meta$//;
11324:     if (defined($file)) {
11325:         if (ref($$current_permissions{$file."\0".'accesscontrol'}) eq 'HASH') {
11326:             foreach my $control (keys(%{$$current_permissions{$file."\0".'accesscontrol'}})) {
11327:                 $access{$real_file}{$control} = $$current_permissions{$file."\0".$control};
11328:             }
11329:         }
11330:     } else {
11331:         foreach my $key (keys(%{$current_permissions})) {
11332:             if ($key =~ /\0accesscontrol$/) {
11333:                 if (defined($group)) {
11334:                     if ($key !~ m-^\Q$group\E/-) {
11335:                         next;
11336:                     }
11337:                 }
11338:                 my ($fullpath) = split(/\0/,$key);
11339:                 if (ref($$current_permissions{$key}) eq 'HASH') {
11340:                     foreach my $control (keys(%{$$current_permissions{$key}})) {
11341:                         $access{$fullpath}{$control}=$$current_permissions{$fullpath."\0".$control};
11342:                     }
11343:                 }
11344:             }
11345:         }
11346:     }
11347:     return %access;
11348: }
11349: 
11350: sub modify_access_controls {
11351:     my ($file_name,$changes,$domain,$user)=@_;
11352:     my ($outcome,$deloutcome);
11353:     my %store_permissions;
11354:     my %new_values;
11355:     my %new_control;
11356:     my %translation;
11357:     my @deletions = ();
11358:     my $now = time;
11359:     if (exists($$changes{'activate'})) {
11360:         if (ref($$changes{'activate'}) eq 'HASH') {
11361:             my @newitems = sort(keys(%{$$changes{'activate'}}));
11362:             my $numnew = scalar(@newitems);
11363:             for (my $i=0; $i<$numnew; $i++) {
11364:                 my $newkey = $newitems[$i];
11365:                 my $newid = &Apache::loncommon::get_cgi_id();
11366:                 if ($newkey =~ /^\d+:/) { 
11367:                     $newkey =~ s/^(\d+)/$newid/;
11368:                     $translation{$1} = $newid;
11369:                 } elsif ($newkey =~ /^\d+_\d+_\d+:/) {
11370:                     $newkey =~ s/^(\d+_\d+_\d+)/$newid/;
11371:                     $translation{$1} = $newid;
11372:                 }
11373:                 $new_values{$file_name."\0".$newkey} = 
11374:                                           $$changes{'activate'}{$newitems[$i]};
11375:                 $new_control{$newkey} = $now;
11376:             }
11377:         }
11378:     }
11379:     my %todelete;
11380:     my %changed_items;
11381:     foreach my $action ('delete','update') {
11382:         if (exists($$changes{$action})) {
11383:             if (ref($$changes{$action}) eq 'HASH') {
11384:                 foreach my $key (keys(%{$$changes{$action}})) {
11385:                     my ($itemnum) = ($key =~ /^([^:]+):/);
11386:                     if ($action eq 'delete') { 
11387:                         $todelete{$itemnum} = 1;
11388:                     } else {
11389:                         $changed_items{$itemnum} = $key;
11390:                     }
11391:                 }
11392:             }
11393:         }
11394:     }
11395:     # get lock on access controls for file.
11396:     my $lockhash = {
11397:                   $file_name."\0".'locked_access_records' => $env{'user.name'}.
11398:                                                        ':'.$env{'user.domain'},
11399:                    }; 
11400:     my $tries = 0;
11401:     my $gotlock = &newput('file_permissions',$lockhash,$domain,$user);
11402:    
11403:     while (($gotlock ne 'ok') && $tries < 10) {
11404:         $tries ++;
11405:         sleep(0.1);
11406:         $gotlock = &newput('file_permissions',$lockhash,$domain,$user);
11407:     }
11408:     if ($gotlock eq 'ok') {
11409:         my %curr_permissions = &dump('file_permissions',$domain,$user,$file_name);
11410:         my ($tmp)=keys(%curr_permissions);
11411:         if ($tmp=~/^error:/) { undef(%curr_permissions); }
11412:         if (exists($curr_permissions{$file_name."\0".'accesscontrol'})) {
11413:             my $curr_controls = $curr_permissions{$file_name."\0".'accesscontrol'};
11414:             if (ref($curr_controls) eq 'HASH') {
11415:                 foreach my $control_item (keys(%{$curr_controls})) {
11416:                     my ($itemnum) = ($control_item =~ /^([^:]+):/);
11417:                     if (defined($todelete{$itemnum})) {
11418:                         push(@deletions,$file_name."\0".$control_item);
11419:                     } else {
11420:                         if (defined($changed_items{$itemnum})) {
11421:                             $new_control{$changed_items{$itemnum}} = $now;
11422:                             push(@deletions,$file_name."\0".$control_item);
11423:                             $new_values{$file_name."\0".$changed_items{$itemnum}} = $$changes{'update'}{$changed_items{$itemnum}};
11424:                         } else {
11425:                             $new_control{$control_item} = $$curr_controls{$control_item};
11426:                         }
11427:                     }
11428:                 }
11429:             }
11430:         }
11431:         my ($group);
11432:         if (&is_course($domain,$user)) {
11433:             ($group,my $file) = split(/\//,$file_name,2);
11434:         }
11435:         $deloutcome = &del('file_permissions',\@deletions,$domain,$user);
11436:         $new_values{$file_name."\0".'accesscontrol'} = \%new_control;
11437:         $outcome = &put('file_permissions',\%new_values,$domain,$user);
11438:         #  remove lock
11439:         my @del_lock = ($file_name."\0".'locked_access_records');
11440:         my $dellockoutcome = &del('file_permissions',\@del_lock,$domain,$user);
11441:         my $sqlresult =
11442:             &update_portfolio_table($user,$domain,$file_name,'portfolio_access',
11443:                                     $group);
11444:     } else {
11445:         $outcome = "error: could not obtain lockfile\n";  
11446:     }
11447:     return ($outcome,$deloutcome,\%new_values,\%translation);
11448: }
11449: 
11450: sub make_public_indefinitely {
11451:     my (@requrl) = @_;
11452:     return &automated_portfile_access('public',\@requrl);
11453: }
11454: 
11455: sub automated_portfile_access {
11456:     my ($accesstype,$addsref,$delsref,$info) = @_;
11457:     unless (($accesstype eq 'public') || ($accesstype eq 'ip')) {
11458:         return 'invalid';
11459:     }
11460:     my %urls;
11461:     if (ref($addsref) eq 'ARRAY') {
11462:         foreach my $requrl (@{$addsref}) {
11463:             if (&is_portfolio_url($requrl)) {
11464:                 unless (exists($urls{$requrl})) {
11465:                     $urls{$requrl} = 'add';
11466:                 }
11467:             }
11468:         }
11469:     }
11470:     if (ref($delsref) eq 'ARRAY') {
11471:         foreach my $requrl (@{$delsref}) { 
11472:             if (&is_portfolio_url($requrl)) {
11473:                 unless (exists($urls{$requrl})) {
11474:                     $urls{$requrl} = 'delete'; 
11475:                 }
11476:             }
11477:         }
11478:     }
11479:     unless (keys(%urls)) {
11480:         return 'invalid';
11481:     }
11482:     my $ip;
11483:     if ($accesstype eq 'ip') {
11484:         if (ref($info) eq 'HASH') {
11485:             if ($info->{'ip'} ne '') {
11486:                 $ip = $info->{'ip'};
11487:             }
11488:         }
11489:         if ($ip eq '') {
11490:             return 'invalid';
11491:         }
11492:     }
11493:     my $errors;
11494:     my $now = time;
11495:     my %current_perms;
11496:     foreach my $requrl (sort(keys(%urls))) {
11497:         my $action;
11498:         if ($urls{$requrl} eq 'add') {
11499:             $action = 'activate';
11500:         } else {
11501:             $action = 'none';
11502:         }
11503:         my $aclnum = 0;
11504:         my (undef,$udom,$unum,$file_name,$group) =
11505:             &parse_portfolio_url($requrl);
11506:         unless (exists($current_perms{$unum.':'.$udom})) {
11507:             $current_perms{$unum.':'.$udom} = &get_portfile_permissions($udom,$unum);
11508:         }
11509:         my %access_controls = &get_access_controls($current_perms{$unum.':'.$udom},
11510:                                                    $group,$file_name);
11511:         foreach my $key (keys(%{$access_controls{$file_name}})) {
11512:             my ($num,$scope,$end,$start) = 
11513:                 ($key =~ /^([^:]+):([a-z]+)_(\d*)_?(\d*)$/);
11514:             if ($scope eq $accesstype) {
11515:                 if (($start <= $now) && ($end == 0)) {
11516:                     if ($accesstype eq 'ip') {
11517:                         if (ref($access_controls{$file_name}{$key}) eq 'HASH') {
11518:                             if (ref($access_controls{$file_name}{$key}{'ip'}) eq 'ARRAY') {
11519:                                 if (grep(/^\Q$ip\E$/,@{$access_controls{$file_name}{$key}{'ip'}})) {
11520:                                     if ($urls{$requrl} eq 'add') {
11521:                                         $action = 'none';
11522:                                         last;
11523:                                     } else {
11524:                                         $action = 'delete';
11525:                                         $aclnum = $num;
11526:                                         last;
11527:                                     }
11528:                                 }
11529:                             }
11530:                         }
11531:                     } elsif ($accesstype eq 'public') {
11532:                         if ($urls{$requrl} eq 'add') {
11533:                             $action = 'none';
11534:                             last;
11535:                         } else {
11536:                             $action = 'delete';
11537:                             $aclnum = $num;
11538:                             last;
11539:                         }
11540:                     }
11541:                 } elsif ($accesstype eq 'public') {
11542:                     $action = 'update';
11543:                     $aclnum = $num;
11544:                     last;
11545:                 }
11546:             }
11547:         }
11548:         if ($action eq 'none') {
11549:             next;
11550:         } else {
11551:             my %changes;
11552:             my $newend = 0;
11553:             my $newstart = $now;
11554:             my $newkey = $aclnum.':'.$accesstype.'_'.$newend.'_'.$newstart;
11555:             $changes{$action}{$newkey} = {
11556:                 type => $accesstype,
11557:                 time => {
11558:                     start => $newstart,
11559:                     end   => $newend,
11560:                 },
11561:             };
11562:             if ($accesstype eq 'ip') {
11563:                 $changes{$action}{$newkey}{'ip'} = [$ip];
11564:             }
11565:             my ($outcome,$deloutcome,$new_values,$translation) =
11566:                 &modify_access_controls($file_name,\%changes,$udom,$unum);
11567:             unless ($outcome eq 'ok') {
11568:                 $errors .= $outcome.' ';
11569:             }
11570:         }
11571:     }
11572:     if ($errors) {
11573:         $errors =~ s/\s$//;
11574:         return $errors;
11575:     } else {
11576:         return 'ok';
11577:     }
11578: }
11579: 
11580: #------------------------------------------------------Get Marked as Read Only
11581: 
11582: sub get_marked_as_readonly {
11583:     my ($domain,$user,$what,$group) = @_;
11584:     my $current_permissions = &get_portfile_permissions($domain,$user);
11585:     my @readonly_files;
11586:     my $cmp1=$what;
11587:     if (ref($what)) { $cmp1=join('',@{$what}) };
11588:     while (my ($file_name,$value) = each(%{$current_permissions})) {
11589:         if (defined($group)) {
11590:             if ($file_name !~ m-^\Q$group\E/-) {
11591:                 next;
11592:             }
11593:         }
11594:         if (ref($value) eq "ARRAY"){
11595:             foreach my $stored_what (@{$value}) {
11596:                 my $cmp2=$stored_what;
11597:                 if (ref($stored_what) eq 'ARRAY') {
11598:                     $cmp2=join('',@{$stored_what});
11599:                 }
11600:                 if ($cmp1 eq $cmp2) {
11601:                     push(@readonly_files, $file_name);
11602:                     last;
11603:                 } elsif (!defined($what)) {
11604:                     push(@readonly_files, $file_name);
11605:                     last;
11606:                 }
11607:             }
11608:         }
11609:     }
11610:     return @readonly_files;
11611: }
11612: #-----------------------------------------------------------Get Marked as Read Only Hash
11613: 
11614: sub get_marked_as_readonly_hash {
11615:     my ($current_permissions,$group,$what) = @_;
11616:     my %readonly_files;
11617:     while (my ($file_name,$value) = each(%{$current_permissions})) {
11618:         if (defined($group)) {
11619:             if ($file_name !~ m-^\Q$group\E/-) {
11620:                 next;
11621:             }
11622:         }
11623:         if (ref($value) eq "ARRAY"){
11624:             foreach my $stored_what (@{$value}) {
11625:                 if (ref($stored_what) eq 'ARRAY') {
11626:                     foreach my $lock_descriptor(@{$stored_what}) {
11627:                         if ($lock_descriptor eq 'graded') {
11628:                             $readonly_files{$file_name} = 'graded';
11629:                         } elsif ($lock_descriptor eq 'handback') {
11630:                             $readonly_files{$file_name} = 'handback';
11631:                         } else {
11632:                             if (!exists($readonly_files{$file_name})) {
11633:                                 $readonly_files{$file_name} = 'locked';
11634:                             }
11635:                         }
11636:                     }
11637:                 } 
11638:             }
11639:         } 
11640:     }
11641:     return %readonly_files;
11642: }
11643: # ------------------------------------------------------------ Unmark as Read Only
11644: 
11645: sub unmark_as_readonly {
11646:     # unmarks $file_name (if $file_name is defined), or all files locked by $what 
11647:     # for portfolio submissions, $what contains [$symb,$crsid] 
11648:     my ($domain,$user,$what,$file_name,$group) = @_;
11649:     $file_name = &declutter_portfile($file_name);
11650:     my $symb_crs = $what;
11651:     if (ref($what)) { $symb_crs=join('',@$what); }
11652:     my %current_permissions = &dump('file_permissions',$domain,$user,$group);
11653:     my ($tmp)=keys(%current_permissions);
11654:     if ($tmp=~/^error:/) { undef(%current_permissions); }
11655:     my @readonly_files = &get_marked_as_readonly($domain,$user,$what,$group);
11656:     foreach my $file (@readonly_files) {
11657: 	my $clean_file = &declutter_portfile($file);
11658: 	if (defined($file_name) && ($file_name ne $clean_file)) { next; }
11659: 	my $current_locks = $current_permissions{$file};
11660:         my @new_locks;
11661:         my @del_keys;
11662:         if (ref($current_locks) eq "ARRAY"){
11663:             foreach my $locker (@{$current_locks}) {
11664:                 my $compare=$locker;
11665:                 if (ref($locker) eq 'ARRAY') {
11666:                     $compare=join('',@{$locker});
11667:                     if ($compare ne $symb_crs) {
11668:                         push(@new_locks, $locker);
11669:                     }
11670:                 }
11671:             }
11672:             if (scalar(@new_locks) > 0) {
11673:                 $current_permissions{$file} = \@new_locks;
11674:             } else {
11675:                 push(@del_keys, $file);
11676:                 &del('file_permissions',\@del_keys, $domain, $user);
11677:                 delete($current_permissions{$file});
11678:             }
11679:         }
11680:     }
11681:     &put('file_permissions',\%current_permissions,$domain,$user);
11682:     return;
11683: }
11684: 
11685: # ------------------------------------------------------------ Directory lister
11686: 
11687: sub dirlist {
11688:     my ($uri,$userdomain,$username,$getpropath,$getuserdir,$alternateRoot)=@_;
11689:     $uri=~s/^\///;
11690:     $uri=~s/\/$//;
11691:     my ($udom, $uname);
11692:     if ($getuserdir) {
11693:         $udom = $userdomain;
11694:         $uname = $username;
11695:     } else {
11696:         (undef,$udom,$uname)=split(/\//,$uri);
11697:         if(defined($userdomain)) {
11698:             $udom = $userdomain;
11699:         }
11700:         if(defined($username)) {
11701:             $uname = $username;
11702:         }
11703:     }
11704:     my ($dirRoot,$listing,@listing_results);
11705: 
11706:     $dirRoot = $perlvar{'lonDocRoot'};
11707:     if (defined($getpropath)) {
11708:         $dirRoot = &propath($udom,$uname);
11709:         $dirRoot =~ s/\/$//;
11710:     } elsif (defined($getuserdir)) {
11711:         my $subdir=$uname.'__';
11712:         $subdir =~ s/(.)(.)(.).*/$1\/$2\/$3/;
11713:         $dirRoot = $Apache::lonnet::perlvar{'lonUsersDir'}
11714:                    ."/$udom/$subdir/$uname";
11715:     } elsif (defined($alternateRoot)) {
11716:         $dirRoot = $alternateRoot;
11717:     }
11718: 
11719:     if($udom) {
11720:         if($uname) {
11721:             my $uhome = &homeserver($uname,$udom);
11722:             if ($uhome eq 'no_host') {
11723:                 return ([],'no_host');
11724:             }
11725:             $listing = &reply('ls3:'.&escape('/'.$uri).':'.$getpropath.':'
11726:                               .$getuserdir.':'.&escape($dirRoot)
11727:                               .':'.&escape($uname).':'.&escape($udom),$uhome);
11728:             if ($listing eq 'unknown_cmd') {
11729:                 $listing = &reply('ls2:'.$dirRoot.'/'.$uri,$uhome);
11730:             } else {
11731:                 @listing_results = map { &unescape($_); } split(/:/,$listing);
11732:             }
11733:             if ($listing eq 'unknown_cmd') {
11734:                 $listing = &reply('ls:'.$dirRoot.'/'.$uri,$uhome);
11735:                 @listing_results = split(/:/,$listing);
11736:             } else {
11737:                 @listing_results = map { &unescape($_); } split(/:/,$listing);
11738:             }
11739:             if (($listing eq 'no_such_host') || ($listing eq 'con_lost') || 
11740:                 ($listing eq 'rejected') || ($listing eq 'refused') ||
11741:                 ($listing eq 'no_such_dir') || ($listing eq 'empty')) {
11742:                 return ([],$listing);
11743:             } else {
11744:                 return (\@listing_results);
11745:             }
11746:         } elsif(!$alternateRoot) {
11747:             my (%allusers,%listerror);
11748: 	    my %servers = &get_servers($udom,'library');
11749:  	    foreach my $tryserver (keys(%servers)) {
11750:                 $listing = &reply('ls3:'.&escape("/res/$udom").':::::'.
11751:                                   &escape($udom),$tryserver);
11752:                 if ($listing eq 'unknown_cmd') {
11753: 		    $listing = &reply('ls2:'.$perlvar{'lonDocRoot'}.'/res/'.
11754: 				      $udom, $tryserver);
11755:                 } else {
11756:                     @listing_results = map { &unescape($_); } split(/:/,$listing);
11757:                 }
11758: 		if ($listing eq 'unknown_cmd') {
11759: 		    $listing = &reply('ls:'.$perlvar{'lonDocRoot'}.'/res/'.
11760: 				      $udom, $tryserver);
11761: 		    @listing_results = split(/:/,$listing);
11762: 		} else {
11763: 		    @listing_results =
11764: 			map { &unescape($_); } split(/:/,$listing);
11765: 		}
11766:                 if (($listing eq 'no_such_host') || ($listing eq 'con_lost') ||
11767:                     ($listing eq 'rejected') || ($listing eq 'refused') ||
11768:                     ($listing eq 'no_such_dir') || ($listing eq 'empty')) {
11769:                     $listerror{$tryserver} = $listing;
11770:                 } else {
11771: 		    foreach my $line (@listing_results) {
11772: 			my ($entry) = split(/&/,$line,2);
11773: 			$allusers{$entry} = 1;
11774: 		    }
11775: 		}
11776:             }
11777:             my @alluserslist=();
11778:             foreach my $user (sort(keys(%allusers))) {
11779:                 push(@alluserslist,$user.'&user');
11780:             }
11781: 
11782:             if (!%listerror) {
11783:                 # no errors
11784:                 return (\@alluserslist);
11785:             } elsif (scalar(keys(%servers)) == 1) {
11786:                 # one library server, one error 
11787:                 my ($key) = keys(%listerror);
11788:                 return (\@alluserslist, $listerror{$key});
11789:             } elsif ( grep { $_ eq 'con_lost' } values(%listerror) ) {
11790:                 # con_lost indicates that we might miss data from at least one
11791:                 # library server
11792:                 return (\@alluserslist, 'con_lost');
11793:             } else {
11794:                 # multiple library servers and no con_lost -> data should be
11795:                 # complete. 
11796:                 return (\@alluserslist);
11797:             }
11798: 
11799:         } else {
11800:             return ([],'missing username');
11801:         }
11802:     } elsif(!defined($getpropath)) {
11803:         my $path = $perlvar{'lonDocRoot'}.'/res/'; 
11804:         my @all_domains = map { $path.$_.'/&domain'; } (sort(&all_domains()));
11805:         return (\@all_domains);
11806:     } else {
11807:         return ([],'missing domain');
11808:     }
11809: }
11810: 
11811: # --------------------------------------------- GetFileTimestamp
11812: # This function utilizes dirlist and returns the date stamp for
11813: # when it was last modified.  It will also return an error of -1
11814: # if an error occurs
11815: 
11816: sub GetFileTimestamp {
11817:     my ($studentDomain,$studentName,$filename,$getuserdir)=@_;
11818:     $studentDomain = &LONCAPA::clean_domain($studentDomain);
11819:     $studentName   = &LONCAPA::clean_username($studentName);
11820:     my ($fileref,$error) = &dirlist($filename,$studentDomain,$studentName,
11821:                                     undef,$getuserdir);
11822:     if (($error eq 'empty') || ($error eq 'no_such_dir')) {
11823:         return -1;
11824:     }
11825:     if (ref($fileref) eq 'ARRAY') {
11826:         my @stats = split('&',$fileref->[0]);
11827:         # @stats contains first the filename, then the stat output
11828:         return $stats[10]; # so this is 10 instead of 9.
11829:     } else {
11830:         return -1;
11831:     }
11832: }
11833: 
11834: sub stat_file {
11835:     my ($uri) = @_;
11836:     $uri = &clutter_with_no_wrapper($uri);
11837: 
11838:     my ($udom,$uname,$file);
11839:     if ($uri =~ m-^/(uploaded|editupload)/-) {
11840: 	($udom,$uname,$file) =
11841: 	    ($uri =~ m-/(?:uploaded|editupload)/?($match_domain)/?($match_name)/?(.*)-);
11842: 	$file = 'userfiles/'.$file;
11843:     }
11844:     if ($uri =~ m-^/res/-) {
11845: 	($udom,$uname) = 
11846: 	    ($uri =~ m-/(?:res)/?($match_domain)/?($match_username)/-);
11847: 	$file = $uri;
11848:     }
11849: 
11850:     if (!$udom || !$uname || !$file) {
11851: 	# unable to handle the uri
11852: 	return ();
11853:     }
11854:     my $getpropath;
11855:     if ($file =~ /^userfiles\//) {
11856:         $getpropath = 1;
11857:     }
11858:     my ($listref,$error) = &dirlist($file,$udom,$uname,$getpropath);
11859:     if (($error eq 'empty') || ($error eq 'no_such_dir')) {
11860:         return ();
11861:     } else {
11862:         if (ref($listref) eq 'ARRAY') {
11863:             my @stats = split('&',$listref->[0]);
11864: 	    shift(@stats); #filename is first
11865: 	    return @stats;
11866:         }
11867:     }
11868:     return ();
11869: }
11870: 
11871: # --------------------------------------------------------- recursedirs
11872: # Recursive function to traverse either a specific user's Authoring Space
11873: # or corresponding Published Resource Space, and populate the hash ref:
11874: # $dirhashref with URLs of all directories, and if $filehashref hash
11875: # ref arg is provided, the URLs of any files, excluding versioned, .meta,
11876: # or .rights files in resource space, and .meta, .save, .log, and .bak
11877: # files in Authoring Space.
11878: #
11879: # Inputs:
11880: #
11881: # $is_home - true if current server is home server for user's space
11882: # $context - either: priv, or res respectively for Authoring or Resource Space.
11883: # $docroot - Document root (i.e., /home/httpd/html
11884: # $toppath - Top level directory (i.e., /res/$dom/$uname or /priv/$dom/$uname
11885: # $relpath - Current path (relative to top level).
11886: # $dirhashref - reference to hash to populate with URLs of directories (Required)
11887: # $filehashref - reference to hash to populate with URLs of files (Optional)
11888: #
11889: # Returns: nothing
11890: #
11891: # Side Effects: populates $dirhashref, and $filehashref (if provided).
11892: #
11893: # Currently used by interface/londocs.pm to create linked select boxes for
11894: # directory and filename to import a Course "Author" resource into a course, and
11895: # also to create linked select boxes for Authoring Space and Directory to choose
11896: # save location for creation of a new "standard" problem from the Course Editor.
11897: #
11898: 
11899: sub recursedirs {
11900:     my ($is_home,$context,$docroot,$toppath,$relpath,$dirhashref,$filehashref) = @_;
11901:     return unless (ref($dirhashref) eq 'HASH');
11902:     my $currpath = $docroot.$toppath;
11903:     if ($relpath) {
11904:         $currpath .= "/$relpath";
11905:     }
11906:     my $savefile;
11907:     if (ref($filehashref)) {
11908:         $savefile = 1;
11909:     }
11910:     if ($is_home) {
11911:         if (opendir(my $dirh,$currpath)) {
11912:             foreach my $item (sort { lc($a) cmp lc($b) } grep(!/^\.+$/,readdir($dirh))) {
11913:                 next if ($item eq '');
11914:                 if (-d "$currpath/$item") {
11915:                     my $newpath;
11916:                     if ($relpath) {
11917:                         $newpath = "$relpath/$item";
11918:                     } else {
11919:                         $newpath = $item;
11920:                     }
11921:                     $dirhashref->{&Apache::lonlocal::js_escape($newpath)} = 1;
11922:                     &recursedirs($is_home,$context,$docroot,$toppath,$newpath,$dirhashref,$filehashref);
11923:                 } elsif ($savefile) {
11924:                     if ($context eq 'priv') {
11925:                         unless ($item =~ /\.(meta|save|log|bak|DS_Store)$/) {
11926:                             $filehashref->{&Apache::lonlocal::js_escape($relpath)}{$item} = 1;
11927:                         }
11928:                     } else {
11929:                         unless (($item =~ /\.meta$/) || ($item =~ /\.\d+\.\w+$/) || ($item =~ /\.rights$/)) {
11930:                             $filehashref->{&Apache::lonlocal::js_escape($relpath)}{$item} = 1;
11931:                         }
11932:                     }
11933:                 }
11934:             }
11935:             closedir($dirh);
11936:         }
11937:     } else {
11938:         my ($dirlistref,$listerror) =
11939:             &dirlist($toppath.$relpath);
11940:         my @dir_lines;
11941:         my $dirptr=16384;
11942:         if (ref($dirlistref) eq 'ARRAY') {
11943:             foreach my $dir_line (sort
11944:                               {
11945:                                   my ($afile)=split('&',$a,2);
11946:                                   my ($bfile)=split('&',$b,2);
11947:                                   return (lc($afile) cmp lc($bfile));
11948:                               } (@{$dirlistref})) {
11949:                 my ($item,$dom,undef,$testdir,undef,undef,undef,undef,$size,undef,$mtime,undef,undef,undef,$obs,undef) =
11950:                     split(/\&/,$dir_line,16);
11951:                 $item =~ s/\s+$//;
11952:                 next if (($item =~ /^\.\.?$/) || ($obs));
11953:                 if ($dirptr&$testdir) {
11954:                     my $newpath;
11955:                     if ($relpath) {
11956:                         $newpath = "$relpath/$item";
11957:                     } else {
11958:                         $relpath = '/';
11959:                         $newpath = $item;
11960:                     }
11961:                     $dirhashref->{&Apache::lonlocal::js_escape($newpath)} = 1;
11962:                     &recursedirs($is_home,$context,$docroot,$toppath,$newpath,$dirhashref,$filehashref);
11963:                 } elsif ($savefile) {
11964:                     if ($context eq 'priv') {
11965:                         unless ($item =~ /\.(meta|save|log|bak|DS_Store)$/) {
11966:                             $filehashref->{$relpath}{$item} = 1;
11967:                         }
11968:                     } else {
11969:                         unless (($item =~ /\.meta$/) || ($item =~ /\.\d+\.\w+$/)) {
11970:                             $filehashref->{$relpath}{$item} = 1;
11971:                         }
11972:                     }
11973:                 }
11974:             }
11975:         }
11976:     }
11977:     return;
11978: }
11979: 
11980: # -------------------------------------------------------- Value of a Condition
11981: 
11982: # gets the value of a specific preevaluated condition
11983: #    stored in the string  $env{user.state.<cid>}
11984: # or looks up a condition reference in the bighash and if if hasn't
11985: # already been evaluated recurses into docondval to get the value of
11986: # the condition, then memoizing it to 
11987: #   $env{user.state.<cid>.<condition>}
11988: sub directcondval {
11989:     my $number=shift;
11990:     if (!defined($env{'user.state.'.$env{'request.course.id'}})) {
11991: 	&Apache::lonuserstate::evalstate();
11992:     }
11993:     if (exists($env{'user.state.'.$env{'request.course.id'}.".$number"})) {
11994: 	return $env{'user.state.'.$env{'request.course.id'}.".$number"};
11995:     } elsif ($number =~ /^_/) {
11996: 	my $sub_condition;
11997: 	if (tie(my %bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
11998: 		&GDBM_READER(),0640)) {
11999: 	    $sub_condition=$bighash{'conditions'.$number};
12000: 	    untie(%bighash);
12001: 	}
12002: 	my $value = &docondval($sub_condition);
12003: 	&appenv({'user.state.'.$env{'request.course.id'}.".$number" => $value});
12004: 	return $value;
12005:     }
12006:     if ($env{'user.state.'.$env{'request.course.id'}}) {
12007:        return substr($env{'user.state.'.$env{'request.course.id'}},$number,1);
12008:     } else {
12009:        return 2;
12010:     }
12011: }
12012: 
12013: # get the collection of conditions for this resource
12014: sub condval {
12015:     my $condidx=shift;
12016:     my $allpathcond='';
12017:     foreach my $cond (split(/\|/,$condidx)) {
12018: 	if (defined($env{'acc.cond.'.$env{'request.course.id'}.'.'.$cond})) {
12019: 	    $allpathcond.=
12020: 		'('.$env{'acc.cond.'.$env{'request.course.id'}.'.'.$cond}.')|';
12021: 	}
12022:     }
12023:     $allpathcond=~s/\|$//;
12024:     return &docondval($allpathcond);
12025: }
12026: 
12027: #evaluates an expression of conditions
12028: sub docondval {
12029:     my ($allpathcond) = @_;
12030:     my $result=0;
12031:     if ($env{'request.course.id'}
12032: 	&& defined($allpathcond)) {
12033: 	my $operand='|';
12034: 	my @stack;
12035: 	foreach my $chunk ($allpathcond=~/(\d+|_\d+\.\d+|\(|\)|\&|\|)/g) {
12036: 	    if ($chunk eq '(') {
12037: 		push @stack,($operand,$result);
12038: 	    } elsif ($chunk eq ')') {
12039: 		my $before=pop @stack;
12040: 		if (pop @stack eq '&') {
12041: 		    $result=$result>$before?$before:$result;
12042: 		} else {
12043: 		    $result=$result>$before?$result:$before;
12044: 		}
12045: 	    } elsif (($chunk eq '&') || ($chunk eq '|')) {
12046: 		$operand=$chunk;
12047: 	    } else {
12048: 		my $new=directcondval($chunk);
12049: 		if ($operand eq '&') {
12050: 		    $result=$result>$new?$new:$result;
12051: 		} else {
12052: 		    $result=$result>$new?$result:$new;
12053: 		}
12054: 	    }
12055: 	}
12056:     }
12057:     return $result;
12058: }
12059: 
12060: # ---------------------------------------------------- Devalidate courseresdata
12061: 
12062: sub devalidatecourseresdata {
12063:     my ($coursenum,$coursedomain)=@_;
12064:     my $hashid=$coursenum.':'.$coursedomain;
12065:     &devalidate_cache_new('courseres',$hashid);
12066: }
12067: 
12068: 
12069: # --------------------------------------------------- Course Resourcedata Query
12070: #
12071: #  Parameters:
12072: #      $coursenum    - Number of the course.
12073: #      $coursedomain - Domain at which the course was created.
12074: #  Returns:
12075: #     A hash of the course parameters along (I think) with timestamps
12076: #     and version info.
12077: 
12078: sub get_courseresdata {
12079:     my ($coursenum,$coursedomain)=@_;
12080:     my $coursehom=&homeserver($coursenum,$coursedomain);
12081:     my $hashid=$coursenum.':'.$coursedomain;
12082:     my ($result,$cached)=&is_cached_new('courseres',$hashid);
12083:     my %dumpreply;
12084:     unless (defined($cached)) {
12085: 	%dumpreply=&dump('resourcedata',$coursedomain,$coursenum);
12086: 	$result=\%dumpreply;
12087: 	my ($tmp) = keys(%dumpreply);
12088: 	if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
12089: 	    &do_cache_new('courseres',$hashid,$result,600);
12090: 	} elsif ($tmp =~ /^(con_lost|no_such_host)/) {
12091: 	    return $tmp;
12092: 	} elsif ($tmp =~ /^(error)/) {
12093: 	    $result=undef;
12094: 	    &do_cache_new('courseres',$hashid,$result,600);
12095: 	}
12096:     }
12097:     return $result;
12098: }
12099: 
12100: sub devalidateuserresdata {
12101:     my ($uname,$udom)=@_;
12102:     my $hashid="$udom:$uname";
12103:     &devalidate_cache_new('userres',$hashid);
12104: }
12105: 
12106: sub get_userresdata {
12107:     my ($uname,$udom)=@_;
12108:     #most student don\'t have any data set, check if there is some data
12109:     if (&EXT_cache_status($udom,$uname)) { return undef; }
12110: 
12111:     my $hashid="$udom:$uname";
12112:     my ($result,$cached)=&is_cached_new('userres',$hashid);
12113:     if (!defined($cached)) {
12114: 	my %resourcedata=&dump('resourcedata',$udom,$uname);
12115: 	$result=\%resourcedata;
12116: 	&do_cache_new('userres',$hashid,$result,600);
12117:     }
12118:     my ($tmp)=keys(%$result);
12119:     if (($tmp!~/^error\:/) && ($tmp!~/^con_lost/)) {
12120: 	return $result;
12121:     }
12122:     #error 2 occurs when the .db doesn't exist
12123:     if ($tmp!~/error: 2 /) {
12124:         if ((!defined($cached)) || ($tmp ne 'con_lost')) {
12125: 	    &logthis("<font color=\"blue\">WARNING:".
12126: 		     " Trying to get resource data for ".
12127: 		     $uname." at ".$udom.": ".
12128: 		     $tmp."</font>");
12129:         }
12130:     } elsif ($tmp=~/error: 2 /) {
12131: 	#&EXT_cache_set($udom,$uname);
12132: 	&do_cache_new('userres',$hashid,undef,600);
12133: 	undef($tmp); # not really an error so don't send it back
12134:     }
12135:     return $tmp;
12136: }
12137: #----------------------------------------------- resdata - return resource data
12138: #  Purpose:
12139: #    Return resource data for either users or for a course.
12140: #  Parameters:
12141: #     $name      - Course/user name.
12142: #     $domain    - Name of the domain the user/course is registered on.
12143: #     $type      - Type of thing $name is (must be 'course' or 'user')
12144: #     $mapp      - decluttered URL of enclosing map  
12145: #     $recursed  - Ref to scalar -- set to 1, if nested maps have been recursed.
12146: #     $recurseup - Ref to array of map URLs, starting with map containing
12147: #                  $mapp up through hierarchy of nested maps to top level map.  
12148: #     $courseid  - CourseID (first part of param identifier).
12149: #     $modifier  - Middle part of param identifier.
12150: #     $what      - Last part of param identifier.
12151: #     @which     - Array of names of resources desired.
12152: #  Returns:
12153: #     The value of the first reasource in @which that is found in the
12154: #     resource hash.
12155: #  Exceptional Conditions:
12156: #     If the $type passed in is not valid (not the string 'course' or 
12157: #     'user', an undefined  reference is returned.
12158: #     If none of the resources are found, an undef is returned
12159: sub resdata {
12160:     my ($name,$domain,$type,$mapp,$recursed,$recurseup,$courseid,
12161:         $modifier,$what,@which)=@_;
12162:     my $result;
12163:     if ($type eq 'course') {
12164: 	$result=&get_courseresdata($name,$domain);
12165:     } elsif ($type eq 'user') {
12166: 	$result=&get_userresdata($name,$domain);
12167:     }
12168:     if (!ref($result)) { return $result; }    
12169:     foreach my $item (@which) {
12170:         if ($item->[1] eq 'course') {
12171:             if ((ref($recurseup) eq 'ARRAY') && (ref($recursed) eq 'SCALAR')) {
12172:                 unless ($$recursed) {
12173:                     @{$recurseup} = &get_map_hierarchy($mapp,$courseid);
12174:                     $$recursed = 1;
12175:                 }
12176:                 foreach my $item (@${recurseup}) {
12177:                     my $norecursechk=$courseid.$modifier.$item.'___(all).'.$what;
12178:                     last if (defined($result->{$norecursechk}));
12179:                     my $recursechk=$courseid.$modifier.$item.'___(rec).'.$what;
12180:                     if (defined($result->{$recursechk})) { return [$result->{$recursechk},'map']; }
12181:                 }
12182:             }
12183:         }
12184:         if (defined($result->{$item->[0]})) {
12185: 	    return [$result->{$item->[0]},$item->[1]];
12186: 	}
12187:     }
12188:     return undef;
12189: }
12190: 
12191: sub get_domain_lti {
12192:     my ($cdom,$context) = @_;
12193:     my ($name,%lti);
12194:     if ($context eq 'consumer') {
12195:         $name = 'ltitools';
12196:     } elsif ($context eq 'provider') {
12197:         $name = 'lti';
12198:     } else {
12199:         return %lti;
12200:     }
12201:     my ($result,$cached)=&is_cached_new($name,$cdom);
12202:     if (defined($cached)) {
12203:         if (ref($result) eq 'HASH') {
12204:             %lti = %{$result};
12205:         }
12206:     } else {
12207:         my %domconfig = &get_dom('configuration',[$name],$cdom);
12208:         if (ref($domconfig{$name}) eq 'HASH') {
12209:             %lti = %{$domconfig{$name}};
12210:             my %encdomconfig = &get_dom('encconfig',[$name],$cdom,undef,1);
12211:             if (ref($encdomconfig{$name}) eq 'HASH') {
12212:                 foreach my $id (keys(%lti)) {
12213:                     if (ref($encdomconfig{$name}{$id}) eq 'HASH') {
12214:                         foreach my $item ('key','secret') {
12215:                             $lti{$id}{$item} = $encdomconfig{$name}{$id}{$item};
12216:                         }
12217:                     }
12218:                 }
12219:             }
12220:         }
12221:         my $cachetime = 24*60*60;
12222:         &do_cache_new($name,$cdom,\%lti,$cachetime);
12223:     }
12224:     return %lti;
12225: }
12226: 
12227: sub get_course_lti {
12228:     my ($cnum,$cdom) = @_;
12229:     my $hashid=$cdom.'_'.$cnum;
12230:     my %courselti;
12231:     my ($result,$cached)=&is_cached_new('courselti',$hashid);
12232:     if (defined($cached)) {
12233:         if (ref($result) eq 'HASH') {
12234:             %courselti = %{$result};
12235:         }
12236:     } else {
12237:         %courselti = &dump('lti',$cdom,$cnum,undef,undef,undef,1);
12238:         my $cachetime = 24*60*60;
12239:         &do_cache_new('courselti',$hashid,\%courselti,$cachetime);
12240:     }
12241:     return %courselti;
12242: }
12243: 
12244: sub get_numsuppfiles {
12245:     my ($cnum,$cdom,$ignorecache)=@_;
12246:     my $hashid=$cnum.':'.$cdom;
12247:     my ($suppcount,$cached);
12248:     unless ($ignorecache) {
12249:         ($suppcount,$cached) = &is_cached_new('suppcount',$hashid);
12250:     }
12251:     unless (defined($cached)) {
12252:         my $chome=&homeserver($cnum,$cdom);
12253:         unless ($chome eq 'no_host') {
12254:             ($suppcount,my $supptools,my $errors) = (0,0,0);
12255:             my $suppmap = 'supplemental.sequence';
12256:             ($suppcount,$supptools,$errors) =
12257:                 &Apache::loncommon::recurse_supplemental($cnum,$cdom,$suppmap,$suppcount,
12258:                                                          $supptools,$errors);
12259:         }
12260:         &do_cache_new('suppcount',$hashid,$suppcount,600);
12261:     }
12262:     return $suppcount;
12263: }
12264: 
12265: #
12266: # EXT resource caching routines
12267: #
12268: 
12269: {
12270: # Cache (5 seconds) of map hierarchy for speedup of navmaps display
12271: #
12272: # The course for which we cache
12273: my $cachedmapkey='';
12274: # The cached recursive maps for this course
12275: my %cachedmaps=();
12276: # When this was last done
12277: my $cachedmaptime='';
12278: 
12279: sub clear_EXT_cache_status {
12280:     &delenv('cache.EXT.');
12281: }
12282: 
12283: sub EXT_cache_status {
12284:     my ($target_domain,$target_user) = @_;
12285:     my $cachename = 'cache.EXT.'.$target_user.'.'.$target_domain;
12286:     if (exists($env{$cachename}) && ($env{$cachename}+600) > time) {
12287:         # We know already the user has no data
12288:         return 1;
12289:     } else {
12290:         return 0;
12291:     }
12292: }
12293: 
12294: sub EXT_cache_set {
12295:     my ($target_domain,$target_user) = @_;
12296:     my $cachename = 'cache.EXT.'.$target_user.'.'.$target_domain;
12297:     #&appenv({$cachename => time});
12298: }
12299: 
12300: # --------------------------------------------------------- Value of a Variable
12301: sub EXT {
12302: 
12303:     my ($varname,$symbparm,$udom,$uname,$usection,$recurse,$cid,$recurseupref)=@_;
12304:     unless ($varname) { return ''; }
12305:     #get real user name/domain, courseid and symb
12306:     my $courseid;
12307:     my $publicuser;
12308:     if ($symbparm) {
12309: 	$symbparm=&get_symb_from_alias($symbparm);
12310:     }
12311:     if (!($uname && $udom)) {
12312:       (my $cursymb,$courseid,$udom,$uname,$publicuser)= &whichuser($symbparm);
12313:       if (!$symbparm) {	$symbparm=$cursymb; }
12314:     } else {
12315: 	$courseid=$env{'request.course.id'};
12316:     }
12317:     my ($realm,$space,$qualifier,@therest)=split(/\./,$varname);
12318:     my $rest;
12319:     if (defined($therest[0])) {
12320:        $rest=join('.',@therest);
12321:     } else {
12322:        $rest='';
12323:     }
12324: 
12325:     my $qualifierrest=$qualifier;
12326:     if ($rest) { $qualifierrest.='.'.$rest; }
12327:     my $spacequalifierrest=$space;
12328:     if ($qualifierrest) { $spacequalifierrest.='.'.$qualifierrest; }
12329:     if ($realm eq 'user') {
12330: # --------------------------------------------------------------- user.resource
12331: 	if ($space eq 'resource') {
12332: 	    if ( (defined($Apache::lonhomework::parsing_a_problem)
12333: 		  || defined($Apache::lonhomework::parsing_a_task))
12334: 		 &&
12335: 		 ($symbparm eq &symbread()) ) {
12336: 		# if we are in the middle of processing the resource the
12337: 		# get the value we are planning on committing
12338:                 if (defined($Apache::lonhomework::results{$qualifierrest})) {
12339:                     return $Apache::lonhomework::results{$qualifierrest};
12340:                 } else {
12341:                     return $Apache::lonhomework::history{$qualifierrest};
12342:                 }
12343: 	    } else {
12344: 		my %restored;
12345: 		if ($publicuser || $env{'request.state'} eq 'construct') {
12346: 		    %restored=&tmprestore($symbparm,$courseid,$udom,$uname);
12347: 		} else {
12348: 		    %restored=&restore($symbparm,$courseid,$udom,$uname);
12349: 		}
12350: 		return $restored{$qualifierrest};
12351: 	    }
12352: # ----------------------------------------------------------------- user.access
12353:         } elsif ($space eq 'access') {
12354: 	    # FIXME - not supporting calls for a specific user
12355:             return &allowed($qualifier,$rest);
12356: # ------------------------------------------ user.preferences, user.environment
12357:         } elsif (($space eq 'preferences') || ($space eq 'environment')) {
12358: 	    if (($uname eq $env{'user.name'}) &&
12359: 		($udom eq $env{'user.domain'})) {
12360: 		return $env{join('.',('environment',$qualifierrest))};
12361: 	    } else {
12362: 		my %returnhash;
12363: 		if (!$publicuser) {
12364: 		    %returnhash=&userenvironment($udom,$uname,
12365: 						 $qualifierrest);
12366: 		}
12367: 		return $returnhash{$qualifierrest};
12368: 	    }
12369: # ----------------------------------------------------------------- user.course
12370:         } elsif ($space eq 'course') {
12371: 	    # FIXME - not supporting calls for a specific user
12372:             return $env{join('.',('request.course',$qualifier))};
12373: # ------------------------------------------------------------------- user.role
12374:         } elsif ($space eq 'role') {
12375: 	    # FIXME - not supporting calls for a specific user
12376:             my ($role,$where)=split(/\./,$env{'request.role'});
12377:             if ($qualifier eq 'value') {
12378: 		return $role;
12379:             } elsif ($qualifier eq 'extent') {
12380:                 return $where;
12381:             }
12382: # ----------------------------------------------------------------- user.domain
12383:         } elsif ($space eq 'domain') {
12384:             return $udom;
12385: # ------------------------------------------------------------------- user.name
12386:         } elsif ($space eq 'name') {
12387:             return $uname;
12388: # ---------------------------------------------------- Any other user namespace
12389:         } else {
12390: 	    my %reply;
12391: 	    if (!$publicuser) {
12392: 		%reply=&get($space,[$qualifierrest],$udom,$uname);
12393: 	    }
12394: 	    return $reply{$qualifierrest};
12395:         }
12396:     } elsif ($realm eq 'query') {
12397: # ---------------------------------------------- pull stuff out of query string
12398:         &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
12399: 						[$spacequalifierrest]);
12400: 	return $env{'form.'.$spacequalifierrest}; 
12401:    } elsif ($realm eq 'request') {
12402: # ------------------------------------------------------------- request.browser
12403:         if ($space eq 'browser') {
12404:             return $env{'browser.'.$qualifier};
12405: # ------------------------------------------------------------ request.filename
12406:         } else {
12407:             return $env{'request.'.$spacequalifierrest};
12408:         }
12409:     } elsif ($realm eq 'course') {
12410: # ---------------------------------------------------------- course.description
12411:         return $env{'course.'.$courseid.'.'.$spacequalifierrest};
12412:     } elsif ($realm eq 'resource') {
12413: 
12414: 	if (defined($courseid) && $courseid eq $env{'request.course.id'}) {
12415: 	    if (!$symbparm) { $symbparm=&symbread(); }
12416: 	}
12417: 
12418:         if ($qualifier eq '') {
12419: 	    if ($space eq 'title') {
12420: 	        if (!$symbparm) { $symbparm = $env{'request.filename'}; }
12421: 	        return &gettitle($symbparm);
12422: 	    }
12423: 	
12424: 	    if ($space eq 'map') {
12425: 	        my ($map) = &decode_symb($symbparm);
12426: 	        return &symbread($map);
12427: 	    }
12428:             if ($space eq 'maptitle') {
12429:                 my ($map) = &decode_symb($symbparm);
12430:                 return &gettitle($map);
12431:             }
12432: 	    if ($space eq 'filename') {
12433: 	        if ($symbparm) {
12434: 		    return &clutter((&decode_symb($symbparm))[2]);
12435: 	        }
12436: 	        return &hreflocation('',$env{'request.filename'});
12437: 	    }
12438: 
12439:             if ((defined($courseid)) && ($courseid eq $env{'request.course.id'}) && $symbparm) {
12440:                 if ($space eq 'visibleparts') {
12441:                     my $navmap = Apache::lonnavmaps::navmap->new();
12442:                     my $item;
12443:                     if (ref($navmap)) {
12444:                         my $res = $navmap->getBySymb($symbparm);
12445:                         my $parts = $res->parts();
12446:                         if (ref($parts) eq 'ARRAY') {
12447:                             $item = join(',',@{$parts});
12448:                         }
12449:                         undef($navmap);
12450:                     }
12451:                     return $item;
12452:                 }
12453:             }
12454:         }
12455: 
12456: 	my ($section, $group, @groups, @recurseup, $recursed);
12457:         if (ref($recurseupref) eq 'ARRAY') {
12458:             @recurseup = @{$recurseupref};
12459:             $recursed = 1;
12460:         }
12461: 	my ($courselevelm,$courseleveli,$courselevel,$mapp);
12462:         if (($courseid eq '') && ($cid)) {
12463:             $courseid = $cid;
12464:         }
12465: 	if (($symbparm && $courseid) && 
12466: 	    (($courseid eq $env{'request.course.id'}) || ($courseid eq $cid)))  {
12467: 
12468: 	    #print '<br>'.$space.' - '.$qualifier.' - '.$spacequalifierrest;
12469: 
12470: # ----------------------------------------------------- Cascading lookup scheme
12471: 	    my $symbp=$symbparm;
12472: 	    $mapp=&deversion((&decode_symb($symbp))[0]);
12473: 	    my $symbparm=$symbp.'.'.$spacequalifierrest;
12474:             my $recurseparm=$mapp.'___(rec).'.$spacequalifierrest;
12475: 	    my $mapparm=$mapp.'___(all).'.$spacequalifierrest;
12476: 	    if (($env{'user.name'} eq $uname) &&
12477: 		($env{'user.domain'} eq $udom)) {
12478: 		$section=$env{'request.course.sec'};
12479:                 @groups = split(/:/,$env{'request.course.groups'});  
12480:                 @groups=&sort_course_groups($courseid,@groups); 
12481: 	    } else {
12482: 		if (! defined($usection)) {
12483: 		    $section=&getsection($udom,$uname,$courseid);
12484: 		} else {
12485: 		    $section = $usection;
12486: 		}
12487:                 @groups = &get_users_groups($udom,$uname,$courseid);
12488: 	    }
12489: 
12490: 	    my $seclevel=$courseid.'.['.$section.'].'.$spacequalifierrest;
12491: 	    my $seclevelr=$courseid.'.['.$section.'].'.$symbparm;
12492:             my $secleveli=$courseid.'.['.$section.'].'.$recurseparm;
12493: 	    my $seclevelm=$courseid.'.['.$section.'].'.$mapparm;
12494: 
12495: 	    $courselevel=$courseid.'.'.$spacequalifierrest;
12496: 	    my $courselevelr=$courseid.'.'.$symbparm;
12497:             $courseleveli=$courseid.'.'.$recurseparm;
12498: 	    $courselevelm=$courseid.'.'.$mapparm;
12499: 
12500: # ----------------------------------------------------------- first, check user
12501: 
12502: 	    my $userreply=&resdata($uname,$udom,'user',$mapp,\$recursed,
12503:                                    \@recurseup,$courseid,'.',$spacequalifierrest, 
12504: 				       ([$courselevelr,'resource'],
12505: 					[$courselevelm,'map'     ],
12506:                                         [$courseleveli,'map'     ],
12507: 					[$courselevel, 'course'  ]));
12508: 	    if (defined($userreply)) { return &get_reply($userreply); }
12509: 
12510: # ------------------------------------------------ second, check some of course
12511:             my $coursereply;
12512:             if (@groups > 0) {
12513:                 $coursereply = &check_group_parms($courseid,\@groups,$symbparm,
12514:                                        $recurseparm,$mapparm,$spacequalifierrest,
12515:                                        $mapp,\$recursed,\@recurseup);
12516:                 if (defined($coursereply)) { return &get_reply($coursereply); } 
12517:             }
12518: 
12519: 	    $coursereply=&resdata($env{'course.'.$courseid.'.num'},
12520: 				  $env{'course.'.$courseid.'.domain'},
12521: 				  'course',$mapp,\$recursed,\@recurseup,
12522:                                   $courseid,'.['.$section.'].',$spacequalifierrest,
12523: 				  ([$seclevelr,   'resource'],
12524: 				   [$seclevelm,   'map'     ],
12525:                                    [$secleveli,   'map'     ],
12526: 				   [$seclevel,    'course'  ],
12527: 				   [$courselevelr,'resource']));
12528: 	    if (defined($coursereply)) { return &get_reply($coursereply); }
12529: 
12530: # ------------------------------------------------------ third, check map parms
12531: 	    my %parmhash=();
12532: 	    my $thisparm='';
12533: 	    if (tie(%parmhash,'GDBM_File',
12534: 		    $env{'request.course.fn'}.'_parms.db',
12535: 		    &GDBM_READER(),0640)) {
12536: 		$thisparm=$parmhash{$symbparm};
12537: 		untie(%parmhash);
12538: 	    }
12539: 	    if ($thisparm) { return &get_reply([$thisparm,'resource']); }
12540: 	}
12541: # ------------------------------------------ fourth, look in resource metadata
12542:  
12543:         my $what = $spacequalifierrest;
12544: 	$what=~s/\./\_/;
12545: 	my $filename;
12546: 	if (!$symbparm) { $symbparm=&symbread(); }
12547: 	if ($symbparm) {
12548: 	    $filename=(&decode_symb($symbparm))[2];
12549: 	} else {
12550: 	    $filename=$env{'request.filename'};
12551: 	}
12552:         my $toolsymb;
12553:         if (($filename =~ /ext\.tool$/) && ($what ne '0_gradable')) {
12554:             $toolsymb = $symbparm;
12555:         }
12556: 	my $metadata=&metadata($filename,$what,$toolsymb);
12557: 	if (defined($metadata)) { return &get_reply([$metadata,'resource']); }
12558: 	$metadata=&metadata($filename,'parameter_'.$what,$toolsymb);
12559: 	if (defined($metadata)) { return &get_reply([$metadata,'resource']); }
12560: 
12561: # ----------------------------------------------- fifth, look in rest of course
12562: 	if ($symbparm && defined($courseid) && 
12563: 	    $courseid eq $env{'request.course.id'}) {
12564: 	    my $coursereply=&resdata($env{'course.'.$courseid.'.num'},
12565: 				     $env{'course.'.$courseid.'.domain'},
12566: 				     'course',$mapp,\$recursed,\@recurseup,
12567:                                      $courseid,'.',$spacequalifierrest,
12568: 				     ([$courselevelm,'map'   ],
12569:                                       [$courseleveli,'map'   ],
12570: 				      [$courselevel, 'course']));
12571: 	    if (defined($coursereply)) { return &get_reply($coursereply); }
12572: 	}
12573: # ------------------------------------------------------------------ Cascade up
12574: 	unless ($space eq '0') {
12575: 	    my @parts=split(/_/,$space);
12576: 	    my $id=pop(@parts);
12577: 	    my $part=join('_',@parts);
12578: 	    if ($part eq '') { $part='0'; }
12579: 	    my @partgeneral=&EXT('resource.'.$part.'.'.$qualifierrest,
12580: 				 $symbparm,$udom,$uname,$section,1);
12581: 	    if (defined($partgeneral[0])) { return &get_reply(\@partgeneral); }
12582: 	}
12583: 	if ($recurse) { return undef; }
12584: 	my $pack_def=&packages_tab_default($filename,$varname,$toolsymb);
12585: 	if (defined($pack_def)) { return &get_reply([$pack_def,'resource']); }
12586: # ---------------------------------------------------- Any other user namespace
12587:     } elsif ($realm eq 'environment') {
12588: # ----------------------------------------------------------------- environment
12589: 	if (($uname eq $env{'user.name'})&&($udom eq $env{'user.domain'})) {
12590: 	    return $env{'environment.'.$spacequalifierrest};
12591: 	} else {
12592: 	    if ($uname eq 'anonymous' && $udom eq '') {
12593: 		return '';
12594: 	    }
12595: 	    my %returnhash=&userenvironment($udom,$uname,
12596: 					    $spacequalifierrest);
12597: 	    return $returnhash{$spacequalifierrest};
12598: 	}
12599:     } elsif ($realm eq 'system') {
12600: # ----------------------------------------------------------------- system.time
12601: 	if ($space eq 'time') {
12602: 	    return time;
12603:         }
12604:     } elsif ($realm eq 'server') {
12605: # ----------------------------------------------------------------- system.time
12606: 	if ($space eq 'name') {
12607: 	    return $ENV{'SERVER_NAME'};
12608:         }
12609:     } elsif ($realm eq 'client') {
12610:         if ($space eq 'remote_addr') {
12611:             return &get_requestor_ip();
12612:         }
12613:     }
12614:     return '';
12615: }
12616: 
12617: sub get_reply {
12618:     my ($reply_value) = @_;
12619:     if (ref($reply_value) eq 'ARRAY') {
12620:         if (wantarray) {
12621: 	    return @$reply_value;
12622:         }
12623:         return $reply_value->[0];
12624:     } else {
12625:         return $reply_value;
12626:     }
12627: }
12628: 
12629: sub check_group_parms {
12630:     my ($courseid,$groups,$symbparm,$recurseparm,$mapparm,$what,$mapp,
12631:         $recursed,$recurseupref) = @_;
12632:     my @levels = ([$symbparm,'resource'],[$mapparm,'map'],[$recurseparm,'map'],
12633:                   [$what,'course']);
12634:     my $coursereply;
12635:     foreach my $group (@{$groups}) {
12636:         my @groupitems = ();
12637:         foreach my $level (@levels) {
12638:              my $item = $courseid.'.['.$group.'].'.$level->[0];
12639:              push(@groupitems,[$item,$level->[1]]);
12640:         }
12641:         my $coursereply = &resdata($env{'course.'.$courseid.'.num'},
12642:                                    $env{'course.'.$courseid.'.domain'},
12643:                                    'course',$mapp,$recursed,$recurseupref,
12644:                                    $courseid,'.['.$group.'].',$what,
12645:                                    @groupitems);
12646:         last if (defined($coursereply));
12647:     }
12648:     return $coursereply;
12649: }
12650: 
12651: sub get_map_hierarchy {
12652:     my ($mapname,$courseid) = @_;
12653:     my @recurseup = ();
12654:     if ($mapname) {
12655:         if (($cachedmapkey eq $courseid) &&
12656:             (abs($cachedmaptime-time)<5)) {
12657:             if (ref($cachedmaps{$mapname}) eq 'ARRAY') {
12658:                 return @{$cachedmaps{$mapname}};
12659:             }
12660:         }
12661:         my $navmap = Apache::lonnavmaps::navmap->new();
12662:         if (ref($navmap)) {
12663:             @recurseup = $navmap->recurseup_maps($mapname);
12664:             undef($navmap);
12665:             $cachedmaps{$mapname} = \@recurseup;
12666:             $cachedmaptime=time;
12667:             $cachedmapkey=$courseid;
12668:         }
12669:     }
12670:     return @recurseup;
12671: }
12672: 
12673: }
12674: 
12675: sub sort_course_groups { # Sort groups based on defined rankings. Default is sort().
12676:     my ($courseid,@groups) = @_;
12677:     @groups = sort(@groups);
12678:     return @groups;
12679: }
12680: 
12681: sub packages_tab_default {
12682:     my ($uri,$varname,$toolsymb)=@_;
12683:     my (undef,$part,$name)=split(/\./,$varname);
12684: 
12685:     my (@extension,@specifics,$do_default);
12686:     foreach my $package (split(/,/,&metadata($uri,'packages',$toolsymb))) {
12687: 	my ($pack_type,$pack_part)=split(/_/,$package,2);
12688: 	if ($pack_type eq 'default') {
12689: 	    $do_default=1;
12690: 	} elsif ($pack_type eq 'extension') {
12691: 	    push(@extension,[$package,$pack_type,$pack_part]);
12692: 	} elsif ($pack_part eq $part || $pack_type eq 'part') {
12693: 	    # only look at packages defaults for packages that this id is
12694: 	    push(@specifics,[$package,$pack_type,$pack_part]);
12695: 	}
12696:     }
12697:     # first look for a package that matches the requested part id
12698:     foreach my $package (@specifics) {
12699: 	my (undef,$pack_type,$pack_part)=@{$package};
12700: 	next if ($pack_part ne $part);
12701: 	if (defined($packagetab{"$pack_type&$name&default"})) {
12702: 	    return $packagetab{"$pack_type&$name&default"};
12703: 	}
12704:     }
12705:     # look for any possible matching non extension_ package
12706:     foreach my $package (@specifics) {
12707: 	my (undef,$pack_type,$pack_part)=@{$package};
12708: 	if (defined($packagetab{"$pack_type&$name&default"})) {
12709: 	    return $packagetab{"$pack_type&$name&default"};
12710: 	}
12711: 	if ($pack_type eq 'part') { $pack_part='0'; }
12712: 	if (defined($packagetab{$pack_type."_".$pack_part."&$name&default"})) {
12713: 	    return $packagetab{$pack_type."_".$pack_part."&$name&default"};
12714: 	}
12715:     }
12716:     # look for any posible extension_ match
12717:     foreach my $package (@extension) {
12718: 	my ($package,$pack_type)=@{$package};
12719: 	if (defined($packagetab{"$pack_type&$name&default"})) {
12720: 	    return $packagetab{"$pack_type&$name&default"};
12721: 	}
12722: 	if (defined($packagetab{$package."&$name&default"})) {
12723: 	    return $packagetab{$package."&$name&default"};
12724: 	}
12725:     }
12726:     # look for a global default setting
12727:     if ($do_default && defined($packagetab{"default&$name&default"})) {
12728: 	return $packagetab{"default&$name&default"};
12729:     }
12730:     return undef;
12731: }
12732: 
12733: sub add_prefix_and_part {
12734:     my ($prefix,$part)=@_;
12735:     my $keyroot;
12736:     if (defined($prefix) && $prefix !~ /^__/) {
12737: 	# prefix that has a part already
12738: 	$keyroot=$prefix;
12739:     } elsif (defined($prefix)) {
12740: 	# prefix that is missing a part
12741: 	if (defined($part)) { $keyroot='_'.$part.substr($prefix,1); }
12742:     } else {
12743: 	# no prefix at all
12744: 	if (defined($part)) { $keyroot='_'.$part; }
12745:     }
12746:     return $keyroot;
12747: }
12748: 
12749: # ---------------------------------------------------------------- Get metadata
12750: 
12751: my %metaentry;
12752: my %importedpartids;
12753: my %importedrespids;
12754: sub metadata {
12755:     my ($uri,$what,$toolsymb,$liburi,$prefix,$depthcount)=@_;
12756:     $uri=&declutter($uri);
12757:     # if it is a non metadata possible uri return quickly
12758:     if (($uri eq '') || 
12759: 	(($uri =~ m|^/*adm/|) && 
12760: 	     ($uri !~ m|^adm/includes|) && ($uri !~ m{/(smppg|bulletinboard|ext\.tool)$})) ||
12761:         ($uri =~ m|/$|) || ($uri =~ m|/.meta$|) || ($uri =~ m{^/*uploaded/.+\.sequence$})) {
12762: 	return undef;
12763:     }
12764:     if (($uri =~ /^priv/ || $uri=~m{^home/httpd/html/priv}) 
12765: 	&& &Apache::lonxml::get_state('target') =~ /^(|meta)$/) {
12766: 	return undef;
12767:     }
12768:     my $filename=$uri;
12769:     $uri=~s/\.meta$//;
12770: #
12771: # Is the metadata already cached?
12772: # Look at timestamp of caching
12773: # Everything is cached by the main uri, libraries are never directly cached
12774: #
12775:     if (!defined($liburi)) {
12776: 	my ($result,$cached)=&is_cached_new('meta',$uri);
12777: 	if (defined($cached)) { return $result->{':'.$what}; }
12778:     }
12779: 
12780: #
12781: # If the uri is for an external tool the file from
12782: # which metadata should be retrieved depends on whether
12783: # the tool had been configured to be gradable (set in the Course
12784: # Editor or Resource Editor).
12785: #
12786: # If a valid symb has been included as the third arg in the call
12787: # to &metadata() that can be used to retrieve the value of
12788: # parameter_0_gradable set for the resource, and included in the
12789: # uploaded map containing the tool. The value is retrieved via
12790: # &EXT(), if a valid symb is available.  Otherwise the value of
12791: # gradable in the exttool_$marker.db file for the tool instance
12792: # is retrieved via &get().
12793: #
12794: # When lonuserstate::traceroute() calls lonnet::EXT() for 
12795: # hiddenresource and encrypturl (during course initialization)
12796: # the map-level parameter for resource.0.gradable included in the 
12797: # uploaded map containing the tool will not yet have been stored
12798: # in the user_course_parms.db file for the user's session, so in 
12799: # this case fall back to retrieving gradable status from the
12800: # exttool_$marker.db file.
12801: #
12802: # In order to avoid an infinite loop, &metadata() will return
12803: # before a call to &EXT(), if the uri is for an external tool
12804: # and the $what for which metadata is being requested is
12805: # parameter_0_gradable or 0_gradable.
12806: #
12807: 
12808:     if ($uri =~ /ext\.tool$/) {
12809:         if (($what eq 'parameter_0_gradable') || ($what eq '0_gradable')) {
12810:             return;
12811:         } else {
12812:             my ($checked,$use_passback);
12813:             if ($toolsymb ne '') {
12814:                 (undef,undef,my $tooluri) = &decode_symb($toolsymb);
12815:                 if (($tooluri eq $uri) && (&EXT('resource.0.gradable',$toolsymb))) {
12816:                     $checked = 1;
12817:                     if (&EXT('resource.0.gradable',$toolsymb) =~ /^yes$/i) {
12818:                         $use_passback = 1;
12819:                     }
12820:                 }
12821:             }
12822:             unless ($checked) {
12823:                 my ($ignore,$cdom,$cnum,$marker) = split(m{/},$uri);
12824:                 $marker=~s/\D//g;
12825:                 if ($marker) {
12826:                     my %toolsettings=&get('exttool_'.$marker,['gradable'],$cdom,$cnum);
12827:                     $use_passback = $toolsettings{'gradable'};
12828:                 }
12829:             }
12830:             if ($use_passback) {
12831:                 $filename = '/home/httpd/html/res/lib/templates/LTIpassback.tool';
12832:             } else {
12833:                 $filename = '/home/httpd/html/res/lib/templates/LTIstandard.tool';
12834:             }
12835:         }
12836:     }
12837: 
12838:     {
12839: # Imported parts would go here
12840:         my @origfiletagids=();
12841:         my $importedparts=0;
12842: 
12843: # Imported responseids would go here
12844:         my $importedresponses=0;
12845: #
12846: # Is this a recursive call for a library?
12847: #
12848: #	if (! exists($metacache{$uri})) {
12849: #	    $metacache{$uri}={};
12850: #	}
12851: 	my $cachetime = 60*60;
12852:         if ($liburi) {
12853: 	    $liburi=&declutter($liburi);
12854:             $filename=$liburi;
12855:         } else {
12856: 	    &devalidate_cache_new('meta',$uri);
12857: 	    undef(%metaentry);
12858: 	}
12859:         my %metathesekeys=();
12860:         unless ($filename=~/\.meta$/) { $filename.='.meta'; }
12861: 	my $metastring;
12862: 	if ($uri =~ /^priv/ || $uri=~/home\/httpd\/html\/priv/) {
12863: 	    my $which = &hreflocation('','/'.($liburi || $uri));
12864: 	    $metastring = 
12865: 		&Apache::lonnet::ssi_body($which,
12866: 					  ('grade_target' => 'meta'));
12867: 	    $cachetime = 1; # only want this cached in the child not long term
12868: 	} elsif (($uri !~ m -^(editupload)/-) && 
12869:                  ($uri !~ m{^/*uploaded/$match_domain/$match_courseid/docs/})) {
12870: 	    my $file=&filelocation('',&clutter($filename));
12871: 	    #push(@{$metaentry{$uri.'.file'}},$file);
12872: 	    $metastring=&getfile($file);
12873: 	}
12874:         my $parser=HTML::LCParser->new(\$metastring);
12875:         my $token;
12876:         undef %metathesekeys;
12877:         while ($token=$parser->get_token) {
12878: 	    if ($token->[0] eq 'S') {
12879: 		if (defined($token->[2]->{'package'})) {
12880: #
12881: # This is a package - get package info
12882: #
12883: 		    my $package=$token->[2]->{'package'};
12884: 		    my $keyroot=&add_prefix_and_part($prefix,$token->[2]->{'part'});
12885: 		    if (defined($token->[2]->{'id'})) { 
12886: 			$keyroot.='_'.$token->[2]->{'id'}; 
12887: 		    }
12888: 		    if ($metaentry{':packages'}) {
12889: 			$metaentry{':packages'}.=','.$package.$keyroot;
12890: 		    } else {
12891: 			$metaentry{':packages'}=$package.$keyroot;
12892: 		    }
12893: 		    foreach my $pack_entry (keys(%packagetab)) {
12894: 			my $part=$keyroot;
12895: 			$part=~s/^\_//;
12896: 			if ($pack_entry=~/^\Q$package\E\&/ || 
12897: 			    $pack_entry=~/^\Q$package\E_0\&/) {
12898: 			    my ($pack,$name,$subp)=split(/\&/,$pack_entry);
12899: 			    # ignore package.tab specified default values
12900:                             # here &package_tab_default() will fetch those
12901: 			    if ($subp eq 'default') { next; }
12902: 			    my $value=$packagetab{$pack_entry};
12903: 			    my $unikey;
12904: 			    if ($pack =~ /_0$/) {
12905: 				$unikey='parameter_0_'.$name;
12906: 				$part=0;
12907: 			    } else {
12908: 				$unikey='parameter'.$keyroot.'_'.$name;
12909: 			    }
12910: 			    if ($subp eq 'display') {
12911: 				$value.=' [Part: '.$part.']';
12912: 			    }
12913: 			    $metaentry{':'.$unikey.'.part'}=$part;
12914: 			    $metathesekeys{$unikey}=1;
12915: 			    unless (defined($metaentry{':'.$unikey.'.'.$subp})) {
12916: 				$metaentry{':'.$unikey.'.'.$subp}=$value;
12917: 			    }
12918: 			    if (defined($metaentry{':'.$unikey.'.default'})) {
12919: 				$metaentry{':'.$unikey}=
12920: 				    $metaentry{':'.$unikey.'.default'};
12921: 			    }
12922: 			}
12923: 		    }
12924: 		} else {
12925: #
12926: # This is not a package - some other kind of start tag
12927: #
12928: 		    my $entry=$token->[1];
12929: 		    my $unikey='';
12930: 
12931: 		    if ($entry eq 'import') {
12932: #
12933: # Importing a library here
12934: #
12935:                         my $location=$parser->get_text('/import');
12936:                         my $dir=$filename;
12937:                         $dir=~s|[^/]*$||;
12938:                         $location=&filelocation($dir,$location);
12939: 
12940:                         my $importid=$token->[2]->{'id'};
12941:                         my $importmode=$token->[2]->{'importmode'};
12942: #
12943: # Check metadata for imported file to
12944: # see if it contained response items
12945: #
12946:                         my ($origfile,@libfilekeys);
12947:                         my %currmetaentry = %metaentry;
12948:                         @libfilekeys = split(/,/,&metadata($location,'keys',undef,undef,undef,
12949:                                                            $depthcount+1));
12950:                         if (grep(/^responseorder$/,@libfilekeys)) {
12951:                             my $libresponseorder = &metadata($location,'responseorder',undef,undef,
12952:                                                              undef,$depthcount+1);
12953:                             if ($libresponseorder ne '') {
12954:                                 if ($#origfiletagids<0) {
12955:                                     undef(%importedrespids);
12956:                                     undef(%importedpartids);
12957:                                 }
12958:                                 my @respids = split(/\s*,\s*/,$libresponseorder);
12959:                                 if (@respids) {
12960:                                     $importedrespids{$importid} = join(',',map { $importid.'_'.$_ } @respids);
12961:                                 }
12962:                                 if ($importedrespids{$importid} ne '') {
12963:                                     $importedresponses = 1;
12964: # We need to get the original file and the imported file to get the response order correct
12965: # Load and inspect original file
12966:                                     if ($#origfiletagids<0) {
12967:                                         my $origfilelocation=$perlvar{'lonDocRoot'}.&clutter($uri);
12968:                                         $origfile=&getfile($origfilelocation);
12969:                                         @origfiletagids=($origfile=~/<((?:\w+)response|import|part)[^>]*id\s*=\s*[\"\']([^\"\']+)[\"\'][^>]*>/gs);
12970:                                     }
12971:                                 }
12972:                             }
12973:                         }
12974: # Do not overwrite contents of %metaentry hash for resource itself with 
12975: # hash populated for imported library file
12976:                         %metaentry = %currmetaentry;
12977:                         undef(%currmetaentry);
12978:                         if ($importmode eq 'part') {
12979: # Import as part(s)
12980:                            $importedparts=1;
12981: # We need to get the original file and the imported file to get the part order correct
12982: # Good news: we do not need to worry about nested libraries, since parts cannot be nested
12983: # Load and inspect original file if we didn't do that already
12984:                            if ($#origfiletagids<0) {
12985:                                undef(%importedrespids);
12986:                                undef(%importedpartids);
12987:                                if ($origfile eq '') {
12988:                                    my $origfilelocation=$perlvar{'lonDocRoot'}.&clutter($uri);
12989:                                    $origfile=&getfile($origfilelocation);
12990:                                    @origfiletagids=($origfile=~/<(part|import)[^>]*id\s*=\s*[\"\']([^\"\']+)[\"\'][^>]*>/gs);
12991:                                }
12992:                            }
12993:                            my @impfilepartids;
12994: # If <partorder> tag is included in metadata for the imported file
12995: # get the parts in the imported file from that.
12996:                            if (grep(/^partorder$/,@libfilekeys)) {
12997:                                %currmetaentry = %metaentry;
12998:                                my $libpartorder = &metadata($location,'partorder',undef,undef,undef,
12999:                                                             $depthcount+1);
13000:                                %metaentry = %currmetaentry;
13001:                                undef(%currmetaentry);
13002:                                if ($libpartorder ne '') {
13003:                                    @impfilepartids=split(/\s*,\s*/,$libpartorder);
13004:                                }
13005:                            } else {
13006: # If no <partorder> tag available, load and inspect imported file
13007:                                my $impfile=&getfile($location);
13008:                                @impfilepartids=($impfile=~/<part[^>]*id\s*=\s*[\"\']([^\"\']+)[\"\'][^>]*>/gs);
13009:                            }
13010:                            if ($#impfilepartids>=0) {
13011: # This problem had parts
13012:                                $importedpartids{$token->[2]->{'id'}}=join(',',@impfilepartids);
13013:                            } else {
13014: # Importing by turning a single problem into a problem part
13015: # It gets the import-tags ID as part-ID
13016:                                $unikey=&add_prefix_and_part($prefix,$token->[2]->{'id'});
13017:                                $importedpartids{$token->[2]->{'id'}}=$token->[2]->{'id'};
13018:                            }
13019:                         } else {
13020: # Import as problem or as normal import
13021:                             $unikey=&add_prefix_and_part($prefix,$token->[2]->{'part'});
13022:                             unless ($importmode eq 'problem') {
13023: # Normal import
13024:                                 if (defined($token->[2]->{'id'})) {
13025:                                     $unikey.='_'.$token->[2]->{'id'};
13026:                                 }
13027:                             }
13028: # Check metadata for imported file to
13029: # see if it contained parts
13030:                             if (grep(/^partorder$/,@libfilekeys)) {
13031:                                 %currmetaentry = %metaentry;
13032:                                 my $libpartorder = &metadata($location,'partorder',undef,undef,undef,
13033:                                                              $depthcount+1);
13034:                                 %metaentry = %currmetaentry;
13035:                                 undef(%currmetaentry);
13036:                                 if ($libpartorder ne '') {
13037:                                     $importedparts = 1;
13038:                                     $importedpartids{$token->[2]->{'id'}}=$libpartorder;
13039:                                 }
13040:                             }
13041:                         }
13042: 			if ($depthcount<20) {
13043: 			    my $metadata = 
13044: 				&metadata($uri,'keys',$toolsymb,$location,$unikey,
13045: 					  $depthcount+1);
13046: 			    foreach my $meta (split(',',$metadata)) {
13047: 				$metaentry{':'.$meta}=$metaentry{':'.$meta};
13048: 				$metathesekeys{$meta}=1;
13049: 			    }
13050:                         }
13051: 		    } else {
13052: #
13053: # Not importing, some other kind of non-package, non-library start tag
13054: # 
13055:                         $unikey=$entry.&add_prefix_and_part($prefix,$token->[2]->{'part'});
13056:                         if (defined($token->[2]->{'id'})) {
13057:                             $unikey.='_'.$token->[2]->{'id'};
13058:                         }
13059: 			if (defined($token->[2]->{'name'})) { 
13060: 			    $unikey.='_'.$token->[2]->{'name'}; 
13061: 			}
13062: 			$metathesekeys{$unikey}=1;
13063: 			foreach my $param (@{$token->[3]}) {
13064: 			    $metaentry{':'.$unikey.'.'.$param} =
13065: 				$token->[2]->{$param};
13066: 			}
13067: 			my $internaltext=&HTML::Entities::decode($parser->get_text('/'.$entry));
13068: 			my $default=$metaentry{':'.$unikey.'.default'};
13069: 			if ( $internaltext =~ /^\s*$/ && $default !~ /^\s*$/) {
13070: 		 # only ws inside the tag, and not in default, so use default
13071: 		 # as value
13072: 			    $metaentry{':'.$unikey}=$default;
13073: 			} elsif ( $internaltext =~ /\S/ ) {
13074: 		  # something interesting inside the tag
13075: 			    $metaentry{':'.$unikey}=$internaltext;
13076: 			} else {
13077: 		  # no interesting values, don't set a default
13078: 			}
13079: # end of not-a-package not-a-library import
13080: 		    }
13081: # end of not-a-package start tag
13082: 		}
13083: # the next is the end of "start tag"
13084: 	    }
13085: 	}
13086: 	my ($extension) = ($uri =~ /\.(\w+)$/);
13087: 	$extension = lc($extension);
13088: 	if ($extension eq 'htm') { $extension='html'; }
13089: 
13090: 	foreach my $key (keys(%packagetab)) {
13091: 	    #no specific packages #how's our extension
13092: 	    if ($key!~/^extension_\Q$extension\E&/) { next; }
13093: 	    &metadata_create_package_def($uri,$key,'extension_'.$extension,
13094: 					 \%metathesekeys);
13095: 	}
13096: 
13097: 	if (!exists($metaentry{':packages'})
13098: 	    || $packagetab{"import_defaults&extension_$extension"}) {
13099: 	    foreach my $key (keys(%packagetab)) {
13100: 		#no specific packages well let's get default then
13101: 		if ($key!~/^default&/) { next; }
13102: 		&metadata_create_package_def($uri,$key,'default',
13103: 					     \%metathesekeys);
13104: 	    }
13105: 	}
13106: # are there custom rights to evaluate
13107: 	if ($metaentry{':copyright'} eq 'custom') {
13108: 
13109:     #
13110:     # Importing a rights file here
13111:     #
13112: 	    unless ($depthcount) {
13113: 		my $location=$metaentry{':customdistributionfile'};
13114: 		my $dir=$filename;
13115: 		$dir=~s|[^/]*$||;
13116: 		$location=&filelocation($dir,$location);
13117: 		my $rights_metadata =
13118: 		    &metadata($uri,'keys',$toolsymb,$location,'_rights',
13119: 			      $depthcount+1);
13120: 		foreach my $rights (split(',',$rights_metadata)) {
13121: 		    #$metaentry{':'.$rights}=$metacache{$uri}->{':'.$rights};
13122: 		    $metathesekeys{$rights}=1;
13123: 		}
13124: 	    }
13125: 	}
13126: 	# uniqifiy package listing
13127: 	my %seen;
13128: 	my @uniq_packages =
13129: 	    grep { ! $seen{$_} ++ } (split(',',$metaentry{':packages'}));
13130: 	$metaentry{':packages'} = join(',',@uniq_packages);
13131: 
13132:         if (($importedresponses) || ($importedparts)) {
13133:             if ($importedparts) {
13134: # We had imported parts and need to rebuild partorder
13135:                 $metaentry{':partorder'}='';
13136:                 $metathesekeys{'partorder'}=1;
13137:             }
13138:             if ($importedresponses) {
13139: # We had imported responses and need to rebuil responseorder
13140:                 $metaentry{':responseorder'}='';
13141:                 $metathesekeys{'responseorder'}=1;
13142:             }
13143:             for (my $index=0;$index<$#origfiletagids;$index+=2) {
13144:                 my $origid = $origfiletagids[$index+1];
13145:                 if ($origfiletagids[$index] eq 'part') {
13146: # Original part, part of the problem
13147:                     if ($importedparts) {
13148:                         $metaentry{':partorder'}.=','.$origid;
13149:                     }
13150:                 } elsif ($origfiletagids[$index] eq 'import') {
13151:                     if ($importedparts) {
13152: # We have imported parts at this position
13153:                         if ($importedpartids{$origid} ne '') {
13154:                             $metaentry{':partorder'}.=','.$importedpartids{$origid};
13155:                         }
13156:                     }
13157:                     if ($importedresponses) {
13158: # We have imported responses at this position
13159:                         if ($importedrespids{$origid} ne '') {
13160:                             $metaentry{':responseorder'}.=','.$importedrespids{$origid};
13161:                         }
13162:                     }
13163:                 } else {
13164: # Original response item, part of the problem
13165:                     if ($importedresponses) {
13166:                         $metaentry{':responseorder'}.=','.$origid;
13167:                     }
13168:                 }
13169:             }
13170:             if ($importedparts) {
13171:                 $metaentry{':partorder'}=~s/^\,//;
13172:             }
13173:             if ($importedresponses) {
13174:                 $metaentry{':responseorder'}=~s/^\,//;
13175:             }
13176:         }
13177: 	$metaentry{':keys'} = join(',',keys(%metathesekeys));
13178: 	&metadata_generate_part0(\%metathesekeys,\%metaentry,$uri);
13179: 	$metaentry{':allpossiblekeys'}=join(',',keys(%metathesekeys));
13180:         unless ($liburi) {
13181: 	    &do_cache_new('meta',$uri,\%metaentry,$cachetime);
13182:         }
13183: # this is the end of "was not already recently cached
13184:     }
13185:     return $metaentry{':'.$what};
13186: }
13187: 
13188: sub metadata_create_package_def {
13189:     my ($uri,$key,$package,$metathesekeys)=@_;
13190:     my ($pack,$name,$subp)=split(/\&/,$key);
13191:     if ($subp eq 'default') { next; }
13192:     
13193:     if (defined($metaentry{':packages'})) {
13194: 	$metaentry{':packages'}.=','.$package;
13195:     } else {
13196: 	$metaentry{':packages'}=$package;
13197:     }
13198:     my $value=$packagetab{$key};
13199:     my $unikey;
13200:     $unikey='parameter_0_'.$name;
13201:     $metaentry{':'.$unikey.'.part'}=0;
13202:     $$metathesekeys{$unikey}=1;
13203:     unless (defined($metaentry{':'.$unikey.'.'.$subp})) {
13204: 	$metaentry{':'.$unikey.'.'.$subp}=$value;
13205:     }
13206:     if (defined($metaentry{':'.$unikey.'.default'})) {
13207: 	$metaentry{':'.$unikey}=
13208: 	    $metaentry{':'.$unikey.'.default'};
13209:     }
13210: }
13211: 
13212: sub metadata_generate_part0 {
13213:     my ($metadata,$metacache,$uri) = @_;
13214:     my %allnames;
13215:     foreach my $metakey (keys(%$metadata)) {
13216: 	if ($metakey=~/^parameter\_(.*)/) {
13217: 	  my $part=$$metacache{':'.$metakey.'.part'};
13218: 	  my $name=$$metacache{':'.$metakey.'.name'};
13219: 	  if (! exists($$metadata{'parameter_0_'.$name.'.name'})) {
13220: 	    $allnames{$name}=$part;
13221: 	  }
13222: 	}
13223:     }
13224:     foreach my $name (keys(%allnames)) {
13225:       $$metadata{"parameter_0_$name"}=1;
13226:       my $key=":parameter_0_$name";
13227:       $$metacache{"$key.part"}='0';
13228:       $$metacache{"$key.name"}=$name;
13229:       $$metacache{"$key.type"}=$$metacache{':parameter_'.
13230: 					   $allnames{$name}.'_'.$name.
13231: 					   '.type'};
13232:       my $olddis=$$metacache{':parameter_'.$allnames{$name}.'_'.$name.
13233: 			     '.display'};
13234:       my $expr='[Part: '.$allnames{$name}.']';
13235:       $olddis=~s/\Q$expr\E/\[Part: 0\]/;
13236:       $$metacache{"$key.display"}=$olddis;
13237:     }
13238: }
13239: 
13240: # ------------------------------------------------------ Devalidate title cache
13241: 
13242: sub devalidate_title_cache {
13243:     my ($url)=@_;
13244:     if (!$env{'request.course.id'}) { return; }
13245:     my $symb=&symbread($url);
13246:     if (!$symb) { return; }
13247:     my $key=$env{'request.course.id'}."\0".$symb;
13248:     &devalidate_cache_new('title',$key);
13249: }
13250: 
13251: # ------------------------------------------------- Get the title of a course
13252: 
13253: sub current_course_title {
13254:     return $env{ 'course.' . $env{'request.course.id'} . '.description' };
13255: }
13256: # ------------------------------------------------- Get the title of a resource
13257: 
13258: sub gettitle {
13259:     my $urlsymb=shift;
13260:     my $symb=&symbread($urlsymb);
13261:     if ($symb) {
13262: 	my $key=$env{'request.course.id'}."\0".$symb;
13263: 	my ($result,$cached)=&is_cached_new('title',$key);
13264: 	if (defined($cached)) { 
13265: 	    return $result;
13266: 	}
13267: 	my ($map,$resid,$url)=&decode_symb($symb);
13268: 	my $title='';
13269: 	if (!$map && $resid == 0 && $url =~/default\.sequence$/) {
13270: 	    $title = $env{'course.'.$env{'request.course.id'}.'.description'};
13271: 	} else {
13272: 	    if (tie(my %bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
13273: 		    &GDBM_READER(),0640)) {
13274: 		my $mapid=$bighash{'map_pc_'.&clutter($map)};
13275: 		$title=$bighash{'title_'.$mapid.'.'.$resid};
13276: 		untie(%bighash);
13277: 	    }
13278: 	}
13279: 	$title=~s/\&colon\;/\:/gs;
13280: 	if ($title) {
13281: # Remember both $symb and $title for dynamic metadata
13282:             $accesshash{$symb.'___crstitle'}=$title;
13283:             $accesshash{&declutter($map).'___'.&declutter($url).'___usage'}=time;
13284: # Cache this title and then return it
13285: 	    return &do_cache_new('title',$key,$title,600);
13286: 	}
13287: 	$urlsymb=$url;
13288:     }
13289:     my $title=&metadata($urlsymb,'title');
13290:     if (!$title) { $title=(split('/',$urlsymb))[-1]; }    
13291:     return $title;
13292: }
13293: 
13294: sub get_slot {
13295:     my ($which,$cnum,$cdom)=@_;
13296:     if (!$cnum || !$cdom) {
13297: 	(undef,my $courseid)=&whichuser();
13298: 	$cdom=$env{'course.'.$courseid.'.domain'};
13299: 	$cnum=$env{'course.'.$courseid.'.num'};
13300:     }
13301:     my $key=join("\0",'slots',$cdom,$cnum,$which);
13302:     my %slotinfo;
13303:     if (exists($remembered{$key})) {
13304: 	$slotinfo{$which} = $remembered{$key};
13305:     } else {
13306: 	%slotinfo=&get('slots',[$which],$cdom,$cnum);
13307: 	&Apache::lonhomework::showhash(%slotinfo);
13308: 	my ($tmp)=keys(%slotinfo);
13309: 	if ($tmp=~/^error:/) { return (); }
13310: 	$remembered{$key} = $slotinfo{$which};
13311:     }
13312:     if (ref($slotinfo{$which}) eq 'HASH') {
13313: 	return %{$slotinfo{$which}};
13314:     }
13315:     return $slotinfo{$which};
13316: }
13317: 
13318: sub get_reservable_slots {
13319:     my ($cnum,$cdom,$uname,$udom) = @_;
13320:     my $now = time;
13321:     my $reservable_info;
13322:     my $key=join("\0",'reservableslots',$cdom,$cnum,$uname,$udom);
13323:     if (exists($remembered{$key})) {
13324:         $reservable_info = $remembered{$key};
13325:     } else {
13326:         my %resv;
13327:         ($resv{'now_order'},$resv{'now'},$resv{'future_order'},$resv{'future'}) =
13328:         &Apache::loncommon::get_future_slots($cnum,$cdom,$now);
13329:         $reservable_info = \%resv;
13330:         $remembered{$key} = $reservable_info;
13331:     }
13332:     return $reservable_info;
13333: }
13334: 
13335: sub get_course_slots {
13336:     my ($cnum,$cdom) = @_;
13337:     my $hashid=$cnum.':'.$cdom;
13338:     my ($result,$cached) = &Apache::lonnet::is_cached_new('allslots',$hashid);
13339:     if (defined($cached)) {
13340:         if (ref($result) eq 'HASH') {
13341:             return %{$result};
13342:         }
13343:     } else {
13344:         my %slots=&Apache::lonnet::dump('slots',$cdom,$cnum);
13345:         my ($tmp) = keys(%slots);
13346:         if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
13347:             &do_cache_new('allslots',$hashid,\%slots,600);
13348:             return %slots;
13349:         }
13350:     }
13351:     return;
13352: }
13353: 
13354: sub devalidate_slots_cache {
13355:     my ($cnum,$cdom)=@_;
13356:     my $hashid=$cnum.':'.$cdom;
13357:     &devalidate_cache_new('allslots',$hashid);
13358: }
13359: 
13360: sub get_coursechange {
13361:     my ($cdom,$cnum) = @_;
13362:     if ($cdom eq '' || $cnum eq '') {
13363:         return unless ($env{'request.course.id'});
13364:         $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
13365:         $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
13366:     }
13367:     my $hashid=$cdom.'_'.$cnum;
13368:     my ($change,$cached)=&is_cached_new('crschange',$hashid);
13369:     if ((defined($cached)) && ($change ne '')) {
13370:         return $change;
13371:     } else {
13372:         my %crshash;
13373:         %crshash = &get('environment',['internal.contentchange'],$cdom,$cnum);
13374:         if ($crshash{'internal.contentchange'} eq '') {
13375:             $change = $env{'course.'.$cdom.'_'.$cnum.'.internal.created'};
13376:             if ($change eq '') {
13377:                 %crshash = &get('environment',['internal.created'],$cdom,$cnum);
13378:                 $change = $crshash{'internal.created'};
13379:             }
13380:         } else {
13381:             $change = $crshash{'internal.contentchange'};
13382:         }
13383:         my $cachetime = 600;
13384:         &do_cache_new('crschange',$hashid,$change,$cachetime);
13385:     }
13386:     return $change;
13387: }
13388: 
13389: sub devalidate_coursechange_cache {
13390:     my ($cnum,$cdom)=@_;
13391:     my $hashid=$cnum.':'.$cdom;
13392:     &devalidate_cache_new('crschange',$hashid);
13393: }
13394: 
13395: # ------------------------------------------------- Update symbolic store links
13396: 
13397: sub symblist {
13398:     my ($mapname,%newhash)=@_;
13399:     $mapname=&deversion(&declutter($mapname));
13400:     my %hash;
13401:     if (($env{'request.course.fn'}) && (%newhash)) {
13402:         if (tie(%hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db',
13403:                       &GDBM_WRCREAT(),0640)) {
13404: 	    foreach my $url (keys(%newhash)) {
13405: 		next if ($url eq 'last_known'
13406: 			 && $env{'form.no_update_last_known'});
13407: 		$hash{declutter($url)}=&encode_symb($mapname,
13408: 						    $newhash{$url}->[1],
13409: 						    $newhash{$url}->[0]);
13410:             }
13411:             if (untie(%hash)) {
13412: 		return 'ok';
13413:             }
13414:         }
13415:     }
13416:     return 'error';
13417: }
13418: 
13419: # --------------------------------------------------------------- Verify a symb
13420: 
13421: sub symbverify {
13422:     my ($symb,$thisurl,$encstate)=@_;
13423:     my $thisfn=$thisurl;
13424:     $thisfn=&declutter($thisfn);
13425: # direct jump to resource in page or to a sequence - will construct own symbs
13426:     if ($thisfn=~/\.(page|sequence)$/) { return 1; }
13427: # check URL part
13428:     my ($map,$resid,$url)=&decode_symb($symb);
13429: 
13430:     unless ($url eq $thisfn) { return 0; }
13431: 
13432:     $symb=&symbclean($symb);
13433:     $thisurl=&deversion($thisurl);
13434:     $thisfn=&deversion($thisfn);
13435: 
13436:     my %bighash;
13437:     my $okay=0;
13438: 
13439:     if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
13440:                             &GDBM_READER(),0640)) {
13441:         if (($thisurl =~ m{^/adm/wrapper/ext/}) || ($thisurl =~ m{^ext/})) {
13442:             $thisurl =~ s/\?.+$//;
13443:             if ($map =~ m{^uploaded/.+\.page$}) {
13444:                 $thisurl =~ s{^(/adm/wrapper|)/ext/}{http://};
13445:                 $thisurl =~ s{^\Qhttp://https://\E}{https://};
13446:             }
13447:         }
13448:         my $ids;
13449:         if ($map =~ m{^uploaded/.+\.page$}) {
13450:             $ids=$bighash{'ids_'.&clutter_with_no_wrapper($thisurl)};
13451:         } else {
13452:             $ids=$bighash{'ids_'.&clutter($thisurl)};
13453:         }
13454:         unless ($ids) {
13455:             my $idkey = 'ids_'.($thisurl =~ m{^/}? '' : '/').$thisurl;  
13456:             $ids=$bighash{$idkey};
13457:         }
13458:         if ($ids) {
13459: # ------------------------------------------------------------------- Has ID(s)
13460:             if ($thisfn =~ m{^/adm/wrapper/ext/}) {
13461:                 $symb =~ s/\?.+$//;
13462:             }
13463: 	    foreach my $id (split(/\,/,$ids)) {
13464: 	       my ($mapid,$resid)=split(/\./,$id);
13465:                if (
13466:   &symbclean(&declutter($bighash{'map_id_'.$mapid}).'___'.$resid.'___'.$thisfn)
13467:    eq $symb) {
13468:                    if (ref($encstate)) {
13469:                        $$encstate = $bighash{'encrypted_'.$id};
13470:                    }
13471: 		   if (($env{'request.role.adv'}) ||
13472: 		       ($bighash{'encrypted_'.$id} eq $env{'request.enc'}) ||
13473:                        ($thisurl eq '/adm/navmaps')) {
13474: 		       $okay=1;
13475:                        last;
13476: 		   }
13477: 	       }
13478: 	   }
13479:         }
13480: 	untie(%bighash);
13481:     }
13482:     return $okay;
13483: }
13484: 
13485: # --------------------------------------------------------------- Clean-up symb
13486: 
13487: sub symbclean {
13488:     my $symb=shift;
13489:     if ($symb=~m|^/enc/|) { $symb=&Apache::lonenc::unencrypted($symb); }
13490: # remove version from map
13491:     $symb=~s/\.(\d+)\.(\w+)\_\_\_/\.$2\_\_\_/;
13492: 
13493: # remove version from URL
13494:     $symb=~s/\.(\d+)\.(\w+)$/\.$2/;
13495: 
13496: # remove wrapper
13497: 
13498:     $symb=~s/(\_\_\_\d+\_\_\_)adm\/wrapper\/(res\/)*/$1/;
13499:     $symb=~s/(\_\_\_\d+\_\_\_)adm\/coursedocs\/showdoc\/(res\/)*/$1/;
13500:     return $symb;
13501: }
13502: 
13503: # ---------------------------------------------- Split symb to find map and url
13504: 
13505: sub encode_symb {
13506:     my ($map,$resid,$url)=@_;
13507:     return &symbclean(&declutter($map).'___'.$resid.'___'.&declutter($url));
13508: }
13509: 
13510: sub decode_symb {
13511:     my $symb=shift;
13512:     if ($symb=~m|^/enc/|) { $symb=&Apache::lonenc::unencrypted($symb); }
13513:     my ($map,$resid,$url)=split(/___/,$symb);
13514:     return (&fixversion($map),$resid,&fixversion($url));
13515: }
13516: 
13517: sub fixversion {
13518:     my $fn=shift;
13519:     if ($fn=~/^(adm|uploaded|editupload|public)/) { return $fn; }
13520:     my %bighash;
13521:     my $uri=&clutter($fn);
13522:     my $key=$env{'request.course.id'}.'_'.$uri;
13523: # is this cached?
13524:     my ($result,$cached)=&is_cached_new('courseresversion',$key);
13525:     if (defined($cached)) { return $result; }
13526: # unfortunately not cached, or expired
13527:     if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
13528: 	    &GDBM_READER(),0640)) {
13529:  	if ($bighash{'version_'.$uri}) {
13530:  	    my $version=$bighash{'version_'.$uri};
13531:  	    unless (($version eq 'mostrecent') || 
13532: 		    ($version==&getversion($uri))) {
13533:  		$uri=~s/\.(\w+)$/\.$version\.$1/;
13534:  	    }
13535:  	}
13536:  	untie %bighash;
13537:     }
13538:     return &do_cache_new('courseresversion',$key,&declutter($uri),600);
13539: }
13540: 
13541: sub deversion {
13542:     my $url=shift;
13543:     $url=~s/\.\d+\.(\w+)$/\.$1/;
13544:     return $url;
13545: }
13546: 
13547: # ------------------------------------------------------ Return symb list entry
13548: 
13549: sub symbread {
13550:     my ($thisfn,$donotrecurse,$ignorecachednull,$checkforblock,$possibles,
13551:         $ignoresymbdb,$noenccheck)=@_;
13552:     my $cache_str='request.symbread.cached.'.$thisfn;
13553:     if (defined($env{$cache_str})) {
13554:         unless (ref($possibles) eq 'HASH') {
13555:             if ($ignorecachednull) {
13556:                 return $env{$cache_str} unless ($env{$cache_str} eq '');
13557:             } else {
13558:                 return $env{$cache_str};
13559:             }
13560:         }
13561:     }
13562: # no filename provided? try from environment
13563:     unless ($thisfn) {
13564:         if ($env{'request.symb'}) {
13565:             return $env{$cache_str}=&symbclean($env{'request.symb'});
13566: 	}
13567: 	$thisfn=$env{'request.filename'};
13568:     }
13569:     if ($thisfn=~m|^/enc/|) { $thisfn=&Apache::lonenc::unencrypted($thisfn); }
13570: # is that filename actually a symb? Verify, clean, and return
13571:     if ($thisfn=~/\_\_\_\d+\_\_\_(.*)$/) {
13572: 	if (&symbverify($thisfn,$1)) {
13573: 	    return $env{$cache_str}=&symbclean($thisfn);
13574: 	}
13575:     }
13576:     $thisfn=declutter($thisfn);
13577:     my %hash;
13578:     my %bighash;
13579:     my $syval='';
13580:     if (($env{'request.course.fn'}) && ($thisfn)) {
13581:         my $targetfn = $thisfn;
13582:         if ( ($thisfn =~ m/^(uploaded|editupload)\//) && ($thisfn !~ m/\.(page|sequence)$/) ) {
13583:             $targetfn = 'adm/wrapper/'.$thisfn;
13584:         }
13585: 	if ($targetfn =~ m|^adm/wrapper/(ext/.*)|) {
13586: 	    $targetfn=$1;
13587: 	}
13588:         unless ($ignoresymbdb) {
13589:             if (tie(%hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db',
13590:                           &GDBM_READER(),0640)) {
13591: 	        $syval=$hash{$targetfn};
13592:                 untie(%hash);
13593:             }
13594:             if ($syval && $checkforblock) {
13595:                 my @blockers = &has_comm_blocking('bre',$syval,$thisfn,$ignoresymbdb,$noenccheck);
13596:                 if (@blockers) {
13597:                     $syval='';
13598:                 }
13599:             }
13600:         }
13601: # ---------------------------------------------------------- There was an entry
13602:         if ($syval) {
13603: 	    #unless ($syval=~/\_\d+$/) {
13604: 		#unless ($env{'form.request.prefix'}=~/\.(\d+)\_$/) {
13605: 		    #&appenv({'request.ambiguous' => $thisfn});
13606: 		    #return $env{$cache_str}='';
13607: 		#}    
13608: 		#$syval.=$1;
13609: 	    #}
13610:         } else {
13611: # ------------------------------------------------------- Was not in symb table
13612:            if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
13613:                             &GDBM_READER(),0640)) {
13614: # ---------------------------------------------- Get ID(s) for current resource
13615:               my $ids=$bighash{'ids_'.&clutter($thisfn)};
13616:               unless ($ids) { 
13617:                  $ids=$bighash{'ids_/'.$thisfn};
13618:               }
13619:               unless ($ids) {
13620: # alias?
13621: 		  $ids=$bighash{'mapalias_'.$thisfn};
13622:               }
13623:               if ($ids) {
13624: # ------------------------------------------------------------------- Has ID(s)
13625:                  my @possibilities=split(/\,/,$ids);
13626:                  if ($#possibilities==0) {
13627: # ----------------------------------------------- There is only one possibility
13628: 		     my ($mapid,$resid)=split(/\./,$ids);
13629: 		     $syval=&encode_symb($bighash{'map_id_'.$mapid},
13630: 						    $resid,$thisfn);
13631:                      if (ref($possibles) eq 'HASH') {
13632:                          unless ($bighash{'randomout_'.$ids} || $env{'request.role.adv'}) {
13633:                              $possibles->{$syval} = 1;
13634:                          }
13635:                      }
13636:                      if ($checkforblock) {
13637:                          unless ($bighash{'randomout_'.$ids} || $env{'request.role.adv'}) {
13638:                              my @blockers = &has_comm_blocking('bre',$syval,$bighash{'src_'.$ids},'',$noenccheck);
13639:                              if (@blockers) {
13640:                                  $syval = '';
13641:                                  untie(%bighash);
13642:                                  return $env{$cache_str}='';
13643:                              }
13644:                          }
13645:                      }
13646:                  } elsif ((!$donotrecurse) || ($checkforblock) || (ref($possibles) eq 'HASH')) { 
13647: # ------------------------------------------ There is more than one possibility
13648:                      my $realpossible=0;
13649:                      foreach my $id (@possibilities) {
13650: 			 my $file=$bighash{'src_'.$id};
13651:                          my $canaccess;
13652:                          if (($donotrecurse) || ($checkforblock) || (ref($possibles) eq 'HASH')) {
13653:                              $canaccess = 1;
13654:                          } else { 
13655:                              $canaccess = &allowed('bre',$file);
13656:                          }
13657:                          if ($canaccess) {
13658:          		     my ($mapid,$resid)=split(/\./,$id);
13659:                              if ($bighash{'map_type_'.$mapid} ne 'page') {
13660:                                  my $poss_syval=&encode_symb($bighash{'map_id_'.$mapid},
13661: 						             $resid,$thisfn);
13662:                                  next if ($bighash{'randomout_'.$id} && !$env{'request.role.adv'});
13663:                                  next unless (($noenccheck) || ($bighash{'encrypted_'.$id} eq $env{'request.enc'}));
13664:                                  if ($checkforblock) {
13665:                                      my @blockers = &has_comm_blocking('bre',$poss_syval,$file,'',$noenccheck);
13666:                                      if (@blockers > 0) {
13667:                                          $syval = '';
13668:                                      } else {
13669:                                          $syval = $poss_syval;
13670:                                          $realpossible++;
13671:                                      }
13672:                                  } else {
13673:                                      $syval = $poss_syval;
13674:                                      $realpossible++;
13675:                                  }
13676:                                  if ($syval) {
13677:                                      if (ref($possibles) eq 'HASH') {
13678:                                          $possibles->{$syval} = 1;
13679:                                      }
13680:                                  }
13681:                              }
13682: 			 }
13683:                      }
13684: 		     if ($realpossible!=1) { $syval=''; }
13685:                  } else {
13686:                      $syval='';
13687:                  }
13688: 	      }
13689:               untie(%bighash);
13690:            }
13691:         }
13692:         if ($syval) {
13693: 	    return $env{$cache_str}=$syval;
13694:         }
13695:     }
13696:     &appenv({'request.ambiguous' => $thisfn});
13697:     return $env{$cache_str}='';
13698: }
13699: 
13700: # ---------------------------------------------------------- Return random seed
13701: 
13702: sub numval {
13703:     my $txt=shift;
13704:     $txt=~tr/A-J/0-9/;
13705:     $txt=~tr/a-j/0-9/;
13706:     $txt=~tr/K-T/0-9/;
13707:     $txt=~tr/k-t/0-9/;
13708:     $txt=~tr/U-Z/0-5/;
13709:     $txt=~tr/u-z/0-5/;
13710:     $txt=~s/\D//g;
13711:     if ($_64bit) { if ($txt > 2**32) { return -1; } }
13712:     return int($txt);
13713: }
13714: 
13715: sub numval2 {
13716:     my $txt=shift;
13717:     $txt=~tr/A-J/0-9/;
13718:     $txt=~tr/a-j/0-9/;
13719:     $txt=~tr/K-T/0-9/;
13720:     $txt=~tr/k-t/0-9/;
13721:     $txt=~tr/U-Z/0-5/;
13722:     $txt=~tr/u-z/0-5/;
13723:     $txt=~s/\D//g;
13724:     my @txts=split(/(\d\d\d\d\d\d\d\d\d)/,$txt);
13725:     my $total;
13726:     foreach my $val (@txts) { $total+=$val; }
13727:     if ($_64bit) { if ($total > 2**32) { return -1; } }
13728:     return int($total);
13729: }
13730: 
13731: sub numval3 {
13732:     use integer;
13733:     my $txt=shift;
13734:     $txt=~tr/A-J/0-9/;
13735:     $txt=~tr/a-j/0-9/;
13736:     $txt=~tr/K-T/0-9/;
13737:     $txt=~tr/k-t/0-9/;
13738:     $txt=~tr/U-Z/0-5/;
13739:     $txt=~tr/u-z/0-5/;
13740:     $txt=~s/\D//g;
13741:     my @txts=split(/(\d\d\d\d\d\d\d\d\d)/,$txt);
13742:     my $total;
13743:     foreach my $val (@txts) { $total+=$val; }
13744:     if ($_64bit) { $total=(($total<<32)>>32); }
13745:     return $total;
13746: }
13747: 
13748: sub digest {
13749:     my ($data)=@_;
13750:     my $digest=&Digest::MD5::md5($data);
13751:     my ($a,$b,$c,$d)=unpack("iiii",$digest);
13752:     my ($e,$f);
13753:     {
13754:         use integer;
13755:         $e=($a+$b);
13756:         $f=($c+$d);
13757:         if ($_64bit) {
13758:             $e=(($e<<32)>>32);
13759:             $f=(($f<<32)>>32);
13760:         }
13761:     }
13762:     if (wantarray) {
13763: 	return ($e,$f);
13764:     } else {
13765: 	my $g;
13766: 	{
13767: 	    use integer;
13768: 	    $g=($e+$f);
13769: 	    if ($_64bit) {
13770: 		$g=(($g<<32)>>32);
13771: 	    }
13772: 	}
13773: 	return $g;
13774:     }
13775: }
13776: 
13777: sub latest_rnd_algorithm_id {
13778:     return '64bit5';
13779: }
13780: 
13781: sub get_rand_alg {
13782:     my ($courseid)=@_;
13783:     if (!$courseid) { $courseid=(&whichuser())[1]; }
13784:     if ($courseid) {
13785: 	return $env{"course.$courseid.rndseed"};
13786:     }
13787:     return &latest_rnd_algorithm_id();
13788: }
13789: 
13790: sub validCODE {
13791:     my ($CODE)=@_;
13792:     if (defined($CODE) && $CODE ne '' && $CODE =~ /^\w+$/) { return 1; }
13793:     return 0;
13794: }
13795: 
13796: sub getCODE {
13797:     if (&validCODE($env{'form.CODE'})) { return $env{'form.CODE'}; }
13798:     if ( (defined($Apache::lonhomework::parsing_a_problem) ||
13799: 	  defined($Apache::lonhomework::parsing_a_task) ) &&
13800: 	 &validCODE($Apache::lonhomework::history{'resource.CODE'})) {
13801: 	return $Apache::lonhomework::history{'resource.CODE'};
13802:     }
13803:     return undef;
13804: }
13805: #
13806: #  Determines the random seed for a specific context:
13807: #
13808: # parameters:
13809: #   symb      - in course context the symb for the seed.
13810: #   course_id - The course id of the form domain_coursenum.
13811: #   domain    - Domain for the user.
13812: #   course    - Course for the user.
13813: #   cenv      - environment of the course.
13814: #
13815: # NOTE:
13816: #   All parameters are picked out of the environment if missing
13817: #   or not defined.
13818: #   If a symb cannot be determined the current time is used instead.
13819: #
13820: #  For a given well defined symb, courside, domain, username,
13821: #  and course environment, the seed is reproducible.
13822: #
13823: sub rndseed {
13824:     my ($symb,$courseid,$domain,$username, $cenv)=@_;
13825:     my ($wsymb,$wcourseid,$wdomain,$wusername)=&whichuser();
13826:     if (!defined($symb)) {
13827: 	unless ($symb=$wsymb) { return time; }
13828:     }
13829:     if (!defined $courseid) { 
13830: 	$courseid=$wcourseid; 
13831:     }
13832:     if (!defined $domain) { $domain=$wdomain; }
13833:     if (!defined $username) { $username=$wusername }
13834: 
13835:     my $which;
13836:     if (defined($cenv->{'rndseed'})) {
13837: 	$which = $cenv->{'rndseed'};
13838:     } else {
13839: 	$which =&get_rand_alg($courseid);
13840:     }
13841:     if (defined(&getCODE())) {
13842: 
13843: 	if ($which eq '64bit5') {
13844: 	    return &rndseed_CODE_64bit5($symb,$courseid,$domain,$username);
13845: 	} elsif ($which eq '64bit4') {
13846: 	    return &rndseed_CODE_64bit4($symb,$courseid,$domain,$username);
13847: 	} else {
13848: 	    return &rndseed_CODE_64bit($symb,$courseid,$domain,$username);
13849: 	}
13850:     } elsif ($which eq '64bit5') {
13851: 	return &rndseed_64bit5($symb,$courseid,$domain,$username);
13852:     } elsif ($which eq '64bit4') {
13853: 	return &rndseed_64bit4($symb,$courseid,$domain,$username);
13854:     } elsif ($which eq '64bit3') {
13855: 	return &rndseed_64bit3($symb,$courseid,$domain,$username);
13856:     } elsif ($which eq '64bit2') {
13857: 	return &rndseed_64bit2($symb,$courseid,$domain,$username);
13858:     } elsif ($which eq '64bit') {
13859: 	return &rndseed_64bit($symb,$courseid,$domain,$username);
13860:     }
13861:     return &rndseed_32bit($symb,$courseid,$domain,$username);
13862: }
13863: 
13864: sub rndseed_32bit {
13865:     my ($symb,$courseid,$domain,$username)=@_;
13866:     {
13867: 	use integer;
13868: 	my $symbchck=unpack("%32C*",$symb) << 27;
13869: 	my $symbseed=numval($symb) << 22;
13870: 	my $namechck=unpack("%32C*",$username) << 17;
13871: 	my $nameseed=numval($username) << 12;
13872: 	my $domainseed=unpack("%32C*",$domain) << 7;
13873: 	my $courseseed=unpack("%32C*",$courseid);
13874: 	my $num=$symbseed+$nameseed+$domainseed+$courseseed+$namechck+$symbchck;
13875: 	#&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
13876: 	#&logthis("rndseed :$num:$symb");
13877: 	if ($_64bit) { $num=(($num<<32)>>32); }
13878: 	return $num;
13879:     }
13880: }
13881: 
13882: sub rndseed_64bit {
13883:     my ($symb,$courseid,$domain,$username)=@_;
13884:     {
13885: 	use integer;
13886: 	my $symbchck=unpack("%32S*",$symb) << 21;
13887: 	my $symbseed=numval($symb) << 10;
13888: 	my $namechck=unpack("%32S*",$username);
13889: 	
13890: 	my $nameseed=numval($username) << 21;
13891: 	my $domainseed=unpack("%32S*",$domain) << 10;
13892: 	my $courseseed=unpack("%32S*",$courseid);
13893: 	
13894: 	my $num1=$symbchck+$symbseed+$namechck;
13895: 	my $num2=$nameseed+$domainseed+$courseseed;
13896: 	#&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
13897: 	#&logthis("rndseed :$num:$symb");
13898: 	if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
13899: 	return "$num1,$num2";
13900:     }
13901: }
13902: 
13903: sub rndseed_64bit2 {
13904:     my ($symb,$courseid,$domain,$username)=@_;
13905:     {
13906: 	use integer;
13907: 	# strings need to be an even # of cahracters long, it it is odd the
13908:         # last characters gets thrown away
13909: 	my $symbchck=unpack("%32S*",$symb.' ') << 21;
13910: 	my $symbseed=numval($symb) << 10;
13911: 	my $namechck=unpack("%32S*",$username.' ');
13912: 	
13913: 	my $nameseed=numval($username) << 21;
13914: 	my $domainseed=unpack("%32S*",$domain.' ') << 10;
13915: 	my $courseseed=unpack("%32S*",$courseid.' ');
13916: 	
13917: 	my $num1=$symbchck+$symbseed+$namechck;
13918: 	my $num2=$nameseed+$domainseed+$courseseed;
13919: 	#&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
13920: 	#&logthis("rndseed :$num:$symb");
13921: 	if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
13922: 	return "$num1,$num2";
13923:     }
13924: }
13925: 
13926: sub rndseed_64bit3 {
13927:     my ($symb,$courseid,$domain,$username)=@_;
13928:     {
13929: 	use integer;
13930: 	# strings need to be an even # of cahracters long, it it is odd the
13931:         # last characters gets thrown away
13932: 	my $symbchck=unpack("%32S*",$symb.' ') << 21;
13933: 	my $symbseed=numval2($symb) << 10;
13934: 	my $namechck=unpack("%32S*",$username.' ');
13935: 	
13936: 	my $nameseed=numval2($username) << 21;
13937: 	my $domainseed=unpack("%32S*",$domain.' ') << 10;
13938: 	my $courseseed=unpack("%32S*",$courseid.' ');
13939: 	
13940: 	my $num1=$symbchck+$symbseed+$namechck;
13941: 	my $num2=$nameseed+$domainseed+$courseseed;
13942: 	#&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
13943: 	#&logthis("rndseed :$num1:$num2:$_64bit");
13944: 	if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
13945: 	
13946: 	return "$num1:$num2";
13947:     }
13948: }
13949: 
13950: sub rndseed_64bit4 {
13951:     my ($symb,$courseid,$domain,$username)=@_;
13952:     {
13953: 	use integer;
13954: 	# strings need to be an even # of cahracters long, it it is odd the
13955:         # last characters gets thrown away
13956: 	my $symbchck=unpack("%32S*",$symb.' ') << 21;
13957: 	my $symbseed=numval3($symb) << 10;
13958: 	my $namechck=unpack("%32S*",$username.' ');
13959: 	
13960: 	my $nameseed=numval3($username) << 21;
13961: 	my $domainseed=unpack("%32S*",$domain.' ') << 10;
13962: 	my $courseseed=unpack("%32S*",$courseid.' ');
13963: 	
13964: 	my $num1=$symbchck+$symbseed+$namechck;
13965: 	my $num2=$nameseed+$domainseed+$courseseed;
13966: 	#&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
13967: 	#&logthis("rndseed :$num1:$num2:$_64bit");
13968: 	if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
13969: 	
13970: 	return "$num1:$num2";
13971:     }
13972: }
13973: 
13974: sub rndseed_64bit5 {
13975:     my ($symb,$courseid,$domain,$username)=@_;
13976:     my ($num1,$num2)=&digest("$symb,$courseid,$domain,$username");
13977:     return "$num1:$num2";
13978: }
13979: 
13980: sub rndseed_CODE_64bit {
13981:     my ($symb,$courseid,$domain,$username)=@_;
13982:     {
13983: 	use integer;
13984: 	my $symbchck=unpack("%32S*",$symb.' ') << 16;
13985: 	my $symbseed=numval2($symb);
13986: 	my $CODEchck=unpack("%32S*",&getCODE().' ') << 16;
13987: 	my $CODEseed=numval(&getCODE());
13988: 	my $courseseed=unpack("%32S*",$courseid.' ');
13989: 	my $num1=$symbseed+$CODEchck;
13990: 	my $num2=$CODEseed+$courseseed+$symbchck;
13991: 	#&logthis("$symbseed:$CODEchck|$CODEseed:$courseseed:$symbchck");
13992: 	#&logthis("rndseed :$num1:$num2:$symb");
13993: 	if ($_64bit) { $num1=(($num1<<32)>>32); }
13994: 	if ($_64bit) { $num2=(($num2<<32)>>32); }
13995: 	return "$num1:$num2";
13996:     }
13997: }
13998: 
13999: sub rndseed_CODE_64bit4 {
14000:     my ($symb,$courseid,$domain,$username)=@_;
14001:     {
14002: 	use integer;
14003: 	my $symbchck=unpack("%32S*",$symb.' ') << 16;
14004: 	my $symbseed=numval3($symb);
14005: 	my $CODEchck=unpack("%32S*",&getCODE().' ') << 16;
14006: 	my $CODEseed=numval3(&getCODE());
14007: 	my $courseseed=unpack("%32S*",$courseid.' ');
14008: 	my $num1=$symbseed+$CODEchck;
14009: 	my $num2=$CODEseed+$courseseed+$symbchck;
14010: 	#&logthis("$symbseed:$CODEchck|$CODEseed:$courseseed:$symbchck");
14011: 	#&logthis("rndseed :$num1:$num2:$symb");
14012: 	if ($_64bit) { $num1=(($num1<<32)>>32); }
14013: 	if ($_64bit) { $num2=(($num2<<32)>>32); }
14014: 	return "$num1:$num2";
14015:     }
14016: }
14017: 
14018: sub rndseed_CODE_64bit5 {
14019:     my ($symb,$courseid,$domain,$username)=@_;
14020:     my $code = &getCODE();
14021:     my ($num1,$num2)=&digest("$symb,$courseid,$code");
14022:     return "$num1:$num2";
14023: }
14024: 
14025: sub setup_random_from_rndseed {
14026:     my ($rndseed)=@_;
14027:     if ($rndseed =~/([,:])/) {
14028:         my ($num1,$num2) = map { abs($_); } (split(/[,:]/,$rndseed));
14029:         if ((!$num1) || (!$num2) || ($num1 > 2147483562) || ($num2 > 2147483398)) {
14030:             &Math::Random::random_set_seed_from_phrase($rndseed);
14031:         } else {
14032:             &Math::Random::random_set_seed($num1,$num2);
14033:         }
14034:     } else {
14035: 	&Math::Random::random_set_seed_from_phrase($rndseed);
14036:     }
14037: }
14038: 
14039: sub latest_receipt_algorithm_id {
14040:     return 'receipt3';
14041: }
14042: 
14043: sub recunique {
14044:     my $fucourseid=shift;
14045:     my $unique;
14046:     if ($env{"course.$fucourseid.receiptalg"} eq 'receipt2' ||
14047: 	$env{"course.$fucourseid.receiptalg"} eq 'receipt3' ) {
14048: 	$unique=$env{"course.$fucourseid.internal.encseed"};
14049:     } else {
14050: 	$unique=$perlvar{'lonReceipt'};
14051:     }
14052:     return unpack("%32C*",$unique);
14053: }
14054: 
14055: sub recprefix {
14056:     my $fucourseid=shift;
14057:     my $prefix;
14058:     if ($env{"course.$fucourseid.receiptalg"} eq 'receipt2'||
14059: 	$env{"course.$fucourseid.receiptalg"} eq 'receipt3' ) {
14060: 	$prefix=$env{"course.$fucourseid.internal.encpref"};
14061:     } else {
14062: 	$prefix=$perlvar{'lonHostID'};
14063:     }
14064:     return unpack("%32C*",$prefix);
14065: }
14066: 
14067: sub ireceipt {
14068:     my ($funame,$fudom,$fucourseid,$fusymb,$part)=@_;
14069: 
14070:     my $return =&recprefix($fucourseid).'-';
14071: 
14072:     if ($env{"course.$fucourseid.receiptalg"} eq 'receipt3' ||
14073: 	$env{'request.state'} eq 'construct') {
14074: 	$return .= (&digest("$funame,$fudom,$fucourseid,$fusymb,$part")%10000);
14075: 	return $return;
14076:     }
14077: 
14078:     my $cuname=unpack("%32C*",$funame);
14079:     my $cudom=unpack("%32C*",$fudom);
14080:     my $cucourseid=unpack("%32C*",$fucourseid);
14081:     my $cusymb=unpack("%32C*",$fusymb);
14082:     my $cunique=&recunique($fucourseid);
14083:     my $cpart=unpack("%32S*",$part);
14084:     if ($env{"course.$fucourseid.receiptalg"} eq 'receipt2') {
14085: 
14086: 	#&logthis("doing receipt2  using parts $cpart, uname $cuname and udom $cudom gets  ".($cpart%$cuname)." and ".($cpart%$cudom));
14087: 			       
14088: 	$return.= ($cunique%$cuname+
14089: 		   $cunique%$cudom+
14090: 		   $cusymb%$cuname+
14091: 		   $cusymb%$cudom+
14092: 		   $cucourseid%$cuname+
14093: 		   $cucourseid%$cudom+
14094: 		   $cpart%$cuname+
14095: 		   $cpart%$cudom);
14096:     } else {
14097: 	$return.= ($cunique%$cuname+
14098: 		   $cunique%$cudom+
14099: 		   $cusymb%$cuname+
14100: 		   $cusymb%$cudom+
14101: 		   $cucourseid%$cuname+
14102: 		   $cucourseid%$cudom);
14103:     }
14104:     return $return;
14105: }
14106: 
14107: sub receipt {
14108:     my ($part)=@_;
14109:     my ($symb,$courseid,$domain,$name) = &whichuser();
14110:     return &ireceipt($name,$domain,$courseid,$symb,$part);
14111: }
14112: 
14113: sub whichuser {
14114:     my ($passedsymb)=@_;
14115:     my ($symb,$courseid,$domain,$name,$publicuser);
14116:     if (defined($env{'form.grade_symb'})) {
14117: 	my ($tmp_courseid)=&get_env_multiple('form.grade_courseid');
14118: 	my $allowed=&allowed('vgr',$tmp_courseid);
14119: 	if (!$allowed &&
14120: 	    exists($env{'request.course.sec'}) &&
14121: 	    $env{'request.course.sec'} !~ /^\s*$/) {
14122: 	    $allowed=&allowed('vgr',$tmp_courseid.
14123: 			      '/'.$env{'request.course.sec'});
14124: 	}
14125: 	if ($allowed) {
14126: 	    ($symb)=&get_env_multiple('form.grade_symb');
14127: 	    $courseid=$tmp_courseid;
14128: 	    ($domain)=&get_env_multiple('form.grade_domain');
14129: 	    ($name)=&get_env_multiple('form.grade_username');
14130: 	    return ($symb,$courseid,$domain,$name,$publicuser);
14131: 	}
14132:     }
14133:     if (!$passedsymb) {
14134: 	$symb=&symbread();
14135:     } else {
14136: 	$symb=$passedsymb;
14137:     }
14138:     $courseid=$env{'request.course.id'};
14139:     $domain=$env{'user.domain'};
14140:     $name=$env{'user.name'};
14141:     if ($name eq 'public' && $domain eq 'public') {
14142: 	if (!defined($env{'form.username'})) {
14143: 	    $env{'form.username'}.=time.rand(10000000);
14144: 	}
14145: 	$name.=$env{'form.username'};
14146:     }
14147:     return ($symb,$courseid,$domain,$name,$publicuser);
14148: 
14149: }
14150: 
14151: # ------------------------------------------------------------ Serves up a file
14152: # returns either the contents of the file or 
14153: # -1 if the file doesn't exist
14154: #
14155: # if the target is a file that was uploaded via DOCS, 
14156: # a check will be made to see if a current copy exists on the local server,
14157: # if it does this will be served, otherwise a copy will be retrieved from
14158: # the home server for the course and stored in /home/httpd/html/userfiles on
14159: # the local server.   
14160: 
14161: sub getfile {
14162:     my ($file) = @_;
14163:     if ($file =~ m -^/*(uploaded|editupload)/-) { $file=&filelocation("",$file); }
14164:     &repcopy($file);
14165:     return &readfile($file);
14166: }
14167: 
14168: sub repcopy_userfile {
14169:     my ($file)=@_;
14170:     my $londocroot = $perlvar{'lonDocRoot'};
14171:     if ($file =~ m{^/*(uploaded|editupload)/}) { $file=&filelocation("",$file); }
14172:     if ($file =~ m{^\Q/home/httpd/lonUsers/\E}) { return 'ok'; }
14173:     my ($cdom,$cnum,$filename) = 
14174: 	($file=~m|^\Q$perlvar{'lonDocRoot'}\E/+userfiles/+($match_domain)/+($match_name)/+(.*)|);
14175:     my $uri="/uploaded/$cdom/$cnum/$filename";
14176:     if (-e "$file") {
14177: # we already have a local copy, check it out
14178: 	my @fileinfo = stat($file);
14179: 	my $rtncode;
14180: 	my $info;
14181: 	my $lwpresp = &getuploaded('HEAD',$uri,$cdom,$cnum,\$info,\$rtncode);
14182: 	if ($lwpresp ne 'ok') {
14183: # there is no such file anymore, even though we had a local copy
14184: 	    if ($rtncode eq '404') {
14185: 		unlink($file);
14186: 	    }
14187: 	    return -1;
14188: 	}
14189: 	if ($info < $fileinfo[9]) {
14190: # nice, the file we have is up-to-date, just say okay
14191: 	    return 'ok';
14192: 	} else {
14193: # the file is outdated, get rid of it
14194: 	    unlink($file);
14195: 	}
14196:     }
14197: # one way or the other, at this point, we don't have the file
14198: # construct the correct path for the file
14199:     my @parts = ($cdom,$cnum); 
14200:     if ($filename =~ m|^(.+)/[^/]+$|) {
14201: 	push @parts, split(/\//,$1);
14202:     }
14203:     my $path = $perlvar{'lonDocRoot'}.'/userfiles';
14204:     foreach my $part (@parts) {
14205: 	$path .= '/'.$part;
14206: 	if (!-e $path) {
14207: 	    mkdir($path,0770);
14208: 	}
14209:     }
14210: # now the path exists for sure
14211: # get a user agent
14212:     my $transferfile=$file.'.in.transfer';
14213: # FIXME: this should flock
14214:     if (-e $transferfile) { return 'ok'; }
14215:     my $request;
14216:     $uri=~s/^\///;
14217:     my $homeserver = &homeserver($cnum,$cdom);
14218:     my $hostname = &hostname($homeserver);
14219:     my $protocol = $protocol{$homeserver};
14220:     $protocol = 'http' if ($protocol ne 'https');
14221:     $request=new HTTP::Request('GET',$protocol.'://'.$hostname.'/raw/'.$uri);
14222:     my $response = &LONCAPA::LWPReq::makerequest($homeserver,$request,$transferfile,\%perlvar,'',0,1);
14223: # did it work?
14224:     if ($response->is_error()) {
14225: 	unlink($transferfile);
14226: 	&logthis("Userfile repcopy failed for $uri");
14227: 	return -1;
14228:     }
14229: # worked, rename the transfer file
14230:     rename($transferfile,$file);
14231:     return 'ok';
14232: }
14233: 
14234: sub tokenwrapper {
14235:     my $uri=shift;
14236:     $uri=~s|^https?\://([^/]+)||;
14237:     $uri=~s|^/||;
14238:     $env{'user.environment'}=~/\/([^\/]+)\.id/;
14239:     my $token=$1;
14240:     my (undef,$udom,$uname,$file)=split('/',$uri,4);
14241:     if ($udom && $uname && $file) {
14242: 	$file=~s|(\?\.*)*$||;
14243:         &appenv({"userfile.$udom/$uname/$file" => $env{'request.course.id'}});
14244:         my $homeserver = &homeserver($uname,$udom);
14245:         my $hostname = &hostname($homeserver);
14246:         my $protocol = $protocol{$homeserver};
14247:         $protocol = 'http' if ($protocol ne 'https');
14248:         return $protocol.'://'.$hostname.'/'.$uri.
14249:                (($uri=~/\?/)?'&':'?').'token='.$token.
14250:                                '&tokenissued='.$perlvar{'lonHostID'};
14251:     } else {
14252:         return '/adm/notfound.html';
14253:     }
14254: }
14255: 
14256: # call with reqtype HEAD: get last modification time
14257: # call with reqtype GET: get the file contents
14258: # Do not call this with reqtype GET for large files! It loads everything into memory
14259: #
14260: sub getuploaded {
14261:     my ($reqtype,$uri,$cdom,$cnum,$info,$rtncode) = @_;
14262:     $uri=~s/^\///;
14263:     my $homeserver = &homeserver($cnum,$cdom);
14264:     my $hostname = &hostname($homeserver);
14265:     my $protocol = $protocol{$homeserver};
14266:     $protocol = 'http' if ($protocol ne 'https');
14267:     $uri = $protocol.'://'.$hostname.'/raw/'.$uri;
14268:     my $request=new HTTP::Request($reqtype,$uri);
14269:     my $response=&LONCAPA::LWPReq::makerequest($homeserver,$request,'',\%perlvar,'',0,1);
14270:     $$rtncode = $response->code;
14271:     if (! $response->is_success()) {
14272: 	return 'failed';
14273:     }      
14274:     if ($reqtype eq 'HEAD') {
14275: 	$$info = &HTTP::Date::str2time( $response->header('Last-modified') );
14276:     } elsif ($reqtype eq 'GET') {
14277: 	$$info = $response->content;
14278:     }
14279:     return 'ok';
14280: }
14281: 
14282: sub readfile {
14283:     my $file = shift;
14284:     if ( (! -e $file ) || ($file eq '') ) { return -1; };
14285:     my $fh;
14286:     open($fh,"<",$file);
14287:     my $a='';
14288:     while (my $line = <$fh>) { $a .= $line; }
14289:     return $a;
14290: }
14291: 
14292: sub filelocation {
14293:     my ($dir,$file) = @_;
14294:     my $location;
14295:     $file=~ s/^\s*(\S+)\s*$/$1/; ## strip off leading and trailing spaces
14296: 
14297:     if ($file =~ m-^/adm/-) {
14298: 	$file=~s-^/adm/wrapper/-/-;
14299: 	$file=~s-^/adm/coursedocs/showdoc/-/-;
14300:     }
14301: 
14302:     if ($file =~ m-^\Q$Apache::lonnet::perlvar{'lonTabDir'}\E/-) {
14303:         $location = $file;
14304:     } elsif ($file=~/^\/*(uploaded|editupload)/) { # is an uploaded file
14305:         my ($udom,$uname,$filename)=
14306:   	    ($file=~m -^/+(?:uploaded|editupload)/+($match_domain)/+($match_name)/+(.*)$-);
14307:         my $home=&homeserver($uname,$udom);
14308:         my $is_me=0;
14309:         my @ids=&current_machine_ids();
14310:         foreach my $id (@ids) { if ($id eq $home) { $is_me=1; } }
14311:         if ($is_me) {
14312:   	    $location=propath($udom,$uname).'/userfiles/'.$filename;
14313:         } else {
14314:   	  $location=$Apache::lonnet::perlvar{'lonDocRoot'}.'/userfiles/'.
14315:   	      $udom.'/'.$uname.'/'.$filename;
14316:         }
14317:     } elsif ($file =~ m-^/adm/-) {
14318: 	$location = $perlvar{'lonDocRoot'}.'/'.$file;
14319:     } else {
14320:         $file=~s/^\Q$perlvar{'lonDocRoot'}\E//;
14321:         $file=~s:^/(res|priv)/:/:;
14322:         my $space=$1;
14323:         if ( !( $file =~ m:^/:) ) {
14324:             $location = $dir. '/'.$file;
14325:         } else {
14326:             $location = $perlvar{'lonDocRoot'}.'/'.$space.$file;
14327:         }
14328:     }
14329:     $location=~s://+:/:g; # remove duplicate /
14330:     while ($location=~m{/\.\./}) {
14331: 	if ($location =~ m{/[^/]+/\.\./}) {
14332: 	    $location=~ s{/[^/]+/\.\./}{/}g;
14333: 	} else {
14334: 	    $location=~ s{/\.\./}{/}g;
14335: 	}
14336:     } #remove dir/..
14337:     while ($location=~m:/\./:) {$location=~ s:/\./:/:g;} #remove /./
14338:     return $location;
14339: }
14340: 
14341: sub hreflocation {
14342:     my ($dir,$file)=@_;
14343:     unless (($file=~m-^https?\://-i) || ($file=~m-^/-)) {
14344: 	$file=filelocation($dir,$file);
14345:     } elsif ($file=~m-^/adm/-) {
14346: 	$file=~s-^/adm/wrapper/-/-;
14347: 	$file=~s-^/adm/coursedocs/showdoc/-/-;
14348:     }
14349:     if ($file=~m-^\Q$perlvar{'lonDocRoot'}\E-) {
14350: 	$file=~s-^\Q$perlvar{'lonDocRoot'}\E--;
14351:     } elsif ($file=~m-^\Q$perlvar{'lonUsersDir'}\E-) {
14352: 	$file=~s{^/home/httpd/lonUsers/($match_domain)/./././($match_name)/userfiles/}
14353: 	        {/uploaded/$1/$2/}x;
14354:     }
14355:     if ($file=~ m{^/userfiles/}) {
14356: 	$file =~ s{^/userfiles/}{/uploaded/};
14357:     }
14358:     return $file;
14359: }
14360: 
14361: 
14362: 
14363: 
14364: 
14365: sub current_machine_domains {
14366:     return &machine_domains(&hostname($perlvar{'lonHostID'}));
14367: }
14368: 
14369: sub machine_domains {
14370:     my ($hostname) = @_;
14371:     my @domains;
14372:     my %hostname = &all_hostnames();
14373:     while( my($id, $name) = each(%hostname)) {
14374: #	&logthis("-$id-$name-$hostname-");
14375: 	if ($hostname eq $name) {
14376: 	    push(@domains,&host_domain($id));
14377: 	}
14378:     }
14379:     return @domains;
14380: }
14381: 
14382: sub current_machine_ids {
14383:     return &machine_ids(&hostname($perlvar{'lonHostID'}));
14384: }
14385: 
14386: sub machine_ids {
14387:     my ($hostname) = @_;
14388:     $hostname ||= &hostname($perlvar{'lonHostID'});
14389:     my @ids;
14390:     my %name_to_host = &all_names();
14391:     if (ref($name_to_host{$hostname}) eq 'ARRAY') {
14392: 	return @{ $name_to_host{$hostname} };
14393:     }
14394:     return;
14395: }
14396: 
14397: sub additional_machine_domains {
14398:     my @domains;
14399:     if (-e "$perlvar{'lonTabDir'}/expected_domains.tab") {
14400:         if (open(my $fh,"<","$perlvar{'lonTabDir'}/expected_domains.tab")) {
14401:             while (my $line = <$fh>) {
14402:                 chomp($line);           
14403:                 $line =~ s/\s//g;
14404:                 push(@domains,$line);
14405:             }
14406:             close($fh);
14407:         }
14408:     }
14409:     return @domains;
14410: }
14411: 
14412: sub default_login_domain {
14413:     my $domain = $perlvar{'lonDefDomain'};
14414:     my $testdomain=(split(/\./,$ENV{'HTTP_HOST'}))[0];
14415:     foreach my $posdom (&current_machine_domains(),
14416:                         &additional_machine_domains()) {
14417:         if (lc($posdom) eq lc($testdomain)) {
14418:             $domain=$posdom;
14419:             last;
14420:         }
14421:     }
14422:     return $domain;
14423: }
14424: 
14425: sub shared_institution {
14426:     my ($dom,$lonhost) = @_;
14427:     if ($lonhost eq '') {
14428:         $lonhost = $perlvar{'lonHostID'};
14429:     }
14430:     my $same_intdom;
14431:     my $hostintdom = &internet_dom($lonhost);
14432:     if ($hostintdom ne '') {
14433:         my %iphost = &get_iphost();
14434:         my $primary_id = &domain($dom,'primary');
14435:         my $primary_ip = &get_host_ip($primary_id);
14436:         if (ref($iphost{$primary_ip}) eq 'ARRAY') {
14437:             foreach my $id (@{$iphost{$primary_ip}}) {
14438:                 my $intdom = &internet_dom($id);
14439:                 if ($intdom eq $hostintdom) {
14440:                     $same_intdom = 1;
14441:                     last;
14442:                 }
14443:             }
14444:         }
14445:     }
14446:     return $same_intdom;
14447: }
14448: 
14449: sub uses_sts {
14450:     my ($ignore_cache) = @_;
14451:     my $lonhost = $perlvar{'lonHostID'};
14452:     my $hostname = &hostname($lonhost);
14453:     my $sts_on;
14454:     if ($protocol{$lonhost} eq 'https') {
14455:         my $cachetime = 12*3600;
14456:         if (!$ignore_cache) {
14457:             ($sts_on,my $cached)=&is_cached_new('stspolicy',$lonhost);
14458:             if (defined($cached)) {
14459:                 return $sts_on;
14460:             }
14461:         }
14462:         my $url = $protocol{$lonhost}.'://'.$hostname.'/index.html';
14463:         my $request=new HTTP::Request('HEAD',$url);
14464:         my $response=&LONCAPA::LWPReq::makerequest($lonhost,$request,'',\%perlvar,'','','',1);
14465:         if ($response->is_success) {
14466:             my $has_sts = $response->header('Strict-Transport-Security');
14467:             if ($has_sts eq '') {
14468:                 $sts_on = 0;
14469:             } else {
14470:                 if ($has_sts =~ /\Qmax-age=\E(\d+)/) {
14471:                     my $maxage = $1;
14472:                     if ($maxage) {
14473:                         $sts_on = 1;
14474:                     } else {
14475:                         $sts_on = 0;
14476:                     }
14477:                 } else {
14478:                     $sts_on = 0;
14479:                 }
14480:             }
14481:             return &do_cache_new('stspolicy',$lonhost,$sts_on,$cachetime);
14482:         }
14483:     }
14484:     return;
14485: }
14486: 
14487: sub waf_allssl {
14488:     my ($host_name) = @_;
14489:     my $alias = &get_proxy_alias();
14490:     if ($host_name eq '') {
14491:         $host_name = $ENV{'SERVER_NAME'};
14492:     }
14493:     if (($host_name ne '') && ($alias eq $host_name)) {
14494:         my $serverhomedom = &host_domain($perlvar{'lonHostID'});
14495:         my %defdomdefaults = &get_domain_defaults($serverhomedom);
14496:         if ($defdomdefaults{'waf_sslopt'}) {
14497:             return $defdomdefaults{'waf_sslopt'};
14498:         }
14499:     }
14500:     return;
14501: }
14502: 
14503: sub get_requestor_ip {
14504:     my ($r,$nolookup,$noproxy) = @_;
14505:     my $from_ip;
14506:     if (ref($r)) {
14507:         if ($r->can('useragent_ip')) {
14508:             if ($noproxy && $r->can('client_ip')) {
14509:                 $from_ip = $r->client_ip();
14510:             } else {
14511:                 $from_ip = $r->useragent_ip();
14512:             }
14513:         } elsif ($r->connection->can('remote_ip')) {
14514:             $from_ip = $r->connection->remote_ip();
14515:         } else {
14516:             $from_ip = $r->get_remote_host($nolookup);
14517:         }
14518:     } else {
14519:         $from_ip = $ENV{'REMOTE_ADDR'};
14520:     }
14521:     return $from_ip if ($noproxy); 
14522:     # Who controls proxy settings for server
14523:     my $dom_in_use = $Apache::lonnet::perlvar{'lonDefDomain'};
14524:     my $proxyinfo = &get_proxy_settings($dom_in_use);
14525:     if ((ref($proxyinfo) eq 'HASH') && ($from_ip)) {
14526:         if ($proxyinfo->{'vpnint'}) {
14527:             if (&ip_match($from_ip,$proxyinfo->{'vpnint'})) {
14528:                 return $from_ip;
14529:             }
14530:         }
14531:         if ($proxyinfo->{'trusted'}) {
14532:             if (&ip_match($from_ip,$proxyinfo->{'trusted'})) {
14533:                 my $ipheader = $proxyinfo->{'ipheader'};
14534:                 my ($ip,$xfor);
14535:                 if (ref($r)) {
14536:                     if ($ipheader) {
14537:                         $ip = $r->headers_in->{$ipheader};
14538:                     }
14539:                     $xfor = $r->headers_in->{'X-Forwarded-For'};
14540:                 } else {
14541:                     if ($ipheader) {
14542:                         $ip = $ENV{'HTTP_'.uc($ipheader)};
14543:                     }
14544:                     $xfor = $ENV{'HTTP_X_FORWARDED_FOR'};
14545:                 }
14546:                 if (($ip eq '') && ($xfor ne '')) {
14547:                     foreach my $poss_ip (reverse(split(/\s*,\s*/,$xfor))) {
14548:                         unless (&ip_match($poss_ip,$proxyinfo->{'trusted'})) {
14549:                             $ip = $poss_ip;
14550:                             last;
14551:                         }
14552:                     }
14553:                 }
14554:                 if ($ip ne '') {
14555:                     return $ip;
14556:                 }
14557:             }
14558:         }
14559:     }
14560:     return $from_ip;
14561: }
14562: 
14563: sub get_proxy_settings {
14564:     my ($dom_in_use) = @_;
14565:     my %domdefaults = &Apache::lonnet::get_domain_defaults($dom_in_use);
14566:     my $proxyinfo = {
14567:                        ipheader => $domdefaults{'waf_ipheader'},
14568:                        trusted  => $domdefaults{'waf_trusted'},
14569:                        vpnint   => $domdefaults{'waf_vpnint'},
14570:                        vpnext   => $domdefaults{'waf_vpnext'},
14571:                        sslopt   => $domdefaults{'waf_sslopt'},
14572:                     };
14573:     return $proxyinfo;
14574: }
14575: 
14576: sub ip_match {
14577:     my ($ip,$pattern_str) = @_;
14578:     $ip=Net::CIDR::cidrvalidate($ip);
14579:     if ($ip) {
14580:         return Net::CIDR::cidrlookup($ip,split(/\s*,\s*/,$pattern_str));
14581:     }
14582:     return;
14583: }
14584: 
14585: sub get_proxy_alias {
14586:     my ($lonid) = @_;
14587:     if ($lonid eq '') {
14588:         $lonid = $perlvar{'lonHostID'};
14589:     }
14590:     if (!defined(&hostname($lonid))) {
14591:         return;
14592:     }
14593:     if ($lonid ne '') {
14594:         my ($alias,$cached) = &is_cached_new('proxyalias',$lonid);
14595:         if ($cached) {
14596:             return $alias;
14597:         }
14598:         my $dom = &Apache::lonnet::host_domain($lonid);
14599:         if ($dom ne '') {
14600:             my $cachetime = 60*60*24;
14601:             my %domconfig =
14602:                 &Apache::lonnet::get_dom('configuration',['wafproxy'],$dom);
14603:             if (ref($domconfig{'wafproxy'}) eq 'HASH') {
14604:                 if (ref($domconfig{'wafproxy'}{'alias'}) eq 'HASH') {
14605:                     $alias = $domconfig{'wafproxy'}{'alias'}{$lonid};
14606:                 }
14607:             }
14608:             return &do_cache_new('proxyalias',$lonid,$alias,$cachetime);
14609:         }
14610:     }
14611:     return;
14612: }
14613: 
14614: sub use_proxy_alias {
14615:     my ($r,$lonid) = @_;
14616:     my $alias = &get_proxy_alias($lonid);
14617:     if ($alias) {
14618:         my $dom = &host_domain($lonid);
14619:         if ($dom ne '') {
14620:             my $proxyinfo = &get_proxy_settings($dom);
14621:             my ($vpnint,$remote_ip);
14622:             if (ref($proxyinfo) eq 'HASH') {
14623:                 $vpnint = $proxyinfo->{'vpnint'};
14624:                 if ($vpnint) {
14625:                     $remote_ip = &get_requestor_ip($r,1,1);
14626:                 }
14627:             }
14628:             unless ($vpnint && &ip_match($remote_ip,$vpnint)) {
14629:                 return $alias;
14630:             }
14631:         }
14632:     }
14633:     return;
14634: }
14635: 
14636: sub alias_shibboleth {
14637:     my ($lonid) = @_;
14638:     if ($lonid eq '') {
14639:         $lonid = $perlvar{'lonHostID'};
14640:     }
14641:     if (!defined(&hostname($lonid))) {
14642:         return;
14643:     }
14644:     if ($lonid ne '') {
14645:         my ($use_alias,$cached) = &is_cached_new('proxysaml',$lonid);
14646:         if ($cached) {
14647:             return $use_alias;
14648:         }
14649:         my $dom = &Apache::lonnet::host_domain($lonid);
14650:         if ($dom ne '') {
14651:             my $cachetime = 60*60*24;
14652:             my %domconfig =
14653:                 &Apache::lonnet::get_dom('configuration',['wafproxy'],$dom);
14654:             if (ref($domconfig{'wafproxy'}) eq 'HASH') {
14655:                 if (ref($domconfig{'wafproxy'}{'saml'}) eq 'HASH') {
14656:                     $use_alias = $domconfig{'wafproxy'}{'saml'}{$lonid};
14657:                 }
14658:             }
14659:             return &do_cache_new('proxysaml',$lonid,$use_alias,$cachetime);
14660:         }
14661:     }
14662:     return;
14663: }
14664: 
14665: sub get_saml_landing {
14666:     my ($lonid) = @_;
14667:     if ($lonid eq '') {
14668:         my $defdom = &default_login_domain();
14669:         my @hosts = &current_machine_ids();
14670:         if (@hosts > 1) {
14671:             foreach my $hostid (@hosts) {
14672:                 if (&host_domain($hostid) eq $defdom) {
14673:                     $lonid = $hostid;
14674:                     last;
14675:                 }
14676:             }
14677:         } else {
14678:             $lonid = $perlvar{'lonHostID'};
14679:         }
14680:         if ($lonid) {
14681:             unless (&Apache::lonnet::host_domain($lonid) eq $defdom) {
14682:                 return;
14683:             }
14684:         } else {
14685:             return;
14686:         }
14687:     } elsif (!defined(&hostname($lonid))) {
14688:         return;
14689:     }
14690:     my ($landing,$cached) = &is_cached_new('samllanding',$lonid);
14691:     if ($cached) {
14692:         return $landing;
14693:     }
14694:     my $dom = &Apache::lonnet::host_domain($lonid);
14695:     if ($dom ne '') {
14696:         my $cachetime = 60*60*24;
14697:         my %domconfig =
14698:             &Apache::lonnet::get_dom('configuration',['login'],$dom);
14699:         if (ref($domconfig{'login'}) eq 'HASH') {
14700:             if (ref($domconfig{'login'}{'saml'}) eq 'HASH') {
14701:                 if (ref($domconfig{'login'}{'saml'}{$lonid}) eq 'HASH') {
14702:                     $landing = 1;
14703:                 }
14704:             }
14705:         }
14706:         return &do_cache_new('samllanding',$lonid,$landing,$cachetime);
14707:     }
14708:     return;
14709: }
14710: 
14711: # ------------------------------------------------------------- Declutters URLs
14712: 
14713: sub declutter {
14714:     my $thisfn=shift;
14715:     if ($thisfn=~m|^/enc/|) { $thisfn=&Apache::lonenc::unencrypted($thisfn); }
14716:     unless ($thisfn=~m{^/home/httpd/html/priv/}) {
14717:         $thisfn=~s{^/home/httpd/html}{};
14718:     }
14719:     $thisfn=~s/^\///;
14720:     $thisfn=~s|^adm/wrapper/||;
14721:     $thisfn=~s|^adm/coursedocs/showdoc/||;
14722:     $thisfn=~s/^res\///;
14723:     $thisfn=~s/^priv\///;
14724:     unless (($thisfn =~ /^ext/) || ($thisfn =~ /\.(page|sequence)___\d+___ext/)) {
14725:         $thisfn=~s/\?.+$//;
14726:     }
14727:     return $thisfn;
14728: }
14729: 
14730: # ------------------------------------------------------------- Clutter up URLs
14731: 
14732: sub clutter {
14733:     my $thisfn='/'.&declutter(shift);
14734:     if ($thisfn !~ m{^/(uploaded|editupload|adm|userfiles|ext|raw|priv|public)/}
14735: 	|| $thisfn =~ m{^/adm/(includes|pages)} ) { 
14736:        $thisfn='/res'.$thisfn; 
14737:     }
14738:     if ($thisfn !~m|^/adm|) {
14739: 	if ($thisfn =~ m|^/ext/|) {
14740: 	    $thisfn='/adm/wrapper'.$thisfn;
14741: 	} else {
14742: 	    my ($ext) = ($thisfn =~ /\.(\w+)$/);
14743: 	    my $embstyle=&Apache::loncommon::fileembstyle($ext);
14744: 	    if ($embstyle eq 'ssi'
14745: 		|| ($embstyle eq 'hdn')
14746: 		|| ($embstyle eq 'rat')
14747: 		|| ($embstyle eq 'prv')
14748: 		|| ($embstyle eq 'ign')) {
14749: 		#do nothing with these
14750: 	    } elsif (($embstyle eq 'img') 
14751: 		|| ($embstyle eq 'emb')
14752: 		|| ($embstyle eq 'wrp')) {
14753: 		$thisfn='/adm/wrapper'.$thisfn;
14754: 	    } elsif ($embstyle eq 'unk'
14755: 		     && $thisfn!~/\.(sequence|page)$/) {
14756: 		$thisfn='/adm/coursedocs/showdoc'.$thisfn;
14757: 	    } else {
14758: #		&logthis("Got a blank emb style");
14759: 	    }
14760: 	}
14761:     } elsif ($thisfn =~ m{^/adm/$match_domain/$match_courseid/\d+/ext\.tool$}) {
14762:         $thisfn='/adm/wrapper'.$thisfn;
14763:     }
14764:     return $thisfn;
14765: }
14766: 
14767: sub clutter_with_no_wrapper {
14768:     my $uri = &clutter(shift);
14769:     if ($uri =~ m-^/adm/-) {
14770: 	$uri =~ s-^/adm/wrapper/-/-;
14771: 	$uri =~ s-^/adm/coursedocs/showdoc/-/-;
14772:     }
14773:     return $uri;
14774: }
14775: 
14776: sub freeze_escape {
14777:     my ($value)=@_;
14778:     if (ref($value)) {
14779: 	$value=&nfreeze($value);
14780: 	return '__FROZEN__'.&escape($value);
14781:     }
14782:     return &escape($value);
14783: }
14784: 
14785: 
14786: sub thaw_unescape {
14787:     my ($value)=@_;
14788:     if ($value =~ /^__FROZEN__/) {
14789: 	substr($value,0,10,undef);
14790: 	$value=&unescape($value);
14791: 	return &thaw($value);
14792:     }
14793:     return &unescape($value);
14794: }
14795: 
14796: sub correct_line_ends {
14797:     my ($result)=@_;
14798:     $$result =~s/\r\n/\n/mg;
14799:     $$result =~s/\r/\n/mg;
14800: }
14801: # ================================================================ Main Program
14802: 
14803: sub goodbye {
14804:    &logthis("Starting Shut down");
14805: #not converted to using infrastruture and probably shouldn't be
14806:    &logthis(sprintf("%-20s is %s",'%badServerCache',length(&nfreeze(\%badServerCache))));
14807: #converted
14808: #   &logthis(sprintf("%-20s is %s",'%metacache',scalar(%metacache)));
14809:    &logthis(sprintf("%-20s is %s",'%homecache',length(&nfreeze(\%homecache))));
14810: #   &logthis(sprintf("%-20s is %s",'%titlecache',length(&nfreeze(\%titlecache))));
14811: #   &logthis(sprintf("%-20s is %s",'%courseresdatacache',length(&nfreeze(\%courseresdatacache))));
14812: #1.1 only
14813: #   &logthis(sprintf("%-20s is %s",'%userresdatacache',length(&nfreeze(\%userresdatacache))));
14814: #   &logthis(sprintf("%-20s is %s",'%getsectioncache',length(&nfreeze(\%getsectioncache))));
14815: #   &logthis(sprintf("%-20s is %s",'%courseresversioncache',length(&nfreeze(\%courseresversioncache))));
14816: #   &logthis(sprintf("%-20s is %s",'%resversioncache',length(&nfreeze(\%resversioncache))));
14817:    &logthis(sprintf("%-20s is %s",'%remembered',length(&nfreeze(\%remembered))));
14818:    &logthis(sprintf("%-20s is %s",'kicks',$kicks));
14819:    &logthis(sprintf("%-20s is %s",'hits',$hits));
14820:    &flushcourselogs();
14821:    &logthis("Shutting down");
14822: }
14823: 
14824: sub get_dns {
14825:     my ($url,$func,$ignore_cache,$nocache,$hashref) = @_;
14826:     if (!$ignore_cache) {
14827: 	my ($content,$cached)=
14828: 	    &Apache::lonnet::is_cached_new('dns',$url);
14829: 	if ($cached) {
14830: 	    &$func($content,$hashref);
14831: 	    return;
14832: 	}
14833:     }
14834: 
14835:     my %alldns;
14836:     if (open(my $config,"<","$perlvar{'lonTabDir'}/hosts.tab")) {
14837:         foreach my $dns (<$config>) {
14838: 	    next if ($dns !~ /^\^(\S*)/x);
14839:             my $line = $1;
14840:             my ($host,$protocol) = split(/:/,$line);
14841:             if ($protocol ne 'https') {
14842:                 $protocol = 'http';
14843:             }
14844: 	    $alldns{$host} = $protocol;
14845:         }
14846:         close($config);
14847:     }
14848:     while (%alldns) {
14849: 	my ($dns) = sort { $b cmp $a } keys(%alldns);
14850:         my ($contents,@content);
14851:         if ($dns eq Sys::Hostname::FQDN::fqdn()) {
14852:             my $command = (split('/',$url))[3];
14853:             my ($dir,$file) = &parse_getdns_url($command,$url);
14854:             delete($alldns{$dns});
14855:             next if (($dir eq '') || ($file eq ''));
14856:             if (open(my $config,'<',"$dir/$file")) {
14857:                 @content = <$config>;
14858:                 close($config);
14859:             }
14860:             if ($url eq '/adm/dns/loncapaCRL') {
14861:                 $contents = join('',@content);
14862:             }
14863:         } else {
14864: 	    my $request=new HTTP::Request('GET',"$alldns{$dns}://$dns$url");
14865:             my $response = &LONCAPA::LWPReq::makerequest('',$request,'',\%perlvar,30,0);
14866:             delete($alldns{$dns});
14867: 	    next if ($response->is_error());
14868:             if ($url eq '/adm/dns/loncapaCRL') {
14869:                 $contents = $response->content;
14870:             } else {
14871:                 @content = split("\n",$response->content);
14872:             }
14873:         }
14874:         if ($url eq '/adm/dns/loncapaCRL') {
14875:             return &$func($contents);
14876:         } else {
14877: 	    unless ($nocache) {
14878: 	        &do_cache_new('dns',$url,\@content,30*24*60*60);
14879: 	    }
14880: 	    &$func(\@content,$hashref);
14881:             return;
14882:         }
14883:     }
14884:     my $which = (split('/',$url,4))[3];
14885:     if ($which eq 'loncapaCRL') {
14886:         my $diskfile = "$perlvar{'lonCertificateDirectory'}/$perlvar{'lonnetCertRevocationList'}";
14887:         if (-e $diskfile) {
14888:             &logthis("unable to contact DNS, on disk file $diskfile not updated");
14889:         } else {
14890:             &logthis("unable to contact DNS, no on disk file $diskfile available");
14891:         }
14892:     } else {
14893:         &logthis("unable to contact DNS defaulting to on disk file dns_$which.tab\n");
14894:         if (open(my $config,"<","$perlvar{'lonTabDir'}/dns_$which.tab")) {
14895:             my @content = <$config>;
14896:             close($config);
14897:             &$func(\@content,$hashref);
14898:         }
14899:     }
14900:     return;
14901: }
14902: 
14903: # ------------------------------------------------------Get DNS checksums file
14904: sub parse_dns_checksums_tab {
14905:     my ($lines,$hashref) = @_;
14906:     my $lonhost = $perlvar{'lonHostID'};
14907:     my $machine_dom = &Apache::lonnet::host_domain($lonhost);
14908:     my $loncaparev = &get_server_loncaparev($machine_dom);
14909:     my $distro = (split(/\:/,&get_server_distarch($lonhost)))[0];
14910:     my $webconfdir = '/etc/httpd/conf';
14911:     if ($distro =~ /^(ubuntu|debian)(\d+)$/) {
14912:         $webconfdir = '/etc/apache2';
14913:     } elsif ($distro =~ /^sles(\d+)$/) {
14914:         if ($1 >= 10) {
14915:             $webconfdir = '/etc/apache2';
14916:         }
14917:     } elsif ($distro =~ /^suse(\d+\.\d+)$/) {
14918:         if ($1 >= 10.0) {
14919:             $webconfdir = '/etc/apache2';
14920:         }
14921:     }
14922:     my ($release,$timestamp) = split(/\-/,$loncaparev);
14923:     my (%chksum,%revnum);
14924:     if (ref($lines) eq 'ARRAY') {
14925:         chomp(@{$lines});
14926:         my $version = shift(@{$lines});
14927:         if ($version eq $release) {  
14928:             foreach my $line (@{$lines}) {
14929:                 my ($file,$version,$shasum) = split(/,/,$line);
14930:                 if ($file =~ m{^/etc/httpd/conf}) {
14931:                     if ($webconfdir eq '/etc/apache2') {
14932:                         $file =~ s{^\Q/etc/httpd/conf/\E}{$webconfdir/};
14933:                     }
14934:                 }
14935:                 $chksum{$file} = $shasum;
14936:                 $revnum{$file} = $version;
14937:             }
14938:             if (ref($hashref) eq 'HASH') {
14939:                 %{$hashref} = (
14940:                                 sums     => \%chksum,
14941:                                 versions => \%revnum,
14942:                               );
14943:             }
14944:         }
14945:     }
14946:     return;
14947: }
14948: 
14949: sub fetch_dns_checksums {
14950:     my %checksums;
14951:     my $machine_dom = &Apache::lonnet::host_domain($perlvar{'lonHostID'});
14952:     my $loncaparev = &get_server_loncaparev($machine_dom,$perlvar{'lonHostID'});
14953:     my ($release,$timestamp) = split(/\-/,$loncaparev);
14954:     &get_dns("/adm/dns/checksums/$release",\&parse_dns_checksums_tab,1,1,
14955:              \%checksums);
14956:     return \%checksums;
14957: }
14958: 
14959: sub fetch_crl_pemfile {
14960:     return &get_dns("/adm/dns/loncapaCRL",\&save_crl_pem,1,1);
14961: }
14962: 
14963: sub save_crl_pem {
14964:     my ($content) = @_;
14965:     my ($msg,$hadchanges);
14966:     if ($content ne '') {
14967:         my $now = time;
14968:         my $lonca = $perlvar{'lonCertificateDirectory'}.'/'.$perlvar{'lonnetCertificateAuthority'};
14969:         my $tmpcrl = $tmpdir.'/'.$perlvar{'lonnetCertRevocationList'}.'_'.$now.'.'.$$.'.tmp';
14970:         if (open(my $fh,'>',"$tmpcrl")) {
14971:             print $fh $content;
14972:             close($fh);
14973:             if (-e $lonca) {
14974:                 if (open(PIPE,"openssl crl -in $tmpcrl -inform pem -CAfile $lonca -noout 2>&1 |")) {
14975:                     my $check = <PIPE>;
14976:                     close(PIPE);
14977:                     chomp($check);
14978:                     if ($check eq 'verify OK') {
14979:                         my $dest = "$perlvar{'lonCertificateDirectory'}/$perlvar{'lonnetCertRevocationList'}";
14980:                         my $backup;
14981:                         if (-e $dest) {
14982:                             if (&File::Copy::move($dest,"$dest.bak")) {
14983:                                 $backup = 'ok';
14984:                             }
14985:                         }
14986:                         if (&File::Copy::move($tmpcrl,$dest)) {
14987:                             $msg = 'ok';
14988:                             if ($backup) {
14989:                                 my (%oldnums,%newnums);
14990:                                 if (open(PIPE, "openssl crl -inform PEM -text -noout -in $dest.bak |grep 'Serial Number' |")) {
14991:                                     while (<PIPE>) {
14992:                                         $oldnums{(split(/:/))[1]} = 1;
14993:                                     }
14994:                                     close(PIPE);
14995:                                 }
14996:                                 if (open(PIPE, "openssl crl -inform PEM -text -noout -in $dest |grep 'Serial Number' |")) {
14997:                                     while(<PIPE>) {
14998:                                         $newnums{(split(/:/))[1]} = 1;
14999:                                     }
15000:                                     close(PIPE);
15001:                                 }
15002:                                 foreach my $key (sort {$b <=> $a } (keys(%newnums))) {
15003:                                     unless (exists($oldnums{$key})) {
15004:                                         $hadchanges = 1;
15005:                                         last;
15006:                                     }
15007:                                 }
15008:                                 unless ($hadchanges) {
15009:                                     foreach my $key (sort {$b <=> $a } (keys(%oldnums))) {
15010:                                         unless (exists($newnums{$key})) {
15011:                                             $hadchanges = 1;
15012:                                             last;
15013:                                         }
15014:                                     }
15015:                                 }
15016:                             }
15017:                         }
15018:                     } else {
15019:                         unlink($tmpcrl);
15020:                     }
15021:                 } else {
15022:                     unlink($tmpcrl);
15023:                 }
15024:             } else {
15025:                 unlink($tmpcrl);
15026:             }
15027:         }
15028:     }
15029:     return ($msg,$hadchanges);
15030: }
15031: 
15032: sub parse_getdns_url {
15033:     my ($command,$url) = @_;
15034:     my $dir = $perlvar{'lonTabDir'};
15035:     my $file;
15036:     if ($command eq 'hosts') {
15037:         $file = 'dns_hosts.tab';
15038:     } elsif ($command eq 'domain') {
15039:         $file = 'dns_domain.tab';
15040:     } elsif ($command eq 'checksums') {
15041:         my $version = (split('/',$url))[4];
15042:         $file = "dns_checksums/$version.tab",
15043:     } elsif ($command eq 'loncapaCRL') {
15044:         $dir = $perlvar{'lonCertificateDirectory'};
15045:         $file = $perlvar{'lonnetCertRevocationList'};
15046:     }
15047:     return ($dir,$file);
15048: }
15049: 
15050: # ------------------------------------------------------------ Read domain file
15051: {
15052:     my $loaded;
15053:     my %domain;
15054: 
15055:     sub parse_domain_tab {
15056: 	my ($lines) = @_;
15057: 	foreach my $line (@$lines) {
15058: 	    next if ($line =~ /^(\#|\s*$ )/x);
15059: 
15060: 	    chomp($line);
15061: 	    my ($name,@elements) = split(/:/,$line,9);
15062: 	    my %this_domain;
15063: 	    foreach my $field ('description', 'auth_def', 'auth_arg_def',
15064: 			       'lang_def', 'city', 'longi', 'lati',
15065: 			       'primary') {
15066: 		$this_domain{$field} = shift(@elements);
15067: 	    }
15068: 	    $domain{$name} = \%this_domain;
15069: 	}
15070:     }
15071: 
15072:     sub reset_domain_info {
15073: 	undef($loaded);
15074: 	undef(%domain);
15075:     }
15076: 
15077:     sub load_domain_tab {
15078: 	my ($ignore_cache,$nocache) = @_;
15079: 	&get_dns('/adm/dns/domain',\&parse_domain_tab,$ignore_cache,$nocache);
15080: 	my $fh;
15081: 	if (open($fh,"<",$perlvar{'lonTabDir'}.'/domain.tab')) {
15082: 	    my @lines = <$fh>;
15083: 	    &parse_domain_tab(\@lines);
15084: 	}
15085: 	close($fh);
15086: 	$loaded = 1;
15087:     }
15088: 
15089:     sub domain {
15090: 	&load_domain_tab() if (!$loaded);
15091: 
15092: 	my ($name,$what) = @_;
15093: 	return if ( !exists($domain{$name}) );
15094: 
15095: 	if (!$what) {
15096: 	    return $domain{$name}{'description'};
15097: 	}
15098: 	return $domain{$name}{$what};
15099:     }
15100: 
15101:     sub domain_info {
15102:         &load_domain_tab() if (!$loaded);
15103:         return %domain;
15104:     }
15105: 
15106: }
15107: 
15108: 
15109: # ------------------------------------------------------------- Read hosts file
15110: {
15111:     my %hostname;
15112:     my %hostdom;
15113:     my %libserv;
15114:     my $loaded;
15115:     my %name_to_host;
15116:     my %internetdom;
15117:     my %LC_dns_serv;
15118: 
15119:     sub parse_hosts_tab {
15120: 	my ($file) = @_;
15121: 	foreach my $configline (@$file) {
15122: 	    next if ($configline =~ /^(\#|\s*$ )/x);
15123:             chomp($configline);
15124: 	    if ($configline =~ /^\^/) {
15125:                 if ($configline =~ /^\^([\w.\-]+)/) {
15126:                     $LC_dns_serv{$1} = 1;
15127:                 }
15128:                 next;
15129:             }
15130: 	    my ($id,$domain,$role,$name,$protocol,$intdom)=split(/:/,$configline);
15131: 	    $name=~s/\s//g;
15132: 	    if ($id && $domain && $role && $name) {
15133:                 if ((exists($hostname{$id})) && ($hostname{$id} ne '')) {
15134:                     my $curr = $hostname{$id};
15135:                     my $skip;
15136:                     if (ref($name_to_host{$curr}) eq 'ARRAY') {
15137:                         if (($curr eq $name) && (@{$name_to_host{$curr}} == 1)) {
15138:                             $skip = 1;
15139:                         } else {
15140:                             @{$name_to_host{$curr}} = grep { $_ ne $id } @{$name_to_host{$curr}};
15141:                         }
15142:                     }
15143:                     unless ($skip) {
15144:                         push(@{$name_to_host{$name}},$id);
15145:                     }
15146:                 } else {
15147:                     push(@{$name_to_host{$name}},$id);
15148:                 }
15149: 		$hostname{$id}=$name;
15150: 		$hostdom{$id}=$domain;
15151: 		if ($role eq 'library') { $libserv{$id}=$name; }
15152:                 if (defined($protocol)) {
15153:                     if ($protocol eq 'https') {
15154:                         $protocol{$id} = $protocol;
15155:                     } else {
15156:                         $protocol{$id} = 'http'; 
15157:                     }
15158:                 } else {
15159:                     $protocol{$id} = 'http';
15160:                 }
15161:                 if (defined($intdom)) {
15162:                     $internetdom{$id} = $intdom;
15163:                 }
15164: 	    }
15165: 	}
15166:     }
15167:     
15168:     sub reset_hosts_info {
15169: 	&purge_remembered();
15170: 	&reset_domain_info();
15171: 	&reset_hosts_ip_info();
15172:         undef(%internetdom);
15173: 	undef(%name_to_host);
15174: 	undef(%hostname);
15175: 	undef(%hostdom);
15176: 	undef(%libserv);
15177: 	undef($loaded);
15178:     }
15179: 
15180:     sub load_hosts_tab {
15181: 	my ($ignore_cache,$nocache) = @_;
15182: 	&get_dns('/adm/dns/hosts',\&parse_hosts_tab,$ignore_cache,$nocache);
15183: 	open(my $config,"<","$perlvar{'lonTabDir'}/hosts.tab");
15184: 	my @config = <$config>;
15185: 	&parse_hosts_tab(\@config);
15186: 	close($config);
15187: 	$loaded=1;
15188:     }
15189: 
15190:     sub hostname {
15191: 	&load_hosts_tab() if (!$loaded);
15192: 
15193: 	my ($lonid) = @_;
15194: 	return $hostname{$lonid};
15195:     }
15196: 
15197:     sub all_hostnames {
15198: 	&load_hosts_tab() if (!$loaded);
15199: 
15200: 	return %hostname;
15201:     }
15202: 
15203:     sub all_names {
15204:         my ($ignore_cache,$nocache) = @_;
15205: 	&load_hosts_tab($ignore_cache,$nocache) if (!$loaded);
15206: 
15207: 	return %name_to_host;
15208:     }
15209: 
15210:     sub all_host_domain {
15211:         &load_hosts_tab() if (!$loaded);
15212:         return %hostdom;
15213:     }
15214: 
15215:     sub all_host_intdom {
15216:         &load_hosts_tab() if (!$loaded);
15217:         return %internetdom;
15218:     }
15219: 
15220:     sub is_library {
15221: 	&load_hosts_tab() if (!$loaded);
15222: 
15223: 	return exists($libserv{$_[0]});
15224:     }
15225: 
15226:     sub all_library {
15227: 	&load_hosts_tab() if (!$loaded);
15228: 
15229: 	return %libserv;
15230:     }
15231: 
15232:     sub unique_library {
15233: 	#2x reverse removes all hostnames that appear more than once
15234:         my %unique = reverse &all_library();
15235:         return reverse %unique;
15236:     }
15237: 
15238:     sub get_servers {
15239: 	&load_hosts_tab() if (!$loaded);
15240: 
15241: 	my ($domain,$type) = @_;
15242: 	my %possible_hosts = ($type eq 'library') ? %libserv
15243: 	                                          : %hostname;
15244: 	my %result;
15245: 	if (ref($domain) eq 'ARRAY') {
15246: 	    while ( my ($host,$hostname) = each(%possible_hosts)) {
15247: 		if (grep(/^\Q$hostdom{$host}\E$/,@$domain)) {
15248: 		    $result{$host} = $hostname;
15249: 		}
15250: 	    }
15251: 	} else {
15252: 	    while ( my ($host,$hostname) = each(%possible_hosts)) {
15253: 		if ($hostdom{$host} eq $domain) {
15254: 		    $result{$host} = $hostname;
15255: 		}
15256: 	    }
15257: 	}
15258: 	return %result;
15259:     }
15260: 
15261:     sub get_unique_servers {
15262:         my %unique = reverse &get_servers(@_);
15263: 	return reverse %unique;
15264:     }
15265: 
15266:     sub host_domain {
15267: 	&load_hosts_tab() if (!$loaded);
15268: 
15269: 	my ($lonid) = @_;
15270: 	return $hostdom{$lonid};
15271:     }
15272: 
15273:     sub all_domains {
15274: 	&load_hosts_tab() if (!$loaded);
15275: 
15276: 	my %seen;
15277: 	my @uniq = grep(!$seen{$_}++, values(%hostdom));
15278: 	return @uniq;
15279:     }
15280: 
15281:     sub internet_dom {
15282:         &load_hosts_tab() if (!$loaded);
15283: 
15284:         my ($lonid) = @_;
15285:         return $internetdom{$lonid};
15286:     }
15287: 
15288:     sub is_LC_dns {
15289:         &load_hosts_tab() if (!$loaded);
15290: 
15291:         my ($hostname) = @_;
15292:         return exists($LC_dns_serv{$hostname});
15293:     }
15294: 
15295: }
15296: 
15297: { 
15298:     my %iphost;
15299:     my %name_to_ip;
15300:     my %lonid_to_ip;
15301: 
15302:     sub get_hosts_from_ip {
15303: 	my ($ip) = @_;
15304: 	my %iphosts = &get_iphost();
15305: 	if (ref($iphosts{$ip})) {
15306: 	    return @{$iphosts{$ip}};
15307: 	}
15308: 	return;
15309:     }
15310:     
15311:     sub reset_hosts_ip_info {
15312: 	undef(%iphost);
15313: 	undef(%name_to_ip);
15314: 	undef(%lonid_to_ip);
15315:     }
15316: 
15317:     sub get_host_ip {
15318: 	my ($lonid) = @_;
15319: 	if (exists($lonid_to_ip{$lonid})) {
15320: 	    return $lonid_to_ip{$lonid};
15321: 	}
15322: 	my $name=&hostname($lonid);
15323:    	my $ip = gethostbyname($name);
15324: 	return if (!$ip || length($ip) ne 4);
15325: 	$ip=inet_ntoa($ip);
15326: 	$name_to_ip{$name}   = $ip;
15327: 	$lonid_to_ip{$lonid} = $ip;
15328: 	return $ip;
15329:     }
15330:     
15331:     sub get_iphost {
15332: 	my ($ignore_cache,$nocache) = @_;
15333: 
15334: 	if (!$ignore_cache) {
15335: 	    if (%iphost) {
15336: 		return %iphost;
15337: 	    }
15338: 	    my ($ip_info,$cached)=
15339: 		&Apache::lonnet::is_cached_new('iphost','iphost');
15340: 	    if ($cached) {
15341: 		%iphost      = %{$ip_info->[0]};
15342: 		%name_to_ip  = %{$ip_info->[1]};
15343: 		%lonid_to_ip = %{$ip_info->[2]};
15344: 		return %iphost;
15345: 	    }
15346: 	}
15347: 
15348: 	# get yesterday's info for fallback
15349: 	my %old_name_to_ip;
15350: 	my ($ip_info,$cached)=
15351: 	    &Apache::lonnet::is_cached_new('iphost','iphost');
15352: 	if ($cached) {
15353: 	    %old_name_to_ip = %{$ip_info->[1]};
15354: 	}
15355: 
15356: 	my %name_to_host = &all_names($ignore_cache,$nocache);
15357: 	foreach my $name (keys(%name_to_host)) {
15358: 	    my $ip;
15359: 	    if (!exists($name_to_ip{$name})) {
15360: 		$ip = gethostbyname($name);
15361: 		if (!$ip || length($ip) ne 4) {
15362: 		    if (defined($old_name_to_ip{$name})) {
15363: 			$ip = $old_name_to_ip{$name};
15364: 			&logthis("Can't find $name defaulting to old $ip");
15365: 		    } else {
15366: 			&logthis("Name $name no IP found");
15367: 			next;
15368: 		    }
15369: 		} else {
15370: 		    $ip=inet_ntoa($ip);
15371: 		}
15372: 		$name_to_ip{$name} = $ip;
15373: 	    } else {
15374: 		$ip = $name_to_ip{$name};
15375: 	    }
15376: 	    foreach my $id (@{ $name_to_host{$name} }) {
15377: 		$lonid_to_ip{$id} = $ip;
15378: 	    }
15379: 	    push(@{$iphost{$ip}},@{$name_to_host{$name}});
15380: 	}
15381:         unless ($nocache) {
15382: 	    &do_cache_new('iphost','iphost',
15383: 		          [\%iphost,\%name_to_ip,\%lonid_to_ip],
15384: 		          48*60*60);
15385:         }
15386: 
15387: 	return %iphost;
15388:     }
15389: 
15390:     #
15391:     #  Given a DNS returns the loncapa host name for that DNS 
15392:     # 
15393:     sub host_from_dns {
15394:         my ($dns) = @_;
15395:         my @hosts;
15396:         my $ip;
15397: 
15398:         if (exists($name_to_ip{$dns})) {
15399:             $ip = $name_to_ip{$dns};
15400:         }
15401:         if (!$ip) {
15402:             $ip = gethostbyname($dns); # Initial translation to IP is in net order.
15403:             if (length($ip) == 4) { 
15404: 	        $ip   = &IO::Socket::inet_ntoa($ip);
15405:             }
15406:         }
15407:         if ($ip) {
15408: 	    @hosts = get_hosts_from_ip($ip);
15409: 	    return $hosts[0];
15410:         }
15411:         return undef;
15412:     }
15413: 
15414:     sub get_internet_names {
15415:         my ($lonid) = @_;
15416:         return if ($lonid eq '');
15417:         my ($idnref,$cached)=
15418:             &Apache::lonnet::is_cached_new('internetnames',$lonid);
15419:         if ($cached) {
15420:             return $idnref;
15421:         }
15422:         my $ip = &get_host_ip($lonid);
15423:         my @hosts = &get_hosts_from_ip($ip);
15424:         my %iphost = &get_iphost();
15425:         my (@idns,%seen);
15426:         foreach my $id (@hosts) {
15427:             my $dom = &host_domain($id);
15428:             my $prim_id = &domain($dom,'primary');
15429:             my $prim_ip = &get_host_ip($prim_id);
15430:             next if ($seen{$prim_ip});
15431:             if (ref($iphost{$prim_ip}) eq 'ARRAY') {
15432:                 foreach my $id (@{$iphost{$prim_ip}}) {
15433:                     my $intdom = &internet_dom($id);
15434:                     unless (grep(/^\Q$intdom\E$/,@idns)) {
15435:                         push(@idns,$intdom);
15436:                     }
15437:                 }
15438:             }
15439:             $seen{$prim_ip} = 1;
15440:         }
15441:         return &do_cache_new('internetnames',$lonid,\@idns,12*60*60);
15442:     }
15443: 
15444: }
15445: 
15446: sub all_loncaparevs {
15447:     return qw(1.1 1.2 1.3 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 2.10 2.11);
15448: }
15449: 
15450: # ---------------------------------------------------------- Read loncaparev table
15451: {
15452:     sub load_loncaparevs { 
15453:         if (-e "$perlvar{'lonTabDir'}/loncaparevs.tab") {
15454:             if (open(my $config,"<","$perlvar{'lonTabDir'}/loncaparevs.tab")) {
15455:                 while (my $configline=<$config>) {
15456:                     chomp($configline);
15457:                     my ($hostid,$loncaparev)=split(/:/,$configline);
15458:                     $loncaparevs{$hostid}=$loncaparev;
15459:                 }
15460:                 close($config);
15461:             }
15462:         }
15463:     }
15464: }
15465: 
15466: # ---------------------------------------------------------- Read serverhostID table
15467: {
15468:     sub load_serverhomeIDs {
15469:         if (-e "$perlvar{'lonTabDir'}/serverhomeIDs.tab") {
15470:             if (open(my $config,"<","$perlvar{'lonTabDir'}/serverhomeIDs.tab")) {
15471:                 while (my $configline=<$config>) {
15472:                     chomp($configline);
15473:                     my ($name,$id)=split(/:/,$configline);
15474:                     $serverhomeIDs{$name}=$id;
15475:                 }
15476:                 close($config);
15477:             }
15478:         }
15479:     }
15480: }
15481: 
15482: 
15483: BEGIN {
15484: 
15485: # ----------------------------------- Read loncapa.conf and loncapa_apache.conf
15486:     unless ($readit) {
15487: {
15488:     my $configvars = LONCAPA::Configuration::read_conf('loncapa.conf');
15489:     %perlvar = (%perlvar,%{$configvars});
15490: }
15491: 
15492: 
15493: # ------------------------------------------------------ Read spare server file
15494: {
15495:     open(my $config,"<","$perlvar{'lonTabDir'}/spare.tab");
15496: 
15497:     while (my $configline=<$config>) {
15498:        chomp($configline);
15499:        if ($configline) {
15500: 	   my ($host,$type) = split(':',$configline,2);
15501: 	   if (!defined($type) || $type eq '') { $type = 'default' };
15502: 	   push(@{ $spareid{$type} }, $host);
15503:        }
15504:     }
15505:     close($config);
15506: }
15507: # ------------------------------------------------------------ Read permissions
15508: {
15509:     open(my $config,"<","$perlvar{'lonTabDir'}/roles.tab");
15510: 
15511:     while (my $configline=<$config>) {
15512: 	chomp($configline);
15513: 	if ($configline) {
15514: 	    my ($role,$perm)=split(/ /,$configline);
15515: 	    if ($perm ne '') { $pr{$role}=$perm; }
15516: 	}
15517:     }
15518:     close($config);
15519: }
15520: 
15521: # -------------------------------------------- Read plain texts for permissions
15522: {
15523:     open(my $config,"<","$perlvar{'lonTabDir'}/rolesplain.tab");
15524: 
15525:     while (my $configline=<$config>) {
15526: 	chomp($configline);
15527: 	if ($configline) {
15528: 	    my ($short,@plain)=split(/:/,$configline);
15529:             %{$prp{$short}} = ();
15530: 	    if (@plain > 0) {
15531:                 $prp{$short}{'std'} = $plain[0];
15532:                 for (my $i=1; $i<@plain; $i++) {
15533:                     $prp{$short}{'alt'.$i} = $plain[$i];  
15534:                 }
15535:             }
15536: 	}
15537:     }
15538:     close($config);
15539: }
15540: 
15541: # ---------------------------------------------------------- Read package table
15542: {
15543:     open(my $config,"<","$perlvar{'lonTabDir'}/packages.tab");
15544: 
15545:     while (my $configline=<$config>) {
15546: 	if ($configline !~ /\S/ || $configline=~/^#/) { next; }
15547: 	chomp($configline);
15548: 	my ($short,$plain)=split(/:/,$configline);
15549: 	my ($pack,$name)=split(/\&/,$short);
15550: 	if ($plain ne '') {
15551: 	    $packagetab{$pack.'&'.$name.'&name'}=$name; 
15552: 	    $packagetab{$short}=$plain; 
15553: 	}
15554:     }
15555:     close($config);
15556: }
15557: 
15558: # ---------------------------------------------------------- Read loncaparev table
15559: 
15560: &load_loncaparevs();
15561: 
15562: # ---------------------------------------------------------- Read serverhostID table
15563: 
15564: &load_serverhomeIDs();
15565: 
15566: # ---------------------------------------------------------- Read releaseslist XML
15567: {
15568:     my $file = $Apache::lonnet::perlvar{'lonTabDir'}.'/releaseslist.xml';
15569:     if (-e $file) {
15570:         my $parser = HTML::LCParser->new($file);
15571:         while (my $token = $parser->get_token()) {
15572:             if ($token->[0] eq 'S') {
15573:                 my $item = $token->[1];
15574:                 my $name = $token->[2]{'name'};
15575:                 my $value = $token->[2]{'value'};
15576:                 my $valuematch = $token->[2]{'valuematch'};
15577:                 my $namematch = $token->[2]{'namematch'};
15578:                 if ($item eq 'parameter') {
15579:                     if (($namematch ne '') || (($name ne '') && ($value ne '' || $valuematch ne ''))) {
15580:                         my $release = $parser->get_text();
15581:                         $release =~ s/(^\s*|\s*$ )//gx;
15582:                         $needsrelease{$item.':'.$name.':'.$value.':'.$valuematch.':'.$namematch} = $release;
15583:                     }
15584:                 } elsif ($item ne '' && $name ne '') {
15585:                     my $release = $parser->get_text();
15586:                     $release =~ s/(^\s*|\s*$ )//gx;
15587:                     $needsrelease{$item.':'.$name.':'.$value} = $release;
15588:                 }
15589:             }
15590:         }
15591:     }
15592: }
15593: 
15594: # ---------------------------------------------------------- Read managers table
15595: {
15596:     if (-e "$perlvar{'lonTabDir'}/managers.tab") {
15597:         if (open(my $config,"<","$perlvar{'lonTabDir'}/managers.tab")) {
15598:             while (my $configline=<$config>) {
15599:                 chomp($configline);
15600:                 next if ($configline =~ /^\#/);
15601:                 if (($configline =~ /^[\w\-]+$/) || ($configline =~ /^[\w\-]+\:[\w\-]+$/)) {
15602:                     $managerstab{$configline} = 1;
15603:                 }
15604:             }
15605:             close($config);
15606:         }
15607:     }
15608: }
15609: 
15610: # ------------- set up temporary directory
15611: {
15612:     $tmpdir = LONCAPA::tempdir();
15613: 
15614: }
15615: 
15616: # ------------- set default texengine (domain default overrides this)
15617: {
15618:     $deftex = LONCAPA::texengine();
15619: }
15620: 
15621: # ------------- set default minimum length for passwords for internal auth users
15622: {
15623:     $passwdmin = LONCAPA::passwd_min();
15624: }
15625: 
15626: $memcache=new Cache::Memcached({'servers'           => ['127.0.0.1:11211'],
15627: 				'compress_threshold'=> 20_000,
15628:  			        });
15629: 
15630: $processmarker='_'.time.'_'.$perlvar{'lonHostID'};
15631: $dumpcount=0;
15632: $locknum=0;
15633: 
15634: &logtouch();
15635: &logthis('<font color="yellow">INFO: Read configuration</font>');
15636: $readit=1;
15637:     {
15638: 	use integer;
15639: 	my $test=(2**32)+1;
15640: 	if ($test != 0) { $_64bit=1; } else { $_64bit=0; }
15641: 	&logthis(" Detected 64bit platform ($_64bit)");
15642:     }
15643: }
15644: }
15645: 
15646: 1;
15647: __END__
15648: 
15649: =pod
15650: 
15651: =head1 NAME
15652: 
15653: Apache::lonnet - Subroutines to ask questions about things in the network.
15654: 
15655: =head1 SYNOPSIS
15656: 
15657: Invoked by other LON-CAPA modules, when they need to talk to or about objects in the network.
15658: 
15659:  &Apache::lonnet::SUBROUTINENAME(ARGUMENTS);
15660: 
15661: Common parameters:
15662: 
15663: =over 4
15664: 
15665: =item *
15666: 
15667: $uname : an internal username (if $cname expecting a course Id specifically)
15668: 
15669: =item *
15670: 
15671: $udom : a domain (if $cdom expecting a course's domain specifically)
15672: 
15673: =item *
15674: 
15675: $symb : a resource instance identifier
15676: 
15677: =item *
15678: 
15679: $namespace : the name of a .db file that contains the data needed or
15680: being set.
15681: 
15682: =back
15683: 
15684: =head1 OVERVIEW
15685: 
15686: lonnet provides subroutines which interact with the
15687: lonc/lond (TCP) network layer of LON-CAPA. They can be used to ask
15688: about classes, users, and resources.
15689: 
15690: For many of these objects you can also use this to store data about
15691: them or modify them in various ways.
15692: 
15693: =head2 Symbs
15694: 
15695: To identify a specific instance of a resource, LON-CAPA uses symbols
15696: or "symbs"X<symb>. These identifiers are built from the URL of the
15697: map, the resource number of the resource in the map, and the URL of
15698: the resource itself. The latter is somewhat redundant, but might help
15699: if maps change.
15700: 
15701: An example is
15702: 
15703:  msu/korte/parts/part1.sequence___19___msu/korte/tests/part12.problem
15704: 
15705: The respective map entry is
15706: 
15707:  <resource id="19" src="/res/msu/korte/tests/part12.problem"
15708:   title="Problem 2">
15709:  </resource>
15710: 
15711: Symbs are used by the random number generator, as well as to store and
15712: restore data specific to a certain instance of for example a problem.
15713: 
15714: =head2 Storing And Retrieving Data
15715: 
15716: X<store()>X<cstore()>X<restore()>Three of the most important functions
15717: in C<lonnet.pm> are C<&Apache::lonnet::cstore()>,
15718: C<&Apache::lonnet:restore()>, and C<&Apache::lonnet::store()>, which
15719: is is the non-critical message twin of cstore. These functions are for
15720: handlers to store a perl hash to a user's permanent data space in an
15721: easy manner, and to retrieve it again on another call. It is expected
15722: that a handler would use this once at the beginning to retrieve data,
15723: and then again once at the end to send only the new data back.
15724: 
15725: The data is stored in the user's data directory on the user's
15726: homeserver under the ID of the course.
15727: 
15728: The hash that is returned by restore will have all of the previous
15729: value for all of the elements of the hash.
15730: 
15731: Example:
15732: 
15733:  #creating a hash
15734:  my %hash;
15735:  $hash{'foo'}='bar';
15736: 
15737:  #storing it
15738:  &Apache::lonnet::cstore(\%hash);
15739: 
15740:  #changing a value
15741:  $hash{'foo'}='notbar';
15742: 
15743:  #adding a new value
15744:  $hash{'bar'}='foo';
15745:  &Apache::lonnet::cstore(\%hash);
15746: 
15747:  #retrieving the hash
15748:  my %history=&Apache::lonnet::restore();
15749: 
15750:  #print the hash
15751:  foreach my $key (sort(keys(%history))) {
15752:    print("\%history{$key} = $history{$key}");
15753:  }
15754: 
15755: Will print out:
15756: 
15757:  %history{1:foo} = bar
15758:  %history{1:keys} = foo:timestamp
15759:  %history{1:timestamp} = 990455579
15760:  %history{2:bar} = foo
15761:  %history{2:foo} = notbar
15762:  %history{2:keys} = foo:bar:timestamp
15763:  %history{2:timestamp} = 990455580
15764:  %history{bar} = foo
15765:  %history{foo} = notbar
15766:  %history{timestamp} = 990455580
15767:  %history{version} = 2
15768: 
15769: Note that the special hash entries C<keys>, C<version> and
15770: C<timestamp> were added to the hash. C<version> will be equal to the
15771: total number of versions of the data that have been stored. The
15772: C<timestamp> attribute will be the UNIX time the hash was
15773: stored. C<keys> is available in every historical section to list which
15774: keys were added or changed at a specific historical revision of a
15775: hash.
15776: 
15777: B<Warning>: do not store the hash that restore returns directly. This
15778: will cause a mess since it will restore the historical keys as if the
15779: were new keys. I.E. 1:foo will become 1:1:foo etc.
15780: 
15781: Calling convention:
15782: 
15783:  my %record=&Apache::lonnet::restore($symb,$courseid,$domain,$uname);
15784:  &Apache::lonnet::cstore(\%newrecord,$symb,$courseid,$domain,$uname,$laststore);
15785: 
15786: For more detailed information, see lonnet specific documentation.
15787: 
15788: =head1 RETURN MESSAGES
15789: 
15790: =over 4
15791: 
15792: =item * B<con_lost>: unable to contact remote host
15793: 
15794: =item * B<con_delayed>: unable to contact remote host, message will be delivered
15795: when the connection is brought back up
15796: 
15797: =item * B<con_failed>: unable to contact remote host and unable to save message
15798: for later delivery
15799: 
15800: =item * B<error:>: an error a occurred, a description of the error follows the :
15801: 
15802: =item * B<no_such_host>: unable to fund a host associated with the user/domain
15803: that was requested
15804: 
15805: =back
15806: 
15807: =head1 PUBLIC SUBROUTINES
15808: 
15809: =head2 Session Environment Functions
15810: 
15811: =over 4
15812: 
15813: =item * 
15814: X<appenv()>
15815: B<appenv($hashref,$rolesarrayref)>: the value of %{$hashref} is written to
15816: the user envirnoment file, and will be restored for each access this
15817: user makes during this session, also modifies the %env for the current
15818: process. Optional rolesarrayref - if defined contains a reference to an array
15819: of roles which are exempt from the restriction on modifying user.role entries 
15820: in the user's environment.db and in %env.    
15821: 
15822: =item *
15823: X<delenv()>
15824: B<delenv($delthis,$regexp)>: removes all items from the session
15825: environment file that begin with $delthis. If the 
15826: optional second arg - $regexp - is true, $delthis is treated as a 
15827: regular expression, otherwise \Q$delthis\E is used. 
15828: The values are also deleted from the current processes %env.
15829: 
15830: =item * get_env_multiple($name) 
15831: 
15832: gets $name from the %env hash, it seemlessly handles the cases where multiple
15833: values may be defined and end up as an array ref.
15834: 
15835: returns an array of values
15836: 
15837: =back
15838: 
15839: =head2 User Information
15840: 
15841: =over 4
15842: 
15843: =item *
15844: X<queryauthenticate()>
15845: B<queryauthenticate($uname,$udom)>: try to determine user's current 
15846: authentication scheme
15847: 
15848: =item *
15849: X<authenticate()>
15850: B<authenticate($uname,$upass,$udom,$checkdefauth,$clientcancheckhost)>: try to
15851: authenticate user from domain's lib servers (first use the current
15852: one). C<$upass> should be the users password.
15853: $checkdefauth is optional (value is 1 if a check should be made to
15854:    authenticate user using default authentication method, and allow
15855:    account creation if username does not have account in the domain).
15856: $clientcancheckhost is optional (value is 1 if checking whether the
15857:    server can host will occur on the client side in lonauth.pm).   
15858: 
15859: =item *
15860: X<homeserver()>
15861: B<homeserver($uname,$udom)>: find the server which has
15862: the user's directory and files (there must be only one), this caches
15863: the answer, and also caches if there is a borken connection.
15864: 
15865: =item *
15866: X<idget()>
15867: B<idget($udom,$idsref,$namespace)>: find the usernames behind either 
15868: a list of student/employee IDs or clicker IDs
15869: (student/employee IDs are a unique resource in a domain, there must be 
15870: only 1 ID per username, and only 1 username per ID in a specific domain).
15871: clickerIDs are not necessarily unique, as students might share clickers.
15872: (returns hash: id=>name,id=>name)
15873: 
15874: =item *
15875: X<idrget()>
15876: B<idrget($udom,@unames)>: find the IDs behind a list of
15877: usernames (returns hash: name=>id,name=>id)
15878: 
15879: =item *
15880: X<idput()>
15881: B<idput($udom,$idsref,$uhome,$namespace)>: store away a list of 
15882: names and associated student/employee IDs or clicker IDs.
15883: 
15884: =item *
15885: X<iddel()>
15886: B<iddel($udom,$idshashref,$uhome,$namespace)>: delete unwanted 
15887: student/employee ID or clicker ID username look-ups from domain.
15888: The homeserver ($uhome) and namespace ($namespace) are optional.
15889: If no $uhome is provided, it will be determined usig &homeserver()
15890: for each user.  If no $namespace is provided, the default is ids.
15891: 
15892: =item *
15893: X<updateclickers()>
15894: B<updateclickers($udom,$action,$idshashref,$uhome,$critical)>: update 
15895: clicker ID-to-username look-ups in clickers.db on library server.
15896: Permitted actions are add or del (i.e., add or delete). The 
15897: clickers.db contains clickerID as keys (escaped), and each corresponding
15898: value is an escaped comma-separated list of usernames (for whom the
15899: library server is the homeserver), who registered that particular ID.
15900: If $critical is true, the update will be sent via &critical, otherwise
15901: &reply() will be used.
15902: 
15903: =item *
15904: X<rolesinit()>
15905: B<rolesinit($udom,$username)>: get user privileges.
15906: returns user role, first access and timer interval hashes
15907: 
15908: =item *
15909: X<privileged()>
15910: B<privileged($username,$domain)>: returns a true if user has a
15911: privileged and active role (i.e. su or dc), false otherwise.
15912: 
15913: =item *
15914: X<getsection()>
15915: B<getsection($udom,$uname,$cname)>: finds the section of student in the
15916: course $cname, return section name/number or '' for "not in course"
15917: and '-1' for "no section"
15918: 
15919: =item *
15920: X<userenvironment()>
15921: B<userenvironment($udom,$uname,@what)>: gets the values of the keys
15922: passed in @what from the requested user's environment, returns a hash
15923: 
15924: =item * 
15925: X<userlog_query()>
15926: B<userlog_query($uname,$udom,%filters)>: retrieves data from a user's
15927: activity.log file. %filters defines filters applied when parsing the
15928: log file. These can be start or end timestamps, or the type of action
15929: - log to look for Login or Logout events, check for Checkin or
15930: Checkout, role for role selection. The response is in the form
15931: timestamp1:hostid1:event1&timestamp2:hostid2:event2 where events are
15932: escaped strings of the action recorded in the activity.log file.
15933: 
15934: =back
15935: 
15936: =head2 User Roles
15937: 
15938: =over 4
15939: 
15940: =item *
15941: 
15942: allowed($priv,$uri,$symb,$role,$clientip,$noblockcheck) : check for a user privilege; 
15943: returns codes for allowed actions.
15944: 
15945: The first argument is required, all others are optional.
15946: 
15947: $priv is the privilege being checked.
15948: $uri contains additional information about what is being checked for access (e.g.,
15949: URL, course ID etc.). 
15950: $symb is the unique resource instance identifier in a course; if needed,
15951: but not provided, it will be retrieved via a call to &symbread(). 
15952: $role is the role for which a priv is being checked (only used if priv is evb). 
15953: $clientip is the user's IP address (only used when checking for access to portfolio 
15954: files).
15955: $noblockcheck, if true, skips calls to &has_comm_blocking() for the bre priv. This 
15956: prevents recursive calls to &allowed.
15957: 
15958:  F: full access
15959:  U,I,K: authentication modes (cxx only)
15960:  '': forbidden
15961:  1: user needs to choose course
15962:  2: browse allowed
15963:  A: passphrase authentication needed
15964:  B: access temporarily blocked because of a blocking event in a course.
15965:  D: access blocked because access is required via session initiated via deep-link 
15966: 
15967: =item *
15968: 
15969: constructaccess($url,$setpriv) : check for access to construction space URL
15970: 
15971: See if the owner domain and name in the URL match those in the
15972: expected environment.  If so, return three element list
15973: ($ownername,$ownerdomain,$ownerhome).
15974: 
15975: Otherwise return the null string.
15976: 
15977: If second argument 'setpriv' is true, it assigns the privileges,
15978: and returns the same three element list, unless the owner has
15979: blocked "ad hoc" Domain Coordinator access to the Author Space,
15980: in which case the null string is returned.
15981: 
15982: =item *
15983: 
15984: definerole($rolename,$sysrole,$domrole,$courole,$uname,$udom) : define role;
15985: define a custom role rolename set privileges in format of lonTabs/roles.tab
15986: for system, domain, and course level. $uname and $udom are optional (current
15987: user's username and domain will be used when either of $uname or $udom are absent.
15988: 
15989: =item *
15990: 
15991: plaintext($short,$type,$cid,$forcedefault) : return value in %prp hash 
15992: (rolesplain.tab); plain text explanation of a user role term.
15993: $type is Course (default) or Community.
15994: If $forcedefault evaluates to true, text returned will be default 
15995: text for $type. Otherwise, if this is a course, the text returned 
15996: will be a custom name for the role (if defined in the course's 
15997: environment).  If no custom name is defined the default is returned.
15998:    
15999: =item *
16000: 
16001: get_my_roles($uname,$udom,$context,$types,$roles,$roledoms,$withsec,$hidepriv) :
16002: All arguments are optional. Returns a hash of a roles, either for
16003: co-author/assistant author roles for a user's Construction Space
16004: (default), or if $context is 'userroles', roles for the user himself,
16005: In the hash, keys are set to colon-separated $uname,$udom,$role, and
16006: (optionally) if $withsec is true, a fourth colon-separated item - $section.
16007: For each key, value is set to colon-separated start and end times for
16008: the role.  If no username and domain are specified, will default to
16009: current user/domain. Types, roles, and roledoms are references to arrays
16010: of role statuses (active, future or previous), roles 
16011: (e.g., cc,in, st etc.) and domains of the roles which can be used
16012: to restrict the list of roles reported. If no array ref is 
16013: provided for types, will default to return only active roles.
16014: 
16015: =item *
16016: 
16017: in_course($udom,$uname,$cdom,$cnum,$type,$hideprivileged) : determine if
16018: user: $uname:$udom has a role in the course: $cdom_$cnum. 
16019: 
16020: Additional optional arguments are: $type (if role checking is to be restricted 
16021: to certain user status types -- previous (expired roles), active (currently
16022: available roles) or future (roles available in the future), and
16023: $hideprivileged -- if true will not report course roles for users who
16024: have active Domain Coordinator role in course's domain or in additional
16025: domains (specified in 'Domains to check for privileged users' in course
16026: environment -- set via:  Course Settings -> Classlists and staff listing).
16027: 
16028: =item *
16029: 
16030: privileged($username,$domain,$possdomains,$possroles) : returns 1 if user
16031: $username:$domain is a privileged user (e.g., Domain Coordinator or Super User)
16032: $possdomains and $possroles are optional array refs -- to domains to check and
16033: roles to check.  If $possdomains is not specified, a dump will be done of the
16034: users' roles.db to check for a dc or su role in any domain. This can be
16035: time consuming if &privileged is called repeatedly (e.g., when displaying a
16036: classlist), so in such cases, supplying a $possdomains array is preferred, as
16037: this then allows &privileged_by_domain() to be used, which caches the identity
16038: of privileged users, eliminating the need for repeated calls to &dump().
16039: 
16040: =item *
16041: 
16042: privileged_by_domain($possdomains,$roles) : returns a hash of a hash of a hash,
16043: where the outer hash keys are domains specified in the $possdomains array ref,
16044: next inner hash keys are privileged roles specified in the $roles array ref,
16045: and the innermost hash contains key = value pairs for username:domain = end:start
16046: for active or future "privileged" users with that role in that domain. To avoid
16047: repeated dumps of domain roles -- via &get_domain_roles() -- contents of the
16048: innerhash are cached using priv_$role and $dom as the identifiers.
16049: 
16050: =back
16051: 
16052: =head2 User Modification
16053: 
16054: =over 4
16055: 
16056: =item *
16057: 
16058: assignrole($udom,$uname,$url,$role,$end,$start,$deleteflag,$selfenroll,$context) : assign role; give a role to a
16059: user for the level given by URL.  Optional start and end dates (leave empty
16060: string or zero for "no date")
16061: 
16062: =item *
16063: 
16064: changepass($uname,$udom,$currentpass,$newpass,$server) : attempts to
16065: change a users, password, possible return values are: ok,
16066: pwchange_failure, non_authorized, auth_mode_error, unknown_user,
16067: refused
16068: 
16069: =item *
16070: 
16071: modifyuserauth($udom,$uname,$umode,$upass) : modify user authentication
16072: 
16073: =item *
16074: 
16075: modifyuser($udom,$uname,$uid,$umode,$upass,$first,$middle,$last, $gene,
16076:            $forceid,$desiredhome,$email,$inststatus,$candelete) :
16077: 
16078: will update user information (firstname,middlename,lastname,generation,
16079: permanentemail), and if forceid is true, student/employee ID also.
16080: A user's institutional affiliation(s) can also be updated.
16081: User information fields will not be overwritten with empty entries 
16082: unless the field is included in the $candelete array reference.
16083: This array is included when a single user is modified via "Manage Users",
16084: or when Autoupdate.pl is run by cron in a domain.
16085: 
16086: =item *
16087: 
16088: modifystudent
16089: 
16090: modify a student's enrollment and identification information.
16091: The course id is resolved based on the current user's environment.  
16092: This means the invoking user must be a course coordinator or otherwise
16093: associated with a course.
16094: 
16095: This call is essentially a wrapper for lonnet::modifyuser and
16096: lonnet::modify_student_enrollment
16097: 
16098: Inputs: 
16099: 
16100: =over 4
16101: 
16102: =item B<$udom> Student's loncapa domain
16103: 
16104: =item B<$uname> Student's loncapa login name
16105: 
16106: =item B<$uid> Student/Employee ID
16107: 
16108: =item B<$umode> Student's authentication mode
16109: 
16110: =item B<$upass> Student's password
16111: 
16112: =item B<$first> Student's first name
16113: 
16114: =item B<$middle> Student's middle name
16115: 
16116: =item B<$last> Student's last name
16117: 
16118: =item B<$gene> Student's generation
16119: 
16120: =item B<$usec> Student's section in course
16121: 
16122: =item B<$end> Unix time of the roles expiration
16123: 
16124: =item B<$start> Unix time of the roles start date
16125: 
16126: =item B<$forceid> If defined, allow $uid to be changed
16127: 
16128: =item B<$desiredhome> server to use as home server for student
16129: 
16130: =item B<$email> Student's permanent e-mail address
16131: 
16132: =item B<$type> Type of enrollment (auto or manual)
16133: 
16134: =item B<$locktype> boolean - enrollment type locked to prevent Autoenroll.pl changing manual to auto    
16135: 
16136: =item B<$cid> courseID - needed if a course role is assigned by a user whose current role is DC
16137: 
16138: =item B<$selfenroll> boolean - 1 if user role change occurred via self-enrollment
16139: 
16140: =item B<$context> role change context (shown in User Management Logs display in a course)
16141: 
16142: =item B<$inststatus> institutional status of user - : separated string of escaped status types
16143: 
16144: =item B<$credits> Number of credits student will earn from this class - only needs to be supplied if value needs to be different from default credits for class.
16145: 
16146: =back
16147: 
16148: =item *
16149: 
16150: modify_student_enrollment
16151: 
16152: Change a student's enrollment status in a class.  The environment variable
16153: 'role.request.course' must be defined for this function to proceed.
16154: 
16155: Inputs:
16156: 
16157: =over 4
16158: 
16159: =item $udom, student's domain
16160: 
16161: =item $uname, student's name
16162: 
16163: =item $uid, student's user id
16164: 
16165: =item $first, student's first name
16166: 
16167: =item $middle
16168: 
16169: =item $last
16170: 
16171: =item $gene
16172: 
16173: =item $usec
16174: 
16175: =item $end
16176: 
16177: =item $start
16178: 
16179: =item $type
16180: 
16181: =item $locktype
16182: 
16183: =item $cid
16184: 
16185: =item $selfenroll
16186: 
16187: =item $context
16188: 
16189: =item $credits, number of credits student will earn from this class
16190: 
16191: =item $instsec, institutional course section code for student
16192: 
16193: =back
16194: 
16195: 
16196: =item *
16197: 
16198: assigncustomrole($udom,$uname,$url,$rdom,$rnam,$rolename,$end,$start) : assign
16199: custom role; give a custom role to a user for the level given by URL.  Specify
16200: name and domain of role author, and role name
16201: 
16202: =item *
16203: 
16204: revokerole($udom,$uname,$url,$role) : revoke a role for url
16205: 
16206: =item *
16207: 
16208: revokecustomrole($udom,$uname,$url,$role) : revoke a custom role
16209: 
16210: =back
16211: 
16212: =head2 Course Infomation
16213: 
16214: =over 4
16215: 
16216: =item *
16217: 
16218: coursedescription($courseid,$options) : returns a hash of information about the
16219: specified course id, including all environment settings for the
16220: course, the description of the course will be in the hash under the
16221: key 'description'
16222: 
16223: $options is an optional parameter that if supplied is a hash reference that controls
16224: what how this function works.  It has the following key/values:
16225: 
16226: =over 4
16227: 
16228: =item freshen_cache
16229: 
16230: If defined, and the environment cache for the course is valid, it is 
16231: returned in the returned hash.
16232: 
16233: =item one_time
16234: 
16235: If defined, the last cache time is set to _now_
16236: 
16237: =item user
16238: 
16239: If defined, the supplied username is used instead of the current user.
16240: 
16241: 
16242: =back
16243: 
16244: =item *
16245: 
16246: resdata($name,$domain,$type,@which) : request for current parameter
16247: setting for a specific $type, where $type is either 'course' or 'user',
16248: @what should be a list of parameters to ask about. This routine caches
16249: answers for 10 minutes.
16250: 
16251: =item *
16252: 
16253: get_courseresdata($courseid, $domain) : dump the entire course resource
16254: data base, returning a hash that is keyed by the resource name and has
16255: values that are the resource value.  I believe that the timestamps and
16256: versions are also returned.
16257: 
16258: get_numsuppfiles($cnum,$cdom) : retrieve number of files in a course's
16259: supplemental content area. This routine caches the number of files for 
16260: 10 minutes.
16261: 
16262: =back
16263: 
16264: =head2 Course Modification
16265: 
16266: =over 4
16267: 
16268: =item *
16269: 
16270: writecoursepref($courseid,%prefs) : write preferences (environment
16271: database) for a course
16272: 
16273: =item *
16274: 
16275: createcourse($udom,$description,$url,$course_server,$nonstandard,$inst_code,$course_owner,$crstype,$cnum) : make course
16276: 
16277: =item *
16278: 
16279: generate_coursenum($udom,$crstype) : get a unique (unused) course number in domain $udom for course type $crstype (Course or Community).
16280: 
16281: =item *
16282: 
16283: is_course($courseid), is_course($cdom, $cnum)
16284: 
16285: Accepts either a combined $courseid (in the form of domain_courseid) or the
16286: two component version $cdom, $cnum. It checks if the specified course exists.
16287: 
16288: Returns:
16289:     undef if the course doesn't exist, otherwise
16290:     in scalar context the combined courseid.
16291:     in list context the two components of the course identifier, domain and 
16292:     courseid.    
16293: 
16294: =back
16295: 
16296: =head2 Bubblesheet Configuration
16297: 
16298: =over 4
16299: 
16300: =item *
16301: 
16302: get_scantron_config($which)
16303: 
16304: $which - the name of the configuration to parse from the file.
16305: 
16306: Parses and returns the bubblesheet configuration line selected as a
16307: hash of configuration file fields.
16308: 
16309: 
16310: Returns:
16311:     If the named configuration is not in the file, an empty
16312:     hash is returned.
16313: 
16314:     a hash with the fields
16315:       name         - internal name for the this configuration setup
16316:       description  - text to display to operator that describes this config
16317:       CODElocation - if 0 or the string 'none'
16318:                           - no CODE exists for this config
16319:                      if -1 || the string 'letter'
16320:                           - a CODE exists for this config and is
16321:                             a string of letters
16322:                      Unsupported value (but planned for future support)
16323:                           if a positive integer
16324:                                - The CODE exists as the first n items from
16325:                                  the question section of the form
16326:                           if the string 'number'
16327:                                - The CODE exists for this config and is
16328:                                  a string of numbers
16329:       CODEstart   - (only matter if a CODE exists) column in the line where
16330:                      the CODE starts
16331:       CODElength  - length of the CODE
16332:       IDstart     - column where the student/employee ID starts
16333:       IDlength    - length of the student/employee ID info
16334:       Qstart      - column where the information from the bubbled
16335:                     'questions' start
16336:       Qlength     - number of columns comprising a single bubble line from
16337:                     the sheet. (usually either 1 or 10)
16338:       Qon         - either a single character representing the character used
16339:                     to signal a bubble was chosen in the positional setup, or
16340:                     the string 'letter' if the letter of the chosen bubble is
16341:                     in the final, or 'number' if a number representing the
16342:                     chosen bubble is in the file (1->A 0->J)
16343:       Qoff        - the character used to represent that a bubble was
16344:                     left blank
16345:       PaperID     - if the scanning process generates a unique number for each
16346:                     sheet scanned the column that this ID number starts in
16347:       PaperIDlength - number of columns that comprise the unique ID number
16348:                       for the sheet of paper
16349:       FirstName   - column that the first name starts in
16350:       FirstNameLength - number of columns that the first name spans
16351:       LastName    - column that the last name starts in
16352:       LastNameLength - number of columns that the last name spans
16353:       BubblesPerRow - number of bubbles available in each row used to
16354:                       bubble an answer. (If not specified, 10 assumed).
16355: 
16356: 
16357: =item *
16358: 
16359: get_scantronformat_file($cdom)
16360: 
16361: $cdom - the course's domain (optional); if not supplied, uses
16362: domain for current $env{'request.course.id'}.
16363: 
16364: Returns an array containing lines from the scantron format file for
16365: the domain of the course.
16366: 
16367: If a url for a custom.tab file is listed in domain's configuration.db,
16368: lines are from this file.
16369: 
16370: Otherwise, if a default.tab has been published in RES space by the
16371: domainconfig user, lines are from this file.
16372: 
16373: Otherwise, fall back to getting lines from the legacy file on the
16374: local server:  /home/httpd/lonTabs/default_scantronformat.tab
16375: 
16376: =back
16377: 
16378: =head2 Resource Subroutines
16379: 
16380: =over 4
16381: 
16382: =item *
16383: 
16384: subscribe($fname) : subscribe to a resource, returns URL if possible (probably should use repcopy instead)
16385: 
16386: =item *
16387: 
16388: repcopy($filename) : subscribes to the requested file, and attempts to
16389: replicate from the owning library server, Might return
16390: 'unavailable', 'not_found', 'forbidden', 'ok', or
16391: 'bad_request', also attempts to grab the metadata for the
16392: resource. Expects the local filesystem pathname
16393: (/home/httpd/html/res/....)
16394: 
16395: =back
16396: 
16397: =head2 Resource Information
16398: 
16399: =over 4
16400: 
16401: =item *
16402: 
16403: EXT($varname,$symb,$udom,$uname,$usection,$recurse,$cid) : evaluates 
16404: and returns the value of a variety of different possible values,
16405: $varname should be a request string, and the other parameters can be
16406: used to specify who and what one is asking about. Ordinarily, $cid 
16407: does not need to be specified, as it is retrived from 
16408: $env{'request.course.id'}, but &Apache::lonnet::EXT() is called
16409: within lonuserstate::loadmap() when initializing a course, before
16410: $env{'request.course.id'} has been set, so it needs to be provided
16411: in that one case.
16412: 
16413: Possible values for $varname are environment.lastname (or other item
16414: from the envirnment hash), user.name (or someother aspect about the
16415: user), resource.0.maxtries (or some other part and parameter of a
16416: resource)
16417: 
16418: =item *
16419: 
16420: directcondval($number) : get current value of a condition; reads from a state
16421: string
16422: 
16423: =item *
16424: 
16425: condval($condidx) : value of condition index based on state
16426: 
16427: =item *
16428: 
16429: metadata($uri,$what,$toolsymb,$liburi,$prefix,$depthcount) : request a
16430: resource's metadata, $what should be either a specific key, or either
16431: 'keys' (to get a list of possible keys) or 'packages' to get a list of
16432: packages that this resource currently uses, the last 3 arguments are 
16433: only used internally for recursive metadata.
16434: 
16435: the toolsymb is only used where the uri is for an external tool (for which
16436: the uri as well as the symb are guaranteed to be unique).
16437: 
16438: this function automatically caches all requests except any made recursively
16439: to retrieve a list of metadata keys for an imported library file ($liburi is 
16440: defined).
16441: 
16442: =item *
16443: 
16444: metadata_query($query,$custom,$customshow) : make a metadata query against the
16445: network of library servers; returns file handle of where SQL and regex results
16446: will be stored for query
16447: 
16448: =item *
16449: 
16450: symbread($filename,$donotrecurse,$ignorecachednull,$checkforblock,$possibles) : 
16451: return symbolic list entry (all arguments optional). 
16452: 
16453: Args: filename is the filename (including path) for the file for which a symb 
16454: is required; donotrecurse, if true will prevent calls to allowed() being made 
16455: to check access status if more than one resource was found in the bighash 
16456: (see rev. 1.249) to avoid an infinite loop if an ambiguous resource is part of 
16457: a randompick); ignorecachednull, if true will prevent a symb of '' being 
16458: returned if $env{$cache_str} is defined as ''; checkforblock if true will
16459: cause possible symbs to be checked to determine if they are subject to content
16460: blocking, if so they will not be included as possible symbs; possibles is a
16461: ref to a hash, which, as a side effect, will be populated with all possible 
16462: symbs (content blocking not tested).
16463:  
16464: returns the data handle
16465: 
16466: =item *
16467: 
16468: symbverify($symb,$thisfn,$encstate) : verifies that $symb actually exists
16469: and is a possible symb for the URL in $thisfn, and if is an encrypted
16470: resource that the user accessed using /enc/ returns a 1 on success, 0
16471: on failure, user must be in a course, as it assumes the existence of
16472: the course initial hash, and uses $env('request.course.id'}.  The third
16473: arg is an optional reference to a scalar.  If this arg is passed in the 
16474: call to symbverify, it will be set to 1 if the symb has been set to be 
16475: encrypted; otherwise it will be null.  
16476: 
16477: =item *
16478: 
16479: symbclean($symb) : removes versions numbers from a symb, returns the
16480: cleaned symb
16481: 
16482: =item *
16483: 
16484: is_on_map($uri) : checks if the $uri is somewhere on the current
16485: course map, user must be in a course for it to work.
16486: 
16487: =item *
16488: 
16489: numval($salt) : return random seed value (addend for rndseed)
16490: 
16491: =item *
16492: 
16493: rndseed($symb,$courseid,$udom,$uname) : create a random sum; returns
16494: a random seed, all arguments are optional, if they aren't sent it uses the
16495: environment to derive them. Note: if symb isn't sent and it can't get one
16496: from &symbread it will use the current time as its return value
16497: 
16498: =item *
16499: 
16500: ireceipt($funame,$fudom,$fucourseid,$fusymb) : return unique,
16501: unfakeable, receipt
16502: 
16503: =item *
16504: 
16505: receipt() : API to ireceipt working off of env values; given out to users
16506: 
16507: =item *
16508: 
16509: countacc($url) : count the number of accesses to a given URL
16510: 
16511: =item *
16512: 
16513: 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
16514: 
16515: =item *
16516: 
16517: 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)
16518: 
16519: =item *
16520: 
16521: expirespread($uname,$udom,$stype,$usymb) : set expire date for spreadsheet
16522: 
16523: =item *
16524: 
16525: devalidate($symb) : devalidate temporary spreadsheet calculations,
16526: forcing spreadsheet to reevaluate the resource scores next time.
16527: 
16528: =item * 
16529: 
16530: can_edit_resource($file,$cnum,$cdom,$resurl,$symb,$group) : determine if current user can edit a particular resource,
16531: when viewing in course context.
16532: 
16533:  input: six args -- filename (decluttered), course number, course domain,
16534:                     url, symb (if registered) and group (if this is a 
16535:                     group item -- e.g., bulletin board, group page etc.).
16536: 
16537:  output: array of five scalars --
16538:          $cfile -- url for file editing if editable on current server
16539:          $home -- homeserver of resource (i.e., for author if published,
16540:                                           or course if uploaded.).
16541:          $switchserver --  1 if server switch will be needed.
16542:          $forceedit -- 1 if icon/link should be to go to edit mode 
16543:          $forceview -- 1 if icon/link should be to go to view mode
16544: 
16545: =item *
16546: 
16547: is_course_upload($file,$cnum,$cdom)
16548: 
16549: Used in course context to determine if current file was uploaded to 
16550: the course (i.e., would be found in /userfiles/docs on the course's 
16551: homeserver.
16552: 
16553:   input: 3 args -- filename (decluttered), course number and course domain.
16554:   output: boolean -- 1 if file was uploaded.
16555: 
16556: =back
16557: 
16558: =head2 Storing/Retreiving Data
16559: 
16560: =over 4
16561: 
16562: =item *
16563: 
16564: store($storehash,$symb,$namespace,$udom,$uname,$laststore) : stores hash
16565: permanently for this url; hashref needs to be given and should be a \%hashname;
16566: the remaining args aren't required and if they aren't passed or are '' they will
16567: be derived from the env (with the exception of $laststore, which is an 
16568: optional arg used when a user's submission is stored in grading).
16569: $laststore is $version=$timestamp, where $version is the most recent version
16570: number retrieved for the corresponding $symb in the $namespace db file, and
16571: $timestamp is the timestamp for that transaction (UNIX time).
16572: $laststore is currently only passed when cstore() is called by 
16573: structuretags::finalize_storage().
16574: 
16575: =item *
16576: 
16577: cstore($storehash,$symb,$namespace,$udom,$uname,$laststore) : same as store
16578: but uses critical subroutine
16579: 
16580: =item *
16581: 
16582: restore($symb,$namespace,$udom,$uname) : returns hash for this symb;
16583: all args are optional
16584: 
16585: =item *
16586: 
16587: dumpstore($namespace,$udom,$uname,$regexp,$range) : 
16588: dumps the complete (or key matching regexp) namespace into a hash
16589: ($udom, $uname, $regexp, $range are optional) for a namespace that is
16590: normally &store()ed into
16591: 
16592: $range should be either an integer '100' (give me the first 100
16593:                                            matching records)
16594:               or be  two integers sperated by a - with no spaces
16595:                  '30-50' (give me the 30th through the 50th matching
16596:                           records)
16597: 
16598: 
16599: =item *
16600: 
16601: putstore($namespace,$symb,$version,$storehash,$udomain,$uname,$tolog) :
16602: replaces a &store() version of data with a replacement set of data
16603: for a particular resource in a namespace passed in the $storehash hash 
16604: reference. If $tolog is true, the transaction is logged in the courselog
16605: with an action=PUTSTORE.
16606: 
16607: =item *
16608: 
16609: tmpstore($storehash,$symb,$namespace,$udom,$uname) : storage that
16610: works very similar to store/cstore, but all data is stored in a
16611: temporary location and can be reset using tmpreset, $storehash should
16612: be a hash reference, returns nothing on success
16613: 
16614: =item *
16615: 
16616: tmprestore($symb,$namespace,$udom,$uname) : storage that works very
16617: similar to restore, but all data is stored in a temporary location and
16618: can be reset using tmpreset. Returns a hash of values on success,
16619: error string otherwise.
16620: 
16621: =item *
16622: 
16623: tmpreset($symb,$namespace,$udom,$uname) : temporary storage reset,
16624: deltes all keys for $symb form the temporary storage hash.
16625: 
16626: =item *
16627: 
16628: get($namespace,$storearr,$udom,$uname) : returns hash with keys from array
16629: reference filled in from namesp ($udom and $uname are optional)
16630: 
16631: =item *
16632: 
16633: del($namespace,$storearr,$udom,$uname) : deletes keys out of array from
16634: namesp ($udom and $uname are optional)
16635: 
16636: =item *
16637: 
16638: dump($namespace,$udom,$uname,$regexp,$range) : 
16639: dumps the complete (or key matching regexp) namespace into a hash
16640: ($udom, $uname, $regexp, $range are optional)
16641: 
16642: $range should be either an integer '100' (give me the first 100
16643:                                            matching records)
16644:               or be  two integers sperated by a - with no spaces
16645:                  '30-50' (give me the 30th through the 50th matching
16646:                           records)
16647: =item *
16648: 
16649: inc($namespace,$store,$udom,$uname) : increments $store in $namespace.
16650: $store can be a scalar, an array reference, or if the amount to be 
16651: incremented is > 1, a hash reference.
16652: 
16653: ($udom and $uname are optional)
16654: 
16655: =item *
16656: 
16657: put($namespace,$storehash,$udom,$uname) : stores hash in namesp
16658: ($udom and $uname are optional)
16659: 
16660: =item *
16661: 
16662: cput($namespace,$storehash,$udom,$uname) : critical put
16663: ($udom and $uname are optional)
16664: 
16665: =item *
16666: 
16667: newput($namespace,$storehash,$udom,$uname) :
16668: 
16669: Attempts to store the items in the $storehash, but only if they don't
16670: currently exist, if this succeeds you can be certain that you have 
16671: successfully created a new key value pair in the $namespace db.
16672: 
16673: 
16674: Args:
16675:  $namespace: name of database to store values to
16676:  $storehash: hashref to store to the db
16677:  $udom: (optional) domain of user containing the db
16678:  $uname: (optional) name of user caontaining the db
16679: 
16680: Returns:
16681:  'ok' -> succeeded in storing all keys of $storehash
16682:  'key_exists: <key>' -> failed to anything out of $storehash, as at
16683:                         least <key> already existed in the db (other
16684:                         requested keys may also already exist)
16685:  'error: <msg>' -> unable to tie the DB or other error occurred
16686:  'con_lost' -> unable to contact request server
16687:  'refused' -> action was not allowed by remote machine
16688: 
16689: 
16690: =item *
16691: 
16692: eget($namespace,$storearr,$udom,$uname) : returns hash with keys from array
16693: reference filled in from namesp (encrypts the return communication)
16694: ($udom and $uname are optional)
16695: 
16696: =item *
16697: 
16698: log($udom,$name,$home,$message) : write to permanent log for user; use
16699: critical subroutine
16700: 
16701: =item *
16702: 
16703: get_dom($namespace,$storearr,$udom,$uhome) : returns hash with keys from
16704: array reference filled in from namespace found in domain level on either
16705: specified domain server ($uhome) or primary domain server ($udom and $uhome are optional).
16706: 
16707: =item *
16708: 
16709: put_dom($namespace,$storehash,$udom,$uhome) :  stores hash in namespace at 
16710: domain level either on specified domain server ($uhome) or primary domain 
16711: server ($udom and $uhome are optional)
16712: 
16713: =item * 
16714: 
16715: get_domain_defaults($target_domain,$ignore_cache) : returns hash with defaults 
16716: for: authentication, language, quotas, timezone, date locale, and portal URL in
16717: the target domain.
16718: 
16719: May also include additional key => value pairs for the following groups:
16720: 
16721: =over
16722: 
16723: =item
16724: disk quotas (MB allocated by default to portfolios and authoring spaces).
16725: 
16726: =over
16727: 
16728: =item defaultquota, authorquota
16729: 
16730: =back
16731: 
16732: =item
16733: tools (availability of aboutme page, blog, webDAV access for authoring spaces,
16734: portfolio for users).
16735: 
16736: =over
16737: 
16738: =item
16739: aboutme, blog, webdav, portfolio
16740: 
16741: =back
16742: 
16743: =item
16744: requestcourses: ability to request courses, and how requests are processed.
16745: 
16746: =over
16747: 
16748: =item
16749: official, unofficial, community, textbook, placement
16750: 
16751: =back
16752: 
16753: =item
16754: inststatus: types of institutional affiliation, and order in which they are displayed.
16755: 
16756: =over
16757: 
16758: =item
16759: inststatustypes, inststatusorder, inststatusguest
16760: 
16761: =back
16762: 
16763: =item
16764: coursedefaults: can PDF forms can be created, default credits for courses, default quotas (MB)
16765: for course's uploaded content.
16766: 
16767: =over
16768: 
16769: =item
16770: canuse_pdfforms, officialcredits, unofficialcredits, textbookcredits, officialquota, unofficialquota, 
16771: communityquota, textbookquota, placementquota
16772: 
16773: =back
16774: 
16775: =item
16776: usersessions: set options for hosting of your users in other domains, and hosting of users from other domains
16777: on your servers.
16778: 
16779: =over
16780: 
16781: =item 
16782: remotesessions, hostedsessions
16783: 
16784: =back
16785: 
16786: =back
16787: 
16788: In cases where a domain coordinator has never used the "Set Domain Configuration"
16789: utility to create a configuration.db file on a domain's primary library server 
16790: only the following domain defaults: auth_def, auth_arg_def, lang_def
16791: -- corresponding values are authentication type (internal, krb4, krb5,
16792: or localauth), initial password or a kerberos realm, language (e.g., en-us) -- 
16793: will be available. Values are retrieved from cache (if current), unless the
16794: optional $ignore_cache arg is true, or from domain's configuration.db (if available),
16795: or lastly from values in lonTabs/dns_domain,tab, or lonTabs/domain.tab.
16796: 
16797: Typical usage:
16798: 
16799: %domdefaults = &get_domain_defaults($target_domain);
16800: 
16801: =back
16802: 
16803: =head2 Network Status Functions
16804: 
16805: =over 4
16806: 
16807: =item *
16808: 
16809: dirlist() : return directory list based on URI (first arg).
16810: 
16811: Inputs: 1 required, 5 optional.
16812: 
16813: =over
16814: 
16815: =item 
16816: $uri - path to file in filesystem (starts: /res or /userfiles/). Required.
16817: 
16818: =item
16819: $userdomain - domain of user/course to be listed. Extracted from $uri if absent. 
16820: 
16821: =item
16822: $username -  username of user/course to be listed. Extracted from $uri if absent. 
16823: 
16824: =item
16825: $getpropath - boolean: 1 if prepend path using &propath(). 
16826: 
16827: =item
16828: $getuserdir - boolean: 1 if prepend path for "userfiles".
16829: 
16830: =item 
16831: $alternateRoot - path to prepend in place of path from $uri.
16832: 
16833: =back
16834: 
16835: Returns: Array of up to two items.
16836: 
16837: =over
16838: 
16839: a reference to an array of files/subdirectories
16840: 
16841: =over
16842: 
16843: Each element in the array of files/subdirectories is a & separated list of
16844: item name and the result of running stat on the item.  If dirlist was requested
16845: for a file instead of a directory, the item name will be ''. For a directory 
16846: listing, if the item is a metadata file, the element will end &N&M 
16847: (where N amd M are either 0 or 1, corresponding to obsolete set (1), or
16848: default copyright set (1).  
16849: 
16850: =back
16851: 
16852: a scalar containing error condition (if encountered).
16853: 
16854: =over
16855: 
16856: =item 
16857: no_host (no homeserver identified for $username:$domain).
16858: 
16859: =item 
16860: no_such_host (server contacted for listing not identified as valid host).
16861: 
16862: =item 
16863: con_lost (connection to remote server failed).
16864: 
16865: =item 
16866: refused (invalid $username:$domain received on lond side).
16867: 
16868: =item 
16869: no_such_dir (directory at specified path on lond side does not exist). 
16870: 
16871: =item 
16872: empty (directory at specified path on lond side is empty).
16873: 
16874: =over
16875: 
16876: This is currently not encountered because the &ls3, &ls2, 
16877: &ls (_handler) routines on the lond side do not filter out
16878: . and .. from a directory listing. 
16879: 
16880: =back
16881: 
16882: =back
16883: 
16884: =back
16885: 
16886: =item *
16887: 
16888: spareserver() : find server with least workload from spare.tab
16889: 
16890: 
16891: =item *
16892: 
16893: host_from_dns($dns) : Returns the loncapa hostname corresponding to a DNS name or undef
16894: if there is no corresponding loncapa host.
16895: 
16896: =back
16897: 
16898: 
16899: =head2 Apache Request
16900: 
16901: =over 4
16902: 
16903: =item *
16904: 
16905: ssi($url,%hash) : server side include, does a complete request cycle on url to
16906: localhost, posts hash
16907: 
16908: =back
16909: 
16910: =head2 Data to String to Data
16911: 
16912: =over 4
16913: 
16914: =item *
16915: 
16916: hash2str(%hash) : convert a hash into a string complete with escaping and '='
16917: and '&' separators, supports elements that are arrayrefs and hashrefs
16918: 
16919: =item *
16920: 
16921: hashref2str($hashref) : convert a hashref into a string complete with
16922: escaping and '=' and '&' separators, supports elements that are
16923: arrayrefs and hashrefs
16924: 
16925: =item *
16926: 
16927: arrayref2str($arrayref) : convert an arrayref into a string complete
16928: with escaping and '&' separators, supports elements that are arrayrefs
16929: and hashrefs
16930: 
16931: =item *
16932: 
16933: str2hash($string) : convert string to hash using unescaping and
16934: splitting on '=' and '&', supports elements that are arrayrefs and
16935: hashrefs
16936: 
16937: =item *
16938: 
16939: str2array($string) : convert string to hash using unescaping and
16940: splitting on '&', supports elements that are arrayrefs and hashrefs
16941: 
16942: =back
16943: 
16944: =head2 Logging Routines
16945: 
16946: 
16947: These routines allow one to make log messages in the lonnet.log and
16948: lonnet.perm logfiles.
16949: 
16950: =over 4
16951: 
16952: =item *
16953: 
16954: logtouch() : make sure the logfile, lonnet.log, exists
16955: 
16956: =item *
16957: 
16958: logthis() : append message to the normal lonnet.log file, it gets
16959: preiodically rolled over and deleted.
16960: 
16961: =item *
16962: 
16963: logperm() : append a permanent message to lonnet.perm.log, this log
16964: file never gets deleted by any automated portion of the system, only
16965: messages of critical importance should go in here.
16966: 
16967: 
16968: =back
16969: 
16970: =head2 General File Helper Routines
16971: 
16972: =over 4
16973: 
16974: =item *
16975: 
16976: getfile($file,$caller) : two cases - requests for files in /res or in /uploaded.
16977: (a) files in /uploaded
16978:   (i) If a local copy of the file exists - 
16979:       compares modification date of local copy with last-modified date for 
16980:       definitive version stored on home server for course. If local copy is 
16981:       stale, requests a new version from the home server and stores it. 
16982:       If the original has been removed from the home server, then local copy 
16983:       is unlinked.
16984:   (ii) If local copy does not exist -
16985:       requests the file from the home server and stores it. 
16986:   
16987:   If $caller is 'uploadrep':  
16988:     This indicates a call from lonuploadrep.pm (PerlHeaderParserHandler phase)
16989:     for request for files originally uploaded via DOCS. 
16990:      - returns 'ok' if fresh local copy now available, -1 otherwise.
16991:   
16992:   Otherwise:
16993:      This indicates a call from the content generation phase of the request.
16994:      -  returns the entire contents of the file or -1.
16995:      
16996: (b) files in /res
16997:    - returns the entire contents of a file or -1; 
16998:    it properly subscribes to and replicates the file if neccessary.
16999: 
17000: 
17001: =item *
17002: 
17003: stat_file($url) : $url is expected to be a /res/ or /uploaded/ style file
17004:                   reference
17005: 
17006: returns either a stat() list of data about the file or an empty list
17007: if the file doesn't exist or couldn't find out about it (connection
17008: problems or user unknown)
17009: 
17010: =item *
17011: 
17012: filelocation($dir,$file) : returns file system location of a file
17013: based on URI; meant to be "fairly clean" absolute reference, $dir is a
17014: directory that relative $file lookups are to looked in ($dir of /a/dir
17015: and a file of ../bob will become /a/bob)
17016: 
17017: =item *
17018: 
17019: hreflocation($dir,$file) : returns file system location or a URL; same as
17020: filelocation except for hrefs
17021: 
17022: =item *
17023: 
17024: declutter() : declutters URLs -- remove beginning slashes, 'res' etc.
17025: also removes beginning /home/httpd/html unless /priv/ follows it.
17026: 
17027: =back
17028: 
17029: =head2 Usererfile file routines (/uploaded*)
17030: 
17031: =over 4
17032: 
17033: =item *
17034: 
17035: userfileupload(): main rotine for putting a file in a user or course's
17036:                   filespace, arguments are,
17037: 
17038:  formname - required - this is the name of the element in $env where the
17039:            filename, and the contents of the file to create/modifed exist
17040:            the filename is in $env{'form.'.$formname.'.filename'} and the
17041:            contents of the file is located in $env{'form.'.$formname}
17042:  context - if coursedoc, store the file in the course of the active role
17043:              of the current user; 
17044:            if 'existingfile': store in 'overwrites' in /home/httpd/perl/tmp
17045:            if 'canceloverwrite': delete file in tmp/overwrites directory
17046:  subdir - required - subdirectory to put the file in under ../userfiles/
17047:          if undefined, it will be placed in "unknown"
17048: 
17049:  (This routine calls clean_filename() to remove any dangerous
17050:  characters from the filename, and then calls finuserfileupload() to
17051:  complete the transaction)
17052: 
17053:  returns either the url of the uploaded file (/uploaded/....) if successful
17054:  and /adm/notfound.html if unsuccessful
17055: 
17056: =item *
17057: 
17058: clean_filename(): routine for cleaing a filename up for storage in
17059:                  userfile space, argument is:
17060: 
17061:  filename - proposed filename
17062: 
17063: returns: the new clean filename
17064: 
17065: =item *
17066: 
17067: finishuserfileupload(): routine that creates and sends the file to
17068: userspace, probably shouldn't be called directly
17069: 
17070:   docuname: username or courseid of destination for the file
17071:   docudom: domain of user/course of destination for the file
17072:   formname: same as for userfileupload()
17073:   fname: filename (including subdirectories) for the file
17074:   parser: if 'parse', will parse (html) file to extract references to objects, links etc.
17075:           if hashref, and context is scantron, will convert csv format to standard format
17076:   allfiles: reference to hash used to store objects found by parser
17077:   codebase: reference to hash used for codebases of java objects found by parser
17078:   thumbwidth: width (pixels) of thumbnail to be created for uploaded image
17079:   thumbheight: height (pixels) of thumbnail to be created for uploaded image
17080:   resizewidth: width to be used to resize image using resizeImage from ImageMagick
17081:   resizeheight: height to be used to resize image using resizeImage from ImageMagick
17082:   context: if 'overwrite', will move the uploaded file from its temporary location to
17083:             userfiles to facilitate overwriting a previously uploaded file with same name.
17084:   mimetype: reference to scalar to accommodate mime type determined
17085:             from File::MMagic if $parser = parse.
17086: 
17087:  returns either the url of the uploaded file (/uploaded/....) if successful
17088:  and /adm/notfound.html if unsuccessful (or an error message if context 
17089:  was 'overwrite').
17090:  
17091: 
17092: =item *
17093: 
17094: renameuserfile(): renames an existing userfile to a new name
17095: 
17096:   Args:
17097:    docuname: username or courseid of destination for the file
17098:    docudom: domain of user/course of destination for the file
17099:    old: current file name (including any subdirs under userfiles)
17100:    new: desired file name (including any subdirs under userfiles)
17101: 
17102: =item *
17103: 
17104: mkdiruserfile(): creates a directory is a userfiles dir
17105: 
17106:   Args:
17107:    docuname: username or courseid of destination for the file
17108:    docudom: domain of user/course of destination for the file
17109:    dir: dir to create (including any subdirs under userfiles)
17110: 
17111: =item *
17112: 
17113: removeuserfile(): removes a file that exists in userfiles
17114: 
17115:   Args:
17116:    docuname: username or courseid of destination for the file
17117:    docudom: domain of user/course of destination for the file
17118:    fname: filname to delete (including any subdirs under userfiles)
17119: 
17120: =item *
17121: 
17122: removeuploadedurl(): convience function for removeuserfile()
17123: 
17124:   Args:
17125:    url:  a full /uploaded/... url to delete
17126: 
17127: =item * 
17128: 
17129: get_portfile_permissions():
17130:   Args:
17131:     domain: domain of user or course contain the portfolio files
17132:     user: name of user or num of course contain the portfolio files
17133:   Returns:
17134:     hashref of a dump of the proper file_permissions.db
17135:    
17136: 
17137: =item * 
17138: 
17139: get_access_controls():
17140: 
17141: Args:
17142:   current_permissions: the hash ref returned from get_portfile_permissions()
17143:   group: (optional) the group you want the files associated with
17144:   file: (optional) the file you want access info on
17145: 
17146: Returns:
17147:     a hash (keys are file names) of hashes containing
17148:         keys are: path to file/file_name\0uniqueID:scope_end_start (see below)
17149:         values are XML containing access control settings (see below) 
17150: 
17151: Internal notes:
17152: 
17153:  access controls are stored in file_permissions.db as key=value pairs.
17154:     key -> path to file/file_name\0uniqueID:scope_end_start
17155:         where scope -> public,guest,course,group,domains or users.
17156:               end -> UNIX time for end of access (0 -> no end date)
17157:               start -> UNIX time for start of access
17158: 
17159:     value -> XML description of access control
17160:            <scope type=""> (type =1 of: public,guest,course,group,domains,users">
17161:             <start></start>
17162:             <end></end>
17163: 
17164:             <password></password>  for scope type = guest
17165: 
17166:             <domain></domain>     for scope type = course or group
17167:             <number></number>
17168:             <roles id="">
17169:              <role></role>
17170:              <access></access>
17171:              <section></section>
17172:              <group></group>
17173:             </roles>
17174: 
17175:             <dom></dom>         for scope type = domains
17176: 
17177:             <users>             for scope type = users
17178:              <user>
17179:               <uname></uname>
17180:               <udom></udom>
17181:              </user>
17182:             </users>
17183:            </scope> 
17184:               
17185:  Access data is also aggregated for each file in an additional key=value pair:
17186:  key -> path to file/file_name\0accesscontrol 
17187:  value -> reference to hash
17188:           hash contains key = value pairs
17189:           where key = uniqueID:scope_end_start
17190:                 value = UNIX time record was last updated
17191: 
17192:           Used to improve speed of look-ups of access controls for each file.  
17193:  
17194:  Locks on files (resulting from submission of portfolio file to a homework problem stored in array of arrays.
17195: 
17196: =item *
17197: 
17198: modify_access_controls():
17199: 
17200: Modifies access controls for a portfolio file
17201: Args
17202: 1. file name
17203: 2. reference to hash of required changes,
17204: 3. domain
17205: 4. username
17206:   where domain,username are the domain of the portfolio owner 
17207:   (either a user or a course) 
17208: 
17209: Returns:
17210: 1. result of additions or updates ('ok' or 'error', with error message). 
17211: 2. result of deletions ('ok' or 'error', with error message).
17212: 3. reference to hash of any new or updated access controls.
17213: 4. reference to hash used to map incoming IDs to uniqueIDs assigned to control.
17214:    key = integer (inbound ID)
17215:    value = uniqueID
17216: 
17217: =item *
17218: 
17219: get_timebased_id():
17220: 
17221: Attempts to get a unique timestamp-based suffix for use with items added to a 
17222: course via the Course Editor (e.g., folders, composite pages, 
17223: group bulletin boards).
17224: 
17225: Args: (first three required; six others optional)
17226: 
17227: 1. prefix (alphanumeric): of keys in hash, e.g., suppsequence, docspage,
17228:    docssequence, or name of group
17229: 
17230: 2. keyid (alphanumeric): name of temporary locking key in hash,
17231:    e.g., num, boardids
17232: 
17233: 3. namespace: name of gdbm file used to store suffixes already assigned;  
17234:    file will be named nohist_namespace.db
17235: 
17236: 4. cdom: domain of course; default is current course domain from %env
17237: 
17238: 5. cnum: course number; default is current course number from %env
17239: 
17240: 6. idtype: set to concat if an additional digit is to be appended to the 
17241:    unix timestamp to form the suffix, if the plain timestamp is already
17242:    in use.  Default is to not do this, but simply increment the unix 
17243:    timestamp by 1 until a unique key is obtained.
17244: 
17245: 7. who: holder of locking key; defaults to user:domain for user.
17246: 
17247: 8. locktries: number of attempts to obtain a lock (sleep of 1s before 
17248:    retrying); default is 3.
17249: 
17250: 9. maxtries: number of attempts to obtain a unique suffix; default is 20.  
17251: 
17252: Returns:
17253: 
17254: 1. suffix obtained (numeric)
17255: 
17256: 2. result of deleting locking key (ok if deleted, or lock never obtained)
17257: 
17258: 3. error: contains (localized) error message if an error occurred.
17259: 
17260: 
17261: =back
17262: 
17263: =head2 HTTP Helper Routines
17264: 
17265: =over 4
17266: 
17267: =item *
17268: 
17269: escape() : unpack non-word characters into CGI-compatible hex codes
17270: 
17271: =item *
17272: 
17273: unescape() : pack CGI-compatible hex codes into actual non-word ASCII character
17274: 
17275: =back
17276: 
17277: =head1 PRIVATE SUBROUTINES
17278: 
17279: =head2 Underlying communication routines (Shouldn't call)
17280: 
17281: =over 4
17282: 
17283: =item *
17284: 
17285: subreply() : tries to pass a message to lonc, returns con_lost if incapable
17286: 
17287: =item *
17288: 
17289: reply() : uses subreply to send a message to remote machine, logs all failures
17290: 
17291: =item *
17292: 
17293: critical() : passes a critical message to another server; if cannot
17294: get through then place message in connection buffer directory and
17295: returns con_delayed, if incapable of saving message, returns
17296: con_failed
17297: 
17298: =item *
17299: 
17300: reconlonc() : tries to reconnect lonc client processes.
17301: 
17302: =back
17303: 
17304: =head2 Resource Access Logging
17305: 
17306: =over 4
17307: 
17308: =item *
17309: 
17310: flushcourselogs() : flush (save) buffer logs and access logs
17311: 
17312: =item *
17313: 
17314: courselog($what) : save message for course in hash
17315: 
17316: =item *
17317: 
17318: courseacclog($what) : save message for course using &courselog().  Perform
17319: special processing for specific resource types (problems, exams, quizzes, etc).
17320: 
17321: =item *
17322: 
17323: goodbye() : flush course logs and log shutting down; it is called in srm.conf
17324: as a PerlChildExitHandler
17325: 
17326: =back
17327: 
17328: =head2 Other
17329: 
17330: =over 4
17331: 
17332: =item *
17333: 
17334: symblist($mapname,%newhash) : update symbolic storage links
17335: 
17336: =back
17337: 
17338: =cut
17339: 

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