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

1.1       albertel    1: # The LearningOnline Network
                      2: # TCP networking package
1.12      www         3: #
1.808   ! albertel    4: # $Id: lonnet.pm,v 1.807 2006/11/22 19:59:42 albertel Exp $
1.178     www         5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.169     harris41   28: ###
                     29: 
1.1       albertel   30: package Apache::lonnet;
                     31: 
                     32: use strict;
1.8       www        33: use LWP::UserAgent();
1.15      www        34: use HTTP::Headers;
1.486     www        35: use HTTP::Date;
                     36: # use Date::Parse;
1.11      www        37: use vars 
1.599     albertel   38: qw(%perlvar %hostname %badServerCache %iphost %spareid %hostdom 
                     39:    %libserv %pr %prp $memcache %packagetab 
1.662     raeburn    40:    %courselogs %accesshash %userrolehash %domainrolehash $processmarker $dumpcount 
1.741     raeburn    41:    %coursedombuf %coursenumbuf %coursehombuf %coursedescrbuf %courseinstcodebuf %courseownerbuf %coursetypebuf
1.599     albertel   42:    %domaindescription %domain_auth_def %domain_auth_arg_def 
1.685     raeburn    43:    %domain_lang_def %domain_city %domain_longi %domain_lati %domain_primary
                     44:    $tmpdir $_64bit %env);
1.403     www        45: 
1.1       albertel   46: use IO::Socket;
1.31      www        47: use GDBM_File;
1.208     albertel   48: use HTML::LCParser;
1.637     raeburn    49: use HTML::Parser;
1.88      www        50: use Fcntl qw(:flock);
1.557     albertel   51: use Storable qw(lock_store lock_nstore lock_retrieve freeze thaw nfreeze);
1.539     albertel   52: use Time::HiRes qw( gettimeofday tv_interval );
1.599     albertel   53: use Cache::Memcached;
1.676     albertel   54: use Digest::MD5;
1.790     albertel   55: use Math::Random;
1.740     www        56: use lib '/home/httpd/lib/perl';
1.807     albertel   57: use LONCAPA qw(:DEFAULT :match);
1.740     www        58: use LONCAPA::Configuration;
1.676     albertel   59: 
1.195     www        60: my $readit;
1.550     foxr       61: my $max_connection_retries = 10;     # Or some such value.
1.1       albertel   62: 
1.619     albertel   63: require Exporter;
                     64: 
                     65: our @ISA = qw (Exporter);
                     66: our @EXPORT = qw(%env);
                     67: 
1.449     matthew    68: =pod
                     69: 
                     70: =head1 Package Variables
                     71: 
                     72: These are largely undocumented, so if you decipher one please note it here.
                     73: 
                     74: =over 4
                     75: 
                     76: =item $processmarker
                     77: 
                     78: Contains the time this process was started and this servers host id.
                     79: 
                     80: =item $dumpcount
                     81: 
                     82: Counts the number of times a message log flush has been attempted (regardless
                     83: of success) by this process.  Used as part of the filename when messages are
                     84: delayed.
                     85: 
                     86: =back
                     87: 
                     88: =cut
                     89: 
                     90: 
1.1       albertel   91: # --------------------------------------------------------------------- Logging
1.729     www        92: {
                     93:     my $logid;
                     94:     sub instructor_log {
                     95: 	my ($hash_name,$storehash,$delflag,$uname,$udom)=@_;
                     96: 	$logid++;
                     97: 	my $id=time().'00000'.$$.'00000'.$logid;
                     98: 	return &Apache::lonnet::put('nohist_'.$hash_name,
1.730     www        99: 				    { $id => {
                    100: 					'exe_uname' => $env{'user.name'},
                    101: 					'exe_udom'  => $env{'user.domain'},
                    102: 					'exe_time'  => time(),
                    103: 					'exe_ip'    => $ENV{'REMOTE_ADDR'},
                    104: 					'delflag'   => $delflag,
                    105: 					'logentry'  => $storehash,
                    106: 					'uname'     => $uname,
                    107: 					'udom'      => $udom,
                    108: 				    }
                    109: 				  },
1.729     www       110: 				    $env{'course.'.$env{'request.course.id'}.'.domain'},
                    111: 				    $env{'course.'.$env{'request.course.id'}.'.num'}
                    112: 				    );
                    113:     }
                    114: }
1.1       albertel  115: 
1.163     harris41  116: sub logtouch {
                    117:     my $execdir=$perlvar{'lonDaemons'};
1.448     albertel  118:     unless (-e "$execdir/logs/lonnet.log") {	
                    119: 	open(my $fh,">>$execdir/logs/lonnet.log");
1.163     harris41  120: 	close $fh;
                    121:     }
                    122:     my ($wwwuid,$wwwgid)=(getpwnam('www'))[2,3];
                    123:     chown($wwwuid,$wwwgid,$execdir.'/logs/lonnet.log');
                    124: }
                    125: 
1.1       albertel  126: sub logthis {
                    127:     my $message=shift;
                    128:     my $execdir=$perlvar{'lonDaemons'};
                    129:     my $now=time;
                    130:     my $local=localtime($now);
1.448     albertel  131:     if (open(my $fh,">>$execdir/logs/lonnet.log")) {
                    132: 	print $fh "$local ($$): $message\n";
                    133: 	close($fh);
                    134:     }
1.1       albertel  135:     return 1;
                    136: }
                    137: 
                    138: sub logperm {
                    139:     my $message=shift;
                    140:     my $execdir=$perlvar{'lonDaemons'};
                    141:     my $now=time;
                    142:     my $local=localtime($now);
1.448     albertel  143:     if (open(my $fh,">>$execdir/logs/lonnet.perm.log")) {
                    144: 	print $fh "$now:$message:$local\n";
                    145: 	close($fh);
                    146:     }
1.1       albertel  147:     return 1;
                    148: }
                    149: 
                    150: # -------------------------------------------------- Non-critical communication
                    151: sub subreply {
                    152:     my ($cmd,$server)=@_;
1.704     albertel  153:     my $peerfile="$perlvar{'lonSockDir'}/".$hostname{$server};
1.549     foxr      154:     #
                    155:     #  With loncnew process trimming, there's a timing hole between lonc server
                    156:     #  process exit and the master server picking up the listen on the AF_UNIX
                    157:     #  socket.  In that time interval, a lock file will exist:
                    158: 
                    159:     my $lockfile=$peerfile.".lock";
                    160:     while (-e $lockfile) {	# Need to wait for the lockfile to disappear.
                    161: 	sleep(1);
                    162:     }
                    163:     # At this point, either a loncnew parent is listening or an old lonc
1.550     foxr      164:     # or loncnew child is listening so we can connect or everything's dead.
1.549     foxr      165:     #
1.550     foxr      166:     #   We'll give the connection a few tries before abandoning it.  If
                    167:     #   connection is not possible, we'll con_lost back to the client.
                    168:     #   
                    169:     my $client;
                    170:     for (my $retries = 0; $retries < $max_connection_retries; $retries++) {
                    171: 	$client=IO::Socket::UNIX->new(Peer    =>"$peerfile",
                    172: 				      Type    => SOCK_STREAM,
                    173: 				      Timeout => 10);
                    174: 	if($client) {
                    175: 	    last;		# Connected!
                    176: 	}
                    177: 	sleep(1);		# Try again later if failed connection.
                    178:     }
                    179:     my $answer;
                    180:     if ($client) {
1.704     albertel  181: 	print $client "sethost:$server:$cmd\n";
1.550     foxr      182: 	$answer=<$client>;
                    183: 	if (!$answer) { $answer="con_lost"; }
                    184: 	chomp($answer);
                    185:     } else {
                    186: 	$answer = 'con_lost';	# Failed connection.
                    187:     }
1.1       albertel  188:     return $answer;
                    189: }
                    190: 
                    191: sub reply {
                    192:     my ($cmd,$server)=@_;
1.205     www       193:     unless (defined($hostname{$server})) { return 'no_such_host'; }
1.1       albertel  194:     my $answer=subreply($cmd,$server);
1.65      www       195:     if (($answer=~/^refused/) || ($answer=~/^rejected/)) {
1.672     albertel  196:        &logthis("<font color=\"blue\">WARNING:".
1.12      www       197:                 " $cmd to $server returned $answer</font>");
                    198:     }
1.1       albertel  199:     return $answer;
                    200: }
                    201: 
                    202: # ----------------------------------------------------------- Send USR1 to lonc
                    203: 
                    204: sub reconlonc {
                    205:     my $peerfile=shift;
                    206:     &logthis("Trying to reconnect for $peerfile");
                    207:     my $loncfile="$perlvar{'lonDaemons'}/logs/lonc.pid";
1.448     albertel  208:     if (open(my $fh,"<$loncfile")) {
1.1       albertel  209: 	my $loncpid=<$fh>;
                    210:         chomp($loncpid);
                    211:         if (kill 0 => $loncpid) {
                    212: 	    &logthis("lonc at pid $loncpid responding, sending USR1");
                    213:             kill USR1 => $loncpid;
                    214:             sleep 1;
                    215:             if (-e "$peerfile") { return; }
                    216:             &logthis("$peerfile still not there, give it another try");
                    217:             sleep 5;
                    218:             if (-e "$peerfile") { return; }
1.12      www       219:             &logthis(
1.672     albertel  220:   "<font color=\"blue\">WARNING: $peerfile still not there, giving up</font>");
1.1       albertel  221:         } else {
1.12      www       222: 	    &logthis(
1.672     albertel  223:                "<font color=\"blue\">WARNING:".
1.12      www       224:                " lonc at pid $loncpid not responding, giving up</font>");
1.1       albertel  225:         }
                    226:     } else {
1.672     albertel  227:      &logthis('<font color="blue">WARNING: lonc not running, giving up</font>');
1.1       albertel  228:     }
                    229: }
                    230: 
                    231: # ------------------------------------------------------ Critical communication
1.12      www       232: 
1.1       albertel  233: sub critical {
                    234:     my ($cmd,$server)=@_;
1.89      www       235:     unless ($hostname{$server}) {
1.672     albertel  236:         &logthis("<font color=\"blue\">WARNING:".
1.89      www       237:                " Critical message to unknown server ($server)</font>");
                    238:         return 'no_such_host';
                    239:     }
1.1       albertel  240:     my $answer=reply($cmd,$server);
                    241:     if ($answer eq 'con_lost') {
                    242: 	&reconlonc("$perlvar{'lonSockDir'}/$server");
1.589     albertel  243: 	my $answer=reply($cmd,$server);
1.1       albertel  244:         if ($answer eq 'con_lost') {
                    245:             my $now=time;
                    246:             my $middlename=$cmd;
1.5       www       247:             $middlename=substr($middlename,0,16);
1.1       albertel  248:             $middlename=~s/\W//g;
                    249:             my $dfilename=
1.305     www       250:       "$perlvar{'lonSockDir'}/delayed/$now.$dumpcount.$$.$middlename.$server";
                    251:             $dumpcount++;
1.1       albertel  252:             {
1.448     albertel  253: 		my $dfh;
                    254: 		if (open($dfh,">$dfilename")) {
                    255: 		    print $dfh "$cmd\n"; 
                    256: 		    close($dfh);
                    257: 		}
1.1       albertel  258:             }
                    259:             sleep 2;
                    260:             my $wcmd='';
                    261:             {
1.448     albertel  262: 		my $dfh;
                    263: 		if (open($dfh,"<$dfilename")) {
                    264: 		    $wcmd=<$dfh>; 
                    265: 		    close($dfh);
                    266: 		}
1.1       albertel  267:             }
                    268:             chomp($wcmd);
1.7       www       269:             if ($wcmd eq $cmd) {
1.672     albertel  270: 		&logthis("<font color=\"blue\">WARNING: ".
1.12      www       271:                          "Connection buffer $dfilename: $cmd</font>");
1.1       albertel  272:                 &logperm("D:$server:$cmd");
                    273: 	        return 'con_delayed';
                    274:             } else {
1.672     albertel  275:                 &logthis("<font color=\"red\">CRITICAL:"
1.12      www       276:                         ." Critical connection failed: $server $cmd</font>");
1.1       albertel  277:                 &logperm("F:$server:$cmd");
                    278:                 return 'con_failed';
                    279:             }
                    280:         }
                    281:     }
                    282:     return $answer;
1.405     albertel  283: }
                    284: 
1.755     albertel  285: # ------------------------------------------- check if return value is an error
                    286: 
                    287: sub error {
                    288:     my ($result) = @_;
1.756     albertel  289:     if ($result =~ /^(con_lost|no_such_host|error: (\d+) (.*))/) {
1.755     albertel  290: 	if ($2 == 2) { return undef; }
                    291: 	return $1;
                    292:     }
                    293:     return undef;
                    294: }
                    295: 
1.783     albertel  296: sub convert_and_load_session_env {
                    297:     my ($lonidsdir,$handle)=@_;
                    298:     my @profile;
                    299:     {
                    300: 	open(my $idf,"$lonidsdir/$handle.id");
                    301: 	flock($idf,LOCK_SH);
                    302: 	@profile=<$idf>;
                    303: 	close($idf);
                    304:     }
                    305:     my %temp_env;
                    306:     foreach my $line (@profile) {
1.786     albertel  307: 	if ($line !~ m/=/) {
                    308: 	    return 0;
                    309: 	}
1.783     albertel  310: 	chomp($line);
                    311: 	my ($envname,$envvalue)=split(/=/,$line,2);
                    312: 	$temp_env{&unescape($envname)} = &unescape($envvalue);
                    313:     }
                    314:     unlink("$lonidsdir/$handle.id");
                    315:     if (tie(my %disk_env,'GDBM_File',"$lonidsdir/$handle.id",&GDBM_WRCREAT(),
                    316: 	    0640)) {
                    317: 	%disk_env = %temp_env;
                    318: 	@env{keys(%temp_env)} = @disk_env{keys(%temp_env)};
                    319: 	untie(%disk_env);
                    320:     }
1.786     albertel  321:     return 1;
1.783     albertel  322: }
                    323: 
1.374     www       324: # ------------------------------------------- Transfer profile into environment
1.780     albertel  325: my $env_loaded;
                    326: sub transfer_profile_to_env {
1.788     albertel  327:     my ($lonidsdir,$handle,$force_transfer) = @_;
                    328:     if (!$force_transfer && $env_loaded) { return; } 
1.374     www       329: 
1.720     albertel  330:     if (!defined($lonidsdir)) {
                    331: 	$lonidsdir = $perlvar{'lonIDsDir'};
                    332:     }
                    333:     if (!defined($handle)) {
                    334:         ($handle) = ($env{'user.environment'} =~m|/([^/]+)\.id$| );
                    335:     }
                    336: 
1.786     albertel  337:     my $convert;
                    338:     {
                    339:     	open(my $idf,"$lonidsdir/$handle.id");
                    340: 	flock($idf,LOCK_SH);
                    341: 	if (tie(my %disk_env,'GDBM_File',"$lonidsdir/$handle.id",
                    342: 		&GDBM_READER(),0640)) {
                    343: 	    @env{keys(%disk_env)} = @disk_env{keys(%disk_env)};
                    344: 	    untie(%disk_env);
                    345: 	} else {
                    346: 	    $convert = 1;
                    347: 	}
                    348:     }
                    349:     if ($convert) {
                    350: 	if (!&convert_and_load_session_env($lonidsdir,$handle)) {
                    351: 	    &logthis("Failed to load session, or convert session.");
                    352: 	}
1.374     www       353:     }
1.783     albertel  354: 
1.786     albertel  355:     my %remove;
1.783     albertel  356:     while ( my $envname = each(%env) ) {
1.433     matthew   357:         if (my ($key,$time) = ($envname =~ /^(cgi\.(\d+)_\d+\.)/)) {
                    358:             if ($time < time-300) {
1.783     albertel  359:                 $remove{$key}++;
1.433     matthew   360:             }
                    361:         }
                    362:     }
1.783     albertel  363: 
1.619     albertel  364:     $env{'user.environment'} = "$lonidsdir/$handle.id";
1.780     albertel  365:     $env_loaded=1;
1.783     albertel  366:     foreach my $expired_key (keys(%remove)) {
1.433     matthew   367:         &delenv($expired_key);
1.374     www       368:     }
1.1       albertel  369: }
                    370: 
1.5       www       371: # ---------------------------------------------------------- Append Environment
                    372: 
                    373: sub appenv {
1.6       www       374:     my %newenv=@_;
1.692     albertel  375:     foreach my $key (keys(%newenv)) {
                    376: 	if (($newenv{$key}=~/^user\.role/) || ($newenv{$key}=~/^user\.priv/)) {
1.672     albertel  377:             &logthis("<font color=\"blue\">WARNING: ".
1.692     albertel  378:                 "Attempt to modify environment ".$key." to ".$newenv{$key}
1.151     www       379:                 .'</font>');
1.692     albertel  380: 	    delete($newenv{$key});
1.35      www       381:         } else {
1.692     albertel  382:             $env{$key}=$newenv{$key};
1.35      www       383:         }
1.191     harris41  384:     }
1.783     albertel  385:     if (tie(my %disk_env,'GDBM_File',$env{'user.environment'},&GDBM_WRITER(),
                    386: 	    0640)) {
                    387: 	while (my ($key,$value) = each(%newenv)) {
                    388: 	    $disk_env{$key} = $value;
1.448     albertel  389: 	}
1.783     albertel  390: 	untie(%disk_env);
1.56      www       391:     }
                    392:     return 'ok';
                    393: }
                    394: # ----------------------------------------------------- Delete from Environment
                    395: 
                    396: sub delenv {
                    397:     my $delthis=shift;
                    398:     if (($delthis=~/user\.role/) || ($delthis=~/user\.priv/)) {
1.672     albertel  399:         &logthis("<font color=\"blue\">WARNING: ".
1.56      www       400:                 "Attempt to delete from environment ".$delthis);
                    401:         return 'error';
                    402:     }
1.783     albertel  403:     if (tie(my %disk_env,'GDBM_File',$env{'user.environment'},&GDBM_WRITER(),
                    404: 	    0640)) {
                    405: 	foreach my $key (keys(%disk_env)) {
                    406: 	    if ($key=~/^$delthis/) { 
1.619     albertel  407:                 delete($env{$key});
1.783     albertel  408:                 delete($disk_env{$key});
1.473     matthew   409:             }
1.448     albertel  410: 	}
1.783     albertel  411: 	untie(%disk_env);
1.5       www       412:     }
                    413:     return 'ok';
1.369     albertel  414: }
                    415: 
1.790     albertel  416: sub get_env_multiple {
                    417:     my ($name) = @_;
                    418:     my @values;
                    419:     if (defined($env{$name})) {
                    420:         # exists is it an array
                    421:         if (ref($env{$name})) {
                    422:             @values=@{ $env{$name} };
                    423:         } else {
                    424:             $values[0]=$env{$name};
                    425:         }
                    426:     }
                    427:     return(@values);
                    428: }
                    429: 
1.369     albertel  430: # ------------------------------------------ Find out current server userload
                    431: # there is a copy in lond
                    432: sub userload {
                    433:     my $numusers=0;
                    434:     {
                    435: 	opendir(LONIDS,$perlvar{'lonIDsDir'});
                    436: 	my $filename;
                    437: 	my $curtime=time;
                    438: 	while ($filename=readdir(LONIDS)) {
                    439: 	    if ($filename eq '.' || $filename eq '..') {next;}
1.404     albertel  440: 	    my ($mtime)=(stat($perlvar{'lonIDsDir'}.'/'.$filename))[9];
1.437     albertel  441: 	    if ($curtime-$mtime < 1800) { $numusers++; }
1.369     albertel  442: 	}
                    443: 	closedir(LONIDS);
                    444:     }
                    445:     my $userloadpercent=0;
                    446:     my $maxuserload=$perlvar{'lonUserLoadLim'};
                    447:     if ($maxuserload) {
1.371     albertel  448: 	$userloadpercent=100*$numusers/$maxuserload;
1.369     albertel  449:     }
1.372     albertel  450:     $userloadpercent=sprintf("%.2f",$userloadpercent);
1.369     albertel  451:     return $userloadpercent;
1.283     www       452: }
                    453: 
                    454: # ------------------------------------------ Fight off request when overloaded
                    455: 
                    456: sub overloaderror {
                    457:     my ($r,$checkserver)=@_;
                    458:     unless ($checkserver) { $checkserver=$perlvar{'lonHostID'}; }
                    459:     my $loadavg;
                    460:     if ($checkserver eq $perlvar{'lonHostID'}) {
1.448     albertel  461:        open(my $loadfile,'/proc/loadavg');
1.283     www       462:        $loadavg=<$loadfile>;
                    463:        $loadavg =~ s/\s.*//g;
1.285     matthew   464:        $loadavg = 100*$loadavg/$perlvar{'lonLoadLim'};
1.448     albertel  465:        close($loadfile);
1.283     www       466:     } else {
                    467:        $loadavg=&reply('load',$checkserver);
                    468:     }
1.285     matthew   469:     my $overload=$loadavg-100;
1.283     www       470:     if ($overload>0) {
1.285     matthew   471: 	$r->err_headers_out->{'Retry-After'}=$overload;
1.283     www       472:         $r->log_error('Overload of '.$overload.' on '.$checkserver);
1.554     www       473:         return 413;
1.283     www       474:     }    
                    475:     return '';
1.5       www       476: }
1.1       albertel  477: 
                    478: # ------------------------------ Find server with least workload from spare.tab
1.11      www       479: 
1.1       albertel  480: sub spareserver {
1.670     albertel  481:     my ($loadpercent,$userloadpercent,$want_server_name) = @_;
1.784     albertel  482:     my $spare_server;
1.370     albertel  483:     if ($userloadpercent !~ /\d/) { $userloadpercent=0; }
1.784     albertel  484:     my $lowest_load=($loadpercent > $userloadpercent) ? $loadpercent 
                    485:                                                      :  $userloadpercent;
                    486:     
                    487:     foreach my $try_server (@{ $spareid{'primary'} }) {
                    488: 	($spare_server, $lowest_load) =
                    489: 	    &compare_server_load($try_server, $spare_server, $lowest_load);
                    490:     }
                    491: 
                    492:     my $found_server = ($spare_server ne '' && $lowest_load < 100);
                    493: 
                    494:     if (!$found_server) {
                    495: 	foreach my $try_server (@{ $spareid{'default'} }) {
                    496: 	    ($spare_server, $lowest_load) =
                    497: 		&compare_server_load($try_server, $spare_server, $lowest_load);
                    498: 	}
                    499:     }
                    500: 
                    501:     if (!$want_server_name) {
                    502: 	$spare_server="http://$hostname{$spare_server}";
                    503:     }
                    504:     return $spare_server;
                    505: }
                    506: 
                    507: sub compare_server_load {
                    508:     my ($try_server, $spare_server, $lowest_load) = @_;
                    509: 
                    510:     my $loadans     = &reply('load',    $try_server);
                    511:     my $userloadans = &reply('userload',$try_server);
                    512: 
                    513:     if ($loadans !~ /\d/ && $userloadans !~ /\d/) {
                    514: 	next; #didn't get a number from the server
                    515:     }
                    516: 
                    517:     my $load;
                    518:     if ($loadans =~ /\d/) {
                    519: 	if ($userloadans =~ /\d/) {
                    520: 	    #both are numbers, pick the bigger one
                    521: 	    $load = ($loadans > $userloadans) ? $loadans 
                    522: 		                              : $userloadans;
1.411     albertel  523: 	} else {
1.784     albertel  524: 	    $load = $loadans;
1.411     albertel  525: 	}
1.784     albertel  526:     } else {
                    527: 	$load = $userloadans;
                    528:     }
                    529: 
                    530:     if (($load =~ /\d/) && ($load < $lowest_load)) {
                    531: 	$spare_server = $try_server;
                    532: 	$lowest_load  = $load;
1.370     albertel  533:     }
1.784     albertel  534:     return ($spare_server,$lowest_load);
1.202     matthew   535: }
                    536: # --------------------------------------------- Try to change a user's password
                    537: 
                    538: sub changepass {
1.799     raeburn   539:     my ($uname,$udom,$currentpass,$newpass,$server,$context)=@_;
1.202     matthew   540:     $currentpass = &escape($currentpass);
                    541:     $newpass     = &escape($newpass);
1.799     raeburn   542:     my $answer = reply("encrypt:passwd:$udom:$uname:$currentpass:$newpass:$context",
1.202     matthew   543: 		       $server);
                    544:     if (! $answer) {
                    545: 	&logthis("No reply on password change request to $server ".
                    546: 		 "by $uname in domain $udom.");
                    547:     } elsif ($answer =~ "^ok") {
                    548:         &logthis("$uname in $udom successfully changed their password ".
                    549: 		 "on $server.");
                    550:     } elsif ($answer =~ "^pwchange_failure") {
                    551: 	&logthis("$uname in $udom was unable to change their password ".
                    552: 		 "on $server.  The action was blocked by either lcpasswd ".
                    553: 		 "or pwchange");
                    554:     } elsif ($answer =~ "^non_authorized") {
                    555:         &logthis("$uname in $udom did not get their password correct when ".
                    556: 		 "attempting to change it on $server.");
                    557:     } elsif ($answer =~ "^auth_mode_error") {
                    558:         &logthis("$uname in $udom attempted to change their password despite ".
                    559: 		 "not being locally or internally authenticated on $server.");
                    560:     } elsif ($answer =~ "^unknown_user") {
                    561:         &logthis("$uname in $udom attempted to change their password ".
                    562: 		 "on $server but were unable to because $server is not ".
                    563: 		 "their home server.");
                    564:     } elsif ($answer =~ "^refused") {
                    565: 	&logthis("$server refused to change $uname in $udom password because ".
                    566: 		 "it was sent an unencrypted request to change the password.");
                    567:     }
                    568:     return $answer;
1.1       albertel  569: }
                    570: 
1.169     harris41  571: # ----------------------- Try to determine user's current authentication scheme
                    572: 
                    573: sub queryauthenticate {
                    574:     my ($uname,$udom)=@_;
1.456     albertel  575:     my $uhome=&homeserver($uname,$udom);
                    576:     if (!$uhome) {
                    577: 	&logthis("User $uname at $udom is unknown when looking for authentication mechanism");
                    578: 	return 'no_host';
                    579:     }
                    580:     my $answer=reply("encrypt:currentauth:$udom:$uname",$uhome);
                    581:     if ($answer =~ /^(unknown_user|refused|con_lost)/) {
                    582: 	&logthis("User $uname at $udom threw error $answer when checking authentication mechanism");
1.169     harris41  583:     }
1.456     albertel  584:     return $answer;
1.169     harris41  585: }
                    586: 
1.1       albertel  587: # --------- Try to authenticate user from domain's lib servers (first this one)
1.11      www       588: 
1.1       albertel  589: sub authenticate {
                    590:     my ($uname,$upass,$udom)=@_;
1.807     albertel  591:     $upass=&escape($upass);
                    592:     $uname= &LONCAPA::clean_username($uname);
1.471     albertel  593:     my $uhome=&homeserver($uname,$udom);
                    594:     if (!$uhome) {
                    595: 	&logthis("User $uname at $udom is unknown in authenticate");
                    596: 	return 'no_host';
1.1       albertel  597:     }
1.471     albertel  598:     my $answer=reply("encrypt:auth:$udom:$uname:$upass",$uhome);
                    599:     if ($answer eq 'authorized') {
                    600: 	&logthis("User $uname at $udom authorized by $uhome"); 
                    601: 	return $uhome; 
                    602:     }
                    603:     if ($answer eq 'non_authorized') {
                    604: 	&logthis("User $uname at $udom rejected by $uhome");
                    605: 	return 'no_host'; 
1.9       www       606:     }
1.471     albertel  607:     &logthis("User $uname at $udom threw error $answer when checking authentication mechanism");
1.1       albertel  608:     return 'no_host';
                    609: }
                    610: 
                    611: # ---------------------- Find the homebase for a user from domain's lib servers
1.11      www       612: 
1.599     albertel  613: my %homecache;
1.1       albertel  614: sub homeserver {
1.230     stredwic  615:     my ($uname,$udom,$ignoreBadCache)=@_;
1.1       albertel  616:     my $index="$uname:$udom";
1.426     albertel  617: 
1.599     albertel  618:     if (exists($homecache{$index})) { return $homecache{$index}; }
1.1       albertel  619:     my $tryserver;
                    620:     foreach $tryserver (keys %libserv) {
1.230     stredwic  621:         next if ($ignoreBadCache ne 'true' && 
1.231     stredwic  622: 		 exists($badServerCache{$tryserver}));
1.1       albertel  623: 	if ($hostdom{$tryserver} eq $udom) {
                    624:            my $answer=reply("home:$udom:$uname",$tryserver);
                    625:            if ($answer eq 'found') { 
1.599     albertel  626: 	       return $homecache{$index}=$tryserver;
1.231     stredwic  627:            } elsif ($answer eq 'no_host') {
                    628: 	       $badServerCache{$tryserver}=1;
1.221     matthew   629:            }
1.1       albertel  630:        }
                    631:     }    
                    632:     return 'no_host';
1.70      www       633: }
                    634: 
                    635: # ------------------------------------- Find the usernames behind a list of IDs
                    636: 
                    637: sub idget {
                    638:     my ($udom,@ids)=@_;
                    639:     my %returnhash=();
                    640:     
                    641:     my $tryserver;
                    642:     foreach $tryserver (keys %libserv) {
                    643:        if ($hostdom{$tryserver} eq $udom) {
                    644: 	  my $idlist=join('&',@ids);
                    645:           $idlist=~tr/A-Z/a-z/; 
                    646: 	  my $reply=&reply("idget:$udom:".$idlist,$tryserver);
                    647:           my @answer=();
1.76      www       648:           if (($reply ne 'con_lost') && ($reply!~/^error\:/)) {
1.70      www       649: 	      @answer=split(/\&/,$reply);
                    650:           }                    ;
                    651:           my $i;
                    652:           for ($i=0;$i<=$#ids;$i++) {
                    653:               if ($answer[$i]) {
                    654: 		  $returnhash{$ids[$i]}=$answer[$i];
                    655:               } 
                    656:           }
                    657:        }
                    658:     }    
                    659:     return %returnhash;
                    660: }
                    661: 
                    662: # ------------------------------------- Find the IDs behind a list of usernames
                    663: 
                    664: sub idrget {
                    665:     my ($udom,@unames)=@_;
                    666:     my %returnhash=();
1.800     albertel  667:     foreach my $uname (@unames) {
                    668:         $returnhash{$uname}=(&userenvironment($udom,$uname,'id'))[1];
1.191     harris41  669:     }
1.70      www       670:     return %returnhash;
                    671: }
                    672: 
                    673: # ------------------------------- Store away a list of names and associated IDs
                    674: 
                    675: sub idput {
                    676:     my ($udom,%ids)=@_;
                    677:     my %servers=();
1.800     albertel  678:     foreach my $uname (keys(%ids)) {
                    679: 	&cput('environment',{'id'=>$ids{$uname}},$udom,$uname);
                    680:         my $uhom=&homeserver($uname,$udom);
1.70      www       681:         if ($uhom ne 'no_host') {
1.800     albertel  682:             my $id=&escape($ids{$uname});
1.70      www       683:             $id=~tr/A-Z/a-z/;
1.800     albertel  684:             my $esc_unam=&escape($uname);
1.70      www       685: 	    if ($servers{$uhom}) {
1.800     albertel  686: 		$servers{$uhom}.='&'.$id.'='.$esc_unam;
1.70      www       687:             } else {
1.800     albertel  688:                 $servers{$uhom}=$id.'='.$esc_unam;
1.70      www       689:             }
                    690:         }
1.191     harris41  691:     }
1.800     albertel  692:     foreach my $server (keys(%servers)) {
                    693:         &critical('idput:'.$udom.':'.$servers{$server},$server);
1.191     harris41  694:     }
1.344     www       695: }
                    696: 
1.806     raeburn   697: # ------------------------------------------- get items from domain db files   
                    698: 
                    699: sub get_dom {
                    700:     my ($namespace,$storearr,$udom)=@_;
                    701:     my $items='';
                    702:     foreach my $item (@$storearr) {
                    703:         $items.=&escape($item).'&';
                    704:     }
                    705:     $items=~s/\&$//;
                    706:     if (!$udom) { $udom=$env{'user.domain'}; }
                    707:     if (exists($domain_primary{$udom})) {
                    708:         my $uhome=$domain_primary{$udom};
                    709:         my $rep=&reply("getdom:$udom:$namespace:$items",$uhome);
                    710:         my @pairs=split(/\&/,$rep);
                    711:         if ( $#pairs==0 && $pairs[0] =~ /^(con_lost|error|no_such_host)/i) {
                    712:             return @pairs;
                    713:         }
                    714:         my %returnhash=();
                    715:         my $i=0;
                    716:         foreach my $item (@$storearr) {
                    717:             $returnhash{$item}=&thaw_unescape($pairs[$i]);
                    718:             $i++;
                    719:         }
                    720:         return %returnhash;
                    721:     } else {
                    722:         &logthis("get_dom failed - no primary domain server for $udom");
                    723:     }
                    724: }
                    725: 
                    726: # -------------------------------------------- put items in domain db files 
                    727: 
                    728: sub put_dom {
                    729:     my ($namespace,$storehash,$udom)=@_;
                    730:     if (!$udom) { $udom=$env{'user.domain'}; }
                    731:     if (exists($domain_primary{$udom})) {
                    732:         my $uhome=$domain_primary{$udom};
                    733:         my $items='';
                    734:         foreach my $item (keys(%$storehash)) {
                    735:             $items.=&escape($item).'='.&freeze_escape($$storehash{$item}).'&';
                    736:         }
                    737:         $items=~s/\&$//;
                    738:         return &reply("putdom:$udom:$namespace:$items",$uhome);
                    739:     } else {
                    740:         &logthis("put_dom failed - no primary domain server for $udom");
                    741:     }
                    742: }
                    743: 
1.344     www       744: # --------------------------------------------------- Assign a key to a student
                    745: 
                    746: sub assign_access_key {
1.364     www       747: #
                    748: # a valid key looks like uname:udom#comments
                    749: # comments are being appended
                    750: #
1.498     www       751:     my ($ckey,$kdom,$knum,$cdom,$cnum,$udom,$uname,$logentry)=@_;
                    752:     $kdom=
1.620     albertel  753:    $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($kdom));
1.498     www       754:     $knum=
1.620     albertel  755:    $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($knum));
1.344     www       756:     $cdom=
1.620     albertel  757:    $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($cdom));
1.344     www       758:     $cnum=
1.620     albertel  759:    $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($cnum));
                    760:     $udom=$env{'user.name'} unless (defined($udom));
                    761:     $uname=$env{'user.domain'} unless (defined($uname));
1.498     www       762:     my %existing=&get('accesskeys',[$ckey],$kdom,$knum);
1.364     www       763:     if (($existing{$ckey}=~/^\#(.*)$/) || # - new key
1.479     albertel  764:         ($existing{$ckey}=~/^\Q$uname\E\:\Q$udom\E\#(.*)$/)) { 
1.364     www       765:                                                   # assigned to this person
                    766:                                                   # - this should not happen,
1.345     www       767:                                                   # unless something went wrong
                    768:                                                   # the first time around
                    769: # ready to assign
1.364     www       770:         $logentry=$1.'; '.$logentry;
1.496     www       771:         if (&put('accesskeys',{$ckey=>$uname.':'.$udom.'#'.$logentry},
1.498     www       772:                                                  $kdom,$knum) eq 'ok') {
1.345     www       773: # key now belongs to user
1.346     www       774: 	    my $envkey='key.'.$cdom.'_'.$cnum;
1.345     www       775:             if (&put('environment',{$envkey => $ckey}) eq 'ok') {
                    776:                 &appenv('environment.'.$envkey => $ckey);
                    777:                 return 'ok';
                    778:             } else {
                    779:                 return 
                    780:   'error: Count not permanently assign key, will need to be re-entered later.';
                    781: 	    }
                    782:         } else {
                    783:             return 'error: Could not assign key, try again later.';
                    784:         }
1.364     www       785:     } elsif (!$existing{$ckey}) {
1.345     www       786: # the key does not exist
                    787: 	return 'error: The key does not exist';
                    788:     } else {
                    789: # the key is somebody else's
                    790: 	return 'error: The key is already in use';
                    791:     }
1.344     www       792: }
                    793: 
1.364     www       794: # ------------------------------------------ put an additional comment on a key
                    795: 
                    796: sub comment_access_key {
                    797: #
                    798: # a valid key looks like uname:udom#comments
                    799: # comments are being appended
                    800: #
                    801:     my ($ckey,$cdom,$cnum,$logentry)=@_;
                    802:     $cdom=
1.620     albertel  803:    $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($cdom));
1.364     www       804:     $cnum=
1.620     albertel  805:    $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($cnum));
1.364     www       806:     my %existing=&get('accesskeys',[$ckey],$cdom,$cnum);
                    807:     if ($existing{$ckey}) {
                    808:         $existing{$ckey}.='; '.$logentry;
                    809: # ready to assign
1.367     www       810:         if (&put('accesskeys',{$ckey=>$existing{$ckey}},
1.364     www       811:                                                  $cdom,$cnum) eq 'ok') {
                    812: 	    return 'ok';
                    813:         } else {
                    814: 	    return 'error: Count not store comment.';
                    815:         }
                    816:     } else {
                    817: # the key does not exist
                    818: 	return 'error: The key does not exist';
                    819:     }
                    820: }
                    821: 
1.344     www       822: # ------------------------------------------------------ Generate a set of keys
                    823: 
                    824: sub generate_access_keys {
1.364     www       825:     my ($number,$cdom,$cnum,$logentry)=@_;
1.344     www       826:     $cdom=
1.620     albertel  827:    $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($cdom));
1.344     www       828:     $cnum=
1.620     albertel  829:    $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($cnum));
1.361     www       830:     unless (&allowed('mky',$cdom)) { return 0; }
1.344     www       831:     unless (($cdom) && ($cnum)) { return 0; }
                    832:     if ($number>10000) { return 0; }
                    833:     sleep(2); # make sure don't get same seed twice
                    834:     srand(time()^($$+($$<<15))); # from "Programming Perl"
                    835:     my $total=0;
                    836:     for (my $i=1;$i<=$number;$i++) {
                    837:        my $newkey=sprintf("%lx",int(100000*rand)).'-'.
                    838:                   sprintf("%lx",int(100000*rand)).'-'.
                    839:                   sprintf("%lx",int(100000*rand));
                    840:        $newkey=~s/1/g/g; # folks mix up 1 and l
                    841:        $newkey=~s/0/h/g; # and also 0 and O
                    842:        my %existing=&get('accesskeys',[$newkey],$cdom,$cnum);
                    843:        if ($existing{$newkey}) {
                    844:            $i--;
                    845:        } else {
1.364     www       846: 	  if (&put('accesskeys',
                    847:               { $newkey => '# generated '.localtime().
1.620     albertel  848:                            ' by '.$env{'user.name'}.'@'.$env{'user.domain'}.
1.364     www       849:                            '; '.$logentry },
                    850: 		   $cdom,$cnum) eq 'ok') {
1.344     www       851:               $total++;
                    852: 	  }
                    853:        }
                    854:     }
1.620     albertel  855:     &log($env{'user.domain'},$env{'user.name'},$env{'user.home'},
1.344     www       856:          'Generated '.$total.' keys for '.$cnum.' at '.$cdom);
                    857:     return $total;
                    858: }
                    859: 
                    860: # ------------------------------------------------------- Validate an accesskey
                    861: 
                    862: sub validate_access_key {
                    863:     my ($ckey,$cdom,$cnum,$udom,$uname)=@_;
                    864:     $cdom=
1.620     albertel  865:    $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($cdom));
1.344     www       866:     $cnum=
1.620     albertel  867:    $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($cnum));
                    868:     $udom=$env{'user.domain'} unless (defined($udom));
                    869:     $uname=$env{'user.name'} unless (defined($uname));
1.345     www       870:     my %existing=&get('accesskeys',[$ckey],$cdom,$cnum);
1.479     albertel  871:     return ($existing{$ckey}=~/^\Q$uname\E\:\Q$udom\E\#/);
1.70      www       872: }
                    873: 
                    874: # ------------------------------------- Find the section of student in a course
1.652     albertel  875: sub devalidate_getsection_cache {
                    876:     my ($udom,$unam,$courseid)=@_;
                    877:     my $hashid="$udom:$unam:$courseid";
                    878:     &devalidate_cache_new('getsection',$hashid);
                    879: }
1.298     matthew   880: 
                    881: sub getsection {
                    882:     my ($udom,$unam,$courseid)=@_;
1.599     albertel  883:     my $cachetime=1800;
1.551     albertel  884: 
                    885:     my $hashid="$udom:$unam:$courseid";
1.599     albertel  886:     my ($result,$cached)=&is_cached_new('getsection',$hashid);
1.551     albertel  887:     if (defined($cached)) { return $result; }
                    888: 
1.298     matthew   889:     my %Pending; 
                    890:     my %Expired;
                    891:     #
                    892:     # Each role can either have not started yet (pending), be active, 
                    893:     #    or have expired.
                    894:     #
                    895:     # If there is an active role, we are done.
                    896:     #
                    897:     # If there is more than one role which has not started yet, 
                    898:     #     choose the one which will start sooner
                    899:     # If there is one role which has not started yet, return it.
                    900:     #
                    901:     # If there is more than one expired role, choose the one which ended last.
                    902:     # If there is a role which has expired, return it.
                    903:     #
1.800     albertel  904:     foreach my $line (split(/\&/,&reply('dump:'.$udom.':'.$unam.':roles',
                    905: 					&homeserver($unam,$udom)))) {
                    906:         my ($key,$value)=split(/\=/,$line,2);
1.298     matthew   907:         $key=&unescape($key);
1.479     albertel  908:         next if ($key !~/^\Q$courseid\E(?:\/)*(\w+)*\_st$/);
1.298     matthew   909:         my $section=$1;
                    910:         if ($key eq $courseid.'_st') { $section=''; }
                    911:         my ($dummy,$end,$start)=split(/\_/,&unescape($value));
                    912:         my $now=time;
1.548     albertel  913:         if (defined($end) && $end && ($now > $end)) {
1.298     matthew   914:             $Expired{$end}=$section;
                    915:             next;
                    916:         }
1.548     albertel  917:         if (defined($start) && $start && ($now < $start)) {
1.298     matthew   918:             $Pending{$start}=$section;
                    919:             next;
                    920:         }
1.599     albertel  921:         return &do_cache_new('getsection',$hashid,$section,$cachetime);
1.298     matthew   922:     }
                    923:     #
                    924:     # Presumedly there will be few matching roles from the above
                    925:     # loop and the sorting time will be negligible.
                    926:     if (scalar(keys(%Pending))) {
                    927:         my ($time) = sort {$a <=> $b} keys(%Pending);
1.599     albertel  928:         return &do_cache_new('getsection',$hashid,$Pending{$time},$cachetime);
1.298     matthew   929:     } 
                    930:     if (scalar(keys(%Expired))) {
                    931:         my @sorted = sort {$a <=> $b} keys(%Expired);
                    932:         my $time = pop(@sorted);
1.599     albertel  933:         return &do_cache_new('getsection',$hashid,$Expired{$time},$cachetime);
1.298     matthew   934:     }
1.599     albertel  935:     return &do_cache_new('getsection',$hashid,'-1',$cachetime);
1.298     matthew   936: }
1.70      www       937: 
1.599     albertel  938: sub save_cache {
                    939:     &purge_remembered();
1.722     albertel  940:     #&Apache::loncommon::validate_page();
1.620     albertel  941:     undef(%env);
1.780     albertel  942:     undef($env_loaded);
1.599     albertel  943: }
1.452     albertel  944: 
1.599     albertel  945: my $to_remember=-1;
                    946: my %remembered;
                    947: my %accessed;
                    948: my $kicks=0;
                    949: my $hits=0;
                    950: sub devalidate_cache_new {
                    951:     my ($name,$id,$debug) = @_;
                    952:     if ($debug) { &Apache::lonnet::logthis("deleting $name:$id"); }
                    953:     $id=&escape($name.':'.$id);
                    954:     $memcache->delete($id);
                    955:     delete($remembered{$id});
                    956:     delete($accessed{$id});
                    957: }
                    958: 
                    959: sub is_cached_new {
                    960:     my ($name,$id,$debug) = @_;
                    961:     $id=&escape($name.':'.$id);
                    962:     if (exists($remembered{$id})) {
                    963: 	if ($debug) { &Apache::lonnet::logthis("Earyl return $id of $remembered{$id} "); }
                    964: 	$accessed{$id}=[&gettimeofday()];
                    965: 	$hits++;
                    966: 	return ($remembered{$id},1);
                    967:     }
                    968:     my $value = $memcache->get($id);
                    969:     if (!(defined($value))) {
                    970: 	if ($debug) { &Apache::lonnet::logthis("getting $id is not defined"); }
1.417     albertel  971: 	return (undef,undef);
1.416     albertel  972:     }
1.599     albertel  973:     if ($value eq '__undef__') {
                    974: 	if ($debug) { &Apache::lonnet::logthis("getting $id is __undef__"); }
                    975: 	$value=undef;
                    976:     }
                    977:     &make_room($id,$value,$debug);
                    978:     if ($debug) { &Apache::lonnet::logthis("getting $id is $value"); }
                    979:     return ($value,1);
                    980: }
                    981: 
                    982: sub do_cache_new {
                    983:     my ($name,$id,$value,$time,$debug) = @_;
                    984:     $id=&escape($name.':'.$id);
                    985:     my $setvalue=$value;
                    986:     if (!defined($setvalue)) {
                    987: 	$setvalue='__undef__';
                    988:     }
1.623     albertel  989:     if (!defined($time) ) {
                    990: 	$time=600;
                    991:     }
1.599     albertel  992:     if ($debug) { &Apache::lonnet::logthis("Setting $id to $value"); }
1.600     albertel  993:     $memcache->set($id,$setvalue,$time);
                    994:     # need to make a copy of $value
                    995:     #&make_room($id,$value,$debug);
1.599     albertel  996:     return $value;
                    997: }
                    998: 
                    999: sub make_room {
                   1000:     my ($id,$value,$debug)=@_;
                   1001:     $remembered{$id}=$value;
                   1002:     if ($to_remember<0) { return; }
                   1003:     $accessed{$id}=[&gettimeofday()];
                   1004:     if (scalar(keys(%remembered)) <= $to_remember) { return; }
                   1005:     my $to_kick;
                   1006:     my $max_time=0;
                   1007:     foreach my $other (keys(%accessed)) {
                   1008: 	if (&tv_interval($accessed{$other}) > $max_time) {
                   1009: 	    $to_kick=$other;
                   1010: 	    $max_time=&tv_interval($accessed{$other});
                   1011: 	}
                   1012:     }
                   1013:     delete($remembered{$to_kick});
                   1014:     delete($accessed{$to_kick});
                   1015:     $kicks++;
                   1016:     if ($debug) { &logthis("kicking $to_kick $max_time $kicks\n"); }
1.541     albertel 1017:     return;
                   1018: }
                   1019: 
1.599     albertel 1020: sub purge_remembered {
1.604     albertel 1021:     #&logthis("Tossing ".scalar(keys(%remembered)));
                   1022:     #&logthis(sprintf("%-20s is %s",'%remembered',length(&freeze(\%remembered))));
1.599     albertel 1023:     undef(%remembered);
                   1024:     undef(%accessed);
1.428     albertel 1025: }
1.70      www      1026: # ------------------------------------- Read an entry from a user's environment
                   1027: 
                   1028: sub userenvironment {
                   1029:     my ($udom,$unam,@what)=@_;
                   1030:     my %returnhash=();
                   1031:     my @answer=split(/\&/,
                   1032:                 &reply('get:'.$udom.':'.$unam.':environment:'.join('&',@what),
                   1033:                       &homeserver($unam,$udom)));
                   1034:     my $i;
                   1035:     for ($i=0;$i<=$#what;$i++) {
                   1036: 	$returnhash{$what[$i]}=&unescape($answer[$i]);
                   1037:     }
                   1038:     return %returnhash;
1.1       albertel 1039: }
                   1040: 
1.617     albertel 1041: # ---------------------------------------------------------- Get a studentphoto
                   1042: sub studentphoto {
                   1043:     my ($udom,$unam,$ext) = @_;
                   1044:     my $home=&Apache::lonnet::homeserver($unam,$udom);
1.706     raeburn  1045:     if (defined($env{'request.course.id'})) {
1.708     raeburn  1046:         if ($env{'course.'.$env{'request.course.id'}.'.internal.showphoto'}) {
1.706     raeburn  1047:             if ($udom eq $env{'course.'.$env{'request.course.id'}.'.domain'}) {
                   1048:                 return(&retrievestudentphoto($udom,$unam,$ext)); 
                   1049:             } else {
                   1050:                 my ($result,$perm_reqd)=
1.707     albertel 1051: 		    &Apache::lonnet::auto_photo_permission($unam,$udom);
1.706     raeburn  1052:                 if ($result eq 'ok') {
                   1053:                     if (!($perm_reqd eq 'yes')) {
                   1054:                         return(&retrievestudentphoto($udom,$unam,$ext));
                   1055:                     }
                   1056:                 }
                   1057:             }
                   1058:         }
                   1059:     } else {
                   1060:         my ($result,$perm_reqd) = 
1.707     albertel 1061: 	    &Apache::lonnet::auto_photo_permission($unam,$udom);
1.706     raeburn  1062:         if ($result eq 'ok') {
                   1063:             if (!($perm_reqd eq 'yes')) {
                   1064:                 return(&retrievestudentphoto($udom,$unam,$ext));
                   1065:             }
                   1066:         }
                   1067:     }
                   1068:     return '/adm/lonKaputt/lonlogo_broken.gif';
                   1069: }
                   1070: 
                   1071: sub retrievestudentphoto {
                   1072:     my ($udom,$unam,$ext,$type) = @_;
                   1073:     my $home=&Apache::lonnet::homeserver($unam,$udom);
                   1074:     my $ret=&Apache::lonnet::reply("studentphoto:$udom:$unam:$ext:$type",$home);
                   1075:     if ($ret eq 'ok') {
                   1076:         my $url="/uploaded/$udom/$unam/internal/studentphoto.$ext";
                   1077:         if ($type eq 'thumbnail') {
                   1078:             $url="/uploaded/$udom/$unam/internal/studentphoto_tn.$ext"; 
                   1079:         }
                   1080:         my $tokenurl=&Apache::lonnet::tokenwrapper($url);
                   1081:         return $tokenurl;
                   1082:     } else {
                   1083:         if ($type eq 'thumbnail') {
                   1084:             return '/adm/lonKaputt/genericstudent_tn.gif';
                   1085:         } else { 
                   1086:             return '/adm/lonKaputt/lonlogo_broken.gif';
                   1087:         }
1.617     albertel 1088:     }
                   1089: }
                   1090: 
1.263     www      1091: # -------------------------------------------------------------------- New chat
                   1092: 
                   1093: sub chatsend {
1.724     raeburn  1094:     my ($newentry,$anon,$group)=@_;
1.620     albertel 1095:     my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
                   1096:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
                   1097:     my $chome=$env{'course.'.$env{'request.course.id'}.'.home'};
1.263     www      1098:     &reply('chatsend:'.$cdom.':'.$cnum.':'.
1.620     albertel 1099: 	   &escape($env{'user.domain'}.':'.$env{'user.name'}.':'.$anon.':'.
1.724     raeburn  1100: 		   &escape($newentry)).':'.$group,$chome);
1.292     www      1101: }
                   1102: 
                   1103: # ------------------------------------------ Find current version of a resource
                   1104: 
                   1105: sub getversion {
                   1106:     my $fname=&clutter(shift);
                   1107:     unless ($fname=~/^\/res\//) { return -1; }
                   1108:     return &currentversion(&filelocation('',$fname));
                   1109: }
                   1110: 
                   1111: sub currentversion {
                   1112:     my $fname=shift;
1.599     albertel 1113:     my ($result,$cached)=&is_cached_new('resversion',$fname);
1.440     www      1114:     if (defined($cached)) { return $result; }
1.292     www      1115:     my $author=$fname;
                   1116:     $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
                   1117:     my ($udom,$uname)=split(/\//,$author);
                   1118:     my $home=homeserver($uname,$udom);
                   1119:     if ($home eq 'no_host') { 
                   1120:         return -1; 
                   1121:     }
                   1122:     my $answer=reply("currentversion:$fname",$home);
                   1123:     if (($answer eq 'con_lost') || ($answer eq 'rejected')) {
                   1124: 	return -1;
                   1125:     }
1.599     albertel 1126:     return &do_cache_new('resversion',$fname,$answer,600);
1.263     www      1127: }
                   1128: 
1.1       albertel 1129: # ----------------------------- Subscribe to a resource, return URL if possible
1.11      www      1130: 
1.1       albertel 1131: sub subscribe {
                   1132:     my $fname=shift;
1.761     raeburn  1133:     if ($fname=~/\/(aboutme|syllabus|bulletinboard|smppg)$/) { return ''; }
1.532     albertel 1134:     $fname=~s/[\n\r]//g;
1.1       albertel 1135:     my $author=$fname;
                   1136:     $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
                   1137:     my ($udom,$uname)=split(/\//,$author);
                   1138:     my $home=homeserver($uname,$udom);
1.335     albertel 1139:     if ($home eq 'no_host') {
                   1140:         return 'not_found';
1.1       albertel 1141:     }
                   1142:     my $answer=reply("sub:$fname",$home);
1.64      www      1143:     if (($answer eq 'con_lost') || ($answer eq 'rejected')) {
                   1144: 	$answer.=' by '.$home;
                   1145:     }
1.1       albertel 1146:     return $answer;
                   1147: }
                   1148:     
1.8       www      1149: # -------------------------------------------------------------- Replicate file
                   1150: 
                   1151: sub repcopy {
                   1152:     my $filename=shift;
1.23      www      1153:     $filename=~s/\/+/\//g;
1.607     raeburn  1154:     if ($filename=~m|^/home/httpd/html/adm/|) { return 'ok'; }
                   1155:     if ($filename=~m|^/home/httpd/html/lonUsers/|) { return 'ok'; }
1.538     albertel 1156:     if ($filename=~m|^/home/httpd/html/userfiles/| or
1.609     banghart 1157: 	$filename=~m -^/*(uploaded|editupload)/-) { 
1.538     albertel 1158: 	return &repcopy_userfile($filename);
                   1159:     }
1.532     albertel 1160:     $filename=~s/[\n\r]//g;
1.8       www      1161:     my $transname="$filename.in.transfer";
1.607     raeburn  1162:     if ((-e $filename) || (-e $transname)) { return 'ok'; }
1.8       www      1163:     my $remoteurl=subscribe($filename);
1.64      www      1164:     if ($remoteurl =~ /^con_lost by/) {
                   1165: 	   &logthis("Subscribe returned $remoteurl: $filename");
1.607     raeburn  1166:            return 'unavailable';
1.8       www      1167:     } elsif ($remoteurl eq 'not_found') {
1.441     albertel 1168: 	   #&logthis("Subscribe returned not_found: $filename");
1.607     raeburn  1169: 	   return 'not_found';
1.64      www      1170:     } elsif ($remoteurl =~ /^rejected by/) {
                   1171: 	   &logthis("Subscribe returned $remoteurl: $filename");
1.607     raeburn  1172:            return 'forbidden';
1.20      www      1173:     } elsif ($remoteurl eq 'directory') {
1.607     raeburn  1174:            return 'ok';
1.8       www      1175:     } else {
1.290     www      1176:         my $author=$filename;
                   1177:         $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
                   1178:         my ($udom,$uname)=split(/\//,$author);
                   1179:         my $home=homeserver($uname,$udom);
                   1180:         unless ($home eq $perlvar{'lonHostID'}) {
1.8       www      1181:            my @parts=split(/\//,$filename);
                   1182:            my $path="/$parts[1]/$parts[2]/$parts[3]/$parts[4]";
                   1183:            if ($path ne "$perlvar{'lonDocRoot'}/res") {
                   1184:                &logthis("Malconfiguration for replication: $filename");
1.607     raeburn  1185: 	       return 'bad_request';
1.8       www      1186:            }
                   1187:            my $count;
                   1188:            for ($count=5;$count<$#parts;$count++) {
                   1189:                $path.="/$parts[$count]";
                   1190:                if ((-e $path)!=1) {
                   1191: 		   mkdir($path,0777);
                   1192:                }
                   1193:            }
                   1194:            my $ua=new LWP::UserAgent;
                   1195:            my $request=new HTTP::Request('GET',"$remoteurl");
                   1196:            my $response=$ua->request($request,$transname);
                   1197:            if ($response->is_error()) {
                   1198: 	       unlink($transname);
                   1199:                my $message=$response->status_line;
1.672     albertel 1200:                &logthis("<font color=\"blue\">WARNING:"
1.12      www      1201:                        ." LWP get: $message: $filename</font>");
1.607     raeburn  1202:                return 'unavailable';
1.8       www      1203:            } else {
1.16      www      1204: 	       if ($remoteurl!~/\.meta$/) {
                   1205:                   my $mrequest=new HTTP::Request('GET',$remoteurl.'.meta');
                   1206:                   my $mresponse=$ua->request($mrequest,$filename.'.meta');
                   1207:                   if ($mresponse->is_error()) {
                   1208: 		      unlink($filename.'.meta');
                   1209:                       &logthis(
1.672     albertel 1210:                      "<font color=\"yellow\">INFO: No metadata: $filename</font>");
1.16      www      1211:                   }
                   1212: 	       }
1.8       www      1213:                rename($transname,$filename);
1.607     raeburn  1214:                return 'ok';
1.8       www      1215:            }
1.290     www      1216:        }
1.8       www      1217:     }
1.330     www      1218: }
                   1219: 
                   1220: # ------------------------------------------------ Get server side include body
                   1221: sub ssi_body {
1.381     albertel 1222:     my ($filelink,%form)=@_;
1.606     matthew  1223:     if (! exists($form{'LONCAPA_INTERNAL_no_discussion'})) {
                   1224:         $form{'LONCAPA_INTERNAL_no_discussion'}='true';
                   1225:     }
1.330     www      1226:     my $output=($filelink=~/^http\:/?&externalssi($filelink):
1.381     albertel 1227:                                      &ssi($filelink,%form));
1.778     albertel 1228:     $output=~s|//(\s*<!--)? BEGIN LON-CAPA Internal.+?// END LON-CAPA Internal\s*(-->)?\s||gs;
1.451     albertel 1229:     $output=~s/^.*?\<body[^\>]*\>//si;
                   1230:     $output=~s/(.*)\<\/body\s*\>.*?$/$1/si;
1.330     www      1231:     return $output;
1.8       www      1232: }
                   1233: 
1.15      www      1234: # --------------------------------------------------------- Server Side Include
                   1235: 
1.782     albertel 1236: sub absolute_url {
                   1237:     my ($host_name) = @_;
                   1238:     my $protocol = ($ENV{'SERVER_PORT'} == 443?'https://':'http://');
                   1239:     if ($host_name eq '') {
                   1240: 	$host_name = $ENV{'SERVER_NAME'};
                   1241:     }
                   1242:     return $protocol.$host_name;
                   1243: }
                   1244: 
1.15      www      1245: sub ssi {
                   1246: 
1.23      www      1247:     my ($fn,%form)=@_;
1.15      www      1248: 
                   1249:     my $ua=new LWP::UserAgent;
1.23      www      1250:     
                   1251:     my $request;
1.711     albertel 1252: 
                   1253:     $form{'no_update_last_known'}=1;
                   1254: 
1.23      www      1255:     if (%form) {
1.782     albertel 1256:       $request=new HTTP::Request('POST',&absolute_url().$fn);
1.201     albertel 1257:       $request->content(join('&',map { &escape($_).'='.&escape($form{$_}) } keys %form));
1.23      www      1258:     } else {
1.782     albertel 1259:       $request=new HTTP::Request('GET',&absolute_url().$fn);
1.23      www      1260:     }
                   1261: 
1.15      www      1262:     $request->header(Cookie => $ENV{'HTTP_COOKIE'});
                   1263:     my $response=$ua->request($request);
                   1264: 
1.324     www      1265:     return $response->content;
                   1266: }
                   1267: 
                   1268: sub externalssi {
                   1269:     my ($url)=@_;
                   1270:     my $ua=new LWP::UserAgent;
                   1271:     my $request=new HTTP::Request('GET',$url);
                   1272:     my $response=$ua->request($request);
1.15      www      1273:     return $response->content;
                   1274: }
1.254     www      1275: 
1.492     albertel 1276: # -------------------------------- Allow a /uploaded/ URI to be vouched for
                   1277: 
                   1278: sub allowuploaded {
                   1279:     my ($srcurl,$url)=@_;
                   1280:     $url=&clutter(&declutter($url));
                   1281:     my $dir=$url;
                   1282:     $dir=~s/\/[^\/]+$//;
                   1283:     my %httpref=();
                   1284:     my $httpurl=&hreflocation('',$url);
                   1285:     $httpref{'httpref.'.$httpurl}=$srcurl;
                   1286:     &Apache::lonnet::appenv(%httpref);
1.254     www      1287: }
1.477     raeburn  1288: 
1.478     albertel 1289: # --------- File operations in /home/httpd/html/userfiles/$domain/1/2/3/$course
1.638     albertel 1290: # input: action, courseID, current domain, intended
1.637     raeburn  1291: #        path to file, source of file, instruction to parse file for objects,
                   1292: #        ref to hash for embedded objects,
                   1293: #        ref to hash for codebase of java objects.
                   1294: #
1.485     raeburn  1295: # output: url to file (if action was uploaddoc), 
                   1296: #         ok if successful, or diagnostic message otherwise (if action was propagate or copy)
1.477     raeburn  1297: #
1.478     albertel 1298: # Allows directory structure to be used within lonUsers/../userfiles/ for a 
                   1299: # course.
1.477     raeburn  1300: #
1.478     albertel 1301: # action = propagate - /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
                   1302: #          will be copied to /home/httpd/lonUsers/1/2/3/$course/userfiles in
                   1303: #          course's home server.
1.477     raeburn  1304: #
1.478     albertel 1305: # action = copy - /home/httpd/html/userfiles/$domain/1/2/3/$course/$file will
                   1306: #          be copied from $source (current location) to 
                   1307: #          /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
                   1308: #         and will then be copied to
                   1309: #          /home/httpd/lonUsers/$domain/1/2/3/$course/userfiles/$file in
                   1310: #         course's home server.
1.485     raeburn  1311: #
1.481     raeburn  1312: # action = uploaddoc - /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
1.620     albertel 1313: #         will be retrived from $env{form.uploaddoc} (from DOCS interface) to
1.481     raeburn  1314: #         /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
                   1315: #         and will then be copied to /home/httpd/lonUsers/1/2/3/$course/userfiles/$file
                   1316: #         in course's home server.
1.637     raeburn  1317: #
1.477     raeburn  1318: 
                   1319: sub process_coursefile {
1.638     albertel 1320:     my ($action,$docuname,$docudom,$file,$source,$parser,$allfiles,$codebase)=@_;
1.477     raeburn  1321:     my $fetchresult;
1.638     albertel 1322:     my $home=&homeserver($docuname,$docudom);
1.477     raeburn  1323:     if ($action eq 'propagate') {
1.638     albertel 1324:         $fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
                   1325: 			     $home);
1.481     raeburn  1326:     } else {
1.477     raeburn  1327:         my $fpath = '';
                   1328:         my $fname = $file;
1.478     albertel 1329:         ($fpath,$fname) = ($file =~ m|^(.*)/([^/]+)$|);
1.477     raeburn  1330:         $fpath=$docudom.'/'.$docuname.'/'.$fpath;
1.637     raeburn  1331:         my $filepath = &build_filepath($fpath);
1.481     raeburn  1332:         if ($action eq 'copy') {
                   1333:             if ($source eq '') {
                   1334:                 $fetchresult = 'no source file';
                   1335:                 return $fetchresult;
                   1336:             } else {
                   1337:                 my $destination = $filepath.'/'.$fname;
                   1338:                 rename($source,$destination);
                   1339:                 $fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
1.638     albertel 1340:                                  $home);
1.481     raeburn  1341:             }
                   1342:         } elsif ($action eq 'uploaddoc') {
                   1343:             open(my $fh,'>'.$filepath.'/'.$fname);
1.620     albertel 1344:             print $fh $env{'form.'.$source};
1.481     raeburn  1345:             close($fh);
1.637     raeburn  1346:             if ($parser eq 'parse') {
                   1347:                 my $parse_result = &extract_embedded_items($filepath,$fname,$allfiles,$codebase);
                   1348:                 unless ($parse_result eq 'ok') {
                   1349:                     &logthis('Failed to parse '.$filepath.'/'.$fname.' for embedded media: '.$parse_result);
                   1350:                 }
                   1351:             }
1.477     raeburn  1352:             $fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
1.638     albertel 1353:                                  $home);
1.481     raeburn  1354:             if ($fetchresult eq 'ok') {
                   1355:                 return '/uploaded/'.$fpath.'/'.$fname;
                   1356:             } else {
                   1357:                 &logthis('Failed to transfer '.$docudom.'/'.$docuname.'/'.$file.
1.638     albertel 1358:                         ' to host '.$home.': '.$fetchresult);
1.481     raeburn  1359:                 return '/adm/notfound.html';
                   1360:             }
1.477     raeburn  1361:         }
                   1362:     }
1.485     raeburn  1363:     unless ( $fetchresult eq 'ok') {
1.477     raeburn  1364:         &logthis('Failed to transfer '.$docudom.'/'.$docuname.'/'.$file.
1.638     albertel 1365:              ' to host '.$home.': '.$fetchresult);
1.477     raeburn  1366:     }
                   1367:     return $fetchresult;
                   1368: }
                   1369: 
1.637     raeburn  1370: sub build_filepath {
                   1371:     my ($fpath) = @_;
                   1372:     my $filepath=$perlvar{'lonDocRoot'}.'/userfiles';
                   1373:     unless ($fpath eq '') {
                   1374:         my @parts=split('/',$fpath);
                   1375:         foreach my $part (@parts) {
                   1376:             $filepath.= '/'.$part;
                   1377:             if ((-e $filepath)!=1) {
                   1378:                 mkdir($filepath,0777);
                   1379:             }
                   1380:         }
                   1381:     }
                   1382:     return $filepath;
                   1383: }
                   1384: 
                   1385: sub store_edited_file {
1.638     albertel 1386:     my ($primary_url,$content,$docudom,$docuname,$fetchresult) = @_;
1.637     raeburn  1387:     my $file = $primary_url;
                   1388:     $file =~ s#^/uploaded/$docudom/$docuname/##;
                   1389:     my $fpath = '';
                   1390:     my $fname = $file;
                   1391:     ($fpath,$fname) = ($file =~ m|^(.*)/([^/]+)$|);
                   1392:     $fpath=$docudom.'/'.$docuname.'/'.$fpath;
                   1393:     my $filepath = &build_filepath($fpath);
                   1394:     open(my $fh,'>'.$filepath.'/'.$fname);
                   1395:     print $fh $content;
                   1396:     close($fh);
1.638     albertel 1397:     my $home=&homeserver($docuname,$docudom);
1.637     raeburn  1398:     $$fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
1.638     albertel 1399: 			  $home);
1.637     raeburn  1400:     if ($$fetchresult eq 'ok') {
                   1401:         return '/uploaded/'.$fpath.'/'.$fname;
                   1402:     } else {
1.638     albertel 1403:         &logthis('Failed to transfer '.$docudom.'/'.$docuname.'/'.$file.
                   1404: 		 ' to host '.$home.': '.$$fetchresult);
1.637     raeburn  1405:         return '/adm/notfound.html';
                   1406:     }
                   1407: }
                   1408: 
1.531     albertel 1409: sub clean_filename {
                   1410:     my ($fname)=@_;
1.315     www      1411: # Replace Windows backslashes by forward slashes
1.257     www      1412:     $fname=~s/\\/\//g;
1.315     www      1413: # Get rid of everything but the actual filename
1.257     www      1414:     $fname=~s/^.*\/([^\/]+)$/$1/;
1.315     www      1415: # Replace spaces by underscores
                   1416:     $fname=~s/\s+/\_/g;
                   1417: # Replace all other weird characters by nothing
1.317     www      1418:     $fname=~s/[^\w\.\-]//g;
1.540     albertel 1419: # Replace all .\d. sequences with _\d. so they no longer look like version
                   1420: # numbers
                   1421:     $fname=~s/\.(\d+)(?=\.)/_$1/g;
1.531     albertel 1422:     return $fname;
                   1423: }
                   1424: 
1.608     albertel 1425: # --------------- Take an uploaded file and put it into the userfiles directory
1.686     albertel 1426: # input: $formname - the contents of the file are in $env{"form.$formname"}
1.719     banghart 1427: #                    the desired filenam is in $env{"form.$formname.filename"}
1.686     albertel 1428: #        $coursedoc - if true up to the current course
                   1429: #                     if false
                   1430: #        $subdir - directory in userfile to store the file into
                   1431: #        $parser, $allfiles, $codebase - unknown
                   1432: #
                   1433: # output: url of file in userspace, or error: <message> 
                   1434: #             or /adm/notfound.html if failure to upload occurse
1.608     albertel 1435: 
                   1436: 
1.531     albertel 1437: sub userfileupload {
1.719     banghart 1438:     my ($formname,$coursedoc,$subdir,$parser,$allfiles,$codebase,$destuname,$destudom)=@_;
1.531     albertel 1439:     if (!defined($subdir)) { $subdir='unknown'; }
1.620     albertel 1440:     my $fname=$env{'form.'.$formname.'.filename'};
1.531     albertel 1441:     $fname=&clean_filename($fname);
1.315     www      1442: # See if there is anything left
1.257     www      1443:     unless ($fname) { return 'error: no uploaded file'; }
1.620     albertel 1444:     chop($env{'form.'.$formname});
1.523     raeburn  1445:     if (($formname eq 'screenshot') && ($subdir eq 'helprequests')) { #files uploaded to help request form are handled differently
                   1446:         my $now = time;
                   1447:         my $filepath = 'tmp/helprequests/'.$now;
                   1448:         my @parts=split(/\//,$filepath);
                   1449:         my $fullpath = $perlvar{'lonDaemons'};
                   1450:         for (my $i=0;$i<@parts;$i++) {
                   1451:             $fullpath .= '/'.$parts[$i];
                   1452:             if ((-e $fullpath)!=1) {
                   1453:                 mkdir($fullpath,0777);
                   1454:             }
                   1455:         }
                   1456:         open(my $fh,'>'.$fullpath.'/'.$fname);
1.620     albertel 1457:         print $fh $env{'form.'.$formname};
1.523     raeburn  1458:         close($fh);
1.741     raeburn  1459:         return $fullpath.'/'.$fname;
                   1460:     } elsif (($formname eq 'coursecreatorxml') && ($subdir eq 'batchupload')) { #files uploaded to create course page are handled differently
                   1461:         my $filepath = 'tmp/addcourse/'.$destudom.'/web/'.$env{'user.name'}.
                   1462:                        '_'.$env{'user.domain'}.'/pending';
                   1463:         my @parts=split(/\//,$filepath);
                   1464:         my $fullpath = $perlvar{'lonDaemons'};
                   1465:         for (my $i=0;$i<@parts;$i++) {
                   1466:             $fullpath .= '/'.$parts[$i];
                   1467:             if ((-e $fullpath)!=1) {
                   1468:                 mkdir($fullpath,0777);
                   1469:             }
                   1470:         }
                   1471:         open(my $fh,'>'.$fullpath.'/'.$fname);
                   1472:         print $fh $env{'form.'.$formname};
                   1473:         close($fh);
                   1474:         return $fullpath.'/'.$fname;
1.523     raeburn  1475:     }
1.719     banghart 1476:     
1.258     www      1477: # Create the directory if not present
1.493     albertel 1478:     $fname="$subdir/$fname";
1.259     www      1479:     if ($coursedoc) {
1.638     albertel 1480: 	my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   1481: 	my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.646     raeburn  1482:         if ($env{'form.folder'} =~ m/^(default|supplemental)/) {
1.638     albertel 1483:             return &finishuserfileupload($docuname,$docudom,
                   1484: 					 $formname,$fname,$parser,$allfiles,
                   1485: 					 $codebase);
1.481     raeburn  1486:         } else {
1.620     albertel 1487:             $fname=$env{'form.folder'}.'/'.$fname;
1.638     albertel 1488:             return &process_coursefile('uploaddoc',$docuname,$docudom,
                   1489: 				       $fname,$formname,$parser,
                   1490: 				       $allfiles,$codebase);
1.481     raeburn  1491:         }
1.719     banghart 1492:     } elsif (defined($destuname)) {
                   1493:         my $docuname=$destuname;
                   1494:         my $docudom=$destudom;
                   1495: 	return &finishuserfileupload($docuname,$docudom,$formname,
                   1496: 				     $fname,$parser,$allfiles,$codebase);
                   1497:         
1.259     www      1498:     } else {
1.638     albertel 1499:         my $docuname=$env{'user.name'};
                   1500:         my $docudom=$env{'user.domain'};
1.714     raeburn  1501:         if (exists($env{'form.group'})) {
                   1502:             $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   1503:             $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
                   1504:         }
1.638     albertel 1505: 	return &finishuserfileupload($docuname,$docudom,$formname,
                   1506: 				     $fname,$parser,$allfiles,$codebase);
1.259     www      1507:     }
1.271     www      1508: }
                   1509: 
                   1510: sub finishuserfileupload {
1.638     albertel 1511:     my ($docuname,$docudom,$formname,$fname,$parser,$allfiles,$codebase) = @_;
1.477     raeburn  1512:     my $path=$docudom.'/'.$docuname.'/';
1.258     www      1513:     my $filepath=$perlvar{'lonDocRoot'};
1.494     albertel 1514:     my ($fnamepath,$file);
                   1515:     $file=$fname;
                   1516:     if ($fname=~m|/|) {
                   1517:         ($fnamepath,$file) = ($fname =~ m|^(.*)/([^/]+)$|);
                   1518: 	$path.=$fnamepath.'/';
                   1519:     }
1.259     www      1520:     my @parts=split(/\//,$filepath.'/userfiles/'.$path);
1.258     www      1521:     my $count;
                   1522:     for ($count=4;$count<=$#parts;$count++) {
                   1523:         $filepath.="/$parts[$count]";
                   1524:         if ((-e $filepath)!=1) {
                   1525: 	    mkdir($filepath,0777);
                   1526:         }
                   1527:     }
                   1528: # Save the file
                   1529:     {
1.701     albertel 1530: 	if (!open(FH,'>'.$filepath.'/'.$file)) {
                   1531: 	    &logthis('Failed to create '.$filepath.'/'.$file);
                   1532: 	    print STDERR ('Failed to create '.$filepath.'/'.$file."\n");
                   1533: 	    return '/adm/notfound.html';
                   1534: 	}
                   1535: 	if (!print FH ($env{'form.'.$formname})) {
                   1536: 	    &logthis('Failed to write to '.$filepath.'/'.$file);
                   1537: 	    print STDERR ('Failed to write to '.$filepath.'/'.$file."\n");
                   1538: 	    return '/adm/notfound.html';
                   1539: 	}
1.570     albertel 1540: 	close(FH);
1.258     www      1541:     }
1.637     raeburn  1542:     if ($parser eq 'parse') {
1.638     albertel 1543:         my $parse_result = &extract_embedded_items($filepath,$file,$allfiles,
                   1544: 						   $codebase);
1.637     raeburn  1545:         unless ($parse_result eq 'ok') {
1.638     albertel 1546:             &logthis('Failed to parse '.$filepath.$file.
                   1547: 		     ' for embedded media: '.$parse_result); 
1.637     raeburn  1548:         }
                   1549:     }
1.259     www      1550: # Notify homeserver to grep it
                   1551: #
1.638     albertel 1552:     my $docuhome=&homeserver($docuname,$docudom);
1.494     albertel 1553:     my $fetchresult= &reply('fetchuserfile:'.$path.$file,$docuhome);
1.295     www      1554:     if ($fetchresult eq 'ok') {
1.259     www      1555: #
1.258     www      1556: # Return the URL to it
1.494     albertel 1557:         return '/uploaded/'.$path.$file;
1.263     www      1558:     } else {
1.494     albertel 1559:         &logthis('Failed to transfer '.$path.$file.' to host '.$docuhome.
                   1560: 		 ': '.$fetchresult);
1.263     www      1561:         return '/adm/notfound.html';
                   1562:     }    
1.493     albertel 1563: }
                   1564: 
1.637     raeburn  1565: sub extract_embedded_items {
1.648     raeburn  1566:     my ($filepath,$file,$allfiles,$codebase,$content) = @_;
1.637     raeburn  1567:     my @state = ();
                   1568:     my %javafiles = (
                   1569:                       codebase => '',
                   1570:                       code => '',
                   1571:                       archive => ''
                   1572:                     );
                   1573:     my %mediafiles = (
                   1574:                       src => '',
                   1575:                       movie => '',
                   1576:                      );
1.648     raeburn  1577:     my $p;
                   1578:     if ($content) {
                   1579:         $p = HTML::LCParser->new($content);
                   1580:     } else {
                   1581:         $p = HTML::LCParser->new($filepath.'/'.$file);
                   1582:     }
1.641     albertel 1583:     while (my $t=$p->get_token()) {
1.640     albertel 1584: 	if ($t->[0] eq 'S') {
                   1585: 	    my ($tagname, $attr) = ($t->[1],$t->[2]);
                   1586: 	    push (@state, $tagname);
1.648     raeburn  1587:             if (lc($tagname) eq 'allow') {
                   1588:                 &add_filetype($allfiles,$attr->{'src'},'src');
                   1589:             }
1.640     albertel 1590: 	    if (lc($tagname) eq 'img') {
                   1591: 		&add_filetype($allfiles,$attr->{'src'},'src');
                   1592: 	    }
1.645     raeburn  1593:             if (lc($tagname) eq 'script') {
                   1594:                 if ($attr->{'archive'} =~ /\.jar$/i) {
                   1595:                     &add_filetype($allfiles,$attr->{'archive'},'archive');
                   1596:                 } else {
                   1597:                     &add_filetype($allfiles,$attr->{'src'},'src');
                   1598:                 }
                   1599:             }
                   1600:             if (lc($tagname) eq 'link') {
                   1601:                 if (lc($attr->{'rel'}) eq 'stylesheet') { 
                   1602:                     &add_filetype($allfiles,$attr->{'href'},'href');
                   1603:                 }
                   1604:             }
1.640     albertel 1605: 	    if (lc($tagname) eq 'object' ||
                   1606: 		(lc($tagname) eq 'embed' && lc($state[-2]) ne 'object')) {
                   1607: 		foreach my $item (keys(%javafiles)) {
                   1608: 		    $javafiles{$item} = '';
                   1609: 		}
                   1610: 	    }
                   1611: 	    if (lc($state[-2]) eq 'object' && lc($tagname) eq 'param') {
                   1612: 		my $name = lc($attr->{'name'});
                   1613: 		foreach my $item (keys(%javafiles)) {
                   1614: 		    if ($name eq $item) {
                   1615: 			$javafiles{$item} = $attr->{'value'};
                   1616: 			last;
                   1617: 		    }
                   1618: 		}
                   1619: 		foreach my $item (keys(%mediafiles)) {
                   1620: 		    if ($name eq $item) {
                   1621: 			&add_filetype($allfiles, $attr->{'value'}, 'value');
                   1622: 			last;
                   1623: 		    }
                   1624: 		}
                   1625: 	    }
                   1626: 	    if (lc($tagname) eq 'embed' || lc($tagname) eq 'applet') {
                   1627: 		foreach my $item (keys(%javafiles)) {
                   1628: 		    if ($attr->{$item}) {
                   1629: 			$javafiles{$item} = $attr->{$item};
                   1630: 			last;
                   1631: 		    }
                   1632: 		}
                   1633: 		foreach my $item (keys(%mediafiles)) {
                   1634: 		    if ($attr->{$item}) {
                   1635: 			&add_filetype($allfiles,$attr->{$item},$item);
                   1636: 			last;
                   1637: 		    }
                   1638: 		}
                   1639: 	    }
                   1640: 	} elsif ($t->[0] eq 'E') {
                   1641: 	    my ($tagname) = ($t->[1]);
                   1642: 	    if ($javafiles{'codebase'} ne '') {
                   1643: 		$javafiles{'codebase'} .= '/';
                   1644: 	    }  
                   1645: 	    if (lc($tagname) eq 'applet' ||
                   1646: 		lc($tagname) eq 'object' ||
                   1647: 		(lc($tagname) eq 'embed' && lc($state[-2]) ne 'object')
                   1648: 		) {
                   1649: 		foreach my $item (keys(%javafiles)) {
                   1650: 		    if ($item ne 'codebase' && $javafiles{$item} ne '') {
                   1651: 			my $file=$javafiles{'codebase'}.$javafiles{$item};
                   1652: 			&add_filetype($allfiles,$file,$item);
                   1653: 		    }
                   1654: 		}
                   1655: 	    } 
                   1656: 	    pop @state;
                   1657: 	}
                   1658:     }
1.637     raeburn  1659:     return 'ok';
                   1660: }
                   1661: 
1.639     albertel 1662: sub add_filetype {
                   1663:     my ($allfiles,$file,$type)=@_;
                   1664:     if (exists($allfiles->{$file})) {
                   1665: 	unless (grep/^\Q$type\E$/, @{$allfiles->{$file}}) {
                   1666: 	    push(@{$allfiles->{$file}}, &escape($type));
                   1667: 	}
                   1668:     } else {
                   1669: 	@{$allfiles->{$file}} = (&escape($type));
1.637     raeburn  1670:     }
                   1671: }
                   1672: 
1.493     albertel 1673: sub removeuploadedurl {
                   1674:     my ($url)=@_;
                   1675:     my (undef,undef,$udom,$uname,$fname)=split('/',$url,5);
1.613     albertel 1676:     return &removeuserfile($uname,$udom,$fname);
1.490     albertel 1677: }
                   1678: 
                   1679: sub removeuserfile {
                   1680:     my ($docuname,$docudom,$fname)=@_;
                   1681:     my $home=&homeserver($docuname,$docudom);
1.798     raeburn  1682:     my $result = &reply("removeuserfile:$docudom/$docuname/$fname",$home);
                   1683:     if ($result eq 'ok') {
                   1684:         if (($fname !~ /\.meta$/) && (&is_portfolio_file($fname))) {
                   1685:             my $metafile = $fname.'.meta';
                   1686:             my $metaresult = &removeuserfile($docuname,$docudom,$metafile); 
                   1687:         }
                   1688:     }
                   1689:     return $result;
1.257     www      1690: }
1.15      www      1691: 
1.530     albertel 1692: sub mkdiruserfile {
                   1693:     my ($docuname,$docudom,$dir)=@_;
                   1694:     my $home=&homeserver($docuname,$docudom);
                   1695:     return &reply("mkdiruserfile:".&escape("$docudom/$docuname/$dir"),$home);
                   1696: }
                   1697: 
1.531     albertel 1698: sub renameuserfile {
                   1699:     my ($docuname,$docudom,$old,$new)=@_;
                   1700:     my $home=&homeserver($docuname,$docudom);
1.798     raeburn  1701:     my $result = &reply("renameuserfile:$docudom:$docuname:".
                   1702:                         &escape("$old").':'.&escape("$new"),$home);
                   1703:     if ($result eq 'ok') {
                   1704:         if (($old !~ /\.meta$/) && (&is_portfolio_file($old))) {
                   1705:             my $oldmeta = $old.'.meta';
                   1706:             my $newmeta = $new.'.meta';
                   1707:             my $metaresult = 
                   1708:                 &renameuserfile($docuname,$docudom,$oldmeta,$newmeta);
                   1709:         }
                   1710:     }
                   1711:     return $result;
1.531     albertel 1712: }
                   1713: 
1.14      www      1714: # ------------------------------------------------------------------------- Log
                   1715: 
                   1716: sub log {
                   1717:     my ($dom,$nam,$hom,$what)=@_;
1.47      www      1718:     return critical("log:$dom:$nam:$what",$hom);
1.157     www      1719: }
                   1720: 
                   1721: # ------------------------------------------------------------------ Course Log
1.352     www      1722: #
                   1723: # This routine flushes several buffers of non-mission-critical nature
                   1724: #
1.157     www      1725: 
                   1726: sub flushcourselogs {
1.352     www      1727:     &logthis('Flushing log buffers');
                   1728: #
                   1729: # course logs
                   1730: # This is a log of all transactions in a course, which can be used
                   1731: # for data mining purposes
                   1732: #
                   1733: # It also collects the courseid database, which lists last transaction
                   1734: # times and course titles for all courseids
                   1735: #
                   1736:     my %courseidbuffer=();
1.800     albertel 1737:     foreach my $crsid (keys %courselogs) {
1.352     www      1738:         if (&reply('log:'.$coursedombuf{$crsid}.':'.$coursenumbuf{$crsid}.':'.
1.188     www      1739: 		          &escape($courselogs{$crsid}),
                   1740: 		          $coursehombuf{$crsid}) eq 'ok') {
1.157     www      1741: 	    delete $courselogs{$crsid};
                   1742:         } else {
                   1743:             &logthis('Failed to flush log buffer for '.$crsid);
                   1744:             if (length($courselogs{$crsid})>40000) {
1.672     albertel 1745:                &logthis("<font color=\"blue\">WARNING: Buffer for ".$crsid.
1.157     www      1746:                         " exceeded maximum size, deleting.</font>");
                   1747:                delete $courselogs{$crsid};
                   1748:             }
1.352     www      1749:         }
                   1750:         if ($courseidbuffer{$coursehombuf{$crsid}}) {
                   1751:            $courseidbuffer{$coursehombuf{$crsid}}.='&'.
1.516     raeburn  1752: 			 &escape($crsid).'='.&escape($coursedescrbuf{$crsid}).
1.741     raeburn  1753:                          ':'.&escape($courseinstcodebuf{$crsid}).':'.&escape($courseownerbuf{$crsid}).':'.&escape($coursetypebuf{$crsid});
1.352     www      1754:         } else {
                   1755:            $courseidbuffer{$coursehombuf{$crsid}}=
1.516     raeburn  1756: 			 &escape($crsid).'='.&escape($coursedescrbuf{$crsid}).
1.741     raeburn  1757:                          ':'.&escape($courseinstcodebuf{$crsid}).':'.&escape($courseownerbuf{$crsid}).':'.&escape($coursetypebuf{$crsid});
1.571     raeburn  1758:         }
1.191     harris41 1759:     }
1.352     www      1760: #
                   1761: # Write course id database (reverse lookup) to homeserver of courses 
                   1762: # Is used in pickcourse
                   1763: #
1.800     albertel 1764:     foreach my $crsid (keys(%courseidbuffer)) {
                   1765:         &courseidput($hostdom{$crsid},$courseidbuffer{$crsid},$crsid);
1.352     www      1766:     }
                   1767: #
                   1768: # File accesses
                   1769: # Writes to the dynamic metadata of resources to get hit counts, etc.
                   1770: #
1.449     matthew  1771:     foreach my $entry (keys(%accesshash)) {
1.458     matthew  1772:         if ($entry =~ /___count$/) {
                   1773:             my ($dom,$name);
1.807     albertel 1774:             ($dom,$name,undef)=
                   1775: 		($entry=~m{___($match_domain)/($match_username)/(.*)___count$});
1.458     matthew  1776:             if (! defined($dom) || $dom eq '' || 
                   1777:                 ! defined($name) || $name eq '') {
1.620     albertel 1778:                 my $cid = $env{'request.course.id'};
                   1779:                 $dom  = $env{'request.'.$cid.'.domain'};
                   1780:                 $name = $env{'request.'.$cid.'.num'};
1.458     matthew  1781:             }
1.450     matthew  1782:             my $value = $accesshash{$entry};
                   1783:             my (undef,$url,undef) = ($entry =~ /^(.*)___(.*)___count$/);
                   1784:             my %temphash=($url => $value);
1.449     matthew  1785:             my $result = &inc('nohist_accesscount',\%temphash,$dom,$name);
                   1786:             if ($result eq 'ok') {
                   1787:                 delete $accesshash{$entry};
                   1788:             } elsif ($result eq 'unknown_cmd') {
                   1789:                 # Target server has old code running on it.
1.450     matthew  1790:                 my %temphash=($entry => $value);
1.449     matthew  1791:                 if (&put('nohist_resevaldata',\%temphash,$dom,$name) eq 'ok') {
                   1792:                     delete $accesshash{$entry};
                   1793:                 }
                   1794:             }
                   1795:         } else {
1.807     albertel 1796:             my ($dom,$name) = ($entry=~m{___($match_domain)/($match_username)/(.*)___(\w+)$});
1.450     matthew  1797:             my %temphash=($entry => $accesshash{$entry});
1.449     matthew  1798:             if (&put('nohist_resevaldata',\%temphash,$dom,$name) eq 'ok') {
                   1799:                 delete $accesshash{$entry};
                   1800:             }
1.185     www      1801:         }
1.191     harris41 1802:     }
1.352     www      1803: #
                   1804: # Roles
                   1805: # Reverse lookup of user roles for course faculty/staff and co-authorship
                   1806: #
1.800     albertel 1807:     foreach my $entry (keys(%userrolehash)) {
1.351     www      1808:         my ($role,$uname,$udom,$runame,$rudom,$rsec)=
1.349     www      1809: 	    split(/\:/,$entry);
                   1810:         if (&Apache::lonnet::put('nohist_userroles',
1.351     www      1811:              { $role.':'.$uname.':'.$udom.':'.$rsec => $userrolehash{$entry} },
1.349     www      1812:                 $rudom,$runame) eq 'ok') {
                   1813: 	    delete $userrolehash{$entry};
                   1814:         }
                   1815:     }
1.662     raeburn  1816: #
                   1817: # Reverse lookup of domain roles (dc, ad, li, sc, au)
                   1818: #
                   1819:     my %domrolebuffer = ();
                   1820:     foreach my $entry (keys %domainrolehash) {
                   1821:         my ($role,$uname,$udom,$runame,$rudom,$rsec)=split/:/,$entry;
                   1822:         if ($domrolebuffer{$rudom}) {
                   1823:             $domrolebuffer{$rudom}.='&'.&escape($entry).
                   1824:                       '='.&escape($domainrolehash{$entry});
                   1825:         } else {
                   1826:             $domrolebuffer{$rudom}.=&escape($entry).
                   1827:                       '='.&escape($domainrolehash{$entry});
                   1828:         }
                   1829:         delete $domainrolehash{$entry};
                   1830:     }
                   1831:     foreach my $dom (keys(%domrolebuffer)) {
                   1832:         foreach my $tryserver (keys %libserv) {
                   1833:             if ($hostdom{$tryserver} eq $dom) {
                   1834:                 unless (&reply('domroleput:'.$dom.':'.
                   1835:                   $domrolebuffer{$dom},$tryserver) eq 'ok') {
                   1836:                     &logthis('Put of domain roles failed for '.$dom.' and  '.$tryserver);
                   1837:                 }
                   1838:             }
                   1839:         }
                   1840:     }
1.186     www      1841:     $dumpcount++;
1.157     www      1842: }
                   1843: 
                   1844: sub courselog {
                   1845:     my $what=shift;
1.158     www      1846:     $what=time.':'.$what;
1.620     albertel 1847:     unless ($env{'request.course.id'}) { return ''; }
                   1848:     $coursedombuf{$env{'request.course.id'}}=
                   1849:        $env{'course.'.$env{'request.course.id'}.'.domain'};
                   1850:     $coursenumbuf{$env{'request.course.id'}}=
                   1851:        $env{'course.'.$env{'request.course.id'}.'.num'};
                   1852:     $coursehombuf{$env{'request.course.id'}}=
                   1853:        $env{'course.'.$env{'request.course.id'}.'.home'};
                   1854:     $coursedescrbuf{$env{'request.course.id'}}=
                   1855:        $env{'course.'.$env{'request.course.id'}.'.description'};
                   1856:     $courseinstcodebuf{$env{'request.course.id'}}=
                   1857:        $env{'course.'.$env{'request.course.id'}.'.internal.coursecode'};
                   1858:     $courseownerbuf{$env{'request.course.id'}}=
                   1859:        $env{'course.'.$env{'request.course.id'}.'.internal.courseowner'};
1.741     raeburn  1860:     $coursetypebuf{$env{'request.course.id'}}=
                   1861:        $env{'course.'.$env{'request.course.id'}.'.type'};
1.620     albertel 1862:     if (defined $courselogs{$env{'request.course.id'}}) {
                   1863: 	$courselogs{$env{'request.course.id'}}.='&'.$what;
1.157     www      1864:     } else {
1.620     albertel 1865: 	$courselogs{$env{'request.course.id'}}.=$what;
1.157     www      1866:     }
1.620     albertel 1867:     if (length($courselogs{$env{'request.course.id'}})>4048) {
1.157     www      1868: 	&flushcourselogs();
                   1869:     }
1.158     www      1870: }
                   1871: 
                   1872: sub courseacclog {
                   1873:     my $fnsymb=shift;
1.620     albertel 1874:     unless ($env{'request.course.id'}) { return ''; }
                   1875:     my $what=$fnsymb.':'.$env{'user.name'}.':'.$env{'user.domain'};
1.657     albertel 1876:     if ($fnsymb=~/(problem|exam|quiz|assess|survey|form|task|page)$/) {
1.187     www      1877:         $what.=':POST';
1.583     matthew  1878:         # FIXME: Probably ought to escape things....
1.800     albertel 1879: 	foreach my $key (keys(%env)) {
                   1880:             if ($key=~/^form\.(.*)/) {
                   1881: 		$what.=':'.$1.'='.$env{$key};
1.158     www      1882:             }
1.191     harris41 1883:         }
1.583     matthew  1884:     } elsif ($fnsymb =~ m:^/adm/searchcat:) {
                   1885:         # FIXME: We should not be depending on a form parameter that someone
                   1886:         # editing lonsearchcat.pm might change in the future.
1.620     albertel 1887:         if ($env{'form.phase'} eq 'course_search') {
1.583     matthew  1888:             $what.= ':POST';
                   1889:             # FIXME: Probably ought to escape things....
                   1890:             foreach my $element ('courseexp','crsfulltext','crsrelated',
                   1891:                                  'crsdiscuss') {
1.620     albertel 1892:                 $what.=':'.$element.'='.$env{'form.'.$element};
1.583     matthew  1893:             }
                   1894:         }
1.158     www      1895:     }
                   1896:     &courselog($what);
1.149     www      1897: }
                   1898: 
1.185     www      1899: sub countacc {
                   1900:     my $url=&declutter(shift);
1.458     matthew  1901:     return if (! defined($url) || $url eq '');
1.620     albertel 1902:     unless ($env{'request.course.id'}) { return ''; }
                   1903:     $accesshash{$env{'request.course.id'}.'___'.$url.'___course'}=1;
1.281     www      1904:     my $key=$$.$processmarker.'_'.$dumpcount.'___'.$url.'___count';
1.450     matthew  1905:     $accesshash{$key}++;
1.185     www      1906: }
1.349     www      1907: 
1.361     www      1908: sub linklog {
                   1909:     my ($from,$to)=@_;
                   1910:     $from=&declutter($from);
                   1911:     $to=&declutter($to);
                   1912:     $accesshash{$from.'___'.$to.'___comefrom'}=1;
                   1913:     $accesshash{$to.'___'.$from.'___goto'}=1;
                   1914: }
                   1915:   
1.349     www      1916: sub userrolelog {
                   1917:     my ($trole,$username,$domain,$area,$tstart,$tend)=@_;
1.661     raeburn  1918:     if (($trole=~/^ca/) || ($trole=~/^aa/) ||
1.662     raeburn  1919:         ($trole=~/^in/) || ($trole=~/^cc/) ||
1.661     raeburn  1920:         ($trole=~/^ep/) || ($trole=~/^cr/) ||
                   1921:         ($trole=~/^ta/)) {
1.350     www      1922:        my (undef,$rudom,$runame,$rsec)=split(/\//,$area);
                   1923:        $userrolehash
                   1924:          {$trole.':'.$username.':'.$domain.':'.$runame.':'.$rudom.':'.$rsec}
1.349     www      1925:                     =$tend.':'.$tstart;
1.662     raeburn  1926:     }
                   1927:     if (($trole=~/^dc/) || ($trole=~/^ad/) ||
                   1928:         ($trole=~/^li/) || ($trole=~/^li/) ||
                   1929:         ($trole=~/^au/) || ($trole=~/^dg/) ||
                   1930:         ($trole=~/^sc/)) {
                   1931:        my (undef,$rudom,$runame,$rsec)=split(/\//,$area);
                   1932:        $domainrolehash
                   1933:          {$trole.':'.$username.':'.$domain.':'.$runame.':'.$rudom.':'.$rsec}
                   1934:                     = $tend.':'.$tstart;
                   1935:     }
1.351     www      1936: }
                   1937: 
                   1938: sub get_course_adv_roles {
                   1939:     my $cid=shift;
1.620     albertel 1940:     $cid=$env{'request.course.id'} unless (defined($cid));
1.351     www      1941:     my %coursehash=&coursedescription($cid);
1.470     www      1942:     my %nothide=();
1.800     albertel 1943:     foreach my $user (split(/\s*\,\s*/,$coursehash{'nothideprivileged'})) {
                   1944: 	$nothide{join(':',split(/[\@\:]/,$user))}=1;
1.470     www      1945:     }
1.351     www      1946:     my %returnhash=();
                   1947:     my %dumphash=
                   1948:             &dump('nohist_userroles',$coursehash{'domain'},$coursehash{'num'});
                   1949:     my $now=time;
1.800     albertel 1950:     foreach my $entry (keys %dumphash) {
                   1951: 	my ($tend,$tstart)=split(/\:/,$dumphash{$entry});
1.351     www      1952:         if (($tstart) && ($tstart<0)) { next; }
                   1953:         if (($tend) && ($tend<$now)) { next; }
                   1954:         if (($tstart) && ($now<$tstart)) { next; }
1.800     albertel 1955:         my ($role,$username,$domain,$section)=split(/\:/,$entry);
1.576     albertel 1956: 	if ($username eq '' || $domain eq '') { next; }
1.470     www      1957: 	if ((&privileged($username,$domain)) && 
                   1958: 	    (!$nothide{$username.':'.$domain})) { next; }
1.656     albertel 1959: 	if ($role eq 'cr') { next; }
1.351     www      1960:         my $key=&plaintext($role);
                   1961:         if ($section) { $key.=' (Sec/Grp '.$section.')'; }
                   1962:         if ($returnhash{$key}) {
                   1963: 	    $returnhash{$key}.=','.$username.':'.$domain;
                   1964:         } else {
                   1965:             $returnhash{$key}=$username.':'.$domain;
                   1966:         }
1.400     www      1967:      }
                   1968:     return %returnhash;
                   1969: }
                   1970: 
                   1971: sub get_my_roles {
                   1972:     my ($uname,$udom)=@_;
1.620     albertel 1973:     unless (defined($uname)) { $uname=$env{'user.name'}; }
                   1974:     unless (defined($udom)) { $udom=$env{'user.domain'}; }
1.400     www      1975:     my %dumphash=
                   1976:             &dump('nohist_userroles',$udom,$uname);
                   1977:     my %returnhash=();
                   1978:     my $now=time;
1.800     albertel 1979:     foreach my $entry (keys(%dumphash)) {
                   1980: 	my ($tend,$tstart)=split(/\:/,$dumphash{$entry});
1.400     www      1981:         if (($tstart) && ($tstart<0)) { next; }
                   1982:         if (($tend) && ($tend<$now)) { next; }
                   1983:         if (($tstart) && ($now<$tstart)) { next; }
1.800     albertel 1984:         my ($role,$username,$domain,$section)=split(/\:/,$entry);
1.400     www      1985: 	$returnhash{$username.':'.$domain.':'.$role}=$tstart.':'.$tend;
1.373     www      1986:      }
                   1987:     return %returnhash;
1.399     www      1988: }
                   1989: 
                   1990: # ----------------------------------------------------- Frontpage Announcements
                   1991: #
                   1992: #
                   1993: 
                   1994: sub postannounce {
                   1995:     my ($server,$text)=@_;
                   1996:     unless (&allowed('psa',$hostdom{$server})) { return 'refused'; }
                   1997:     unless ($text=~/\w/) { $text=''; }
                   1998:     return &reply('setannounce:'.&escape($text),$server);
                   1999: }
                   2000: 
                   2001: sub getannounce {
1.448     albertel 2002: 
                   2003:     if (open(my $fh,$perlvar{'lonDocRoot'}.'/announcement.txt')) {
1.399     www      2004: 	my $announcement='';
1.800     albertel 2005: 	while (my $line = <$fh>) { $announcement .= $line; }
1.448     albertel 2006: 	close($fh);
1.399     www      2007: 	if ($announcement=~/\w/) { 
                   2008: 	    return 
                   2009:    '<table bgcolor="#FF5555" cellpadding="5" cellspacing="3">'.
1.518     albertel 2010:    '<tr><td bgcolor="#FFFFFF"><tt>'.$announcement.'</tt></td></tr></table>'; 
1.399     www      2011: 	} else {
                   2012: 	    return '';
                   2013: 	}
                   2014:     } else {
                   2015: 	return '';
                   2016:     }
1.351     www      2017: }
1.353     www      2018: 
                   2019: # ---------------------------------------------------------- Course ID routines
                   2020: # Deal with domain's nohist_courseid.db files
                   2021: #
                   2022: 
                   2023: sub courseidput {
                   2024:     my ($domain,$what,$coursehome)=@_;
                   2025:     return &reply('courseidput:'.$domain.':'.$what,$coursehome);
                   2026: }
                   2027: 
                   2028: sub courseiddump {
1.791     raeburn  2029:     my ($domfilter,$descfilter,$sincefilter,$instcodefilter,$ownerfilter,$coursefilter,$hostidflag,$hostidref,$typefilter,$regexp_ok)=@_;
1.353     www      2030:     my %returnhash=();
1.355     www      2031:     unless ($domfilter) { $domfilter=''; }
1.353     www      2032:     foreach my $tryserver (keys %libserv) {
1.511     raeburn  2033:         if ( ($hostidflag == 1 && grep/^$tryserver$/,@{$hostidref}) || (!defined($hostidflag)) ) {
1.506     raeburn  2034: 	    if ((!$domfilter) || ($hostdom{$tryserver} eq $domfilter)) {
1.800     albertel 2035: 	        foreach my $line (
1.506     raeburn  2036:                  split(/\&/,&reply('courseiddump:'.$hostdom{$tryserver}.':'.
1.571     raeburn  2037: 			       $sincefilter.':'.&escape($descfilter).':'.
1.791     raeburn  2038:                                &escape($instcodefilter).':'.&escape($ownerfilter).':'.&escape($coursefilter).':'.&escape($typefilter).':'.&escape($regexp_ok),
1.354     www      2039:                                $tryserver))) {
1.800     albertel 2040: 		    my ($key,$value)=split(/\=/,$line,2);
1.506     raeburn  2041:                     if (($key) && ($value)) {
1.516     raeburn  2042: 		        $returnhash{&unescape($key)}=$value;
1.506     raeburn  2043:                     }
1.353     www      2044:                 }
                   2045:             }
                   2046:         }
                   2047:     }
                   2048:     return %returnhash;
                   2049: }
                   2050: 
1.658     raeburn  2051: # ---------------------------------------------------------- DC e-mail
1.662     raeburn  2052: 
                   2053: sub dcmailput {
1.685     raeburn  2054:     my ($domain,$msgid,$message,$server)=@_;
1.662     raeburn  2055:     my $status = &Apache::lonnet::critical(
1.740     www      2056:        'dcmailput:'.$domain.':'.&escape($msgid).'='.
                   2057:        &escape($message),$server);
1.662     raeburn  2058:     return $status;
                   2059: }
                   2060: 
1.658     raeburn  2061: sub dcmaildump {
                   2062:     my ($dom,$startdate,$enddate,$senders) = @_;
1.685     raeburn  2063:     my %returnhash=();
                   2064:     if (exists($domain_primary{$dom})) {
                   2065:         my $cmd='dcmaildump:'.$dom.':'.&escape($startdate).':'.
                   2066:                                                          &escape($enddate).':';
                   2067: 	my @esc_senders=map { &escape($_)} @$senders;
                   2068: 	$cmd.=&escape(join('&',@esc_senders));
1.800     albertel 2069: 	foreach my $line (split(/\&/,&reply($cmd,$domain_primary{$dom}))) {
                   2070:             my ($key,$value) = split(/\=/,$line,2);
1.685     raeburn  2071:             if (($key) && ($value)) {
                   2072:                 $returnhash{&unescape($key)} = &unescape($value);
1.658     raeburn  2073:             }
                   2074:         }
                   2075:     }
                   2076:     return %returnhash;
                   2077: }
1.662     raeburn  2078: # ---------------------------------------------------------- Domain roles
                   2079: 
                   2080: sub get_domain_roles {
                   2081:     my ($dom,$roles,$startdate,$enddate)=@_;
                   2082:     if (undef($startdate) || $startdate eq '') {
                   2083:         $startdate = '.';
                   2084:     }
                   2085:     if (undef($enddate) || $enddate eq '') {
                   2086:         $enddate = '.';
                   2087:     }
                   2088:     my $rolelist = join(':',@{$roles});
                   2089:     my %personnel = ();
                   2090:     foreach my $tryserver (keys(%libserv)) {
                   2091:         if ($hostdom{$tryserver} eq $dom) {
                   2092:             %{$personnel{$tryserver}}=();
1.800     albertel 2093:             foreach my $line (
1.662     raeburn  2094:                 split(/\&/,&reply('domrolesdump:'.$dom.':'.
                   2095:                    &escape($startdate).':'.&escape($enddate).':'.
                   2096:                    &escape($rolelist), $tryserver))) {
1.800     albertel 2097:                 my ($key,$value) = split(/\=/,$line,2);
1.662     raeburn  2098:                 if (($key) && ($value)) {
                   2099:                     $personnel{$tryserver}{&unescape($key)} = &unescape($value);
                   2100:                 }
                   2101:             }
                   2102:         }
                   2103:     }
                   2104:     return %personnel;
                   2105: }
1.658     raeburn  2106: 
1.149     www      2107: # ----------------------------------------------------------- Check out an item
                   2108: 
1.504     albertel 2109: sub get_first_access {
                   2110:     my ($type,$argsymb)=@_;
1.790     albertel 2111:     my ($symb,$courseid,$udom,$uname)=&whichuser();
1.504     albertel 2112:     if ($argsymb) { $symb=$argsymb; }
                   2113:     my ($map,$id,$res)=&decode_symb($symb);
1.588     albertel 2114:     if ($type eq 'map') {
                   2115: 	$res=&symbread($map);
                   2116:     } else {
                   2117: 	$res=$symb;
                   2118:     }
                   2119:     my %times=&get('firstaccesstimes',["$courseid\0$res"],$udom,$uname);
                   2120:     return $times{"$courseid\0$res"};
1.504     albertel 2121: }
                   2122: 
                   2123: sub set_first_access {
                   2124:     my ($type)=@_;
1.790     albertel 2125:     my ($symb,$courseid,$udom,$uname)=&whichuser();
1.504     albertel 2126:     my ($map,$id,$res)=&decode_symb($symb);
1.588     albertel 2127:     if ($type eq 'map') {
                   2128: 	$res=&symbread($map);
                   2129:     } else {
                   2130: 	$res=$symb;
                   2131:     }
                   2132:     my $firstaccess=&get_first_access($type,$symb);
1.505     albertel 2133:     if (!$firstaccess) {
1.588     albertel 2134: 	return &put('firstaccesstimes',{"$courseid\0$res"=>time},$udom,$uname);
1.505     albertel 2135:     }
                   2136:     return 'already_set';
1.504     albertel 2137: }
                   2138: 
1.149     www      2139: sub checkout {
                   2140:     my ($symb,$tuname,$tudom,$tcrsid)=@_;
                   2141:     my $now=time;
                   2142:     my $lonhost=$perlvar{'lonHostID'};
                   2143:     my $infostr=&escape(
1.234     www      2144:                  'CHECKOUTTOKEN&'.
1.149     www      2145:                  $tuname.'&'.
                   2146:                  $tudom.'&'.
                   2147:                  $tcrsid.'&'.
                   2148:                  $symb.'&'.
                   2149: 		 $now.'&'.$ENV{'REMOTE_ADDR'});
                   2150:     my $token=&reply('tmpput:'.$infostr,$lonhost);
1.151     www      2151:     if ($token=~/^error\:/) { 
1.672     albertel 2152:         &logthis("<font color=\"blue\">WARNING: ".
1.151     www      2153:                 "Checkout tmpput failed ".$tudom.' - '.$tuname.' - '.$symb.
                   2154:                  "</font>");
                   2155:         return ''; 
                   2156:     }
                   2157: 
1.149     www      2158:     $token=~s/^(\d+)\_.*\_(\d+)$/$1\*$2\*$lonhost/;
                   2159:     $token=~tr/a-z/A-Z/;
                   2160: 
1.153     www      2161:     my %infohash=('resource.0.outtoken' => $token,
                   2162:                   'resource.0.checkouttime' => $now,
                   2163:                   'resource.0.outremote' => $ENV{'REMOTE_ADDR'});
1.149     www      2164: 
                   2165:     unless (&cstore(\%infohash,$symb,$tcrsid,$tudom,$tuname) eq 'ok') {
                   2166:        return '';
1.151     www      2167:     } else {
1.672     albertel 2168:         &logthis("<font color=\"blue\">WARNING: ".
1.151     www      2169:                 "Checkout cstore failed ".$tudom.' - '.$tuname.' - '.$symb.
                   2170:                  "</font>");
1.149     www      2171:     }    
                   2172: 
                   2173:     if (&log($tudom,$tuname,&homeserver($tuname,$tudom),
                   2174:                          &escape('Checkout '.$infostr.' - '.
                   2175:                                                  $token)) ne 'ok') {
                   2176: 	return '';
1.151     www      2177:     } else {
1.672     albertel 2178:         &logthis("<font color=\"blue\">WARNING: ".
1.151     www      2179:                 "Checkout log failed ".$tudom.' - '.$tuname.' - '.$symb.
                   2180:                  "</font>");
1.149     www      2181:     }
1.151     www      2182:     return $token;
1.149     www      2183: }
                   2184: 
                   2185: # ------------------------------------------------------------ Check in an item
                   2186: 
                   2187: sub checkin {
                   2188:     my $token=shift;
1.150     www      2189:     my $now=time;
                   2190:     my ($ta,$tb,$lonhost)=split(/\*/,$token);
                   2191:     $lonhost=~tr/A-Z/a-z/;
1.595     albertel 2192:     my $dtoken=$ta.'_'.$hostname{$lonhost}.'_'.$tb;
1.150     www      2193:     $dtoken=~s/\W/\_/g;
1.234     www      2194:     my ($dummy,$tuname,$tudom,$tcrsid,$symb,$chtim,$rmaddr)=
1.150     www      2195:                  split(/\&/,&unescape(&reply('tmpget:'.$dtoken,$lonhost)));
                   2196: 
1.154     www      2197:     unless (($tuname) && ($tudom)) {
                   2198:         &logthis('Check in '.$token.' ('.$dtoken.') failed');
                   2199:         return '';
                   2200:     }
                   2201:     
                   2202:     unless (&allowed('mgr',$tcrsid)) {
                   2203:         &logthis('Check in '.$token.' ('.$dtoken.') unauthorized: '.
1.620     albertel 2204:                  $env{'user.name'}.' - '.$env{'user.domain'});
1.154     www      2205:         return '';
                   2206:     }
                   2207: 
1.153     www      2208:     my %infohash=('resource.0.intoken' => $token,
                   2209:                   'resource.0.checkintime' => $now,
                   2210:                   'resource.0.inremote' => $ENV{'REMOTE_ADDR'});
1.150     www      2211: 
                   2212:     unless (&cstore(\%infohash,$symb,$tcrsid,$tudom,$tuname) eq 'ok') {
                   2213:        return '';
                   2214:     }    
                   2215: 
                   2216:     if (&log($tudom,$tuname,&homeserver($tuname,$tudom),
                   2217:                          &escape('Checkin - '.$token)) ne 'ok') {
                   2218: 	return '';
                   2219:     }
                   2220: 
                   2221:     return ($symb,$tuname,$tudom,$tcrsid);    
1.110     www      2222: }
                   2223: 
                   2224: # --------------------------------------------- Set Expire Date for Spreadsheet
                   2225: 
                   2226: sub expirespread {
                   2227:     my ($uname,$udom,$stype,$usymb)=@_;
1.620     albertel 2228:     my $cid=$env{'request.course.id'}; 
1.110     www      2229:     if ($cid) {
                   2230:        my $now=time;
                   2231:        my $key=$uname.':'.$udom.':'.$stype.':'.$usymb;
1.620     albertel 2232:        return &reply('put:'.$env{'course.'.$cid.'.domain'}.':'.
                   2233:                             $env{'course.'.$cid.'.num'}.
1.110     www      2234: 	        	    ':nohist_expirationdates:'.
                   2235:                             &escape($key).'='.$now,
1.620     albertel 2236:                             $env{'course.'.$cid.'.home'})
1.110     www      2237:     }
                   2238:     return 'ok';
1.14      www      2239: }
                   2240: 
1.109     www      2241: # ----------------------------------------------------- Devalidate Spreadsheets
                   2242: 
                   2243: sub devalidate {
1.325     www      2244:     my ($symb,$uname,$udom)=@_;
1.620     albertel 2245:     my $cid=$env{'request.course.id'}; 
1.109     www      2246:     if ($cid) {
1.391     matthew  2247:         # delete the stored spreadsheets for
                   2248:         # - the student level sheet of this user in course's homespace
                   2249:         # - the assessment level sheet for this resource 
                   2250:         #   for this user in user's homespace
1.553     albertel 2251: 	# - current conditional state info
1.325     www      2252: 	my $key=$uname.':'.$udom.':';
1.109     www      2253:         my $status=
1.299     matthew  2254: 	    &del('nohist_calculatedsheets',
1.391     matthew  2255: 		 [$key.'studentcalc:'],
1.620     albertel 2256: 		 $env{'course.'.$cid.'.domain'},
                   2257: 		 $env{'course.'.$cid.'.num'})
1.133     albertel 2258: 		.' '.
                   2259: 	    &del('nohist_calculatedsheets_'.$cid,
1.391     matthew  2260: 		 [$key.'assesscalc:'.$symb],$udom,$uname);
1.109     www      2261:         unless ($status eq 'ok ok') {
                   2262:            &logthis('Could not devalidate spreadsheet '.
1.325     www      2263:                     $uname.' at '.$udom.' for '.
1.109     www      2264: 		    $symb.': '.$status);
1.133     albertel 2265:         }
1.553     albertel 2266: 	&delenv('user.state.'.$cid);
1.109     www      2267:     }
                   2268: }
                   2269: 
1.265     albertel 2270: sub get_scalar {
                   2271:     my ($string,$end) = @_;
                   2272:     my $value;
                   2273:     if ($$string =~ s/^([^&]*?)($end)/$2/) {
                   2274: 	$value = $1;
                   2275:     } elsif ($$string =~ s/^([^&]*?)&//) {
                   2276: 	$value = $1;
                   2277:     }
                   2278:     return &unescape($value);
                   2279: }
                   2280: 
                   2281: sub array2str {
                   2282:   my (@array) = @_;
                   2283:   my $result=&arrayref2str(\@array);
                   2284:   $result=~s/^__ARRAY_REF__//;
                   2285:   $result=~s/__END_ARRAY_REF__$//;
                   2286:   return $result;
                   2287: }
                   2288: 
1.204     albertel 2289: sub arrayref2str {
                   2290:   my ($arrayref) = @_;
1.265     albertel 2291:   my $result='__ARRAY_REF__';
1.204     albertel 2292:   foreach my $elem (@$arrayref) {
1.265     albertel 2293:     if(ref($elem) eq 'ARRAY') {
                   2294:       $result.=&arrayref2str($elem).'&';
                   2295:     } elsif(ref($elem) eq 'HASH') {
                   2296:       $result.=&hashref2str($elem).'&';
                   2297:     } elsif(ref($elem)) {
                   2298:       #print("Got a ref of ".(ref($elem))." skipping.");
1.204     albertel 2299:     } else {
                   2300:       $result.=&escape($elem).'&';
                   2301:     }
                   2302:   }
                   2303:   $result=~s/\&$//;
1.265     albertel 2304:   $result .= '__END_ARRAY_REF__';
1.204     albertel 2305:   return $result;
                   2306: }
                   2307: 
1.168     albertel 2308: sub hash2str {
1.204     albertel 2309:   my (%hash) = @_;
                   2310:   my $result=&hashref2str(\%hash);
1.265     albertel 2311:   $result=~s/^__HASH_REF__//;
                   2312:   $result=~s/__END_HASH_REF__$//;
1.204     albertel 2313:   return $result;
                   2314: }
                   2315: 
                   2316: sub hashref2str {
                   2317:   my ($hashref)=@_;
1.265     albertel 2318:   my $result='__HASH_REF__';
1.800     albertel 2319:   foreach my $key (sort(keys(%$hashref))) {
                   2320:     if (ref($key) eq 'ARRAY') {
                   2321:       $result.=&arrayref2str($key).'=';
                   2322:     } elsif (ref($key) eq 'HASH') {
                   2323:       $result.=&hashref2str($key).'=';
                   2324:     } elsif (ref($key)) {
1.265     albertel 2325:       $result.='=';
1.800     albertel 2326:       #print("Got a ref of ".(ref($key))." skipping.");
1.204     albertel 2327:     } else {
1.800     albertel 2328: 	if ($key) {$result.=&escape($key).'=';} else { last; }
1.204     albertel 2329:     }
                   2330: 
1.800     albertel 2331:     if(ref($hashref->{$key}) eq 'ARRAY') {
                   2332:       $result.=&arrayref2str($hashref->{$key}).'&';
                   2333:     } elsif(ref($hashref->{$key}) eq 'HASH') {
                   2334:       $result.=&hashref2str($hashref->{$key}).'&';
                   2335:     } elsif(ref($hashref->{$key})) {
1.265     albertel 2336:        $result.='&';
1.800     albertel 2337:       #print("Got a ref of ".(ref($hashref->{$key}))." skipping.");
1.204     albertel 2338:     } else {
1.800     albertel 2339:       $result.=&escape($hashref->{$key}).'&';
1.204     albertel 2340:     }
                   2341:   }
1.168     albertel 2342:   $result=~s/\&$//;
1.265     albertel 2343:   $result .= '__END_HASH_REF__';
1.168     albertel 2344:   return $result;
                   2345: }
                   2346: 
                   2347: sub str2hash {
1.265     albertel 2348:     my ($string)=@_;
                   2349:     my ($hash)=&str2hashref('__HASH_REF__'.$string.'__END_HASH_REF__');
                   2350:     return %$hash;
                   2351: }
                   2352: 
                   2353: sub str2hashref {
1.168     albertel 2354:   my ($string) = @_;
1.265     albertel 2355: 
                   2356:   my %hash;
                   2357: 
                   2358:   if($string !~ /^__HASH_REF__/) {
                   2359:       if (! ($string eq '' || !defined($string))) {
                   2360: 	  $hash{'error'}='Not hash reference';
                   2361:       }
                   2362:       return (\%hash, $string);
                   2363:   }
                   2364: 
                   2365:   $string =~ s/^__HASH_REF__//;
                   2366: 
                   2367:   while($string !~ /^__END_HASH_REF__/) {
                   2368:       #key
                   2369:       my $key='';
                   2370:       if($string =~ /^__HASH_REF__/) {
                   2371:           ($key, $string)=&str2hashref($string);
                   2372:           if(defined($key->{'error'})) {
                   2373:               $hash{'error'}='Bad data';
                   2374:               return (\%hash, $string);
                   2375:           }
                   2376:       } elsif($string =~ /^__ARRAY_REF__/) {
                   2377:           ($key, $string)=&str2arrayref($string);
                   2378:           if($key->[0] eq 'Array reference error') {
                   2379:               $hash{'error'}='Bad data';
                   2380:               return (\%hash, $string);
                   2381:           }
                   2382:       } else {
                   2383:           $string =~ s/^(.*?)=//;
1.267     albertel 2384: 	  $key=&unescape($1);
1.265     albertel 2385:       }
                   2386:       $string =~ s/^=//;
                   2387: 
                   2388:       #value
                   2389:       my $value='';
                   2390:       if($string =~ /^__HASH_REF__/) {
                   2391:           ($value, $string)=&str2hashref($string);
                   2392:           if(defined($value->{'error'})) {
                   2393:               $hash{'error'}='Bad data';
                   2394:               return (\%hash, $string);
                   2395:           }
                   2396:       } elsif($string =~ /^__ARRAY_REF__/) {
                   2397:           ($value, $string)=&str2arrayref($string);
                   2398:           if($value->[0] eq 'Array reference error') {
                   2399:               $hash{'error'}='Bad data';
                   2400:               return (\%hash, $string);
                   2401:           }
                   2402:       } else {
                   2403: 	  $value=&get_scalar(\$string,'__END_HASH_REF__');
                   2404:       }
                   2405:       $string =~ s/^&//;
                   2406: 
                   2407:       $hash{$key}=$value;
1.204     albertel 2408:   }
1.265     albertel 2409: 
                   2410:   $string =~ s/^__END_HASH_REF__//;
                   2411: 
                   2412:   return (\%hash, $string);
1.204     albertel 2413: }
                   2414: 
                   2415: sub str2array {
1.265     albertel 2416:     my ($string)=@_;
                   2417:     my ($array)=&str2arrayref('__ARRAY_REF__'.$string.'__END_ARRAY_REF__');
                   2418:     return @$array;
                   2419: }
                   2420: 
                   2421: sub str2arrayref {
1.204     albertel 2422:   my ($string) = @_;
1.265     albertel 2423:   my @array;
                   2424: 
                   2425:   if($string !~ /^__ARRAY_REF__/) {
                   2426:       if (! ($string eq '' || !defined($string))) {
                   2427: 	  $array[0]='Array reference error';
                   2428:       }
                   2429:       return (\@array, $string);
                   2430:   }
                   2431: 
                   2432:   $string =~ s/^__ARRAY_REF__//;
                   2433: 
                   2434:   while($string !~ /^__END_ARRAY_REF__/) {
                   2435:       my $value='';
                   2436:       if($string =~ /^__HASH_REF__/) {
                   2437:           ($value, $string)=&str2hashref($string);
                   2438:           if(defined($value->{'error'})) {
                   2439:               $array[0] ='Array reference error';
                   2440:               return (\@array, $string);
                   2441:           }
                   2442:       } elsif($string =~ /^__ARRAY_REF__/) {
                   2443:           ($value, $string)=&str2arrayref($string);
                   2444:           if($value->[0] eq 'Array reference error') {
                   2445:               $array[0] ='Array reference error';
                   2446:               return (\@array, $string);
                   2447:           }
                   2448:       } else {
                   2449: 	  $value=&get_scalar(\$string,'__END_ARRAY_REF__');
                   2450:       }
                   2451:       $string =~ s/^&//;
                   2452: 
                   2453:       push(@array, $value);
1.191     harris41 2454:   }
1.265     albertel 2455: 
                   2456:   $string =~ s/^__END_ARRAY_REF__//;
                   2457: 
                   2458:   return (\@array, $string);
1.168     albertel 2459: }
                   2460: 
1.167     albertel 2461: # -------------------------------------------------------------------Temp Store
                   2462: 
1.168     albertel 2463: sub tmpreset {
                   2464:   my ($symb,$namespace,$domain,$stuname) = @_;
                   2465:   if (!$symb) {
                   2466:     $symb=&symbread();
1.620     albertel 2467:     if (!$symb) { $symb= $env{'request.url'}; }
1.168     albertel 2468:   }
                   2469:   $symb=escape($symb);
                   2470: 
1.620     albertel 2471:   if (!$namespace) { $namespace=$env{'request.state'}; }
1.168     albertel 2472:   $namespace=~s/\//\_/g;
                   2473:   $namespace=~s/\W//g;
                   2474: 
1.620     albertel 2475:   if (!$domain) { $domain=$env{'user.domain'}; }
                   2476:   if (!$stuname) { $stuname=$env{'user.name'}; }
1.591     albertel 2477:   if ($domain eq 'public' && $stuname eq 'public') {
                   2478:       $stuname=$ENV{'REMOTE_ADDR'};
                   2479:   }
1.168     albertel 2480:   my $path=$perlvar{'lonDaemons'}.'/tmp';
                   2481:   my %hash;
                   2482:   if (tie(%hash,'GDBM_File',
                   2483: 	  $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
1.256     albertel 2484: 	  &GDBM_WRCREAT(),0640)) {
1.168     albertel 2485:     foreach my $key (keys %hash) {
1.180     albertel 2486:       if ($key=~ /:$symb/) {
1.168     albertel 2487: 	delete($hash{$key});
                   2488:       }
                   2489:     }
                   2490:   }
                   2491: }
                   2492: 
1.167     albertel 2493: sub tmpstore {
1.168     albertel 2494:   my ($storehash,$symb,$namespace,$domain,$stuname) = @_;
                   2495: 
                   2496:   if (!$symb) {
                   2497:     $symb=&symbread();
1.620     albertel 2498:     if (!$symb) { $symb= $env{'request.url'}; }
1.168     albertel 2499:   }
                   2500:   $symb=escape($symb);
                   2501: 
                   2502:   if (!$namespace) {
                   2503:     # I don't think we would ever want to store this for a course.
                   2504:     # it seems this will only be used if we don't have a course.
1.620     albertel 2505:     #$namespace=$env{'request.course.id'};
1.168     albertel 2506:     #if (!$namespace) {
1.620     albertel 2507:       $namespace=$env{'request.state'};
1.168     albertel 2508:     #}
                   2509:   }
                   2510:   $namespace=~s/\//\_/g;
                   2511:   $namespace=~s/\W//g;
1.620     albertel 2512:   if (!$domain) { $domain=$env{'user.domain'}; }
                   2513:   if (!$stuname) { $stuname=$env{'user.name'}; }
1.591     albertel 2514:   if ($domain eq 'public' && $stuname eq 'public') {
                   2515:       $stuname=$ENV{'REMOTE_ADDR'};
                   2516:   }
1.168     albertel 2517:   my $now=time;
                   2518:   my %hash;
                   2519:   my $path=$perlvar{'lonDaemons'}.'/tmp';
                   2520:   if (tie(%hash,'GDBM_File',
                   2521: 	  $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
1.256     albertel 2522: 	  &GDBM_WRCREAT(),0640)) {
1.168     albertel 2523:     $hash{"version:$symb"}++;
                   2524:     my $version=$hash{"version:$symb"};
                   2525:     my $allkeys=''; 
                   2526:     foreach my $key (keys(%$storehash)) {
                   2527:       $allkeys.=$key.':';
1.591     albertel 2528:       $hash{"$version:$symb:$key"}=&freeze_escape($$storehash{$key});
1.168     albertel 2529:     }
                   2530:     $hash{"$version:$symb:timestamp"}=$now;
                   2531:     $allkeys.='timestamp';
                   2532:     $hash{"$version:keys:$symb"}=$allkeys;
                   2533:     if (untie(%hash)) {
                   2534:       return 'ok';
                   2535:     } else {
                   2536:       return "error:$!";
                   2537:     }
                   2538:   } else {
                   2539:     return "error:$!";
                   2540:   }
                   2541: }
1.167     albertel 2542: 
1.168     albertel 2543: # -----------------------------------------------------------------Temp Restore
1.167     albertel 2544: 
1.168     albertel 2545: sub tmprestore {
                   2546:   my ($symb,$namespace,$domain,$stuname) = @_;
1.167     albertel 2547: 
1.168     albertel 2548:   if (!$symb) {
                   2549:     $symb=&symbread();
1.620     albertel 2550:     if (!$symb) { $symb= $env{'request.url'}; }
1.168     albertel 2551:   }
                   2552:   $symb=escape($symb);
                   2553: 
1.620     albertel 2554:   if (!$namespace) { $namespace=$env{'request.state'}; }
1.591     albertel 2555: 
1.620     albertel 2556:   if (!$domain) { $domain=$env{'user.domain'}; }
                   2557:   if (!$stuname) { $stuname=$env{'user.name'}; }
1.591     albertel 2558:   if ($domain eq 'public' && $stuname eq 'public') {
                   2559:       $stuname=$ENV{'REMOTE_ADDR'};
                   2560:   }
1.168     albertel 2561:   my %returnhash;
                   2562:   $namespace=~s/\//\_/g;
                   2563:   $namespace=~s/\W//g;
                   2564:   my %hash;
                   2565:   my $path=$perlvar{'lonDaemons'}.'/tmp';
                   2566:   if (tie(%hash,'GDBM_File',
                   2567: 	  $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
1.256     albertel 2568: 	  &GDBM_READER(),0640)) {
1.168     albertel 2569:     my $version=$hash{"version:$symb"};
                   2570:     $returnhash{'version'}=$version;
                   2571:     my $scope;
                   2572:     for ($scope=1;$scope<=$version;$scope++) {
                   2573:       my $vkeys=$hash{"$scope:keys:$symb"};
                   2574:       my @keys=split(/:/,$vkeys);
                   2575:       my $key;
                   2576:       $returnhash{"$scope:keys"}=$vkeys;
                   2577:       foreach $key (@keys) {
1.591     albertel 2578: 	$returnhash{"$scope:$key"}=&thaw_unescape($hash{"$scope:$symb:$key"});
                   2579: 	$returnhash{"$key"}=&thaw_unescape($hash{"$scope:$symb:$key"});
1.167     albertel 2580:       }
                   2581:     }
1.168     albertel 2582:     if (!(untie(%hash))) {
                   2583:       return "error:$!";
                   2584:     }
                   2585:   } else {
                   2586:     return "error:$!";
                   2587:   }
                   2588:   return %returnhash;
1.167     albertel 2589: }
                   2590: 
1.9       www      2591: # ----------------------------------------------------------------------- Store
                   2592: 
                   2593: sub store {
1.124     www      2594:     my ($storehash,$symb,$namespace,$domain,$stuname) = @_;
                   2595:     my $home='';
                   2596: 
1.168     albertel 2597:     if ($stuname) { $home=&homeserver($stuname,$domain); }
1.124     www      2598: 
1.213     www      2599:     $symb=&symbclean($symb);
1.122     albertel 2600:     if (!$symb) { unless ($symb=&symbread()) { return ''; } }
1.109     www      2601: 
1.620     albertel 2602:     if (!$domain) { $domain=$env{'user.domain'}; }
                   2603:     if (!$stuname) { $stuname=$env{'user.name'}; }
1.325     www      2604: 
                   2605:     &devalidate($symb,$stuname,$domain);
1.109     www      2606: 
                   2607:     $symb=escape($symb);
1.187     www      2608:     if (!$namespace) { 
1.620     albertel 2609:        unless ($namespace=$env{'request.course.id'}) { 
1.187     www      2610:           return ''; 
                   2611:        } 
                   2612:     }
1.620     albertel 2613:     if (!$home) { $home=$env{'user.home'}; }
1.447     www      2614: 
                   2615:     $$storehash{'ip'}=$ENV{'REMOTE_ADDR'};
                   2616:     $$storehash{'host'}=$perlvar{'lonHostID'};
                   2617: 
1.12      www      2618:     my $namevalue='';
1.800     albertel 2619:     foreach my $key (keys(%$storehash)) {
                   2620:         $namevalue.=&escape($key).'='.&freeze_escape($$storehash{$key}).'&';
1.191     harris41 2621:     }
1.12      www      2622:     $namevalue=~s/\&$//;
1.187     www      2623:     &courselog($symb.':'.$stuname.':'.$domain.':STORE:'.$namevalue);
1.124     www      2624:     return reply("store:$domain:$stuname:$namespace:$symb:$namevalue","$home");
1.9       www      2625: }
                   2626: 
1.47      www      2627: # -------------------------------------------------------------- Critical Store
                   2628: 
                   2629: sub cstore {
1.124     www      2630:     my ($storehash,$symb,$namespace,$domain,$stuname) = @_;
                   2631:     my $home='';
                   2632: 
1.168     albertel 2633:     if ($stuname) { $home=&homeserver($stuname,$domain); }
1.124     www      2634: 
1.213     www      2635:     $symb=&symbclean($symb);
1.122     albertel 2636:     if (!$symb) { unless ($symb=&symbread()) { return ''; } }
1.109     www      2637: 
1.620     albertel 2638:     if (!$domain) { $domain=$env{'user.domain'}; }
                   2639:     if (!$stuname) { $stuname=$env{'user.name'}; }
1.325     www      2640: 
                   2641:     &devalidate($symb,$stuname,$domain);
1.109     www      2642: 
                   2643:     $symb=escape($symb);
1.187     www      2644:     if (!$namespace) { 
1.620     albertel 2645:        unless ($namespace=$env{'request.course.id'}) { 
1.187     www      2646:           return ''; 
                   2647:        } 
                   2648:     }
1.620     albertel 2649:     if (!$home) { $home=$env{'user.home'}; }
1.447     www      2650: 
                   2651:     $$storehash{'ip'}=$ENV{'REMOTE_ADDR'};
                   2652:     $$storehash{'host'}=$perlvar{'lonHostID'};
1.122     albertel 2653: 
1.47      www      2654:     my $namevalue='';
1.800     albertel 2655:     foreach my $key (keys(%$storehash)) {
                   2656:         $namevalue.=&escape($key).'='.&freeze_escape($$storehash{$key}).'&';
1.191     harris41 2657:     }
1.47      www      2658:     $namevalue=~s/\&$//;
1.187     www      2659:     &courselog($symb.':'.$stuname.':'.$domain.':CSTORE:'.$namevalue);
1.188     www      2660:     return critical
                   2661:                 ("store:$domain:$stuname:$namespace:$symb:$namevalue","$home");
1.47      www      2662: }
                   2663: 
1.9       www      2664: # --------------------------------------------------------------------- Restore
                   2665: 
                   2666: sub restore {
1.124     www      2667:     my ($symb,$namespace,$domain,$stuname) = @_;
                   2668:     my $home='';
                   2669: 
1.168     albertel 2670:     if ($stuname) { $home=&homeserver($stuname,$domain); }
1.124     www      2671: 
1.122     albertel 2672:     if (!$symb) {
                   2673:       unless ($symb=escape(&symbread())) { return ''; }
                   2674:     } else {
1.213     www      2675:       $symb=&escape(&symbclean($symb));
1.122     albertel 2676:     }
1.188     www      2677:     if (!$namespace) { 
1.620     albertel 2678:        unless ($namespace=$env{'request.course.id'}) { 
1.188     www      2679:           return ''; 
                   2680:        } 
                   2681:     }
1.620     albertel 2682:     if (!$domain) { $domain=$env{'user.domain'}; }
                   2683:     if (!$stuname) { $stuname=$env{'user.name'}; }
                   2684:     if (!$home) { $home=$env{'user.home'}; }
1.122     albertel 2685:     my $answer=&reply("restore:$domain:$stuname:$namespace:$symb","$home");
                   2686: 
1.12      www      2687:     my %returnhash=();
1.800     albertel 2688:     foreach my $line (split(/\&/,$answer)) {
                   2689: 	my ($name,$value)=split(/\=/,$line);
1.591     albertel 2690:         $returnhash{&unescape($name)}=&thaw_unescape($value);
1.191     harris41 2691:     }
1.75      www      2692:     my $version;
                   2693:     for ($version=1;$version<=$returnhash{'version'};$version++) {
1.800     albertel 2694:        foreach my $item (split(/\:/,$returnhash{$version.':keys'})) {
                   2695:           $returnhash{$item}=$returnhash{$version.':'.$item};
1.191     harris41 2696:        }
1.75      www      2697:     }
1.13      www      2698:     return %returnhash;
1.34      www      2699: }
                   2700: 
                   2701: # ---------------------------------------------------------- Course Description
                   2702: 
                   2703: sub coursedescription {
1.731     albertel 2704:     my ($courseid,$args)=@_;
1.34      www      2705:     $courseid=~s/^\///;
1.49      www      2706:     $courseid=~s/\_/\//g;
1.34      www      2707:     my ($cdomain,$cnum)=split(/\//,$courseid);
1.129     albertel 2708:     my $chome=&homeserver($cnum,$cdomain);
1.302     albertel 2709:     my $normalid=$cdomain.'_'.$cnum;
                   2710:     # need to always cache even if we get errors otherwise we keep 
                   2711:     # trying and trying and trying to get the course description.
                   2712:     my %envhash=();
                   2713:     my %returnhash=();
1.731     albertel 2714:     
                   2715:     my $expiretime=600;
                   2716:     if ($env{'request.course.id'} eq $normalid) {
                   2717: 	$expiretime=120;
                   2718:     }
                   2719: 
                   2720:     my $prefix='course.'.$cdomain.'_'.$cnum.'.';
                   2721:     if (!$args->{'freshen_cache'}
                   2722: 	&& ((time-$env{$prefix.'last_cache'}) < $expiretime) ) {
                   2723: 	foreach my $key (keys(%env)) {
                   2724: 	    next if ($key !~ /^\Q$prefix\E(.*)/);
                   2725: 	    my ($setting) = $1;
                   2726: 	    $returnhash{$setting} = $env{$key};
                   2727: 	}
                   2728: 	return %returnhash;
                   2729:     }
                   2730: 
                   2731:     # get the data agin
                   2732:     if (!$args->{'one_time'}) {
                   2733: 	$envhash{'course.'.$normalid.'.last_cache'}=time;
                   2734:     }
1.34      www      2735:     if ($chome ne 'no_host') {
1.302     albertel 2736:        %returnhash=&dump('environment',$cdomain,$cnum);
1.129     albertel 2737:        if (!exists($returnhash{'con_lost'})) {
                   2738:            $returnhash{'home'}= $chome;
                   2739: 	   $returnhash{'domain'} = $cdomain;
                   2740: 	   $returnhash{'num'} = $cnum;
1.741     raeburn  2741:            if (!defined($returnhash{'type'})) {
                   2742:                $returnhash{'type'} = 'Course';
                   2743:            }
1.130     albertel 2744:            while (my ($name,$value) = each %returnhash) {
1.53      www      2745:                $envhash{'course.'.$normalid.'.'.$name}=$value;
1.129     albertel 2746:            }
1.270     www      2747:            $returnhash{'url'}=&clutter($returnhash{'url'});
1.34      www      2748:            $returnhash{'fn'}=$perlvar{'lonDaemons'}.'/tmp/'.
1.620     albertel 2749: 	       $env{'user.name'}.'_'.$cdomain.'_'.$cnum;
1.60      www      2750:            $envhash{'course.'.$normalid.'.home'}=$chome;
                   2751:            $envhash{'course.'.$normalid.'.domain'}=$cdomain;
                   2752:            $envhash{'course.'.$normalid.'.num'}=$cnum;
1.34      www      2753:        }
                   2754:     }
1.731     albertel 2755:     if (!$args->{'one_time'}) {
                   2756: 	&appenv(%envhash);
                   2757:     }
1.302     albertel 2758:     return %returnhash;
1.461     www      2759: }
                   2760: 
                   2761: # -------------------------------------------------See if a user is privileged
                   2762: 
                   2763: sub privileged {
                   2764:     my ($username,$domain)=@_;
                   2765:     my $rolesdump=&reply("dump:$domain:$username:roles",
                   2766: 			&homeserver($username,$domain));
                   2767:     if (($rolesdump eq 'con_lost') || ($rolesdump eq '')) { return 0; }
                   2768:     my $now=time;
                   2769:     if ($rolesdump ne '') {
1.800     albertel 2770:         foreach my $entry (split(/&/,$rolesdump)) {
                   2771: 	    if ($entry!~/^rolesdef_/) {
                   2772: 		my ($area,$role)=split(/=/,$entry);
1.461     www      2773: 		$area=~s/\_\w\w$//;
                   2774: 		my ($trole,$tend,$tstart)=split(/_/,$role);
                   2775: 		if (($trole eq 'dc') || ($trole eq 'su')) {
                   2776: 		    my $active=1;
                   2777: 		    if ($tend) {
                   2778: 			if ($tend<$now) { $active=0; }
                   2779: 		    }
                   2780: 		    if ($tstart) {
                   2781: 			if ($tstart>$now) { $active=0; }
                   2782: 		    }
                   2783: 		    if ($active) { return 1; }
                   2784: 		}
                   2785: 	    }
                   2786: 	}
                   2787:     }
                   2788:     return 0;
1.9       www      2789: }
1.1       albertel 2790: 
1.103     harris41 2791: # -------------------------------------------------------- Get user privileges
1.11      www      2792: 
                   2793: sub rolesinit {
                   2794:     my ($domain,$username,$authhost)=@_;
                   2795:     my $rolesdump=reply("dump:$domain:$username:roles",$authhost);
1.12      www      2796:     if (($rolesdump eq 'con_lost') || ($rolesdump eq '')) { return ''; }
1.11      www      2797:     my %allroles=();
1.678     raeburn  2798:     my %allgroups=();   
1.11      www      2799:     my $now=time;
1.743     albertel 2800:     my %userroles = ('user.login.time' => $now);
1.678     raeburn  2801:     my $group_privs;
1.11      www      2802: 
                   2803:     if ($rolesdump ne '') {
1.800     albertel 2804:         foreach my $entry (split(/&/,$rolesdump)) {
                   2805: 	  if ($entry!~/^rolesdef_/) {
                   2806:             my ($area,$role)=split(/=/,$entry);
1.587     albertel 2807: 	    $area=~s/\_\w\w$//;
1.678     raeburn  2808:             my ($trole,$tend,$tstart,$group_privs);
1.587     albertel 2809: 	    if ($role=~/^cr/) { 
1.807     albertel 2810: 		if ($role=~m|^(cr/$match_domain/$match_username/[a-zA-Z0-9]+)_(.*)$|) {
                   2811: 		    ($trole,my $trest)=($role=~m|^(cr/$match_domain/$match_username/[a-zA-Z0-9]+)_(.*)$|);
1.655     albertel 2812: 		    ($tend,$tstart)=split('_',$trest);
                   2813: 		} else {
                   2814: 		    $trole=$role;
                   2815: 		}
1.678     raeburn  2816:             } elsif ($role =~ m|^gr/|) {
                   2817:                 ($trole,$tend,$tstart) = split(/_/,$role);
                   2818:                 ($trole,$group_privs) = split(/\//,$trole);
                   2819:                 $group_privs = &unescape($group_privs);
1.587     albertel 2820: 	    } else {
                   2821: 		($trole,$tend,$tstart)=split(/_/,$role);
                   2822: 	    }
1.743     albertel 2823: 	    my %new_role = &set_arearole($trole,$area,$tstart,$tend,$domain,
                   2824: 					 $username);
                   2825: 	    @userroles{keys(%new_role)} = @new_role{keys(%new_role)};
1.567     raeburn  2826:             if (($tend!=0) && ($tend<$now)) { $trole=''; }
                   2827:             if (($tstart!=0) && ($tstart>$now)) { $trole=''; }
1.11      www      2828:             if (($area ne '') && ($trole ne '')) {
1.347     albertel 2829: 		my $spec=$trole.'.'.$area;
                   2830: 		my ($tdummy,$tdomain,$trest)=split(/\//,$area);
                   2831: 		if ($trole =~ /^cr\//) {
1.567     raeburn  2832:                     &custom_roleprivs(\%allroles,$trole,$tdomain,$trest,$spec,$area);
1.678     raeburn  2833:                 } elsif ($trole eq 'gr') {
                   2834:                     &group_roleprivs(\%allgroups,$area,$group_privs,$tend,$tstart);
1.347     albertel 2835: 		} else {
1.567     raeburn  2836:                     &standard_roleprivs(\%allroles,$trole,$tdomain,$spec,$trest,$area);
1.347     albertel 2837: 		}
1.12      www      2838:             }
1.662     raeburn  2839:           }
1.191     harris41 2840:         }
1.743     albertel 2841:         my ($author,$adv) = &set_userprivs(\%userroles,\%allroles,\%allgroups);
                   2842:         $userroles{'user.adv'}    = $adv;
                   2843: 	$userroles{'user.author'} = $author;
1.620     albertel 2844:         $env{'user.adv'}=$adv;
1.11      www      2845:     }
1.743     albertel 2846:     return \%userroles;  
1.11      www      2847: }
                   2848: 
1.567     raeburn  2849: sub set_arearole {
                   2850:     my ($trole,$area,$tstart,$tend,$domain,$username) = @_;
                   2851: # log the associated role with the area
                   2852:     &userrolelog($trole,$username,$domain,$area,$tstart,$tend);
1.743     albertel 2853:     return ('user.role.'.$trole.'.'.$area => $tstart.'.'.$tend);
1.567     raeburn  2854: }
                   2855: 
                   2856: sub custom_roleprivs {
                   2857:     my ($allroles,$trole,$tdomain,$trest,$spec,$area) = @_;
                   2858:     my ($rdummy,$rdomain,$rauthor,$rrole)=split(/\//,$trole);
                   2859:     my $homsvr=homeserver($rauthor,$rdomain);
                   2860:     if ($hostname{$homsvr} ne '') {
                   2861:         my ($rdummy,$roledef)=
                   2862:             &get('roles',["rolesdef_$rrole"],$rdomain,$rauthor);
                   2863:         if (($rdummy ne 'con_lost') && ($roledef ne '')) {
                   2864:             my ($syspriv,$dompriv,$coursepriv)=split(/\_/,$roledef);
                   2865:             if (defined($syspriv)) {
                   2866:                 $$allroles{'cm./'}.=':'.$syspriv;
                   2867:                 $$allroles{$spec.'./'}.=':'.$syspriv;
                   2868:             }
                   2869:             if ($tdomain ne '') {
                   2870:                 if (defined($dompriv)) {
                   2871:                     $$allroles{'cm./'.$tdomain.'/'}.=':'.$dompriv;
                   2872:                     $$allroles{$spec.'./'.$tdomain.'/'}.=':'.$dompriv;
                   2873:                 }
                   2874:                 if (($trest ne '') && (defined($coursepriv))) {
                   2875:                     $$allroles{'cm.'.$area}.=':'.$coursepriv;
                   2876:                     $$allroles{$spec.'.'.$area}.=':'.$coursepriv;
                   2877:                 }
                   2878:             }
                   2879:         }
                   2880:     }
                   2881: }
                   2882: 
1.678     raeburn  2883: sub group_roleprivs {
                   2884:     my ($allgroups,$area,$group_privs,$tend,$tstart) = @_;
                   2885:     my $access = 1;
                   2886:     my $now = time;
                   2887:     if (($tend!=0) && ($tend<$now)) { $access = 0; }
                   2888:     if (($tstart!=0) && ($tstart>$now)) { $access=0; }
                   2889:     if ($access) {
1.807     albertel 2890:         my ($course,$group) = ($area =~ m|(/$match_domain/$match_username)/([^/]+)$|);
1.678     raeburn  2891:         $$allgroups{$course}{$group} .=':'.$group_privs;
                   2892:     }
                   2893: }
1.567     raeburn  2894: 
                   2895: sub standard_roleprivs {
                   2896:     my ($allroles,$trole,$tdomain,$spec,$trest,$area) = @_;
                   2897:     if (defined($pr{$trole.':s'})) {
                   2898:         $$allroles{'cm./'}.=':'.$pr{$trole.':s'};
                   2899:         $$allroles{$spec.'./'}.=':'.$pr{$trole.':s'};
                   2900:     }
                   2901:     if ($tdomain ne '') {
                   2902:         if (defined($pr{$trole.':d'})) {
                   2903:             $$allroles{'cm./'.$tdomain.'/'}.=':'.$pr{$trole.':d'};
                   2904:             $$allroles{$spec.'./'.$tdomain.'/'}.=':'.$pr{$trole.':d'};
                   2905:         }
                   2906:         if (($trest ne '') && (defined($pr{$trole.':c'}))) {
                   2907:             $$allroles{'cm.'.$area}.=':'.$pr{$trole.':c'};
                   2908:             $$allroles{$spec.'.'.$area}.=':'.$pr{$trole.':c'};
                   2909:         }
                   2910:     }
                   2911: }
                   2912: 
                   2913: sub set_userprivs {
1.678     raeburn  2914:     my ($userroles,$allroles,$allgroups) = @_; 
1.567     raeburn  2915:     my $author=0;
                   2916:     my $adv=0;
1.678     raeburn  2917:     my %grouproles = ();
                   2918:     if (keys(%{$allgroups}) > 0) {
                   2919:         foreach my $role (keys %{$allroles}) {
1.681     raeburn  2920:             my ($trole,$area,$sec,$extendedarea);
1.807     albertel 2921:             if ($role =~ m-^(\w+|cr/$match_domain/$match_username/\w+)\.(/$match_domain/$match_username)(/?\w*)-) {
1.678     raeburn  2922:                 $trole = $1;
                   2923:                 $area = $2;
1.681     raeburn  2924:                 $sec = $3;
                   2925:                 $extendedarea = $area.$sec;
                   2926:                 if (exists($$allgroups{$area})) {
                   2927:                     foreach my $group (keys(%{$$allgroups{$area}})) {
                   2928:                         my $spec = $trole.'.'.$extendedarea;
                   2929:                         $grouproles{$spec.'.'.$area.'/'.$group} = 
                   2930:                                                 $$allgroups{$area}{$group};
1.678     raeburn  2931:                     }
                   2932:                 }
                   2933:             }
                   2934:         }
                   2935:     }
1.800     albertel 2936:     foreach my $group (keys(%grouproles)) {
                   2937:         $$allroles{$group} = $grouproles{$group};
1.678     raeburn  2938:     }
1.800     albertel 2939:     foreach my $role (keys(%{$allroles})) {
                   2940:         my %thesepriv;
                   2941:         if (($role=~/^au/) || ($role=~/^ca/)) { $author=1; }
                   2942:         foreach my $item (split(/:/,$$allroles{$role})) {
                   2943:             if ($item ne '') {
                   2944:                 my ($privilege,$restrictions)=split(/&/,$item);
1.567     raeburn  2945:                 if ($restrictions eq '') {
                   2946:                     $thesepriv{$privilege}='F';
                   2947:                 } elsif ($thesepriv{$privilege} ne 'F') {
                   2948:                     $thesepriv{$privilege}.=$restrictions;
                   2949:                 }
                   2950:                 if ($thesepriv{'adv'} eq 'F') { $adv=1; }
                   2951:             }
                   2952:         }
                   2953:         my $thesestr='';
1.800     albertel 2954:         foreach my $priv (keys(%thesepriv)) {
                   2955: 	    $thesestr.=':'.$priv.'&'.$thesepriv{$priv};
                   2956: 	}
                   2957:         $userroles->{'user.priv.'.$role} = $thesestr;
1.567     raeburn  2958:     }
                   2959:     return ($author,$adv);
                   2960: }
                   2961: 
1.12      www      2962: # --------------------------------------------------------------- get interface
                   2963: 
                   2964: sub get {
1.131     albertel 2965:    my ($namespace,$storearr,$udomain,$uname)=@_;
1.12      www      2966:    my $items='';
1.800     albertel 2967:    foreach my $item (@$storearr) {
                   2968:        $items.=&escape($item).'&';
1.191     harris41 2969:    }
1.12      www      2970:    $items=~s/\&$//;
1.620     albertel 2971:    if (!$udomain) { $udomain=$env{'user.domain'}; }
                   2972:    if (!$uname) { $uname=$env{'user.name'}; }
1.131     albertel 2973:    my $uhome=&homeserver($uname,$udomain);
                   2974: 
1.133     albertel 2975:    my $rep=&reply("get:$udomain:$uname:$namespace:$items",$uhome);
1.15      www      2976:    my @pairs=split(/\&/,$rep);
1.273     albertel 2977:    if ( $#pairs==0 && $pairs[0] =~ /^(con_lost|error|no_such_host)/i) {
                   2978:      return @pairs;
                   2979:    }
1.15      www      2980:    my %returnhash=();
1.42      www      2981:    my $i=0;
1.800     albertel 2982:    foreach my $item (@$storearr) {
                   2983:       $returnhash{$item}=&thaw_unescape($pairs[$i]);
1.42      www      2984:       $i++;
1.191     harris41 2985:    }
1.15      www      2986:    return %returnhash;
1.27      www      2987: }
                   2988: 
                   2989: # --------------------------------------------------------------- del interface
                   2990: 
                   2991: sub del {
1.133     albertel 2992:    my ($namespace,$storearr,$udomain,$uname)=@_;
1.27      www      2993:    my $items='';
1.800     albertel 2994:    foreach my $item (@$storearr) {
                   2995:        $items.=&escape($item).'&';
1.191     harris41 2996:    }
1.27      www      2997:    $items=~s/\&$//;
1.620     albertel 2998:    if (!$udomain) { $udomain=$env{'user.domain'}; }
                   2999:    if (!$uname) { $uname=$env{'user.name'}; }
1.133     albertel 3000:    my $uhome=&homeserver($uname,$udomain);
                   3001: 
                   3002:    return &reply("del:$udomain:$uname:$namespace:$items",$uhome);
1.15      www      3003: }
                   3004: 
                   3005: # -------------------------------------------------------------- dump interface
                   3006: 
                   3007: sub dump {
1.755     albertel 3008:     my ($namespace,$udomain,$uname,$regexp,$range)=@_;
                   3009:     if (!$udomain) { $udomain=$env{'user.domain'}; }
                   3010:     if (!$uname) { $uname=$env{'user.name'}; }
                   3011:     my $uhome=&homeserver($uname,$udomain);
                   3012:     if ($regexp) {
                   3013: 	$regexp=&escape($regexp);
                   3014:     } else {
                   3015: 	$regexp='.';
                   3016:     }
                   3017:     my $rep=&reply("dump:$udomain:$uname:$namespace:$regexp:$range",$uhome);
                   3018:     my @pairs=split(/\&/,$rep);
                   3019:     my %returnhash=();
                   3020:     foreach my $item (@pairs) {
                   3021: 	my ($key,$value)=split(/=/,$item,2);
                   3022: 	$key = &unescape($key);
                   3023: 	next if ($key =~ /^error: 2 /);
                   3024: 	$returnhash{$key}=&thaw_unescape($value);
                   3025:     }
                   3026:     return %returnhash;
1.407     www      3027: }
                   3028: 
1.717     albertel 3029: # --------------------------------------------------------- dumpstore interface
                   3030: 
                   3031: sub dumpstore {
                   3032:    my ($namespace,$udomain,$uname,$regexp,$range)=@_;
                   3033:    return &dump($namespace,$udomain,$uname,$regexp,$range);
                   3034: }
                   3035: 
1.407     www      3036: # -------------------------------------------------------------- keys interface
                   3037: 
                   3038: sub getkeys {
                   3039:    my ($namespace,$udomain,$uname)=@_;
1.620     albertel 3040:    if (!$udomain) { $udomain=$env{'user.domain'}; }
                   3041:    if (!$uname) { $uname=$env{'user.name'}; }
1.407     www      3042:    my $uhome=&homeserver($uname,$udomain);
                   3043:    my $rep=reply("keys:$udomain:$uname:$namespace",$uhome);
                   3044:    my @keyarray=();
1.800     albertel 3045:    foreach my $key (split(/\&/,$rep)) {
                   3046:       push(@keyarray,&unescape($key));
1.407     www      3047:    }
                   3048:    return @keyarray;
1.318     matthew  3049: }
                   3050: 
1.319     matthew  3051: # --------------------------------------------------------------- currentdump
                   3052: sub currentdump {
1.328     matthew  3053:    my ($courseid,$sdom,$sname)=@_;
1.620     albertel 3054:    $courseid = $env{'request.course.id'} if (! defined($courseid));
                   3055:    $sdom     = $env{'user.domain'}       if (! defined($sdom));
                   3056:    $sname    = $env{'user.name'}         if (! defined($sname));
1.326     matthew  3057:    my $uhome = &homeserver($sname,$sdom);
                   3058:    my $rep=reply('currentdump:'.$sdom.':'.$sname.':'.$courseid,$uhome);
1.318     matthew  3059:    return if ($rep =~ /^(error:|no_such_host)/);
1.319     matthew  3060:    #
1.318     matthew  3061:    my %returnhash=();
1.319     matthew  3062:    #
                   3063:    if ($rep eq "unknown_cmd") { 
                   3064:        # an old lond will not know currentdump
                   3065:        # Do a dump and make it look like a currentdump
1.326     matthew  3066:        my @tmp = &dump($courseid,$sdom,$sname,'.');
1.319     matthew  3067:        return if ($tmp[0] =~ /^(error:|no_such_host)/);
                   3068:        my %hash = @tmp;
                   3069:        @tmp=();
1.424     matthew  3070:        %returnhash = %{&convert_dump_to_currentdump(\%hash)};
1.319     matthew  3071:    } else {
                   3072:        my @pairs=split(/\&/,$rep);
1.800     albertel 3073:        foreach my $pair (@pairs) {
                   3074:            my ($key,$value)=split(/=/,$pair,2);
1.319     matthew  3075:            my ($symb,$param) = split(/:/,$key);
                   3076:            $returnhash{&unescape($symb)}->{&unescape($param)} = 
1.557     albertel 3077:                                                         &thaw_unescape($value);
1.319     matthew  3078:        }
1.191     harris41 3079:    }
1.12      www      3080:    return %returnhash;
1.424     matthew  3081: }
                   3082: 
                   3083: sub convert_dump_to_currentdump{
                   3084:     my %hash = %{shift()};
                   3085:     my %returnhash;
                   3086:     # Code ripped from lond, essentially.  The only difference
                   3087:     # here is the unescaping done by lonnet::dump().  Conceivably
                   3088:     # we might run in to problems with parameter names =~ /^v\./
                   3089:     while (my ($key,$value) = each(%hash)) {
                   3090:         my ($v,$symb,$param) = split(/:/,$key);
                   3091:         next if ($v eq 'version' || $symb eq 'keys');
                   3092:         next if (exists($returnhash{$symb}) &&
                   3093:                  exists($returnhash{$symb}->{$param}) &&
                   3094:                  $returnhash{$symb}->{'v.'.$param} > $v);
                   3095:         $returnhash{$symb}->{$param}=$value;
                   3096:         $returnhash{$symb}->{'v.'.$param}=$v;
                   3097:     }
                   3098:     #
                   3099:     # Remove all of the keys in the hashes which keep track of
                   3100:     # the version of the parameter.
                   3101:     while (my ($symb,$param_hash) = each(%returnhash)) {
                   3102:         # use a foreach because we are going to delete from the hash.
                   3103:         foreach my $key (keys(%$param_hash)) {
                   3104:             delete($param_hash->{$key}) if ($key =~ /^v\./);
                   3105:         }
                   3106:     }
                   3107:     return \%returnhash;
1.12      www      3108: }
                   3109: 
1.627     albertel 3110: # ------------------------------------------------------ critical inc interface
                   3111: 
                   3112: sub cinc {
                   3113:     return &inc(@_,'critical');
                   3114: }
                   3115: 
1.449     matthew  3116: # --------------------------------------------------------------- inc interface
                   3117: 
                   3118: sub inc {
1.627     albertel 3119:     my ($namespace,$store,$udomain,$uname,$critical) = @_;
1.620     albertel 3120:     if (!$udomain) { $udomain=$env{'user.domain'}; }
                   3121:     if (!$uname) { $uname=$env{'user.name'}; }
1.449     matthew  3122:     my $uhome=&homeserver($uname,$udomain);
                   3123:     my $items='';
                   3124:     if (! ref($store)) {
                   3125:         # got a single value, so use that instead
                   3126:         $items = &escape($store).'=&';
                   3127:     } elsif (ref($store) eq 'SCALAR') {
                   3128:         $items = &escape($$store).'=&';        
                   3129:     } elsif (ref($store) eq 'ARRAY') {
                   3130:         $items = join('=&',map {&escape($_);} @{$store});
                   3131:     } elsif (ref($store) eq 'HASH') {
                   3132:         while (my($key,$value) = each(%{$store})) {
                   3133:             $items.= &escape($key).'='.&escape($value).'&';
                   3134:         }
                   3135:     }
                   3136:     $items=~s/\&$//;
1.627     albertel 3137:     if ($critical) {
                   3138: 	return &critical("inc:$udomain:$uname:$namespace:$items",$uhome);
                   3139:     } else {
                   3140: 	return &reply("inc:$udomain:$uname:$namespace:$items",$uhome);
                   3141:     }
1.449     matthew  3142: }
                   3143: 
1.12      www      3144: # --------------------------------------------------------------- put interface
                   3145: 
                   3146: sub put {
1.134     albertel 3147:    my ($namespace,$storehash,$udomain,$uname)=@_;
1.620     albertel 3148:    if (!$udomain) { $udomain=$env{'user.domain'}; }
                   3149:    if (!$uname) { $uname=$env{'user.name'}; }
1.134     albertel 3150:    my $uhome=&homeserver($uname,$udomain);
1.12      www      3151:    my $items='';
1.800     albertel 3152:    foreach my $item (keys(%$storehash)) {
                   3153:        $items.=&escape($item).'='.&freeze_escape($$storehash{$item}).'&';
1.191     harris41 3154:    }
1.12      www      3155:    $items=~s/\&$//;
1.134     albertel 3156:    return &reply("put:$udomain:$uname:$namespace:$items",$uhome);
1.47      www      3157: }
                   3158: 
1.631     albertel 3159: # ------------------------------------------------------------ newput interface
                   3160: 
                   3161: sub newput {
                   3162:    my ($namespace,$storehash,$udomain,$uname)=@_;
                   3163:    if (!$udomain) { $udomain=$env{'user.domain'}; }
                   3164:    if (!$uname) { $uname=$env{'user.name'}; }
                   3165:    my $uhome=&homeserver($uname,$udomain);
                   3166:    my $items='';
                   3167:    foreach my $key (keys(%$storehash)) {
                   3168:        $items.=&escape($key).'='.&freeze_escape($$storehash{$key}).'&';
                   3169:    }
                   3170:    $items=~s/\&$//;
                   3171:    return &reply("newput:$udomain:$uname:$namespace:$items",$uhome);
                   3172: }
                   3173: 
                   3174: # ---------------------------------------------------------  putstore interface
                   3175: 
1.524     raeburn  3176: sub putstore {
1.715     albertel 3177:    my ($namespace,$symb,$version,$storehash,$udomain,$uname)=@_;
1.620     albertel 3178:    if (!$udomain) { $udomain=$env{'user.domain'}; }
                   3179:    if (!$uname) { $uname=$env{'user.name'}; }
1.524     raeburn  3180:    my $uhome=&homeserver($uname,$udomain);
                   3181:    my $items='';
1.715     albertel 3182:    foreach my $key (keys(%$storehash)) {
                   3183:        $items.= &escape($key).'='.&freeze_escape($storehash->{$key}).'&';
1.524     raeburn  3184:    }
1.715     albertel 3185:    $items=~s/\&$//;
1.716     albertel 3186:    my $esc_symb=&escape($symb);
                   3187:    my $esc_v=&escape($version);
1.715     albertel 3188:    my $reply =
1.716     albertel 3189:        &reply("putstore:$udomain:$uname:$namespace:$esc_symb:$esc_v:$items",
1.715     albertel 3190: 	      $uhome);
                   3191:    if ($reply eq 'unknown_cmd') {
1.716     albertel 3192:        # gfall back to way things use to be done
1.715     albertel 3193:        return &old_putstore($namespace,$symb,$version,$storehash,$udomain,
                   3194: 			    $uname);
1.524     raeburn  3195:    }
1.715     albertel 3196:    return $reply;
                   3197: }
                   3198: 
                   3199: sub old_putstore {
1.716     albertel 3200:     my ($namespace,$symb,$version,$storehash,$udomain,$uname)=@_;
                   3201:     if (!$udomain) { $udomain=$env{'user.domain'}; }
                   3202:     if (!$uname) { $uname=$env{'user.name'}; }
                   3203:     my $uhome=&homeserver($uname,$udomain);
                   3204:     my %newstorehash;
1.800     albertel 3205:     foreach my $item (keys(%$storehash)) {
                   3206: 	my $key = $version.':'.&escape($symb).':'.$item;
                   3207: 	$newstorehash{$key} = $storehash->{$item};
1.716     albertel 3208:     }
                   3209:     my $items='';
                   3210:     my %allitems = ();
1.800     albertel 3211:     foreach my $item (keys(%newstorehash)) {
                   3212: 	if ($item =~ m/^([^\:]+):([^\:]+):([^\:]+)$/) {
1.716     albertel 3213: 	    my $key = $1.':keys:'.$2;
                   3214: 	    $allitems{$key} .= $3.':';
                   3215: 	}
1.800     albertel 3216: 	$items.=$item.'='.&freeze_escape($newstorehash{$item}).'&';
1.716     albertel 3217:     }
1.800     albertel 3218:     foreach my $item (keys(%allitems)) {
                   3219: 	$allitems{$item} =~ s/\:$//;
                   3220: 	$items.= $item.'='.$allitems{$item}.'&';
1.716     albertel 3221:     }
                   3222:     $items=~s/\&$//;
                   3223:     return &reply("put:$udomain:$uname:$namespace:$items",$uhome);
1.524     raeburn  3224: }
                   3225: 
1.47      www      3226: # ------------------------------------------------------ critical put interface
                   3227: 
                   3228: sub cput {
1.134     albertel 3229:    my ($namespace,$storehash,$udomain,$uname)=@_;
1.620     albertel 3230:    if (!$udomain) { $udomain=$env{'user.domain'}; }
                   3231:    if (!$uname) { $uname=$env{'user.name'}; }
1.134     albertel 3232:    my $uhome=&homeserver($uname,$udomain);
1.47      www      3233:    my $items='';
1.800     albertel 3234:    foreach my $item (keys(%$storehash)) {
                   3235:        $items.=&escape($item).'='.&freeze_escape($$storehash{$item}).'&';
1.191     harris41 3236:    }
1.47      www      3237:    $items=~s/\&$//;
1.134     albertel 3238:    return &critical("put:$udomain:$uname:$namespace:$items",$uhome);
1.12      www      3239: }
                   3240: 
                   3241: # -------------------------------------------------------------- eget interface
                   3242: 
                   3243: sub eget {
1.133     albertel 3244:    my ($namespace,$storearr,$udomain,$uname)=@_;
1.12      www      3245:    my $items='';
1.800     albertel 3246:    foreach my $item (@$storearr) {
                   3247:        $items.=&escape($item).'&';
1.191     harris41 3248:    }
1.12      www      3249:    $items=~s/\&$//;
1.620     albertel 3250:    if (!$udomain) { $udomain=$env{'user.domain'}; }
                   3251:    if (!$uname) { $uname=$env{'user.name'}; }
1.133     albertel 3252:    my $uhome=&homeserver($uname,$udomain);
                   3253:    my $rep=&reply("eget:$udomain:$uname:$namespace:$items",$uhome);
1.12      www      3254:    my @pairs=split(/\&/,$rep);
                   3255:    my %returnhash=();
1.42      www      3256:    my $i=0;
1.800     albertel 3257:    foreach my $item (@$storearr) {
                   3258:       $returnhash{$item}=&thaw_unescape($pairs[$i]);
1.42      www      3259:       $i++;
1.191     harris41 3260:    }
1.12      www      3261:    return %returnhash;
                   3262: }
                   3263: 
1.667     albertel 3264: # ------------------------------------------------------------ tmpput interface
                   3265: sub tmpput {
1.802     raeburn  3266:     my ($storehash,$server,$context)=@_;
1.667     albertel 3267:     my $items='';
1.800     albertel 3268:     foreach my $item (keys(%$storehash)) {
                   3269: 	$items.=&escape($item).'='.&freeze_escape($$storehash{$item}).'&';
1.667     albertel 3270:     }
                   3271:     $items=~s/\&$//;
1.802     raeburn  3272:     if (defined($context)) {
                   3273:         $items .= ':'.&escape($context);
                   3274:     }
1.667     albertel 3275:     return &reply("tmpput:$items",$server);
                   3276: }
                   3277: 
                   3278: # ------------------------------------------------------------ tmpget interface
                   3279: sub tmpget {
1.688     albertel 3280:     my ($token,$server)=@_;
                   3281:     if (!defined($server)) { $server = $perlvar{'lonHostID'}; }
                   3282:     my $rep=&reply("tmpget:$token",$server);
1.667     albertel 3283:     my %returnhash;
                   3284:     foreach my $item (split(/\&/,$rep)) {
                   3285: 	my ($key,$value)=split(/=/,$item);
                   3286: 	$returnhash{&unescape($key)}=&thaw_unescape($value);
                   3287:     }
                   3288:     return %returnhash;
                   3289: }
                   3290: 
1.688     albertel 3291: # ------------------------------------------------------------ tmpget interface
                   3292: sub tmpdel {
                   3293:     my ($token,$server)=@_;
                   3294:     if (!defined($server)) { $server = $perlvar{'lonHostID'}; }
                   3295:     return &reply("tmpdel:$token",$server);
                   3296: }
                   3297: 
1.765     albertel 3298: # -------------------------------------------------- portfolio access checking
                   3299: 
                   3300: sub portfolio_access {
1.766     albertel 3301:     my ($requrl) = @_;
1.765     albertel 3302:     my (undef,$udom,$unum,$file_name,$group) = &parse_portfolio_url($requrl);
                   3303:     my $result = &get_portfolio_access($udom,$unum,$file_name,$group);
                   3304:     if ($result eq 'ok') {
1.766     albertel 3305:        return 'F';
1.765     albertel 3306:     } elsif ($result =~ /^[^:]+:guest_/) {
1.766     albertel 3307:        return 'A';
1.765     albertel 3308:     }
1.766     albertel 3309:     return '';
1.765     albertel 3310: }
                   3311: 
                   3312: sub get_portfolio_access {
1.767     albertel 3313:     my ($udom,$unum,$file_name,$group,$access_hash) = @_;
                   3314: 
                   3315:     if (!ref($access_hash)) {
                   3316: 	my $current_perms = &get_portfile_permissions($udom,$unum);
                   3317: 	my %access_controls = &get_access_controls($current_perms,$group,
                   3318: 						   $file_name);
                   3319: 	$access_hash = $access_controls{$file_name};
                   3320:     }
                   3321: 
1.765     albertel 3322:     my ($public,$guest,@domains,@users,@courses,@groups);
                   3323:     my $now = time;
                   3324:     if (ref($access_hash) eq 'HASH') {
                   3325:         foreach my $key (keys(%{$access_hash})) {
                   3326:             my ($num,$scope,$end,$start) = ($key =~ /^([^:]+):([a-z]+)_(\d*)_?(\d*)$/);
                   3327:             if ($start > $now) {
                   3328:                 next;
                   3329:             }
                   3330:             if ($end && $end<$now) {
                   3331:                 next;
                   3332:             }
                   3333:             if ($scope eq 'public') {
                   3334:                 $public = $key;
                   3335:                 last;
                   3336:             } elsif ($scope eq 'guest') {
                   3337:                 $guest = $key;
                   3338:             } elsif ($scope eq 'domains') {
                   3339:                 push(@domains,$key);
                   3340:             } elsif ($scope eq 'users') {
                   3341:                 push(@users,$key);
                   3342:             } elsif ($scope eq 'course') {
                   3343:                 push(@courses,$key);
                   3344:             } elsif ($scope eq 'group') {
                   3345:                 push(@groups,$key);
                   3346:             }
                   3347:         }
                   3348:         if ($public) {
                   3349:             return 'ok';
                   3350:         }
                   3351:         if ($env{'user.name'} eq 'public' && $env{'user.domain'} eq 'public') {
                   3352:             if ($guest) {
                   3353:                 return $guest;
                   3354:             }
                   3355:         } else {
                   3356:             if (@domains > 0) {
                   3357:                 foreach my $domkey (@domains) {
                   3358:                     if (ref($access_hash->{$domkey}{'dom'}) eq 'ARRAY') {
                   3359:                         if (grep(/^\Q$env{'user.domain'}\E$/,@{$access_hash->{$domkey}{'dom'}})) {
                   3360:                             return 'ok';
                   3361:                         }
                   3362:                     }
                   3363:                 }
                   3364:             }
                   3365:             if (@users > 0) {
                   3366:                 foreach my $userkey (@users) {
                   3367:                     if (exists($access_hash->{$userkey}{'users'}{$env{'user.name'}.':'.$env{'user.domain'}})) {
                   3368:                         return 'ok';
                   3369:                     }
                   3370:                 }
                   3371:             }
                   3372:             my %roleshash;
                   3373:             my @courses_and_groups = @courses;
                   3374:             push(@courses_and_groups,@groups); 
                   3375:             if (@courses_and_groups > 0) {
                   3376:                 my (%allgroups,%allroles); 
                   3377:                 my ($start,$end,$role,$sec,$group);
                   3378:                 foreach my $envkey (%env) {
1.807     albertel 3379:                     if ($envkey =~ m-^user\.role\.(gr|cc|in|ta|ep|st)\./($match_domain)/($match_username)/?([^/]*)$-) {
1.765     albertel 3380:                         my $cid = $2.'_'.$3; 
                   3381:                         if ($1 eq 'gr') {
                   3382:                             $group = $4;
                   3383:                             $allgroups{$cid}{$group} = $env{$envkey};
                   3384:                         } else {
                   3385:                             if ($4 eq '') {
                   3386:                                 $sec = 'none';
                   3387:                             } else {
                   3388:                                 $sec = $4;
                   3389:                             }
                   3390:                             $allroles{$cid}{$1}{$sec} = $env{$envkey};
                   3391:                         }
1.807     albertel 3392:                     } elsif ($envkey =~ m-^user\.role\./cr/($match_domain/$match_username/\w*)./($match_domain)/($match_username)/?([^/]*)$-) {
1.765     albertel 3393:                         my $cid = $2.'_'.$3;
                   3394:                         if ($4 eq '') {
                   3395:                             $sec = 'none';
                   3396:                         } else {
                   3397:                             $sec = $4;
                   3398:                         }
                   3399:                         $allroles{$cid}{$1}{$sec} = $env{$envkey};
                   3400:                     }
                   3401:                 }
                   3402:                 if (keys(%allroles) == 0) {
                   3403:                     return;
                   3404:                 }
                   3405:                 foreach my $key (@courses_and_groups) {
                   3406:                     my %content = %{$$access_hash{$key}};
                   3407:                     my $cnum = $content{'number'};
                   3408:                     my $cdom = $content{'domain'};
                   3409:                     my $cid = $cdom.'_'.$cnum;
                   3410:                     if (!exists($allroles{$cid})) {
                   3411:                         next;
                   3412:                     }    
                   3413:                     foreach my $role_id (keys(%{$content{'roles'}})) {
                   3414:                         my @sections = @{$content{'roles'}{$role_id}{'section'}};
                   3415:                         my @groups = @{$content{'roles'}{$role_id}{'group'}};
                   3416:                         my @status = @{$content{'roles'}{$role_id}{'access'}};
                   3417:                         my @roles = @{$content{'roles'}{$role_id}{'role'}};
                   3418:                         foreach my $role (keys(%{$allroles{$cid}})) {
                   3419:                             if ((grep/^all$/,@roles) || (grep/^\Q$role\E$/,@roles)) {
                   3420:                                 foreach my $sec (keys(%{$allroles{$cid}{$role}})) {
                   3421:                                     if (&course_group_datechecker($allroles{$cid}{$role}{$sec},$now,\@status) eq 'ok') {
                   3422:                                         if (grep/^all$/,@sections) {
                   3423:                                             return 'ok';
                   3424:                                         } else {
                   3425:                                             if (grep/^$sec$/,@sections) {
                   3426:                                                 return 'ok';
                   3427:                                             }
                   3428:                                         }
                   3429:                                     }
                   3430:                                 }
                   3431:                                 if (keys(%{$allgroups{$cid}}) == 0) {
                   3432:                                     if (grep/^none$/,@groups) {
                   3433:                                         return 'ok';
                   3434:                                     }
                   3435:                                 } else {
                   3436:                                     if (grep/^all$/,@groups) {
                   3437:                                         return 'ok';
                   3438:                                     } 
                   3439:                                     foreach my $group (keys(%{$allgroups{$cid}})) {
                   3440:                                         if (grep/^$group$/,@groups) {
                   3441:                                             return 'ok';
                   3442:                                         }
                   3443:                                     }
                   3444:                                 } 
                   3445:                             }
                   3446:                         }
                   3447:                     }
                   3448:                 }
                   3449:             }
                   3450:             if ($guest) {
                   3451:                 return $guest;
                   3452:             }
                   3453:         }
                   3454:     }
                   3455:     return;
                   3456: }
                   3457: 
                   3458: sub course_group_datechecker {
                   3459:     my ($dates,$now,$status) = @_;
                   3460:     my ($start,$end) = split(/\./,$dates);
                   3461:     if (!$start && !$end) {
                   3462:         return 'ok';
                   3463:     }
                   3464:     if (grep/^active$/,@{$status}) {
                   3465:         if (((!$start) || ($start && $start <= $now)) && ((!$end) || ($end && $end >= $now))) {
                   3466:             return 'ok';
                   3467:         }
                   3468:     }
                   3469:     if (grep/^previous$/,@{$status}) {
                   3470:         if ($end > $now ) {
                   3471:             return 'ok';
                   3472:         }
                   3473:     }
                   3474:     if (grep/^future$/,@{$status}) {
                   3475:         if ($start > $now) {
                   3476:             return 'ok';
                   3477:         }
                   3478:     }
                   3479:     return; 
                   3480: }
                   3481: 
                   3482: sub parse_portfolio_url {
                   3483:     my ($url) = @_;
                   3484: 
                   3485:     my ($type,$udom,$unum,$group,$file_name);
                   3486:     
1.807     albertel 3487:     if ($url =~  m-^/*uploaded/($match_domain)/($match_username)/portfolio(/.+)$-) {
1.765     albertel 3488: 	$type = 1;
                   3489:         $udom = $1;
                   3490:         $unum = $2;
                   3491:         $file_name = $3;
1.807     albertel 3492:     } elsif ($url =~ m-^/*uploaded/($match_domain)/($match_username)/groups/([^/]+)/portfolio/(.+)$-) {
1.765     albertel 3493: 	$type = 2;
                   3494:         $udom = $1;
                   3495:         $unum = $2;
                   3496:         $group = $3;
                   3497:         $file_name = $3.'/'.$4;
                   3498:     }
                   3499:     if (wantarray) {
                   3500: 	return ($type,$udom,$unum,$file_name,$group);
                   3501:     }
                   3502:     return $type;
                   3503: }
                   3504: 
                   3505: sub is_portfolio_url {
                   3506:     my ($url) = @_;
                   3507:     return scalar(&parse_portfolio_url($url));
                   3508: }
                   3509: 
1.798     raeburn  3510: sub is_portfolio_file {
                   3511:     my ($file) = @_;
1.807     albertel 3512:     if (($file =~ /^portfolio/) || ($file =~ /^groups\/$match_username\/portfolio/)) {
1.798     raeburn  3513:         return 1;
                   3514:     }
                   3515:     return;
                   3516: }
                   3517: 
                   3518: 
1.341     www      3519: # ---------------------------------------------- Custom access rule evaluation
                   3520: 
                   3521: sub customaccess {
                   3522:     my ($priv,$uri)=@_;
1.807     albertel 3523:     my ($urole,$urealm)=split(/\./,$env{'request.role'},2);
1.343     www      3524:     my ($udom,$ucrs,$usec)=split(/\//,$urealm);
1.807     albertel 3525:     $udom = &LONCAPA::clean_domain($udom);
                   3526:     $ucrs = &LONCAPA::clean_username($ucrs);
1.341     www      3527:     my $access=0;
1.800     albertel 3528:     foreach my $right (split(/\s*\,\s*/,&metadata($uri,'rule_rights'))) {
                   3529: 	my ($effect,$realm,$role)=split(/\:/,$right);
1.343     www      3530:         if ($role) {
                   3531: 	   if ($role ne $urole) { next; }
                   3532:         }
1.800     albertel 3533:         foreach my $scope (split(/\s*\,\s*/,$realm)) {
                   3534:             my ($tdom,$tcrs,$tsec)=split(/\_/,$scope);
1.343     www      3535:             if ($tdom) {
                   3536: 		if ($tdom ne $udom) { next; }
                   3537:             }
                   3538:             if ($tcrs) {
                   3539: 		if ($tcrs ne $ucrs) { next; }
                   3540:             }
                   3541:             if ($tsec) {
                   3542: 		if ($tsec ne $usec) { next; }
                   3543:             }
                   3544:             $access=($effect eq 'allow');
                   3545:             last;
1.342     www      3546:         }
1.402     bowersj2 3547: 	if ($realm eq '' && $role eq '') {
                   3548:             $access=($effect eq 'allow');
                   3549: 	}
1.341     www      3550:     }
                   3551:     return $access;
                   3552: }
                   3553: 
1.103     harris41 3554: # ------------------------------------------------- Check for a user privilege
1.12      www      3555: 
                   3556: sub allowed {
1.579     albertel 3557:     my ($priv,$uri,$symb)=@_;
1.705     albertel 3558:     my $ver_orguri=$uri;
1.439     www      3559:     $uri=&deversion($uri);
1.152     www      3560:     my $orguri=$uri;
1.52      www      3561:     $uri=&declutter($uri);
1.545     banghart 3562:     
1.620     albertel 3563:     if (defined($env{'allowed.'.$priv})) { return $env{'allowed.'.$priv}; }
1.54      www      3564: # Free bre access to adm and meta resources
1.775     albertel 3565:     if (((($uri=~/^adm\//) && ($uri !~ m{/(?:smppg|bulletinboard)$})) 
1.769     albertel 3566: 	 || (($uri=~/\.meta$/) && ($uri!~m|^uploaded/|) )) 
                   3567: 	&& ($priv eq 'bre')) {
1.14      www      3568: 	return 'F';
1.159     www      3569:     }
                   3570: 
1.545     banghart 3571: # Free bre access to user's own portfolio contents
1.714     raeburn  3572:     my ($space,$domain,$name,@dir)=split('/',$uri);
1.647     raeburn  3573:     if (($space=~/^(uploaded|editupload)$/) && ($env{'user.name'} eq $name) && 
1.714     raeburn  3574: 	($env{'user.domain'} eq $domain) && ('portfolio' eq $dir[0])) {
1.545     banghart 3575:         return 'F';
                   3576:     }
                   3577: 
1.762     raeburn  3578: # bre access to group portfolio for rgf priv in group, or mdg or vcg in course.
1.714     raeburn  3579:     if (($space=~/^(uploaded|editupload)$/) && ($dir[0] eq 'groups') 
                   3580:          && ($dir[2] eq 'portfolio') && ($priv eq 'bre')) {
                   3581:         if (exists($env{'request.course.id'})) {
                   3582:             my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
                   3583:             my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
                   3584:             if (($domain eq $cdom) && ($name eq $cnum)) {
                   3585:                 my $courseprivid=$env{'request.course.id'};
                   3586:                 $courseprivid=~s/\_/\//;
                   3587:                 if ($env{'user.priv.'.$env{'request.role'}.'./'.$courseprivid
                   3588:                     .'/'.$dir[1]} =~/rgf\&([^\:]*)/) {
                   3589:                     return $1; 
1.762     raeburn  3590:                 } else {
                   3591:                     if ($env{'request.course.sec'}) {
                   3592:                         $courseprivid.='/'.$env{'request.course.sec'};
                   3593:                     }
                   3594:                     if ($env{'user.priv.'.$env{'request.role'}.'./'.
                   3595:                         $courseprivid} =~/(mdg|vcg)\&([^\:]*)/) {
                   3596:                         return $2;
                   3597:                     }
1.714     raeburn  3598:                 }
                   3599:             }
                   3600:         }
                   3601:     }
                   3602: 
1.159     www      3603: # Free bre to public access
                   3604: 
                   3605:     if ($priv eq 'bre') {
1.238     www      3606:         my $copyright=&metadata($uri,'copyright');
1.620     albertel 3607: 	if (($copyright eq 'public') && (!$env{'request.course.id'})) { 
1.301     www      3608:            return 'F'; 
                   3609:         }
1.238     www      3610:         if ($copyright eq 'priv') {
                   3611:             $uri=~/([^\/]+)\/([^\/]+)\//;
1.620     albertel 3612: 	    unless (($env{'user.name'} eq $2) && ($env{'user.domain'} eq $1)) {
1.238     www      3613: 		return '';
                   3614:             }
                   3615:         }
                   3616:         if ($copyright eq 'domain') {
                   3617:             $uri=~/([^\/]+)\/([^\/]+)\//;
1.620     albertel 3618: 	    unless (($env{'user.domain'} eq $1) ||
                   3619:                  ($env{'course.'.$env{'request.course.id'}.'.domain'} eq $1)) {
1.238     www      3620: 		return '';
                   3621:             }
1.262     matthew  3622:         }
1.620     albertel 3623:         if ($env{'request.role'}=~ /li\.\//) {
1.262     matthew  3624:             # Library role, so allow browsing of resources in this domain.
                   3625:             return 'F';
1.238     www      3626:         }
1.341     www      3627:         if ($copyright eq 'custom') {
                   3628: 	    unless (&customaccess($priv,$uri)) { return ''; }
                   3629:         }
1.14      www      3630:     }
1.264     matthew  3631:     # Domain coordinator is trying to create a course
1.620     albertel 3632:     if (($priv eq 'ccc') && ($env{'request.role'} =~ /^dc\./)) {
1.264     matthew  3633:         # uri is the requested domain in this case.
                   3634:         # comparison to 'request.role.domain' shows if the user has selected
1.678     raeburn  3635:         # a role of dc for the domain in question.
1.620     albertel 3636:         return 'F' if ($uri eq $env{'request.role.domain'});
1.264     matthew  3637:     }
1.29      www      3638: 
1.52      www      3639:     my $thisallowed='';
                   3640:     my $statecond=0;
                   3641:     my $courseprivid='';
                   3642: 
                   3643: # Course
                   3644: 
1.620     albertel 3645:     if ($env{'user.priv.'.$env{'request.role'}.'./'}=~/\Q$priv\E\&([^\:]*)/) {
1.52      www      3646:        $thisallowed.=$1;
                   3647:     }
1.29      www      3648: 
1.52      www      3649: # Domain
                   3650: 
1.620     albertel 3651:     if ($env{'user.priv.'.$env{'request.role'}.'./'.(split(/\//,$uri))[0].'/'}
1.479     albertel 3652:        =~/\Q$priv\E\&([^\:]*)/) {
1.12      www      3653:        $thisallowed.=$1;
                   3654:     }
1.52      www      3655: 
                   3656: # Course: uri itself is a course
1.66      www      3657:     my $courseuri=$uri;
                   3658:     $courseuri=~s/\_(\d)/\/$1/;
1.83      www      3659:     $courseuri=~s/^([^\/])/\/$1/;
1.81      www      3660: 
1.620     albertel 3661:     if ($env{'user.priv.'.$env{'request.role'}.'.'.$courseuri}
1.479     albertel 3662:        =~/\Q$priv\E\&([^\:]*)/) {
1.12      www      3663:        $thisallowed.=$1;
                   3664:     }
1.29      www      3665: 
1.665     albertel 3666: # URI is an uploaded document for this course, default permissions don't matter
1.611     albertel 3667: # not allowing 'edit' access (editupload) to uploaded course docs
1.492     albertel 3668:     if (($priv eq 'bre') && ($uri=~m|^uploaded/|)) {
1.665     albertel 3669: 	$thisallowed='';
1.671     raeburn  3670:         my ($match)=&is_on_map($uri);
                   3671:         if ($match) {
                   3672:             if ($env{'user.priv.'.$env{'request.role'}.'./'}
                   3673:                   =~/\Q$priv\E\&([^\:]*)/) {
                   3674:                 $thisallowed.=$1;
                   3675:             }
                   3676:         } else {
1.705     albertel 3677:             my $refuri = $env{'httpref.'.$orguri} || $env{'httpref.'.$ver_orguri};
1.671     raeburn  3678:             if ($refuri) {
                   3679:                 if ($refuri =~ m|^/adm/|) {
1.669     raeburn  3680:                     $thisallowed='F';
1.671     raeburn  3681:                 } else {
                   3682:                     $refuri=&declutter($refuri);
                   3683:                     my ($match) = &is_on_map($refuri);
                   3684:                     if ($match) {
                   3685:                         $thisallowed='F';
                   3686:                     }
1.669     raeburn  3687:                 }
1.671     raeburn  3688:             }
                   3689:         }
1.314     www      3690:     }
1.492     albertel 3691: 
1.766     albertel 3692:     if ($priv eq 'bre'
                   3693: 	&& $thisallowed ne 'F' 
                   3694: 	&& $thisallowed ne '2'
                   3695: 	&& &is_portfolio_url($uri)) {
                   3696: 	$thisallowed = &portfolio_access($uri);
                   3697:     }
                   3698:     
1.52      www      3699: # Full access at system, domain or course-wide level? Exit.
1.29      www      3700: 
                   3701:     if ($thisallowed=~/F/) {
                   3702: 	return 'F';
                   3703:     }
                   3704: 
1.52      www      3705: # If this is generating or modifying users, exit with special codes
1.29      www      3706: 
1.643     www      3707:     if (':csu:cdc:ccc:cin:cta:cep:ccr:cst:cad:cli:cau:cdg:cca:caa:'=~/\:\Q$priv\E\:/) {
                   3708: 	if (($priv eq 'cca') || ($priv eq 'caa')) {
1.642     albertel 3709: 	    my ($audom,$auname)=split('/',$uri);
1.643     www      3710: # no author name given, so this just checks on the general right to make a co-author in this domain
                   3711: 	    unless ($auname) { return $thisallowed; }
                   3712: # an author name is given, so we are about to actually make a co-author for a certain account
1.642     albertel 3713: 	    if (($auname ne $env{'user.name'} && $env{'request.role'} !~ /^dc\./) ||
                   3714: 		(($audom ne $env{'user.domain'} && $env{'request.role'} !~ /^dc\./) &&
                   3715: 		 ($audom ne $env{'request.role.domain'}))) { return ''; }
                   3716: 	}
1.52      www      3717: 	return $thisallowed;
                   3718:     }
                   3719: #
1.103     harris41 3720: # Gathered so far: system, domain and course wide privileges
1.52      www      3721: #
                   3722: # Course: See if uri or referer is an individual resource that is part of 
                   3723: # the course
                   3724: 
1.620     albertel 3725:     if ($env{'request.course.id'}) {
1.232     www      3726: 
1.620     albertel 3727:        $courseprivid=$env{'request.course.id'};
                   3728:        if ($env{'request.course.sec'}) {
                   3729:           $courseprivid.='/'.$env{'request.course.sec'};
1.52      www      3730:        }
                   3731:        $courseprivid=~s/\_/\//;
                   3732:        my $checkreferer=1;
1.232     www      3733:        my ($match,$cond)=&is_on_map($uri);
                   3734:        if ($match) {
                   3735:            $statecond=$cond;
1.620     albertel 3736:            if ($env{'user.priv.'.$env{'request.role'}.'./'.$courseprivid}
1.479     albertel 3737:                =~/\Q$priv\E\&([^\:]*)/) {
1.52      www      3738:                $thisallowed.=$1;
                   3739:                $checkreferer=0;
                   3740:            }
1.29      www      3741:        }
1.83      www      3742:        
1.148     www      3743:        if ($checkreferer) {
1.620     albertel 3744: 	  my $refuri=$env{'httpref.'.$orguri};
1.148     www      3745:             unless ($refuri) {
1.800     albertel 3746:                 foreach my $key (keys(%env)) {
                   3747: 		    if ($key=~/^httpref\..*\*/) {
                   3748: 			my $pattern=$key;
1.156     www      3749:                         $pattern=~s/^httpref\.\/res\///;
1.148     www      3750:                         $pattern=~s/\*/\[\^\/\]\+/g;
                   3751:                         $pattern=~s/\//\\\//g;
1.152     www      3752:                         if ($orguri=~/$pattern/) {
1.800     albertel 3753: 			    $refuri=$env{$key};
1.148     www      3754:                         }
                   3755:                     }
1.191     harris41 3756:                 }
1.148     www      3757:             }
1.232     www      3758: 
1.148     www      3759:          if ($refuri) { 
1.152     www      3760: 	  $refuri=&declutter($refuri);
1.232     www      3761:           my ($match,$cond)=&is_on_map($refuri);
                   3762:             if ($match) {
                   3763:               my $refstatecond=$cond;
1.620     albertel 3764:               if ($env{'user.priv.'.$env{'request.role'}.'./'.$courseprivid}
1.479     albertel 3765:                   =~/\Q$priv\E\&([^\:]*)/) {
1.52      www      3766:                   $thisallowed.=$1;
1.53      www      3767:                   $uri=$refuri;
                   3768:                   $statecond=$refstatecond;
1.52      www      3769:               }
                   3770:           }
1.148     www      3771:         }
1.29      www      3772:        }
1.52      www      3773:    }
1.29      www      3774: 
1.52      www      3775: #
1.103     harris41 3776: # Gathered now: all privileges that could apply, and condition number
1.52      www      3777: # 
                   3778: #
                   3779: # Full or no access?
                   3780: #
1.29      www      3781: 
1.52      www      3782:     if ($thisallowed=~/F/) {
                   3783: 	return 'F';
                   3784:     }
1.29      www      3785: 
1.52      www      3786:     unless ($thisallowed) {
                   3787:         return '';
                   3788:     }
1.29      www      3789: 
1.52      www      3790: # Restrictions exist, deal with them
                   3791: #
                   3792: #   C:according to course preferences
                   3793: #   R:according to resource settings
                   3794: #   L:unless locked
                   3795: #   X:according to user session state
                   3796: #
                   3797: 
                   3798: # Possibly locked functionality, check all courses
1.54      www      3799: # Locks might take effect only after 10 minutes cache expiration for other
                   3800: # courses, and 2 minutes for current course
1.52      www      3801: 
                   3802:     my $envkey;
                   3803:     if ($thisallowed=~/L/) {
1.620     albertel 3804:         foreach $envkey (keys %env) {
1.54      www      3805:            if ($envkey=~/^user\.role\.(st|ta)\.([^\.]*)/) {
                   3806:                my $courseid=$2;
                   3807:                my $roleid=$1.'.'.$2;
1.92      www      3808:                $courseid=~s/^\///;
1.54      www      3809:                my $expiretime=600;
1.620     albertel 3810:                if ($env{'request.role'} eq $roleid) {
1.54      www      3811: 		  $expiretime=120;
                   3812:                }
                   3813: 	       my ($cdom,$cnum,$csec)=split(/\//,$courseid);
                   3814:                my $prefix='course.'.$cdom.'_'.$cnum.'.';
1.620     albertel 3815:                if ((time-$env{$prefix.'last_cache'})>$expiretime) {
1.731     albertel 3816: 		   &coursedescription($courseid,{'freshen_cache' => 1});
1.54      www      3817:                }
1.620     albertel 3818:                if (($env{$prefix.'res.'.$uri.'.lock.sections'}=~/\,\Q$csec\E\,/)
                   3819:                 || ($env{$prefix.'res.'.$uri.'.lock.sections'} eq 'all')) {
                   3820: 		   if ($env{$prefix.'res.'.$uri.'.lock.expire'}>time) {
                   3821:                        &log($env{'user.domain'},$env{'user.name'},
                   3822:                             $env{'user.home'},
1.57      www      3823:                             'Locked by res: '.$priv.' for '.$uri.' due to '.
1.52      www      3824:                             $cdom.'/'.$cnum.'/'.$csec.' expire '.
1.620     albertel 3825:                             $env{$prefix.'priv.'.$priv.'.lock.expire'});
1.52      www      3826: 		       return '';
                   3827:                    }
                   3828:                }
1.620     albertel 3829:                if (($env{$prefix.'priv.'.$priv.'.lock.sections'}=~/\,\Q$csec\E\,/)
                   3830:                 || ($env{$prefix.'priv.'.$priv.'.lock.sections'} eq 'all')) {
                   3831: 		   if ($env{'priv.'.$priv.'.lock.expire'}>time) {
                   3832:                        &log($env{'user.domain'},$env{'user.name'},
                   3833:                             $env{'user.home'},
1.57      www      3834:                             'Locked by priv: '.$priv.' for '.$uri.' due to '.
1.52      www      3835:                             $cdom.'/'.$cnum.'/'.$csec.' expire '.
1.620     albertel 3836:                             $env{$prefix.'priv.'.$priv.'.lock.expire'});
1.52      www      3837: 		       return '';
                   3838:                    }
                   3839:                }
                   3840: 	   }
1.29      www      3841:        }
1.52      www      3842:     }
                   3843:    
                   3844: #
                   3845: # Rest of the restrictions depend on selected course
                   3846: #
                   3847: 
1.620     albertel 3848:     unless ($env{'request.course.id'}) {
1.766     albertel 3849: 	if ($thisallowed eq 'A') {
                   3850: 	    return 'A';
                   3851: 	} else {
                   3852: 	    return '1';
                   3853: 	}
1.52      www      3854:     }
1.29      www      3855: 
1.52      www      3856: #
                   3857: # Now user is definitely in a course
                   3858: #
1.53      www      3859: 
                   3860: 
                   3861: # Course preferences
                   3862: 
                   3863:    if ($thisallowed=~/C/) {
1.620     albertel 3864:        my $rolecode=(split(/\./,$env{'request.role'}))[0];
                   3865:        my $unamedom=$env{'user.name'}.':'.$env{'user.domain'};
                   3866:        if ($env{'course.'.$env{'request.course.id'}.'.'.$priv.'.roles.denied'}
1.479     albertel 3867: 	   =~/\Q$rolecode\E/) {
1.689     albertel 3868: 	   if ($priv ne 'pch') { 
                   3869: 	       &logthis($env{'user.domain'}.':'.$env{'user.name'}.':'.$env{'user.home'}.':'.
                   3870: 			'Denied by role: '.$priv.' for '.$uri.' as '.$rolecode.' in '.
                   3871: 			$env{'request.course.id'});
                   3872: 	   }
1.237     www      3873:            return '';
                   3874:        }
                   3875: 
1.620     albertel 3876:        if ($env{'course.'.$env{'request.course.id'}.'.'.$priv.'.users.denied'}
1.479     albertel 3877: 	   =~/\Q$unamedom\E/) {
1.689     albertel 3878: 	   if ($priv ne 'pch') { 
                   3879: 	       &logthis($env{'user.domain'}.':'.$env{'user.name'}.':'.$env{'user.home'}.
                   3880: 			'Denied by user: '.$priv.' for '.$uri.' as '.$unamedom.' in '.
                   3881: 			$env{'request.course.id'});
                   3882: 	   }
1.54      www      3883:            return '';
                   3884:        }
1.53      www      3885:    }
                   3886: 
                   3887: # Resource preferences
                   3888: 
                   3889:    if ($thisallowed=~/R/) {
1.620     albertel 3890:        my $rolecode=(split(/\./,$env{'request.role'}))[0];
1.479     albertel 3891:        if (&metadata($uri,'roledeny')=~/\Q$rolecode\E/) {
1.689     albertel 3892: 	   if ($priv ne 'pch') { 
                   3893: 	       &logthis($env{'user.domain'}.':'.$env{'user.name'}.':'.$env{'user.home'}.':'.
                   3894: 			'Denied by role: '.$priv.' for '.$uri.' as '.$rolecode);
                   3895: 	   }
                   3896: 	   return '';
1.54      www      3897:        }
1.53      www      3898:    }
1.30      www      3899: 
1.246     www      3900: # Restricted by state or randomout?
1.30      www      3901: 
1.52      www      3902:    if ($thisallowed=~/X/) {
1.620     albertel 3903:       if ($env{'acc.randomout'}) {
1.579     albertel 3904: 	 if (!$symb) { $symb=&symbread($uri,1); }
1.620     albertel 3905:          if (($symb) && ($env{'acc.randomout'}=~/\&\Q$symb\E\&/)) { 
1.248     www      3906:             return ''; 
                   3907:          }
1.247     www      3908:       }
                   3909:       if (&condval($statecond)) {
1.52      www      3910: 	 return '2';
                   3911:       } else {
                   3912:          return '';
                   3913:       }
                   3914:    }
1.30      www      3915: 
1.766     albertel 3916:     if ($thisallowed eq 'A') {
                   3917: 	return 'A';
                   3918:     }
1.52      www      3919:    return 'F';
1.232     www      3920: }
                   3921: 
1.710     albertel 3922: sub split_uri_for_cond {
                   3923:     my $uri=&deversion(&declutter(shift));
                   3924:     my @uriparts=split(/\//,$uri);
                   3925:     my $filename=pop(@uriparts);
                   3926:     my $pathname=join('/',@uriparts);
                   3927:     return ($pathname,$filename);
                   3928: }
1.232     www      3929: # --------------------------------------------------- Is a resource on the map?
                   3930: 
                   3931: sub is_on_map {
1.710     albertel 3932:     my ($pathname,$filename) = &split_uri_for_cond(shift);
1.289     bowersj2 3933:     #Trying to find the conditional for the file
1.620     albertel 3934:     my $match=($env{'acc.res.'.$env{'request.course.id'}.'.'.$pathname}=~
1.289     bowersj2 3935: 	       /\&\Q$filename\E\:([\d\|]+)\&/);
1.232     www      3936:     if ($match) {
1.289     bowersj2 3937: 	return (1,$1);
                   3938:     } else {
1.434     www      3939: 	return (0,0);
1.289     bowersj2 3940:     }
1.12      www      3941: }
                   3942: 
1.427     www      3943: # --------------------------------------------------------- Get symb from alias
                   3944: 
                   3945: sub get_symb_from_alias {
                   3946:     my $symb=shift;
                   3947:     my ($map,$resid,$url)=&decode_symb($symb);
                   3948: # Already is a symb
                   3949:     if ($url) { return $symb; }
                   3950: # Must be an alias
                   3951:     my $aliassymb='';
                   3952:     my %bighash;
1.620     albertel 3953:     if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.427     www      3954:                             &GDBM_READER(),0640)) {
                   3955:         my $rid=$bighash{'mapalias_'.$symb};
                   3956: 	if ($rid) {
                   3957: 	    my ($mapid,$resid)=split(/\./,$rid);
1.429     albertel 3958: 	    $aliassymb=&encode_symb($bighash{'map_id_'.$mapid},
                   3959: 				    $resid,$bighash{'src_'.$rid});
1.427     www      3960: 	}
                   3961:         untie %bighash;
                   3962:     }
                   3963:     return $aliassymb;
                   3964: }
                   3965: 
1.12      www      3966: # ----------------------------------------------------------------- Define Role
                   3967: 
                   3968: sub definerole {
                   3969:   if (allowed('mcr','/')) {
                   3970:     my ($rolename,$sysrole,$domrole,$courole)=@_;
1.800     albertel 3971:     foreach my $role (split(':',$sysrole)) {
                   3972: 	my ($crole,$cqual)=split(/\&/,$role);
1.479     albertel 3973:         if ($pr{'cr:s'}!~/\Q$crole\E/) { return "refused:s:$crole"; }
                   3974:         if ($pr{'cr:s'}=~/\Q$crole\E\&/) {
                   3975: 	    if ($pr{'cr:s'}!~/\Q$crole\E\&\w*\Q$cqual\E/) { 
1.21      www      3976:                return "refused:s:$crole&$cqual"; 
                   3977:             }
                   3978:         }
1.191     harris41 3979:     }
1.800     albertel 3980:     foreach my $role (split(':',$domrole)) {
                   3981: 	my ($crole,$cqual)=split(/\&/,$role);
1.479     albertel 3982:         if ($pr{'cr:d'}!~/\Q$crole\E/) { return "refused:d:$crole"; }
                   3983:         if ($pr{'cr:d'}=~/\Q$crole\E\&/) {
                   3984: 	    if ($pr{'cr:d'}!~/\Q$crole\W\&\w*\Q$cqual\E/) { 
1.21      www      3985:                return "refused:d:$crole&$cqual"; 
                   3986:             }
                   3987:         }
1.191     harris41 3988:     }
1.800     albertel 3989:     foreach my $role (split(':',$courole)) {
                   3990: 	my ($crole,$cqual)=split(/\&/,$role);
1.479     albertel 3991:         if ($pr{'cr:c'}!~/\Q$crole\E/) { return "refused:c:$crole"; }
                   3992:         if ($pr{'cr:c'}=~/\Q$crole\E\&/) {
                   3993: 	    if ($pr{'cr:c'}!~/\Q$crole\E\&\w*\Q$cqual\E/) { 
1.21      www      3994:                return "refused:c:$crole&$cqual"; 
                   3995:             }
                   3996:         }
1.191     harris41 3997:     }
1.620     albertel 3998:     my $command="encrypt:rolesput:$env{'user.domain'}:$env{'user.name'}:".
                   3999:                 "$env{'user.domain'}:$env{'user.name'}:".
1.21      www      4000: 	        "rolesdef_$rolename=".
                   4001:                 escape($sysrole.'_'.$domrole.'_'.$courole);
1.620     albertel 4002:     return reply($command,$env{'user.home'});
1.12      www      4003:   } else {
                   4004:     return 'refused';
                   4005:   }
1.105     harris41 4006: }
                   4007: 
                   4008: # ---------------- Make a metadata query against the network of library servers
                   4009: 
                   4010: sub metadata_query {
1.244     matthew  4011:     my ($query,$custom,$customshow,$server_array)=@_;
1.120     harris41 4012:     my %rhash;
1.244     matthew  4013:     my @server_list = (defined($server_array) ? @$server_array
                   4014:                                               : keys(%libserv) );
                   4015:     for my $server (@server_list) {
1.118     harris41 4016: 	unless ($custom or $customshow) {
                   4017: 	    my $reply=&reply("querysend:".&escape($query),$server);
                   4018: 	    $rhash{$server}=$reply;
                   4019: 	}
                   4020: 	else {
                   4021: 	    my $reply=&reply("querysend:".&escape($query).':'.
                   4022: 			     &escape($custom).':'.&escape($customshow),
                   4023: 			     $server);
                   4024: 	    $rhash{$server}=$reply;
                   4025: 	}
1.112     harris41 4026:     }
1.118     harris41 4027:     return \%rhash;
1.240     www      4028: }
                   4029: 
                   4030: # ----------------------------------------- Send log queries and wait for reply
                   4031: 
                   4032: sub log_query {
                   4033:     my ($uname,$udom,$query,%filters)=@_;
                   4034:     my $uhome=&homeserver($uname,$udom);
                   4035:     if ($uhome eq 'no_host') { return 'error: no_host'; }
                   4036:     my $uhost=$hostname{$uhome};
1.800     albertel 4037:     my $command=&escape(join(':',map{$_.'='.$filters{$_}} keys(%filters)));
1.240     www      4038:     my $queryid=&reply("querysend:".$query.':'.$udom.':'.$uname.':'.$command,
                   4039:                        $uhome);
1.479     albertel 4040:     unless ($queryid=~/^\Q$uhost\E\_/) { return 'error: '.$queryid; }
1.242     www      4041:     return get_query_reply($queryid);
                   4042: }
                   4043: 
1.508     raeburn  4044: # ------- Request retrieval of institutional classlists for course(s)
1.506     raeburn  4045: 
                   4046: sub fetch_enrollment_query {
1.511     raeburn  4047:     my ($context,$affiliatesref,$replyref,$dom,$cnum) = @_;
1.508     raeburn  4048:     my $homeserver;
1.547     raeburn  4049:     my $maxtries = 1;
1.508     raeburn  4050:     if ($context eq 'automated') {
                   4051:         $homeserver = $perlvar{'lonHostID'};
1.547     raeburn  4052:         $maxtries = 10; # will wait for up to 2000s for retrieval of classlist data before timeout
1.508     raeburn  4053:     } else {
                   4054:         $homeserver = &homeserver($cnum,$dom);
                   4055:     }
1.506     raeburn  4056:     my $host=$hostname{$homeserver};
                   4057:     my $cmd = '';
1.800     albertel 4058:     foreach my $affiliate (keys %{$affiliatesref}) {
                   4059:         $cmd .= $affiliate.'='.join(",",@{$$affiliatesref{$affiliate}}).'%%';
1.506     raeburn  4060:     }
                   4061:     $cmd =~ s/%%$//;
                   4062:     $cmd = &escape($cmd);
                   4063:     my $query = 'fetchenrollment';
1.620     albertel 4064:     my $queryid=&reply("querysend:".$query.':'.$dom.':'.$env{'user.name'}.':'.$cmd,$homeserver);
1.526     raeburn  4065:     unless ($queryid=~/^\Q$host\E\_/) { 
                   4066:         &logthis('fetch_enrollment_query: invalid queryid: '.$queryid.' for host: '.$host.' and homeserver: '.$homeserver.' context: '.$context.' '.$cnum); 
                   4067:         return 'error: '.$queryid;
                   4068:     }
1.506     raeburn  4069:     my $reply = &get_query_reply($queryid);
1.547     raeburn  4070:     my $tries = 1;
                   4071:     while (($reply=~/^timeout/) && ($tries < $maxtries)) {
                   4072:         $reply = &get_query_reply($queryid);
                   4073:         $tries ++;
                   4074:     }
1.526     raeburn  4075:     if ( ($reply =~/^timeout/) || ($reply =~/^error/) ) {
1.620     albertel 4076:         &logthis('fetch_enrollment_query error: '.$reply.' for '.$dom.' '.$env{'user.name'}.' for '.$queryid.' context: '.$context.' '.$cnum.' maxtries: '.$maxtries.' tries: '.$tries);
1.526     raeburn  4077:     } else {
1.515     raeburn  4078:         my @responses = split/:/,$reply;
                   4079:         if ($homeserver eq $perlvar{'lonHostID'}) {
1.800     albertel 4080:             foreach my $line (@responses) {
                   4081:                 my ($key,$value) = split(/=/,$line,2);
1.515     raeburn  4082:                 $$replyref{$key} = $value;
                   4083:             }
                   4084:         } else {
1.506     raeburn  4085:             my $pathname = $perlvar{'lonDaemons'}.'/tmp';
1.800     albertel 4086:             foreach my $line (@responses) {
                   4087:                 my ($key,$value) = split(/=/,$line);
1.506     raeburn  4088:                 $$replyref{$key} = $value;
                   4089:                 if ($value > 0) {
1.800     albertel 4090:                     foreach my $item (@{$$affiliatesref{$key}}) {
                   4091:                         my $filename = $dom.'_'.$key.'_'.$item.'_classlist.xml';
1.506     raeburn  4092:                         my $destname = $pathname.'/'.$filename;
                   4093:                         my $xml_classlist = &reply("autoretrieve:".$filename,$homeserver);
1.526     raeburn  4094:                         if ($xml_classlist =~ /^error/) {
                   4095:                             &logthis('fetch_enrollment_query - autoretrieve error: '.$xml_classlist.' for '.$filename.' from server: '.$homeserver.' '.$context.' '.$cnum);
                   4096:                         } else {
1.506     raeburn  4097:                             if ( open(FILE,">$destname") ) {
                   4098:                                 print FILE &unescape($xml_classlist);
                   4099:                                 close(FILE);
1.526     raeburn  4100:                             } else {
                   4101:                                 &logthis('fetch_enrollment_query - error opening classlist file '.$destname.' '.$context.' '.$cnum);
1.506     raeburn  4102:                             }
                   4103:                         }
                   4104:                     }
                   4105:                 }
                   4106:             }
                   4107:         }
                   4108:         return 'ok';
                   4109:     }
                   4110:     return 'error';
                   4111: }
                   4112: 
1.242     www      4113: sub get_query_reply {
                   4114:     my $queryid=shift;
1.240     www      4115:     my $replyfile=$perlvar{'lonDaemons'}.'/tmp/'.$queryid;
                   4116:     my $reply='';
                   4117:     for (1..100) {
                   4118: 	sleep 2;
                   4119:         if (-e $replyfile.'.end') {
1.448     albertel 4120: 	    if (open(my $fh,$replyfile)) {
1.240     www      4121:                $reply.=<$fh>;
1.448     albertel 4122:                close($fh);
1.240     www      4123: 	   } else { return 'error: reply_file_error'; }
1.242     www      4124:            return &unescape($reply);
                   4125: 	}
1.240     www      4126:     }
1.242     www      4127:     return 'timeout:'.$queryid;
1.240     www      4128: }
                   4129: 
                   4130: sub courselog_query {
1.241     www      4131: #
                   4132: # possible filters:
                   4133: # url: url or symb
                   4134: # username
                   4135: # domain
                   4136: # action: view, submit, grade
                   4137: # start: timestamp
                   4138: # end: timestamp
                   4139: #
1.240     www      4140:     my (%filters)=@_;
1.620     albertel 4141:     unless ($env{'request.course.id'}) { return 'no_course'; }
1.241     www      4142:     if ($filters{'url'}) {
                   4143: 	$filters{'url'}=&symbclean(&declutter($filters{'url'}));
                   4144:         $filters{'url'}=~s/\.(\w+)$/(\\.\\d+)*\\.$1/;
                   4145:         $filters{'url'}=~s/\.(\w+)\_\_\_/(\\.\\d+)*\\.$1/;
                   4146:     }
1.620     albertel 4147:     my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
                   4148:     my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.240     www      4149:     return &log_query($cname,$cdom,'courselog',%filters);
                   4150: }
                   4151: 
                   4152: sub userlog_query {
                   4153:     my ($uname,$udom,%filters)=@_;
                   4154:     return &log_query($uname,$udom,'userlog',%filters);
1.12      www      4155: }
                   4156: 
1.506     raeburn  4157: #--------- Call auto-enrollment subs in localenroll.pm for homeserver for course 
                   4158: 
                   4159: sub auto_run {
1.508     raeburn  4160:     my ($cnum,$cdom) = @_;
                   4161:     my $homeserver = &homeserver($cnum,$cdom);
1.511     raeburn  4162:     my $response = &reply('autorun:'.$cdom,$homeserver);
1.506     raeburn  4163:     return $response;
                   4164: }
1.776     albertel 4165: 
1.506     raeburn  4166: sub auto_get_sections {
1.508     raeburn  4167:     my ($cnum,$cdom,$inst_coursecode) = @_;
                   4168:     my $homeserver = &homeserver($cnum,$cdom);
1.506     raeburn  4169:     my @secs = ();
1.511     raeburn  4170:     my $response=&unescape(&reply('autogetsections:'.$inst_coursecode.':'.$cdom,$homeserver));
1.506     raeburn  4171:     unless ($response eq 'refused') {
                   4172:         @secs = split/:/,$response;
                   4173:     }
                   4174:     return @secs;
                   4175: }
1.776     albertel 4176: 
1.506     raeburn  4177: sub auto_new_course {
1.508     raeburn  4178:     my ($cnum,$cdom,$inst_course_id,$owner) = @_;
                   4179:     my $homeserver = &homeserver($cnum,$cdom);
1.515     raeburn  4180:     my $response=&unescape(&reply('autonewcourse:'.$inst_course_id.':'.$owner.':'.$cdom,$homeserver));
1.506     raeburn  4181:     return $response;
                   4182: }
1.776     albertel 4183: 
1.506     raeburn  4184: sub auto_validate_courseID {
1.508     raeburn  4185:     my ($cnum,$cdom,$inst_course_id) = @_;
                   4186:     my $homeserver = &homeserver($cnum,$cdom);
1.511     raeburn  4187:     my $response=&unescape(&reply('autovalidatecourse:'.$inst_course_id.':'.$cdom,$homeserver));
1.506     raeburn  4188:     return $response;
                   4189: }
1.776     albertel 4190: 
1.506     raeburn  4191: sub auto_create_password {
1.508     raeburn  4192:     my ($cnum,$cdom,$authparam) = @_;
                   4193:     my $homeserver = &homeserver($cnum,$cdom); 
1.506     raeburn  4194:     my $create_passwd = 0;
                   4195:     my $authchk = '';
1.511     raeburn  4196:     my $response=&unescape(&reply('autocreatepassword:'.$authparam.':'.$cdom,$homeserver));
1.506     raeburn  4197:     if ($response eq 'refused') {
                   4198:         $authchk = 'refused';
                   4199:     } else {
                   4200:         ($authparam,$create_passwd,$authchk) = split/:/,$response;
                   4201:     }
                   4202:     return ($authparam,$create_passwd,$authchk);
                   4203: }
                   4204: 
1.706     raeburn  4205: sub auto_photo_permission {
                   4206:     my ($cnum,$cdom,$students) = @_;
                   4207:     my $homeserver = &homeserver($cnum,$cdom);
1.707     albertel 4208:     my ($outcome,$perm_reqd,$conditions) = 
                   4209: 	split(/:/,&unescape(&reply('autophotopermission:'.$cdom,$homeserver)),3);
1.709     albertel 4210:     if ($outcome =~ /^(con_lost|unknown_cmd|no_such_host)$/) {
                   4211: 	return (undef,undef);
                   4212:     }
1.706     raeburn  4213:     return ($outcome,$perm_reqd,$conditions);
                   4214: }
                   4215: 
                   4216: sub auto_checkphotos {
                   4217:     my ($uname,$udom,$pid) = @_;
                   4218:     my $homeserver = &homeserver($uname,$udom);
                   4219:     my ($result,$resulttype);
                   4220:     my $outcome = &unescape(&reply('autophotocheck:'.&escape($udom).':'.
1.707     albertel 4221: 				   &escape($uname).':'.&escape($pid),
                   4222: 				   $homeserver));
1.709     albertel 4223:     if ($outcome =~ /^(con_lost|unknown_cmd|no_such_host)$/) {
                   4224: 	return (undef,undef);
                   4225:     }
1.706     raeburn  4226:     if ($outcome) {
                   4227:         ($result,$resulttype) = split(/:/,$outcome);
                   4228:     } 
                   4229:     return ($result,$resulttype);
                   4230: }
                   4231: 
                   4232: sub auto_photochoice {
                   4233:     my ($cnum,$cdom) = @_;
                   4234:     my $homeserver = &homeserver($cnum,$cdom);
                   4235:     my ($update,$comment) = split(/:/,&unescape(&reply('autophotochoice:'.
1.707     albertel 4236: 						       &escape($cdom),
                   4237: 						       $homeserver)));
1.709     albertel 4238:     if ($update =~ /^(con_lost|unknown_cmd|no_such_host)$/) {
                   4239: 	return (undef,undef);
                   4240:     }
1.706     raeburn  4241:     return ($update,$comment);
                   4242: }
                   4243: 
                   4244: sub auto_photoupdate {
                   4245:     my ($affiliatesref,$dom,$cnum,$photo) = @_;
                   4246:     my $homeserver = &homeserver($cnum,$dom);
                   4247:     my $host=$hostname{$homeserver};
                   4248:     my $cmd = '';
                   4249:     my $maxtries = 1;
1.800     albertel 4250:     foreach my $affiliate (keys(%{$affiliatesref})) {
                   4251:         $cmd .= $affiliate.'='.join(",",@{$$affiliatesref{$affiliate}}).'%%';
1.706     raeburn  4252:     }
                   4253:     $cmd =~ s/%%$//;
                   4254:     $cmd = &escape($cmd);
                   4255:     my $query = 'institutionalphotos';
                   4256:     my $queryid=&reply("querysend:".$query.':'.$dom.':'.$cnum.':'.$cmd,$homeserver);
                   4257:     unless ($queryid=~/^\Q$host\E\_/) {
                   4258:         &logthis('institutionalphotos: invalid queryid: '.$queryid.' for host: '.$host.' and homeserver: '.$homeserver.' and course: '.$cnum);
                   4259:         return 'error: '.$queryid;
                   4260:     }
                   4261:     my $reply = &get_query_reply($queryid);
                   4262:     my $tries = 1;
                   4263:     while (($reply=~/^timeout/) && ($tries < $maxtries)) {
                   4264:         $reply = &get_query_reply($queryid);
                   4265:         $tries ++;
                   4266:     }
                   4267:     if ( ($reply =~/^timeout/) || ($reply =~/^error/) ) {
                   4268:         &logthis('institutionalphotos error: '.$reply.' for '.$dom.' '.$env{'user.name'}.' for '.$queryid.' course: '.$cnum.' maxtries: '.$maxtries.' tries: '.$tries);
                   4269:     } else {
                   4270:         my @responses = split(/:/,$reply);
                   4271:         my $outcome = shift(@responses); 
                   4272:         foreach my $item (@responses) {
                   4273:             my ($key,$value) = split(/=/,$item);
                   4274:             $$photo{$key} = $value;
                   4275:         }
                   4276:         return $outcome;
                   4277:     }
                   4278:     return 'error';
                   4279: }
                   4280: 
1.521     raeburn  4281: sub auto_instcode_format {
1.793     albertel 4282:     my ($caller,$codedom,$instcodes,$codes,$codetitles,$cat_titles,
                   4283: 	$cat_order) = @_;
1.521     raeburn  4284:     my $courses = '';
1.772     raeburn  4285:     my @homeservers;
1.521     raeburn  4286:     if ($caller eq 'global') {
1.793     albertel 4287:         foreach my $tryserver (keys(%libserv)) {
1.584     raeburn  4288:             if ($hostdom{$tryserver} eq $codedom) {
1.793     albertel 4289:                 if (!grep(/^\Q$tryserver\E$/,@homeservers)) {
1.772     raeburn  4290:                     push(@homeservers,$tryserver);
                   4291:                 }
1.584     raeburn  4292:             }
                   4293:         }
1.521     raeburn  4294:     } else {
1.772     raeburn  4295:         push(@homeservers,&homeserver($caller,$codedom));
1.521     raeburn  4296:     }
1.793     albertel 4297:     foreach my $code (keys(%{$instcodes})) {
                   4298:         $courses .= &escape($code).'='.&escape($$instcodes{$code}).'&';
1.521     raeburn  4299:     }
                   4300:     chop($courses);
1.772     raeburn  4301:     my $ok_response = 0;
                   4302:     my $response;
                   4303:     while (@homeservers > 0 && $ok_response == 0) {
                   4304:         my $server = shift(@homeservers); 
                   4305:         $response=&reply('autoinstcodeformat:'.$codedom.':'.$courses,$server);
                   4306:         if ($response !~ /(con_lost|error|no_such_host|refused)/) {
                   4307:             my ($codes_str,$codetitles_str,$cat_titles_str,$cat_order_str) = 
1.793     albertel 4308: 		split/:/,$response;
1.772     raeburn  4309:             %{$codes} = (%{$codes},&str2hash($codes_str));
                   4310:             push(@{$codetitles},&str2array($codetitles_str));
                   4311:             %{$cat_titles} = (%{$cat_titles},&str2hash($cat_titles_str));
                   4312:             %{$cat_order} = (%{$cat_order},&str2hash($cat_order_str));
                   4313:             $ok_response = 1;
                   4314:         }
                   4315:     }
                   4316:     if ($ok_response) {
1.521     raeburn  4317:         return 'ok';
1.772     raeburn  4318:     } else {
                   4319:         return $response;
1.521     raeburn  4320:     }
                   4321: }
                   4322: 
1.792     raeburn  4323: sub auto_instcode_defaults {
                   4324:     my ($domain,$returnhash,$code_order) = @_;
                   4325:     my @homeservers;
1.793     albertel 4326:     foreach my $tryserver (keys(%libserv)) {
1.792     raeburn  4327:         if ($hostdom{$tryserver} eq $domain) {
1.793     albertel 4328:             if (!grep(/^\Q$tryserver\E$/,@homeservers)) {
1.792     raeburn  4329:                 push(@homeservers,$tryserver);
                   4330:             }
                   4331:         }
                   4332:     }
                   4333:     my $ok_response = 0;
                   4334:     my $response;
                   4335:     while (@homeservers > 0 && $ok_response == 0) {
                   4336:         my $server = shift(@homeservers);
                   4337:         $response=&reply('autoinstcodedefaults:'.$domain,$server);
                   4338:         if ($response !~ /(con_lost|error|no_such_host|refused)/) {
1.793     albertel 4339:             foreach my $pair (split(/\&/,$response)) {
                   4340:                 my ($name,$value)=split(/\=/,$pair);
1.792     raeburn  4341:                 if ($name eq 'code_order') {
1.796     raeburn  4342:                     @{$code_order} = split(/\&/,&unescape($value));
1.792     raeburn  4343:                 } else {
1.796     raeburn  4344:                     $returnhash->{&unescape($name)}=&unescape($value);
1.792     raeburn  4345:                 }
                   4346:             }
1.804     raeburn  4347:             $ok_response = 1;
1.792     raeburn  4348:         }
                   4349:     }
                   4350:     if ($ok_response) {
                   4351:         return 'ok';
                   4352:     } else {
                   4353:         return $response;
                   4354:     }
                   4355: } 
                   4356: 
1.777     albertel 4357: sub auto_validate_class_sec {
1.773     raeburn  4358:     my ($cdom,$cnum,$owner,$inst_class) = @_;
                   4359:     my $homeserver = &homeserver($cnum,$cdom);
                   4360:     my $response=&reply('autovalidateclass_sec:'.$inst_class.':'.
1.774     banghart 4361:                         &escape($owner).':'.$cdom,$homeserver);
1.773     raeburn  4362:     return $response;
                   4363: }
                   4364: 
1.679     raeburn  4365: # ------------------------------------------------------- Course Group routines
                   4366: 
                   4367: sub get_coursegroups {
1.683     raeburn  4368:     my ($cdom,$cnum,$group) = @_;
                   4369:     return(&dump('coursegroups',$cdom,$cnum,$group));
1.679     raeburn  4370: }
                   4371: 
1.805     raeburn  4372: sub get_deleted_groups {
                   4373:     my ($cdom,$cnum,$group) = @_;
                   4374:     return(&dump('deleted_groups',$cdom,$cnum,$group));
                   4375: }
                   4376: 
1.679     raeburn  4377: sub modify_coursegroup {
                   4378:     my ($cdom,$cnum,$groupsettings) = @_;
                   4379:     return(&put('coursegroups',$groupsettings,$cdom,$cnum));
                   4380: }
                   4381: 
1.805     raeburn  4382: sub delete_coursegroup {
                   4383:     my ($cdom,$cnum,$group) = @_;
                   4384:     my %curr_group = &get_coursegroups($cdom,$cnum,$group);
                   4385:     if (my $tmp = &error(%curr_group)) {
                   4386:         &Apache::lonnet::logthis('Error retrieving group: '.$tmp.' in '.$cnum.':'.$cdom);
                   4387:         return ('read error',$tmp);
                   4388:     } else {
                   4389:         my %savedsettings = %curr_group; 
                   4390:         my $result = &put('deleted_groups',\%savedsettings,$cdom,$cnum);
                   4391:         my $deloutcome;
                   4392:         if ($result eq 'ok') {
                   4393:             $deloutcome = &del('coursegroups',[$group],$cdom,$cnum);
                   4394:         } else {
                   4395:             return ('write error',$result);
                   4396:         }
                   4397:         if ($deloutcome eq 'ok') {
                   4398:             return 'ok';
                   4399:         } else {
                   4400:             return ('delete error',$deloutcome);
                   4401:         }
                   4402:     }
                   4403: }
                   4404: 
1.679     raeburn  4405: sub modify_group_roles {
                   4406:     my ($cdom,$cnum,$group_id,$user,$end,$start,$userprivs) = @_;
                   4407:     my $url = '/'.$cdom.'/'.$cnum.'/'.$group_id;
                   4408:     my $role = 'gr/'.&escape($userprivs);
                   4409:     my ($uname,$udom) = split(/:/,$user);
                   4410:     my $result = &assignrole($udom,$uname,$url,$role,$end,$start);
1.684     raeburn  4411:     if ($result eq 'ok') {
                   4412:         &devalidate_getgroups_cache($udom,$uname,$cdom,$cnum);
                   4413:     }
1.679     raeburn  4414:     return $result;
                   4415: }
                   4416: 
                   4417: sub modify_coursegroup_membership {
                   4418:     my ($cdom,$cnum,$membership) = @_;
                   4419:     my $result = &put('groupmembership',$membership,$cdom,$cnum);
                   4420:     return $result;
                   4421: }
                   4422: 
1.682     raeburn  4423: sub get_active_groups {
                   4424:     my ($udom,$uname,$cdom,$cnum) = @_;
                   4425:     my $now = time;
                   4426:     my %groups = ();
                   4427:     foreach my $key (keys(%env)) {
1.807     albertel 4428:         if ($key =~ m-user\.role\.gr\./($match_domain)/($match_username)/(\w+)$-) {
1.682     raeburn  4429:             my ($start,$end) = split(/\./,$env{$key});
                   4430:             if (($end!=0) && ($end<$now)) { next; }
                   4431:             if (($start!=0) && ($start>$now)) { next; }
                   4432:             if ($1 eq $cdom && $2 eq $cnum) {
                   4433:                 $groups{$3} = $env{$key} ;
                   4434:             }
                   4435:         }
                   4436:     }
                   4437:     return %groups;
                   4438: }
                   4439: 
1.683     raeburn  4440: sub get_group_membership {
                   4441:     my ($cdom,$cnum,$group) = @_;
                   4442:     return(&dump('groupmembership',$cdom,$cnum,$group));
                   4443: }
                   4444: 
                   4445: sub get_users_groups {
                   4446:     my ($udom,$uname,$courseid) = @_;
1.733     raeburn  4447:     my @usersgroups;
1.683     raeburn  4448:     my $cachetime=1800;
                   4449: 
                   4450:     my $hashid="$udom:$uname:$courseid";
1.733     raeburn  4451:     my ($grouplist,$cached)=&is_cached_new('getgroups',$hashid);
                   4452:     if (defined($cached)) {
1.734     albertel 4453:         @usersgroups = split(/:/,$grouplist);
1.733     raeburn  4454:     } else {  
                   4455:         $grouplist = '';
                   4456:         my %roleshash = &dump('roles',$udom,$uname,$courseid);
                   4457:         my ($tmp) = keys(%roleshash);
                   4458:         if ($tmp=~/^error:/) {
                   4459:             &logthis('Error retrieving roles: '.$tmp.' for '.$uname.':'.$udom);
                   4460:         } else {
                   4461:             my $access_end = $env{'course.'.$courseid.
                   4462:                                   '.default_enrollment_end_date'};
                   4463:             my $now = time;
1.734     albertel 4464:             foreach my $key (keys(%roleshash)) {
1.733     raeburn  4465:                 if ($key =~ /^\Q$courseid\E\/(\w+)\_gr$/) {
                   4466:                     my $group = $1;
                   4467:                     if ($roleshash{$key} =~ /_(\d+)_(\d+)$/) {
                   4468:                         my $start = $2;
                   4469:                         my $end = $1;
                   4470:                         if ($start == -1) { next; } # deleted from group
                   4471:                         if (($start!=0) && ($start>$now)) { next; }
                   4472:                         if (($end!=0) && ($end<$now)) {
                   4473:                             if ($access_end && $access_end < $now) {
                   4474:                                 if ($access_end - $end < 86400) {
                   4475:                                     push(@usersgroups,$group);
                   4476:                                 }
                   4477:                             }
                   4478:                             next;
                   4479:                         }
                   4480:                         push(@usersgroups,$group);
                   4481:                     }
1.683     raeburn  4482:                 }
                   4483:             }
1.733     raeburn  4484:             @usersgroups = &sort_course_groups($courseid,@usersgroups);
                   4485:             $grouplist = join(':',@usersgroups);
                   4486:             &do_cache_new('getgroups',$hashid,$grouplist,$cachetime);
1.683     raeburn  4487:         }
                   4488:     }
1.733     raeburn  4489:     return @usersgroups;
1.683     raeburn  4490: }
                   4491: 
                   4492: sub devalidate_getgroups_cache {
                   4493:     my ($udom,$uname,$cdom,$cnum)=@_;
                   4494:     my $courseid = $cdom.'_'.$cnum;
1.807     albertel 4495: 
1.683     raeburn  4496:     my $hashid="$udom:$uname:$courseid";
                   4497:     &devalidate_cache_new('getgroups',$hashid);
                   4498: }
                   4499: 
1.12      www      4500: # ------------------------------------------------------------------ Plain Text
                   4501: 
                   4502: sub plaintext {
1.742     raeburn  4503:     my ($short,$type,$cid) = @_;
1.758     albertel 4504:     if ($short =~ /^cr/) {
                   4505: 	return (split('/',$short))[-1];
                   4506:     }
1.742     raeburn  4507:     if (!defined($cid)) {
                   4508:         $cid = $env{'request.course.id'};
                   4509:     }
                   4510:     if (defined($cid) && defined($env{'course.'.$cid.'.'.$short.'.plaintext'})) {
                   4511:         return &Apache::lonlocal::mt($env{'course.'.$cid.'.'.$short.
                   4512:                                           '.plaintext'});
                   4513:     }
                   4514:     my %rolenames = (
                   4515:                       Course => 'std',
                   4516:                       Group => 'alt1',
                   4517:                     );
                   4518:     if (defined($type) && 
                   4519:          defined($rolenames{$type}) && 
                   4520:          defined($prp{$short}{$rolenames{$type}})) {
                   4521:         return &Apache::lonlocal::mt($prp{$short}{$rolenames{$type}});
                   4522:     } else {
                   4523:         return &Apache::lonlocal::mt($prp{$short}{'std'});
                   4524:     }
1.12      www      4525: }
                   4526: 
                   4527: # ----------------------------------------------------------------- Assign Role
                   4528: 
                   4529: sub assignrole {
1.357     www      4530:     my ($udom,$uname,$url,$role,$end,$start,$deleteflag)=@_;
1.21      www      4531:     my $mrole;
                   4532:     if ($role =~ /^cr\//) {
1.393     www      4533:         my $cwosec=$url;
1.807     albertel 4534:         $cwosec=~s/^\/($match_domain)\/($match_username)\/.*/$1\/$2/;
1.393     www      4535: 	unless (&allowed('ccr',$cwosec)) {
1.104     www      4536:            &logthis('Refused custom assignrole: '.
                   4537:              $udom.' '.$uname.' '.$url.' '.$role.' '.$end.' '.$start.' by '.
1.620     albertel 4538: 		    $env{'user.name'}.' at '.$env{'user.domain'});
1.104     www      4539:            return 'refused'; 
                   4540:         }
1.21      www      4541:         $mrole='cr';
1.678     raeburn  4542:     } elsif ($role =~ /^gr\//) {
                   4543:         my $cwogrp=$url;
1.807     albertel 4544:         $cwogrp=~s{^/($match_domain)/($match_username)/.*}
                   4545:                   {$1/$2}x;
1.678     raeburn  4546:         unless (&allowed('mdg',$cwogrp)) {
                   4547:             &logthis('Refused group assignrole: '.
                   4548:               $udom.' '.$uname.' '.$url.' '.$role.' '.$end.' '.$start.' by '.
                   4549:                     $env{'user.name'}.' at '.$env{'user.domain'});
                   4550:             return 'refused';
                   4551:         }
                   4552:         $mrole='gr';
1.21      www      4553:     } else {
1.82      www      4554:         my $cwosec=$url;
1.807     albertel 4555:         $cwosec=~s/^\/($match_domain)\/($match_username)\/.*/$1\/$2/;
1.373     www      4556:         unless ((&allowed('c'.$role,$cwosec)) || &allowed('c'.$role,$udom)) { 
1.104     www      4557:            &logthis('Refused assignrole: '.
                   4558:              $udom.' '.$uname.' '.$url.' '.$role.' '.$end.' '.$start.' by '.
1.620     albertel 4559: 		    $env{'user.name'}.' at '.$env{'user.domain'});
1.104     www      4560:            return 'refused'; 
                   4561:         }
1.21      www      4562:         $mrole=$role;
                   4563:     }
1.620     albertel 4564:     my $command="encrypt:rolesput:$env{'user.domain'}:$env{'user.name'}:".
1.21      www      4565:                 "$udom:$uname:$url".'_'."$mrole=$role";
1.81      www      4566:     if ($end) { $command.='_'.$end; }
1.21      www      4567:     if ($start) {
                   4568: 	if ($end) { 
1.81      www      4569:            $command.='_'.$start; 
1.21      www      4570:         } else {
1.81      www      4571:            $command.='_0_'.$start;
1.21      www      4572:         }
                   4573:     }
1.739     raeburn  4574:     my $origstart = $start;
                   4575:     my $origend = $end;
1.357     www      4576: # actually delete
                   4577:     if ($deleteflag) {
1.373     www      4578: 	if ((&allowed('dro',$udom)) || (&allowed('dro',$url))) {
1.357     www      4579: # modify command to delete the role
1.620     albertel 4580:            $command="encrypt:rolesdel:$env{'user.domain'}:$env{'user.name'}:".
1.357     www      4581:                 "$udom:$uname:$url".'_'."$mrole";
1.620     albertel 4582: 	   &logthis("$env{'user.name'} at $env{'user.domain'} deletes $mrole in $url for $uname at $udom"); 
1.357     www      4583: # set start and finish to negative values for userrolelog
                   4584:            $start=-1;
                   4585:            $end=-1;
                   4586:         }
                   4587:     }
                   4588: # send command
1.349     www      4589:     my $answer=&reply($command,&homeserver($uname,$udom));
1.357     www      4590: # log new user role if status is ok
1.349     www      4591:     if ($answer eq 'ok') {
1.663     raeburn  4592: 	&userrolelog($role,$uname,$udom,$url,$start,$end);
1.739     raeburn  4593: # for course roles, perform group memberships changes triggered by role change.
                   4594:         unless ($role =~ /^gr/) {
                   4595:             &Apache::longroup::group_changes($udom,$uname,$url,$role,$origend,
                   4596:                                              $origstart);
                   4597:         }
1.349     www      4598:     }
                   4599:     return $answer;
1.169     harris41 4600: }
                   4601: 
                   4602: # -------------------------------------------------- Modify user authentication
1.197     www      4603: # Overrides without validation
                   4604: 
1.169     harris41 4605: sub modifyuserauth {
                   4606:     my ($udom,$uname,$umode,$upass)=@_;
                   4607:     my $uhome=&homeserver($uname,$udom);
1.197     www      4608:     unless (&allowed('mau',$udom)) { return 'refused'; }
                   4609:     &logthis('Call to modify user authentication '.$udom.', '.$uname.', '.
1.620     albertel 4610:              $umode.' by '.$env{'user.name'}.' at '.$env{'user.domain'}.
                   4611:              ' in domain '.$env{'request.role.domain'});  
1.169     harris41 4612:     my $reply=&reply('encrypt:changeuserauth:'.$udom.':'.$uname.':'.$umode.':'.
                   4613: 		     &escape($upass),$uhome);
1.620     albertel 4614:     &log($env{'user.domain'},$env{'user.name'},$env{'user.home'},
1.197     www      4615:         'Authentication changed for '.$udom.', '.$uname.', '.$umode.
                   4616:          '(Remote '.$ENV{'REMOTE_ADDR'}.'): '.$reply);
                   4617:     &log($udom,,$uname,$uhome,
1.620     albertel 4618:         'Authentication changed by '.$env{'user.domain'}.', '.
                   4619:                                      $env{'user.name'}.', '.$umode.
1.197     www      4620:          '(Remote '.$ENV{'REMOTE_ADDR'}.'): '.$reply);
1.169     harris41 4621:     unless ($reply eq 'ok') {
1.197     www      4622:         &logthis('Authentication mode error: '.$reply);
1.169     harris41 4623: 	return 'error: '.$reply;
                   4624:     }   
1.170     harris41 4625:     return 'ok';
1.80      www      4626: }
                   4627: 
1.81      www      4628: # --------------------------------------------------------------- Modify a user
1.80      www      4629: 
1.81      www      4630: sub modifyuser {
1.206     matthew  4631:     my ($udom,    $uname, $uid,
                   4632:         $umode,   $upass, $first,
                   4633:         $middle,  $last,  $gene,
1.387     www      4634:         $forceid, $desiredhome, $email)=@_;
1.807     albertel 4635:     $udom= &LONCAPA::clean_domain($udom);
                   4636:     $uname=&LONCAPA::clean_username($uname);
1.81      www      4637:     &logthis('Call to modify user '.$udom.', '.$uname.', '.$uid.', '.
1.80      www      4638:              $umode.', '.$first.', '.$middle.', '.
1.206     matthew  4639: 	     $last.', '.$gene.'(forceid: '.$forceid.')'.
                   4640:              (defined($desiredhome) ? ' desiredhome = '.$desiredhome :
                   4641:                                      ' desiredhome not specified'). 
1.620     albertel 4642:              ' by '.$env{'user.name'}.' at '.$env{'user.domain'}.
                   4643:              ' in domain '.$env{'request.role.domain'});
1.230     stredwic 4644:     my $uhome=&homeserver($uname,$udom,'true');
1.80      www      4645: # ----------------------------------------------------------------- Create User
1.406     albertel 4646:     if (($uhome eq 'no_host') && 
                   4647: 	(($umode && $upass) || ($umode eq 'localauth'))) {
1.80      www      4648:         my $unhome='';
1.209     matthew  4649:         if (defined($desiredhome) && $hostdom{$desiredhome} eq $udom) { 
                   4650:             $unhome = $desiredhome;
1.620     albertel 4651: 	} elsif($env{'course.'.$env{'request.course.id'}.'.domain'} eq $udom) {
                   4652: 	    $unhome=$env{'course.'.$env{'request.course.id'}.'.home'};
1.209     matthew  4653:         } else { # load balancing routine for determining $unhome
1.80      www      4654:             my $tryserver;
1.81      www      4655:             my $loadm=10000000;
1.80      www      4656:             foreach $tryserver (keys %libserv) {
                   4657: 	       if ($hostdom{$tryserver} eq $udom) {
                   4658:                   my $answer=reply('load',$tryserver);
                   4659:                   if (($answer=~/\d+/) && ($answer<$loadm)) {
                   4660: 		      $loadm=$answer;
                   4661:                       $unhome=$tryserver;
                   4662:                   }
                   4663: 	       }
                   4664: 	    }
                   4665:         }
                   4666:         if (($unhome eq '') || ($unhome eq 'no_host')) {
1.206     matthew  4667: 	    return 'error: unable to find a home server for '.$uname.
                   4668:                    ' in domain '.$udom;
1.80      www      4669:         }
                   4670:         my $reply=&reply('encrypt:makeuser:'.$udom.':'.$uname.':'.$umode.':'.
                   4671:                          &escape($upass),$unhome);
                   4672: 	unless ($reply eq 'ok') {
                   4673:             return 'error: '.$reply;
                   4674:         }   
1.230     stredwic 4675:         $uhome=&homeserver($uname,$udom,'true');
1.80      www      4676:         if (($uhome eq '') || ($uhome eq 'no_host') || ($uhome ne $unhome)) {
1.386     matthew  4677: 	    return 'error: unable verify users home machine.';
1.80      www      4678:         }
1.209     matthew  4679:     }   # End of creation of new user
1.80      www      4680: # ---------------------------------------------------------------------- Add ID
                   4681:     if ($uid) {
                   4682:        $uid=~tr/A-Z/a-z/;
                   4683:        my %uidhash=&idrget($udom,$uname);
1.196     www      4684:        if (($uidhash{$uname}) && ($uidhash{$uname}!~/error\:/) 
                   4685:          && (!$forceid)) {
1.80      www      4686: 	  unless ($uid eq $uidhash{$uname}) {
1.386     matthew  4687: 	      return 'error: user id "'.$uid.'" does not match '.
                   4688:                   'current user id "'.$uidhash{$uname}.'".';
1.80      www      4689:           }
                   4690:        } else {
                   4691: 	  &idput($udom,($uname => $uid));
                   4692:        }
                   4693:     }
                   4694: # -------------------------------------------------------------- Add names, etc
1.313     matthew  4695:     my @tmp=&get('environment',
1.134     albertel 4696: 		   ['firstname','middlename','lastname','generation'],
                   4697: 		   $udom,$uname);
1.313     matthew  4698:     my %names;
                   4699:     if ($tmp[0] =~ m/^error:.*/) { 
                   4700:         %names=(); 
                   4701:     } else {
                   4702:         %names = @tmp;
                   4703:     }
1.388     www      4704: #
                   4705: # Make sure to not trash student environment if instructor does not bother
                   4706: # to supply name and email information
                   4707: #
                   4708:     if ($first)  { $names{'firstname'}  = $first; }
1.385     matthew  4709:     if (defined($middle)) { $names{'middlename'} = $middle; }
1.388     www      4710:     if ($last)   { $names{'lastname'}   = $last; }
1.385     matthew  4711:     if (defined($gene))   { $names{'generation'} = $gene; }
1.592     www      4712:     if ($email) {
                   4713:        $email=~s/[^\w\@\.\-\,]//gs;
                   4714:        if ($email=~/\@/) { $names{'notification'} = $email;
                   4715: 			   $names{'critnotification'} = $email;
                   4716: 			   $names{'permanentemail'} = $email; }
                   4717:     }
1.134     albertel 4718:     my $reply = &put('environment', \%names, $udom,$uname);
                   4719:     if ($reply ne 'ok') { return 'error: '.$reply; }
1.680     www      4720:     &devalidate_cache_new('namescache',$uname.':'.$udom);
1.81      www      4721:     &logthis('Success modifying user '.$udom.', '.$uname.', '.$uid.', '.
1.80      www      4722:              $umode.', '.$first.', '.$middle.', '.
                   4723: 	     $last.', '.$gene.' by '.
1.620     albertel 4724:              $env{'user.name'}.' at '.$env{'user.domain'});
1.134     albertel 4725:     return 'ok';
1.80      www      4726: }
                   4727: 
1.81      www      4728: # -------------------------------------------------------------- Modify student
1.80      www      4729: 
1.81      www      4730: sub modifystudent {
                   4731:     my ($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene,$usec,
1.515     raeburn  4732:         $end,$start,$forceid,$desiredhome,$email,$type,$locktype,$cid)=@_;
1.455     albertel 4733:     if (!$cid) {
1.620     albertel 4734: 	unless ($cid=$env{'request.course.id'}) {
1.455     albertel 4735: 	    return 'not_in_class';
                   4736: 	}
1.80      www      4737:     }
                   4738: # --------------------------------------------------------------- Make the user
1.81      www      4739:     my $reply=&modifyuser
1.209     matthew  4740: 	($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene,$forceid,
1.387     www      4741:          $desiredhome,$email);
1.80      www      4742:     unless ($reply eq 'ok') { return $reply; }
1.297     matthew  4743:     # This will cause &modify_student_enrollment to get the uid from the
                   4744:     # students environment
                   4745:     $uid = undef if (!$forceid);
1.455     albertel 4746:     $reply = &modify_student_enrollment($udom,$uname,$uid,$first,$middle,$last,
1.515     raeburn  4747: 					$gene,$usec,$end,$start,$type,$locktype,$cid);
1.297     matthew  4748:     return $reply;
                   4749: }
                   4750: 
                   4751: sub modify_student_enrollment {
1.515     raeburn  4752:     my ($udom,$uname,$uid,$first,$middle,$last,$gene,$usec,$end,$start,$type,$locktype,$cid) = @_;
1.455     albertel 4753:     my ($cdom,$cnum,$chome);
                   4754:     if (!$cid) {
1.620     albertel 4755: 	unless ($cid=$env{'request.course.id'}) {
1.455     albertel 4756: 	    return 'not_in_class';
                   4757: 	}
1.620     albertel 4758: 	$cdom=$env{'course.'.$cid.'.domain'};
                   4759: 	$cnum=$env{'course.'.$cid.'.num'};
1.455     albertel 4760:     } else {
                   4761: 	($cdom,$cnum)=split(/_/,$cid);
                   4762:     }
1.620     albertel 4763:     $chome=$env{'course.'.$cid.'.home'};
1.455     albertel 4764:     if (!$chome) {
1.457     raeburn  4765: 	$chome=&homeserver($cnum,$cdom);
1.297     matthew  4766:     }
1.455     albertel 4767:     if (!$chome) { return 'unknown_course'; }
1.297     matthew  4768:     # Make sure the user exists
1.81      www      4769:     my $uhome=&homeserver($uname,$udom);
                   4770:     if (($uhome eq '') || ($uhome eq 'no_host')) { 
                   4771: 	return 'error: no such user';
                   4772:     }
1.297     matthew  4773:     # Get student data if we were not given enough information
                   4774:     if (!defined($first)  || $first  eq '' || 
                   4775:         !defined($last)   || $last   eq '' || 
                   4776:         !defined($uid)    || $uid    eq '' || 
                   4777:         !defined($middle) || $middle eq '' || 
                   4778:         !defined($gene)   || $gene   eq '') {
1.294     matthew  4779:         # They did not supply us with enough data to enroll the student, so
                   4780:         # we need to pick up more information.
1.297     matthew  4781:         my %tmp = &get('environment',
1.294     matthew  4782:                        ['firstname','middlename','lastname', 'generation','id']
1.297     matthew  4783:                        ,$udom,$uname);
                   4784: 
1.800     albertel 4785:         #foreach my $key (keys(%tmp)) {
                   4786:         #    &logthis("key $key = ".$tmp{$key});
1.455     albertel 4787:         #}
1.294     matthew  4788:         $first  = $tmp{'firstname'}  if (!defined($first)  || $first  eq '');
                   4789:         $middle = $tmp{'middlename'} if (!defined($middle) || $middle eq '');
                   4790:         $last   = $tmp{'lastname'}   if (!defined($last)   || $last eq '');
1.297     matthew  4791:         $gene   = $tmp{'generation'} if (!defined($gene)   || $gene eq '');
1.294     matthew  4792:         $uid    = $tmp{'id'}         if (!defined($uid)    || $uid  eq '');
                   4793:     }
1.556     albertel 4794:     my $fullname = &format_name($first,$middle,$last,$gene,'lastname');
1.487     albertel 4795:     my $reply=cput('classlist',
                   4796: 		   {"$uname:$udom" => 
1.515     raeburn  4797: 			join(':',$end,$start,$uid,$usec,$fullname,$type,$locktype) },
1.487     albertel 4798: 		   $cdom,$cnum);
1.81      www      4799:     unless (($reply eq 'ok') || ($reply eq 'delayed')) {
                   4800: 	return 'error: '.$reply;
1.652     albertel 4801:     } else {
                   4802: 	&devalidate_getsection_cache($udom,$uname,$cid);
1.81      www      4803:     }
1.297     matthew  4804:     # Add student role to user
1.83      www      4805:     my $uurl='/'.$cid;
1.81      www      4806:     $uurl=~s/\_/\//g;
                   4807:     if ($usec) {
                   4808: 	$uurl.='/'.$usec;
                   4809:     }
                   4810:     return &assignrole($udom,$uname,$uurl,'st',$end,$start);
1.21      www      4811: }
                   4812: 
1.556     albertel 4813: sub format_name {
                   4814:     my ($firstname,$middlename,$lastname,$generation,$first)=@_;
                   4815:     my $name;
                   4816:     if ($first ne 'lastname') {
                   4817: 	$name=$firstname.' '.$middlename.' '.$lastname.' '.$generation;
                   4818:     } else {
                   4819: 	if ($lastname=~/\S/) {
                   4820: 	    $name.= $lastname.' '.$generation.', '.$firstname.' '.$middlename;
                   4821: 	    $name=~s/\s+,/,/;
                   4822: 	} else {
                   4823: 	    $name.= $firstname.' '.$middlename.' '.$generation;
                   4824: 	}
                   4825:     }
                   4826:     $name=~s/^\s+//;
                   4827:     $name=~s/\s+$//;
                   4828:     $name=~s/\s+/ /g;
                   4829:     return $name;
                   4830: }
                   4831: 
1.84      www      4832: # ------------------------------------------------- Write to course preferences
                   4833: 
                   4834: sub writecoursepref {
                   4835:     my ($courseid,%prefs)=@_;
                   4836:     $courseid=~s/^\///;
                   4837:     $courseid=~s/\_/\//g;
                   4838:     my ($cdomain,$cnum)=split(/\//,$courseid);
                   4839:     my $chome=homeserver($cnum,$cdomain);
                   4840:     if (($chome eq '') || ($chome eq 'no_host')) { 
                   4841: 	return 'error: no such course';
                   4842:     }
                   4843:     my $cstring='';
1.800     albertel 4844:     foreach my $pref (keys(%prefs)) {
                   4845: 	$cstring.=&escape($pref).'='.&escape($prefs{$pref}).'&';
1.191     harris41 4846:     }
1.84      www      4847:     $cstring=~s/\&$//;
                   4848:     return reply('put:'.$cdomain.':'.$cnum.':environment:'.$cstring,$chome);
                   4849: }
                   4850: 
                   4851: # ---------------------------------------------------------- Make/modify course
                   4852: 
                   4853: sub createcourse {
1.741     raeburn  4854:     my ($udom,$description,$url,$course_server,$nonstandard,$inst_code,
                   4855:         $course_owner,$crstype)=@_;
1.84      www      4856:     $url=&declutter($url);
                   4857:     my $cid='';
1.264     matthew  4858:     unless (&allowed('ccc',$udom)) {
1.84      www      4859:         return 'refused';
                   4860:     }
                   4861: # ------------------------------------------------------------------- Create ID
1.674     www      4862:    my $uname=int(1+rand(9)).
                   4863:        ('a'..'z','A'..'Z','0'..'9')[int(rand(62))].
                   4864:        substr($$.time,0,5).unpack("H8",pack("I32",time)).
1.84      www      4865:        unpack("H2",pack("I32",int(rand(255)))).$perlvar{'lonHostID'};
                   4866: # ----------------------------------------------- Make sure that does not exist
1.230     stredwic 4867:    my $uhome=&homeserver($uname,$udom,'true');
1.84      www      4868:    unless (($uhome eq '') || ($uhome eq 'no_host')) {
                   4869:        $uname=substr($$.time,0,5).unpack("H8",pack("I32",time)).
                   4870:         unpack("H2",pack("I32",int(rand(255)))).$perlvar{'lonHostID'};
1.230     stredwic 4871:        $uhome=&homeserver($uname,$udom,'true');       
1.84      www      4872:        unless (($uhome eq '') || ($uhome eq 'no_host')) {
                   4873:            return 'error: unable to generate unique course-ID';
                   4874:        } 
                   4875:    }
1.264     matthew  4876: # ------------------------------------------------ Check supplied server name
1.620     albertel 4877:     $course_server = $env{'user.homeserver'} if (! defined($course_server));
1.264     matthew  4878:     if (! exists($libserv{$course_server})) {
                   4879:         return 'error:bad server name '.$course_server;
                   4880:     }
1.84      www      4881: # ------------------------------------------------------------- Make the course
                   4882:     my $reply=&reply('encrypt:makeuser:'.$udom.':'.$uname.':none::',
1.264     matthew  4883:                       $course_server);
1.84      www      4884:     unless ($reply eq 'ok') { return 'error: '.$reply; }
1.230     stredwic 4885:     $uhome=&homeserver($uname,$udom,'true');
1.84      www      4886:     if (($uhome eq '') || ($uhome eq 'no_host')) { 
                   4887: 	return 'error: no such course';
                   4888:     }
1.271     www      4889: # ----------------------------------------------------------------- Course made
1.516     raeburn  4890: # log existence
                   4891:     &courseidput($udom,&escape($udom.'_'.$uname).'='.&escape($description).
1.741     raeburn  4892:                  ':'.&escape($inst_code).':'.&escape($course_owner).':'.
                   4893:                   &escape($crstype),$uhome);
1.358     www      4894:     &flushcourselogs();
                   4895: # set toplevel url
1.271     www      4896:     my $topurl=$url;
                   4897:     unless ($nonstandard) {
                   4898: # ------------------------------------------ For standard courses, make top url
                   4899:         my $mapurl=&clutter($url);
1.278     www      4900:         if ($mapurl eq '/res/') { $mapurl=''; }
1.620     albertel 4901:         $env{'form.initmap'}=(<<ENDINITMAP);
1.271     www      4902: <map>
                   4903: <resource id="1" type="start"></resource>
                   4904: <resource id="2" src="$mapurl"></resource>
                   4905: <resource id="3" type="finish"></resource>
                   4906: <link index="1" from="1" to="2"></link>
                   4907: <link index="2" from="2" to="3"></link>
                   4908: </map>
                   4909: ENDINITMAP
                   4910:         $topurl=&declutter(
1.638     albertel 4911:         &finishuserfileupload($uname,$udom,'initmap','default.sequence')
1.271     www      4912:                           );
                   4913:     }
                   4914: # ----------------------------------------------------------- Write preferences
1.84      www      4915:     &writecoursepref($udom.'_'.$uname,
                   4916:                      ('description' => $description,
1.271     www      4917:                       'url'         => $topurl));
1.84      www      4918:     return '/'.$udom.'/'.$uname;
                   4919: }
                   4920: 
1.21      www      4921: # ---------------------------------------------------------- Assign Custom Role
                   4922: 
                   4923: sub assigncustomrole {
1.357     www      4924:     my ($udom,$uname,$url,$rdom,$rnam,$rolename,$end,$start,$deleteflag)=@_;
1.21      www      4925:     return &assignrole($udom,$uname,$url,'cr/'.$rdom.'/'.$rnam.'/'.$rolename,
1.357     www      4926:                        $end,$start,$deleteflag);
1.21      www      4927: }
                   4928: 
                   4929: # ----------------------------------------------------------------- Revoke Role
                   4930: 
                   4931: sub revokerole {
1.357     www      4932:     my ($udom,$uname,$url,$role,$deleteflag)=@_;
1.21      www      4933:     my $now=time;
1.357     www      4934:     return &assignrole($udom,$uname,$url,$role,$now,$deleteflag);
1.21      www      4935: }
                   4936: 
                   4937: # ---------------------------------------------------------- Revoke Custom Role
                   4938: 
                   4939: sub revokecustomrole {
1.357     www      4940:     my ($udom,$uname,$url,$rdom,$rnam,$rolename,$deleteflag)=@_;
1.21      www      4941:     my $now=time;
1.357     www      4942:     return &assigncustomrole($udom,$uname,$url,$rdom,$rnam,$rolename,$now,
                   4943:            $deleteflag);
1.17      www      4944: }
                   4945: 
1.533     banghart 4946: # ------------------------------------------------------------ Disk usage
1.535     albertel 4947: sub diskusage {
1.533     banghart 4948:     my ($udom,$uname,$directoryRoot)=@_;
                   4949:     $directoryRoot =~ s/\/$//;
1.535     albertel 4950:     my $listing=&reply('du:'.$directoryRoot,homeserver($uname,$udom));
1.514     albertel 4951:     return $listing;
1.512     banghart 4952: }
                   4953: 
1.566     banghart 4954: sub is_locked {
                   4955:     my ($file_name, $domain, $user) = @_;
                   4956:     my @check;
                   4957:     my $is_locked;
                   4958:     push @check, $file_name;
1.613     albertel 4959:     my %locked = &get('file_permissions',\@check,
1.620     albertel 4960: 		      $env{'user.domain'},$env{'user.name'});
1.615     albertel 4961:     my ($tmp)=keys(%locked);
                   4962:     if ($tmp=~/^error:/) { undef(%locked); }
1.745     raeburn  4963:     
1.566     banghart 4964:     if (ref($locked{$file_name}) eq 'ARRAY') {
1.745     raeburn  4965:         $is_locked = 'false';
                   4966:         foreach my $entry (@{$locked{$file_name}}) {
                   4967:            if (ref($entry) eq 'ARRAY') { 
1.746     raeburn  4968:                $is_locked = 'true';
                   4969:                last;
1.745     raeburn  4970:            }
                   4971:        }
1.566     banghart 4972:     } else {
                   4973:         $is_locked = 'false';
                   4974:     }
                   4975: }
                   4976: 
1.759     albertel 4977: sub declutter_portfile {
                   4978:     my ($file) = @_;
                   4979:     &logthis("got $file");
                   4980:     $file =~ s-^(/portfolio/|portfolio/)-/-;
                   4981:     &logthis("ret $file");
                   4982:     return $file;
                   4983: }
                   4984: 
1.559     banghart 4985: # ------------------------------------------------------------- Mark as Read Only
                   4986: 
                   4987: sub mark_as_readonly {
                   4988:     my ($domain,$user,$files,$what) = @_;
1.613     albertel 4989:     my %current_permissions = &dump('file_permissions',$domain,$user);
1.615     albertel 4990:     my ($tmp)=keys(%current_permissions);
                   4991:     if ($tmp=~/^error:/) { undef(%current_permissions); }
1.560     banghart 4992:     foreach my $file (@{$files}) {
1.759     albertel 4993: 	$file = &declutter_portfile($file);
1.561     banghart 4994:         push(@{$current_permissions{$file}},$what);
1.559     banghart 4995:     }
1.613     albertel 4996:     &put('file_permissions',\%current_permissions,$domain,$user);
1.559     banghart 4997:     return;
                   4998: }
                   4999: 
1.572     banghart 5000: # ------------------------------------------------------------Save Selected Files
                   5001: 
                   5002: sub save_selected_files {
                   5003:     my ($user, $path, @files) = @_;
                   5004:     my $filename = $user."savedfiles";
1.573     banghart 5005:     my @other_files = &files_not_in_path($user, $path);
1.574     banghart 5006:     open (OUT, '>'.$Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/'.$filename);
1.573     banghart 5007:     foreach my $file (@files) {
1.620     albertel 5008:         print (OUT $env{'form.currentpath'}.$file."\n");
1.573     banghart 5009:     }
                   5010:     foreach my $file (@other_files) {
1.574     banghart 5011:         print (OUT $file."\n");
1.572     banghart 5012:     }
1.574     banghart 5013:     close (OUT);
1.572     banghart 5014:     return 'ok';
                   5015: }
                   5016: 
1.574     banghart 5017: sub clear_selected_files {
                   5018:     my ($user) = @_;
                   5019:     my $filename = $user."savedfiles";
                   5020:     open (OUT, '>'.$Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/'.$filename);
                   5021:     print (OUT undef);
                   5022:     close (OUT);
                   5023:     return ("ok");    
                   5024: }
                   5025: 
1.572     banghart 5026: sub files_in_path {
                   5027:     my ($user, $path) = @_;
                   5028:     my $filename = $user."savedfiles";
                   5029:     my %return_files;
1.574     banghart 5030:     open (IN, '<'.$Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/'.$filename);
1.573     banghart 5031:     while (my $line_in = <IN>) {
1.574     banghart 5032:         chomp ($line_in);
                   5033:         my @paths_and_file = split (m!/!, $line_in);
                   5034:         my $file_part = pop (@paths_and_file);
                   5035:         my $path_part = join ('/', @paths_and_file);
1.573     banghart 5036:         $path_part.='/';
                   5037:         my $path_and_file = $path_part.$file_part;
                   5038:         if ($path_part eq $path) {
                   5039:             $return_files{$file_part}= 'selected';
                   5040:         }
                   5041:     }
1.574     banghart 5042:     close (IN);
                   5043:     return (\%return_files);
1.572     banghart 5044: }
                   5045: 
                   5046: # called in portfolio select mode, to show files selected NOT in current directory
                   5047: sub files_not_in_path {
                   5048:     my ($user, $path) = @_;
                   5049:     my $filename = $user."savedfiles";
                   5050:     my @return_files;
                   5051:     my $path_part;
1.800     albertel 5052:     open(IN, '<'.$Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/'.$filename);
                   5053:     while (my $line = <IN>) {
1.572     banghart 5054:         #ok, I know it's clunky, but I want it to work
1.800     albertel 5055:         my @paths_and_file = split(m|/|, $line);
                   5056:         my $file_part = pop(@paths_and_file);
                   5057:         chomp($file_part);
                   5058:         my $path_part = join('/', @paths_and_file);
1.572     banghart 5059:         $path_part .= '/';
                   5060:         my $path_and_file = $path_part.$file_part;
                   5061:         if ($path_part ne $path) {
1.800     albertel 5062:             push(@return_files, ($path_and_file));
1.572     banghart 5063:         }
                   5064:     }
1.800     albertel 5065:     close(OUT);
1.574     banghart 5066:     return (@return_files);
1.572     banghart 5067: }
                   5068: 
1.745     raeburn  5069: #----------------------------------------------Get portfolio file permissions
1.629     banghart 5070: 
1.745     raeburn  5071: sub get_portfile_permissions {
                   5072:     my ($domain,$user) = @_;
1.613     albertel 5073:     my %current_permissions = &dump('file_permissions',$domain,$user);
1.615     albertel 5074:     my ($tmp)=keys(%current_permissions);
                   5075:     if ($tmp=~/^error:/) { undef(%current_permissions); }
1.745     raeburn  5076:     return \%current_permissions;
                   5077: }
                   5078: 
                   5079: #---------------------------------------------Get portfolio file access controls
                   5080: 
1.749     raeburn  5081: sub get_access_controls {
1.745     raeburn  5082:     my ($current_permissions,$group,$file) = @_;
1.769     albertel 5083:     my %access;
                   5084:     my $real_file = $file;
                   5085:     $file =~ s/\.meta$//;
1.745     raeburn  5086:     if (defined($file)) {
1.749     raeburn  5087:         if (ref($$current_permissions{$file."\0".'accesscontrol'}) eq 'HASH') {
                   5088:             foreach my $control (keys(%{$$current_permissions{$file."\0".'accesscontrol'}})) {
1.769     albertel 5089:                 $access{$real_file}{$control} = $$current_permissions{$file."\0".$control};
1.749     raeburn  5090:             }
                   5091:         }
1.745     raeburn  5092:     } else {
1.749     raeburn  5093:         foreach my $key (keys(%{$current_permissions})) {
                   5094:             if ($key =~ /\0accesscontrol$/) {
                   5095:                 if (defined($group)) {
                   5096:                     if ($key !~ m-^\Q$group\E/-) {
                   5097:                         next;
                   5098:                     }
                   5099:                 }
                   5100:                 my ($fullpath) = split(/\0/,$key);
                   5101:                 if (ref($$current_permissions{$key}) eq 'HASH') {
                   5102:                     foreach my $control (keys(%{$$current_permissions{$key}})) {
                   5103:                         $access{$fullpath}{$control}=$$current_permissions{$fullpath."\0".$control};
                   5104:                     }
                   5105:                 }
                   5106:             }
                   5107:         }
                   5108:     }
                   5109:     return %access;
                   5110: }
                   5111: 
                   5112: sub modify_access_controls {
                   5113:     my ($file_name,$changes,$domain,$user)=@_;
                   5114:     my ($outcome,$deloutcome);
                   5115:     my %store_permissions;
                   5116:     my %new_values;
                   5117:     my %new_control;
                   5118:     my %translation;
                   5119:     my @deletions = ();
                   5120:     my $now = time;
                   5121:     if (exists($$changes{'activate'})) {
                   5122:         if (ref($$changes{'activate'}) eq 'HASH') {
                   5123:             my @newitems = sort(keys(%{$$changes{'activate'}}));
                   5124:             my $numnew = scalar(@newitems);
                   5125:             for (my $i=0; $i<$numnew; $i++) {
                   5126:                 my $newkey = $newitems[$i];
                   5127:                 my $newid = &Apache::loncommon::get_cgi_id();
1.797     raeburn  5128:                 if ($newkey =~ /^\d+:/) { 
                   5129:                     $newkey =~ s/^(\d+)/$newid/;
                   5130:                     $translation{$1} = $newid;
                   5131:                 } elsif ($newkey =~ /^\d+_\d+_\d+:/) {
                   5132:                     $newkey =~ s/^(\d+_\d+_\d+)/$newid/;
                   5133:                     $translation{$1} = $newid;
                   5134:                 }
1.749     raeburn  5135:                 $new_values{$file_name."\0".$newkey} = 
                   5136:                                           $$changes{'activate'}{$newitems[$i]};
                   5137:                 $new_control{$newkey} = $now;
                   5138:             }
                   5139:         }
                   5140:     }
                   5141:     my %todelete;
                   5142:     my %changed_items;
                   5143:     foreach my $action ('delete','update') {
                   5144:         if (exists($$changes{$action})) {
                   5145:             if (ref($$changes{$action}) eq 'HASH') {
                   5146:                 foreach my $key (keys(%{$$changes{$action}})) {
                   5147:                     my ($itemnum) = ($key =~ /^([^:]+):/);
                   5148:                     if ($action eq 'delete') { 
                   5149:                         $todelete{$itemnum} = 1;
                   5150:                     } else {
                   5151:                         $changed_items{$itemnum} = $key;
                   5152:                     }
                   5153:                 }
1.745     raeburn  5154:             }
                   5155:         }
1.749     raeburn  5156:     }
                   5157:     # get lock on access controls for file.
                   5158:     my $lockhash = {
                   5159:                   $file_name."\0".'locked_access_records' => $env{'user.name'}.
                   5160:                                                        ':'.$env{'user.domain'},
                   5161:                    }; 
                   5162:     my $tries = 0;
                   5163:     my $gotlock = &newput('file_permissions',$lockhash,$domain,$user);
                   5164:    
                   5165:     while (($gotlock ne 'ok') && $tries <3) {
                   5166:         $tries ++;
                   5167:         sleep 1;
                   5168:         $gotlock = &newput('file_permissions',$lockhash,$domain,$user);
                   5169:     }
                   5170:     if ($gotlock eq 'ok') {
                   5171:         my %curr_permissions = &dump('file_permissions',$domain,$user,$file_name);
                   5172:         my ($tmp)=keys(%curr_permissions);
                   5173:         if ($tmp=~/^error:/) { undef(%curr_permissions); }
                   5174:         if (exists($curr_permissions{$file_name."\0".'accesscontrol'})) {
                   5175:             my $curr_controls = $curr_permissions{$file_name."\0".'accesscontrol'};
                   5176:             if (ref($curr_controls) eq 'HASH') {
                   5177:                 foreach my $control_item (keys(%{$curr_controls})) {
                   5178:                     my ($itemnum) = ($control_item =~ /^([^:]+):/);
                   5179:                     if (defined($todelete{$itemnum})) {
                   5180:                         push(@deletions,$file_name."\0".$control_item);
                   5181:                     } else {
                   5182:                         if (defined($changed_items{$itemnum})) {
                   5183:                             $new_control{$changed_items{$itemnum}} = $now;
                   5184:                             push(@deletions,$file_name."\0".$control_item);
                   5185:                             $new_values{$file_name."\0".$changed_items{$itemnum}} = $$changes{'update'}{$changed_items{$itemnum}};
                   5186:                         } else {
                   5187:                             $new_control{$control_item} = $$curr_controls{$control_item};
                   5188:                         }
                   5189:                     }
1.745     raeburn  5190:                 }
                   5191:             }
                   5192:         }
1.749     raeburn  5193:         $deloutcome = &del('file_permissions',\@deletions,$domain,$user);
                   5194:         $new_values{$file_name."\0".'accesscontrol'} = \%new_control;
                   5195:         $outcome = &put('file_permissions',\%new_values,$domain,$user);
                   5196:         #  remove lock
                   5197:         my @del_lock = ($file_name."\0".'locked_access_records');
                   5198:         my $dellockoutcome = &del('file_permissions',\@del_lock,$domain,$user);
                   5199:     } else {
                   5200:         $outcome = "error: could not obtain lockfile\n";  
1.745     raeburn  5201:     }
1.749     raeburn  5202:     return ($outcome,$deloutcome,\%new_values,\%translation);
1.745     raeburn  5203: }
                   5204: 
                   5205: #------------------------------------------------------Get Marked as Read Only
                   5206: 
                   5207: sub get_marked_as_readonly {
                   5208:     my ($domain,$user,$what,$group) = @_;
                   5209:     my $current_permissions = &get_portfile_permissions($domain,$user);
1.563     banghart 5210:     my @readonly_files;
1.629     banghart 5211:     my $cmp1=$what;
                   5212:     if (ref($what)) { $cmp1=join('',@{$what}) };
1.745     raeburn  5213:     while (my ($file_name,$value) = each(%{$current_permissions})) {
                   5214:         if (defined($group)) {
                   5215:             if ($file_name !~ m-^\Q$group\E/-) {
                   5216:                 next;
                   5217:             }
                   5218:         }
1.561     banghart 5219:         if (ref($value) eq "ARRAY"){
                   5220:             foreach my $stored_what (@{$value}) {
1.629     banghart 5221:                 my $cmp2=$stored_what;
1.759     albertel 5222:                 if (ref($stored_what) eq 'ARRAY') {
1.746     raeburn  5223:                     $cmp2=join('',@{$stored_what});
1.745     raeburn  5224:                 }
1.629     banghart 5225:                 if ($cmp1 eq $cmp2) {
1.561     banghart 5226:                     push(@readonly_files, $file_name);
1.745     raeburn  5227:                     last;
1.563     banghart 5228:                 } elsif (!defined($what)) {
                   5229:                     push(@readonly_files, $file_name);
1.745     raeburn  5230:                     last;
1.561     banghart 5231:                 }
                   5232:             }
1.745     raeburn  5233:         }
1.561     banghart 5234:     }
                   5235:     return @readonly_files;
                   5236: }
1.577     banghart 5237: #-----------------------------------------------------------Get Marked as Read Only Hash
1.561     banghart 5238: 
1.577     banghart 5239: sub get_marked_as_readonly_hash {
1.745     raeburn  5240:     my ($current_permissions,$group,$what) = @_;
1.577     banghart 5241:     my %readonly_files;
1.745     raeburn  5242:     while (my ($file_name,$value) = each(%{$current_permissions})) {
                   5243:         if (defined($group)) {
                   5244:             if ($file_name !~ m-^\Q$group\E/-) {
                   5245:                 next;
                   5246:             }
                   5247:         }
1.577     banghart 5248:         if (ref($value) eq "ARRAY"){
                   5249:             foreach my $stored_what (@{$value}) {
1.745     raeburn  5250:                 if (ref($stored_what) eq 'ARRAY') {
1.750     banghart 5251:                     foreach my $lock_descriptor(@{$stored_what}) {
                   5252:                         if ($lock_descriptor eq 'graded') {
                   5253:                             $readonly_files{$file_name} = 'graded';
                   5254:                         } elsif ($lock_descriptor eq 'handback') {
                   5255:                             $readonly_files{$file_name} = 'handback';
                   5256:                         } else {
                   5257:                             if (!exists($readonly_files{$file_name})) {
                   5258:                                 $readonly_files{$file_name} = 'locked';
                   5259:                             }
                   5260:                         }
1.745     raeburn  5261:                     }
1.750     banghart 5262:                 } 
1.577     banghart 5263:             }
                   5264:         } 
                   5265:     }
                   5266:     return %readonly_files;
                   5267: }
1.559     banghart 5268: # ------------------------------------------------------------ Unmark as Read Only
                   5269: 
                   5270: sub unmark_as_readonly {
1.629     banghart 5271:     # unmarks $file_name (if $file_name is defined), or all files locked by $what 
                   5272:     # for portfolio submissions, $what contains [$symb,$crsid] 
1.745     raeburn  5273:     my ($domain,$user,$what,$file_name,$group) = @_;
1.759     albertel 5274:     $file_name = &declutter_portfile($file_name);
1.634     albertel 5275:     my $symb_crs = $what;
                   5276:     if (ref($what)) { $symb_crs=join('',@$what); }
1.745     raeburn  5277:     my %current_permissions = &dump('file_permissions',$domain,$user,$group);
1.615     albertel 5278:     my ($tmp)=keys(%current_permissions);
                   5279:     if ($tmp=~/^error:/) { undef(%current_permissions); }
1.745     raeburn  5280:     my @readonly_files = &get_marked_as_readonly($domain,$user,$what,$group);
1.650     albertel 5281:     foreach my $file (@readonly_files) {
1.759     albertel 5282: 	my $clean_file = &declutter_portfile($file);
                   5283: 	if (defined($file_name) && ($file_name ne $clean_file)) { next; }
1.650     albertel 5284: 	my $current_locks = $current_permissions{$file};
1.563     banghart 5285:         my @new_locks;
                   5286:         my @del_keys;
                   5287:         if (ref($current_locks) eq "ARRAY"){
                   5288:             foreach my $locker (@{$current_locks}) {
1.632     albertel 5289:                 my $compare=$locker;
1.749     raeburn  5290:                 if (ref($locker) eq 'ARRAY') {
1.745     raeburn  5291:                     $compare=join('',@{$locker});
1.746     raeburn  5292:                     if ($compare ne $symb_crs) {
                   5293:                         push(@new_locks, $locker);
                   5294:                     }
1.563     banghart 5295:                 }
                   5296:             }
1.650     albertel 5297:             if (scalar(@new_locks) > 0) {
1.563     banghart 5298:                 $current_permissions{$file} = \@new_locks;
                   5299:             } else {
                   5300:                 push(@del_keys, $file);
1.613     albertel 5301:                 &del('file_permissions',\@del_keys, $domain, $user);
1.650     albertel 5302:                 delete($current_permissions{$file});
1.563     banghart 5303:             }
                   5304:         }
1.561     banghart 5305:     }
1.613     albertel 5306:     &put('file_permissions',\%current_permissions,$domain,$user);
1.559     banghart 5307:     return;
                   5308: }
1.512     banghart 5309: 
1.17      www      5310: # ------------------------------------------------------------ Directory lister
                   5311: 
                   5312: sub dirlist {
1.253     stredwic 5313:     my ($uri,$userdomain,$username,$alternateDirectoryRoot)=@_;
                   5314: 
1.18      www      5315:     $uri=~s/^\///;
                   5316:     $uri=~s/\/$//;
1.253     stredwic 5317:     my ($udom, $uname);
                   5318:     (undef,$udom,$uname)=split(/\//,$uri);
                   5319:     if(defined($userdomain)) {
                   5320:         $udom = $userdomain;
                   5321:     }
                   5322:     if(defined($username)) {
                   5323:         $uname = $username;
                   5324:     }
                   5325: 
                   5326:     my $dirRoot = $perlvar{'lonDocRoot'};
                   5327:     if(defined($alternateDirectoryRoot)) {
                   5328:         $dirRoot = $alternateDirectoryRoot;
                   5329:         $dirRoot =~ s/\/$//;
1.751     banghart 5330:     }
1.253     stredwic 5331: 
                   5332:     if($udom) {
                   5333:         if($uname) {
1.800     albertel 5334:             my $listing = &reply('ls2:'.$dirRoot.'/'.$uri,
                   5335: 				 &homeserver($uname,$udom));
1.605     matthew  5336:             my @listing_results;
                   5337:             if ($listing eq 'unknown_cmd') {
1.800     albertel 5338:                 $listing = &reply('ls:'.$dirRoot.'/'.$uri,
                   5339: 				  &homeserver($uname,$udom));
1.605     matthew  5340:                 @listing_results = split(/:/,$listing);
                   5341:             } else {
                   5342:                 @listing_results = map { &unescape($_); } split(/:/,$listing);
                   5343:             }
                   5344:             return @listing_results;
1.253     stredwic 5345:         } elsif(!defined($alternateDirectoryRoot)) {
1.800     albertel 5346:             my %allusers;
                   5347:             foreach my $tryserver (keys(%libserv)) {
1.253     stredwic 5348:                 if($hostdom{$tryserver} eq $udom) {
1.800     albertel 5349:                     my $listing = &reply('ls2:'.$perlvar{'lonDocRoot'}.'/res/'.
                   5350: 					 $udom, $tryserver);
1.605     matthew  5351:                     my @listing_results;
                   5352:                     if ($listing eq 'unknown_cmd') {
1.800     albertel 5353:                         $listing = &reply('ls:'.$perlvar{'lonDocRoot'}.'/res/'.
                   5354: 					  $udom, $tryserver);
1.605     matthew  5355:                         @listing_results = split(/:/,$listing);
                   5356:                     } else {
                   5357:                         @listing_results =
                   5358:                             map { &unescape($_); } split(/:/,$listing);
                   5359:                     }
                   5360:                     if ($listing_results[0] ne 'no_such_dir' && 
                   5361:                         $listing_results[0] ne 'empty'       &&
                   5362:                         $listing_results[0] ne 'con_lost') {
1.800     albertel 5363:                         foreach my $line (@listing_results) {
                   5364:                             my ($entry) = split(/&/,$line,2);
                   5365:                             $allusers{$entry} = 1;
1.253     stredwic 5366:                         }
                   5367:                     }
1.191     harris41 5368:                 }
1.253     stredwic 5369:             }
                   5370:             my $alluserstr='';
1.800     albertel 5371:             foreach my $user (sort(keys(%allusers))) {
                   5372:                 $alluserstr.=$user.'&user:';
1.253     stredwic 5373:             }
                   5374:             $alluserstr=~s/:$//;
                   5375:             return split(/:/,$alluserstr);
                   5376:         } else {
1.800     albertel 5377:             return ('missing user name');
1.253     stredwic 5378:         }
                   5379:     } elsif(!defined($alternateDirectoryRoot)) {
                   5380:         my $tryserver;
                   5381:         my %alldom=();
1.800     albertel 5382:         foreach $tryserver (keys(%libserv)) {
1.253     stredwic 5383:             $alldom{$hostdom{$tryserver}}=1;
                   5384:         }
                   5385:         my $alldomstr='';
1.800     albertel 5386:         foreach my $domain (sort(keys(%alldom))) {
                   5387:             $alldomstr.=$perlvar{'lonDocRoot'}.'/res/'.$domain.'/&domain:';
1.253     stredwic 5388:         }
                   5389:         $alldomstr=~s/:$//;
                   5390:         return split(/:/,$alldomstr);       
                   5391:     } else {
1.800     albertel 5392:         return ('missing domain');
1.275     stredwic 5393:     }
                   5394: }
                   5395: 
                   5396: # --------------------------------------------- GetFileTimestamp
                   5397: # This function utilizes dirlist and returns the date stamp for
                   5398: # when it was last modified.  It will also return an error of -1
                   5399: # if an error occurs
                   5400: 
1.410     matthew  5401: ##
                   5402: ## FIXME: This subroutine assumes its caller knows something about the
                   5403: ## directory structure of the home server for the student ($root).
                   5404: ## Not a good assumption to make.  Since this is for looking up files
                   5405: ## in user directories, the full path should be constructed by lond, not
                   5406: ## whatever machine we request data from.
                   5407: ##
1.275     stredwic 5408: sub GetFileTimestamp {
                   5409:     my ($studentDomain,$studentName,$filename,$root)=@_;
1.807     albertel 5410:     $studentDomain = &LONCAPA::clean_domain($studentDomain);
                   5411:     $studentName   = &LONCAPA::clean_username($studentName);
1.275     stredwic 5412:     my $subdir=$studentName.'__';
                   5413:     $subdir =~ s/(.)(.)(.).*/$1\/$2\/$3/;
                   5414:     my $proname="$studentDomain/$subdir/$studentName";
                   5415:     $proname .= '/'.$filename;
1.375     matthew  5416:     my ($fileStat) = &Apache::lonnet::dirlist($proname, $studentDomain, 
                   5417:                                               $studentName, $root);
1.275     stredwic 5418:     my @stats = split('&', $fileStat);
                   5419:     if($stats[0] ne 'empty' && $stats[0] ne 'no_such_dir') {
1.375     matthew  5420:         # @stats contains first the filename, then the stat output
                   5421:         return $stats[10]; # so this is 10 instead of 9.
1.275     stredwic 5422:     } else {
                   5423:         return -1;
1.253     stredwic 5424:     }
1.26      www      5425: }
                   5426: 
1.712     albertel 5427: sub stat_file {
                   5428:     my ($uri) = @_;
1.787     albertel 5429:     $uri = &clutter_with_no_wrapper($uri);
1.722     albertel 5430: 
1.712     albertel 5431:     my ($udom,$uname,$file,$dir);
                   5432:     if ($uri =~ m-^/(uploaded|editupload)/-) {
                   5433: 	($udom,$uname,$file) =
1.807     albertel 5434: 	    ($uri =~ m-/(?:uploaded|editupload)/?($match_domain)/?($match_username)/?(.*)-);
1.712     albertel 5435: 	$file = 'userfiles/'.$file;
1.740     www      5436: 	$dir = &propath($udom,$uname);
1.712     albertel 5437:     }
                   5438:     if ($uri =~ m-^/res/-) {
                   5439: 	($udom,$uname) = 
1.807     albertel 5440: 	    ($uri =~ m-/(?:res)/?($match_domain)/?($match_username)/-);
1.712     albertel 5441: 	$file = $uri;
                   5442:     }
                   5443: 
                   5444:     if (!$udom || !$uname || !$file) {
                   5445: 	# unable to handle the uri
                   5446: 	return ();
                   5447:     }
                   5448: 
                   5449:     my ($result) = &dirlist($file,$udom,$uname,$dir);
                   5450:     my @stats = split('&', $result);
1.721     banghart 5451:     
1.712     albertel 5452:     if($stats[0] ne 'empty' && $stats[0] ne 'no_such_dir') {
                   5453: 	shift(@stats); #filename is first
                   5454: 	return @stats;
                   5455:     }
                   5456:     return ();
                   5457: }
                   5458: 
1.26      www      5459: # -------------------------------------------------------- Value of a Condition
                   5460: 
1.713     albertel 5461: # gets the value of a specific preevaluated condition
                   5462: #    stored in the string  $env{user.state.<cid>}
                   5463: # or looks up a condition reference in the bighash and if if hasn't
                   5464: # already been evaluated recurses into docondval to get the value of
                   5465: # the condition, then memoizing it to 
                   5466: #   $env{user.state.<cid>.<condition>}
1.40      www      5467: sub directcondval {
                   5468:     my $number=shift;
1.620     albertel 5469:     if (!defined($env{'user.state.'.$env{'request.course.id'}})) {
1.555     albertel 5470: 	&Apache::lonuserstate::evalstate();
                   5471:     }
1.713     albertel 5472:     if (exists($env{'user.state.'.$env{'request.course.id'}.".$number"})) {
                   5473: 	return $env{'user.state.'.$env{'request.course.id'}.".$number"};
                   5474:     } elsif ($number =~ /^_/) {
                   5475: 	my $sub_condition;
                   5476: 	if (tie(my %bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
                   5477: 		&GDBM_READER(),0640)) {
                   5478: 	    $sub_condition=$bighash{'conditions'.$number};
                   5479: 	    untie(%bighash);
                   5480: 	}
                   5481: 	my $value = &docondval($sub_condition);
                   5482: 	&appenv('user.state.'.$env{'request.course.id'}.".$number" => $value);
                   5483: 	return $value;
                   5484:     }
1.620     albertel 5485:     if ($env{'user.state.'.$env{'request.course.id'}}) {
                   5486:        return substr($env{'user.state.'.$env{'request.course.id'}},$number,1);
1.40      www      5487:     } else {
                   5488:        return 2;
                   5489:     }
                   5490: }
                   5491: 
1.713     albertel 5492: # get the collection of conditions for this resource
1.26      www      5493: sub condval {
                   5494:     my $condidx=shift;
1.54      www      5495:     my $allpathcond='';
1.713     albertel 5496:     foreach my $cond (split(/\|/,$condidx)) {
                   5497: 	if (defined($env{'acc.cond.'.$env{'request.course.id'}.'.'.$cond})) {
                   5498: 	    $allpathcond.=
                   5499: 		'('.$env{'acc.cond.'.$env{'request.course.id'}.'.'.$cond}.')|';
                   5500: 	}
1.191     harris41 5501:     }
1.54      www      5502:     $allpathcond=~s/\|$//;
1.713     albertel 5503:     return &docondval($allpathcond);
                   5504: }
                   5505: 
                   5506: #evaluates an expression of conditions
                   5507: sub docondval {
                   5508:     my ($allpathcond) = @_;
                   5509:     my $result=0;
                   5510:     if ($env{'request.course.id'}
                   5511: 	&& defined($allpathcond)) {
                   5512: 	my $operand='|';
                   5513: 	my @stack;
                   5514: 	foreach my $chunk ($allpathcond=~/(\d+|_\d+\.\d+|\(|\)|\&|\|)/g) {
                   5515: 	    if ($chunk eq '(') {
                   5516: 		push @stack,($operand,$result);
                   5517: 	    } elsif ($chunk eq ')') {
                   5518: 		my $before=pop @stack;
                   5519: 		if (pop @stack eq '&') {
                   5520: 		    $result=$result>$before?$before:$result;
                   5521: 		} else {
                   5522: 		    $result=$result>$before?$result:$before;
                   5523: 		}
                   5524: 	    } elsif (($chunk eq '&') || ($chunk eq '|')) {
                   5525: 		$operand=$chunk;
                   5526: 	    } else {
                   5527: 		my $new=directcondval($chunk);
                   5528: 		if ($operand eq '&') {
                   5529: 		    $result=$result>$new?$new:$result;
                   5530: 		} else {
                   5531: 		    $result=$result>$new?$result:$new;
                   5532: 		}
                   5533: 	    }
                   5534: 	}
1.26      www      5535:     }
                   5536:     return $result;
1.421     albertel 5537: }
                   5538: 
                   5539: # ---------------------------------------------------- Devalidate courseresdata
                   5540: 
                   5541: sub devalidatecourseresdata {
                   5542:     my ($coursenum,$coursedomain)=@_;
                   5543:     my $hashid=$coursenum.':'.$coursedomain;
1.599     albertel 5544:     &devalidate_cache_new('courseres',$hashid);
1.28      www      5545: }
                   5546: 
1.763     www      5547: 
1.200     www      5548: # --------------------------------------------------- Course Resourcedata Query
                   5549: 
1.624     albertel 5550: sub get_courseresdata {
                   5551:     my ($coursenum,$coursedomain)=@_;
1.200     www      5552:     my $coursehom=&homeserver($coursenum,$coursedomain);
                   5553:     my $hashid=$coursenum.':'.$coursedomain;
1.599     albertel 5554:     my ($result,$cached)=&is_cached_new('courseres',$hashid);
1.624     albertel 5555:     my %dumpreply;
1.417     albertel 5556:     unless (defined($cached)) {
1.624     albertel 5557: 	%dumpreply=&dump('resourcedata',$coursedomain,$coursenum);
1.417     albertel 5558: 	$result=\%dumpreply;
1.251     albertel 5559: 	my ($tmp) = keys(%dumpreply);
                   5560: 	if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
1.599     albertel 5561: 	    &do_cache_new('courseres',$hashid,$result,600);
1.306     albertel 5562: 	} elsif ($tmp =~ /^(con_lost|no_such_host)/) {
                   5563: 	    return $tmp;
1.416     albertel 5564: 	} elsif ($tmp =~ /^(error)/) {
1.417     albertel 5565: 	    $result=undef;
1.599     albertel 5566: 	    &do_cache_new('courseres',$hashid,$result,600);
1.250     albertel 5567: 	}
                   5568:     }
1.624     albertel 5569:     return $result;
                   5570: }
                   5571: 
1.633     albertel 5572: sub devalidateuserresdata {
                   5573:     my ($uname,$udom)=@_;
                   5574:     my $hashid="$udom:$uname";
                   5575:     &devalidate_cache_new('userres',$hashid);
                   5576: }
                   5577: 
1.624     albertel 5578: sub get_userresdata {
                   5579:     my ($uname,$udom)=@_;
                   5580:     #most student don\'t have any data set, check if there is some data
                   5581:     if (&EXT_cache_status($udom,$uname)) { return undef; }
                   5582: 
                   5583:     my $hashid="$udom:$uname";
                   5584:     my ($result,$cached)=&is_cached_new('userres',$hashid);
                   5585:     if (!defined($cached)) {
                   5586: 	my %resourcedata=&dump('resourcedata',$udom,$uname);
                   5587: 	$result=\%resourcedata;
                   5588: 	&do_cache_new('userres',$hashid,$result,600);
                   5589:     }
                   5590:     my ($tmp)=keys(%$result);
                   5591:     if (($tmp!~/^error\:/) && ($tmp!~/^con_lost/)) {
                   5592: 	return $result;
                   5593:     }
                   5594:     #error 2 occurs when the .db doesn't exist
                   5595:     if ($tmp!~/error: 2 /) {
1.672     albertel 5596: 	&logthis("<font color=\"blue\">WARNING:".
1.624     albertel 5597: 		 " Trying to get resource data for ".
                   5598: 		 $uname." at ".$udom.": ".
                   5599: 		 $tmp."</font>");
                   5600:     } elsif ($tmp=~/error: 2 /) {
1.633     albertel 5601: 	#&EXT_cache_set($udom,$uname);
                   5602: 	&do_cache_new('userres',$hashid,undef,600);
1.636     albertel 5603: 	undef($tmp); # not really an error so don't send it back
1.624     albertel 5604:     }
                   5605:     return $tmp;
                   5606: }
                   5607: 
                   5608: sub resdata {
                   5609:     my ($name,$domain,$type,@which)=@_;
                   5610:     my $result;
                   5611:     if ($type eq 'course') {
                   5612: 	$result=&get_courseresdata($name,$domain);
                   5613:     } elsif ($type eq 'user') {
                   5614: 	$result=&get_userresdata($name,$domain);
                   5615:     }
                   5616:     if (!ref($result)) { return $result; }    
1.251     albertel 5617:     foreach my $item (@which) {
1.417     albertel 5618: 	if (defined($result->{$item})) {
                   5619: 	    return $result->{$item};
1.251     albertel 5620: 	}
1.250     albertel 5621:     }
1.291     albertel 5622:     return undef;
1.200     www      5623: }
                   5624: 
1.379     matthew  5625: #
                   5626: # EXT resource caching routines
                   5627: #
                   5628: 
                   5629: sub clear_EXT_cache_status {
1.383     albertel 5630:     &delenv('cache.EXT.');
1.379     matthew  5631: }
                   5632: 
                   5633: sub EXT_cache_status {
                   5634:     my ($target_domain,$target_user) = @_;
1.383     albertel 5635:     my $cachename = 'cache.EXT.'.$target_user.'.'.$target_domain;
1.620     albertel 5636:     if (exists($env{$cachename}) && ($env{$cachename}+600) > time) {
1.379     matthew  5637:         # We know already the user has no data
                   5638:         return 1;
                   5639:     } else {
                   5640:         return 0;
                   5641:     }
                   5642: }
                   5643: 
                   5644: sub EXT_cache_set {
                   5645:     my ($target_domain,$target_user) = @_;
1.383     albertel 5646:     my $cachename = 'cache.EXT.'.$target_user.'.'.$target_domain;
1.633     albertel 5647:     #&appenv($cachename => time);
1.379     matthew  5648: }
                   5649: 
1.28      www      5650: # --------------------------------------------------------- Value of a Variable
1.58      www      5651: sub EXT {
1.715     albertel 5652: 
1.395     albertel 5653:     my ($varname,$symbparm,$udom,$uname,$usection,$recurse)=@_;
1.68      www      5654:     unless ($varname) { return ''; }
1.218     albertel 5655:     #get real user name/domain, courseid and symb
                   5656:     my $courseid;
1.359     albertel 5657:     my $publicuser;
1.427     www      5658:     if ($symbparm) {
                   5659: 	$symbparm=&get_symb_from_alias($symbparm);
                   5660:     }
1.218     albertel 5661:     if (!($uname && $udom)) {
1.790     albertel 5662:       (my $cursymb,$courseid,$udom,$uname,$publicuser)= &whichuser($symbparm);
1.218     albertel 5663:       if (!$symbparm) {	$symbparm=$cursymb; }
                   5664:     } else {
1.620     albertel 5665: 	$courseid=$env{'request.course.id'};
1.218     albertel 5666:     }
1.48      www      5667:     my ($realm,$space,$qualifier,@therest)=split(/\./,$varname);
                   5668:     my $rest;
1.320     albertel 5669:     if (defined($therest[0])) {
1.48      www      5670:        $rest=join('.',@therest);
                   5671:     } else {
                   5672:        $rest='';
                   5673:     }
1.320     albertel 5674: 
1.57      www      5675:     my $qualifierrest=$qualifier;
                   5676:     if ($rest) { $qualifierrest.='.'.$rest; }
                   5677:     my $spacequalifierrest=$space;
                   5678:     if ($qualifierrest) { $spacequalifierrest.='.'.$qualifierrest; }
1.28      www      5679:     if ($realm eq 'user') {
1.48      www      5680: # --------------------------------------------------------------- user.resource
                   5681: 	if ($space eq 'resource') {
1.651     albertel 5682: 	    if ( (defined($Apache::lonhomework::parsing_a_problem)
                   5683: 		  || defined($Apache::lonhomework::parsing_a_task))
                   5684: 		 &&
1.744     albertel 5685: 		 ($symbparm eq &symbread()) ) {	
                   5686: 		# if we are in the middle of processing the resource the
                   5687: 		# get the value we are planning on committing
                   5688:                 if (defined($Apache::lonhomework::results{$qualifierrest})) {
                   5689:                     return $Apache::lonhomework::results{$qualifierrest};
                   5690:                 } else {
                   5691:                     return $Apache::lonhomework::history{$qualifierrest};
                   5692:                 }
1.335     albertel 5693: 	    } else {
1.359     albertel 5694: 		my %restored;
1.620     albertel 5695: 		if ($publicuser || $env{'request.state'} eq 'construct') {
1.359     albertel 5696: 		    %restored=&tmprestore($symbparm,$courseid,$udom,$uname);
                   5697: 		} else {
                   5698: 		    %restored=&restore($symbparm,$courseid,$udom,$uname);
                   5699: 		}
1.335     albertel 5700: 		return $restored{$qualifierrest};
                   5701: 	    }
1.48      www      5702: # ----------------------------------------------------------------- user.access
                   5703:         } elsif ($space eq 'access') {
1.218     albertel 5704: 	    # FIXME - not supporting calls for a specific user
1.48      www      5705:             return &allowed($qualifier,$rest);
                   5706: # ------------------------------------------ user.preferences, user.environment
                   5707:         } elsif (($space eq 'preferences') || ($space eq 'environment')) {
1.620     albertel 5708: 	    if (($uname eq $env{'user.name'}) &&
                   5709: 		($udom eq $env{'user.domain'})) {
                   5710: 		return $env{join('.',('environment',$qualifierrest))};
1.218     albertel 5711: 	    } else {
1.359     albertel 5712: 		my %returnhash;
                   5713: 		if (!$publicuser) {
                   5714: 		    %returnhash=&userenvironment($udom,$uname,
                   5715: 						 $qualifierrest);
                   5716: 		}
1.218     albertel 5717: 		return $returnhash{$qualifierrest};
                   5718: 	    }
1.48      www      5719: # ----------------------------------------------------------------- user.course
                   5720:         } elsif ($space eq 'course') {
1.218     albertel 5721: 	    # FIXME - not supporting calls for a specific user
1.620     albertel 5722:             return $env{join('.',('request.course',$qualifier))};
1.48      www      5723: # ------------------------------------------------------------------- user.role
                   5724:         } elsif ($space eq 'role') {
1.218     albertel 5725: 	    # FIXME - not supporting calls for a specific user
1.620     albertel 5726:             my ($role,$where)=split(/\./,$env{'request.role'});
1.48      www      5727:             if ($qualifier eq 'value') {
                   5728: 		return $role;
                   5729:             } elsif ($qualifier eq 'extent') {
                   5730:                 return $where;
                   5731:             }
                   5732: # ----------------------------------------------------------------- user.domain
                   5733:         } elsif ($space eq 'domain') {
1.218     albertel 5734:             return $udom;
1.48      www      5735: # ------------------------------------------------------------------- user.name
                   5736:         } elsif ($space eq 'name') {
1.218     albertel 5737:             return $uname;
1.48      www      5738: # ---------------------------------------------------- Any other user namespace
1.29      www      5739:         } else {
1.359     albertel 5740: 	    my %reply;
                   5741: 	    if (!$publicuser) {
                   5742: 		%reply=&get($space,[$qualifierrest],$udom,$uname);
                   5743: 	    }
                   5744: 	    return $reply{$qualifierrest};
1.48      www      5745:         }
1.236     www      5746:     } elsif ($realm eq 'query') {
                   5747: # ---------------------------------------------- pull stuff out of query string
1.384     albertel 5748:         &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
                   5749: 						[$spacequalifierrest]);
1.620     albertel 5750: 	return $env{'form.'.$spacequalifierrest}; 
1.236     www      5751:    } elsif ($realm eq 'request') {
1.48      www      5752: # ------------------------------------------------------------- request.browser
                   5753:         if ($space eq 'browser') {
1.430     www      5754: 	    if ($qualifier eq 'textremote') {
1.676     albertel 5755: 		if (&Apache::lonlocal::mt('textual_remote_display') eq 'on') {
1.430     www      5756: 		    return 1;
                   5757: 		} else {
                   5758: 		    return 0;
                   5759: 		}
                   5760: 	    } else {
1.620     albertel 5761: 		return $env{'browser.'.$qualifier};
1.430     www      5762: 	    }
1.57      www      5763: # ------------------------------------------------------------ request.filename
                   5764:         } else {
1.620     albertel 5765:             return $env{'request.'.$spacequalifierrest};
1.29      www      5766:         }
1.28      www      5767:     } elsif ($realm eq 'course') {
1.48      www      5768: # ---------------------------------------------------------- course.description
1.620     albertel 5769:         return $env{'course.'.$courseid.'.'.$spacequalifierrest};
1.57      www      5770:     } elsif ($realm eq 'resource') {
1.165     www      5771: 
1.620     albertel 5772: 	if (defined($courseid) && $courseid eq $env{'request.course.id'}) {
1.539     albertel 5773: 	    if (!$symbparm) { $symbparm=&symbread(); }
                   5774: 	}
1.693     albertel 5775: 
                   5776: 	if ($space eq 'title') {
                   5777: 	    if (!$symbparm) { $symbparm = $env{'request.filename'}; }
                   5778: 	    return &gettitle($symbparm);
                   5779: 	}
                   5780: 	
                   5781: 	if ($space eq 'map') {
                   5782: 	    my ($map) = &decode_symb($symbparm);
                   5783: 	    return &symbread($map);
                   5784: 	}
                   5785: 
                   5786: 	my ($section, $group, @groups);
1.593     albertel 5787: 	my ($courselevelm,$courselevel);
1.539     albertel 5788: 	if ($symbparm && defined($courseid) && 
1.620     albertel 5789: 	    $courseid eq $env{'request.course.id'}) {
1.165     www      5790: 
1.218     albertel 5791: 	    #print '<br>'.$space.' - '.$qualifier.' - '.$spacequalifierrest;
1.165     www      5792: 
1.60      www      5793: # ----------------------------------------------------- Cascading lookup scheme
1.218     albertel 5794: 	    my $symbp=$symbparm;
1.735     albertel 5795: 	    my $mapp=&deversion((&decode_symb($symbp))[0]);
1.218     albertel 5796: 
                   5797: 	    my $symbparm=$symbp.'.'.$spacequalifierrest;
                   5798: 	    my $mapparm=$mapp.'___(all).'.$spacequalifierrest;
                   5799: 
1.620     albertel 5800: 	    if (($env{'user.name'} eq $uname) &&
                   5801: 		($env{'user.domain'} eq $udom)) {
                   5802: 		$section=$env{'request.course.sec'};
1.733     raeburn  5803:                 @groups = split(/:/,$env{'request.course.groups'});  
                   5804:                 @groups=&sort_course_groups($courseid,@groups); 
1.218     albertel 5805: 	    } else {
1.539     albertel 5806: 		if (! defined($usection)) {
1.551     albertel 5807: 		    $section=&getsection($udom,$uname,$courseid);
1.539     albertel 5808: 		} else {
                   5809: 		    $section = $usection;
                   5810: 		}
1.733     raeburn  5811:                 @groups = &get_users_groups($udom,$uname,$courseid);
1.218     albertel 5812: 	    }
                   5813: 
                   5814: 	    my $seclevel=$courseid.'.['.$section.'].'.$spacequalifierrest;
                   5815: 	    my $seclevelr=$courseid.'.['.$section.'].'.$symbparm;
                   5816: 	    my $seclevelm=$courseid.'.['.$section.'].'.$mapparm;
                   5817: 
1.593     albertel 5818: 	    $courselevel=$courseid.'.'.$spacequalifierrest;
1.218     albertel 5819: 	    my $courselevelr=$courseid.'.'.$symbparm;
1.593     albertel 5820: 	    $courselevelm=$courseid.'.'.$mapparm;
1.69      www      5821: 
1.60      www      5822: # ----------------------------------------------------------- first, check user
1.624     albertel 5823: 
                   5824: 	    my $userreply=&resdata($uname,$udom,'user',
                   5825: 				       ($courselevelr,$courselevelm,
                   5826: 					$courselevel));
                   5827: 	    if (defined($userreply)) { return $userreply; }
1.95      www      5828: 
1.594     albertel 5829: # ------------------------------------------------ second, check some of course
1.684     raeburn  5830:             my $coursereply;
1.691     raeburn  5831:             if (@groups > 0) {
                   5832:                 $coursereply = &check_group_parms($courseid,\@groups,$symbparm,
                   5833:                                        $mapparm,$spacequalifierrest);
1.684     raeburn  5834:                 if (defined($coursereply)) { return $coursereply; }
                   5835:             }
1.96      www      5836: 
1.684     raeburn  5837: 	    $coursereply=&resdata($env{'course.'.$courseid.'.num'},
1.624     albertel 5838: 				     $env{'course.'.$courseid.'.domain'},
                   5839: 				     'course',
                   5840: 				     ($seclevelr,$seclevelm,$seclevel,
                   5841: 				      $courselevelr));
1.287     albertel 5842: 	    if (defined($coursereply)) { return $coursereply; }
1.200     www      5843: 
1.60      www      5844: # ------------------------------------------------------ third, check map parms
1.218     albertel 5845: 	    my %parmhash=();
                   5846: 	    my $thisparm='';
                   5847: 	    if (tie(%parmhash,'GDBM_File',
1.620     albertel 5848: 		    $env{'request.course.fn'}.'_parms.db',
1.256     albertel 5849: 		    &GDBM_READER(),0640)) {
1.218     albertel 5850: 		$thisparm=$parmhash{$symbparm};
                   5851: 		untie(%parmhash);
                   5852: 	    }
                   5853: 	    if ($thisparm) { return $thisparm; }
                   5854: 	}
1.594     albertel 5855: # ------------------------------------------ fourth, look in resource metadata
1.71      www      5856: 
1.218     albertel 5857: 	$spacequalifierrest=~s/\./\_/;
1.282     albertel 5858: 	my $filename;
                   5859: 	if (!$symbparm) { $symbparm=&symbread(); }
                   5860: 	if ($symbparm) {
1.409     www      5861: 	    $filename=(&decode_symb($symbparm))[2];
1.282     albertel 5862: 	} else {
1.620     albertel 5863: 	    $filename=$env{'request.filename'};
1.282     albertel 5864: 	}
                   5865: 	my $metadata=&metadata($filename,$spacequalifierrest);
1.288     albertel 5866: 	if (defined($metadata)) { return $metadata; }
1.282     albertel 5867: 	$metadata=&metadata($filename,'parameter_'.$spacequalifierrest);
1.288     albertel 5868: 	if (defined($metadata)) { return $metadata; }
1.142     www      5869: 
1.594     albertel 5870: # ---------------------------------------------- fourth, look in rest pf course
1.593     albertel 5871: 	if ($symbparm && defined($courseid) && 
1.620     albertel 5872: 	    $courseid eq $env{'request.course.id'}) {
1.624     albertel 5873: 	    my $coursereply=&resdata($env{'course.'.$courseid.'.num'},
                   5874: 				     $env{'course.'.$courseid.'.domain'},
                   5875: 				     'course',
                   5876: 				     ($courselevelm,$courselevel));
1.593     albertel 5877: 	    if (defined($coursereply)) { return $coursereply; }
                   5878: 	}
1.145     www      5879: # ------------------------------------------------------------------ Cascade up
1.218     albertel 5880: 	unless ($space eq '0') {
1.336     albertel 5881: 	    my @parts=split(/_/,$space);
                   5882: 	    my $id=pop(@parts);
                   5883: 	    my $part=join('_',@parts);
                   5884: 	    if ($part eq '') { $part='0'; }
                   5885: 	    my $partgeneral=&EXT('resource.'.$part.'.'.$qualifierrest,
1.395     albertel 5886: 				 $symbparm,$udom,$uname,$section,1);
1.337     albertel 5887: 	    if (defined($partgeneral)) { return $partgeneral; }
1.218     albertel 5888: 	}
1.395     albertel 5889: 	if ($recurse) { return undef; }
                   5890: 	my $pack_def=&packages_tab_default($filename,$varname);
                   5891: 	if (defined($pack_def)) { return $pack_def; }
1.71      www      5892: 
1.48      www      5893: # ---------------------------------------------------- Any other user namespace
                   5894:     } elsif ($realm eq 'environment') {
                   5895: # ----------------------------------------------------------------- environment
1.620     albertel 5896: 	if (($uname eq $env{'user.name'})&&($udom eq $env{'user.domain'})) {
                   5897: 	    return $env{'environment.'.$spacequalifierrest};
1.219     albertel 5898: 	} else {
1.770     albertel 5899: 	    if ($uname eq 'anonymous' && $udom eq '') {
                   5900: 		return '';
                   5901: 	    }
1.219     albertel 5902: 	    my %returnhash=&userenvironment($udom,$uname,
                   5903: 					    $spacequalifierrest);
                   5904: 	    return $returnhash{$spacequalifierrest};
                   5905: 	}
1.28      www      5906:     } elsif ($realm eq 'system') {
1.48      www      5907: # ----------------------------------------------------------------- system.time
                   5908: 	if ($space eq 'time') {
                   5909: 	    return time;
                   5910:         }
1.696     albertel 5911:     } elsif ($realm eq 'server') {
                   5912: # ----------------------------------------------------------------- system.time
                   5913: 	if ($space eq 'name') {
                   5914: 	    return $ENV{'SERVER_NAME'};
                   5915:         }
1.28      www      5916:     }
1.48      www      5917:     return '';
1.61      www      5918: }
                   5919: 
1.691     raeburn  5920: sub check_group_parms {
                   5921:     my ($courseid,$groups,$symbparm,$mapparm,$what) = @_;
                   5922:     my @groupitems = ();
                   5923:     my $resultitem;
                   5924:     my @levels = ($symbparm,$mapparm,$what);
                   5925:     foreach my $group (@{$groups}) {
                   5926:         foreach my $level (@levels) {
                   5927:              my $item = $courseid.'.['.$group.'].'.$level;
                   5928:              push(@groupitems,$item);
                   5929:         }
                   5930:     }
                   5931:     my $coursereply = &resdata($env{'course.'.$courseid.'.num'},
                   5932:                             $env{'course.'.$courseid.'.domain'},
                   5933:                                      'course',@groupitems);
                   5934:     return $coursereply;
                   5935: }
                   5936: 
                   5937: sub sort_course_groups { # Sort groups based on defined rankings. Default is sort().
1.733     raeburn  5938:     my ($courseid,@groups) = @_;
                   5939:     @groups = sort(@groups);
1.691     raeburn  5940:     return @groups;
                   5941: }
                   5942: 
1.395     albertel 5943: sub packages_tab_default {
                   5944:     my ($uri,$varname)=@_;
                   5945:     my (undef,$part,$name)=split(/\./,$varname);
1.738     albertel 5946: 
                   5947:     my (@extension,@specifics,$do_default);
                   5948:     foreach my $package (split(/,/,&metadata($uri,'packages'))) {
1.395     albertel 5949: 	my ($pack_type,$pack_part)=split(/_/,$package,2);
1.738     albertel 5950: 	if ($pack_type eq 'default') {
                   5951: 	    $do_default=1;
                   5952: 	} elsif ($pack_type eq 'extension') {
                   5953: 	    push(@extension,[$package,$pack_type,$pack_part]);
                   5954: 	} else {
                   5955: 	    push(@specifics,[$package,$pack_type,$pack_part]);
                   5956: 	}
                   5957:     }
                   5958:     # first look for a package that matches the requested part id
                   5959:     foreach my $package (@specifics) {
                   5960: 	my (undef,$pack_type,$pack_part)=@{$package};
                   5961: 	next if ($pack_part ne $part);
                   5962: 	if (defined($packagetab{"$pack_type&$name&default"})) {
                   5963: 	    return $packagetab{"$pack_type&$name&default"};
                   5964: 	}
                   5965:     }
                   5966:     # look for any possible matching non extension_ package
                   5967:     foreach my $package (@specifics) {
                   5968: 	my (undef,$pack_type,$pack_part)=@{$package};
1.468     albertel 5969: 	if (defined($packagetab{"$pack_type&$name&default"})) {
                   5970: 	    return $packagetab{"$pack_type&$name&default"};
                   5971: 	}
1.585     albertel 5972: 	if ($pack_type eq 'part') { $pack_part='0'; }
1.468     albertel 5973: 	if (defined($packagetab{$pack_type."_".$pack_part."&$name&default"})) {
                   5974: 	    return $packagetab{$pack_type."_".$pack_part."&$name&default"};
1.395     albertel 5975: 	}
                   5976:     }
1.738     albertel 5977:     # look for any posible extension_ match
                   5978:     foreach my $package (@extension) {
                   5979: 	my ($package,$pack_type)=@{$package};
                   5980: 	if (defined($packagetab{"$pack_type&$name&default"})) {
                   5981: 	    return $packagetab{"$pack_type&$name&default"};
                   5982: 	}
                   5983: 	if (defined($packagetab{$package."&$name&default"})) {
                   5984: 	    return $packagetab{$package."&$name&default"};
                   5985: 	}
                   5986:     }
                   5987:     # look for a global default setting
                   5988:     if ($do_default && defined($packagetab{"default&$name&default"})) {
                   5989: 	return $packagetab{"default&$name&default"};
                   5990:     }
1.395     albertel 5991:     return undef;
                   5992: }
                   5993: 
1.334     albertel 5994: sub add_prefix_and_part {
                   5995:     my ($prefix,$part)=@_;
                   5996:     my $keyroot;
                   5997:     if (defined($prefix) && $prefix !~ /^__/) {
                   5998: 	# prefix that has a part already
                   5999: 	$keyroot=$prefix;
                   6000:     } elsif (defined($prefix)) {
                   6001: 	# prefix that is missing a part
                   6002: 	if (defined($part)) { $keyroot='_'.$part.substr($prefix,1); }
                   6003:     } else {
                   6004: 	# no prefix at all
                   6005: 	if (defined($part)) { $keyroot='_'.$part; }
                   6006:     }
                   6007:     return $keyroot;
                   6008: }
                   6009: 
1.71      www      6010: # ---------------------------------------------------------------- Get metadata
                   6011: 
1.599     albertel 6012: my %metaentry;
1.71      www      6013: sub metadata {
1.176     www      6014:     my ($uri,$what,$liburi,$prefix,$depthcount)=@_;
1.71      www      6015:     $uri=&declutter($uri);
1.288     albertel 6016:     # if it is a non metadata possible uri return quickly
1.529     albertel 6017:     if (($uri eq '') || 
                   6018: 	(($uri =~ m|^/*adm/|) && 
1.698     albertel 6019: 	     ($uri !~ m|^adm/includes|) && ($uri !~ m|/bulletinboard$|)) ||
1.423     albertel 6020:         ($uri =~ m|/$|) || ($uri =~ m|/.meta$|) || ($uri =~ /^~/) ||
1.807     albertel 6021: 	($uri =~ m|home/$match_username/public_html/|)) {
1.468     albertel 6022: 	return undef;
1.288     albertel 6023:     }
1.73      www      6024:     my $filename=$uri;
                   6025:     $uri=~s/\.meta$//;
1.172     www      6026: #
                   6027: # Is the metadata already cached?
1.177     www      6028: # Look at timestamp of caching
1.172     www      6029: # Everything is cached by the main uri, libraries are never directly cached
                   6030: #
1.428     albertel 6031:     if (!defined($liburi)) {
1.599     albertel 6032: 	my ($result,$cached)=&is_cached_new('meta',$uri);
1.428     albertel 6033: 	if (defined($cached)) { return $result->{':'.$what}; }
                   6034:     }
                   6035:     {
1.172     www      6036: #
                   6037: # Is this a recursive call for a library?
                   6038: #
1.599     albertel 6039: #	if (! exists($metacache{$uri})) {
                   6040: #	    $metacache{$uri}={};
                   6041: #	}
1.171     www      6042:         if ($liburi) {
                   6043: 	    $liburi=&declutter($liburi);
                   6044:             $filename=$liburi;
1.401     bowersj2 6045:         } else {
1.599     albertel 6046: 	    &devalidate_cache_new('meta',$uri);
                   6047: 	    undef(%metaentry);
1.401     bowersj2 6048: 	}
1.140     www      6049:         my %metathesekeys=();
1.73      www      6050:         unless ($filename=~/\.meta$/) { $filename.='.meta'; }
1.489     albertel 6051: 	my $metastring;
1.768     albertel 6052: 	if ($uri !~ m -^(editupload)/-) {
1.543     albertel 6053: 	    my $file=&filelocation('',&clutter($filename));
1.599     albertel 6054: 	    #push(@{$metaentry{$uri.'.file'}},$file);
1.543     albertel 6055: 	    $metastring=&getfile($file);
1.489     albertel 6056: 	}
1.208     albertel 6057:         my $parser=HTML::LCParser->new(\$metastring);
1.71      www      6058:         my $token;
1.140     www      6059:         undef %metathesekeys;
1.71      www      6060:         while ($token=$parser->get_token) {
1.339     albertel 6061: 	    if ($token->[0] eq 'S') {
                   6062: 		if (defined($token->[2]->{'package'})) {
1.172     www      6063: #
                   6064: # This is a package - get package info
                   6065: #
1.339     albertel 6066: 		    my $package=$token->[2]->{'package'};
                   6067: 		    my $keyroot=&add_prefix_and_part($prefix,$token->[2]->{'part'});
                   6068: 		    if (defined($token->[2]->{'id'})) { 
                   6069: 			$keyroot.='_'.$token->[2]->{'id'}; 
                   6070: 		    }
1.599     albertel 6071: 		    if ($metaentry{':packages'}) {
                   6072: 			$metaentry{':packages'}.=','.$package.$keyroot;
1.339     albertel 6073: 		    } else {
1.599     albertel 6074: 			$metaentry{':packages'}=$package.$keyroot;
1.339     albertel 6075: 		    }
1.736     albertel 6076: 		    foreach my $pack_entry (keys(%packagetab)) {
1.432     albertel 6077: 			my $part=$keyroot;
                   6078: 			$part=~s/^\_//;
1.736     albertel 6079: 			if ($pack_entry=~/^\Q$package\E\&/ || 
                   6080: 			    $pack_entry=~/^\Q$package\E_0\&/) {
                   6081: 			    my ($pack,$name,$subp)=split(/\&/,$pack_entry);
1.395     albertel 6082: 			    # ignore package.tab specified default values
                   6083:                             # here &package_tab_default() will fetch those
                   6084: 			    if ($subp eq 'default') { next; }
1.736     albertel 6085: 			    my $value=$packagetab{$pack_entry};
1.432     albertel 6086: 			    my $unikey;
                   6087: 			    if ($pack =~ /_0$/) {
                   6088: 				$unikey='parameter_0_'.$name;
                   6089: 				$part=0;
                   6090: 			    } else {
                   6091: 				$unikey='parameter'.$keyroot.'_'.$name;
                   6092: 			    }
1.339     albertel 6093: 			    if ($subp eq 'display') {
                   6094: 				$value.=' [Part: '.$part.']';
                   6095: 			    }
1.599     albertel 6096: 			    $metaentry{':'.$unikey.'.part'}=$part;
1.395     albertel 6097: 			    $metathesekeys{$unikey}=1;
1.599     albertel 6098: 			    unless (defined($metaentry{':'.$unikey.'.'.$subp})) {
                   6099: 				$metaentry{':'.$unikey.'.'.$subp}=$value;
1.339     albertel 6100: 			    }
1.599     albertel 6101: 			    if (defined($metaentry{':'.$unikey.'.default'})) {
                   6102: 				$metaentry{':'.$unikey}=
                   6103: 				    $metaentry{':'.$unikey.'.default'};
1.356     albertel 6104: 			    }
1.339     albertel 6105: 			}
                   6106: 		    }
                   6107: 		} else {
1.172     www      6108: #
                   6109: # This is not a package - some other kind of start tag
1.339     albertel 6110: #
                   6111: 		    my $entry=$token->[1];
                   6112: 		    my $unikey;
                   6113: 		    if ($entry eq 'import') {
                   6114: 			$unikey='';
                   6115: 		    } else {
                   6116: 			$unikey=$entry;
                   6117: 		    }
                   6118: 		    $unikey.=&add_prefix_and_part($prefix,$token->[2]->{'part'});
                   6119: 
                   6120: 		    if (defined($token->[2]->{'id'})) { 
                   6121: 			$unikey.='_'.$token->[2]->{'id'}; 
                   6122: 		    }
1.175     www      6123: 
1.339     albertel 6124: 		    if ($entry eq 'import') {
1.175     www      6125: #
                   6126: # Importing a library here
1.339     albertel 6127: #
                   6128: 			if ($depthcount<20) {
                   6129: 			    my $location=$parser->get_text('/import');
                   6130: 			    my $dir=$filename;
                   6131: 			    $dir=~s|[^/]*$||;
                   6132: 			    $location=&filelocation($dir,$location);
1.736     albertel 6133: 			    my $metadata = 
                   6134: 				&metadata($uri,'keys', $location,$unikey,
                   6135: 					  $depthcount+1);
                   6136: 			    foreach my $meta (split(',',$metadata)) {
                   6137: 				$metaentry{':'.$meta}=$metaentry{':'.$meta};
                   6138: 				$metathesekeys{$meta}=1;
1.339     albertel 6139: 			    }
                   6140: 			}
                   6141: 		    } else { 
                   6142: 			
                   6143: 			if (defined($token->[2]->{'name'})) { 
                   6144: 			    $unikey.='_'.$token->[2]->{'name'}; 
                   6145: 			}
                   6146: 			$metathesekeys{$unikey}=1;
1.736     albertel 6147: 			foreach my $param (@{$token->[3]}) {
                   6148: 			    $metaentry{':'.$unikey.'.'.$param} =
                   6149: 				$token->[2]->{$param};
1.339     albertel 6150: 			}
                   6151: 			my $internaltext=&HTML::Entities::decode($parser->get_text('/'.$entry));
1.599     albertel 6152: 			my $default=$metaentry{':'.$unikey.'.default'};
1.339     albertel 6153: 			if ( $internaltext =~ /^\s*$/ && $default !~ /^\s*$/) {
                   6154: 		 # only ws inside the tag, and not in default, so use default
                   6155: 		 # as value
1.599     albertel 6156: 			    $metaentry{':'.$unikey}=$default;
1.339     albertel 6157: 			} else {
1.321     albertel 6158: 		  # either something interesting inside the tag or default
                   6159:                   # uninteresting
1.599     albertel 6160: 			    $metaentry{':'.$unikey}=$internaltext;
1.339     albertel 6161: 			}
1.172     www      6162: # end of not-a-package not-a-library import
1.339     albertel 6163: 		    }
1.172     www      6164: # end of not-a-package start tag
1.339     albertel 6165: 		}
1.172     www      6166: # the next is the end of "start tag"
1.339     albertel 6167: 	    }
                   6168: 	}
1.483     albertel 6169: 	my ($extension) = ($uri =~ /\.(\w+)$/);
1.737     albertel 6170: 	foreach my $key (keys(%packagetab)) {
1.483     albertel 6171: 	    #no specific packages #how's our extension
                   6172: 	    if ($key!~/^extension_\Q$extension\E&/) { next; }
1.488     albertel 6173: 	    &metadata_create_package_def($uri,$key,'extension_'.$extension,
1.483     albertel 6174: 					 \%metathesekeys);
                   6175: 	}
1.599     albertel 6176: 	if (!exists($metaentry{':packages'})) {
1.737     albertel 6177: 	    foreach my $key (keys(%packagetab)) {
1.483     albertel 6178: 		#no specific packages well let's get default then
                   6179: 		if ($key!~/^default&/) { next; }
1.488     albertel 6180: 		&metadata_create_package_def($uri,$key,'default',
1.483     albertel 6181: 					     \%metathesekeys);
                   6182: 	    }
                   6183: 	}
1.338     www      6184: # are there custom rights to evaluate
1.599     albertel 6185: 	if ($metaentry{':copyright'} eq 'custom') {
1.339     albertel 6186: 
1.338     www      6187:     #
                   6188:     # Importing a rights file here
1.339     albertel 6189:     #
                   6190: 	    unless ($depthcount) {
1.599     albertel 6191: 		my $location=$metaentry{':customdistributionfile'};
1.339     albertel 6192: 		my $dir=$filename;
                   6193: 		$dir=~s|[^/]*$||;
                   6194: 		$location=&filelocation($dir,$location);
1.736     albertel 6195: 		my $rights_metadata =
                   6196: 		    &metadata($uri,'keys',$location,'_rights',
                   6197: 			      $depthcount+1);
                   6198: 		foreach my $rights (split(',',$rights_metadata)) {
                   6199: 		    #$metaentry{':'.$rights}=$metacache{$uri}->{':'.$rights};
                   6200: 		    $metathesekeys{$rights}=1;
1.339     albertel 6201: 		}
                   6202: 	    }
                   6203: 	}
1.737     albertel 6204: 	# uniqifiy package listing
                   6205: 	my %seen;
                   6206: 	my @uniq_packages =
                   6207: 	    grep { ! $seen{$_} ++ } (split(',',$metaentry{':packages'}));
                   6208: 	$metaentry{':packages'} = join(',',@uniq_packages);
                   6209: 
                   6210: 	$metaentry{':keys'} = join(',',keys(%metathesekeys));
1.599     albertel 6211: 	&metadata_generate_part0(\%metathesekeys,\%metaentry,$uri);
                   6212: 	$metaentry{':allpossiblekeys'}=join(',',keys %metathesekeys);
1.699     albertel 6213: 	&do_cache_new('meta',$uri,\%metaentry,60*60);
1.177     www      6214: # this is the end of "was not already recently cached
1.71      www      6215:     }
1.599     albertel 6216:     return $metaentry{':'.$what};
1.261     albertel 6217: }
                   6218: 
1.488     albertel 6219: sub metadata_create_package_def {
1.483     albertel 6220:     my ($uri,$key,$package,$metathesekeys)=@_;
                   6221:     my ($pack,$name,$subp)=split(/\&/,$key);
                   6222:     if ($subp eq 'default') { next; }
                   6223:     
1.599     albertel 6224:     if (defined($metaentry{':packages'})) {
                   6225: 	$metaentry{':packages'}.=','.$package;
1.483     albertel 6226:     } else {
1.599     albertel 6227: 	$metaentry{':packages'}=$package;
1.483     albertel 6228:     }
                   6229:     my $value=$packagetab{$key};
                   6230:     my $unikey;
                   6231:     $unikey='parameter_0_'.$name;
1.599     albertel 6232:     $metaentry{':'.$unikey.'.part'}=0;
1.483     albertel 6233:     $$metathesekeys{$unikey}=1;
1.599     albertel 6234:     unless (defined($metaentry{':'.$unikey.'.'.$subp})) {
                   6235: 	$metaentry{':'.$unikey.'.'.$subp}=$value;
1.483     albertel 6236:     }
1.599     albertel 6237:     if (defined($metaentry{':'.$unikey.'.default'})) {
                   6238: 	$metaentry{':'.$unikey}=
                   6239: 	    $metaentry{':'.$unikey.'.default'};
1.483     albertel 6240:     }
                   6241: }
                   6242: 
1.261     albertel 6243: sub metadata_generate_part0 {
                   6244:     my ($metadata,$metacache,$uri) = @_;
                   6245:     my %allnames;
1.737     albertel 6246:     foreach my $metakey (keys(%$metadata)) {
1.261     albertel 6247: 	if ($metakey=~/^parameter\_(.*)/) {
1.428     albertel 6248: 	  my $part=$$metacache{':'.$metakey.'.part'};
                   6249: 	  my $name=$$metacache{':'.$metakey.'.name'};
1.356     albertel 6250: 	  if (! exists($$metadata{'parameter_0_'.$name.'.name'})) {
1.261     albertel 6251: 	    $allnames{$name}=$part;
                   6252: 	  }
                   6253: 	}
                   6254:     }
                   6255:     foreach my $name (keys(%allnames)) {
                   6256:       $$metadata{"parameter_0_$name"}=1;
1.428     albertel 6257:       my $key=":parameter_0_$name";
1.261     albertel 6258:       $$metacache{"$key.part"}='0';
                   6259:       $$metacache{"$key.name"}=$name;
1.428     albertel 6260:       $$metacache{"$key.type"}=$$metacache{':parameter_'.
1.261     albertel 6261: 					   $allnames{$name}.'_'.$name.
                   6262: 					   '.type'};
1.428     albertel 6263:       my $olddis=$$metacache{':parameter_'.$allnames{$name}.'_'.$name.
1.261     albertel 6264: 			     '.display'};
1.644     www      6265:       my $expr='[Part: '.$allnames{$name}.']';
1.479     albertel 6266:       $olddis=~s/\Q$expr\E/\[Part: 0\]/;
1.261     albertel 6267:       $$metacache{"$key.display"}=$olddis;
                   6268:     }
1.71      www      6269: }
                   6270: 
1.764     albertel 6271: # ------------------------------------------------------ Devalidate title cache
                   6272: 
                   6273: sub devalidate_title_cache {
                   6274:     my ($url)=@_;
                   6275:     if (!$env{'request.course.id'}) { return; }
                   6276:     my $symb=&symbread($url);
                   6277:     if (!$symb) { return; }
                   6278:     my $key=$env{'request.course.id'}."\0".$symb;
                   6279:     &devalidate_cache_new('title',$key);
                   6280: }
                   6281: 
1.301     www      6282: # ------------------------------------------------- Get the title of a resource
                   6283: 
                   6284: sub gettitle {
                   6285:     my $urlsymb=shift;
                   6286:     my $symb=&symbread($urlsymb);
1.534     albertel 6287:     if ($symb) {
1.620     albertel 6288: 	my $key=$env{'request.course.id'}."\0".$symb;
1.599     albertel 6289: 	my ($result,$cached)=&is_cached_new('title',$key);
1.575     albertel 6290: 	if (defined($cached)) { 
                   6291: 	    return $result;
                   6292: 	}
1.534     albertel 6293: 	my ($map,$resid,$url)=&decode_symb($symb);
                   6294: 	my $title='';
                   6295: 	my %bighash;
1.620     albertel 6296: 	if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.534     albertel 6297: 		&GDBM_READER(),0640)) {
                   6298: 	    my $mapid=$bighash{'map_pc_'.&clutter($map)};
                   6299: 	    $title=$bighash{'title_'.$mapid.'.'.$resid};
                   6300: 	    untie %bighash;
                   6301: 	}
                   6302: 	$title=~s/\&colon\;/\:/gs;
                   6303: 	if ($title) {
1.599     albertel 6304: 	    return &do_cache_new('title',$key,$title,600);
1.534     albertel 6305: 	}
                   6306: 	$urlsymb=$url;
                   6307:     }
                   6308:     my $title=&metadata($urlsymb,'title');
                   6309:     if (!$title) { $title=(split('/',$urlsymb))[-1]; }    
                   6310:     return $title;
1.301     www      6311: }
1.613     albertel 6312: 
1.614     albertel 6313: sub get_slot {
                   6314:     my ($which,$cnum,$cdom)=@_;
                   6315:     if (!$cnum || !$cdom) {
1.790     albertel 6316: 	(undef,my $courseid)=&whichuser();
1.620     albertel 6317: 	$cdom=$env{'course.'.$courseid.'.domain'};
                   6318: 	$cnum=$env{'course.'.$courseid.'.num'};
1.614     albertel 6319:     }
1.703     albertel 6320:     my $key=join("\0",'slots',$cdom,$cnum,$which);
                   6321:     my %slotinfo;
                   6322:     if (exists($remembered{$key})) {
                   6323: 	$slotinfo{$which} = $remembered{$key};
                   6324:     } else {
                   6325: 	%slotinfo=&get('slots',[$which],$cdom,$cnum);
                   6326: 	&Apache::lonhomework::showhash(%slotinfo);
                   6327: 	my ($tmp)=keys(%slotinfo);
                   6328: 	if ($tmp=~/^error:/) { return (); }
                   6329: 	$remembered{$key} = $slotinfo{$which};
                   6330:     }
1.616     albertel 6331:     if (ref($slotinfo{$which}) eq 'HASH') {
                   6332: 	return %{$slotinfo{$which}};
                   6333:     }
                   6334:     return $slotinfo{$which};
1.614     albertel 6335: }
1.31      www      6336: # ------------------------------------------------- Update symbolic store links
                   6337: 
                   6338: sub symblist {
                   6339:     my ($mapname,%newhash)=@_;
1.438     www      6340:     $mapname=&deversion(&declutter($mapname));
1.31      www      6341:     my %hash;
1.620     albertel 6342:     if (($env{'request.course.fn'}) && (%newhash)) {
                   6343:         if (tie(%hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db',
1.256     albertel 6344:                       &GDBM_WRCREAT(),0640)) {
1.711     albertel 6345: 	    foreach my $url (keys %newhash) {
                   6346: 		next if ($url eq 'last_known'
                   6347: 			 && $env{'form.no_update_last_known'});
                   6348: 		$hash{declutter($url)}=&encode_symb($mapname,
                   6349: 						    $newhash{$url}->[1],
                   6350: 						    $newhash{$url}->[0]);
1.191     harris41 6351:             }
1.31      www      6352:             if (untie(%hash)) {
                   6353: 		return 'ok';
                   6354:             }
                   6355:         }
                   6356:     }
                   6357:     return 'error';
1.212     www      6358: }
                   6359: 
                   6360: # --------------------------------------------------------------- Verify a symb
                   6361: 
                   6362: sub symbverify {
1.510     www      6363:     my ($symb,$thisurl)=@_;
                   6364:     my $thisfn=$thisurl;
1.439     www      6365:     $thisfn=&declutter($thisfn);
1.215     www      6366: # direct jump to resource in page or to a sequence - will construct own symbs
                   6367:     if ($thisfn=~/\.(page|sequence)$/) { return 1; }
                   6368: # check URL part
1.409     www      6369:     my ($map,$resid,$url)=&decode_symb($symb);
1.439     www      6370: 
1.431     www      6371:     unless ($url eq $thisfn) { return 0; }
1.213     www      6372: 
1.216     www      6373:     $symb=&symbclean($symb);
1.510     www      6374:     $thisurl=&deversion($thisurl);
1.439     www      6375:     $thisfn=&deversion($thisfn);
1.213     www      6376: 
                   6377:     my %bighash;
                   6378:     my $okay=0;
1.431     www      6379: 
1.620     albertel 6380:     if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.256     albertel 6381:                             &GDBM_READER(),0640)) {
1.510     www      6382:         my $ids=$bighash{'ids_'.&clutter($thisurl)};
1.216     www      6383:         unless ($ids) { 
1.510     www      6384:            $ids=$bighash{'ids_/'.$thisurl};
1.216     www      6385:         }
                   6386:         if ($ids) {
                   6387: # ------------------------------------------------------------------- Has ID(s)
1.800     albertel 6388: 	    foreach my $id (split(/\,/,$ids)) {
                   6389: 	       my ($mapid,$resid)=split(/\./,$id);
1.216     www      6390:                if (
                   6391:   &symbclean(&declutter($bighash{'map_id_'.$mapid}).'___'.$resid.'___'.$thisfn)
                   6392:    eq $symb) { 
1.620     albertel 6393: 		   if (($env{'request.role.adv'}) ||
1.800     albertel 6394: 		       $bighash{'encrypted_'.$id} eq $env{'request.enc'}) {
1.582     albertel 6395: 		       $okay=1; 
                   6396: 		   }
                   6397: 	       }
1.216     www      6398: 	   }
                   6399:         }
1.213     www      6400: 	untie(%bighash);
                   6401:     }
                   6402:     return $okay;
1.31      www      6403: }
                   6404: 
1.210     www      6405: # --------------------------------------------------------------- Clean-up symb
                   6406: 
                   6407: sub symbclean {
                   6408:     my $symb=shift;
1.568     albertel 6409:     if ($symb=~m|^/enc/|) { $symb=&Apache::lonenc::unencrypted($symb); }
1.210     www      6410: # remove version from map
                   6411:     $symb=~s/\.(\d+)\.(\w+)\_\_\_/\.$2\_\_\_/;
1.215     www      6412: 
1.210     www      6413: # remove version from URL
                   6414:     $symb=~s/\.(\d+)\.(\w+)$/\.$2/;
1.213     www      6415: 
1.507     www      6416: # remove wrapper
                   6417: 
1.510     www      6418:     $symb=~s/(\_\_\_\d+\_\_\_)adm\/wrapper\/(res\/)*/$1/;
1.694     albertel 6419:     $symb=~s/(\_\_\_\d+\_\_\_)adm\/coursedocs\/showdoc\/(res\/)*/$1/;
1.210     www      6420:     return $symb;
1.409     www      6421: }
                   6422: 
                   6423: # ---------------------------------------------- Split symb to find map and url
1.429     albertel 6424: 
                   6425: sub encode_symb {
                   6426:     my ($map,$resid,$url)=@_;
                   6427:     return &symbclean(&declutter($map).'___'.$resid.'___'.&declutter($url));
                   6428: }
1.409     www      6429: 
                   6430: sub decode_symb {
1.568     albertel 6431:     my $symb=shift;
                   6432:     if ($symb=~m|^/enc/|) { $symb=&Apache::lonenc::unencrypted($symb); }
                   6433:     my ($map,$resid,$url)=split(/___/,$symb);
1.413     www      6434:     return (&fixversion($map),$resid,&fixversion($url));
                   6435: }
                   6436: 
                   6437: sub fixversion {
                   6438:     my $fn=shift;
1.609     banghart 6439:     if ($fn=~/^(adm|uploaded|editupload|public)/) { return $fn; }
1.435     www      6440:     my %bighash;
                   6441:     my $uri=&clutter($fn);
1.620     albertel 6442:     my $key=$env{'request.course.id'}.'_'.$uri;
1.440     www      6443: # is this cached?
1.599     albertel 6444:     my ($result,$cached)=&is_cached_new('courseresversion',$key);
1.440     www      6445:     if (defined($cached)) { return $result; }
                   6446: # unfortunately not cached, or expired
1.620     albertel 6447:     if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.440     www      6448: 	    &GDBM_READER(),0640)) {
                   6449:  	if ($bighash{'version_'.$uri}) {
                   6450:  	    my $version=$bighash{'version_'.$uri};
1.444     www      6451:  	    unless (($version eq 'mostrecent') || 
                   6452: 		    ($version==&getversion($uri))) {
1.440     www      6453:  		$uri=~s/\.(\w+)$/\.$version\.$1/;
                   6454:  	    }
                   6455:  	}
                   6456:  	untie %bighash;
1.413     www      6457:     }
1.599     albertel 6458:     return &do_cache_new('courseresversion',$key,&declutter($uri),600);
1.438     www      6459: }
                   6460: 
                   6461: sub deversion {
                   6462:     my $url=shift;
                   6463:     $url=~s/\.\d+\.(\w+)$/\.$1/;
                   6464:     return $url;
1.210     www      6465: }
                   6466: 
1.31      www      6467: # ------------------------------------------------------ Return symb list entry
                   6468: 
                   6469: sub symbread {
1.249     www      6470:     my ($thisfn,$donotrecurse)=@_;
1.542     albertel 6471:     my $cache_str='request.symbread.cached.'.$thisfn;
1.620     albertel 6472:     if (defined($env{$cache_str})) { return $env{$cache_str}; }
1.242     www      6473: # no filename provided? try from environment
1.44      www      6474:     unless ($thisfn) {
1.620     albertel 6475:         if ($env{'request.symb'}) {
                   6476: 	    return $env{$cache_str}=&symbclean($env{'request.symb'});
1.539     albertel 6477: 	}
1.620     albertel 6478: 	$thisfn=$env{'request.filename'};
1.44      www      6479:     }
1.569     albertel 6480:     if ($thisfn=~m|^/enc/|) { $thisfn=&Apache::lonenc::unencrypted($thisfn); }
1.242     www      6481: # is that filename actually a symb? Verify, clean, and return
                   6482:     if ($thisfn=~/\_\_\_\d+\_\_\_(.*)$/) {
1.539     albertel 6483: 	if (&symbverify($thisfn,$1)) {
1.620     albertel 6484: 	    return $env{$cache_str}=&symbclean($thisfn);
1.539     albertel 6485: 	}
1.242     www      6486:     }
1.44      www      6487:     $thisfn=declutter($thisfn);
1.31      www      6488:     my %hash;
1.37      www      6489:     my %bighash;
                   6490:     my $syval='';
1.620     albertel 6491:     if (($env{'request.course.fn'}) && ($thisfn)) {
1.481     raeburn  6492:         my $targetfn = $thisfn;
1.609     banghart 6493:         if ( ($thisfn =~ m/^(uploaded|editupload)\//) && ($thisfn !~ m/\.(page|sequence)$/) ) {
1.481     raeburn  6494:             $targetfn = 'adm/wrapper/'.$thisfn;
                   6495:         }
1.687     albertel 6496: 	if ($targetfn =~ m|^adm/wrapper/(ext/.*)|) {
                   6497: 	    $targetfn=$1;
                   6498: 	}
1.620     albertel 6499:         if (tie(%hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db',
1.256     albertel 6500:                       &GDBM_READER(),0640)) {
1.481     raeburn  6501: 	    $syval=$hash{$targetfn};
1.37      www      6502:             untie(%hash);
                   6503:         }
                   6504: # ---------------------------------------------------------- There was an entry
                   6505:         if ($syval) {
1.601     albertel 6506: 	    #unless ($syval=~/\_\d+$/) {
1.620     albertel 6507: 		#unless ($env{'form.request.prefix'}=~/\.(\d+)\_$/) {
1.601     albertel 6508: 		    #&appenv('request.ambiguous' => $thisfn);
1.620     albertel 6509: 		    #return $env{$cache_str}='';
1.601     albertel 6510: 		#}    
                   6511: 		#$syval.=$1;
                   6512: 	    #}
1.37      www      6513:         } else {
                   6514: # ------------------------------------------------------- Was not in symb table
1.620     albertel 6515:            if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.256     albertel 6516:                             &GDBM_READER(),0640)) {
1.37      www      6517: # ---------------------------------------------- Get ID(s) for current resource
1.280     www      6518:               my $ids=$bighash{'ids_'.&clutter($thisfn)};
1.65      www      6519:               unless ($ids) { 
                   6520:                  $ids=$bighash{'ids_/'.$thisfn};
1.242     www      6521:               }
                   6522:               unless ($ids) {
                   6523: # alias?
                   6524: 		  $ids=$bighash{'mapalias_'.$thisfn};
1.65      www      6525:               }
1.37      www      6526:               if ($ids) {
                   6527: # ------------------------------------------------------------------- Has ID(s)
                   6528:                  my @possibilities=split(/\,/,$ids);
1.39      www      6529:                  if ($#possibilities==0) {
                   6530: # ----------------------------------------------- There is only one possibility
1.37      www      6531: 		     my ($mapid,$resid)=split(/\./,$ids);
1.626     albertel 6532: 		     $syval=&encode_symb($bighash{'map_id_'.$mapid},
                   6533: 						    $resid,$thisfn);
1.249     www      6534:                  } elsif (!$donotrecurse) {
1.39      www      6535: # ------------------------------------------ There is more than one possibility
                   6536:                      my $realpossible=0;
1.800     albertel 6537:                      foreach my $id (@possibilities) {
                   6538: 			 my $file=$bighash{'src_'.$id};
1.39      www      6539:                          if (&allowed('bre',$file)) {
1.800     albertel 6540:          		    my ($mapid,$resid)=split(/\./,$id);
1.39      www      6541:                             if ($bighash{'map_type_'.$mapid} ne 'page') {
                   6542: 				$realpossible++;
1.626     albertel 6543:                                 $syval=&encode_symb($bighash{'map_id_'.$mapid},
                   6544: 						    $resid,$thisfn);
1.39      www      6545:                             }
                   6546: 			 }
1.191     harris41 6547:                      }
1.39      www      6548: 		     if ($realpossible!=1) { $syval=''; }
1.249     www      6549:                  } else {
                   6550:                      $syval='';
1.37      www      6551:                  }
                   6552: 	      }
                   6553:               untie(%bighash)
1.481     raeburn  6554:            }
1.31      www      6555:         }
1.62      www      6556:         if ($syval) {
1.620     albertel 6557: 	    return $env{$cache_str}=$syval;
1.62      www      6558:         }
1.31      www      6559:     }
1.44      www      6560:     &appenv('request.ambiguous' => $thisfn);
1.620     albertel 6561:     return $env{$cache_str}='';
1.31      www      6562: }
                   6563: 
                   6564: # ---------------------------------------------------------- Return random seed
                   6565: 
1.32      www      6566: sub numval {
                   6567:     my $txt=shift;
                   6568:     $txt=~tr/A-J/0-9/;
                   6569:     $txt=~tr/a-j/0-9/;
                   6570:     $txt=~tr/K-T/0-9/;
                   6571:     $txt=~tr/k-t/0-9/;
                   6572:     $txt=~tr/U-Z/0-5/;
                   6573:     $txt=~tr/u-z/0-5/;
                   6574:     $txt=~s/\D//g;
1.564     albertel 6575:     if ($_64bit) { if ($txt > 2**32) { return -1; } }
1.32      www      6576:     return int($txt);
1.368     albertel 6577: }
                   6578: 
1.484     albertel 6579: sub numval2 {
                   6580:     my $txt=shift;
                   6581:     $txt=~tr/A-J/0-9/;
                   6582:     $txt=~tr/a-j/0-9/;
                   6583:     $txt=~tr/K-T/0-9/;
                   6584:     $txt=~tr/k-t/0-9/;
                   6585:     $txt=~tr/U-Z/0-5/;
                   6586:     $txt=~tr/u-z/0-5/;
                   6587:     $txt=~s/\D//g;
                   6588:     my @txts=split(/(\d\d\d\d\d\d\d\d\d)/,$txt);
                   6589:     my $total;
                   6590:     foreach my $val (@txts) { $total+=$val; }
1.564     albertel 6591:     if ($_64bit) { if ($total > 2**32) { return -1; } }
1.484     albertel 6592:     return int($total);
                   6593: }
                   6594: 
1.575     albertel 6595: sub numval3 {
                   6596:     use integer;
                   6597:     my $txt=shift;
                   6598:     $txt=~tr/A-J/0-9/;
                   6599:     $txt=~tr/a-j/0-9/;
                   6600:     $txt=~tr/K-T/0-9/;
                   6601:     $txt=~tr/k-t/0-9/;
                   6602:     $txt=~tr/U-Z/0-5/;
                   6603:     $txt=~tr/u-z/0-5/;
                   6604:     $txt=~s/\D//g;
                   6605:     my @txts=split(/(\d\d\d\d\d\d\d\d\d)/,$txt);
                   6606:     my $total;
                   6607:     foreach my $val (@txts) { $total+=$val; }
                   6608:     if ($_64bit) { $total=(($total<<32)>>32); }
                   6609:     return $total;
                   6610: }
                   6611: 
1.675     albertel 6612: sub digest {
                   6613:     my ($data)=@_;
                   6614:     my $digest=&Digest::MD5::md5($data);
                   6615:     my ($a,$b,$c,$d)=unpack("iiii",$digest);
                   6616:     my ($e,$f);
                   6617:     {
                   6618:         use integer;
                   6619:         $e=($a+$b);
                   6620:         $f=($c+$d);
                   6621:         if ($_64bit) {
                   6622:             $e=(($e<<32)>>32);
                   6623:             $f=(($f<<32)>>32);
                   6624:         }
                   6625:     }
                   6626:     if (wantarray) {
                   6627: 	return ($e,$f);
                   6628:     } else {
                   6629: 	my $g;
                   6630: 	{
                   6631: 	    use integer;
                   6632: 	    $g=($e+$f);
                   6633: 	    if ($_64bit) {
                   6634: 		$g=(($g<<32)>>32);
                   6635: 	    }
                   6636: 	}
                   6637: 	return $g;
                   6638:     }
                   6639: }
                   6640: 
1.368     albertel 6641: sub latest_rnd_algorithm_id {
1.675     albertel 6642:     return '64bit5';
1.366     albertel 6643: }
1.32      www      6644: 
1.503     albertel 6645: sub get_rand_alg {
                   6646:     my ($courseid)=@_;
1.790     albertel 6647:     if (!$courseid) { $courseid=(&whichuser())[1]; }
1.503     albertel 6648:     if ($courseid) {
1.620     albertel 6649: 	return $env{"course.$courseid.rndseed"};
1.503     albertel 6650:     }
                   6651:     return &latest_rnd_algorithm_id();
                   6652: }
                   6653: 
1.562     albertel 6654: sub validCODE {
                   6655:     my ($CODE)=@_;
                   6656:     if (defined($CODE) && $CODE ne '' && $CODE =~ /^\w+$/) { return 1; }
                   6657:     return 0;
                   6658: }
                   6659: 
1.491     albertel 6660: sub getCODE {
1.620     albertel 6661:     if (&validCODE($env{'form.CODE'})) { return $env{'form.CODE'}; }
1.618     albertel 6662:     if ( (defined($Apache::lonhomework::parsing_a_problem) ||
                   6663: 	  defined($Apache::lonhomework::parsing_a_task) ) &&
                   6664: 	 &validCODE($Apache::lonhomework::history{'resource.CODE'})) {
1.491     albertel 6665: 	return $Apache::lonhomework::history{'resource.CODE'};
                   6666:     }
                   6667:     return undef;
                   6668: }
                   6669: 
1.31      www      6670: sub rndseed {
1.155     albertel 6671:     my ($symb,$courseid,$domain,$username)=@_;
1.366     albertel 6672: 
1.790     albertel 6673:     my ($wsymb,$wcourseid,$wdomain,$wusername)=&whichuser();
1.155     albertel 6674:     if (!$symb) {
1.366     albertel 6675: 	unless ($symb=$wsymb) { return time; }
                   6676:     }
                   6677:     if (!$courseid) { $courseid=$wcourseid; }
                   6678:     if (!$domain) { $domain=$wdomain; }
                   6679:     if (!$username) { $username=$wusername }
1.503     albertel 6680:     my $which=&get_rand_alg();
1.803     albertel 6681: 
1.491     albertel 6682:     if (defined(&getCODE())) {
1.675     albertel 6683: 	if ($which eq '64bit5') {
                   6684: 	    return &rndseed_CODE_64bit5($symb,$courseid,$domain,$username);
                   6685: 	} elsif ($which eq '64bit4') {
1.575     albertel 6686: 	    return &rndseed_CODE_64bit4($symb,$courseid,$domain,$username);
                   6687: 	} else {
                   6688: 	    return &rndseed_CODE_64bit($symb,$courseid,$domain,$username);
                   6689: 	}
1.675     albertel 6690:     } elsif ($which eq '64bit5') {
                   6691: 	return &rndseed_64bit5($symb,$courseid,$domain,$username);
1.575     albertel 6692:     } elsif ($which eq '64bit4') {
                   6693: 	return &rndseed_64bit4($symb,$courseid,$domain,$username);
1.501     albertel 6694:     } elsif ($which eq '64bit3') {
                   6695: 	return &rndseed_64bit3($symb,$courseid,$domain,$username);
1.443     albertel 6696:     } elsif ($which eq '64bit2') {
                   6697: 	return &rndseed_64bit2($symb,$courseid,$domain,$username);
1.366     albertel 6698:     } elsif ($which eq '64bit') {
                   6699: 	return &rndseed_64bit($symb,$courseid,$domain,$username);
                   6700:     }
                   6701:     return &rndseed_32bit($symb,$courseid,$domain,$username);
                   6702: }
                   6703: 
                   6704: sub rndseed_32bit {
                   6705:     my ($symb,$courseid,$domain,$username)=@_;
                   6706:     {
                   6707: 	use integer;
                   6708: 	my $symbchck=unpack("%32C*",$symb) << 27;
                   6709: 	my $symbseed=numval($symb) << 22;
                   6710: 	my $namechck=unpack("%32C*",$username) << 17;
                   6711: 	my $nameseed=numval($username) << 12;
                   6712: 	my $domainseed=unpack("%32C*",$domain) << 7;
                   6713: 	my $courseseed=unpack("%32C*",$courseid);
                   6714: 	my $num=$symbseed+$nameseed+$domainseed+$courseseed+$namechck+$symbchck;
1.790     albertel 6715: 	#&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
                   6716: 	#&logthis("rndseed :$num:$symb");
1.564     albertel 6717: 	if ($_64bit) { $num=(($num<<32)>>32); }
1.366     albertel 6718: 	return $num;
                   6719:     }
                   6720: }
                   6721: 
                   6722: sub rndseed_64bit {
                   6723:     my ($symb,$courseid,$domain,$username)=@_;
                   6724:     {
                   6725: 	use integer;
                   6726: 	my $symbchck=unpack("%32S*",$symb) << 21;
                   6727: 	my $symbseed=numval($symb) << 10;
                   6728: 	my $namechck=unpack("%32S*",$username);
                   6729: 	
                   6730: 	my $nameseed=numval($username) << 21;
                   6731: 	my $domainseed=unpack("%32S*",$domain) << 10;
                   6732: 	my $courseseed=unpack("%32S*",$courseid);
                   6733: 	
                   6734: 	my $num1=$symbchck+$symbseed+$namechck;
                   6735: 	my $num2=$nameseed+$domainseed+$courseseed;
1.790     albertel 6736: 	#&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
                   6737: 	#&logthis("rndseed :$num:$symb");
1.564     albertel 6738: 	if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
1.366     albertel 6739: 	return "$num1,$num2";
1.155     albertel 6740:     }
1.366     albertel 6741: }
                   6742: 
1.443     albertel 6743: sub rndseed_64bit2 {
                   6744:     my ($symb,$courseid,$domain,$username)=@_;
                   6745:     {
                   6746: 	use integer;
                   6747: 	# strings need to be an even # of cahracters long, it it is odd the
                   6748:         # last characters gets thrown away
                   6749: 	my $symbchck=unpack("%32S*",$symb.' ') << 21;
                   6750: 	my $symbseed=numval($symb) << 10;
                   6751: 	my $namechck=unpack("%32S*",$username.' ');
                   6752: 	
                   6753: 	my $nameseed=numval($username) << 21;
1.501     albertel 6754: 	my $domainseed=unpack("%32S*",$domain.' ') << 10;
                   6755: 	my $courseseed=unpack("%32S*",$courseid.' ');
                   6756: 	
                   6757: 	my $num1=$symbchck+$symbseed+$namechck;
                   6758: 	my $num2=$nameseed+$domainseed+$courseseed;
1.790     albertel 6759: 	#&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
                   6760: 	#&logthis("rndseed :$num:$symb");
1.803     albertel 6761: 	if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
1.501     albertel 6762: 	return "$num1,$num2";
                   6763:     }
                   6764: }
                   6765: 
                   6766: sub rndseed_64bit3 {
                   6767:     my ($symb,$courseid,$domain,$username)=@_;
                   6768:     {
                   6769: 	use integer;
                   6770: 	# strings need to be an even # of cahracters long, it it is odd the
                   6771:         # last characters gets thrown away
                   6772: 	my $symbchck=unpack("%32S*",$symb.' ') << 21;
                   6773: 	my $symbseed=numval2($symb) << 10;
                   6774: 	my $namechck=unpack("%32S*",$username.' ');
                   6775: 	
                   6776: 	my $nameseed=numval2($username) << 21;
1.443     albertel 6777: 	my $domainseed=unpack("%32S*",$domain.' ') << 10;
                   6778: 	my $courseseed=unpack("%32S*",$courseid.' ');
                   6779: 	
                   6780: 	my $num1=$symbchck+$symbseed+$namechck;
                   6781: 	my $num2=$nameseed+$domainseed+$courseseed;
1.790     albertel 6782: 	#&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
                   6783: 	#&logthis("rndseed :$num1:$num2:$_64bit");
1.564     albertel 6784: 	if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
                   6785: 	
1.503     albertel 6786: 	return "$num1:$num2";
1.443     albertel 6787:     }
                   6788: }
                   6789: 
1.575     albertel 6790: sub rndseed_64bit4 {
                   6791:     my ($symb,$courseid,$domain,$username)=@_;
                   6792:     {
                   6793: 	use integer;
                   6794: 	# strings need to be an even # of cahracters long, it it is odd the
                   6795:         # last characters gets thrown away
                   6796: 	my $symbchck=unpack("%32S*",$symb.' ') << 21;
                   6797: 	my $symbseed=numval3($symb) << 10;
                   6798: 	my $namechck=unpack("%32S*",$username.' ');
                   6799: 	
                   6800: 	my $nameseed=numval3($username) << 21;
                   6801: 	my $domainseed=unpack("%32S*",$domain.' ') << 10;
                   6802: 	my $courseseed=unpack("%32S*",$courseid.' ');
                   6803: 	
                   6804: 	my $num1=$symbchck+$symbseed+$namechck;
                   6805: 	my $num2=$nameseed+$domainseed+$courseseed;
1.790     albertel 6806: 	#&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
                   6807: 	#&logthis("rndseed :$num1:$num2:$_64bit");
1.575     albertel 6808: 	if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
                   6809: 	
                   6810: 	return "$num1:$num2";
                   6811:     }
                   6812: }
                   6813: 
1.675     albertel 6814: sub rndseed_64bit5 {
                   6815:     my ($symb,$courseid,$domain,$username)=@_;
                   6816:     my ($num1,$num2)=&digest("$symb,$courseid,$domain,$username");
                   6817:     return "$num1:$num2";
                   6818: }
                   6819: 
1.366     albertel 6820: sub rndseed_CODE_64bit {
                   6821:     my ($symb,$courseid,$domain,$username)=@_;
1.155     albertel 6822:     {
1.366     albertel 6823: 	use integer;
1.443     albertel 6824: 	my $symbchck=unpack("%32S*",$symb.' ') << 16;
1.484     albertel 6825: 	my $symbseed=numval2($symb);
1.491     albertel 6826: 	my $CODEchck=unpack("%32S*",&getCODE().' ') << 16;
                   6827: 	my $CODEseed=numval(&getCODE());
1.443     albertel 6828: 	my $courseseed=unpack("%32S*",$courseid.' ');
1.484     albertel 6829: 	my $num1=$symbseed+$CODEchck;
                   6830: 	my $num2=$CODEseed+$courseseed+$symbchck;
1.790     albertel 6831: 	#&logthis("$symbseed:$CODEchck|$CODEseed:$courseseed:$symbchck");
                   6832: 	#&logthis("rndseed :$num1:$num2:$symb");
1.564     albertel 6833: 	if ($_64bit) { $num1=(($num1<<32)>>32); }
                   6834: 	if ($_64bit) { $num2=(($num2<<32)>>32); }
1.503     albertel 6835: 	return "$num1:$num2";
1.366     albertel 6836:     }
                   6837: }
                   6838: 
1.575     albertel 6839: sub rndseed_CODE_64bit4 {
                   6840:     my ($symb,$courseid,$domain,$username)=@_;
                   6841:     {
                   6842: 	use integer;
                   6843: 	my $symbchck=unpack("%32S*",$symb.' ') << 16;
                   6844: 	my $symbseed=numval3($symb);
                   6845: 	my $CODEchck=unpack("%32S*",&getCODE().' ') << 16;
                   6846: 	my $CODEseed=numval3(&getCODE());
                   6847: 	my $courseseed=unpack("%32S*",$courseid.' ');
                   6848: 	my $num1=$symbseed+$CODEchck;
                   6849: 	my $num2=$CODEseed+$courseseed+$symbchck;
1.790     albertel 6850: 	#&logthis("$symbseed:$CODEchck|$CODEseed:$courseseed:$symbchck");
                   6851: 	#&logthis("rndseed :$num1:$num2:$symb");
1.575     albertel 6852: 	if ($_64bit) { $num1=(($num1<<32)>>32); }
                   6853: 	if ($_64bit) { $num2=(($num2<<32)>>32); }
                   6854: 	return "$num1:$num2";
                   6855:     }
                   6856: }
                   6857: 
1.675     albertel 6858: sub rndseed_CODE_64bit5 {
                   6859:     my ($symb,$courseid,$domain,$username)=@_;
                   6860:     my $code = &getCODE();
                   6861:     my ($num1,$num2)=&digest("$symb,$courseid,$code");
                   6862:     return "$num1:$num2";
                   6863: }
                   6864: 
1.366     albertel 6865: sub setup_random_from_rndseed {
                   6866:     my ($rndseed)=@_;
1.503     albertel 6867:     if ($rndseed =~/([,:])/) {
                   6868: 	my ($num1,$num2)=split(/[,:]/,$rndseed);
1.366     albertel 6869: 	&Math::Random::random_set_seed(abs($num1),abs($num2));
                   6870:     } else {
                   6871: 	&Math::Random::random_set_seed_from_phrase($rndseed);
1.98      albertel 6872:     }
1.36      albertel 6873: }
                   6874: 
1.474     albertel 6875: sub latest_receipt_algorithm_id {
                   6876:     return 'receipt2';
                   6877: }
                   6878: 
1.480     www      6879: sub recunique {
                   6880:     my $fucourseid=shift;
                   6881:     my $unique;
1.620     albertel 6882:     if ($env{"course.$fucourseid.receiptalg"} eq 'receipt2') {
                   6883: 	$unique=$env{"course.$fucourseid.internal.encseed"};
1.480     www      6884:     } else {
                   6885: 	$unique=$perlvar{'lonReceipt'};
                   6886:     }
                   6887:     return unpack("%32C*",$unique);
                   6888: }
                   6889: 
                   6890: sub recprefix {
                   6891:     my $fucourseid=shift;
                   6892:     my $prefix;
1.620     albertel 6893:     if ($env{"course.$fucourseid.receiptalg"} eq 'receipt2') {
                   6894: 	$prefix=$env{"course.$fucourseid.internal.encpref"};
1.480     www      6895:     } else {
                   6896: 	$prefix=$perlvar{'lonHostID'};
                   6897:     }
                   6898:     return unpack("%32C*",$prefix);
                   6899: }
                   6900: 
1.76      www      6901: sub ireceipt {
1.474     albertel 6902:     my ($funame,$fudom,$fucourseid,$fusymb,$part)=@_;
1.76      www      6903:     my $cuname=unpack("%32C*",$funame);
                   6904:     my $cudom=unpack("%32C*",$fudom);
                   6905:     my $cucourseid=unpack("%32C*",$fucourseid);
                   6906:     my $cusymb=unpack("%32C*",$fusymb);
1.480     www      6907:     my $cunique=&recunique($fucourseid);
1.474     albertel 6908:     my $cpart=unpack("%32S*",$part);
1.480     www      6909:     my $return =&recprefix($fucourseid).'-';
1.620     albertel 6910:     if ($env{"course.$fucourseid.receiptalg"} eq 'receipt2' ||
                   6911: 	$env{'request.state'} eq 'construct') {
1.790     albertel 6912: 	#&logthis("doing receipt2  using parts $cpart, uname $cuname and udom $cudom gets  ".($cpart%$cuname)." and ".($cpart%$cudom));
1.474     albertel 6913: 			       
                   6914: 	$return.= ($cunique%$cuname+
                   6915: 		   $cunique%$cudom+
                   6916: 		   $cusymb%$cuname+
                   6917: 		   $cusymb%$cudom+
                   6918: 		   $cucourseid%$cuname+
                   6919: 		   $cucourseid%$cudom+
                   6920: 		   $cpart%$cuname+
                   6921: 		   $cpart%$cudom);
                   6922:     } else {
                   6923: 	$return.= ($cunique%$cuname+
                   6924: 		   $cunique%$cudom+
                   6925: 		   $cusymb%$cuname+
                   6926: 		   $cusymb%$cudom+
                   6927: 		   $cucourseid%$cuname+
                   6928: 		   $cucourseid%$cudom);
                   6929:     }
                   6930:     return $return;
1.76      www      6931: }
                   6932: 
                   6933: sub receipt {
1.474     albertel 6934:     my ($part)=@_;
1.790     albertel 6935:     my ($symb,$courseid,$domain,$name) = &whichuser();
1.474     albertel 6936:     return &ireceipt($name,$domain,$courseid,$symb,$part);
1.76      www      6937: }
1.260     ng       6938: 
1.790     albertel 6939: sub whichuser {
                   6940:     my ($passedsymb)=@_;
                   6941:     my ($symb,$courseid,$domain,$name,$publicuser);
                   6942:     if (defined($env{'form.grade_symb'})) {
                   6943: 	my ($tmp_courseid)=&get_env_multiple('form.grade_courseid');
                   6944: 	my $allowed=&allowed('vgr',$tmp_courseid);
                   6945: 	if (!$allowed &&
                   6946: 	    exists($env{'request.course.sec'}) &&
                   6947: 	    $env{'request.course.sec'} !~ /^\s*$/) {
                   6948: 	    $allowed=&allowed('vgr',$tmp_courseid.
                   6949: 			      '/'.$env{'request.course.sec'});
                   6950: 	}
                   6951: 	if ($allowed) {
                   6952: 	    ($symb)=&get_env_multiple('form.grade_symb');
                   6953: 	    $courseid=$tmp_courseid;
                   6954: 	    ($domain)=&get_env_multiple('form.grade_domain');
                   6955: 	    ($name)=&get_env_multiple('form.grade_username');
                   6956: 	    return ($symb,$courseid,$domain,$name,$publicuser);
                   6957: 	}
                   6958:     }
                   6959:     if (!$passedsymb) {
                   6960: 	$symb=&symbread();
                   6961:     } else {
                   6962: 	$symb=$passedsymb;
                   6963:     }
                   6964:     $courseid=$env{'request.course.id'};
                   6965:     $domain=$env{'user.domain'};
                   6966:     $name=$env{'user.name'};
                   6967:     if ($name eq 'public' && $domain eq 'public') {
                   6968: 	if (!defined($env{'form.username'})) {
                   6969: 	    $env{'form.username'}.=time.rand(10000000);
                   6970: 	}
                   6971: 	$name.=$env{'form.username'};
                   6972:     }
                   6973:     return ($symb,$courseid,$domain,$name,$publicuser);
                   6974: 
                   6975: }
                   6976: 
1.36      albertel 6977: # ------------------------------------------------------------ Serves up a file
1.472     albertel 6978: # returns either the contents of the file or 
                   6979: # -1 if the file doesn't exist
1.481     raeburn  6980: #
                   6981: # if the target is a file that was uploaded via DOCS, 
                   6982: # a check will be made to see if a current copy exists on the local server,
                   6983: # if it does this will be served, otherwise a copy will be retrieved from
                   6984: # the home server for the course and stored in /home/httpd/html/userfiles on
                   6985: # the local server.   
1.472     albertel 6986: 
1.36      albertel 6987: sub getfile {
1.538     albertel 6988:     my ($file) = @_;
1.609     banghart 6989:     if ($file =~ m -^/*(uploaded|editupload)/-) { $file=&filelocation("",$file); }
1.538     albertel 6990:     &repcopy($file);
                   6991:     return &readfile($file);
                   6992: }
                   6993: 
                   6994: sub repcopy_userfile {
                   6995:     my ($file)=@_;
1.609     banghart 6996:     if ($file =~ m -^/*(uploaded|editupload)/-) { $file=&filelocation("",$file); }
1.610     albertel 6997:     if ($file =~ m|^/home/httpd/html/lonUsers/|) { return 'ok'; }
1.538     albertel 6998:     my ($cdom,$cnum,$filename) = 
1.807     albertel 6999: 	($file=~m|^\Q$perlvar{'lonDocRoot'}\E/+userfiles/+($match_domain)/+($match_username)/+(.*)|);
1.538     albertel 7000:     my ($info,$rtncode);
                   7001:     my $uri="/uploaded/$cdom/$cnum/$filename";
                   7002:     if (-e "$file") {
                   7003: 	my @fileinfo = stat($file);
                   7004: 	my $lwpresp = &getuploaded('HEAD',$uri,$cdom,$cnum,\$info,\$rtncode);
1.482     albertel 7005: 	if ($lwpresp ne 'ok') {
                   7006: 	    if ($rtncode eq '404') {
1.538     albertel 7007: 		unlink($file);
1.482     albertel 7008: 	    }
1.517     albertel 7009: 	    #my $ua=new LWP::UserAgent;
1.538     albertel 7010: 	    #my $request=new HTTP::Request('GET',&tokenwrapper($uri));
1.517     albertel 7011: 	    #my $response=$ua->request($request);
                   7012: 	    #if ($response->is_success()) {
                   7013: 	#	return $response->content;
                   7014: 	#    } else {
                   7015: 	#	return -1;
                   7016: 	#    }
1.482     albertel 7017: 	    return -1;
                   7018: 	}
                   7019: 	if ($info < $fileinfo[9]) {
1.607     raeburn  7020: 	    return 'ok';
1.482     albertel 7021: 	}
                   7022: 	$info = '';
1.538     albertel 7023: 	$lwpresp = &getuploaded('GET',$uri,$cdom,$cnum,\$info,\$rtncode);
1.482     albertel 7024: 	if ($lwpresp ne 'ok') {
                   7025: 	    return -1;
                   7026: 	}
                   7027:     } else {
1.538     albertel 7028: 	my $lwpresp = &getuploaded('GET',$uri,$cdom,$cnum,\$info,\$rtncode);
1.482     albertel 7029: 	if ($lwpresp ne 'ok') {
1.517     albertel 7030: 	    my $ua=new LWP::UserAgent;
1.538     albertel 7031: 	    my $request=new HTTP::Request('GET',&tokenwrapper($uri));
1.517     albertel 7032: 	    my $response=$ua->request($request);
                   7033: 	    if ($response->is_success()) {
1.538     albertel 7034: 		$info=$response->content;
1.517     albertel 7035: 	    } else {
                   7036: 		return -1;
                   7037: 	    }
1.482     albertel 7038: 	}
                   7039: 	my @parts = ($cdom,$cnum); 
                   7040: 	if ($filename =~ m|^(.+)/[^/]+$|) {
                   7041: 	    push @parts, split(/\//,$1);
1.518     albertel 7042: 	}
1.538     albertel 7043: 	my $path = $perlvar{'lonDocRoot'}.'/userfiles';
1.482     albertel 7044: 	foreach my $part (@parts) {
                   7045: 	    $path .= '/'.$part;
                   7046: 	    if (!-e $path) {
                   7047: 		mkdir($path,0770);
                   7048: 	    }
                   7049: 	}
                   7050:     }
1.538     albertel 7051:     open(FILE,">$file");
1.482     albertel 7052:     print FILE $info;
                   7053:     close(FILE);
1.607     raeburn  7054:     return 'ok';
1.481     raeburn  7055: }
                   7056: 
1.517     albertel 7057: sub tokenwrapper {
                   7058:     my $uri=shift;
1.552     albertel 7059:     $uri=~s|^http\://([^/]+)||;
                   7060:     $uri=~s|^/||;
1.620     albertel 7061:     $env{'user.environment'}=~/\/([^\/]+)\.id/;
1.517     albertel 7062:     my $token=$1;
1.552     albertel 7063:     my (undef,$udom,$uname,$file)=split('/',$uri,4);
                   7064:     if ($udom && $uname && $file) {
                   7065: 	$file=~s|(\?\.*)*$||;
1.620     albertel 7066:         &appenv("userfile.$udom/$uname/$file" => $env{'request.course.id'});
1.552     albertel 7067:         return 'http://'.$hostname{ &homeserver($uname,$udom)}.'/'.$uri.
1.517     albertel 7068:                (($uri=~/\?/)?'&':'?').'token='.$token.
                   7069:                                '&tokenissued='.$perlvar{'lonHostID'};
                   7070:     } else {
                   7071:         return '/adm/notfound.html';
                   7072:     }
                   7073: }
                   7074: 
1.481     raeburn  7075: sub getuploaded {
                   7076:     my ($reqtype,$uri,$cdom,$cnum,$info,$rtncode) = @_;
                   7077:     $uri=~s/^\///;
                   7078:     $uri = 'http://'.$hostname{ &homeserver($cnum,$cdom)}.'/raw/'.$uri;
                   7079:     my $ua=new LWP::UserAgent;
                   7080:     my $request=new HTTP::Request($reqtype,$uri);
                   7081:     my $response=$ua->request($request);
                   7082:     $$rtncode = $response->code;
1.482     albertel 7083:     if (! $response->is_success()) {
                   7084: 	return 'failed';
                   7085:     }      
                   7086:     if ($reqtype eq 'HEAD') {
1.486     www      7087: 	$$info = &HTTP::Date::str2time( $response->header('Last-modified') );
1.482     albertel 7088:     } elsif ($reqtype eq 'GET') {
                   7089: 	$$info = $response->content;
1.472     albertel 7090:     }
1.482     albertel 7091:     return 'ok';
1.36      albertel 7092: }
                   7093: 
1.481     raeburn  7094: sub readfile {
                   7095:     my $file = shift;
                   7096:     if ( (! -e $file ) || ($file eq '') ) { return -1; };
                   7097:     my $fh;
                   7098:     open($fh,"<$file");
                   7099:     my $a='';
1.800     albertel 7100:     while (my $line = <$fh>) { $a .= $line; }
1.481     raeburn  7101:     return $a;
                   7102: }
                   7103: 
1.36      albertel 7104: sub filelocation {
1.590     banghart 7105:     my ($dir,$file) = @_;
                   7106:     my $location;
                   7107:     $file=~ s/^\s*(\S+)\s*$/$1/; ## strip off leading and trailing spaces
1.700     albertel 7108: 
                   7109:     if ($file =~ m-^/adm/-) {
                   7110: 	$file=~s-^/adm/wrapper/-/-;
                   7111: 	$file=~s-^/adm/coursedocs/showdoc/-/-;
                   7112:     }
1.590     banghart 7113:     if ($file=~m:^/~:) { # is a contruction space reference
                   7114:         $location = $file;
                   7115:         $location =~ s:/~(.*?)/(.*):/home/$1/public_html/$2:;
1.807     albertel 7116:     } elsif ($file=~m{^/home/$match_username/public_html/}) {
1.649     albertel 7117: 	# is a correct contruction space reference
                   7118:         $location = $file;
1.609     banghart 7119:     } elsif ($file=~/^\/*(uploaded|editupload)/) { # is an uploaded file
1.590     banghart 7120:         my ($udom,$uname,$filename)=
1.807     albertel 7121:   	    ($file=~m -^/+(?:uploaded|editupload)/+($match_domain)/+($match_username)/+(.*)$-);
1.590     banghart 7122:         my $home=&homeserver($uname,$udom);
                   7123:         my $is_me=0;
                   7124:         my @ids=&current_machine_ids();
                   7125:         foreach my $id (@ids) { if ($id eq $home) { $is_me=1; } }
                   7126:         if ($is_me) {
1.740     www      7127:   	    $location=&propath($udom,$uname).
1.590     banghart 7128:   	      '/userfiles/'.$filename;
                   7129:         } else {
                   7130:   	  $location=$Apache::lonnet::perlvar{'lonDocRoot'}.'/userfiles/'.
                   7131:   	      $udom.'/'.$uname.'/'.$filename;
                   7132:         }
                   7133:     } else {
                   7134:         $file=~s/^\Q$perlvar{'lonDocRoot'}\E//;
                   7135:         $file=~s:^/res/:/:;
                   7136:         if ( !( $file =~ m:^/:) ) {
                   7137:             $location = $dir. '/'.$file;
                   7138:         } else {
                   7139:             $location = '/home/httpd/html/res'.$file;
                   7140:         }
1.59      albertel 7141:     }
1.590     banghart 7142:     $location=~s://+:/:g; # remove duplicate /
                   7143:     while ($location=~m:/\.\./:) {$location=~ s:/[^/]+/\.\./:/:g;} #remove dir/..
                   7144:     while ($location=~m:/\./:) {$location=~ s:/\./:/:g;} #remove /./
                   7145:     return $location;
1.46      www      7146: }
1.36      albertel 7147: 
1.46      www      7148: sub hreflocation {
                   7149:     my ($dir,$file)=@_;
1.460     albertel 7150:     unless (($file=~m-^http://-i) || ($file=~m-^/-)) {
1.666     albertel 7151: 	$file=filelocation($dir,$file);
1.700     albertel 7152:     } elsif ($file=~m-^/adm/-) {
                   7153: 	$file=~s-^/adm/wrapper/-/-;
                   7154: 	$file=~s-^/adm/coursedocs/showdoc/-/-;
1.666     albertel 7155:     }
                   7156:     if ($file=~m-^\Q$perlvar{'lonDocRoot'}\E-) {
                   7157: 	$file=~s-^\Q$perlvar{'lonDocRoot'}\E--;
1.807     albertel 7158:     } elsif ($file=~m-/home/($match_username)/public_html/-) {
                   7159: 	$file=~s-^/home/($match_username)/public_html/-/~$1/-;
1.666     albertel 7160:     } elsif ($file=~m-^\Q$perlvar{'lonUsersDir'}\E-) {
1.807     albertel 7161: 	$file=~s-^/home/httpd/lonUsers/($match_domain)/./././($match_username)/userfiles/
1.666     albertel 7162: 	    -/uploaded/$1/$2/-x;
1.46      www      7163:     }
1.462     albertel 7164:     return $file;
1.465     albertel 7165: }
                   7166: 
                   7167: sub current_machine_domains {
                   7168:     my $hostname=$hostname{$perlvar{'lonHostID'}};
                   7169:     my @domains;
                   7170:     while( my($id, $name) = each(%hostname)) {
1.467     matthew  7171: #	&logthis("-$id-$name-$hostname-");
1.465     albertel 7172: 	if ($hostname eq $name) {
                   7173: 	    push(@domains,$hostdom{$id});
                   7174: 	}
                   7175:     }
                   7176:     return @domains;
                   7177: }
                   7178: 
                   7179: sub current_machine_ids {
                   7180:     my $hostname=$hostname{$perlvar{'lonHostID'}};
                   7181:     my @ids;
                   7182:     while( my($id, $name) = each(%hostname)) {
1.467     matthew  7183: #	&logthis("-$id-$name-$hostname-");
1.465     albertel 7184: 	if ($hostname eq $name) {
                   7185: 	    push(@ids,$id);
                   7186: 	}
                   7187:     }
                   7188:     return @ids;
1.31      www      7189: }
                   7190: 
                   7191: # ------------------------------------------------------------- Declutters URLs
                   7192: 
                   7193: sub declutter {
                   7194:     my $thisfn=shift;
1.569     albertel 7195:     if ($thisfn=~m|^/enc/|) { $thisfn=&Apache::lonenc::unencrypted($thisfn); }
1.479     albertel 7196:     $thisfn=~s/^\Q$perlvar{'lonDocRoot'}\E//;
1.31      www      7197:     $thisfn=~s/^\///;
1.697     albertel 7198:     $thisfn=~s|^adm/wrapper/||;
                   7199:     $thisfn=~s|^adm/coursedocs/showdoc/||;
1.31      www      7200:     $thisfn=~s/^res\///;
1.235     www      7201:     $thisfn=~s/\?.+$//;
1.268     www      7202:     return $thisfn;
                   7203: }
                   7204: 
                   7205: # ------------------------------------------------------------- Clutter up URLs
                   7206: 
                   7207: sub clutter {
                   7208:     my $thisfn='/'.&declutter(shift);
1.609     banghart 7209:     unless ($thisfn=~/^\/(uploaded|editupload|adm|userfiles|ext|raw|priv|public)\//) { 
1.270     www      7210:        $thisfn='/res'.$thisfn; 
                   7211:     }
1.694     albertel 7212:     if ($thisfn !~m|/adm|) {
1.695     albertel 7213: 	if ($thisfn =~ m|/ext/|) {
1.694     albertel 7214: 	    $thisfn='/adm/wrapper'.$thisfn;
1.695     albertel 7215: 	} else {
                   7216: 	    my ($ext) = ($thisfn =~ /\.(\w+)$/);
                   7217: 	    my $embstyle=&Apache::loncommon::fileembstyle($ext);
1.698     albertel 7218: 	    if ($embstyle eq 'ssi'
                   7219: 		|| ($embstyle eq 'hdn')
                   7220: 		|| ($embstyle eq 'rat')
                   7221: 		|| ($embstyle eq 'prv')
                   7222: 		|| ($embstyle eq 'ign')) {
                   7223: 		#do nothing with these
                   7224: 	    } elsif (($embstyle eq 'img') 
1.695     albertel 7225: 		|| ($embstyle eq 'emb')
                   7226: 		|| ($embstyle eq 'wrp')) {
                   7227: 		$thisfn='/adm/wrapper'.$thisfn;
1.698     albertel 7228: 	    } elsif ($embstyle eq 'unk'
                   7229: 		     && $thisfn!~/\.(sequence|page)$/) {
1.695     albertel 7230: 		$thisfn='/adm/coursedocs/showdoc'.$thisfn;
1.698     albertel 7231: 	    } else {
1.718     www      7232: #		&logthis("Got a blank emb style");
1.695     albertel 7233: 	    }
1.694     albertel 7234: 	}
                   7235:     }
1.31      www      7236:     return $thisfn;
1.12      www      7237: }
                   7238: 
1.787     albertel 7239: sub clutter_with_no_wrapper {
                   7240:     my $uri = &clutter(shift);
                   7241:     if ($uri =~ m-^/adm/-) {
                   7242: 	$uri =~ s-^/adm/wrapper/-/-;
                   7243: 	$uri =~ s-^/adm/coursedocs/showdoc/-/-;
                   7244:     }
                   7245:     return $uri;
                   7246: }
                   7247: 
1.557     albertel 7248: sub freeze_escape {
                   7249:     my ($value)=@_;
                   7250:     if (ref($value)) {
                   7251: 	$value=&nfreeze($value);
                   7252: 	return '__FROZEN__'.&escape($value);
                   7253:     }
                   7254:     return &escape($value);
                   7255: }
                   7256: 
1.11      www      7257: 
1.557     albertel 7258: sub thaw_unescape {
                   7259:     my ($value)=@_;
                   7260:     if ($value =~ /^__FROZEN__/) {
                   7261: 	substr($value,0,10,undef);
                   7262: 	$value=&unescape($value);
                   7263: 	return &thaw($value);
                   7264:     }
                   7265:     return &unescape($value);
                   7266: }
                   7267: 
1.436     albertel 7268: sub correct_line_ends {
                   7269:     my ($result)=@_;
                   7270:     $$result =~s/\r\n/\n/mg;
                   7271:     $$result =~s/\r/\n/mg;
1.415     albertel 7272: }
1.1       albertel 7273: # ================================================================ Main Program
                   7274: 
1.184     www      7275: sub goodbye {
1.204     albertel 7276:    &logthis("Starting Shut down");
1.443     albertel 7277: #not converted to using infrastruture and probably shouldn't be
1.599     albertel 7278:    &logthis(sprintf("%-20s is %s",'%badServerCache',length(&freeze(\%badServerCache))));
1.443     albertel 7279: #converted
1.599     albertel 7280: #   &logthis(sprintf("%-20s is %s",'%metacache',scalar(%metacache)));
                   7281:    &logthis(sprintf("%-20s is %s",'%homecache',length(&freeze(\%homecache))));
                   7282: #   &logthis(sprintf("%-20s is %s",'%titlecache',length(&freeze(\%titlecache))));
                   7283: #   &logthis(sprintf("%-20s is %s",'%courseresdatacache',length(&freeze(\%courseresdatacache))));
1.425     albertel 7284: #1.1 only
1.599     albertel 7285: #   &logthis(sprintf("%-20s is %s",'%userresdatacache',length(&freeze(\%userresdatacache))));
                   7286: #   &logthis(sprintf("%-20s is %s",'%getsectioncache',length(&freeze(\%getsectioncache))));
                   7287: #   &logthis(sprintf("%-20s is %s",'%courseresversioncache',length(&freeze(\%courseresversioncache))));
                   7288: #   &logthis(sprintf("%-20s is %s",'%resversioncache',length(&freeze(\%resversioncache))));
                   7289:    &logthis(sprintf("%-20s is %s",'%remembered',length(&freeze(\%remembered))));
                   7290:    &logthis(sprintf("%-20s is %s",'kicks',$kicks));
                   7291:    &logthis(sprintf("%-20s is %s",'hits',$hits));
1.184     www      7292:    &flushcourselogs();
                   7293:    &logthis("Shutting down");
                   7294: }
                   7295: 
1.179     www      7296: BEGIN {
1.228     harris41 7297: # ----------------------------------- Read loncapa.conf and loncapa_apache.conf
1.195     www      7298:     unless ($readit) {
1.217     harris41 7299: {
1.781     raeburn  7300:     my $configvars = LONCAPA::Configuration::read_conf('loncapa.conf');
                   7301:     %perlvar = (%perlvar,%{$configvars});
1.227     harris41 7302: }
1.1       albertel 7303: 
1.327     albertel 7304: # ------------------------------------------------------------ Read domain file
                   7305: {
                   7306:     %domaindescription = ();
                   7307:     %domain_auth_def = ();
                   7308:     %domain_auth_arg_def = ();
1.448     albertel 7309:     my $fh;
                   7310:     if (open($fh,"<".$Apache::lonnet::perlvar{'lonTabDir'}.'/domain.tab')) {
1.800     albertel 7311: 	while (my $line = <$fh>) {
                   7312:            next if ($line =~ /^(\#|\s*$)/);
1.390     matthew  7313: #           next if /^\#/;
1.801     foxr     7314:            chomp $line;
1.403     www      7315:            my ($domain, $domain_description, $def_auth, $def_auth_arg,
1.800     albertel 7316: 	       $def_lang, $city, $longi, $lati, $primary) = split(/:/,$line,9);
1.403     www      7317: 	   $domain_auth_def{$domain}=$def_auth;
1.327     albertel 7318:            $domain_auth_arg_def{$domain}=$def_auth_arg;
1.403     www      7319: 	   $domaindescription{$domain}=$domain_description;
                   7320: 	   $domain_lang_def{$domain}=$def_lang;
                   7321: 	   $domain_city{$domain}=$city;
                   7322: 	   $domain_longi{$domain}=$longi;
                   7323: 	   $domain_lati{$domain}=$lati;
1.685     raeburn  7324:            $domain_primary{$domain}=$primary;
1.403     www      7325: 
1.448     albertel 7326:  #         &logthis("Domain.tab: $domain, $domain_auth_def{$domain}, $domain_auth_arg_def{$domain},$domaindescription{$domain}");
1.327     albertel 7327: #          &logthis("Domain.tab: $domain ".$domaindescription{$domain} );
1.448     albertel 7328: 	}
1.327     albertel 7329:     }
1.448     albertel 7330:     close ($fh);
1.327     albertel 7331: }
                   7332: 
                   7333: 
1.1       albertel 7334: # ------------------------------------------------------------- Read hosts file
                   7335: {
1.448     albertel 7336:     open(my $config,"<$perlvar{'lonTabDir'}/hosts.tab");
1.1       albertel 7337: 
                   7338:     while (my $configline=<$config>) {
1.303     matthew  7339:        next if ($configline =~ /^(\#|\s*$)/);
1.154     www      7340:        chomp($configline);
1.595     albertel 7341:        my ($id,$domain,$role,$name)=split(/:/,$configline);
1.597     albertel 7342:        $name=~s/\s//g;
1.595     albertel 7343:        if ($id && $domain && $role && $name) {
1.252     albertel 7344: 	 $hostname{$id}=$name;
                   7345: 	 $hostdom{$id}=$domain;
                   7346: 	 if ($role eq 'library') { $libserv{$id}=$name; }
1.245     www      7347:        }
1.1       albertel 7348:     }
1.448     albertel 7349:     close($config);
1.619     albertel 7350:     # FIXME: dev server don't want this, production servers _do_ want this
1.654     albertel 7351:     #&get_iphost();
1.1       albertel 7352: }
                   7353: 
1.598     albertel 7354: sub get_iphost {
                   7355:     if (%iphost) { return %iphost; }
1.653     albertel 7356:     my %name_to_ip;
1.598     albertel 7357:     foreach my $id (keys(%hostname)) {
                   7358: 	my $name=$hostname{$id};
1.653     albertel 7359: 	my $ip;
                   7360: 	if (!exists($name_to_ip{$name})) {
                   7361: 	    $ip = gethostbyname($name);
                   7362: 	    if (!$ip || length($ip) ne 4) {
                   7363: 		&logthis("Skipping host $id name $name no IP found\n");
                   7364: 		next;
                   7365: 	    }
                   7366: 	    $ip=inet_ntoa($ip);
                   7367: 	    $name_to_ip{$name} = $ip;
                   7368: 	} else {
                   7369: 	    $ip = $name_to_ip{$name};
1.598     albertel 7370: 	}
                   7371: 	push(@{$iphost{$ip}},$id);
                   7372:     }
                   7373:     return %iphost;
                   7374: }
                   7375: 
1.1       albertel 7376: # ------------------------------------------------------ Read spare server file
                   7377: {
1.448     albertel 7378:     open(my $config,"<$perlvar{'lonTabDir'}/spare.tab");
1.1       albertel 7379: 
                   7380:     while (my $configline=<$config>) {
                   7381:        chomp($configline);
1.284     matthew  7382:        if ($configline) {
1.784     albertel 7383: 	   my ($host,$type) = split(':',$configline,2);
1.785     albertel 7384: 	   if (!defined($type) || $type eq '') { $type = 'default' };
1.784     albertel 7385: 	   push(@{ $spareid{$type} }, $host);
1.1       albertel 7386:        }
                   7387:     }
1.448     albertel 7388:     close($config);
1.1       albertel 7389: }
1.11      www      7390: # ------------------------------------------------------------ Read permissions
                   7391: {
1.448     albertel 7392:     open(my $config,"<$perlvar{'lonTabDir'}/roles.tab");
1.11      www      7393: 
                   7394:     while (my $configline=<$config>) {
1.448     albertel 7395: 	chomp($configline);
                   7396: 	if ($configline) {
                   7397: 	    my ($role,$perm)=split(/ /,$configline);
                   7398: 	    if ($perm ne '') { $pr{$role}=$perm; }
                   7399: 	}
1.11      www      7400:     }
1.448     albertel 7401:     close($config);
1.11      www      7402: }
                   7403: 
                   7404: # -------------------------------------------- Read plain texts for permissions
                   7405: {
1.448     albertel 7406:     open(my $config,"<$perlvar{'lonTabDir'}/rolesplain.tab");
1.11      www      7407: 
                   7408:     while (my $configline=<$config>) {
1.448     albertel 7409: 	chomp($configline);
                   7410: 	if ($configline) {
1.742     raeburn  7411: 	    my ($short,@plain)=split(/:/,$configline);
                   7412:             %{$prp{$short}} = ();
                   7413: 	    if (@plain > 0) {
                   7414:                 $prp{$short}{'std'} = $plain[0];
                   7415:                 for (my $i=1; $i<@plain; $i++) {
                   7416:                     $prp{$short}{'alt'.$i} = $plain[$i];  
                   7417:                 }
                   7418:             }
1.448     albertel 7419: 	}
1.135     www      7420:     }
1.448     albertel 7421:     close($config);
1.135     www      7422: }
                   7423: 
                   7424: # ---------------------------------------------------------- Read package table
                   7425: {
1.448     albertel 7426:     open(my $config,"<$perlvar{'lonTabDir'}/packages.tab");
1.135     www      7427: 
                   7428:     while (my $configline=<$config>) {
1.483     albertel 7429: 	if ($configline !~ /\S/ || $configline=~/^#/) { next; }
1.448     albertel 7430: 	chomp($configline);
                   7431: 	my ($short,$plain)=split(/:/,$configline);
                   7432: 	my ($pack,$name)=split(/\&/,$short);
                   7433: 	if ($plain ne '') {
                   7434: 	    $packagetab{$pack.'&'.$name.'&name'}=$name; 
                   7435: 	    $packagetab{$short}=$plain; 
                   7436: 	}
1.11      www      7437:     }
1.448     albertel 7438:     close($config);
1.329     matthew  7439: }
                   7440: 
                   7441: # ------------- set up temporary directory
                   7442: {
                   7443:     $tmpdir = $perlvar{'lonDaemons'}.'/tmp/';
                   7444: 
1.11      www      7445: }
                   7446: 
1.794     albertel 7447: $memcache=new Cache::Memcached({'servers'           => ['127.0.0.1:11211'],
                   7448: 				'compress_threshold'=> 20_000,
                   7449:  			        });
1.185     www      7450: 
1.281     www      7451: $processmarker='_'.time.'_'.$perlvar{'lonHostID'};
1.186     www      7452: $dumpcount=0;
1.22      www      7453: 
1.163     harris41 7454: &logtouch();
1.672     albertel 7455: &logthis('<font color="yellow">INFO: Read configuration</font>');
1.195     www      7456: $readit=1;
1.564     albertel 7457:     {
                   7458: 	use integer;
                   7459: 	my $test=(2**32)+1;
1.568     albertel 7460: 	if ($test != 0) { $_64bit=1; } else { $_64bit=0; }
1.564     albertel 7461: 	&logthis(" Detected 64bit platform ($_64bit)");
                   7462:     }
1.195     www      7463: }
1.1       albertel 7464: }
1.179     www      7465: 
1.1       albertel 7466: 1;
1.191     harris41 7467: __END__
                   7468: 
1.243     albertel 7469: =pod
                   7470: 
1.191     harris41 7471: =head1 NAME
                   7472: 
1.243     albertel 7473: Apache::lonnet - Subroutines to ask questions about things in the network.
1.191     harris41 7474: 
                   7475: =head1 SYNOPSIS
                   7476: 
1.243     albertel 7477: Invoked by other LON-CAPA modules, when they need to talk to or about objects in the network.
1.191     harris41 7478: 
                   7479:  &Apache::lonnet::SUBROUTINENAME(ARGUMENTS);
                   7480: 
1.243     albertel 7481: Common parameters:
                   7482: 
                   7483: =over 4
                   7484: 
                   7485: =item *
                   7486: 
                   7487: $uname : an internal username (if $cname expecting a course Id specifically)
                   7488: 
                   7489: =item *
                   7490: 
                   7491: $udom : a domain (if $cdom expecting a course's domain specifically)
                   7492: 
                   7493: =item *
                   7494: 
                   7495: $symb : a resource instance identifier
                   7496: 
                   7497: =item *
                   7498: 
                   7499: $namespace : the name of a .db file that contains the data needed or
                   7500: being set.
                   7501: 
                   7502: =back
                   7503: 
1.394     bowersj2 7504: =head1 OVERVIEW
1.191     harris41 7505: 
1.394     bowersj2 7506: lonnet provides subroutines which interact with the
                   7507: lonc/lond (TCP) network layer of LON-CAPA. They can be used to ask
                   7508: about classes, users, and resources.
1.243     albertel 7509: 
                   7510: For many of these objects you can also use this to store data about
                   7511: them or modify them in various ways.
1.191     harris41 7512: 
1.394     bowersj2 7513: =head2 Symbs
1.191     harris41 7514: 
1.394     bowersj2 7515: To identify a specific instance of a resource, LON-CAPA uses symbols
                   7516: or "symbs"X<symb>. These identifiers are built from the URL of the
                   7517: map, the resource number of the resource in the map, and the URL of
                   7518: the resource itself. The latter is somewhat redundant, but might help
                   7519: if maps change.
                   7520: 
                   7521: An example is
                   7522: 
                   7523:  msu/korte/parts/part1.sequence___19___msu/korte/tests/part12.problem
                   7524: 
                   7525: The respective map entry is
                   7526: 
                   7527:  <resource id="19" src="/res/msu/korte/tests/part12.problem"
                   7528:   title="Problem 2">
                   7529:  </resource>
                   7530: 
                   7531: Symbs are used by the random number generator, as well as to store and
                   7532: restore data specific to a certain instance of for example a problem.
                   7533: 
                   7534: =head2 Storing And Retrieving Data
                   7535: 
                   7536: X<store()>X<cstore()>X<restore()>Three of the most important functions
                   7537: in C<lonnet.pm> are C<&Apache::lonnet::cstore()>,
                   7538: C<&Apache::lonnet:restore()>, and C<&Apache::lonnet::store()>, which
                   7539: is is the non-critical message twin of cstore. These functions are for
                   7540: handlers to store a perl hash to a user's permanent data space in an
                   7541: easy manner, and to retrieve it again on another call. It is expected
                   7542: that a handler would use this once at the beginning to retrieve data,
                   7543: and then again once at the end to send only the new data back.
                   7544: 
                   7545: The data is stored in the user's data directory on the user's
                   7546: homeserver under the ID of the course.
                   7547: 
                   7548: The hash that is returned by restore will have all of the previous
                   7549: value for all of the elements of the hash.
                   7550: 
                   7551: Example:
                   7552: 
                   7553:  #creating a hash
                   7554:  my %hash;
                   7555:  $hash{'foo'}='bar';
                   7556: 
                   7557:  #storing it
                   7558:  &Apache::lonnet::cstore(\%hash);
                   7559: 
                   7560:  #changing a value
                   7561:  $hash{'foo'}='notbar';
                   7562: 
                   7563:  #adding a new value
                   7564:  $hash{'bar'}='foo';
                   7565:  &Apache::lonnet::cstore(\%hash);
                   7566: 
                   7567:  #retrieving the hash
                   7568:  my %history=&Apache::lonnet::restore();
                   7569: 
                   7570:  #print the hash
                   7571:  foreach my $key (sort(keys(%history))) {
                   7572:    print("\%history{$key} = $history{$key}");
                   7573:  }
                   7574: 
                   7575: Will print out:
1.191     harris41 7576: 
1.394     bowersj2 7577:  %history{1:foo} = bar
                   7578:  %history{1:keys} = foo:timestamp
                   7579:  %history{1:timestamp} = 990455579
                   7580:  %history{2:bar} = foo
                   7581:  %history{2:foo} = notbar
                   7582:  %history{2:keys} = foo:bar:timestamp
                   7583:  %history{2:timestamp} = 990455580
                   7584:  %history{bar} = foo
                   7585:  %history{foo} = notbar
                   7586:  %history{timestamp} = 990455580
                   7587:  %history{version} = 2
                   7588: 
                   7589: Note that the special hash entries C<keys>, C<version> and
                   7590: C<timestamp> were added to the hash. C<version> will be equal to the
                   7591: total number of versions of the data that have been stored. The
                   7592: C<timestamp> attribute will be the UNIX time the hash was
                   7593: stored. C<keys> is available in every historical section to list which
                   7594: keys were added or changed at a specific historical revision of a
                   7595: hash.
                   7596: 
                   7597: B<Warning>: do not store the hash that restore returns directly. This
                   7598: will cause a mess since it will restore the historical keys as if the
                   7599: were new keys. I.E. 1:foo will become 1:1:foo etc.
1.191     harris41 7600: 
1.394     bowersj2 7601: Calling convention:
1.191     harris41 7602: 
1.394     bowersj2 7603:  my %record=&Apache::lonnet::restore($symb,$courseid,$domain,$uname,$home);
                   7604:  &Apache::lonnet::cstore(\%newrecord,$symb,$courseid,$domain,$uname,$home);
1.191     harris41 7605: 
1.394     bowersj2 7606: For more detailed information, see lonnet specific documentation.
1.191     harris41 7607: 
1.394     bowersj2 7608: =head1 RETURN MESSAGES
1.191     harris41 7609: 
1.394     bowersj2 7610: =over 4
1.191     harris41 7611: 
1.394     bowersj2 7612: =item * B<con_lost>: unable to contact remote host
1.191     harris41 7613: 
1.394     bowersj2 7614: =item * B<con_delayed>: unable to contact remote host, message will be delivered
                   7615: when the connection is brought back up
1.191     harris41 7616: 
1.394     bowersj2 7617: =item * B<con_failed>: unable to contact remote host and unable to save message
                   7618: for later delivery
1.191     harris41 7619: 
1.394     bowersj2 7620: =item * B<error:>: an error a occured, a description of the error follows the :
1.191     harris41 7621: 
1.394     bowersj2 7622: =item * B<no_such_host>: unable to fund a host associated with the user/domain
1.243     albertel 7623: that was requested
1.191     harris41 7624: 
1.243     albertel 7625: =back
1.191     harris41 7626: 
1.243     albertel 7627: =head1 PUBLIC SUBROUTINES
1.191     harris41 7628: 
1.243     albertel 7629: =head2 Session Environment Functions
1.191     harris41 7630: 
1.243     albertel 7631: =over 4
1.191     harris41 7632: 
1.394     bowersj2 7633: =item * 
                   7634: X<appenv()>
                   7635: B<appenv(%hash)>: the value of %hash is written to
                   7636: the user envirnoment file, and will be restored for each access this
1.620     albertel 7637: user makes during this session, also modifies the %env for the current
1.394     bowersj2 7638: process
1.191     harris41 7639: 
                   7640: =item *
1.394     bowersj2 7641: X<delenv()>
                   7642: B<delenv($regexp)>: removes all items from the session
                   7643: environment file that matches the regular expression in $regexp. The
1.620     albertel 7644: values are also delted from the current processes %env.
1.191     harris41 7645: 
1.795     albertel 7646: =item * get_env_multiple($name) 
                   7647: 
                   7648: gets $name from the %env hash, it seemlessly handles the cases where multiple
                   7649: values may be defined and end up as an array ref.
                   7650: 
                   7651: returns an array of values
                   7652: 
1.243     albertel 7653: =back
                   7654: 
                   7655: =head2 User Information
1.191     harris41 7656: 
1.243     albertel 7657: =over 4
1.191     harris41 7658: 
                   7659: =item *
1.394     bowersj2 7660: X<queryauthenticate()>
                   7661: B<queryauthenticate($uname,$udom)>: try to determine user's current 
1.191     harris41 7662: authentication scheme
                   7663: 
                   7664: =item *
1.394     bowersj2 7665: X<authenticate()>
                   7666: B<authenticate($uname,$upass,$udom)>: try to
                   7667: authenticate user from domain's lib servers (first use the current
                   7668: one). C<$upass> should be the users password.
1.191     harris41 7669: 
                   7670: =item *
1.394     bowersj2 7671: X<homeserver()>
                   7672: B<homeserver($uname,$udom)>: find the server which has
                   7673: the user's directory and files (there must be only one), this caches
                   7674: the answer, and also caches if there is a borken connection.
1.191     harris41 7675: 
                   7676: =item *
1.394     bowersj2 7677: X<idget()>
                   7678: B<idget($udom,@ids)>: find the usernames behind a list of IDs
                   7679: (IDs are a unique resource in a domain, there must be only 1 ID per
                   7680: username, and only 1 username per ID in a specific domain) (returns
                   7681: hash: id=>name,id=>name)
1.191     harris41 7682: 
                   7683: =item *
1.394     bowersj2 7684: X<idrget()>
                   7685: B<idrget($udom,@unames)>: find the IDs behind a list of
                   7686: usernames (returns hash: name=>id,name=>id)
1.191     harris41 7687: 
                   7688: =item *
1.394     bowersj2 7689: X<idput()>
                   7690: B<idput($udom,%ids)>: store away a list of names and associated IDs
1.191     harris41 7691: 
                   7692: =item *
1.394     bowersj2 7693: X<rolesinit()>
                   7694: B<rolesinit($udom,$username,$authhost)>: get user privileges
1.243     albertel 7695: 
                   7696: =item *
1.551     albertel 7697: X<getsection()>
                   7698: B<getsection($udom,$uname,$cname)>: finds the section of student in the
1.243     albertel 7699: course $cname, return section name/number or '' for "not in course"
                   7700: and '-1' for "no section"
                   7701: 
                   7702: =item *
1.394     bowersj2 7703: X<userenvironment()>
                   7704: B<userenvironment($udom,$uname,@what)>: gets the values of the keys
1.243     albertel 7705: passed in @what from the requested user's environment, returns a hash
                   7706: 
                   7707: =back
                   7708: 
                   7709: =head2 User Roles
                   7710: 
                   7711: =over 4
                   7712: 
                   7713: =item *
                   7714: 
                   7715: allowed($priv,$uri) : check for a user privilege; returns codes for allowed
                   7716: actions
                   7717:  F: full access
                   7718:  U,I,K: authentication modes (cxx only)
                   7719:  '': forbidden
                   7720:  1: user needs to choose course
                   7721:  2: browse allowed
1.766     albertel 7722:  A: passphrase authentication needed
1.243     albertel 7723: 
                   7724: =item *
                   7725: 
                   7726: definerole($rolename,$sysrole,$domrole,$courole) : define role; define a custom
                   7727: role rolename set privileges in format of lonTabs/roles.tab for system, domain,
                   7728: and course level
                   7729: 
                   7730: =item *
                   7731: 
                   7732: plaintext($short) : return value in %prp hash (rolesplain.tab); plain text
                   7733: explanation of a user role term
                   7734: 
                   7735: =back
                   7736: 
                   7737: =head2 User Modification
                   7738: 
                   7739: =over 4
                   7740: 
                   7741: =item *
                   7742: 
                   7743: assignrole($udom,$uname,$url,$role,$end,$start) : assign role; give a role to a
                   7744: user for the level given by URL.  Optional start and end dates (leave empty
                   7745: string or zero for "no date")
1.191     harris41 7746: 
                   7747: =item *
                   7748: 
1.243     albertel 7749: changepass($uname,$udom,$currentpass,$newpass,$server) : attempts to
                   7750: change a users, password, possible return values are: ok,
                   7751: pwchange_failure, non_authorized, auth_mode_error, unknown_user,
                   7752: refused
1.191     harris41 7753: 
                   7754: =item *
                   7755: 
1.243     albertel 7756: modifyuserauth($udom,$uname,$umode,$upass) : modify user authentication
1.191     harris41 7757: 
                   7758: =item *
                   7759: 
1.243     albertel 7760: modifyuser($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene) : 
                   7761: modify user
1.191     harris41 7762: 
                   7763: =item *
                   7764: 
1.286     matthew  7765: modifystudent
                   7766: 
                   7767: modify a students enrollment and identification information.
                   7768: The course id is resolved based on the current users environment.  
                   7769: This means the envoking user must be a course coordinator or otherwise
                   7770: associated with a course.
                   7771: 
1.297     matthew  7772: This call is essentially a wrapper for lonnet::modifyuser and
                   7773: lonnet::modify_student_enrollment
1.286     matthew  7774: 
                   7775: Inputs: 
                   7776: 
                   7777: =over 4
                   7778: 
                   7779: =item B<$udom> Students loncapa domain
                   7780: 
                   7781: =item B<$uname> Students loncapa login name
                   7782: 
                   7783: =item B<$uid> Students id/student number
                   7784: 
                   7785: =item B<$umode> Students authentication mode
                   7786: 
                   7787: =item B<$upass> Students password
                   7788: 
                   7789: =item B<$first> Students first name
                   7790: 
                   7791: =item B<$middle> Students middle name
                   7792: 
                   7793: =item B<$last> Students last name
                   7794: 
                   7795: =item B<$gene> Students generation
                   7796: 
                   7797: =item B<$usec> Students section in course
                   7798: 
                   7799: =item B<$end> Unix time of the roles expiration
                   7800: 
                   7801: =item B<$start> Unix time of the roles start date
                   7802: 
                   7803: =item B<$forceid> If defined, allow $uid to be changed
                   7804: 
                   7805: =item B<$desiredhome> server to use as home server for student
                   7806: 
                   7807: =back
1.297     matthew  7808: 
                   7809: =item *
                   7810: 
                   7811: modify_student_enrollment
                   7812: 
                   7813: Change a students enrollment status in a class.  The environment variable
                   7814: 'role.request.course' must be defined for this function to proceed.
                   7815: 
                   7816: Inputs:
                   7817: 
                   7818: =over 4
                   7819: 
                   7820: =item $udom, students domain
                   7821: 
                   7822: =item $uname, students name
                   7823: 
                   7824: =item $uid, students user id
                   7825: 
                   7826: =item $first, students first name
                   7827: 
                   7828: =item $middle
                   7829: 
                   7830: =item $last
                   7831: 
                   7832: =item $gene
                   7833: 
                   7834: =item $usec
                   7835: 
                   7836: =item $end
                   7837: 
                   7838: =item $start
                   7839: 
                   7840: =back
                   7841: 
1.191     harris41 7842: 
                   7843: =item *
                   7844: 
1.243     albertel 7845: assigncustomrole($udom,$uname,$url,$rdom,$rnam,$rolename,$end,$start) : assign
                   7846: custom role; give a custom role to a user for the level given by URL.  Specify
                   7847: name and domain of role author, and role name
1.191     harris41 7848: 
                   7849: =item *
                   7850: 
1.243     albertel 7851: revokerole($udom,$uname,$url,$role) : revoke a role for url
1.191     harris41 7852: 
                   7853: =item *
                   7854: 
1.243     albertel 7855: revokecustomrole($udom,$uname,$url,$role) : revoke a custom role
                   7856: 
                   7857: =back
                   7858: 
                   7859: =head2 Course Infomation
                   7860: 
                   7861: =over 4
1.191     harris41 7862: 
                   7863: =item *
                   7864: 
1.631     albertel 7865: coursedescription($courseid) : returns a hash of information about the
                   7866: specified course id, including all environment settings for the
                   7867: course, the description of the course will be in the hash under the
                   7868: key 'description'
1.191     harris41 7869: 
                   7870: =item *
                   7871: 
1.624     albertel 7872: resdata($name,$domain,$type,@which) : request for current parameter
                   7873: setting for a specific $type, where $type is either 'course' or 'user',
                   7874: @what should be a list of parameters to ask about. This routine caches
                   7875: answers for 5 minutes.
1.243     albertel 7876: 
                   7877: =back
                   7878: 
                   7879: =head2 Course Modification
                   7880: 
                   7881: =over 4
1.191     harris41 7882: 
                   7883: =item *
                   7884: 
1.243     albertel 7885: writecoursepref($courseid,%prefs) : write preferences (environment
                   7886: database) for a course
1.191     harris41 7887: 
                   7888: =item *
                   7889: 
1.243     albertel 7890: createcourse($udom,$description,$url) : make/modify course
                   7891: 
                   7892: =back
                   7893: 
                   7894: =head2 Resource Subroutines
                   7895: 
                   7896: =over 4
1.191     harris41 7897: 
                   7898: =item *
                   7899: 
1.243     albertel 7900: subscribe($fname) : subscribe to a resource, returns URL if possible (probably should use repcopy instead)
1.191     harris41 7901: 
                   7902: =item *
                   7903: 
1.243     albertel 7904: repcopy($filename) : subscribes to the requested file, and attempts to
                   7905: replicate from the owning library server, Might return
1.607     raeburn  7906: 'unavailable', 'not_found', 'forbidden', 'ok', or
                   7907: 'bad_request', also attempts to grab the metadata for the
1.243     albertel 7908: resource. Expects the local filesystem pathname
                   7909: (/home/httpd/html/res/....)
                   7910: 
                   7911: =back
                   7912: 
                   7913: =head2 Resource Information
                   7914: 
                   7915: =over 4
1.191     harris41 7916: 
                   7917: =item *
                   7918: 
1.243     albertel 7919: EXT($varname,$symb,$udom,$uname) : evaluates and returns the value of
                   7920: a vairety of different possible values, $varname should be a request
                   7921: string, and the other parameters can be used to specify who and what
                   7922: one is asking about.
                   7923: 
                   7924: Possible values for $varname are environment.lastname (or other item
                   7925: from the envirnment hash), user.name (or someother aspect about the
                   7926: user), resource.0.maxtries (or some other part and parameter of a
                   7927: resource)
1.204     albertel 7928: 
                   7929: =item *
                   7930: 
1.243     albertel 7931: directcondval($number) : get current value of a condition; reads from a state
                   7932: string
1.204     albertel 7933: 
                   7934: =item *
                   7935: 
1.243     albertel 7936: condval($condidx) : value of condition index based on state
1.204     albertel 7937: 
                   7938: =item *
                   7939: 
1.243     albertel 7940: metadata($uri,$what,$liburi,$prefix,$depthcount) : request a
                   7941: resource's metadata, $what should be either a specific key, or either
                   7942: 'keys' (to get a list of possible keys) or 'packages' to get a list of
                   7943: packages that this resource currently uses, the last 3 arguments are only used internally for recursive metadata.
                   7944: 
                   7945: this function automatically caches all requests
1.191     harris41 7946: 
                   7947: =item *
                   7948: 
1.243     albertel 7949: metadata_query($query,$custom,$customshow) : make a metadata query against the
                   7950: network of library servers; returns file handle of where SQL and regex results
                   7951: will be stored for query
1.191     harris41 7952: 
                   7953: =item *
                   7954: 
1.243     albertel 7955: symbread($filename) : return symbolic list entry (filename argument optional);
                   7956: returns the data handle
1.191     harris41 7957: 
                   7958: =item *
                   7959: 
1.243     albertel 7960: symbverify($symb,$thisfn) : verifies that $symb actually exists and is
1.582     albertel 7961: a possible symb for the URL in $thisfn, and if is an encryypted
                   7962: resource that the user accessed using /enc/ returns a 1 on success, 0
                   7963: on failure, user must be in a course, as it assumes the existance of
1.620     albertel 7964: the course initial hash, and uses $env('request.course.id'}
1.243     albertel 7965: 
1.191     harris41 7966: 
                   7967: =item *
                   7968: 
1.243     albertel 7969: symbclean($symb) : removes versions numbers from a symb, returns the
                   7970: cleaned symb
1.191     harris41 7971: 
                   7972: =item *
                   7973: 
1.243     albertel 7974: is_on_map($uri) : checks if the $uri is somewhere on the current
                   7975: course map, user must be in a course for it to work.
1.191     harris41 7976: 
                   7977: =item *
                   7978: 
1.243     albertel 7979: numval($salt) : return random seed value (addend for rndseed)
1.191     harris41 7980: 
                   7981: =item *
                   7982: 
1.243     albertel 7983: rndseed($symb,$courseid,$udom,$uname) : create a random sum; returns
                   7984: a random seed, all arguments are optional, if they aren't sent it uses the
                   7985: environment to derive them. Note: if symb isn't sent and it can't get one
                   7986: from &symbread it will use the current time as its return value
1.191     harris41 7987: 
                   7988: =item *
                   7989: 
1.243     albertel 7990: ireceipt($funame,$fudom,$fucourseid,$fusymb) : return unique,
                   7991: unfakeable, receipt
1.191     harris41 7992: 
                   7993: =item *
                   7994: 
1.620     albertel 7995: receipt() : API to ireceipt working off of env values; given out to users
1.191     harris41 7996: 
                   7997: =item *
                   7998: 
1.243     albertel 7999: countacc($url) : count the number of accesses to a given URL
1.191     harris41 8000: 
                   8001: =item *
                   8002: 
1.243     albertel 8003: checkout($symb,$tuname,$tudom,$tcrsid) :  creates a record of a user having looked at an item, most likely printed out or otherwise using a resource
1.191     harris41 8004: 
                   8005: =item *
                   8006: 
1.243     albertel 8007: checkin($token) : updates that a resource has beeen returned (a hard copy version for instance) and returns the data that $token was Checkout with ($symb, $tuname, $tudom, and $tcrsid)
1.191     harris41 8008: 
                   8009: =item *
                   8010: 
1.243     albertel 8011: expirespread($uname,$udom,$stype,$usymb) : set expire date for spreadsheet
1.191     harris41 8012: 
                   8013: =item *
                   8014: 
1.243     albertel 8015: devalidate($symb) : devalidate temporary spreadsheet calculations,
                   8016: forcing spreadsheet to reevaluate the resource scores next time.
                   8017: 
                   8018: =back
                   8019: 
                   8020: =head2 Storing/Retreiving Data
                   8021: 
                   8022: =over 4
1.191     harris41 8023: 
                   8024: =item *
                   8025: 
1.243     albertel 8026: store($storehash,$symb,$namespace,$udom,$uname) : stores hash permanently
                   8027: for this url; hashref needs to be given and should be a \%hashname; the
                   8028: remaining args aren't required and if they aren't passed or are '' they will
1.620     albertel 8029: be derived from the env
1.191     harris41 8030: 
                   8031: =item *
                   8032: 
1.243     albertel 8033: cstore($storehash,$symb,$namespace,$udom,$uname) : same as store but
                   8034: uses critical subroutine
1.191     harris41 8035: 
                   8036: =item *
                   8037: 
1.243     albertel 8038: restore($symb,$namespace,$udom,$uname) : returns hash for this symb;
                   8039: all args are optional
1.191     harris41 8040: 
                   8041: =item *
                   8042: 
1.717     albertel 8043: dumpstore($namespace,$udom,$uname,$regexp,$range) : 
                   8044: dumps the complete (or key matching regexp) namespace into a hash
                   8045: ($udom, $uname, $regexp, $range are optional) for a namespace that is
                   8046: normally &store()ed into
                   8047: 
                   8048: $range should be either an integer '100' (give me the first 100
                   8049:                                            matching records)
                   8050:               or be  two integers sperated by a - with no spaces
                   8051:                  '30-50' (give me the 30th through the 50th matching
                   8052:                           records)
                   8053: 
                   8054: 
                   8055: =item *
                   8056: 
                   8057: putstore($namespace,$symb,$version,$storehash,$udomain,$uname) :
                   8058: replaces a &store() version of data with a replacement set of data
                   8059: for a particular resource in a namespace passed in the $storehash hash 
                   8060: reference
                   8061: 
                   8062: =item *
                   8063: 
1.243     albertel 8064: tmpstore($storehash,$symb,$namespace,$udom,$uname) : storage that
                   8065: works very similar to store/cstore, but all data is stored in a
                   8066: temporary location and can be reset using tmpreset, $storehash should
                   8067: be a hash reference, returns nothing on success
1.191     harris41 8068: 
                   8069: =item *
                   8070: 
1.243     albertel 8071: tmprestore($symb,$namespace,$udom,$uname) : storage that works very
                   8072: similar to restore, but all data is stored in a temporary location and
                   8073: can be reset using tmpreset. Returns a hash of values on success,
                   8074: error string otherwise.
1.191     harris41 8075: 
                   8076: =item *
                   8077: 
1.243     albertel 8078: tmpreset($symb,$namespace,$udom,$uname) : temporary storage reset,
                   8079: deltes all keys for $symb form the temporary storage hash.
1.191     harris41 8080: 
                   8081: =item *
                   8082: 
1.243     albertel 8083: get($namespace,$storearr,$udom,$uname) : returns hash with keys from array
                   8084: reference filled in from namesp ($udom and $uname are optional)
1.191     harris41 8085: 
                   8086: =item *
                   8087: 
1.243     albertel 8088: del($namespace,$storearr,$udom,$uname) : deletes keys out of array from
                   8089: namesp ($udom and $uname are optional)
1.191     harris41 8090: 
                   8091: =item *
                   8092: 
1.702     albertel 8093: dump($namespace,$udom,$uname,$regexp,$range) : 
1.243     albertel 8094: dumps the complete (or key matching regexp) namespace into a hash
1.702     albertel 8095: ($udom, $uname, $regexp, $range are optional)
1.449     matthew  8096: 
1.702     albertel 8097: $range should be either an integer '100' (give me the first 100
                   8098:                                            matching records)
                   8099:               or be  two integers sperated by a - with no spaces
                   8100:                  '30-50' (give me the 30th through the 50th matching
                   8101:                           records)
1.449     matthew  8102: =item *
                   8103: 
                   8104: inc($namespace,$store,$udom,$uname) : increments $store in $namespace.
                   8105: $store can be a scalar, an array reference, or if the amount to be 
                   8106: incremented is > 1, a hash reference.
                   8107: 
                   8108: ($udom and $uname are optional)
1.191     harris41 8109: 
                   8110: =item *
                   8111: 
1.243     albertel 8112: put($namespace,$storehash,$udom,$uname) : stores hash in namesp
                   8113: ($udom and $uname are optional)
1.191     harris41 8114: 
                   8115: =item *
                   8116: 
1.243     albertel 8117: cput($namespace,$storehash,$udom,$uname) : critical put
                   8118: ($udom and $uname are optional)
1.191     harris41 8119: 
                   8120: =item *
                   8121: 
1.748     albertel 8122: newput($namespace,$storehash,$udom,$uname) :
                   8123: 
                   8124: Attempts to store the items in the $storehash, but only if they don't
                   8125: currently exist, if this succeeds you can be certain that you have 
                   8126: successfully created a new key value pair in the $namespace db.
                   8127: 
                   8128: 
                   8129: Args:
                   8130:  $namespace: name of database to store values to
                   8131:  $storehash: hashref to store to the db
                   8132:  $udom: (optional) domain of user containing the db
                   8133:  $uname: (optional) name of user caontaining the db
                   8134: 
                   8135: Returns:
                   8136:  'ok' -> succeeded in storing all keys of $storehash
                   8137:  'key_exists: <key>' -> failed to anything out of $storehash, as at
                   8138:                         least <key> already existed in the db (other
                   8139:                         requested keys may also already exist)
                   8140:  'error: <msg>' -> unable to tie the DB or other erorr occured
                   8141:  'con_lost' -> unable to contact request server
                   8142:  'refused' -> action was not allowed by remote machine
                   8143: 
                   8144: 
                   8145: =item *
                   8146: 
1.243     albertel 8147: eget($namespace,$storearr,$udom,$uname) : returns hash with keys from array
                   8148: reference filled in from namesp (encrypts the return communication)
                   8149: ($udom and $uname are optional)
1.191     harris41 8150: 
                   8151: =item *
                   8152: 
1.243     albertel 8153: log($udom,$name,$home,$message) : write to permanent log for user; use
                   8154: critical subroutine
                   8155: 
1.806     raeburn  8156: =item *
                   8157: 
                   8158: get_dom($namespace,$storearr,$udomain) : returns hash with keys from array
                   8159: reference filled in from namespace found in domain level on primary domain server ($udomain is optional)
                   8160: 
                   8161: =item *
                   8162: 
                   8163: put_dom($namespace,$storehash,$udomain) :  stores hash in namespace at domain level on primary domain server ($udomain is optional)
                   8164: 
1.243     albertel 8165: =back
                   8166: 
                   8167: =head2 Network Status Functions
                   8168: 
                   8169: =over 4
1.191     harris41 8170: 
                   8171: =item *
                   8172: 
                   8173: dirlist($uri) : return directory list based on URI
                   8174: 
                   8175: =item *
                   8176: 
1.243     albertel 8177: spareserver() : find server with least workload from spare.tab
                   8178: 
                   8179: =back
                   8180: 
                   8181: =head2 Apache Request
                   8182: 
                   8183: =over 4
1.191     harris41 8184: 
                   8185: =item *
                   8186: 
1.243     albertel 8187: ssi($url,%hash) : server side include, does a complete request cycle on url to
                   8188: localhost, posts hash
                   8189: 
                   8190: =back
                   8191: 
                   8192: =head2 Data to String to Data
                   8193: 
                   8194: =over 4
1.191     harris41 8195: 
                   8196: =item *
                   8197: 
1.243     albertel 8198: hash2str(%hash) : convert a hash into a string complete with escaping and '='
                   8199: and '&' separators, supports elements that are arrayrefs and hashrefs
1.191     harris41 8200: 
                   8201: =item *
                   8202: 
1.243     albertel 8203: hashref2str($hashref) : convert a hashref into a string complete with
                   8204: escaping and '=' and '&' separators, supports elements that are
                   8205: arrayrefs and hashrefs
1.191     harris41 8206: 
                   8207: =item *
                   8208: 
1.243     albertel 8209: arrayref2str($arrayref) : convert an arrayref into a string complete
                   8210: with escaping and '&' separators, supports elements that are arrayrefs
                   8211: and hashrefs
1.191     harris41 8212: 
                   8213: =item *
                   8214: 
1.243     albertel 8215: str2hash($string) : convert string to hash using unescaping and
                   8216: splitting on '=' and '&', supports elements that are arrayrefs and
                   8217: hashrefs
1.191     harris41 8218: 
                   8219: =item *
                   8220: 
1.243     albertel 8221: str2array($string) : convert string to hash using unescaping and
                   8222: splitting on '&', supports elements that are arrayrefs and hashrefs
                   8223: 
                   8224: =back
                   8225: 
                   8226: =head2 Logging Routines
                   8227: 
                   8228: =over 4
                   8229: 
                   8230: These routines allow one to make log messages in the lonnet.log and
                   8231: lonnet.perm logfiles.
1.191     harris41 8232: 
                   8233: =item *
                   8234: 
1.243     albertel 8235: logtouch() : make sure the logfile, lonnet.log, exists
1.191     harris41 8236: 
                   8237: =item *
                   8238: 
1.243     albertel 8239: logthis() : append message to the normal lonnet.log file, it gets
                   8240: preiodically rolled over and deleted.
1.191     harris41 8241: 
                   8242: =item *
                   8243: 
1.243     albertel 8244: logperm() : append a permanent message to lonnet.perm.log, this log
                   8245: file never gets deleted by any automated portion of the system, only
                   8246: messages of critical importance should go in here.
                   8247: 
                   8248: =back
                   8249: 
                   8250: =head2 General File Helper Routines
                   8251: 
                   8252: =over 4
1.191     harris41 8253: 
                   8254: =item *
                   8255: 
1.481     raeburn  8256: getfile($file,$caller) : two cases - requests for files in /res or in /uploaded.
                   8257: (a) files in /uploaded
                   8258:   (i) If a local copy of the file exists - 
                   8259:       compares modification date of local copy with last-modified date for 
                   8260:       definitive version stored on home server for course. If local copy is 
                   8261:       stale, requests a new version from the home server and stores it. 
                   8262:       If the original has been removed from the home server, then local copy 
                   8263:       is unlinked.
                   8264:   (ii) If local copy does not exist -
                   8265:       requests the file from the home server and stores it. 
                   8266:   
                   8267:   If $caller is 'uploadrep':  
                   8268:     This indicates a call from lonuploadrep.pm (PerlHeaderParserHandler phase)
                   8269:     for request for files originally uploaded via DOCS. 
                   8270:      - returns 'ok' if fresh local copy now available, -1 otherwise.
                   8271:   
                   8272:   Otherwise:
                   8273:      This indicates a call from the content generation phase of the request.
                   8274:      -  returns the entire contents of the file or -1.
                   8275:      
                   8276: (b) files in /res
                   8277:    - returns the entire contents of a file or -1; 
                   8278:    it properly subscribes to and replicates the file if neccessary.
1.191     harris41 8279: 
1.712     albertel 8280: 
                   8281: =item *
                   8282: 
                   8283: stat_file($url) : $url is expected to be a /res/ or /uploaded/ style file
                   8284:                   reference
                   8285: 
                   8286: returns either a stat() list of data about the file or an empty list
                   8287: if the file doesn't exist or couldn't find out about it (connection
                   8288: problems or user unknown)
                   8289: 
1.191     harris41 8290: =item *
                   8291: 
1.243     albertel 8292: filelocation($dir,$file) : returns file system location of a file
                   8293: based on URI; meant to be "fairly clean" absolute reference, $dir is a
                   8294: directory that relative $file lookups are to looked in ($dir of /a/dir
                   8295: and a file of ../bob will become /a/bob)
1.191     harris41 8296: 
                   8297: =item *
                   8298: 
                   8299: hreflocation($dir,$file) : returns file system location or a URL; same as
                   8300: filelocation except for hrefs
                   8301: 
                   8302: =item *
                   8303: 
                   8304: declutter() : declutters URLs (remove docroot, beginning slashes, 'res' etc)
                   8305: 
1.243     albertel 8306: =back
                   8307: 
1.608     albertel 8308: =head2 Usererfile file routines (/uploaded*)
                   8309: 
                   8310: =over 4
                   8311: 
                   8312: =item *
                   8313: 
                   8314: userfileupload(): main rotine for putting a file in a user or course's
                   8315:                   filespace, arguments are,
                   8316: 
1.620     albertel 8317:  formname - required - this is the name of the element in $env where the
1.608     albertel 8318:            filename, and the contents of the file to create/modifed exist
1.620     albertel 8319:            the filename is in $env{'form.'.$formname.'.filename'} and the
                   8320:            contents of the file is located in $env{'form.'.$formname}
1.608     albertel 8321:  coursedoc - if true, store the file in the course of the active role
                   8322:              of the current user
                   8323:  subdir - required - subdirectory to put the file in under ../userfiles/
                   8324:          if undefined, it will be placed in "unknown"
                   8325: 
                   8326:  (This routine calls clean_filename() to remove any dangerous
                   8327:  characters from the filename, and then calls finuserfileupload() to
                   8328:  complete the transaction)
                   8329: 
                   8330:  returns either the url of the uploaded file (/uploaded/....) if successful
                   8331:  and /adm/notfound.html if unsuccessful
                   8332: 
                   8333: =item *
                   8334: 
                   8335: clean_filename(): routine for cleaing a filename up for storage in
                   8336:                  userfile space, argument is:
                   8337: 
                   8338:  filename - proposed filename
                   8339: 
                   8340: returns: the new clean filename
                   8341: 
                   8342: =item *
                   8343: 
                   8344: finishuserfileupload(): routine that creaes and sends the file to
                   8345: userspace, probably shouldn't be called directly
                   8346: 
                   8347:   docuname: username or courseid of destination for the file
                   8348:   docudom: domain of user/course of destination for the file
                   8349:   formname: same as for userfileupload()
                   8350:   fname: filename (inculding subdirectories) for the file
                   8351: 
                   8352:  returns either the url of the uploaded file (/uploaded/....) if successful
                   8353:  and /adm/notfound.html if unsuccessful
                   8354: 
                   8355: =item *
                   8356: 
                   8357: renameuserfile(): renames an existing userfile to a new name
                   8358: 
                   8359:   Args:
                   8360:    docuname: username or courseid of destination for the file
                   8361:    docudom: domain of user/course of destination for the file
                   8362:    old: current file name (including any subdirs under userfiles)
                   8363:    new: desired file name (including any subdirs under userfiles)
                   8364: 
                   8365: =item *
                   8366: 
                   8367: mkdiruserfile(): creates a directory is a userfiles dir
                   8368: 
                   8369:   Args:
                   8370:    docuname: username or courseid of destination for the file
                   8371:    docudom: domain of user/course of destination for the file
                   8372:    dir: dir to create (including any subdirs under userfiles)
                   8373: 
                   8374: =item *
                   8375: 
                   8376: removeuserfile(): removes a file that exists in userfiles
                   8377: 
                   8378:   Args:
                   8379:    docuname: username or courseid of destination for the file
                   8380:    docudom: domain of user/course of destination for the file
                   8381:    fname: filname to delete (including any subdirs under userfiles)
                   8382: 
                   8383: =item *
                   8384: 
                   8385: removeuploadedurl(): convience function for removeuserfile()
                   8386: 
                   8387:   Args:
                   8388:    url:  a full /uploaded/... url to delete
                   8389: 
1.747     albertel 8390: =item * 
                   8391: 
                   8392: get_portfile_permissions():
                   8393:   Args:
                   8394:     domain: domain of user or course contain the portfolio files
                   8395:     user: name of user or num of course contain the portfolio files
                   8396:   Returns:
                   8397:     hashref of a dump of the proper file_permissions.db
                   8398:    
                   8399: 
                   8400: =item * 
                   8401: 
                   8402: get_access_controls():
                   8403: 
                   8404: Args:
                   8405:   current_permissions: the hash ref returned from get_portfile_permissions()
                   8406:   group: (optional) the group you want the files associated with
                   8407:   file: (optional) the file you want access info on
                   8408: 
                   8409: Returns:
1.749     raeburn  8410:     a hash (keys are file names) of hashes containing
                   8411:         keys are: path to file/file_name\0uniqueID:scope_end_start (see below)
                   8412:         values are XML containing access control settings (see below) 
1.747     albertel 8413: 
                   8414: Internal notes:
                   8415: 
1.749     raeburn  8416:  access controls are stored in file_permissions.db as key=value pairs.
                   8417:     key -> path to file/file_name\0uniqueID:scope_end_start
                   8418:         where scope -> public,guest,course,group,domains or users.
                   8419:               end -> UNIX time for end of access (0 -> no end date)
                   8420:               start -> UNIX time for start of access
                   8421: 
                   8422:     value -> XML description of access control
                   8423:            <scope type=""> (type =1 of: public,guest,course,group,domains,users">
                   8424:             <start></start>
                   8425:             <end></end>
                   8426: 
                   8427:             <password></password>  for scope type = guest
                   8428: 
                   8429:             <domain></domain>     for scope type = course or group
                   8430:             <number></number>
                   8431:             <roles id="">
                   8432:              <role></role>
                   8433:              <access></access>
                   8434:              <section></section>
                   8435:              <group></group>
                   8436:             </roles>
                   8437: 
                   8438:             <dom></dom>         for scope type = domains
                   8439: 
                   8440:             <users>             for scope type = users
                   8441:              <user>
                   8442:               <uname></uname>
                   8443:               <udom></udom>
                   8444:              </user>
                   8445:             </users>
                   8446:            </scope> 
                   8447:               
                   8448:  Access data is also aggregated for each file in an additional key=value pair:
                   8449:  key -> path to file/file_name\0accesscontrol 
                   8450:  value -> reference to hash
                   8451:           hash contains key = value pairs
                   8452:           where key = uniqueID:scope_end_start
                   8453:                 value = UNIX time record was last updated
                   8454: 
                   8455:           Used to improve speed of look-ups of access controls for each file.  
                   8456:  
                   8457:  Locks on files (resulting from submission of portfolio file to a homework problem stored in array of arrays.
                   8458: 
                   8459: modify_access_controls():
                   8460: 
                   8461: Modifies access controls for a portfolio file
                   8462: Args
                   8463: 1. file name
                   8464: 2. reference to hash of required changes,
                   8465: 3. domain
                   8466: 4. username
                   8467:   where domain,username are the domain of the portfolio owner 
                   8468:   (either a user or a course) 
                   8469: 
                   8470: Returns:
                   8471: 1. result of additions or updates ('ok' or 'error', with error message). 
                   8472: 2. result of deletions ('ok' or 'error', with error message).
                   8473: 3. reference to hash of any new or updated access controls.
                   8474: 4. reference to hash used to map incoming IDs to uniqueIDs assigned to control.
                   8475:    key = integer (inbound ID)
                   8476:    value = uniqueID  
1.747     albertel 8477: 
1.608     albertel 8478: =back
                   8479: 
1.243     albertel 8480: =head2 HTTP Helper Routines
                   8481: 
                   8482: =over 4
                   8483: 
1.191     harris41 8484: =item *
                   8485: 
                   8486: escape() : unpack non-word characters into CGI-compatible hex codes
                   8487: 
                   8488: =item *
                   8489: 
                   8490: unescape() : pack CGI-compatible hex codes into actual non-word ASCII character
                   8491: 
1.243     albertel 8492: =back
                   8493: 
                   8494: =head1 PRIVATE SUBROUTINES
                   8495: 
                   8496: =head2 Underlying communication routines (Shouldn't call)
                   8497: 
                   8498: =over 4
                   8499: 
                   8500: =item *
                   8501: 
                   8502: subreply() : tries to pass a message to lonc, returns con_lost if incapable
                   8503: 
                   8504: =item *
                   8505: 
                   8506: reply() : uses subreply to send a message to remote machine, logs all failures
                   8507: 
                   8508: =item *
                   8509: 
                   8510: critical() : passes a critical message to another server; if cannot
                   8511: get through then place message in connection buffer directory and
                   8512: returns con_delayed, if incapable of saving message, returns
                   8513: con_failed
                   8514: 
                   8515: =item *
                   8516: 
                   8517: reconlonc() : tries to reconnect lonc client processes.
                   8518: 
                   8519: =back
                   8520: 
                   8521: =head2 Resource Access Logging
                   8522: 
                   8523: =over 4
                   8524: 
                   8525: =item *
                   8526: 
                   8527: flushcourselogs() : flush (save) buffer logs and access logs
                   8528: 
                   8529: =item *
                   8530: 
                   8531: courselog($what) : save message for course in hash
                   8532: 
                   8533: =item *
                   8534: 
                   8535: courseacclog($what) : save message for course using &courselog().  Perform
                   8536: special processing for specific resource types (problems, exams, quizzes, etc).
                   8537: 
1.191     harris41 8538: =item *
                   8539: 
                   8540: goodbye() : flush course logs and log shutting down; it is called in srm.conf
                   8541: as a PerlChildExitHandler
1.243     albertel 8542: 
                   8543: =back
                   8544: 
                   8545: =head2 Other
                   8546: 
                   8547: =over 4
                   8548: 
                   8549: =item *
                   8550: 
                   8551: symblist($mapname,%newhash) : update symbolic storage links
1.191     harris41 8552: 
                   8553: =back
                   8554: 
                   8555: =cut

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