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

1.1       albertel    1: # The LearningOnline Network
                      2: # TCP networking package
1.12      www         3: #
1.809   ! raeburn     4: # $Id: lonnet.pm,v 1.808 2006/11/27 20:35:10 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.809   ! raeburn  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.809   ! raeburn  4368:     my ($cdom,$cnum,$group,$namespace) = @_;
        !          4369:     return(&dump($namespace,$cdom,$cnum,$group));
1.805     raeburn  4370: }
                   4371: 
1.679     raeburn  4372: sub modify_coursegroup {
                   4373:     my ($cdom,$cnum,$groupsettings) = @_;
                   4374:     return(&put('coursegroups',$groupsettings,$cdom,$cnum));
                   4375: }
                   4376: 
1.809   ! raeburn  4377: sub toggle_coursegroup_status {
        !          4378:     my ($cdom,$cnum,$group,$action) = @_;
        !          4379:     my ($from_namespace,$to_namespace);
        !          4380:     if ($action eq 'delete') {
        !          4381:         $from_namespace = 'coursegroups';
        !          4382:         $to_namespace = 'deleted_groups';
        !          4383:     } else {
        !          4384:         $from_namespace = 'deleted_groups';
        !          4385:         $to_namespace = 'coursegroups';
        !          4386:     }
        !          4387:     my %curr_group = &get_coursegroups($cdom,$cnum,$group,$from_namespace);
1.805     raeburn  4388:     if (my $tmp = &error(%curr_group)) {
                   4389:         &Apache::lonnet::logthis('Error retrieving group: '.$tmp.' in '.$cnum.':'.$cdom);
                   4390:         return ('read error',$tmp);
                   4391:     } else {
                   4392:         my %savedsettings = %curr_group; 
1.809   ! raeburn  4393:         my $result = &put($to_namespace,\%savedsettings,$cdom,$cnum);
1.805     raeburn  4394:         my $deloutcome;
                   4395:         if ($result eq 'ok') {
1.809   ! raeburn  4396:             $deloutcome = &del($from_namespace,[$group],$cdom,$cnum);
1.805     raeburn  4397:         } else {
                   4398:             return ('write error',$result);
                   4399:         }
                   4400:         if ($deloutcome eq 'ok') {
                   4401:             return 'ok';
                   4402:         } else {
                   4403:             return ('delete error',$deloutcome);
                   4404:         }
                   4405:     }
                   4406: }
                   4407: 
1.679     raeburn  4408: sub modify_group_roles {
                   4409:     my ($cdom,$cnum,$group_id,$user,$end,$start,$userprivs) = @_;
                   4410:     my $url = '/'.$cdom.'/'.$cnum.'/'.$group_id;
                   4411:     my $role = 'gr/'.&escape($userprivs);
                   4412:     my ($uname,$udom) = split(/:/,$user);
                   4413:     my $result = &assignrole($udom,$uname,$url,$role,$end,$start);
1.684     raeburn  4414:     if ($result eq 'ok') {
                   4415:         &devalidate_getgroups_cache($udom,$uname,$cdom,$cnum);
                   4416:     }
1.679     raeburn  4417:     return $result;
                   4418: }
                   4419: 
                   4420: sub modify_coursegroup_membership {
                   4421:     my ($cdom,$cnum,$membership) = @_;
                   4422:     my $result = &put('groupmembership',$membership,$cdom,$cnum);
                   4423:     return $result;
                   4424: }
                   4425: 
1.682     raeburn  4426: sub get_active_groups {
                   4427:     my ($udom,$uname,$cdom,$cnum) = @_;
                   4428:     my $now = time;
                   4429:     my %groups = ();
                   4430:     foreach my $key (keys(%env)) {
1.807     albertel 4431:         if ($key =~ m-user\.role\.gr\./($match_domain)/($match_username)/(\w+)$-) {
1.682     raeburn  4432:             my ($start,$end) = split(/\./,$env{$key});
                   4433:             if (($end!=0) && ($end<$now)) { next; }
                   4434:             if (($start!=0) && ($start>$now)) { next; }
                   4435:             if ($1 eq $cdom && $2 eq $cnum) {
                   4436:                 $groups{$3} = $env{$key} ;
                   4437:             }
                   4438:         }
                   4439:     }
                   4440:     return %groups;
                   4441: }
                   4442: 
1.683     raeburn  4443: sub get_group_membership {
                   4444:     my ($cdom,$cnum,$group) = @_;
                   4445:     return(&dump('groupmembership',$cdom,$cnum,$group));
                   4446: }
                   4447: 
                   4448: sub get_users_groups {
                   4449:     my ($udom,$uname,$courseid) = @_;
1.733     raeburn  4450:     my @usersgroups;
1.683     raeburn  4451:     my $cachetime=1800;
                   4452: 
                   4453:     my $hashid="$udom:$uname:$courseid";
1.733     raeburn  4454:     my ($grouplist,$cached)=&is_cached_new('getgroups',$hashid);
                   4455:     if (defined($cached)) {
1.734     albertel 4456:         @usersgroups = split(/:/,$grouplist);
1.733     raeburn  4457:     } else {  
                   4458:         $grouplist = '';
                   4459:         my %roleshash = &dump('roles',$udom,$uname,$courseid);
                   4460:         my ($tmp) = keys(%roleshash);
                   4461:         if ($tmp=~/^error:/) {
                   4462:             &logthis('Error retrieving roles: '.$tmp.' for '.$uname.':'.$udom);
                   4463:         } else {
                   4464:             my $access_end = $env{'course.'.$courseid.
                   4465:                                   '.default_enrollment_end_date'};
                   4466:             my $now = time;
1.734     albertel 4467:             foreach my $key (keys(%roleshash)) {
1.733     raeburn  4468:                 if ($key =~ /^\Q$courseid\E\/(\w+)\_gr$/) {
                   4469:                     my $group = $1;
                   4470:                     if ($roleshash{$key} =~ /_(\d+)_(\d+)$/) {
                   4471:                         my $start = $2;
                   4472:                         my $end = $1;
                   4473:                         if ($start == -1) { next; } # deleted from group
                   4474:                         if (($start!=0) && ($start>$now)) { next; }
                   4475:                         if (($end!=0) && ($end<$now)) {
                   4476:                             if ($access_end && $access_end < $now) {
                   4477:                                 if ($access_end - $end < 86400) {
                   4478:                                     push(@usersgroups,$group);
                   4479:                                 }
                   4480:                             }
                   4481:                             next;
                   4482:                         }
                   4483:                         push(@usersgroups,$group);
                   4484:                     }
1.683     raeburn  4485:                 }
                   4486:             }
1.733     raeburn  4487:             @usersgroups = &sort_course_groups($courseid,@usersgroups);
                   4488:             $grouplist = join(':',@usersgroups);
                   4489:             &do_cache_new('getgroups',$hashid,$grouplist,$cachetime);
1.683     raeburn  4490:         }
                   4491:     }
1.733     raeburn  4492:     return @usersgroups;
1.683     raeburn  4493: }
                   4494: 
                   4495: sub devalidate_getgroups_cache {
                   4496:     my ($udom,$uname,$cdom,$cnum)=@_;
                   4497:     my $courseid = $cdom.'_'.$cnum;
1.807     albertel 4498: 
1.683     raeburn  4499:     my $hashid="$udom:$uname:$courseid";
                   4500:     &devalidate_cache_new('getgroups',$hashid);
                   4501: }
                   4502: 
1.12      www      4503: # ------------------------------------------------------------------ Plain Text
                   4504: 
                   4505: sub plaintext {
1.742     raeburn  4506:     my ($short,$type,$cid) = @_;
1.758     albertel 4507:     if ($short =~ /^cr/) {
                   4508: 	return (split('/',$short))[-1];
                   4509:     }
1.742     raeburn  4510:     if (!defined($cid)) {
                   4511:         $cid = $env{'request.course.id'};
                   4512:     }
                   4513:     if (defined($cid) && defined($env{'course.'.$cid.'.'.$short.'.plaintext'})) {
                   4514:         return &Apache::lonlocal::mt($env{'course.'.$cid.'.'.$short.
                   4515:                                           '.plaintext'});
                   4516:     }
                   4517:     my %rolenames = (
                   4518:                       Course => 'std',
                   4519:                       Group => 'alt1',
                   4520:                     );
                   4521:     if (defined($type) && 
                   4522:          defined($rolenames{$type}) && 
                   4523:          defined($prp{$short}{$rolenames{$type}})) {
                   4524:         return &Apache::lonlocal::mt($prp{$short}{$rolenames{$type}});
                   4525:     } else {
                   4526:         return &Apache::lonlocal::mt($prp{$short}{'std'});
                   4527:     }
1.12      www      4528: }
                   4529: 
                   4530: # ----------------------------------------------------------------- Assign Role
                   4531: 
                   4532: sub assignrole {
1.357     www      4533:     my ($udom,$uname,$url,$role,$end,$start,$deleteflag)=@_;
1.21      www      4534:     my $mrole;
                   4535:     if ($role =~ /^cr\//) {
1.393     www      4536:         my $cwosec=$url;
1.807     albertel 4537:         $cwosec=~s/^\/($match_domain)\/($match_username)\/.*/$1\/$2/;
1.393     www      4538: 	unless (&allowed('ccr',$cwosec)) {
1.104     www      4539:            &logthis('Refused custom assignrole: '.
                   4540:              $udom.' '.$uname.' '.$url.' '.$role.' '.$end.' '.$start.' by '.
1.620     albertel 4541: 		    $env{'user.name'}.' at '.$env{'user.domain'});
1.104     www      4542:            return 'refused'; 
                   4543:         }
1.21      www      4544:         $mrole='cr';
1.678     raeburn  4545:     } elsif ($role =~ /^gr\//) {
                   4546:         my $cwogrp=$url;
1.807     albertel 4547:         $cwogrp=~s{^/($match_domain)/($match_username)/.*}
                   4548:                   {$1/$2}x;
1.678     raeburn  4549:         unless (&allowed('mdg',$cwogrp)) {
                   4550:             &logthis('Refused group assignrole: '.
                   4551:               $udom.' '.$uname.' '.$url.' '.$role.' '.$end.' '.$start.' by '.
                   4552:                     $env{'user.name'}.' at '.$env{'user.domain'});
                   4553:             return 'refused';
                   4554:         }
                   4555:         $mrole='gr';
1.21      www      4556:     } else {
1.82      www      4557:         my $cwosec=$url;
1.807     albertel 4558:         $cwosec=~s/^\/($match_domain)\/($match_username)\/.*/$1\/$2/;
1.373     www      4559:         unless ((&allowed('c'.$role,$cwosec)) || &allowed('c'.$role,$udom)) { 
1.104     www      4560:            &logthis('Refused assignrole: '.
                   4561:              $udom.' '.$uname.' '.$url.' '.$role.' '.$end.' '.$start.' by '.
1.620     albertel 4562: 		    $env{'user.name'}.' at '.$env{'user.domain'});
1.104     www      4563:            return 'refused'; 
                   4564:         }
1.21      www      4565:         $mrole=$role;
                   4566:     }
1.620     albertel 4567:     my $command="encrypt:rolesput:$env{'user.domain'}:$env{'user.name'}:".
1.21      www      4568:                 "$udom:$uname:$url".'_'."$mrole=$role";
1.81      www      4569:     if ($end) { $command.='_'.$end; }
1.21      www      4570:     if ($start) {
                   4571: 	if ($end) { 
1.81      www      4572:            $command.='_'.$start; 
1.21      www      4573:         } else {
1.81      www      4574:            $command.='_0_'.$start;
1.21      www      4575:         }
                   4576:     }
1.739     raeburn  4577:     my $origstart = $start;
                   4578:     my $origend = $end;
1.357     www      4579: # actually delete
                   4580:     if ($deleteflag) {
1.373     www      4581: 	if ((&allowed('dro',$udom)) || (&allowed('dro',$url))) {
1.357     www      4582: # modify command to delete the role
1.620     albertel 4583:            $command="encrypt:rolesdel:$env{'user.domain'}:$env{'user.name'}:".
1.357     www      4584:                 "$udom:$uname:$url".'_'."$mrole";
1.620     albertel 4585: 	   &logthis("$env{'user.name'} at $env{'user.domain'} deletes $mrole in $url for $uname at $udom"); 
1.357     www      4586: # set start and finish to negative values for userrolelog
                   4587:            $start=-1;
                   4588:            $end=-1;
                   4589:         }
                   4590:     }
                   4591: # send command
1.349     www      4592:     my $answer=&reply($command,&homeserver($uname,$udom));
1.357     www      4593: # log new user role if status is ok
1.349     www      4594:     if ($answer eq 'ok') {
1.663     raeburn  4595: 	&userrolelog($role,$uname,$udom,$url,$start,$end);
1.739     raeburn  4596: # for course roles, perform group memberships changes triggered by role change.
                   4597:         unless ($role =~ /^gr/) {
                   4598:             &Apache::longroup::group_changes($udom,$uname,$url,$role,$origend,
                   4599:                                              $origstart);
                   4600:         }
1.349     www      4601:     }
                   4602:     return $answer;
1.169     harris41 4603: }
                   4604: 
                   4605: # -------------------------------------------------- Modify user authentication
1.197     www      4606: # Overrides without validation
                   4607: 
1.169     harris41 4608: sub modifyuserauth {
                   4609:     my ($udom,$uname,$umode,$upass)=@_;
                   4610:     my $uhome=&homeserver($uname,$udom);
1.197     www      4611:     unless (&allowed('mau',$udom)) { return 'refused'; }
                   4612:     &logthis('Call to modify user authentication '.$udom.', '.$uname.', '.
1.620     albertel 4613:              $umode.' by '.$env{'user.name'}.' at '.$env{'user.domain'}.
                   4614:              ' in domain '.$env{'request.role.domain'});  
1.169     harris41 4615:     my $reply=&reply('encrypt:changeuserauth:'.$udom.':'.$uname.':'.$umode.':'.
                   4616: 		     &escape($upass),$uhome);
1.620     albertel 4617:     &log($env{'user.domain'},$env{'user.name'},$env{'user.home'},
1.197     www      4618:         'Authentication changed for '.$udom.', '.$uname.', '.$umode.
                   4619:          '(Remote '.$ENV{'REMOTE_ADDR'}.'): '.$reply);
                   4620:     &log($udom,,$uname,$uhome,
1.620     albertel 4621:         'Authentication changed by '.$env{'user.domain'}.', '.
                   4622:                                      $env{'user.name'}.', '.$umode.
1.197     www      4623:          '(Remote '.$ENV{'REMOTE_ADDR'}.'): '.$reply);
1.169     harris41 4624:     unless ($reply eq 'ok') {
1.197     www      4625:         &logthis('Authentication mode error: '.$reply);
1.169     harris41 4626: 	return 'error: '.$reply;
                   4627:     }   
1.170     harris41 4628:     return 'ok';
1.80      www      4629: }
                   4630: 
1.81      www      4631: # --------------------------------------------------------------- Modify a user
1.80      www      4632: 
1.81      www      4633: sub modifyuser {
1.206     matthew  4634:     my ($udom,    $uname, $uid,
                   4635:         $umode,   $upass, $first,
                   4636:         $middle,  $last,  $gene,
1.387     www      4637:         $forceid, $desiredhome, $email)=@_;
1.807     albertel 4638:     $udom= &LONCAPA::clean_domain($udom);
                   4639:     $uname=&LONCAPA::clean_username($uname);
1.81      www      4640:     &logthis('Call to modify user '.$udom.', '.$uname.', '.$uid.', '.
1.80      www      4641:              $umode.', '.$first.', '.$middle.', '.
1.206     matthew  4642: 	     $last.', '.$gene.'(forceid: '.$forceid.')'.
                   4643:              (defined($desiredhome) ? ' desiredhome = '.$desiredhome :
                   4644:                                      ' desiredhome not specified'). 
1.620     albertel 4645:              ' by '.$env{'user.name'}.' at '.$env{'user.domain'}.
                   4646:              ' in domain '.$env{'request.role.domain'});
1.230     stredwic 4647:     my $uhome=&homeserver($uname,$udom,'true');
1.80      www      4648: # ----------------------------------------------------------------- Create User
1.406     albertel 4649:     if (($uhome eq 'no_host') && 
                   4650: 	(($umode && $upass) || ($umode eq 'localauth'))) {
1.80      www      4651:         my $unhome='';
1.209     matthew  4652:         if (defined($desiredhome) && $hostdom{$desiredhome} eq $udom) { 
                   4653:             $unhome = $desiredhome;
1.620     albertel 4654: 	} elsif($env{'course.'.$env{'request.course.id'}.'.domain'} eq $udom) {
                   4655: 	    $unhome=$env{'course.'.$env{'request.course.id'}.'.home'};
1.209     matthew  4656:         } else { # load balancing routine for determining $unhome
1.80      www      4657:             my $tryserver;
1.81      www      4658:             my $loadm=10000000;
1.80      www      4659:             foreach $tryserver (keys %libserv) {
                   4660: 	       if ($hostdom{$tryserver} eq $udom) {
                   4661:                   my $answer=reply('load',$tryserver);
                   4662:                   if (($answer=~/\d+/) && ($answer<$loadm)) {
                   4663: 		      $loadm=$answer;
                   4664:                       $unhome=$tryserver;
                   4665:                   }
                   4666: 	       }
                   4667: 	    }
                   4668:         }
                   4669:         if (($unhome eq '') || ($unhome eq 'no_host')) {
1.206     matthew  4670: 	    return 'error: unable to find a home server for '.$uname.
                   4671:                    ' in domain '.$udom;
1.80      www      4672:         }
                   4673:         my $reply=&reply('encrypt:makeuser:'.$udom.':'.$uname.':'.$umode.':'.
                   4674:                          &escape($upass),$unhome);
                   4675: 	unless ($reply eq 'ok') {
                   4676:             return 'error: '.$reply;
                   4677:         }   
1.230     stredwic 4678:         $uhome=&homeserver($uname,$udom,'true');
1.80      www      4679:         if (($uhome eq '') || ($uhome eq 'no_host') || ($uhome ne $unhome)) {
1.386     matthew  4680: 	    return 'error: unable verify users home machine.';
1.80      www      4681:         }
1.209     matthew  4682:     }   # End of creation of new user
1.80      www      4683: # ---------------------------------------------------------------------- Add ID
                   4684:     if ($uid) {
                   4685:        $uid=~tr/A-Z/a-z/;
                   4686:        my %uidhash=&idrget($udom,$uname);
1.196     www      4687:        if (($uidhash{$uname}) && ($uidhash{$uname}!~/error\:/) 
                   4688:          && (!$forceid)) {
1.80      www      4689: 	  unless ($uid eq $uidhash{$uname}) {
1.386     matthew  4690: 	      return 'error: user id "'.$uid.'" does not match '.
                   4691:                   'current user id "'.$uidhash{$uname}.'".';
1.80      www      4692:           }
                   4693:        } else {
                   4694: 	  &idput($udom,($uname => $uid));
                   4695:        }
                   4696:     }
                   4697: # -------------------------------------------------------------- Add names, etc
1.313     matthew  4698:     my @tmp=&get('environment',
1.134     albertel 4699: 		   ['firstname','middlename','lastname','generation'],
                   4700: 		   $udom,$uname);
1.313     matthew  4701:     my %names;
                   4702:     if ($tmp[0] =~ m/^error:.*/) { 
                   4703:         %names=(); 
                   4704:     } else {
                   4705:         %names = @tmp;
                   4706:     }
1.388     www      4707: #
                   4708: # Make sure to not trash student environment if instructor does not bother
                   4709: # to supply name and email information
                   4710: #
                   4711:     if ($first)  { $names{'firstname'}  = $first; }
1.385     matthew  4712:     if (defined($middle)) { $names{'middlename'} = $middle; }
1.388     www      4713:     if ($last)   { $names{'lastname'}   = $last; }
1.385     matthew  4714:     if (defined($gene))   { $names{'generation'} = $gene; }
1.592     www      4715:     if ($email) {
                   4716:        $email=~s/[^\w\@\.\-\,]//gs;
                   4717:        if ($email=~/\@/) { $names{'notification'} = $email;
                   4718: 			   $names{'critnotification'} = $email;
                   4719: 			   $names{'permanentemail'} = $email; }
                   4720:     }
1.134     albertel 4721:     my $reply = &put('environment', \%names, $udom,$uname);
                   4722:     if ($reply ne 'ok') { return 'error: '.$reply; }
1.680     www      4723:     &devalidate_cache_new('namescache',$uname.':'.$udom);
1.81      www      4724:     &logthis('Success modifying user '.$udom.', '.$uname.', '.$uid.', '.
1.80      www      4725:              $umode.', '.$first.', '.$middle.', '.
                   4726: 	     $last.', '.$gene.' by '.
1.620     albertel 4727:              $env{'user.name'}.' at '.$env{'user.domain'});
1.134     albertel 4728:     return 'ok';
1.80      www      4729: }
                   4730: 
1.81      www      4731: # -------------------------------------------------------------- Modify student
1.80      www      4732: 
1.81      www      4733: sub modifystudent {
                   4734:     my ($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene,$usec,
1.515     raeburn  4735:         $end,$start,$forceid,$desiredhome,$email,$type,$locktype,$cid)=@_;
1.455     albertel 4736:     if (!$cid) {
1.620     albertel 4737: 	unless ($cid=$env{'request.course.id'}) {
1.455     albertel 4738: 	    return 'not_in_class';
                   4739: 	}
1.80      www      4740:     }
                   4741: # --------------------------------------------------------------- Make the user
1.81      www      4742:     my $reply=&modifyuser
1.209     matthew  4743: 	($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene,$forceid,
1.387     www      4744:          $desiredhome,$email);
1.80      www      4745:     unless ($reply eq 'ok') { return $reply; }
1.297     matthew  4746:     # This will cause &modify_student_enrollment to get the uid from the
                   4747:     # students environment
                   4748:     $uid = undef if (!$forceid);
1.455     albertel 4749:     $reply = &modify_student_enrollment($udom,$uname,$uid,$first,$middle,$last,
1.515     raeburn  4750: 					$gene,$usec,$end,$start,$type,$locktype,$cid);
1.297     matthew  4751:     return $reply;
                   4752: }
                   4753: 
                   4754: sub modify_student_enrollment {
1.515     raeburn  4755:     my ($udom,$uname,$uid,$first,$middle,$last,$gene,$usec,$end,$start,$type,$locktype,$cid) = @_;
1.455     albertel 4756:     my ($cdom,$cnum,$chome);
                   4757:     if (!$cid) {
1.620     albertel 4758: 	unless ($cid=$env{'request.course.id'}) {
1.455     albertel 4759: 	    return 'not_in_class';
                   4760: 	}
1.620     albertel 4761: 	$cdom=$env{'course.'.$cid.'.domain'};
                   4762: 	$cnum=$env{'course.'.$cid.'.num'};
1.455     albertel 4763:     } else {
                   4764: 	($cdom,$cnum)=split(/_/,$cid);
                   4765:     }
1.620     albertel 4766:     $chome=$env{'course.'.$cid.'.home'};
1.455     albertel 4767:     if (!$chome) {
1.457     raeburn  4768: 	$chome=&homeserver($cnum,$cdom);
1.297     matthew  4769:     }
1.455     albertel 4770:     if (!$chome) { return 'unknown_course'; }
1.297     matthew  4771:     # Make sure the user exists
1.81      www      4772:     my $uhome=&homeserver($uname,$udom);
                   4773:     if (($uhome eq '') || ($uhome eq 'no_host')) { 
                   4774: 	return 'error: no such user';
                   4775:     }
1.297     matthew  4776:     # Get student data if we were not given enough information
                   4777:     if (!defined($first)  || $first  eq '' || 
                   4778:         !defined($last)   || $last   eq '' || 
                   4779:         !defined($uid)    || $uid    eq '' || 
                   4780:         !defined($middle) || $middle eq '' || 
                   4781:         !defined($gene)   || $gene   eq '') {
1.294     matthew  4782:         # They did not supply us with enough data to enroll the student, so
                   4783:         # we need to pick up more information.
1.297     matthew  4784:         my %tmp = &get('environment',
1.294     matthew  4785:                        ['firstname','middlename','lastname', 'generation','id']
1.297     matthew  4786:                        ,$udom,$uname);
                   4787: 
1.800     albertel 4788:         #foreach my $key (keys(%tmp)) {
                   4789:         #    &logthis("key $key = ".$tmp{$key});
1.455     albertel 4790:         #}
1.294     matthew  4791:         $first  = $tmp{'firstname'}  if (!defined($first)  || $first  eq '');
                   4792:         $middle = $tmp{'middlename'} if (!defined($middle) || $middle eq '');
                   4793:         $last   = $tmp{'lastname'}   if (!defined($last)   || $last eq '');
1.297     matthew  4794:         $gene   = $tmp{'generation'} if (!defined($gene)   || $gene eq '');
1.294     matthew  4795:         $uid    = $tmp{'id'}         if (!defined($uid)    || $uid  eq '');
                   4796:     }
1.556     albertel 4797:     my $fullname = &format_name($first,$middle,$last,$gene,'lastname');
1.487     albertel 4798:     my $reply=cput('classlist',
                   4799: 		   {"$uname:$udom" => 
1.515     raeburn  4800: 			join(':',$end,$start,$uid,$usec,$fullname,$type,$locktype) },
1.487     albertel 4801: 		   $cdom,$cnum);
1.81      www      4802:     unless (($reply eq 'ok') || ($reply eq 'delayed')) {
                   4803: 	return 'error: '.$reply;
1.652     albertel 4804:     } else {
                   4805: 	&devalidate_getsection_cache($udom,$uname,$cid);
1.81      www      4806:     }
1.297     matthew  4807:     # Add student role to user
1.83      www      4808:     my $uurl='/'.$cid;
1.81      www      4809:     $uurl=~s/\_/\//g;
                   4810:     if ($usec) {
                   4811: 	$uurl.='/'.$usec;
                   4812:     }
                   4813:     return &assignrole($udom,$uname,$uurl,'st',$end,$start);
1.21      www      4814: }
                   4815: 
1.556     albertel 4816: sub format_name {
                   4817:     my ($firstname,$middlename,$lastname,$generation,$first)=@_;
                   4818:     my $name;
                   4819:     if ($first ne 'lastname') {
                   4820: 	$name=$firstname.' '.$middlename.' '.$lastname.' '.$generation;
                   4821:     } else {
                   4822: 	if ($lastname=~/\S/) {
                   4823: 	    $name.= $lastname.' '.$generation.', '.$firstname.' '.$middlename;
                   4824: 	    $name=~s/\s+,/,/;
                   4825: 	} else {
                   4826: 	    $name.= $firstname.' '.$middlename.' '.$generation;
                   4827: 	}
                   4828:     }
                   4829:     $name=~s/^\s+//;
                   4830:     $name=~s/\s+$//;
                   4831:     $name=~s/\s+/ /g;
                   4832:     return $name;
                   4833: }
                   4834: 
1.84      www      4835: # ------------------------------------------------- Write to course preferences
                   4836: 
                   4837: sub writecoursepref {
                   4838:     my ($courseid,%prefs)=@_;
                   4839:     $courseid=~s/^\///;
                   4840:     $courseid=~s/\_/\//g;
                   4841:     my ($cdomain,$cnum)=split(/\//,$courseid);
                   4842:     my $chome=homeserver($cnum,$cdomain);
                   4843:     if (($chome eq '') || ($chome eq 'no_host')) { 
                   4844: 	return 'error: no such course';
                   4845:     }
                   4846:     my $cstring='';
1.800     albertel 4847:     foreach my $pref (keys(%prefs)) {
                   4848: 	$cstring.=&escape($pref).'='.&escape($prefs{$pref}).'&';
1.191     harris41 4849:     }
1.84      www      4850:     $cstring=~s/\&$//;
                   4851:     return reply('put:'.$cdomain.':'.$cnum.':environment:'.$cstring,$chome);
                   4852: }
                   4853: 
                   4854: # ---------------------------------------------------------- Make/modify course
                   4855: 
                   4856: sub createcourse {
1.741     raeburn  4857:     my ($udom,$description,$url,$course_server,$nonstandard,$inst_code,
                   4858:         $course_owner,$crstype)=@_;
1.84      www      4859:     $url=&declutter($url);
                   4860:     my $cid='';
1.264     matthew  4861:     unless (&allowed('ccc',$udom)) {
1.84      www      4862:         return 'refused';
                   4863:     }
                   4864: # ------------------------------------------------------------------- Create ID
1.674     www      4865:    my $uname=int(1+rand(9)).
                   4866:        ('a'..'z','A'..'Z','0'..'9')[int(rand(62))].
                   4867:        substr($$.time,0,5).unpack("H8",pack("I32",time)).
1.84      www      4868:        unpack("H2",pack("I32",int(rand(255)))).$perlvar{'lonHostID'};
                   4869: # ----------------------------------------------- Make sure that does not exist
1.230     stredwic 4870:    my $uhome=&homeserver($uname,$udom,'true');
1.84      www      4871:    unless (($uhome eq '') || ($uhome eq 'no_host')) {
                   4872:        $uname=substr($$.time,0,5).unpack("H8",pack("I32",time)).
                   4873:         unpack("H2",pack("I32",int(rand(255)))).$perlvar{'lonHostID'};
1.230     stredwic 4874:        $uhome=&homeserver($uname,$udom,'true');       
1.84      www      4875:        unless (($uhome eq '') || ($uhome eq 'no_host')) {
                   4876:            return 'error: unable to generate unique course-ID';
                   4877:        } 
                   4878:    }
1.264     matthew  4879: # ------------------------------------------------ Check supplied server name
1.620     albertel 4880:     $course_server = $env{'user.homeserver'} if (! defined($course_server));
1.264     matthew  4881:     if (! exists($libserv{$course_server})) {
                   4882:         return 'error:bad server name '.$course_server;
                   4883:     }
1.84      www      4884: # ------------------------------------------------------------- Make the course
                   4885:     my $reply=&reply('encrypt:makeuser:'.$udom.':'.$uname.':none::',
1.264     matthew  4886:                       $course_server);
1.84      www      4887:     unless ($reply eq 'ok') { return 'error: '.$reply; }
1.230     stredwic 4888:     $uhome=&homeserver($uname,$udom,'true');
1.84      www      4889:     if (($uhome eq '') || ($uhome eq 'no_host')) { 
                   4890: 	return 'error: no such course';
                   4891:     }
1.271     www      4892: # ----------------------------------------------------------------- Course made
1.516     raeburn  4893: # log existence
                   4894:     &courseidput($udom,&escape($udom.'_'.$uname).'='.&escape($description).
1.741     raeburn  4895:                  ':'.&escape($inst_code).':'.&escape($course_owner).':'.
                   4896:                   &escape($crstype),$uhome);
1.358     www      4897:     &flushcourselogs();
                   4898: # set toplevel url
1.271     www      4899:     my $topurl=$url;
                   4900:     unless ($nonstandard) {
                   4901: # ------------------------------------------ For standard courses, make top url
                   4902:         my $mapurl=&clutter($url);
1.278     www      4903:         if ($mapurl eq '/res/') { $mapurl=''; }
1.620     albertel 4904:         $env{'form.initmap'}=(<<ENDINITMAP);
1.271     www      4905: <map>
                   4906: <resource id="1" type="start"></resource>
                   4907: <resource id="2" src="$mapurl"></resource>
                   4908: <resource id="3" type="finish"></resource>
                   4909: <link index="1" from="1" to="2"></link>
                   4910: <link index="2" from="2" to="3"></link>
                   4911: </map>
                   4912: ENDINITMAP
                   4913:         $topurl=&declutter(
1.638     albertel 4914:         &finishuserfileupload($uname,$udom,'initmap','default.sequence')
1.271     www      4915:                           );
                   4916:     }
                   4917: # ----------------------------------------------------------- Write preferences
1.84      www      4918:     &writecoursepref($udom.'_'.$uname,
                   4919:                      ('description' => $description,
1.271     www      4920:                       'url'         => $topurl));
1.84      www      4921:     return '/'.$udom.'/'.$uname;
                   4922: }
                   4923: 
1.21      www      4924: # ---------------------------------------------------------- Assign Custom Role
                   4925: 
                   4926: sub assigncustomrole {
1.357     www      4927:     my ($udom,$uname,$url,$rdom,$rnam,$rolename,$end,$start,$deleteflag)=@_;
1.21      www      4928:     return &assignrole($udom,$uname,$url,'cr/'.$rdom.'/'.$rnam.'/'.$rolename,
1.357     www      4929:                        $end,$start,$deleteflag);
1.21      www      4930: }
                   4931: 
                   4932: # ----------------------------------------------------------------- Revoke Role
                   4933: 
                   4934: sub revokerole {
1.357     www      4935:     my ($udom,$uname,$url,$role,$deleteflag)=@_;
1.21      www      4936:     my $now=time;
1.357     www      4937:     return &assignrole($udom,$uname,$url,$role,$now,$deleteflag);
1.21      www      4938: }
                   4939: 
                   4940: # ---------------------------------------------------------- Revoke Custom Role
                   4941: 
                   4942: sub revokecustomrole {
1.357     www      4943:     my ($udom,$uname,$url,$rdom,$rnam,$rolename,$deleteflag)=@_;
1.21      www      4944:     my $now=time;
1.357     www      4945:     return &assigncustomrole($udom,$uname,$url,$rdom,$rnam,$rolename,$now,
                   4946:            $deleteflag);
1.17      www      4947: }
                   4948: 
1.533     banghart 4949: # ------------------------------------------------------------ Disk usage
1.535     albertel 4950: sub diskusage {
1.533     banghart 4951:     my ($udom,$uname,$directoryRoot)=@_;
                   4952:     $directoryRoot =~ s/\/$//;
1.535     albertel 4953:     my $listing=&reply('du:'.$directoryRoot,homeserver($uname,$udom));
1.514     albertel 4954:     return $listing;
1.512     banghart 4955: }
                   4956: 
1.566     banghart 4957: sub is_locked {
                   4958:     my ($file_name, $domain, $user) = @_;
                   4959:     my @check;
                   4960:     my $is_locked;
                   4961:     push @check, $file_name;
1.613     albertel 4962:     my %locked = &get('file_permissions',\@check,
1.620     albertel 4963: 		      $env{'user.domain'},$env{'user.name'});
1.615     albertel 4964:     my ($tmp)=keys(%locked);
                   4965:     if ($tmp=~/^error:/) { undef(%locked); }
1.745     raeburn  4966:     
1.566     banghart 4967:     if (ref($locked{$file_name}) eq 'ARRAY') {
1.745     raeburn  4968:         $is_locked = 'false';
                   4969:         foreach my $entry (@{$locked{$file_name}}) {
                   4970:            if (ref($entry) eq 'ARRAY') { 
1.746     raeburn  4971:                $is_locked = 'true';
                   4972:                last;
1.745     raeburn  4973:            }
                   4974:        }
1.566     banghart 4975:     } else {
                   4976:         $is_locked = 'false';
                   4977:     }
                   4978: }
                   4979: 
1.759     albertel 4980: sub declutter_portfile {
                   4981:     my ($file) = @_;
                   4982:     &logthis("got $file");
                   4983:     $file =~ s-^(/portfolio/|portfolio/)-/-;
                   4984:     &logthis("ret $file");
                   4985:     return $file;
                   4986: }
                   4987: 
1.559     banghart 4988: # ------------------------------------------------------------- Mark as Read Only
                   4989: 
                   4990: sub mark_as_readonly {
                   4991:     my ($domain,$user,$files,$what) = @_;
1.613     albertel 4992:     my %current_permissions = &dump('file_permissions',$domain,$user);
1.615     albertel 4993:     my ($tmp)=keys(%current_permissions);
                   4994:     if ($tmp=~/^error:/) { undef(%current_permissions); }
1.560     banghart 4995:     foreach my $file (@{$files}) {
1.759     albertel 4996: 	$file = &declutter_portfile($file);
1.561     banghart 4997:         push(@{$current_permissions{$file}},$what);
1.559     banghart 4998:     }
1.613     albertel 4999:     &put('file_permissions',\%current_permissions,$domain,$user);
1.559     banghart 5000:     return;
                   5001: }
                   5002: 
1.572     banghart 5003: # ------------------------------------------------------------Save Selected Files
                   5004: 
                   5005: sub save_selected_files {
                   5006:     my ($user, $path, @files) = @_;
                   5007:     my $filename = $user."savedfiles";
1.573     banghart 5008:     my @other_files = &files_not_in_path($user, $path);
1.574     banghart 5009:     open (OUT, '>'.$Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/'.$filename);
1.573     banghart 5010:     foreach my $file (@files) {
1.620     albertel 5011:         print (OUT $env{'form.currentpath'}.$file."\n");
1.573     banghart 5012:     }
                   5013:     foreach my $file (@other_files) {
1.574     banghart 5014:         print (OUT $file."\n");
1.572     banghart 5015:     }
1.574     banghart 5016:     close (OUT);
1.572     banghart 5017:     return 'ok';
                   5018: }
                   5019: 
1.574     banghart 5020: sub clear_selected_files {
                   5021:     my ($user) = @_;
                   5022:     my $filename = $user."savedfiles";
                   5023:     open (OUT, '>'.$Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/'.$filename);
                   5024:     print (OUT undef);
                   5025:     close (OUT);
                   5026:     return ("ok");    
                   5027: }
                   5028: 
1.572     banghart 5029: sub files_in_path {
                   5030:     my ($user, $path) = @_;
                   5031:     my $filename = $user."savedfiles";
                   5032:     my %return_files;
1.574     banghart 5033:     open (IN, '<'.$Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/'.$filename);
1.573     banghart 5034:     while (my $line_in = <IN>) {
1.574     banghart 5035:         chomp ($line_in);
                   5036:         my @paths_and_file = split (m!/!, $line_in);
                   5037:         my $file_part = pop (@paths_and_file);
                   5038:         my $path_part = join ('/', @paths_and_file);
1.573     banghart 5039:         $path_part.='/';
                   5040:         my $path_and_file = $path_part.$file_part;
                   5041:         if ($path_part eq $path) {
                   5042:             $return_files{$file_part}= 'selected';
                   5043:         }
                   5044:     }
1.574     banghart 5045:     close (IN);
                   5046:     return (\%return_files);
1.572     banghart 5047: }
                   5048: 
                   5049: # called in portfolio select mode, to show files selected NOT in current directory
                   5050: sub files_not_in_path {
                   5051:     my ($user, $path) = @_;
                   5052:     my $filename = $user."savedfiles";
                   5053:     my @return_files;
                   5054:     my $path_part;
1.800     albertel 5055:     open(IN, '<'.$Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/'.$filename);
                   5056:     while (my $line = <IN>) {
1.572     banghart 5057:         #ok, I know it's clunky, but I want it to work
1.800     albertel 5058:         my @paths_and_file = split(m|/|, $line);
                   5059:         my $file_part = pop(@paths_and_file);
                   5060:         chomp($file_part);
                   5061:         my $path_part = join('/', @paths_and_file);
1.572     banghart 5062:         $path_part .= '/';
                   5063:         my $path_and_file = $path_part.$file_part;
                   5064:         if ($path_part ne $path) {
1.800     albertel 5065:             push(@return_files, ($path_and_file));
1.572     banghart 5066:         }
                   5067:     }
1.800     albertel 5068:     close(OUT);
1.574     banghart 5069:     return (@return_files);
1.572     banghart 5070: }
                   5071: 
1.745     raeburn  5072: #----------------------------------------------Get portfolio file permissions
1.629     banghart 5073: 
1.745     raeburn  5074: sub get_portfile_permissions {
                   5075:     my ($domain,$user) = @_;
1.613     albertel 5076:     my %current_permissions = &dump('file_permissions',$domain,$user);
1.615     albertel 5077:     my ($tmp)=keys(%current_permissions);
                   5078:     if ($tmp=~/^error:/) { undef(%current_permissions); }
1.745     raeburn  5079:     return \%current_permissions;
                   5080: }
                   5081: 
                   5082: #---------------------------------------------Get portfolio file access controls
                   5083: 
1.749     raeburn  5084: sub get_access_controls {
1.745     raeburn  5085:     my ($current_permissions,$group,$file) = @_;
1.769     albertel 5086:     my %access;
                   5087:     my $real_file = $file;
                   5088:     $file =~ s/\.meta$//;
1.745     raeburn  5089:     if (defined($file)) {
1.749     raeburn  5090:         if (ref($$current_permissions{$file."\0".'accesscontrol'}) eq 'HASH') {
                   5091:             foreach my $control (keys(%{$$current_permissions{$file."\0".'accesscontrol'}})) {
1.769     albertel 5092:                 $access{$real_file}{$control} = $$current_permissions{$file."\0".$control};
1.749     raeburn  5093:             }
                   5094:         }
1.745     raeburn  5095:     } else {
1.749     raeburn  5096:         foreach my $key (keys(%{$current_permissions})) {
                   5097:             if ($key =~ /\0accesscontrol$/) {
                   5098:                 if (defined($group)) {
                   5099:                     if ($key !~ m-^\Q$group\E/-) {
                   5100:                         next;
                   5101:                     }
                   5102:                 }
                   5103:                 my ($fullpath) = split(/\0/,$key);
                   5104:                 if (ref($$current_permissions{$key}) eq 'HASH') {
                   5105:                     foreach my $control (keys(%{$$current_permissions{$key}})) {
                   5106:                         $access{$fullpath}{$control}=$$current_permissions{$fullpath."\0".$control};
                   5107:                     }
                   5108:                 }
                   5109:             }
                   5110:         }
                   5111:     }
                   5112:     return %access;
                   5113: }
                   5114: 
                   5115: sub modify_access_controls {
                   5116:     my ($file_name,$changes,$domain,$user)=@_;
                   5117:     my ($outcome,$deloutcome);
                   5118:     my %store_permissions;
                   5119:     my %new_values;
                   5120:     my %new_control;
                   5121:     my %translation;
                   5122:     my @deletions = ();
                   5123:     my $now = time;
                   5124:     if (exists($$changes{'activate'})) {
                   5125:         if (ref($$changes{'activate'}) eq 'HASH') {
                   5126:             my @newitems = sort(keys(%{$$changes{'activate'}}));
                   5127:             my $numnew = scalar(@newitems);
                   5128:             for (my $i=0; $i<$numnew; $i++) {
                   5129:                 my $newkey = $newitems[$i];
                   5130:                 my $newid = &Apache::loncommon::get_cgi_id();
1.797     raeburn  5131:                 if ($newkey =~ /^\d+:/) { 
                   5132:                     $newkey =~ s/^(\d+)/$newid/;
                   5133:                     $translation{$1} = $newid;
                   5134:                 } elsif ($newkey =~ /^\d+_\d+_\d+:/) {
                   5135:                     $newkey =~ s/^(\d+_\d+_\d+)/$newid/;
                   5136:                     $translation{$1} = $newid;
                   5137:                 }
1.749     raeburn  5138:                 $new_values{$file_name."\0".$newkey} = 
                   5139:                                           $$changes{'activate'}{$newitems[$i]};
                   5140:                 $new_control{$newkey} = $now;
                   5141:             }
                   5142:         }
                   5143:     }
                   5144:     my %todelete;
                   5145:     my %changed_items;
                   5146:     foreach my $action ('delete','update') {
                   5147:         if (exists($$changes{$action})) {
                   5148:             if (ref($$changes{$action}) eq 'HASH') {
                   5149:                 foreach my $key (keys(%{$$changes{$action}})) {
                   5150:                     my ($itemnum) = ($key =~ /^([^:]+):/);
                   5151:                     if ($action eq 'delete') { 
                   5152:                         $todelete{$itemnum} = 1;
                   5153:                     } else {
                   5154:                         $changed_items{$itemnum} = $key;
                   5155:                     }
                   5156:                 }
1.745     raeburn  5157:             }
                   5158:         }
1.749     raeburn  5159:     }
                   5160:     # get lock on access controls for file.
                   5161:     my $lockhash = {
                   5162:                   $file_name."\0".'locked_access_records' => $env{'user.name'}.
                   5163:                                                        ':'.$env{'user.domain'},
                   5164:                    }; 
                   5165:     my $tries = 0;
                   5166:     my $gotlock = &newput('file_permissions',$lockhash,$domain,$user);
                   5167:    
                   5168:     while (($gotlock ne 'ok') && $tries <3) {
                   5169:         $tries ++;
                   5170:         sleep 1;
                   5171:         $gotlock = &newput('file_permissions',$lockhash,$domain,$user);
                   5172:     }
                   5173:     if ($gotlock eq 'ok') {
                   5174:         my %curr_permissions = &dump('file_permissions',$domain,$user,$file_name);
                   5175:         my ($tmp)=keys(%curr_permissions);
                   5176:         if ($tmp=~/^error:/) { undef(%curr_permissions); }
                   5177:         if (exists($curr_permissions{$file_name."\0".'accesscontrol'})) {
                   5178:             my $curr_controls = $curr_permissions{$file_name."\0".'accesscontrol'};
                   5179:             if (ref($curr_controls) eq 'HASH') {
                   5180:                 foreach my $control_item (keys(%{$curr_controls})) {
                   5181:                     my ($itemnum) = ($control_item =~ /^([^:]+):/);
                   5182:                     if (defined($todelete{$itemnum})) {
                   5183:                         push(@deletions,$file_name."\0".$control_item);
                   5184:                     } else {
                   5185:                         if (defined($changed_items{$itemnum})) {
                   5186:                             $new_control{$changed_items{$itemnum}} = $now;
                   5187:                             push(@deletions,$file_name."\0".$control_item);
                   5188:                             $new_values{$file_name."\0".$changed_items{$itemnum}} = $$changes{'update'}{$changed_items{$itemnum}};
                   5189:                         } else {
                   5190:                             $new_control{$control_item} = $$curr_controls{$control_item};
                   5191:                         }
                   5192:                     }
1.745     raeburn  5193:                 }
                   5194:             }
                   5195:         }
1.749     raeburn  5196:         $deloutcome = &del('file_permissions',\@deletions,$domain,$user);
                   5197:         $new_values{$file_name."\0".'accesscontrol'} = \%new_control;
                   5198:         $outcome = &put('file_permissions',\%new_values,$domain,$user);
                   5199:         #  remove lock
                   5200:         my @del_lock = ($file_name."\0".'locked_access_records');
                   5201:         my $dellockoutcome = &del('file_permissions',\@del_lock,$domain,$user);
                   5202:     } else {
                   5203:         $outcome = "error: could not obtain lockfile\n";  
1.745     raeburn  5204:     }
1.749     raeburn  5205:     return ($outcome,$deloutcome,\%new_values,\%translation);
1.745     raeburn  5206: }
                   5207: 
                   5208: #------------------------------------------------------Get Marked as Read Only
                   5209: 
                   5210: sub get_marked_as_readonly {
                   5211:     my ($domain,$user,$what,$group) = @_;
                   5212:     my $current_permissions = &get_portfile_permissions($domain,$user);
1.563     banghart 5213:     my @readonly_files;
1.629     banghart 5214:     my $cmp1=$what;
                   5215:     if (ref($what)) { $cmp1=join('',@{$what}) };
1.745     raeburn  5216:     while (my ($file_name,$value) = each(%{$current_permissions})) {
                   5217:         if (defined($group)) {
                   5218:             if ($file_name !~ m-^\Q$group\E/-) {
                   5219:                 next;
                   5220:             }
                   5221:         }
1.561     banghart 5222:         if (ref($value) eq "ARRAY"){
                   5223:             foreach my $stored_what (@{$value}) {
1.629     banghart 5224:                 my $cmp2=$stored_what;
1.759     albertel 5225:                 if (ref($stored_what) eq 'ARRAY') {
1.746     raeburn  5226:                     $cmp2=join('',@{$stored_what});
1.745     raeburn  5227:                 }
1.629     banghart 5228:                 if ($cmp1 eq $cmp2) {
1.561     banghart 5229:                     push(@readonly_files, $file_name);
1.745     raeburn  5230:                     last;
1.563     banghart 5231:                 } elsif (!defined($what)) {
                   5232:                     push(@readonly_files, $file_name);
1.745     raeburn  5233:                     last;
1.561     banghart 5234:                 }
                   5235:             }
1.745     raeburn  5236:         }
1.561     banghart 5237:     }
                   5238:     return @readonly_files;
                   5239: }
1.577     banghart 5240: #-----------------------------------------------------------Get Marked as Read Only Hash
1.561     banghart 5241: 
1.577     banghart 5242: sub get_marked_as_readonly_hash {
1.745     raeburn  5243:     my ($current_permissions,$group,$what) = @_;
1.577     banghart 5244:     my %readonly_files;
1.745     raeburn  5245:     while (my ($file_name,$value) = each(%{$current_permissions})) {
                   5246:         if (defined($group)) {
                   5247:             if ($file_name !~ m-^\Q$group\E/-) {
                   5248:                 next;
                   5249:             }
                   5250:         }
1.577     banghart 5251:         if (ref($value) eq "ARRAY"){
                   5252:             foreach my $stored_what (@{$value}) {
1.745     raeburn  5253:                 if (ref($stored_what) eq 'ARRAY') {
1.750     banghart 5254:                     foreach my $lock_descriptor(@{$stored_what}) {
                   5255:                         if ($lock_descriptor eq 'graded') {
                   5256:                             $readonly_files{$file_name} = 'graded';
                   5257:                         } elsif ($lock_descriptor eq 'handback') {
                   5258:                             $readonly_files{$file_name} = 'handback';
                   5259:                         } else {
                   5260:                             if (!exists($readonly_files{$file_name})) {
                   5261:                                 $readonly_files{$file_name} = 'locked';
                   5262:                             }
                   5263:                         }
1.745     raeburn  5264:                     }
1.750     banghart 5265:                 } 
1.577     banghart 5266:             }
                   5267:         } 
                   5268:     }
                   5269:     return %readonly_files;
                   5270: }
1.559     banghart 5271: # ------------------------------------------------------------ Unmark as Read Only
                   5272: 
                   5273: sub unmark_as_readonly {
1.629     banghart 5274:     # unmarks $file_name (if $file_name is defined), or all files locked by $what 
                   5275:     # for portfolio submissions, $what contains [$symb,$crsid] 
1.745     raeburn  5276:     my ($domain,$user,$what,$file_name,$group) = @_;
1.759     albertel 5277:     $file_name = &declutter_portfile($file_name);
1.634     albertel 5278:     my $symb_crs = $what;
                   5279:     if (ref($what)) { $symb_crs=join('',@$what); }
1.745     raeburn  5280:     my %current_permissions = &dump('file_permissions',$domain,$user,$group);
1.615     albertel 5281:     my ($tmp)=keys(%current_permissions);
                   5282:     if ($tmp=~/^error:/) { undef(%current_permissions); }
1.745     raeburn  5283:     my @readonly_files = &get_marked_as_readonly($domain,$user,$what,$group);
1.650     albertel 5284:     foreach my $file (@readonly_files) {
1.759     albertel 5285: 	my $clean_file = &declutter_portfile($file);
                   5286: 	if (defined($file_name) && ($file_name ne $clean_file)) { next; }
1.650     albertel 5287: 	my $current_locks = $current_permissions{$file};
1.563     banghart 5288:         my @new_locks;
                   5289:         my @del_keys;
                   5290:         if (ref($current_locks) eq "ARRAY"){
                   5291:             foreach my $locker (@{$current_locks}) {
1.632     albertel 5292:                 my $compare=$locker;
1.749     raeburn  5293:                 if (ref($locker) eq 'ARRAY') {
1.745     raeburn  5294:                     $compare=join('',@{$locker});
1.746     raeburn  5295:                     if ($compare ne $symb_crs) {
                   5296:                         push(@new_locks, $locker);
                   5297:                     }
1.563     banghart 5298:                 }
                   5299:             }
1.650     albertel 5300:             if (scalar(@new_locks) > 0) {
1.563     banghart 5301:                 $current_permissions{$file} = \@new_locks;
                   5302:             } else {
                   5303:                 push(@del_keys, $file);
1.613     albertel 5304:                 &del('file_permissions',\@del_keys, $domain, $user);
1.650     albertel 5305:                 delete($current_permissions{$file});
1.563     banghart 5306:             }
                   5307:         }
1.561     banghart 5308:     }
1.613     albertel 5309:     &put('file_permissions',\%current_permissions,$domain,$user);
1.559     banghart 5310:     return;
                   5311: }
1.512     banghart 5312: 
1.17      www      5313: # ------------------------------------------------------------ Directory lister
                   5314: 
                   5315: sub dirlist {
1.253     stredwic 5316:     my ($uri,$userdomain,$username,$alternateDirectoryRoot)=@_;
                   5317: 
1.18      www      5318:     $uri=~s/^\///;
                   5319:     $uri=~s/\/$//;
1.253     stredwic 5320:     my ($udom, $uname);
                   5321:     (undef,$udom,$uname)=split(/\//,$uri);
                   5322:     if(defined($userdomain)) {
                   5323:         $udom = $userdomain;
                   5324:     }
                   5325:     if(defined($username)) {
                   5326:         $uname = $username;
                   5327:     }
                   5328: 
                   5329:     my $dirRoot = $perlvar{'lonDocRoot'};
                   5330:     if(defined($alternateDirectoryRoot)) {
                   5331:         $dirRoot = $alternateDirectoryRoot;
                   5332:         $dirRoot =~ s/\/$//;
1.751     banghart 5333:     }
1.253     stredwic 5334: 
                   5335:     if($udom) {
                   5336:         if($uname) {
1.800     albertel 5337:             my $listing = &reply('ls2:'.$dirRoot.'/'.$uri,
                   5338: 				 &homeserver($uname,$udom));
1.605     matthew  5339:             my @listing_results;
                   5340:             if ($listing eq 'unknown_cmd') {
1.800     albertel 5341:                 $listing = &reply('ls:'.$dirRoot.'/'.$uri,
                   5342: 				  &homeserver($uname,$udom));
1.605     matthew  5343:                 @listing_results = split(/:/,$listing);
                   5344:             } else {
                   5345:                 @listing_results = map { &unescape($_); } split(/:/,$listing);
                   5346:             }
                   5347:             return @listing_results;
1.253     stredwic 5348:         } elsif(!defined($alternateDirectoryRoot)) {
1.800     albertel 5349:             my %allusers;
                   5350:             foreach my $tryserver (keys(%libserv)) {
1.253     stredwic 5351:                 if($hostdom{$tryserver} eq $udom) {
1.800     albertel 5352:                     my $listing = &reply('ls2:'.$perlvar{'lonDocRoot'}.'/res/'.
                   5353: 					 $udom, $tryserver);
1.605     matthew  5354:                     my @listing_results;
                   5355:                     if ($listing eq 'unknown_cmd') {
1.800     albertel 5356:                         $listing = &reply('ls:'.$perlvar{'lonDocRoot'}.'/res/'.
                   5357: 					  $udom, $tryserver);
1.605     matthew  5358:                         @listing_results = split(/:/,$listing);
                   5359:                     } else {
                   5360:                         @listing_results =
                   5361:                             map { &unescape($_); } split(/:/,$listing);
                   5362:                     }
                   5363:                     if ($listing_results[0] ne 'no_such_dir' && 
                   5364:                         $listing_results[0] ne 'empty'       &&
                   5365:                         $listing_results[0] ne 'con_lost') {
1.800     albertel 5366:                         foreach my $line (@listing_results) {
                   5367:                             my ($entry) = split(/&/,$line,2);
                   5368:                             $allusers{$entry} = 1;
1.253     stredwic 5369:                         }
                   5370:                     }
1.191     harris41 5371:                 }
1.253     stredwic 5372:             }
                   5373:             my $alluserstr='';
1.800     albertel 5374:             foreach my $user (sort(keys(%allusers))) {
                   5375:                 $alluserstr.=$user.'&user:';
1.253     stredwic 5376:             }
                   5377:             $alluserstr=~s/:$//;
                   5378:             return split(/:/,$alluserstr);
                   5379:         } else {
1.800     albertel 5380:             return ('missing user name');
1.253     stredwic 5381:         }
                   5382:     } elsif(!defined($alternateDirectoryRoot)) {
                   5383:         my $tryserver;
                   5384:         my %alldom=();
1.800     albertel 5385:         foreach $tryserver (keys(%libserv)) {
1.253     stredwic 5386:             $alldom{$hostdom{$tryserver}}=1;
                   5387:         }
                   5388:         my $alldomstr='';
1.800     albertel 5389:         foreach my $domain (sort(keys(%alldom))) {
                   5390:             $alldomstr.=$perlvar{'lonDocRoot'}.'/res/'.$domain.'/&domain:';
1.253     stredwic 5391:         }
                   5392:         $alldomstr=~s/:$//;
                   5393:         return split(/:/,$alldomstr);       
                   5394:     } else {
1.800     albertel 5395:         return ('missing domain');
1.275     stredwic 5396:     }
                   5397: }
                   5398: 
                   5399: # --------------------------------------------- GetFileTimestamp
                   5400: # This function utilizes dirlist and returns the date stamp for
                   5401: # when it was last modified.  It will also return an error of -1
                   5402: # if an error occurs
                   5403: 
1.410     matthew  5404: ##
                   5405: ## FIXME: This subroutine assumes its caller knows something about the
                   5406: ## directory structure of the home server for the student ($root).
                   5407: ## Not a good assumption to make.  Since this is for looking up files
                   5408: ## in user directories, the full path should be constructed by lond, not
                   5409: ## whatever machine we request data from.
                   5410: ##
1.275     stredwic 5411: sub GetFileTimestamp {
                   5412:     my ($studentDomain,$studentName,$filename,$root)=@_;
1.807     albertel 5413:     $studentDomain = &LONCAPA::clean_domain($studentDomain);
                   5414:     $studentName   = &LONCAPA::clean_username($studentName);
1.275     stredwic 5415:     my $subdir=$studentName.'__';
                   5416:     $subdir =~ s/(.)(.)(.).*/$1\/$2\/$3/;
                   5417:     my $proname="$studentDomain/$subdir/$studentName";
                   5418:     $proname .= '/'.$filename;
1.375     matthew  5419:     my ($fileStat) = &Apache::lonnet::dirlist($proname, $studentDomain, 
                   5420:                                               $studentName, $root);
1.275     stredwic 5421:     my @stats = split('&', $fileStat);
                   5422:     if($stats[0] ne 'empty' && $stats[0] ne 'no_such_dir') {
1.375     matthew  5423:         # @stats contains first the filename, then the stat output
                   5424:         return $stats[10]; # so this is 10 instead of 9.
1.275     stredwic 5425:     } else {
                   5426:         return -1;
1.253     stredwic 5427:     }
1.26      www      5428: }
                   5429: 
1.712     albertel 5430: sub stat_file {
                   5431:     my ($uri) = @_;
1.787     albertel 5432:     $uri = &clutter_with_no_wrapper($uri);
1.722     albertel 5433: 
1.712     albertel 5434:     my ($udom,$uname,$file,$dir);
                   5435:     if ($uri =~ m-^/(uploaded|editupload)/-) {
                   5436: 	($udom,$uname,$file) =
1.807     albertel 5437: 	    ($uri =~ m-/(?:uploaded|editupload)/?($match_domain)/?($match_username)/?(.*)-);
1.712     albertel 5438: 	$file = 'userfiles/'.$file;
1.740     www      5439: 	$dir = &propath($udom,$uname);
1.712     albertel 5440:     }
                   5441:     if ($uri =~ m-^/res/-) {
                   5442: 	($udom,$uname) = 
1.807     albertel 5443: 	    ($uri =~ m-/(?:res)/?($match_domain)/?($match_username)/-);
1.712     albertel 5444: 	$file = $uri;
                   5445:     }
                   5446: 
                   5447:     if (!$udom || !$uname || !$file) {
                   5448: 	# unable to handle the uri
                   5449: 	return ();
                   5450:     }
                   5451: 
                   5452:     my ($result) = &dirlist($file,$udom,$uname,$dir);
                   5453:     my @stats = split('&', $result);
1.721     banghart 5454:     
1.712     albertel 5455:     if($stats[0] ne 'empty' && $stats[0] ne 'no_such_dir') {
                   5456: 	shift(@stats); #filename is first
                   5457: 	return @stats;
                   5458:     }
                   5459:     return ();
                   5460: }
                   5461: 
1.26      www      5462: # -------------------------------------------------------- Value of a Condition
                   5463: 
1.713     albertel 5464: # gets the value of a specific preevaluated condition
                   5465: #    stored in the string  $env{user.state.<cid>}
                   5466: # or looks up a condition reference in the bighash and if if hasn't
                   5467: # already been evaluated recurses into docondval to get the value of
                   5468: # the condition, then memoizing it to 
                   5469: #   $env{user.state.<cid>.<condition>}
1.40      www      5470: sub directcondval {
                   5471:     my $number=shift;
1.620     albertel 5472:     if (!defined($env{'user.state.'.$env{'request.course.id'}})) {
1.555     albertel 5473: 	&Apache::lonuserstate::evalstate();
                   5474:     }
1.713     albertel 5475:     if (exists($env{'user.state.'.$env{'request.course.id'}.".$number"})) {
                   5476: 	return $env{'user.state.'.$env{'request.course.id'}.".$number"};
                   5477:     } elsif ($number =~ /^_/) {
                   5478: 	my $sub_condition;
                   5479: 	if (tie(my %bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
                   5480: 		&GDBM_READER(),0640)) {
                   5481: 	    $sub_condition=$bighash{'conditions'.$number};
                   5482: 	    untie(%bighash);
                   5483: 	}
                   5484: 	my $value = &docondval($sub_condition);
                   5485: 	&appenv('user.state.'.$env{'request.course.id'}.".$number" => $value);
                   5486: 	return $value;
                   5487:     }
1.620     albertel 5488:     if ($env{'user.state.'.$env{'request.course.id'}}) {
                   5489:        return substr($env{'user.state.'.$env{'request.course.id'}},$number,1);
1.40      www      5490:     } else {
                   5491:        return 2;
                   5492:     }
                   5493: }
                   5494: 
1.713     albertel 5495: # get the collection of conditions for this resource
1.26      www      5496: sub condval {
                   5497:     my $condidx=shift;
1.54      www      5498:     my $allpathcond='';
1.713     albertel 5499:     foreach my $cond (split(/\|/,$condidx)) {
                   5500: 	if (defined($env{'acc.cond.'.$env{'request.course.id'}.'.'.$cond})) {
                   5501: 	    $allpathcond.=
                   5502: 		'('.$env{'acc.cond.'.$env{'request.course.id'}.'.'.$cond}.')|';
                   5503: 	}
1.191     harris41 5504:     }
1.54      www      5505:     $allpathcond=~s/\|$//;
1.713     albertel 5506:     return &docondval($allpathcond);
                   5507: }
                   5508: 
                   5509: #evaluates an expression of conditions
                   5510: sub docondval {
                   5511:     my ($allpathcond) = @_;
                   5512:     my $result=0;
                   5513:     if ($env{'request.course.id'}
                   5514: 	&& defined($allpathcond)) {
                   5515: 	my $operand='|';
                   5516: 	my @stack;
                   5517: 	foreach my $chunk ($allpathcond=~/(\d+|_\d+\.\d+|\(|\)|\&|\|)/g) {
                   5518: 	    if ($chunk eq '(') {
                   5519: 		push @stack,($operand,$result);
                   5520: 	    } elsif ($chunk eq ')') {
                   5521: 		my $before=pop @stack;
                   5522: 		if (pop @stack eq '&') {
                   5523: 		    $result=$result>$before?$before:$result;
                   5524: 		} else {
                   5525: 		    $result=$result>$before?$result:$before;
                   5526: 		}
                   5527: 	    } elsif (($chunk eq '&') || ($chunk eq '|')) {
                   5528: 		$operand=$chunk;
                   5529: 	    } else {
                   5530: 		my $new=directcondval($chunk);
                   5531: 		if ($operand eq '&') {
                   5532: 		    $result=$result>$new?$new:$result;
                   5533: 		} else {
                   5534: 		    $result=$result>$new?$result:$new;
                   5535: 		}
                   5536: 	    }
                   5537: 	}
1.26      www      5538:     }
                   5539:     return $result;
1.421     albertel 5540: }
                   5541: 
                   5542: # ---------------------------------------------------- Devalidate courseresdata
                   5543: 
                   5544: sub devalidatecourseresdata {
                   5545:     my ($coursenum,$coursedomain)=@_;
                   5546:     my $hashid=$coursenum.':'.$coursedomain;
1.599     albertel 5547:     &devalidate_cache_new('courseres',$hashid);
1.28      www      5548: }
                   5549: 
1.763     www      5550: 
1.200     www      5551: # --------------------------------------------------- Course Resourcedata Query
                   5552: 
1.624     albertel 5553: sub get_courseresdata {
                   5554:     my ($coursenum,$coursedomain)=@_;
1.200     www      5555:     my $coursehom=&homeserver($coursenum,$coursedomain);
                   5556:     my $hashid=$coursenum.':'.$coursedomain;
1.599     albertel 5557:     my ($result,$cached)=&is_cached_new('courseres',$hashid);
1.624     albertel 5558:     my %dumpreply;
1.417     albertel 5559:     unless (defined($cached)) {
1.624     albertel 5560: 	%dumpreply=&dump('resourcedata',$coursedomain,$coursenum);
1.417     albertel 5561: 	$result=\%dumpreply;
1.251     albertel 5562: 	my ($tmp) = keys(%dumpreply);
                   5563: 	if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
1.599     albertel 5564: 	    &do_cache_new('courseres',$hashid,$result,600);
1.306     albertel 5565: 	} elsif ($tmp =~ /^(con_lost|no_such_host)/) {
                   5566: 	    return $tmp;
1.416     albertel 5567: 	} elsif ($tmp =~ /^(error)/) {
1.417     albertel 5568: 	    $result=undef;
1.599     albertel 5569: 	    &do_cache_new('courseres',$hashid,$result,600);
1.250     albertel 5570: 	}
                   5571:     }
1.624     albertel 5572:     return $result;
                   5573: }
                   5574: 
1.633     albertel 5575: sub devalidateuserresdata {
                   5576:     my ($uname,$udom)=@_;
                   5577:     my $hashid="$udom:$uname";
                   5578:     &devalidate_cache_new('userres',$hashid);
                   5579: }
                   5580: 
1.624     albertel 5581: sub get_userresdata {
                   5582:     my ($uname,$udom)=@_;
                   5583:     #most student don\'t have any data set, check if there is some data
                   5584:     if (&EXT_cache_status($udom,$uname)) { return undef; }
                   5585: 
                   5586:     my $hashid="$udom:$uname";
                   5587:     my ($result,$cached)=&is_cached_new('userres',$hashid);
                   5588:     if (!defined($cached)) {
                   5589: 	my %resourcedata=&dump('resourcedata',$udom,$uname);
                   5590: 	$result=\%resourcedata;
                   5591: 	&do_cache_new('userres',$hashid,$result,600);
                   5592:     }
                   5593:     my ($tmp)=keys(%$result);
                   5594:     if (($tmp!~/^error\:/) && ($tmp!~/^con_lost/)) {
                   5595: 	return $result;
                   5596:     }
                   5597:     #error 2 occurs when the .db doesn't exist
                   5598:     if ($tmp!~/error: 2 /) {
1.672     albertel 5599: 	&logthis("<font color=\"blue\">WARNING:".
1.624     albertel 5600: 		 " Trying to get resource data for ".
                   5601: 		 $uname." at ".$udom.": ".
                   5602: 		 $tmp."</font>");
                   5603:     } elsif ($tmp=~/error: 2 /) {
1.633     albertel 5604: 	#&EXT_cache_set($udom,$uname);
                   5605: 	&do_cache_new('userres',$hashid,undef,600);
1.636     albertel 5606: 	undef($tmp); # not really an error so don't send it back
1.624     albertel 5607:     }
                   5608:     return $tmp;
                   5609: }
                   5610: 
                   5611: sub resdata {
                   5612:     my ($name,$domain,$type,@which)=@_;
                   5613:     my $result;
                   5614:     if ($type eq 'course') {
                   5615: 	$result=&get_courseresdata($name,$domain);
                   5616:     } elsif ($type eq 'user') {
                   5617: 	$result=&get_userresdata($name,$domain);
                   5618:     }
                   5619:     if (!ref($result)) { return $result; }    
1.251     albertel 5620:     foreach my $item (@which) {
1.417     albertel 5621: 	if (defined($result->{$item})) {
                   5622: 	    return $result->{$item};
1.251     albertel 5623: 	}
1.250     albertel 5624:     }
1.291     albertel 5625:     return undef;
1.200     www      5626: }
                   5627: 
1.379     matthew  5628: #
                   5629: # EXT resource caching routines
                   5630: #
                   5631: 
                   5632: sub clear_EXT_cache_status {
1.383     albertel 5633:     &delenv('cache.EXT.');
1.379     matthew  5634: }
                   5635: 
                   5636: sub EXT_cache_status {
                   5637:     my ($target_domain,$target_user) = @_;
1.383     albertel 5638:     my $cachename = 'cache.EXT.'.$target_user.'.'.$target_domain;
1.620     albertel 5639:     if (exists($env{$cachename}) && ($env{$cachename}+600) > time) {
1.379     matthew  5640:         # We know already the user has no data
                   5641:         return 1;
                   5642:     } else {
                   5643:         return 0;
                   5644:     }
                   5645: }
                   5646: 
                   5647: sub EXT_cache_set {
                   5648:     my ($target_domain,$target_user) = @_;
1.383     albertel 5649:     my $cachename = 'cache.EXT.'.$target_user.'.'.$target_domain;
1.633     albertel 5650:     #&appenv($cachename => time);
1.379     matthew  5651: }
                   5652: 
1.28      www      5653: # --------------------------------------------------------- Value of a Variable
1.58      www      5654: sub EXT {
1.715     albertel 5655: 
1.395     albertel 5656:     my ($varname,$symbparm,$udom,$uname,$usection,$recurse)=@_;
1.68      www      5657:     unless ($varname) { return ''; }
1.218     albertel 5658:     #get real user name/domain, courseid and symb
                   5659:     my $courseid;
1.359     albertel 5660:     my $publicuser;
1.427     www      5661:     if ($symbparm) {
                   5662: 	$symbparm=&get_symb_from_alias($symbparm);
                   5663:     }
1.218     albertel 5664:     if (!($uname && $udom)) {
1.790     albertel 5665:       (my $cursymb,$courseid,$udom,$uname,$publicuser)= &whichuser($symbparm);
1.218     albertel 5666:       if (!$symbparm) {	$symbparm=$cursymb; }
                   5667:     } else {
1.620     albertel 5668: 	$courseid=$env{'request.course.id'};
1.218     albertel 5669:     }
1.48      www      5670:     my ($realm,$space,$qualifier,@therest)=split(/\./,$varname);
                   5671:     my $rest;
1.320     albertel 5672:     if (defined($therest[0])) {
1.48      www      5673:        $rest=join('.',@therest);
                   5674:     } else {
                   5675:        $rest='';
                   5676:     }
1.320     albertel 5677: 
1.57      www      5678:     my $qualifierrest=$qualifier;
                   5679:     if ($rest) { $qualifierrest.='.'.$rest; }
                   5680:     my $spacequalifierrest=$space;
                   5681:     if ($qualifierrest) { $spacequalifierrest.='.'.$qualifierrest; }
1.28      www      5682:     if ($realm eq 'user') {
1.48      www      5683: # --------------------------------------------------------------- user.resource
                   5684: 	if ($space eq 'resource') {
1.651     albertel 5685: 	    if ( (defined($Apache::lonhomework::parsing_a_problem)
                   5686: 		  || defined($Apache::lonhomework::parsing_a_task))
                   5687: 		 &&
1.744     albertel 5688: 		 ($symbparm eq &symbread()) ) {	
                   5689: 		# if we are in the middle of processing the resource the
                   5690: 		# get the value we are planning on committing
                   5691:                 if (defined($Apache::lonhomework::results{$qualifierrest})) {
                   5692:                     return $Apache::lonhomework::results{$qualifierrest};
                   5693:                 } else {
                   5694:                     return $Apache::lonhomework::history{$qualifierrest};
                   5695:                 }
1.335     albertel 5696: 	    } else {
1.359     albertel 5697: 		my %restored;
1.620     albertel 5698: 		if ($publicuser || $env{'request.state'} eq 'construct') {
1.359     albertel 5699: 		    %restored=&tmprestore($symbparm,$courseid,$udom,$uname);
                   5700: 		} else {
                   5701: 		    %restored=&restore($symbparm,$courseid,$udom,$uname);
                   5702: 		}
1.335     albertel 5703: 		return $restored{$qualifierrest};
                   5704: 	    }
1.48      www      5705: # ----------------------------------------------------------------- user.access
                   5706:         } elsif ($space eq 'access') {
1.218     albertel 5707: 	    # FIXME - not supporting calls for a specific user
1.48      www      5708:             return &allowed($qualifier,$rest);
                   5709: # ------------------------------------------ user.preferences, user.environment
                   5710:         } elsif (($space eq 'preferences') || ($space eq 'environment')) {
1.620     albertel 5711: 	    if (($uname eq $env{'user.name'}) &&
                   5712: 		($udom eq $env{'user.domain'})) {
                   5713: 		return $env{join('.',('environment',$qualifierrest))};
1.218     albertel 5714: 	    } else {
1.359     albertel 5715: 		my %returnhash;
                   5716: 		if (!$publicuser) {
                   5717: 		    %returnhash=&userenvironment($udom,$uname,
                   5718: 						 $qualifierrest);
                   5719: 		}
1.218     albertel 5720: 		return $returnhash{$qualifierrest};
                   5721: 	    }
1.48      www      5722: # ----------------------------------------------------------------- user.course
                   5723:         } elsif ($space eq 'course') {
1.218     albertel 5724: 	    # FIXME - not supporting calls for a specific user
1.620     albertel 5725:             return $env{join('.',('request.course',$qualifier))};
1.48      www      5726: # ------------------------------------------------------------------- user.role
                   5727:         } elsif ($space eq 'role') {
1.218     albertel 5728: 	    # FIXME - not supporting calls for a specific user
1.620     albertel 5729:             my ($role,$where)=split(/\./,$env{'request.role'});
1.48      www      5730:             if ($qualifier eq 'value') {
                   5731: 		return $role;
                   5732:             } elsif ($qualifier eq 'extent') {
                   5733:                 return $where;
                   5734:             }
                   5735: # ----------------------------------------------------------------- user.domain
                   5736:         } elsif ($space eq 'domain') {
1.218     albertel 5737:             return $udom;
1.48      www      5738: # ------------------------------------------------------------------- user.name
                   5739:         } elsif ($space eq 'name') {
1.218     albertel 5740:             return $uname;
1.48      www      5741: # ---------------------------------------------------- Any other user namespace
1.29      www      5742:         } else {
1.359     albertel 5743: 	    my %reply;
                   5744: 	    if (!$publicuser) {
                   5745: 		%reply=&get($space,[$qualifierrest],$udom,$uname);
                   5746: 	    }
                   5747: 	    return $reply{$qualifierrest};
1.48      www      5748:         }
1.236     www      5749:     } elsif ($realm eq 'query') {
                   5750: # ---------------------------------------------- pull stuff out of query string
1.384     albertel 5751:         &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
                   5752: 						[$spacequalifierrest]);
1.620     albertel 5753: 	return $env{'form.'.$spacequalifierrest}; 
1.236     www      5754:    } elsif ($realm eq 'request') {
1.48      www      5755: # ------------------------------------------------------------- request.browser
                   5756:         if ($space eq 'browser') {
1.430     www      5757: 	    if ($qualifier eq 'textremote') {
1.676     albertel 5758: 		if (&Apache::lonlocal::mt('textual_remote_display') eq 'on') {
1.430     www      5759: 		    return 1;
                   5760: 		} else {
                   5761: 		    return 0;
                   5762: 		}
                   5763: 	    } else {
1.620     albertel 5764: 		return $env{'browser.'.$qualifier};
1.430     www      5765: 	    }
1.57      www      5766: # ------------------------------------------------------------ request.filename
                   5767:         } else {
1.620     albertel 5768:             return $env{'request.'.$spacequalifierrest};
1.29      www      5769:         }
1.28      www      5770:     } elsif ($realm eq 'course') {
1.48      www      5771: # ---------------------------------------------------------- course.description
1.620     albertel 5772:         return $env{'course.'.$courseid.'.'.$spacequalifierrest};
1.57      www      5773:     } elsif ($realm eq 'resource') {
1.165     www      5774: 
1.620     albertel 5775: 	if (defined($courseid) && $courseid eq $env{'request.course.id'}) {
1.539     albertel 5776: 	    if (!$symbparm) { $symbparm=&symbread(); }
                   5777: 	}
1.693     albertel 5778: 
                   5779: 	if ($space eq 'title') {
                   5780: 	    if (!$symbparm) { $symbparm = $env{'request.filename'}; }
                   5781: 	    return &gettitle($symbparm);
                   5782: 	}
                   5783: 	
                   5784: 	if ($space eq 'map') {
                   5785: 	    my ($map) = &decode_symb($symbparm);
                   5786: 	    return &symbread($map);
                   5787: 	}
                   5788: 
                   5789: 	my ($section, $group, @groups);
1.593     albertel 5790: 	my ($courselevelm,$courselevel);
1.539     albertel 5791: 	if ($symbparm && defined($courseid) && 
1.620     albertel 5792: 	    $courseid eq $env{'request.course.id'}) {
1.165     www      5793: 
1.218     albertel 5794: 	    #print '<br>'.$space.' - '.$qualifier.' - '.$spacequalifierrest;
1.165     www      5795: 
1.60      www      5796: # ----------------------------------------------------- Cascading lookup scheme
1.218     albertel 5797: 	    my $symbp=$symbparm;
1.735     albertel 5798: 	    my $mapp=&deversion((&decode_symb($symbp))[0]);
1.218     albertel 5799: 
                   5800: 	    my $symbparm=$symbp.'.'.$spacequalifierrest;
                   5801: 	    my $mapparm=$mapp.'___(all).'.$spacequalifierrest;
                   5802: 
1.620     albertel 5803: 	    if (($env{'user.name'} eq $uname) &&
                   5804: 		($env{'user.domain'} eq $udom)) {
                   5805: 		$section=$env{'request.course.sec'};
1.733     raeburn  5806:                 @groups = split(/:/,$env{'request.course.groups'});  
                   5807:                 @groups=&sort_course_groups($courseid,@groups); 
1.218     albertel 5808: 	    } else {
1.539     albertel 5809: 		if (! defined($usection)) {
1.551     albertel 5810: 		    $section=&getsection($udom,$uname,$courseid);
1.539     albertel 5811: 		} else {
                   5812: 		    $section = $usection;
                   5813: 		}
1.733     raeburn  5814:                 @groups = &get_users_groups($udom,$uname,$courseid);
1.218     albertel 5815: 	    }
                   5816: 
                   5817: 	    my $seclevel=$courseid.'.['.$section.'].'.$spacequalifierrest;
                   5818: 	    my $seclevelr=$courseid.'.['.$section.'].'.$symbparm;
                   5819: 	    my $seclevelm=$courseid.'.['.$section.'].'.$mapparm;
                   5820: 
1.593     albertel 5821: 	    $courselevel=$courseid.'.'.$spacequalifierrest;
1.218     albertel 5822: 	    my $courselevelr=$courseid.'.'.$symbparm;
1.593     albertel 5823: 	    $courselevelm=$courseid.'.'.$mapparm;
1.69      www      5824: 
1.60      www      5825: # ----------------------------------------------------------- first, check user
1.624     albertel 5826: 
                   5827: 	    my $userreply=&resdata($uname,$udom,'user',
                   5828: 				       ($courselevelr,$courselevelm,
                   5829: 					$courselevel));
                   5830: 	    if (defined($userreply)) { return $userreply; }
1.95      www      5831: 
1.594     albertel 5832: # ------------------------------------------------ second, check some of course
1.684     raeburn  5833:             my $coursereply;
1.691     raeburn  5834:             if (@groups > 0) {
                   5835:                 $coursereply = &check_group_parms($courseid,\@groups,$symbparm,
                   5836:                                        $mapparm,$spacequalifierrest);
1.684     raeburn  5837:                 if (defined($coursereply)) { return $coursereply; }
                   5838:             }
1.96      www      5839: 
1.684     raeburn  5840: 	    $coursereply=&resdata($env{'course.'.$courseid.'.num'},
1.624     albertel 5841: 				     $env{'course.'.$courseid.'.domain'},
                   5842: 				     'course',
                   5843: 				     ($seclevelr,$seclevelm,$seclevel,
                   5844: 				      $courselevelr));
1.287     albertel 5845: 	    if (defined($coursereply)) { return $coursereply; }
1.200     www      5846: 
1.60      www      5847: # ------------------------------------------------------ third, check map parms
1.218     albertel 5848: 	    my %parmhash=();
                   5849: 	    my $thisparm='';
                   5850: 	    if (tie(%parmhash,'GDBM_File',
1.620     albertel 5851: 		    $env{'request.course.fn'}.'_parms.db',
1.256     albertel 5852: 		    &GDBM_READER(),0640)) {
1.218     albertel 5853: 		$thisparm=$parmhash{$symbparm};
                   5854: 		untie(%parmhash);
                   5855: 	    }
                   5856: 	    if ($thisparm) { return $thisparm; }
                   5857: 	}
1.594     albertel 5858: # ------------------------------------------ fourth, look in resource metadata
1.71      www      5859: 
1.218     albertel 5860: 	$spacequalifierrest=~s/\./\_/;
1.282     albertel 5861: 	my $filename;
                   5862: 	if (!$symbparm) { $symbparm=&symbread(); }
                   5863: 	if ($symbparm) {
1.409     www      5864: 	    $filename=(&decode_symb($symbparm))[2];
1.282     albertel 5865: 	} else {
1.620     albertel 5866: 	    $filename=$env{'request.filename'};
1.282     albertel 5867: 	}
                   5868: 	my $metadata=&metadata($filename,$spacequalifierrest);
1.288     albertel 5869: 	if (defined($metadata)) { return $metadata; }
1.282     albertel 5870: 	$metadata=&metadata($filename,'parameter_'.$spacequalifierrest);
1.288     albertel 5871: 	if (defined($metadata)) { return $metadata; }
1.142     www      5872: 
1.594     albertel 5873: # ---------------------------------------------- fourth, look in rest pf course
1.593     albertel 5874: 	if ($symbparm && defined($courseid) && 
1.620     albertel 5875: 	    $courseid eq $env{'request.course.id'}) {
1.624     albertel 5876: 	    my $coursereply=&resdata($env{'course.'.$courseid.'.num'},
                   5877: 				     $env{'course.'.$courseid.'.domain'},
                   5878: 				     'course',
                   5879: 				     ($courselevelm,$courselevel));
1.593     albertel 5880: 	    if (defined($coursereply)) { return $coursereply; }
                   5881: 	}
1.145     www      5882: # ------------------------------------------------------------------ Cascade up
1.218     albertel 5883: 	unless ($space eq '0') {
1.336     albertel 5884: 	    my @parts=split(/_/,$space);
                   5885: 	    my $id=pop(@parts);
                   5886: 	    my $part=join('_',@parts);
                   5887: 	    if ($part eq '') { $part='0'; }
                   5888: 	    my $partgeneral=&EXT('resource.'.$part.'.'.$qualifierrest,
1.395     albertel 5889: 				 $symbparm,$udom,$uname,$section,1);
1.337     albertel 5890: 	    if (defined($partgeneral)) { return $partgeneral; }
1.218     albertel 5891: 	}
1.395     albertel 5892: 	if ($recurse) { return undef; }
                   5893: 	my $pack_def=&packages_tab_default($filename,$varname);
                   5894: 	if (defined($pack_def)) { return $pack_def; }
1.71      www      5895: 
1.48      www      5896: # ---------------------------------------------------- Any other user namespace
                   5897:     } elsif ($realm eq 'environment') {
                   5898: # ----------------------------------------------------------------- environment
1.620     albertel 5899: 	if (($uname eq $env{'user.name'})&&($udom eq $env{'user.domain'})) {
                   5900: 	    return $env{'environment.'.$spacequalifierrest};
1.219     albertel 5901: 	} else {
1.770     albertel 5902: 	    if ($uname eq 'anonymous' && $udom eq '') {
                   5903: 		return '';
                   5904: 	    }
1.219     albertel 5905: 	    my %returnhash=&userenvironment($udom,$uname,
                   5906: 					    $spacequalifierrest);
                   5907: 	    return $returnhash{$spacequalifierrest};
                   5908: 	}
1.28      www      5909:     } elsif ($realm eq 'system') {
1.48      www      5910: # ----------------------------------------------------------------- system.time
                   5911: 	if ($space eq 'time') {
                   5912: 	    return time;
                   5913:         }
1.696     albertel 5914:     } elsif ($realm eq 'server') {
                   5915: # ----------------------------------------------------------------- system.time
                   5916: 	if ($space eq 'name') {
                   5917: 	    return $ENV{'SERVER_NAME'};
                   5918:         }
1.28      www      5919:     }
1.48      www      5920:     return '';
1.61      www      5921: }
                   5922: 
1.691     raeburn  5923: sub check_group_parms {
                   5924:     my ($courseid,$groups,$symbparm,$mapparm,$what) = @_;
                   5925:     my @groupitems = ();
                   5926:     my $resultitem;
                   5927:     my @levels = ($symbparm,$mapparm,$what);
                   5928:     foreach my $group (@{$groups}) {
                   5929:         foreach my $level (@levels) {
                   5930:              my $item = $courseid.'.['.$group.'].'.$level;
                   5931:              push(@groupitems,$item);
                   5932:         }
                   5933:     }
                   5934:     my $coursereply = &resdata($env{'course.'.$courseid.'.num'},
                   5935:                             $env{'course.'.$courseid.'.domain'},
                   5936:                                      'course',@groupitems);
                   5937:     return $coursereply;
                   5938: }
                   5939: 
                   5940: sub sort_course_groups { # Sort groups based on defined rankings. Default is sort().
1.733     raeburn  5941:     my ($courseid,@groups) = @_;
                   5942:     @groups = sort(@groups);
1.691     raeburn  5943:     return @groups;
                   5944: }
                   5945: 
1.395     albertel 5946: sub packages_tab_default {
                   5947:     my ($uri,$varname)=@_;
                   5948:     my (undef,$part,$name)=split(/\./,$varname);
1.738     albertel 5949: 
                   5950:     my (@extension,@specifics,$do_default);
                   5951:     foreach my $package (split(/,/,&metadata($uri,'packages'))) {
1.395     albertel 5952: 	my ($pack_type,$pack_part)=split(/_/,$package,2);
1.738     albertel 5953: 	if ($pack_type eq 'default') {
                   5954: 	    $do_default=1;
                   5955: 	} elsif ($pack_type eq 'extension') {
                   5956: 	    push(@extension,[$package,$pack_type,$pack_part]);
                   5957: 	} else {
                   5958: 	    push(@specifics,[$package,$pack_type,$pack_part]);
                   5959: 	}
                   5960:     }
                   5961:     # first look for a package that matches the requested part id
                   5962:     foreach my $package (@specifics) {
                   5963: 	my (undef,$pack_type,$pack_part)=@{$package};
                   5964: 	next if ($pack_part ne $part);
                   5965: 	if (defined($packagetab{"$pack_type&$name&default"})) {
                   5966: 	    return $packagetab{"$pack_type&$name&default"};
                   5967: 	}
                   5968:     }
                   5969:     # look for any possible matching non extension_ package
                   5970:     foreach my $package (@specifics) {
                   5971: 	my (undef,$pack_type,$pack_part)=@{$package};
1.468     albertel 5972: 	if (defined($packagetab{"$pack_type&$name&default"})) {
                   5973: 	    return $packagetab{"$pack_type&$name&default"};
                   5974: 	}
1.585     albertel 5975: 	if ($pack_type eq 'part') { $pack_part='0'; }
1.468     albertel 5976: 	if (defined($packagetab{$pack_type."_".$pack_part."&$name&default"})) {
                   5977: 	    return $packagetab{$pack_type."_".$pack_part."&$name&default"};
1.395     albertel 5978: 	}
                   5979:     }
1.738     albertel 5980:     # look for any posible extension_ match
                   5981:     foreach my $package (@extension) {
                   5982: 	my ($package,$pack_type)=@{$package};
                   5983: 	if (defined($packagetab{"$pack_type&$name&default"})) {
                   5984: 	    return $packagetab{"$pack_type&$name&default"};
                   5985: 	}
                   5986: 	if (defined($packagetab{$package."&$name&default"})) {
                   5987: 	    return $packagetab{$package."&$name&default"};
                   5988: 	}
                   5989:     }
                   5990:     # look for a global default setting
                   5991:     if ($do_default && defined($packagetab{"default&$name&default"})) {
                   5992: 	return $packagetab{"default&$name&default"};
                   5993:     }
1.395     albertel 5994:     return undef;
                   5995: }
                   5996: 
1.334     albertel 5997: sub add_prefix_and_part {
                   5998:     my ($prefix,$part)=@_;
                   5999:     my $keyroot;
                   6000:     if (defined($prefix) && $prefix !~ /^__/) {
                   6001: 	# prefix that has a part already
                   6002: 	$keyroot=$prefix;
                   6003:     } elsif (defined($prefix)) {
                   6004: 	# prefix that is missing a part
                   6005: 	if (defined($part)) { $keyroot='_'.$part.substr($prefix,1); }
                   6006:     } else {
                   6007: 	# no prefix at all
                   6008: 	if (defined($part)) { $keyroot='_'.$part; }
                   6009:     }
                   6010:     return $keyroot;
                   6011: }
                   6012: 
1.71      www      6013: # ---------------------------------------------------------------- Get metadata
                   6014: 
1.599     albertel 6015: my %metaentry;
1.71      www      6016: sub metadata {
1.176     www      6017:     my ($uri,$what,$liburi,$prefix,$depthcount)=@_;
1.71      www      6018:     $uri=&declutter($uri);
1.288     albertel 6019:     # if it is a non metadata possible uri return quickly
1.529     albertel 6020:     if (($uri eq '') || 
                   6021: 	(($uri =~ m|^/*adm/|) && 
1.698     albertel 6022: 	     ($uri !~ m|^adm/includes|) && ($uri !~ m|/bulletinboard$|)) ||
1.423     albertel 6023:         ($uri =~ m|/$|) || ($uri =~ m|/.meta$|) || ($uri =~ /^~/) ||
1.807     albertel 6024: 	($uri =~ m|home/$match_username/public_html/|)) {
1.468     albertel 6025: 	return undef;
1.288     albertel 6026:     }
1.73      www      6027:     my $filename=$uri;
                   6028:     $uri=~s/\.meta$//;
1.172     www      6029: #
                   6030: # Is the metadata already cached?
1.177     www      6031: # Look at timestamp of caching
1.172     www      6032: # Everything is cached by the main uri, libraries are never directly cached
                   6033: #
1.428     albertel 6034:     if (!defined($liburi)) {
1.599     albertel 6035: 	my ($result,$cached)=&is_cached_new('meta',$uri);
1.428     albertel 6036: 	if (defined($cached)) { return $result->{':'.$what}; }
                   6037:     }
                   6038:     {
1.172     www      6039: #
                   6040: # Is this a recursive call for a library?
                   6041: #
1.599     albertel 6042: #	if (! exists($metacache{$uri})) {
                   6043: #	    $metacache{$uri}={};
                   6044: #	}
1.171     www      6045:         if ($liburi) {
                   6046: 	    $liburi=&declutter($liburi);
                   6047:             $filename=$liburi;
1.401     bowersj2 6048:         } else {
1.599     albertel 6049: 	    &devalidate_cache_new('meta',$uri);
                   6050: 	    undef(%metaentry);
1.401     bowersj2 6051: 	}
1.140     www      6052:         my %metathesekeys=();
1.73      www      6053:         unless ($filename=~/\.meta$/) { $filename.='.meta'; }
1.489     albertel 6054: 	my $metastring;
1.768     albertel 6055: 	if ($uri !~ m -^(editupload)/-) {
1.543     albertel 6056: 	    my $file=&filelocation('',&clutter($filename));
1.599     albertel 6057: 	    #push(@{$metaentry{$uri.'.file'}},$file);
1.543     albertel 6058: 	    $metastring=&getfile($file);
1.489     albertel 6059: 	}
1.208     albertel 6060:         my $parser=HTML::LCParser->new(\$metastring);
1.71      www      6061:         my $token;
1.140     www      6062:         undef %metathesekeys;
1.71      www      6063:         while ($token=$parser->get_token) {
1.339     albertel 6064: 	    if ($token->[0] eq 'S') {
                   6065: 		if (defined($token->[2]->{'package'})) {
1.172     www      6066: #
                   6067: # This is a package - get package info
                   6068: #
1.339     albertel 6069: 		    my $package=$token->[2]->{'package'};
                   6070: 		    my $keyroot=&add_prefix_and_part($prefix,$token->[2]->{'part'});
                   6071: 		    if (defined($token->[2]->{'id'})) { 
                   6072: 			$keyroot.='_'.$token->[2]->{'id'}; 
                   6073: 		    }
1.599     albertel 6074: 		    if ($metaentry{':packages'}) {
                   6075: 			$metaentry{':packages'}.=','.$package.$keyroot;
1.339     albertel 6076: 		    } else {
1.599     albertel 6077: 			$metaentry{':packages'}=$package.$keyroot;
1.339     albertel 6078: 		    }
1.736     albertel 6079: 		    foreach my $pack_entry (keys(%packagetab)) {
1.432     albertel 6080: 			my $part=$keyroot;
                   6081: 			$part=~s/^\_//;
1.736     albertel 6082: 			if ($pack_entry=~/^\Q$package\E\&/ || 
                   6083: 			    $pack_entry=~/^\Q$package\E_0\&/) {
                   6084: 			    my ($pack,$name,$subp)=split(/\&/,$pack_entry);
1.395     albertel 6085: 			    # ignore package.tab specified default values
                   6086:                             # here &package_tab_default() will fetch those
                   6087: 			    if ($subp eq 'default') { next; }
1.736     albertel 6088: 			    my $value=$packagetab{$pack_entry};
1.432     albertel 6089: 			    my $unikey;
                   6090: 			    if ($pack =~ /_0$/) {
                   6091: 				$unikey='parameter_0_'.$name;
                   6092: 				$part=0;
                   6093: 			    } else {
                   6094: 				$unikey='parameter'.$keyroot.'_'.$name;
                   6095: 			    }
1.339     albertel 6096: 			    if ($subp eq 'display') {
                   6097: 				$value.=' [Part: '.$part.']';
                   6098: 			    }
1.599     albertel 6099: 			    $metaentry{':'.$unikey.'.part'}=$part;
1.395     albertel 6100: 			    $metathesekeys{$unikey}=1;
1.599     albertel 6101: 			    unless (defined($metaentry{':'.$unikey.'.'.$subp})) {
                   6102: 				$metaentry{':'.$unikey.'.'.$subp}=$value;
1.339     albertel 6103: 			    }
1.599     albertel 6104: 			    if (defined($metaentry{':'.$unikey.'.default'})) {
                   6105: 				$metaentry{':'.$unikey}=
                   6106: 				    $metaentry{':'.$unikey.'.default'};
1.356     albertel 6107: 			    }
1.339     albertel 6108: 			}
                   6109: 		    }
                   6110: 		} else {
1.172     www      6111: #
                   6112: # This is not a package - some other kind of start tag
1.339     albertel 6113: #
                   6114: 		    my $entry=$token->[1];
                   6115: 		    my $unikey;
                   6116: 		    if ($entry eq 'import') {
                   6117: 			$unikey='';
                   6118: 		    } else {
                   6119: 			$unikey=$entry;
                   6120: 		    }
                   6121: 		    $unikey.=&add_prefix_and_part($prefix,$token->[2]->{'part'});
                   6122: 
                   6123: 		    if (defined($token->[2]->{'id'})) { 
                   6124: 			$unikey.='_'.$token->[2]->{'id'}; 
                   6125: 		    }
1.175     www      6126: 
1.339     albertel 6127: 		    if ($entry eq 'import') {
1.175     www      6128: #
                   6129: # Importing a library here
1.339     albertel 6130: #
                   6131: 			if ($depthcount<20) {
                   6132: 			    my $location=$parser->get_text('/import');
                   6133: 			    my $dir=$filename;
                   6134: 			    $dir=~s|[^/]*$||;
                   6135: 			    $location=&filelocation($dir,$location);
1.736     albertel 6136: 			    my $metadata = 
                   6137: 				&metadata($uri,'keys', $location,$unikey,
                   6138: 					  $depthcount+1);
                   6139: 			    foreach my $meta (split(',',$metadata)) {
                   6140: 				$metaentry{':'.$meta}=$metaentry{':'.$meta};
                   6141: 				$metathesekeys{$meta}=1;
1.339     albertel 6142: 			    }
                   6143: 			}
                   6144: 		    } else { 
                   6145: 			
                   6146: 			if (defined($token->[2]->{'name'})) { 
                   6147: 			    $unikey.='_'.$token->[2]->{'name'}; 
                   6148: 			}
                   6149: 			$metathesekeys{$unikey}=1;
1.736     albertel 6150: 			foreach my $param (@{$token->[3]}) {
                   6151: 			    $metaentry{':'.$unikey.'.'.$param} =
                   6152: 				$token->[2]->{$param};
1.339     albertel 6153: 			}
                   6154: 			my $internaltext=&HTML::Entities::decode($parser->get_text('/'.$entry));
1.599     albertel 6155: 			my $default=$metaentry{':'.$unikey.'.default'};
1.339     albertel 6156: 			if ( $internaltext =~ /^\s*$/ && $default !~ /^\s*$/) {
                   6157: 		 # only ws inside the tag, and not in default, so use default
                   6158: 		 # as value
1.599     albertel 6159: 			    $metaentry{':'.$unikey}=$default;
1.339     albertel 6160: 			} else {
1.321     albertel 6161: 		  # either something interesting inside the tag or default
                   6162:                   # uninteresting
1.599     albertel 6163: 			    $metaentry{':'.$unikey}=$internaltext;
1.339     albertel 6164: 			}
1.172     www      6165: # end of not-a-package not-a-library import
1.339     albertel 6166: 		    }
1.172     www      6167: # end of not-a-package start tag
1.339     albertel 6168: 		}
1.172     www      6169: # the next is the end of "start tag"
1.339     albertel 6170: 	    }
                   6171: 	}
1.483     albertel 6172: 	my ($extension) = ($uri =~ /\.(\w+)$/);
1.737     albertel 6173: 	foreach my $key (keys(%packagetab)) {
1.483     albertel 6174: 	    #no specific packages #how's our extension
                   6175: 	    if ($key!~/^extension_\Q$extension\E&/) { next; }
1.488     albertel 6176: 	    &metadata_create_package_def($uri,$key,'extension_'.$extension,
1.483     albertel 6177: 					 \%metathesekeys);
                   6178: 	}
1.599     albertel 6179: 	if (!exists($metaentry{':packages'})) {
1.737     albertel 6180: 	    foreach my $key (keys(%packagetab)) {
1.483     albertel 6181: 		#no specific packages well let's get default then
                   6182: 		if ($key!~/^default&/) { next; }
1.488     albertel 6183: 		&metadata_create_package_def($uri,$key,'default',
1.483     albertel 6184: 					     \%metathesekeys);
                   6185: 	    }
                   6186: 	}
1.338     www      6187: # are there custom rights to evaluate
1.599     albertel 6188: 	if ($metaentry{':copyright'} eq 'custom') {
1.339     albertel 6189: 
1.338     www      6190:     #
                   6191:     # Importing a rights file here
1.339     albertel 6192:     #
                   6193: 	    unless ($depthcount) {
1.599     albertel 6194: 		my $location=$metaentry{':customdistributionfile'};
1.339     albertel 6195: 		my $dir=$filename;
                   6196: 		$dir=~s|[^/]*$||;
                   6197: 		$location=&filelocation($dir,$location);
1.736     albertel 6198: 		my $rights_metadata =
                   6199: 		    &metadata($uri,'keys',$location,'_rights',
                   6200: 			      $depthcount+1);
                   6201: 		foreach my $rights (split(',',$rights_metadata)) {
                   6202: 		    #$metaentry{':'.$rights}=$metacache{$uri}->{':'.$rights};
                   6203: 		    $metathesekeys{$rights}=1;
1.339     albertel 6204: 		}
                   6205: 	    }
                   6206: 	}
1.737     albertel 6207: 	# uniqifiy package listing
                   6208: 	my %seen;
                   6209: 	my @uniq_packages =
                   6210: 	    grep { ! $seen{$_} ++ } (split(',',$metaentry{':packages'}));
                   6211: 	$metaentry{':packages'} = join(',',@uniq_packages);
                   6212: 
                   6213: 	$metaentry{':keys'} = join(',',keys(%metathesekeys));
1.599     albertel 6214: 	&metadata_generate_part0(\%metathesekeys,\%metaentry,$uri);
                   6215: 	$metaentry{':allpossiblekeys'}=join(',',keys %metathesekeys);
1.699     albertel 6216: 	&do_cache_new('meta',$uri,\%metaentry,60*60);
1.177     www      6217: # this is the end of "was not already recently cached
1.71      www      6218:     }
1.599     albertel 6219:     return $metaentry{':'.$what};
1.261     albertel 6220: }
                   6221: 
1.488     albertel 6222: sub metadata_create_package_def {
1.483     albertel 6223:     my ($uri,$key,$package,$metathesekeys)=@_;
                   6224:     my ($pack,$name,$subp)=split(/\&/,$key);
                   6225:     if ($subp eq 'default') { next; }
                   6226:     
1.599     albertel 6227:     if (defined($metaentry{':packages'})) {
                   6228: 	$metaentry{':packages'}.=','.$package;
1.483     albertel 6229:     } else {
1.599     albertel 6230: 	$metaentry{':packages'}=$package;
1.483     albertel 6231:     }
                   6232:     my $value=$packagetab{$key};
                   6233:     my $unikey;
                   6234:     $unikey='parameter_0_'.$name;
1.599     albertel 6235:     $metaentry{':'.$unikey.'.part'}=0;
1.483     albertel 6236:     $$metathesekeys{$unikey}=1;
1.599     albertel 6237:     unless (defined($metaentry{':'.$unikey.'.'.$subp})) {
                   6238: 	$metaentry{':'.$unikey.'.'.$subp}=$value;
1.483     albertel 6239:     }
1.599     albertel 6240:     if (defined($metaentry{':'.$unikey.'.default'})) {
                   6241: 	$metaentry{':'.$unikey}=
                   6242: 	    $metaentry{':'.$unikey.'.default'};
1.483     albertel 6243:     }
                   6244: }
                   6245: 
1.261     albertel 6246: sub metadata_generate_part0 {
                   6247:     my ($metadata,$metacache,$uri) = @_;
                   6248:     my %allnames;
1.737     albertel 6249:     foreach my $metakey (keys(%$metadata)) {
1.261     albertel 6250: 	if ($metakey=~/^parameter\_(.*)/) {
1.428     albertel 6251: 	  my $part=$$metacache{':'.$metakey.'.part'};
                   6252: 	  my $name=$$metacache{':'.$metakey.'.name'};
1.356     albertel 6253: 	  if (! exists($$metadata{'parameter_0_'.$name.'.name'})) {
1.261     albertel 6254: 	    $allnames{$name}=$part;
                   6255: 	  }
                   6256: 	}
                   6257:     }
                   6258:     foreach my $name (keys(%allnames)) {
                   6259:       $$metadata{"parameter_0_$name"}=1;
1.428     albertel 6260:       my $key=":parameter_0_$name";
1.261     albertel 6261:       $$metacache{"$key.part"}='0';
                   6262:       $$metacache{"$key.name"}=$name;
1.428     albertel 6263:       $$metacache{"$key.type"}=$$metacache{':parameter_'.
1.261     albertel 6264: 					   $allnames{$name}.'_'.$name.
                   6265: 					   '.type'};
1.428     albertel 6266:       my $olddis=$$metacache{':parameter_'.$allnames{$name}.'_'.$name.
1.261     albertel 6267: 			     '.display'};
1.644     www      6268:       my $expr='[Part: '.$allnames{$name}.']';
1.479     albertel 6269:       $olddis=~s/\Q$expr\E/\[Part: 0\]/;
1.261     albertel 6270:       $$metacache{"$key.display"}=$olddis;
                   6271:     }
1.71      www      6272: }
                   6273: 
1.764     albertel 6274: # ------------------------------------------------------ Devalidate title cache
                   6275: 
                   6276: sub devalidate_title_cache {
                   6277:     my ($url)=@_;
                   6278:     if (!$env{'request.course.id'}) { return; }
                   6279:     my $symb=&symbread($url);
                   6280:     if (!$symb) { return; }
                   6281:     my $key=$env{'request.course.id'}."\0".$symb;
                   6282:     &devalidate_cache_new('title',$key);
                   6283: }
                   6284: 
1.301     www      6285: # ------------------------------------------------- Get the title of a resource
                   6286: 
                   6287: sub gettitle {
                   6288:     my $urlsymb=shift;
                   6289:     my $symb=&symbread($urlsymb);
1.534     albertel 6290:     if ($symb) {
1.620     albertel 6291: 	my $key=$env{'request.course.id'}."\0".$symb;
1.599     albertel 6292: 	my ($result,$cached)=&is_cached_new('title',$key);
1.575     albertel 6293: 	if (defined($cached)) { 
                   6294: 	    return $result;
                   6295: 	}
1.534     albertel 6296: 	my ($map,$resid,$url)=&decode_symb($symb);
                   6297: 	my $title='';
                   6298: 	my %bighash;
1.620     albertel 6299: 	if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.534     albertel 6300: 		&GDBM_READER(),0640)) {
                   6301: 	    my $mapid=$bighash{'map_pc_'.&clutter($map)};
                   6302: 	    $title=$bighash{'title_'.$mapid.'.'.$resid};
                   6303: 	    untie %bighash;
                   6304: 	}
                   6305: 	$title=~s/\&colon\;/\:/gs;
                   6306: 	if ($title) {
1.599     albertel 6307: 	    return &do_cache_new('title',$key,$title,600);
1.534     albertel 6308: 	}
                   6309: 	$urlsymb=$url;
                   6310:     }
                   6311:     my $title=&metadata($urlsymb,'title');
                   6312:     if (!$title) { $title=(split('/',$urlsymb))[-1]; }    
                   6313:     return $title;
1.301     www      6314: }
1.613     albertel 6315: 
1.614     albertel 6316: sub get_slot {
                   6317:     my ($which,$cnum,$cdom)=@_;
                   6318:     if (!$cnum || !$cdom) {
1.790     albertel 6319: 	(undef,my $courseid)=&whichuser();
1.620     albertel 6320: 	$cdom=$env{'course.'.$courseid.'.domain'};
                   6321: 	$cnum=$env{'course.'.$courseid.'.num'};
1.614     albertel 6322:     }
1.703     albertel 6323:     my $key=join("\0",'slots',$cdom,$cnum,$which);
                   6324:     my %slotinfo;
                   6325:     if (exists($remembered{$key})) {
                   6326: 	$slotinfo{$which} = $remembered{$key};
                   6327:     } else {
                   6328: 	%slotinfo=&get('slots',[$which],$cdom,$cnum);
                   6329: 	&Apache::lonhomework::showhash(%slotinfo);
                   6330: 	my ($tmp)=keys(%slotinfo);
                   6331: 	if ($tmp=~/^error:/) { return (); }
                   6332: 	$remembered{$key} = $slotinfo{$which};
                   6333:     }
1.616     albertel 6334:     if (ref($slotinfo{$which}) eq 'HASH') {
                   6335: 	return %{$slotinfo{$which}};
                   6336:     }
                   6337:     return $slotinfo{$which};
1.614     albertel 6338: }
1.31      www      6339: # ------------------------------------------------- Update symbolic store links
                   6340: 
                   6341: sub symblist {
                   6342:     my ($mapname,%newhash)=@_;
1.438     www      6343:     $mapname=&deversion(&declutter($mapname));
1.31      www      6344:     my %hash;
1.620     albertel 6345:     if (($env{'request.course.fn'}) && (%newhash)) {
                   6346:         if (tie(%hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db',
1.256     albertel 6347:                       &GDBM_WRCREAT(),0640)) {
1.711     albertel 6348: 	    foreach my $url (keys %newhash) {
                   6349: 		next if ($url eq 'last_known'
                   6350: 			 && $env{'form.no_update_last_known'});
                   6351: 		$hash{declutter($url)}=&encode_symb($mapname,
                   6352: 						    $newhash{$url}->[1],
                   6353: 						    $newhash{$url}->[0]);
1.191     harris41 6354:             }
1.31      www      6355:             if (untie(%hash)) {
                   6356: 		return 'ok';
                   6357:             }
                   6358:         }
                   6359:     }
                   6360:     return 'error';
1.212     www      6361: }
                   6362: 
                   6363: # --------------------------------------------------------------- Verify a symb
                   6364: 
                   6365: sub symbverify {
1.510     www      6366:     my ($symb,$thisurl)=@_;
                   6367:     my $thisfn=$thisurl;
1.439     www      6368:     $thisfn=&declutter($thisfn);
1.215     www      6369: # direct jump to resource in page or to a sequence - will construct own symbs
                   6370:     if ($thisfn=~/\.(page|sequence)$/) { return 1; }
                   6371: # check URL part
1.409     www      6372:     my ($map,$resid,$url)=&decode_symb($symb);
1.439     www      6373: 
1.431     www      6374:     unless ($url eq $thisfn) { return 0; }
1.213     www      6375: 
1.216     www      6376:     $symb=&symbclean($symb);
1.510     www      6377:     $thisurl=&deversion($thisurl);
1.439     www      6378:     $thisfn=&deversion($thisfn);
1.213     www      6379: 
                   6380:     my %bighash;
                   6381:     my $okay=0;
1.431     www      6382: 
1.620     albertel 6383:     if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.256     albertel 6384:                             &GDBM_READER(),0640)) {
1.510     www      6385:         my $ids=$bighash{'ids_'.&clutter($thisurl)};
1.216     www      6386:         unless ($ids) { 
1.510     www      6387:            $ids=$bighash{'ids_/'.$thisurl};
1.216     www      6388:         }
                   6389:         if ($ids) {
                   6390: # ------------------------------------------------------------------- Has ID(s)
1.800     albertel 6391: 	    foreach my $id (split(/\,/,$ids)) {
                   6392: 	       my ($mapid,$resid)=split(/\./,$id);
1.216     www      6393:                if (
                   6394:   &symbclean(&declutter($bighash{'map_id_'.$mapid}).'___'.$resid.'___'.$thisfn)
                   6395:    eq $symb) { 
1.620     albertel 6396: 		   if (($env{'request.role.adv'}) ||
1.800     albertel 6397: 		       $bighash{'encrypted_'.$id} eq $env{'request.enc'}) {
1.582     albertel 6398: 		       $okay=1; 
                   6399: 		   }
                   6400: 	       }
1.216     www      6401: 	   }
                   6402:         }
1.213     www      6403: 	untie(%bighash);
                   6404:     }
                   6405:     return $okay;
1.31      www      6406: }
                   6407: 
1.210     www      6408: # --------------------------------------------------------------- Clean-up symb
                   6409: 
                   6410: sub symbclean {
                   6411:     my $symb=shift;
1.568     albertel 6412:     if ($symb=~m|^/enc/|) { $symb=&Apache::lonenc::unencrypted($symb); }
1.210     www      6413: # remove version from map
                   6414:     $symb=~s/\.(\d+)\.(\w+)\_\_\_/\.$2\_\_\_/;
1.215     www      6415: 
1.210     www      6416: # remove version from URL
                   6417:     $symb=~s/\.(\d+)\.(\w+)$/\.$2/;
1.213     www      6418: 
1.507     www      6419: # remove wrapper
                   6420: 
1.510     www      6421:     $symb=~s/(\_\_\_\d+\_\_\_)adm\/wrapper\/(res\/)*/$1/;
1.694     albertel 6422:     $symb=~s/(\_\_\_\d+\_\_\_)adm\/coursedocs\/showdoc\/(res\/)*/$1/;
1.210     www      6423:     return $symb;
1.409     www      6424: }
                   6425: 
                   6426: # ---------------------------------------------- Split symb to find map and url
1.429     albertel 6427: 
                   6428: sub encode_symb {
                   6429:     my ($map,$resid,$url)=@_;
                   6430:     return &symbclean(&declutter($map).'___'.$resid.'___'.&declutter($url));
                   6431: }
1.409     www      6432: 
                   6433: sub decode_symb {
1.568     albertel 6434:     my $symb=shift;
                   6435:     if ($symb=~m|^/enc/|) { $symb=&Apache::lonenc::unencrypted($symb); }
                   6436:     my ($map,$resid,$url)=split(/___/,$symb);
1.413     www      6437:     return (&fixversion($map),$resid,&fixversion($url));
                   6438: }
                   6439: 
                   6440: sub fixversion {
                   6441:     my $fn=shift;
1.609     banghart 6442:     if ($fn=~/^(adm|uploaded|editupload|public)/) { return $fn; }
1.435     www      6443:     my %bighash;
                   6444:     my $uri=&clutter($fn);
1.620     albertel 6445:     my $key=$env{'request.course.id'}.'_'.$uri;
1.440     www      6446: # is this cached?
1.599     albertel 6447:     my ($result,$cached)=&is_cached_new('courseresversion',$key);
1.440     www      6448:     if (defined($cached)) { return $result; }
                   6449: # unfortunately not cached, or expired
1.620     albertel 6450:     if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.440     www      6451: 	    &GDBM_READER(),0640)) {
                   6452:  	if ($bighash{'version_'.$uri}) {
                   6453:  	    my $version=$bighash{'version_'.$uri};
1.444     www      6454:  	    unless (($version eq 'mostrecent') || 
                   6455: 		    ($version==&getversion($uri))) {
1.440     www      6456:  		$uri=~s/\.(\w+)$/\.$version\.$1/;
                   6457:  	    }
                   6458:  	}
                   6459:  	untie %bighash;
1.413     www      6460:     }
1.599     albertel 6461:     return &do_cache_new('courseresversion',$key,&declutter($uri),600);
1.438     www      6462: }
                   6463: 
                   6464: sub deversion {
                   6465:     my $url=shift;
                   6466:     $url=~s/\.\d+\.(\w+)$/\.$1/;
                   6467:     return $url;
1.210     www      6468: }
                   6469: 
1.31      www      6470: # ------------------------------------------------------ Return symb list entry
                   6471: 
                   6472: sub symbread {
1.249     www      6473:     my ($thisfn,$donotrecurse)=@_;
1.542     albertel 6474:     my $cache_str='request.symbread.cached.'.$thisfn;
1.620     albertel 6475:     if (defined($env{$cache_str})) { return $env{$cache_str}; }
1.242     www      6476: # no filename provided? try from environment
1.44      www      6477:     unless ($thisfn) {
1.620     albertel 6478:         if ($env{'request.symb'}) {
                   6479: 	    return $env{$cache_str}=&symbclean($env{'request.symb'});
1.539     albertel 6480: 	}
1.620     albertel 6481: 	$thisfn=$env{'request.filename'};
1.44      www      6482:     }
1.569     albertel 6483:     if ($thisfn=~m|^/enc/|) { $thisfn=&Apache::lonenc::unencrypted($thisfn); }
1.242     www      6484: # is that filename actually a symb? Verify, clean, and return
                   6485:     if ($thisfn=~/\_\_\_\d+\_\_\_(.*)$/) {
1.539     albertel 6486: 	if (&symbverify($thisfn,$1)) {
1.620     albertel 6487: 	    return $env{$cache_str}=&symbclean($thisfn);
1.539     albertel 6488: 	}
1.242     www      6489:     }
1.44      www      6490:     $thisfn=declutter($thisfn);
1.31      www      6491:     my %hash;
1.37      www      6492:     my %bighash;
                   6493:     my $syval='';
1.620     albertel 6494:     if (($env{'request.course.fn'}) && ($thisfn)) {
1.481     raeburn  6495:         my $targetfn = $thisfn;
1.609     banghart 6496:         if ( ($thisfn =~ m/^(uploaded|editupload)\//) && ($thisfn !~ m/\.(page|sequence)$/) ) {
1.481     raeburn  6497:             $targetfn = 'adm/wrapper/'.$thisfn;
                   6498:         }
1.687     albertel 6499: 	if ($targetfn =~ m|^adm/wrapper/(ext/.*)|) {
                   6500: 	    $targetfn=$1;
                   6501: 	}
1.620     albertel 6502:         if (tie(%hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db',
1.256     albertel 6503:                       &GDBM_READER(),0640)) {
1.481     raeburn  6504: 	    $syval=$hash{$targetfn};
1.37      www      6505:             untie(%hash);
                   6506:         }
                   6507: # ---------------------------------------------------------- There was an entry
                   6508:         if ($syval) {
1.601     albertel 6509: 	    #unless ($syval=~/\_\d+$/) {
1.620     albertel 6510: 		#unless ($env{'form.request.prefix'}=~/\.(\d+)\_$/) {
1.601     albertel 6511: 		    #&appenv('request.ambiguous' => $thisfn);
1.620     albertel 6512: 		    #return $env{$cache_str}='';
1.601     albertel 6513: 		#}    
                   6514: 		#$syval.=$1;
                   6515: 	    #}
1.37      www      6516:         } else {
                   6517: # ------------------------------------------------------- Was not in symb table
1.620     albertel 6518:            if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.256     albertel 6519:                             &GDBM_READER(),0640)) {
1.37      www      6520: # ---------------------------------------------- Get ID(s) for current resource
1.280     www      6521:               my $ids=$bighash{'ids_'.&clutter($thisfn)};
1.65      www      6522:               unless ($ids) { 
                   6523:                  $ids=$bighash{'ids_/'.$thisfn};
1.242     www      6524:               }
                   6525:               unless ($ids) {
                   6526: # alias?
                   6527: 		  $ids=$bighash{'mapalias_'.$thisfn};
1.65      www      6528:               }
1.37      www      6529:               if ($ids) {
                   6530: # ------------------------------------------------------------------- Has ID(s)
                   6531:                  my @possibilities=split(/\,/,$ids);
1.39      www      6532:                  if ($#possibilities==0) {
                   6533: # ----------------------------------------------- There is only one possibility
1.37      www      6534: 		     my ($mapid,$resid)=split(/\./,$ids);
1.626     albertel 6535: 		     $syval=&encode_symb($bighash{'map_id_'.$mapid},
                   6536: 						    $resid,$thisfn);
1.249     www      6537:                  } elsif (!$donotrecurse) {
1.39      www      6538: # ------------------------------------------ There is more than one possibility
                   6539:                      my $realpossible=0;
1.800     albertel 6540:                      foreach my $id (@possibilities) {
                   6541: 			 my $file=$bighash{'src_'.$id};
1.39      www      6542:                          if (&allowed('bre',$file)) {
1.800     albertel 6543:          		    my ($mapid,$resid)=split(/\./,$id);
1.39      www      6544:                             if ($bighash{'map_type_'.$mapid} ne 'page') {
                   6545: 				$realpossible++;
1.626     albertel 6546:                                 $syval=&encode_symb($bighash{'map_id_'.$mapid},
                   6547: 						    $resid,$thisfn);
1.39      www      6548:                             }
                   6549: 			 }
1.191     harris41 6550:                      }
1.39      www      6551: 		     if ($realpossible!=1) { $syval=''; }
1.249     www      6552:                  } else {
                   6553:                      $syval='';
1.37      www      6554:                  }
                   6555: 	      }
                   6556:               untie(%bighash)
1.481     raeburn  6557:            }
1.31      www      6558:         }
1.62      www      6559:         if ($syval) {
1.620     albertel 6560: 	    return $env{$cache_str}=$syval;
1.62      www      6561:         }
1.31      www      6562:     }
1.44      www      6563:     &appenv('request.ambiguous' => $thisfn);
1.620     albertel 6564:     return $env{$cache_str}='';
1.31      www      6565: }
                   6566: 
                   6567: # ---------------------------------------------------------- Return random seed
                   6568: 
1.32      www      6569: sub numval {
                   6570:     my $txt=shift;
                   6571:     $txt=~tr/A-J/0-9/;
                   6572:     $txt=~tr/a-j/0-9/;
                   6573:     $txt=~tr/K-T/0-9/;
                   6574:     $txt=~tr/k-t/0-9/;
                   6575:     $txt=~tr/U-Z/0-5/;
                   6576:     $txt=~tr/u-z/0-5/;
                   6577:     $txt=~s/\D//g;
1.564     albertel 6578:     if ($_64bit) { if ($txt > 2**32) { return -1; } }
1.32      www      6579:     return int($txt);
1.368     albertel 6580: }
                   6581: 
1.484     albertel 6582: sub numval2 {
                   6583:     my $txt=shift;
                   6584:     $txt=~tr/A-J/0-9/;
                   6585:     $txt=~tr/a-j/0-9/;
                   6586:     $txt=~tr/K-T/0-9/;
                   6587:     $txt=~tr/k-t/0-9/;
                   6588:     $txt=~tr/U-Z/0-5/;
                   6589:     $txt=~tr/u-z/0-5/;
                   6590:     $txt=~s/\D//g;
                   6591:     my @txts=split(/(\d\d\d\d\d\d\d\d\d)/,$txt);
                   6592:     my $total;
                   6593:     foreach my $val (@txts) { $total+=$val; }
1.564     albertel 6594:     if ($_64bit) { if ($total > 2**32) { return -1; } }
1.484     albertel 6595:     return int($total);
                   6596: }
                   6597: 
1.575     albertel 6598: sub numval3 {
                   6599:     use integer;
                   6600:     my $txt=shift;
                   6601:     $txt=~tr/A-J/0-9/;
                   6602:     $txt=~tr/a-j/0-9/;
                   6603:     $txt=~tr/K-T/0-9/;
                   6604:     $txt=~tr/k-t/0-9/;
                   6605:     $txt=~tr/U-Z/0-5/;
                   6606:     $txt=~tr/u-z/0-5/;
                   6607:     $txt=~s/\D//g;
                   6608:     my @txts=split(/(\d\d\d\d\d\d\d\d\d)/,$txt);
                   6609:     my $total;
                   6610:     foreach my $val (@txts) { $total+=$val; }
                   6611:     if ($_64bit) { $total=(($total<<32)>>32); }
                   6612:     return $total;
                   6613: }
                   6614: 
1.675     albertel 6615: sub digest {
                   6616:     my ($data)=@_;
                   6617:     my $digest=&Digest::MD5::md5($data);
                   6618:     my ($a,$b,$c,$d)=unpack("iiii",$digest);
                   6619:     my ($e,$f);
                   6620:     {
                   6621:         use integer;
                   6622:         $e=($a+$b);
                   6623:         $f=($c+$d);
                   6624:         if ($_64bit) {
                   6625:             $e=(($e<<32)>>32);
                   6626:             $f=(($f<<32)>>32);
                   6627:         }
                   6628:     }
                   6629:     if (wantarray) {
                   6630: 	return ($e,$f);
                   6631:     } else {
                   6632: 	my $g;
                   6633: 	{
                   6634: 	    use integer;
                   6635: 	    $g=($e+$f);
                   6636: 	    if ($_64bit) {
                   6637: 		$g=(($g<<32)>>32);
                   6638: 	    }
                   6639: 	}
                   6640: 	return $g;
                   6641:     }
                   6642: }
                   6643: 
1.368     albertel 6644: sub latest_rnd_algorithm_id {
1.675     albertel 6645:     return '64bit5';
1.366     albertel 6646: }
1.32      www      6647: 
1.503     albertel 6648: sub get_rand_alg {
                   6649:     my ($courseid)=@_;
1.790     albertel 6650:     if (!$courseid) { $courseid=(&whichuser())[1]; }
1.503     albertel 6651:     if ($courseid) {
1.620     albertel 6652: 	return $env{"course.$courseid.rndseed"};
1.503     albertel 6653:     }
                   6654:     return &latest_rnd_algorithm_id();
                   6655: }
                   6656: 
1.562     albertel 6657: sub validCODE {
                   6658:     my ($CODE)=@_;
                   6659:     if (defined($CODE) && $CODE ne '' && $CODE =~ /^\w+$/) { return 1; }
                   6660:     return 0;
                   6661: }
                   6662: 
1.491     albertel 6663: sub getCODE {
1.620     albertel 6664:     if (&validCODE($env{'form.CODE'})) { return $env{'form.CODE'}; }
1.618     albertel 6665:     if ( (defined($Apache::lonhomework::parsing_a_problem) ||
                   6666: 	  defined($Apache::lonhomework::parsing_a_task) ) &&
                   6667: 	 &validCODE($Apache::lonhomework::history{'resource.CODE'})) {
1.491     albertel 6668: 	return $Apache::lonhomework::history{'resource.CODE'};
                   6669:     }
                   6670:     return undef;
                   6671: }
                   6672: 
1.31      www      6673: sub rndseed {
1.155     albertel 6674:     my ($symb,$courseid,$domain,$username)=@_;
1.366     albertel 6675: 
1.790     albertel 6676:     my ($wsymb,$wcourseid,$wdomain,$wusername)=&whichuser();
1.155     albertel 6677:     if (!$symb) {
1.366     albertel 6678: 	unless ($symb=$wsymb) { return time; }
                   6679:     }
                   6680:     if (!$courseid) { $courseid=$wcourseid; }
                   6681:     if (!$domain) { $domain=$wdomain; }
                   6682:     if (!$username) { $username=$wusername }
1.503     albertel 6683:     my $which=&get_rand_alg();
1.803     albertel 6684: 
1.491     albertel 6685:     if (defined(&getCODE())) {
1.675     albertel 6686: 	if ($which eq '64bit5') {
                   6687: 	    return &rndseed_CODE_64bit5($symb,$courseid,$domain,$username);
                   6688: 	} elsif ($which eq '64bit4') {
1.575     albertel 6689: 	    return &rndseed_CODE_64bit4($symb,$courseid,$domain,$username);
                   6690: 	} else {
                   6691: 	    return &rndseed_CODE_64bit($symb,$courseid,$domain,$username);
                   6692: 	}
1.675     albertel 6693:     } elsif ($which eq '64bit5') {
                   6694: 	return &rndseed_64bit5($symb,$courseid,$domain,$username);
1.575     albertel 6695:     } elsif ($which eq '64bit4') {
                   6696: 	return &rndseed_64bit4($symb,$courseid,$domain,$username);
1.501     albertel 6697:     } elsif ($which eq '64bit3') {
                   6698: 	return &rndseed_64bit3($symb,$courseid,$domain,$username);
1.443     albertel 6699:     } elsif ($which eq '64bit2') {
                   6700: 	return &rndseed_64bit2($symb,$courseid,$domain,$username);
1.366     albertel 6701:     } elsif ($which eq '64bit') {
                   6702: 	return &rndseed_64bit($symb,$courseid,$domain,$username);
                   6703:     }
                   6704:     return &rndseed_32bit($symb,$courseid,$domain,$username);
                   6705: }
                   6706: 
                   6707: sub rndseed_32bit {
                   6708:     my ($symb,$courseid,$domain,$username)=@_;
                   6709:     {
                   6710: 	use integer;
                   6711: 	my $symbchck=unpack("%32C*",$symb) << 27;
                   6712: 	my $symbseed=numval($symb) << 22;
                   6713: 	my $namechck=unpack("%32C*",$username) << 17;
                   6714: 	my $nameseed=numval($username) << 12;
                   6715: 	my $domainseed=unpack("%32C*",$domain) << 7;
                   6716: 	my $courseseed=unpack("%32C*",$courseid);
                   6717: 	my $num=$symbseed+$nameseed+$domainseed+$courseseed+$namechck+$symbchck;
1.790     albertel 6718: 	#&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
                   6719: 	#&logthis("rndseed :$num:$symb");
1.564     albertel 6720: 	if ($_64bit) { $num=(($num<<32)>>32); }
1.366     albertel 6721: 	return $num;
                   6722:     }
                   6723: }
                   6724: 
                   6725: sub rndseed_64bit {
                   6726:     my ($symb,$courseid,$domain,$username)=@_;
                   6727:     {
                   6728: 	use integer;
                   6729: 	my $symbchck=unpack("%32S*",$symb) << 21;
                   6730: 	my $symbseed=numval($symb) << 10;
                   6731: 	my $namechck=unpack("%32S*",$username);
                   6732: 	
                   6733: 	my $nameseed=numval($username) << 21;
                   6734: 	my $domainseed=unpack("%32S*",$domain) << 10;
                   6735: 	my $courseseed=unpack("%32S*",$courseid);
                   6736: 	
                   6737: 	my $num1=$symbchck+$symbseed+$namechck;
                   6738: 	my $num2=$nameseed+$domainseed+$courseseed;
1.790     albertel 6739: 	#&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
                   6740: 	#&logthis("rndseed :$num:$symb");
1.564     albertel 6741: 	if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
1.366     albertel 6742: 	return "$num1,$num2";
1.155     albertel 6743:     }
1.366     albertel 6744: }
                   6745: 
1.443     albertel 6746: sub rndseed_64bit2 {
                   6747:     my ($symb,$courseid,$domain,$username)=@_;
                   6748:     {
                   6749: 	use integer;
                   6750: 	# strings need to be an even # of cahracters long, it it is odd the
                   6751:         # last characters gets thrown away
                   6752: 	my $symbchck=unpack("%32S*",$symb.' ') << 21;
                   6753: 	my $symbseed=numval($symb) << 10;
                   6754: 	my $namechck=unpack("%32S*",$username.' ');
                   6755: 	
                   6756: 	my $nameseed=numval($username) << 21;
1.501     albertel 6757: 	my $domainseed=unpack("%32S*",$domain.' ') << 10;
                   6758: 	my $courseseed=unpack("%32S*",$courseid.' ');
                   6759: 	
                   6760: 	my $num1=$symbchck+$symbseed+$namechck;
                   6761: 	my $num2=$nameseed+$domainseed+$courseseed;
1.790     albertel 6762: 	#&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
                   6763: 	#&logthis("rndseed :$num:$symb");
1.803     albertel 6764: 	if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
1.501     albertel 6765: 	return "$num1,$num2";
                   6766:     }
                   6767: }
                   6768: 
                   6769: sub rndseed_64bit3 {
                   6770:     my ($symb,$courseid,$domain,$username)=@_;
                   6771:     {
                   6772: 	use integer;
                   6773: 	# strings need to be an even # of cahracters long, it it is odd the
                   6774:         # last characters gets thrown away
                   6775: 	my $symbchck=unpack("%32S*",$symb.' ') << 21;
                   6776: 	my $symbseed=numval2($symb) << 10;
                   6777: 	my $namechck=unpack("%32S*",$username.' ');
                   6778: 	
                   6779: 	my $nameseed=numval2($username) << 21;
1.443     albertel 6780: 	my $domainseed=unpack("%32S*",$domain.' ') << 10;
                   6781: 	my $courseseed=unpack("%32S*",$courseid.' ');
                   6782: 	
                   6783: 	my $num1=$symbchck+$symbseed+$namechck;
                   6784: 	my $num2=$nameseed+$domainseed+$courseseed;
1.790     albertel 6785: 	#&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
                   6786: 	#&logthis("rndseed :$num1:$num2:$_64bit");
1.564     albertel 6787: 	if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
                   6788: 	
1.503     albertel 6789: 	return "$num1:$num2";
1.443     albertel 6790:     }
                   6791: }
                   6792: 
1.575     albertel 6793: sub rndseed_64bit4 {
                   6794:     my ($symb,$courseid,$domain,$username)=@_;
                   6795:     {
                   6796: 	use integer;
                   6797: 	# strings need to be an even # of cahracters long, it it is odd the
                   6798:         # last characters gets thrown away
                   6799: 	my $symbchck=unpack("%32S*",$symb.' ') << 21;
                   6800: 	my $symbseed=numval3($symb) << 10;
                   6801: 	my $namechck=unpack("%32S*",$username.' ');
                   6802: 	
                   6803: 	my $nameseed=numval3($username) << 21;
                   6804: 	my $domainseed=unpack("%32S*",$domain.' ') << 10;
                   6805: 	my $courseseed=unpack("%32S*",$courseid.' ');
                   6806: 	
                   6807: 	my $num1=$symbchck+$symbseed+$namechck;
                   6808: 	my $num2=$nameseed+$domainseed+$courseseed;
1.790     albertel 6809: 	#&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
                   6810: 	#&logthis("rndseed :$num1:$num2:$_64bit");
1.575     albertel 6811: 	if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
                   6812: 	
                   6813: 	return "$num1:$num2";
                   6814:     }
                   6815: }
                   6816: 
1.675     albertel 6817: sub rndseed_64bit5 {
                   6818:     my ($symb,$courseid,$domain,$username)=@_;
                   6819:     my ($num1,$num2)=&digest("$symb,$courseid,$domain,$username");
                   6820:     return "$num1:$num2";
                   6821: }
                   6822: 
1.366     albertel 6823: sub rndseed_CODE_64bit {
                   6824:     my ($symb,$courseid,$domain,$username)=@_;
1.155     albertel 6825:     {
1.366     albertel 6826: 	use integer;
1.443     albertel 6827: 	my $symbchck=unpack("%32S*",$symb.' ') << 16;
1.484     albertel 6828: 	my $symbseed=numval2($symb);
1.491     albertel 6829: 	my $CODEchck=unpack("%32S*",&getCODE().' ') << 16;
                   6830: 	my $CODEseed=numval(&getCODE());
1.443     albertel 6831: 	my $courseseed=unpack("%32S*",$courseid.' ');
1.484     albertel 6832: 	my $num1=$symbseed+$CODEchck;
                   6833: 	my $num2=$CODEseed+$courseseed+$symbchck;
1.790     albertel 6834: 	#&logthis("$symbseed:$CODEchck|$CODEseed:$courseseed:$symbchck");
                   6835: 	#&logthis("rndseed :$num1:$num2:$symb");
1.564     albertel 6836: 	if ($_64bit) { $num1=(($num1<<32)>>32); }
                   6837: 	if ($_64bit) { $num2=(($num2<<32)>>32); }
1.503     albertel 6838: 	return "$num1:$num2";
1.366     albertel 6839:     }
                   6840: }
                   6841: 
1.575     albertel 6842: sub rndseed_CODE_64bit4 {
                   6843:     my ($symb,$courseid,$domain,$username)=@_;
                   6844:     {
                   6845: 	use integer;
                   6846: 	my $symbchck=unpack("%32S*",$symb.' ') << 16;
                   6847: 	my $symbseed=numval3($symb);
                   6848: 	my $CODEchck=unpack("%32S*",&getCODE().' ') << 16;
                   6849: 	my $CODEseed=numval3(&getCODE());
                   6850: 	my $courseseed=unpack("%32S*",$courseid.' ');
                   6851: 	my $num1=$symbseed+$CODEchck;
                   6852: 	my $num2=$CODEseed+$courseseed+$symbchck;
1.790     albertel 6853: 	#&logthis("$symbseed:$CODEchck|$CODEseed:$courseseed:$symbchck");
                   6854: 	#&logthis("rndseed :$num1:$num2:$symb");
1.575     albertel 6855: 	if ($_64bit) { $num1=(($num1<<32)>>32); }
                   6856: 	if ($_64bit) { $num2=(($num2<<32)>>32); }
                   6857: 	return "$num1:$num2";
                   6858:     }
                   6859: }
                   6860: 
1.675     albertel 6861: sub rndseed_CODE_64bit5 {
                   6862:     my ($symb,$courseid,$domain,$username)=@_;
                   6863:     my $code = &getCODE();
                   6864:     my ($num1,$num2)=&digest("$symb,$courseid,$code");
                   6865:     return "$num1:$num2";
                   6866: }
                   6867: 
1.366     albertel 6868: sub setup_random_from_rndseed {
                   6869:     my ($rndseed)=@_;
1.503     albertel 6870:     if ($rndseed =~/([,:])/) {
                   6871: 	my ($num1,$num2)=split(/[,:]/,$rndseed);
1.366     albertel 6872: 	&Math::Random::random_set_seed(abs($num1),abs($num2));
                   6873:     } else {
                   6874: 	&Math::Random::random_set_seed_from_phrase($rndseed);
1.98      albertel 6875:     }
1.36      albertel 6876: }
                   6877: 
1.474     albertel 6878: sub latest_receipt_algorithm_id {
                   6879:     return 'receipt2';
                   6880: }
                   6881: 
1.480     www      6882: sub recunique {
                   6883:     my $fucourseid=shift;
                   6884:     my $unique;
1.620     albertel 6885:     if ($env{"course.$fucourseid.receiptalg"} eq 'receipt2') {
                   6886: 	$unique=$env{"course.$fucourseid.internal.encseed"};
1.480     www      6887:     } else {
                   6888: 	$unique=$perlvar{'lonReceipt'};
                   6889:     }
                   6890:     return unpack("%32C*",$unique);
                   6891: }
                   6892: 
                   6893: sub recprefix {
                   6894:     my $fucourseid=shift;
                   6895:     my $prefix;
1.620     albertel 6896:     if ($env{"course.$fucourseid.receiptalg"} eq 'receipt2') {
                   6897: 	$prefix=$env{"course.$fucourseid.internal.encpref"};
1.480     www      6898:     } else {
                   6899: 	$prefix=$perlvar{'lonHostID'};
                   6900:     }
                   6901:     return unpack("%32C*",$prefix);
                   6902: }
                   6903: 
1.76      www      6904: sub ireceipt {
1.474     albertel 6905:     my ($funame,$fudom,$fucourseid,$fusymb,$part)=@_;
1.76      www      6906:     my $cuname=unpack("%32C*",$funame);
                   6907:     my $cudom=unpack("%32C*",$fudom);
                   6908:     my $cucourseid=unpack("%32C*",$fucourseid);
                   6909:     my $cusymb=unpack("%32C*",$fusymb);
1.480     www      6910:     my $cunique=&recunique($fucourseid);
1.474     albertel 6911:     my $cpart=unpack("%32S*",$part);
1.480     www      6912:     my $return =&recprefix($fucourseid).'-';
1.620     albertel 6913:     if ($env{"course.$fucourseid.receiptalg"} eq 'receipt2' ||
                   6914: 	$env{'request.state'} eq 'construct') {
1.790     albertel 6915: 	#&logthis("doing receipt2  using parts $cpart, uname $cuname and udom $cudom gets  ".($cpart%$cuname)." and ".($cpart%$cudom));
1.474     albertel 6916: 			       
                   6917: 	$return.= ($cunique%$cuname+
                   6918: 		   $cunique%$cudom+
                   6919: 		   $cusymb%$cuname+
                   6920: 		   $cusymb%$cudom+
                   6921: 		   $cucourseid%$cuname+
                   6922: 		   $cucourseid%$cudom+
                   6923: 		   $cpart%$cuname+
                   6924: 		   $cpart%$cudom);
                   6925:     } else {
                   6926: 	$return.= ($cunique%$cuname+
                   6927: 		   $cunique%$cudom+
                   6928: 		   $cusymb%$cuname+
                   6929: 		   $cusymb%$cudom+
                   6930: 		   $cucourseid%$cuname+
                   6931: 		   $cucourseid%$cudom);
                   6932:     }
                   6933:     return $return;
1.76      www      6934: }
                   6935: 
                   6936: sub receipt {
1.474     albertel 6937:     my ($part)=@_;
1.790     albertel 6938:     my ($symb,$courseid,$domain,$name) = &whichuser();
1.474     albertel 6939:     return &ireceipt($name,$domain,$courseid,$symb,$part);
1.76      www      6940: }
1.260     ng       6941: 
1.790     albertel 6942: sub whichuser {
                   6943:     my ($passedsymb)=@_;
                   6944:     my ($symb,$courseid,$domain,$name,$publicuser);
                   6945:     if (defined($env{'form.grade_symb'})) {
                   6946: 	my ($tmp_courseid)=&get_env_multiple('form.grade_courseid');
                   6947: 	my $allowed=&allowed('vgr',$tmp_courseid);
                   6948: 	if (!$allowed &&
                   6949: 	    exists($env{'request.course.sec'}) &&
                   6950: 	    $env{'request.course.sec'} !~ /^\s*$/) {
                   6951: 	    $allowed=&allowed('vgr',$tmp_courseid.
                   6952: 			      '/'.$env{'request.course.sec'});
                   6953: 	}
                   6954: 	if ($allowed) {
                   6955: 	    ($symb)=&get_env_multiple('form.grade_symb');
                   6956: 	    $courseid=$tmp_courseid;
                   6957: 	    ($domain)=&get_env_multiple('form.grade_domain');
                   6958: 	    ($name)=&get_env_multiple('form.grade_username');
                   6959: 	    return ($symb,$courseid,$domain,$name,$publicuser);
                   6960: 	}
                   6961:     }
                   6962:     if (!$passedsymb) {
                   6963: 	$symb=&symbread();
                   6964:     } else {
                   6965: 	$symb=$passedsymb;
                   6966:     }
                   6967:     $courseid=$env{'request.course.id'};
                   6968:     $domain=$env{'user.domain'};
                   6969:     $name=$env{'user.name'};
                   6970:     if ($name eq 'public' && $domain eq 'public') {
                   6971: 	if (!defined($env{'form.username'})) {
                   6972: 	    $env{'form.username'}.=time.rand(10000000);
                   6973: 	}
                   6974: 	$name.=$env{'form.username'};
                   6975:     }
                   6976:     return ($symb,$courseid,$domain,$name,$publicuser);
                   6977: 
                   6978: }
                   6979: 
1.36      albertel 6980: # ------------------------------------------------------------ Serves up a file
1.472     albertel 6981: # returns either the contents of the file or 
                   6982: # -1 if the file doesn't exist
1.481     raeburn  6983: #
                   6984: # if the target is a file that was uploaded via DOCS, 
                   6985: # a check will be made to see if a current copy exists on the local server,
                   6986: # if it does this will be served, otherwise a copy will be retrieved from
                   6987: # the home server for the course and stored in /home/httpd/html/userfiles on
                   6988: # the local server.   
1.472     albertel 6989: 
1.36      albertel 6990: sub getfile {
1.538     albertel 6991:     my ($file) = @_;
1.609     banghart 6992:     if ($file =~ m -^/*(uploaded|editupload)/-) { $file=&filelocation("",$file); }
1.538     albertel 6993:     &repcopy($file);
                   6994:     return &readfile($file);
                   6995: }
                   6996: 
                   6997: sub repcopy_userfile {
                   6998:     my ($file)=@_;
1.609     banghart 6999:     if ($file =~ m -^/*(uploaded|editupload)/-) { $file=&filelocation("",$file); }
1.610     albertel 7000:     if ($file =~ m|^/home/httpd/html/lonUsers/|) { return 'ok'; }
1.538     albertel 7001:     my ($cdom,$cnum,$filename) = 
1.807     albertel 7002: 	($file=~m|^\Q$perlvar{'lonDocRoot'}\E/+userfiles/+($match_domain)/+($match_username)/+(.*)|);
1.538     albertel 7003:     my ($info,$rtncode);
                   7004:     my $uri="/uploaded/$cdom/$cnum/$filename";
                   7005:     if (-e "$file") {
                   7006: 	my @fileinfo = stat($file);
                   7007: 	my $lwpresp = &getuploaded('HEAD',$uri,$cdom,$cnum,\$info,\$rtncode);
1.482     albertel 7008: 	if ($lwpresp ne 'ok') {
                   7009: 	    if ($rtncode eq '404') {
1.538     albertel 7010: 		unlink($file);
1.482     albertel 7011: 	    }
1.517     albertel 7012: 	    #my $ua=new LWP::UserAgent;
1.538     albertel 7013: 	    #my $request=new HTTP::Request('GET',&tokenwrapper($uri));
1.517     albertel 7014: 	    #my $response=$ua->request($request);
                   7015: 	    #if ($response->is_success()) {
                   7016: 	#	return $response->content;
                   7017: 	#    } else {
                   7018: 	#	return -1;
                   7019: 	#    }
1.482     albertel 7020: 	    return -1;
                   7021: 	}
                   7022: 	if ($info < $fileinfo[9]) {
1.607     raeburn  7023: 	    return 'ok';
1.482     albertel 7024: 	}
                   7025: 	$info = '';
1.538     albertel 7026: 	$lwpresp = &getuploaded('GET',$uri,$cdom,$cnum,\$info,\$rtncode);
1.482     albertel 7027: 	if ($lwpresp ne 'ok') {
                   7028: 	    return -1;
                   7029: 	}
                   7030:     } else {
1.538     albertel 7031: 	my $lwpresp = &getuploaded('GET',$uri,$cdom,$cnum,\$info,\$rtncode);
1.482     albertel 7032: 	if ($lwpresp ne 'ok') {
1.517     albertel 7033: 	    my $ua=new LWP::UserAgent;
1.538     albertel 7034: 	    my $request=new HTTP::Request('GET',&tokenwrapper($uri));
1.517     albertel 7035: 	    my $response=$ua->request($request);
                   7036: 	    if ($response->is_success()) {
1.538     albertel 7037: 		$info=$response->content;
1.517     albertel 7038: 	    } else {
                   7039: 		return -1;
                   7040: 	    }
1.482     albertel 7041: 	}
                   7042: 	my @parts = ($cdom,$cnum); 
                   7043: 	if ($filename =~ m|^(.+)/[^/]+$|) {
                   7044: 	    push @parts, split(/\//,$1);
1.518     albertel 7045: 	}
1.538     albertel 7046: 	my $path = $perlvar{'lonDocRoot'}.'/userfiles';
1.482     albertel 7047: 	foreach my $part (@parts) {
                   7048: 	    $path .= '/'.$part;
                   7049: 	    if (!-e $path) {
                   7050: 		mkdir($path,0770);
                   7051: 	    }
                   7052: 	}
                   7053:     }
1.538     albertel 7054:     open(FILE,">$file");
1.482     albertel 7055:     print FILE $info;
                   7056:     close(FILE);
1.607     raeburn  7057:     return 'ok';
1.481     raeburn  7058: }
                   7059: 
1.517     albertel 7060: sub tokenwrapper {
                   7061:     my $uri=shift;
1.552     albertel 7062:     $uri=~s|^http\://([^/]+)||;
                   7063:     $uri=~s|^/||;
1.620     albertel 7064:     $env{'user.environment'}=~/\/([^\/]+)\.id/;
1.517     albertel 7065:     my $token=$1;
1.552     albertel 7066:     my (undef,$udom,$uname,$file)=split('/',$uri,4);
                   7067:     if ($udom && $uname && $file) {
                   7068: 	$file=~s|(\?\.*)*$||;
1.620     albertel 7069:         &appenv("userfile.$udom/$uname/$file" => $env{'request.course.id'});
1.552     albertel 7070:         return 'http://'.$hostname{ &homeserver($uname,$udom)}.'/'.$uri.
1.517     albertel 7071:                (($uri=~/\?/)?'&':'?').'token='.$token.
                   7072:                                '&tokenissued='.$perlvar{'lonHostID'};
                   7073:     } else {
                   7074:         return '/adm/notfound.html';
                   7075:     }
                   7076: }
                   7077: 
1.481     raeburn  7078: sub getuploaded {
                   7079:     my ($reqtype,$uri,$cdom,$cnum,$info,$rtncode) = @_;
                   7080:     $uri=~s/^\///;
                   7081:     $uri = 'http://'.$hostname{ &homeserver($cnum,$cdom)}.'/raw/'.$uri;
                   7082:     my $ua=new LWP::UserAgent;
                   7083:     my $request=new HTTP::Request($reqtype,$uri);
                   7084:     my $response=$ua->request($request);
                   7085:     $$rtncode = $response->code;
1.482     albertel 7086:     if (! $response->is_success()) {
                   7087: 	return 'failed';
                   7088:     }      
                   7089:     if ($reqtype eq 'HEAD') {
1.486     www      7090: 	$$info = &HTTP::Date::str2time( $response->header('Last-modified') );
1.482     albertel 7091:     } elsif ($reqtype eq 'GET') {
                   7092: 	$$info = $response->content;
1.472     albertel 7093:     }
1.482     albertel 7094:     return 'ok';
1.36      albertel 7095: }
                   7096: 
1.481     raeburn  7097: sub readfile {
                   7098:     my $file = shift;
                   7099:     if ( (! -e $file ) || ($file eq '') ) { return -1; };
                   7100:     my $fh;
                   7101:     open($fh,"<$file");
                   7102:     my $a='';
1.800     albertel 7103:     while (my $line = <$fh>) { $a .= $line; }
1.481     raeburn  7104:     return $a;
                   7105: }
                   7106: 
1.36      albertel 7107: sub filelocation {
1.590     banghart 7108:     my ($dir,$file) = @_;
                   7109:     my $location;
                   7110:     $file=~ s/^\s*(\S+)\s*$/$1/; ## strip off leading and trailing spaces
1.700     albertel 7111: 
                   7112:     if ($file =~ m-^/adm/-) {
                   7113: 	$file=~s-^/adm/wrapper/-/-;
                   7114: 	$file=~s-^/adm/coursedocs/showdoc/-/-;
                   7115:     }
1.590     banghart 7116:     if ($file=~m:^/~:) { # is a contruction space reference
                   7117:         $location = $file;
                   7118:         $location =~ s:/~(.*?)/(.*):/home/$1/public_html/$2:;
1.807     albertel 7119:     } elsif ($file=~m{^/home/$match_username/public_html/}) {
1.649     albertel 7120: 	# is a correct contruction space reference
                   7121:         $location = $file;
1.609     banghart 7122:     } elsif ($file=~/^\/*(uploaded|editupload)/) { # is an uploaded file
1.590     banghart 7123:         my ($udom,$uname,$filename)=
1.807     albertel 7124:   	    ($file=~m -^/+(?:uploaded|editupload)/+($match_domain)/+($match_username)/+(.*)$-);
1.590     banghart 7125:         my $home=&homeserver($uname,$udom);
                   7126:         my $is_me=0;
                   7127:         my @ids=&current_machine_ids();
                   7128:         foreach my $id (@ids) { if ($id eq $home) { $is_me=1; } }
                   7129:         if ($is_me) {
1.740     www      7130:   	    $location=&propath($udom,$uname).
1.590     banghart 7131:   	      '/userfiles/'.$filename;
                   7132:         } else {
                   7133:   	  $location=$Apache::lonnet::perlvar{'lonDocRoot'}.'/userfiles/'.
                   7134:   	      $udom.'/'.$uname.'/'.$filename;
                   7135:         }
                   7136:     } else {
                   7137:         $file=~s/^\Q$perlvar{'lonDocRoot'}\E//;
                   7138:         $file=~s:^/res/:/:;
                   7139:         if ( !( $file =~ m:^/:) ) {
                   7140:             $location = $dir. '/'.$file;
                   7141:         } else {
                   7142:             $location = '/home/httpd/html/res'.$file;
                   7143:         }
1.59      albertel 7144:     }
1.590     banghart 7145:     $location=~s://+:/:g; # remove duplicate /
                   7146:     while ($location=~m:/\.\./:) {$location=~ s:/[^/]+/\.\./:/:g;} #remove dir/..
                   7147:     while ($location=~m:/\./:) {$location=~ s:/\./:/:g;} #remove /./
                   7148:     return $location;
1.46      www      7149: }
1.36      albertel 7150: 
1.46      www      7151: sub hreflocation {
                   7152:     my ($dir,$file)=@_;
1.460     albertel 7153:     unless (($file=~m-^http://-i) || ($file=~m-^/-)) {
1.666     albertel 7154: 	$file=filelocation($dir,$file);
1.700     albertel 7155:     } elsif ($file=~m-^/adm/-) {
                   7156: 	$file=~s-^/adm/wrapper/-/-;
                   7157: 	$file=~s-^/adm/coursedocs/showdoc/-/-;
1.666     albertel 7158:     }
                   7159:     if ($file=~m-^\Q$perlvar{'lonDocRoot'}\E-) {
                   7160: 	$file=~s-^\Q$perlvar{'lonDocRoot'}\E--;
1.807     albertel 7161:     } elsif ($file=~m-/home/($match_username)/public_html/-) {
                   7162: 	$file=~s-^/home/($match_username)/public_html/-/~$1/-;
1.666     albertel 7163:     } elsif ($file=~m-^\Q$perlvar{'lonUsersDir'}\E-) {
1.807     albertel 7164: 	$file=~s-^/home/httpd/lonUsers/($match_domain)/./././($match_username)/userfiles/
1.666     albertel 7165: 	    -/uploaded/$1/$2/-x;
1.46      www      7166:     }
1.462     albertel 7167:     return $file;
1.465     albertel 7168: }
                   7169: 
                   7170: sub current_machine_domains {
                   7171:     my $hostname=$hostname{$perlvar{'lonHostID'}};
                   7172:     my @domains;
                   7173:     while( my($id, $name) = each(%hostname)) {
1.467     matthew  7174: #	&logthis("-$id-$name-$hostname-");
1.465     albertel 7175: 	if ($hostname eq $name) {
                   7176: 	    push(@domains,$hostdom{$id});
                   7177: 	}
                   7178:     }
                   7179:     return @domains;
                   7180: }
                   7181: 
                   7182: sub current_machine_ids {
                   7183:     my $hostname=$hostname{$perlvar{'lonHostID'}};
                   7184:     my @ids;
                   7185:     while( my($id, $name) = each(%hostname)) {
1.467     matthew  7186: #	&logthis("-$id-$name-$hostname-");
1.465     albertel 7187: 	if ($hostname eq $name) {
                   7188: 	    push(@ids,$id);
                   7189: 	}
                   7190:     }
                   7191:     return @ids;
1.31      www      7192: }
                   7193: 
                   7194: # ------------------------------------------------------------- Declutters URLs
                   7195: 
                   7196: sub declutter {
                   7197:     my $thisfn=shift;
1.569     albertel 7198:     if ($thisfn=~m|^/enc/|) { $thisfn=&Apache::lonenc::unencrypted($thisfn); }
1.479     albertel 7199:     $thisfn=~s/^\Q$perlvar{'lonDocRoot'}\E//;
1.31      www      7200:     $thisfn=~s/^\///;
1.697     albertel 7201:     $thisfn=~s|^adm/wrapper/||;
                   7202:     $thisfn=~s|^adm/coursedocs/showdoc/||;
1.31      www      7203:     $thisfn=~s/^res\///;
1.235     www      7204:     $thisfn=~s/\?.+$//;
1.268     www      7205:     return $thisfn;
                   7206: }
                   7207: 
                   7208: # ------------------------------------------------------------- Clutter up URLs
                   7209: 
                   7210: sub clutter {
                   7211:     my $thisfn='/'.&declutter(shift);
1.609     banghart 7212:     unless ($thisfn=~/^\/(uploaded|editupload|adm|userfiles|ext|raw|priv|public)\//) { 
1.270     www      7213:        $thisfn='/res'.$thisfn; 
                   7214:     }
1.694     albertel 7215:     if ($thisfn !~m|/adm|) {
1.695     albertel 7216: 	if ($thisfn =~ m|/ext/|) {
1.694     albertel 7217: 	    $thisfn='/adm/wrapper'.$thisfn;
1.695     albertel 7218: 	} else {
                   7219: 	    my ($ext) = ($thisfn =~ /\.(\w+)$/);
                   7220: 	    my $embstyle=&Apache::loncommon::fileembstyle($ext);
1.698     albertel 7221: 	    if ($embstyle eq 'ssi'
                   7222: 		|| ($embstyle eq 'hdn')
                   7223: 		|| ($embstyle eq 'rat')
                   7224: 		|| ($embstyle eq 'prv')
                   7225: 		|| ($embstyle eq 'ign')) {
                   7226: 		#do nothing with these
                   7227: 	    } elsif (($embstyle eq 'img') 
1.695     albertel 7228: 		|| ($embstyle eq 'emb')
                   7229: 		|| ($embstyle eq 'wrp')) {
                   7230: 		$thisfn='/adm/wrapper'.$thisfn;
1.698     albertel 7231: 	    } elsif ($embstyle eq 'unk'
                   7232: 		     && $thisfn!~/\.(sequence|page)$/) {
1.695     albertel 7233: 		$thisfn='/adm/coursedocs/showdoc'.$thisfn;
1.698     albertel 7234: 	    } else {
1.718     www      7235: #		&logthis("Got a blank emb style");
1.695     albertel 7236: 	    }
1.694     albertel 7237: 	}
                   7238:     }
1.31      www      7239:     return $thisfn;
1.12      www      7240: }
                   7241: 
1.787     albertel 7242: sub clutter_with_no_wrapper {
                   7243:     my $uri = &clutter(shift);
                   7244:     if ($uri =~ m-^/adm/-) {
                   7245: 	$uri =~ s-^/adm/wrapper/-/-;
                   7246: 	$uri =~ s-^/adm/coursedocs/showdoc/-/-;
                   7247:     }
                   7248:     return $uri;
                   7249: }
                   7250: 
1.557     albertel 7251: sub freeze_escape {
                   7252:     my ($value)=@_;
                   7253:     if (ref($value)) {
                   7254: 	$value=&nfreeze($value);
                   7255: 	return '__FROZEN__'.&escape($value);
                   7256:     }
                   7257:     return &escape($value);
                   7258: }
                   7259: 
1.11      www      7260: 
1.557     albertel 7261: sub thaw_unescape {
                   7262:     my ($value)=@_;
                   7263:     if ($value =~ /^__FROZEN__/) {
                   7264: 	substr($value,0,10,undef);
                   7265: 	$value=&unescape($value);
                   7266: 	return &thaw($value);
                   7267:     }
                   7268:     return &unescape($value);
                   7269: }
                   7270: 
1.436     albertel 7271: sub correct_line_ends {
                   7272:     my ($result)=@_;
                   7273:     $$result =~s/\r\n/\n/mg;
                   7274:     $$result =~s/\r/\n/mg;
1.415     albertel 7275: }
1.1       albertel 7276: # ================================================================ Main Program
                   7277: 
1.184     www      7278: sub goodbye {
1.204     albertel 7279:    &logthis("Starting Shut down");
1.443     albertel 7280: #not converted to using infrastruture and probably shouldn't be
1.599     albertel 7281:    &logthis(sprintf("%-20s is %s",'%badServerCache',length(&freeze(\%badServerCache))));
1.443     albertel 7282: #converted
1.599     albertel 7283: #   &logthis(sprintf("%-20s is %s",'%metacache',scalar(%metacache)));
                   7284:    &logthis(sprintf("%-20s is %s",'%homecache',length(&freeze(\%homecache))));
                   7285: #   &logthis(sprintf("%-20s is %s",'%titlecache',length(&freeze(\%titlecache))));
                   7286: #   &logthis(sprintf("%-20s is %s",'%courseresdatacache',length(&freeze(\%courseresdatacache))));
1.425     albertel 7287: #1.1 only
1.599     albertel 7288: #   &logthis(sprintf("%-20s is %s",'%userresdatacache',length(&freeze(\%userresdatacache))));
                   7289: #   &logthis(sprintf("%-20s is %s",'%getsectioncache',length(&freeze(\%getsectioncache))));
                   7290: #   &logthis(sprintf("%-20s is %s",'%courseresversioncache',length(&freeze(\%courseresversioncache))));
                   7291: #   &logthis(sprintf("%-20s is %s",'%resversioncache',length(&freeze(\%resversioncache))));
                   7292:    &logthis(sprintf("%-20s is %s",'%remembered',length(&freeze(\%remembered))));
                   7293:    &logthis(sprintf("%-20s is %s",'kicks',$kicks));
                   7294:    &logthis(sprintf("%-20s is %s",'hits',$hits));
1.184     www      7295:    &flushcourselogs();
                   7296:    &logthis("Shutting down");
                   7297: }
                   7298: 
1.179     www      7299: BEGIN {
1.228     harris41 7300: # ----------------------------------- Read loncapa.conf and loncapa_apache.conf
1.195     www      7301:     unless ($readit) {
1.217     harris41 7302: {
1.781     raeburn  7303:     my $configvars = LONCAPA::Configuration::read_conf('loncapa.conf');
                   7304:     %perlvar = (%perlvar,%{$configvars});
1.227     harris41 7305: }
1.1       albertel 7306: 
1.327     albertel 7307: # ------------------------------------------------------------ Read domain file
                   7308: {
                   7309:     %domaindescription = ();
                   7310:     %domain_auth_def = ();
                   7311:     %domain_auth_arg_def = ();
1.448     albertel 7312:     my $fh;
                   7313:     if (open($fh,"<".$Apache::lonnet::perlvar{'lonTabDir'}.'/domain.tab')) {
1.800     albertel 7314: 	while (my $line = <$fh>) {
                   7315:            next if ($line =~ /^(\#|\s*$)/);
1.390     matthew  7316: #           next if /^\#/;
1.801     foxr     7317:            chomp $line;
1.403     www      7318:            my ($domain, $domain_description, $def_auth, $def_auth_arg,
1.800     albertel 7319: 	       $def_lang, $city, $longi, $lati, $primary) = split(/:/,$line,9);
1.403     www      7320: 	   $domain_auth_def{$domain}=$def_auth;
1.327     albertel 7321:            $domain_auth_arg_def{$domain}=$def_auth_arg;
1.403     www      7322: 	   $domaindescription{$domain}=$domain_description;
                   7323: 	   $domain_lang_def{$domain}=$def_lang;
                   7324: 	   $domain_city{$domain}=$city;
                   7325: 	   $domain_longi{$domain}=$longi;
                   7326: 	   $domain_lati{$domain}=$lati;
1.685     raeburn  7327:            $domain_primary{$domain}=$primary;
1.403     www      7328: 
1.448     albertel 7329:  #         &logthis("Domain.tab: $domain, $domain_auth_def{$domain}, $domain_auth_arg_def{$domain},$domaindescription{$domain}");
1.327     albertel 7330: #          &logthis("Domain.tab: $domain ".$domaindescription{$domain} );
1.448     albertel 7331: 	}
1.327     albertel 7332:     }
1.448     albertel 7333:     close ($fh);
1.327     albertel 7334: }
                   7335: 
                   7336: 
1.1       albertel 7337: # ------------------------------------------------------------- Read hosts file
                   7338: {
1.448     albertel 7339:     open(my $config,"<$perlvar{'lonTabDir'}/hosts.tab");
1.1       albertel 7340: 
                   7341:     while (my $configline=<$config>) {
1.303     matthew  7342:        next if ($configline =~ /^(\#|\s*$)/);
1.154     www      7343:        chomp($configline);
1.595     albertel 7344:        my ($id,$domain,$role,$name)=split(/:/,$configline);
1.597     albertel 7345:        $name=~s/\s//g;
1.595     albertel 7346:        if ($id && $domain && $role && $name) {
1.252     albertel 7347: 	 $hostname{$id}=$name;
                   7348: 	 $hostdom{$id}=$domain;
                   7349: 	 if ($role eq 'library') { $libserv{$id}=$name; }
1.245     www      7350:        }
1.1       albertel 7351:     }
1.448     albertel 7352:     close($config);
1.619     albertel 7353:     # FIXME: dev server don't want this, production servers _do_ want this
1.654     albertel 7354:     #&get_iphost();
1.1       albertel 7355: }
                   7356: 
1.598     albertel 7357: sub get_iphost {
                   7358:     if (%iphost) { return %iphost; }
1.653     albertel 7359:     my %name_to_ip;
1.598     albertel 7360:     foreach my $id (keys(%hostname)) {
                   7361: 	my $name=$hostname{$id};
1.653     albertel 7362: 	my $ip;
                   7363: 	if (!exists($name_to_ip{$name})) {
                   7364: 	    $ip = gethostbyname($name);
                   7365: 	    if (!$ip || length($ip) ne 4) {
                   7366: 		&logthis("Skipping host $id name $name no IP found\n");
                   7367: 		next;
                   7368: 	    }
                   7369: 	    $ip=inet_ntoa($ip);
                   7370: 	    $name_to_ip{$name} = $ip;
                   7371: 	} else {
                   7372: 	    $ip = $name_to_ip{$name};
1.598     albertel 7373: 	}
                   7374: 	push(@{$iphost{$ip}},$id);
                   7375:     }
                   7376:     return %iphost;
                   7377: }
                   7378: 
1.1       albertel 7379: # ------------------------------------------------------ Read spare server file
                   7380: {
1.448     albertel 7381:     open(my $config,"<$perlvar{'lonTabDir'}/spare.tab");
1.1       albertel 7382: 
                   7383:     while (my $configline=<$config>) {
                   7384:        chomp($configline);
1.284     matthew  7385:        if ($configline) {
1.784     albertel 7386: 	   my ($host,$type) = split(':',$configline,2);
1.785     albertel 7387: 	   if (!defined($type) || $type eq '') { $type = 'default' };
1.784     albertel 7388: 	   push(@{ $spareid{$type} }, $host);
1.1       albertel 7389:        }
                   7390:     }
1.448     albertel 7391:     close($config);
1.1       albertel 7392: }
1.11      www      7393: # ------------------------------------------------------------ Read permissions
                   7394: {
1.448     albertel 7395:     open(my $config,"<$perlvar{'lonTabDir'}/roles.tab");
1.11      www      7396: 
                   7397:     while (my $configline=<$config>) {
1.448     albertel 7398: 	chomp($configline);
                   7399: 	if ($configline) {
                   7400: 	    my ($role,$perm)=split(/ /,$configline);
                   7401: 	    if ($perm ne '') { $pr{$role}=$perm; }
                   7402: 	}
1.11      www      7403:     }
1.448     albertel 7404:     close($config);
1.11      www      7405: }
                   7406: 
                   7407: # -------------------------------------------- Read plain texts for permissions
                   7408: {
1.448     albertel 7409:     open(my $config,"<$perlvar{'lonTabDir'}/rolesplain.tab");
1.11      www      7410: 
                   7411:     while (my $configline=<$config>) {
1.448     albertel 7412: 	chomp($configline);
                   7413: 	if ($configline) {
1.742     raeburn  7414: 	    my ($short,@plain)=split(/:/,$configline);
                   7415:             %{$prp{$short}} = ();
                   7416: 	    if (@plain > 0) {
                   7417:                 $prp{$short}{'std'} = $plain[0];
                   7418:                 for (my $i=1; $i<@plain; $i++) {
                   7419:                     $prp{$short}{'alt'.$i} = $plain[$i];  
                   7420:                 }
                   7421:             }
1.448     albertel 7422: 	}
1.135     www      7423:     }
1.448     albertel 7424:     close($config);
1.135     www      7425: }
                   7426: 
                   7427: # ---------------------------------------------------------- Read package table
                   7428: {
1.448     albertel 7429:     open(my $config,"<$perlvar{'lonTabDir'}/packages.tab");
1.135     www      7430: 
                   7431:     while (my $configline=<$config>) {
1.483     albertel 7432: 	if ($configline !~ /\S/ || $configline=~/^#/) { next; }
1.448     albertel 7433: 	chomp($configline);
                   7434: 	my ($short,$plain)=split(/:/,$configline);
                   7435: 	my ($pack,$name)=split(/\&/,$short);
                   7436: 	if ($plain ne '') {
                   7437: 	    $packagetab{$pack.'&'.$name.'&name'}=$name; 
                   7438: 	    $packagetab{$short}=$plain; 
                   7439: 	}
1.11      www      7440:     }
1.448     albertel 7441:     close($config);
1.329     matthew  7442: }
                   7443: 
                   7444: # ------------- set up temporary directory
                   7445: {
                   7446:     $tmpdir = $perlvar{'lonDaemons'}.'/tmp/';
                   7447: 
1.11      www      7448: }
                   7449: 
1.794     albertel 7450: $memcache=new Cache::Memcached({'servers'           => ['127.0.0.1:11211'],
                   7451: 				'compress_threshold'=> 20_000,
                   7452:  			        });
1.185     www      7453: 
1.281     www      7454: $processmarker='_'.time.'_'.$perlvar{'lonHostID'};
1.186     www      7455: $dumpcount=0;
1.22      www      7456: 
1.163     harris41 7457: &logtouch();
1.672     albertel 7458: &logthis('<font color="yellow">INFO: Read configuration</font>');
1.195     www      7459: $readit=1;
1.564     albertel 7460:     {
                   7461: 	use integer;
                   7462: 	my $test=(2**32)+1;
1.568     albertel 7463: 	if ($test != 0) { $_64bit=1; } else { $_64bit=0; }
1.564     albertel 7464: 	&logthis(" Detected 64bit platform ($_64bit)");
                   7465:     }
1.195     www      7466: }
1.1       albertel 7467: }
1.179     www      7468: 
1.1       albertel 7469: 1;
1.191     harris41 7470: __END__
                   7471: 
1.243     albertel 7472: =pod
                   7473: 
1.191     harris41 7474: =head1 NAME
                   7475: 
1.243     albertel 7476: Apache::lonnet - Subroutines to ask questions about things in the network.
1.191     harris41 7477: 
                   7478: =head1 SYNOPSIS
                   7479: 
1.243     albertel 7480: Invoked by other LON-CAPA modules, when they need to talk to or about objects in the network.
1.191     harris41 7481: 
                   7482:  &Apache::lonnet::SUBROUTINENAME(ARGUMENTS);
                   7483: 
1.243     albertel 7484: Common parameters:
                   7485: 
                   7486: =over 4
                   7487: 
                   7488: =item *
                   7489: 
                   7490: $uname : an internal username (if $cname expecting a course Id specifically)
                   7491: 
                   7492: =item *
                   7493: 
                   7494: $udom : a domain (if $cdom expecting a course's domain specifically)
                   7495: 
                   7496: =item *
                   7497: 
                   7498: $symb : a resource instance identifier
                   7499: 
                   7500: =item *
                   7501: 
                   7502: $namespace : the name of a .db file that contains the data needed or
                   7503: being set.
                   7504: 
                   7505: =back
                   7506: 
1.394     bowersj2 7507: =head1 OVERVIEW
1.191     harris41 7508: 
1.394     bowersj2 7509: lonnet provides subroutines which interact with the
                   7510: lonc/lond (TCP) network layer of LON-CAPA. They can be used to ask
                   7511: about classes, users, and resources.
1.243     albertel 7512: 
                   7513: For many of these objects you can also use this to store data about
                   7514: them or modify them in various ways.
1.191     harris41 7515: 
1.394     bowersj2 7516: =head2 Symbs
1.191     harris41 7517: 
1.394     bowersj2 7518: To identify a specific instance of a resource, LON-CAPA uses symbols
                   7519: or "symbs"X<symb>. These identifiers are built from the URL of the
                   7520: map, the resource number of the resource in the map, and the URL of
                   7521: the resource itself. The latter is somewhat redundant, but might help
                   7522: if maps change.
                   7523: 
                   7524: An example is
                   7525: 
                   7526:  msu/korte/parts/part1.sequence___19___msu/korte/tests/part12.problem
                   7527: 
                   7528: The respective map entry is
                   7529: 
                   7530:  <resource id="19" src="/res/msu/korte/tests/part12.problem"
                   7531:   title="Problem 2">
                   7532:  </resource>
                   7533: 
                   7534: Symbs are used by the random number generator, as well as to store and
                   7535: restore data specific to a certain instance of for example a problem.
                   7536: 
                   7537: =head2 Storing And Retrieving Data
                   7538: 
                   7539: X<store()>X<cstore()>X<restore()>Three of the most important functions
                   7540: in C<lonnet.pm> are C<&Apache::lonnet::cstore()>,
                   7541: C<&Apache::lonnet:restore()>, and C<&Apache::lonnet::store()>, which
                   7542: is is the non-critical message twin of cstore. These functions are for
                   7543: handlers to store a perl hash to a user's permanent data space in an
                   7544: easy manner, and to retrieve it again on another call. It is expected
                   7545: that a handler would use this once at the beginning to retrieve data,
                   7546: and then again once at the end to send only the new data back.
                   7547: 
                   7548: The data is stored in the user's data directory on the user's
                   7549: homeserver under the ID of the course.
                   7550: 
                   7551: The hash that is returned by restore will have all of the previous
                   7552: value for all of the elements of the hash.
                   7553: 
                   7554: Example:
                   7555: 
                   7556:  #creating a hash
                   7557:  my %hash;
                   7558:  $hash{'foo'}='bar';
                   7559: 
                   7560:  #storing it
                   7561:  &Apache::lonnet::cstore(\%hash);
                   7562: 
                   7563:  #changing a value
                   7564:  $hash{'foo'}='notbar';
                   7565: 
                   7566:  #adding a new value
                   7567:  $hash{'bar'}='foo';
                   7568:  &Apache::lonnet::cstore(\%hash);
                   7569: 
                   7570:  #retrieving the hash
                   7571:  my %history=&Apache::lonnet::restore();
                   7572: 
                   7573:  #print the hash
                   7574:  foreach my $key (sort(keys(%history))) {
                   7575:    print("\%history{$key} = $history{$key}");
                   7576:  }
                   7577: 
                   7578: Will print out:
1.191     harris41 7579: 
1.394     bowersj2 7580:  %history{1:foo} = bar
                   7581:  %history{1:keys} = foo:timestamp
                   7582:  %history{1:timestamp} = 990455579
                   7583:  %history{2:bar} = foo
                   7584:  %history{2:foo} = notbar
                   7585:  %history{2:keys} = foo:bar:timestamp
                   7586:  %history{2:timestamp} = 990455580
                   7587:  %history{bar} = foo
                   7588:  %history{foo} = notbar
                   7589:  %history{timestamp} = 990455580
                   7590:  %history{version} = 2
                   7591: 
                   7592: Note that the special hash entries C<keys>, C<version> and
                   7593: C<timestamp> were added to the hash. C<version> will be equal to the
                   7594: total number of versions of the data that have been stored. The
                   7595: C<timestamp> attribute will be the UNIX time the hash was
                   7596: stored. C<keys> is available in every historical section to list which
                   7597: keys were added or changed at a specific historical revision of a
                   7598: hash.
                   7599: 
                   7600: B<Warning>: do not store the hash that restore returns directly. This
                   7601: will cause a mess since it will restore the historical keys as if the
                   7602: were new keys. I.E. 1:foo will become 1:1:foo etc.
1.191     harris41 7603: 
1.394     bowersj2 7604: Calling convention:
1.191     harris41 7605: 
1.394     bowersj2 7606:  my %record=&Apache::lonnet::restore($symb,$courseid,$domain,$uname,$home);
                   7607:  &Apache::lonnet::cstore(\%newrecord,$symb,$courseid,$domain,$uname,$home);
1.191     harris41 7608: 
1.394     bowersj2 7609: For more detailed information, see lonnet specific documentation.
1.191     harris41 7610: 
1.394     bowersj2 7611: =head1 RETURN MESSAGES
1.191     harris41 7612: 
1.394     bowersj2 7613: =over 4
1.191     harris41 7614: 
1.394     bowersj2 7615: =item * B<con_lost>: unable to contact remote host
1.191     harris41 7616: 
1.394     bowersj2 7617: =item * B<con_delayed>: unable to contact remote host, message will be delivered
                   7618: when the connection is brought back up
1.191     harris41 7619: 
1.394     bowersj2 7620: =item * B<con_failed>: unable to contact remote host and unable to save message
                   7621: for later delivery
1.191     harris41 7622: 
1.394     bowersj2 7623: =item * B<error:>: an error a occured, a description of the error follows the :
1.191     harris41 7624: 
1.394     bowersj2 7625: =item * B<no_such_host>: unable to fund a host associated with the user/domain
1.243     albertel 7626: that was requested
1.191     harris41 7627: 
1.243     albertel 7628: =back
1.191     harris41 7629: 
1.243     albertel 7630: =head1 PUBLIC SUBROUTINES
1.191     harris41 7631: 
1.243     albertel 7632: =head2 Session Environment Functions
1.191     harris41 7633: 
1.243     albertel 7634: =over 4
1.191     harris41 7635: 
1.394     bowersj2 7636: =item * 
                   7637: X<appenv()>
                   7638: B<appenv(%hash)>: the value of %hash is written to
                   7639: the user envirnoment file, and will be restored for each access this
1.620     albertel 7640: user makes during this session, also modifies the %env for the current
1.394     bowersj2 7641: process
1.191     harris41 7642: 
                   7643: =item *
1.394     bowersj2 7644: X<delenv()>
                   7645: B<delenv($regexp)>: removes all items from the session
                   7646: environment file that matches the regular expression in $regexp. The
1.620     albertel 7647: values are also delted from the current processes %env.
1.191     harris41 7648: 
1.795     albertel 7649: =item * get_env_multiple($name) 
                   7650: 
                   7651: gets $name from the %env hash, it seemlessly handles the cases where multiple
                   7652: values may be defined and end up as an array ref.
                   7653: 
                   7654: returns an array of values
                   7655: 
1.243     albertel 7656: =back
                   7657: 
                   7658: =head2 User Information
1.191     harris41 7659: 
1.243     albertel 7660: =over 4
1.191     harris41 7661: 
                   7662: =item *
1.394     bowersj2 7663: X<queryauthenticate()>
                   7664: B<queryauthenticate($uname,$udom)>: try to determine user's current 
1.191     harris41 7665: authentication scheme
                   7666: 
                   7667: =item *
1.394     bowersj2 7668: X<authenticate()>
                   7669: B<authenticate($uname,$upass,$udom)>: try to
                   7670: authenticate user from domain's lib servers (first use the current
                   7671: one). C<$upass> should be the users password.
1.191     harris41 7672: 
                   7673: =item *
1.394     bowersj2 7674: X<homeserver()>
                   7675: B<homeserver($uname,$udom)>: find the server which has
                   7676: the user's directory and files (there must be only one), this caches
                   7677: the answer, and also caches if there is a borken connection.
1.191     harris41 7678: 
                   7679: =item *
1.394     bowersj2 7680: X<idget()>
                   7681: B<idget($udom,@ids)>: find the usernames behind a list of IDs
                   7682: (IDs are a unique resource in a domain, there must be only 1 ID per
                   7683: username, and only 1 username per ID in a specific domain) (returns
                   7684: hash: id=>name,id=>name)
1.191     harris41 7685: 
                   7686: =item *
1.394     bowersj2 7687: X<idrget()>
                   7688: B<idrget($udom,@unames)>: find the IDs behind a list of
                   7689: usernames (returns hash: name=>id,name=>id)
1.191     harris41 7690: 
                   7691: =item *
1.394     bowersj2 7692: X<idput()>
                   7693: B<idput($udom,%ids)>: store away a list of names and associated IDs
1.191     harris41 7694: 
                   7695: =item *
1.394     bowersj2 7696: X<rolesinit()>
                   7697: B<rolesinit($udom,$username,$authhost)>: get user privileges
1.243     albertel 7698: 
                   7699: =item *
1.551     albertel 7700: X<getsection()>
                   7701: B<getsection($udom,$uname,$cname)>: finds the section of student in the
1.243     albertel 7702: course $cname, return section name/number or '' for "not in course"
                   7703: and '-1' for "no section"
                   7704: 
                   7705: =item *
1.394     bowersj2 7706: X<userenvironment()>
                   7707: B<userenvironment($udom,$uname,@what)>: gets the values of the keys
1.243     albertel 7708: passed in @what from the requested user's environment, returns a hash
                   7709: 
                   7710: =back
                   7711: 
                   7712: =head2 User Roles
                   7713: 
                   7714: =over 4
                   7715: 
                   7716: =item *
                   7717: 
1.809   ! raeburn  7718: allowed($priv,$uri,$symb) : check for a user privilege; returns codes for allowed actions
1.243     albertel 7719:  F: full access
                   7720:  U,I,K: authentication modes (cxx only)
                   7721:  '': forbidden
                   7722:  1: user needs to choose course
                   7723:  2: browse allowed
1.766     albertel 7724:  A: passphrase authentication needed
1.243     albertel 7725: 
                   7726: =item *
                   7727: 
                   7728: definerole($rolename,$sysrole,$domrole,$courole) : define role; define a custom
                   7729: role rolename set privileges in format of lonTabs/roles.tab for system, domain,
                   7730: and course level
                   7731: 
                   7732: =item *
                   7733: 
                   7734: plaintext($short) : return value in %prp hash (rolesplain.tab); plain text
                   7735: explanation of a user role term
                   7736: 
                   7737: =back
                   7738: 
                   7739: =head2 User Modification
                   7740: 
                   7741: =over 4
                   7742: 
                   7743: =item *
                   7744: 
                   7745: assignrole($udom,$uname,$url,$role,$end,$start) : assign role; give a role to a
                   7746: user for the level given by URL.  Optional start and end dates (leave empty
                   7747: string or zero for "no date")
1.191     harris41 7748: 
                   7749: =item *
                   7750: 
1.243     albertel 7751: changepass($uname,$udom,$currentpass,$newpass,$server) : attempts to
                   7752: change a users, password, possible return values are: ok,
                   7753: pwchange_failure, non_authorized, auth_mode_error, unknown_user,
                   7754: refused
1.191     harris41 7755: 
                   7756: =item *
                   7757: 
1.243     albertel 7758: modifyuserauth($udom,$uname,$umode,$upass) : modify user authentication
1.191     harris41 7759: 
                   7760: =item *
                   7761: 
1.243     albertel 7762: modifyuser($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene) : 
                   7763: modify user
1.191     harris41 7764: 
                   7765: =item *
                   7766: 
1.286     matthew  7767: modifystudent
                   7768: 
                   7769: modify a students enrollment and identification information.
                   7770: The course id is resolved based on the current users environment.  
                   7771: This means the envoking user must be a course coordinator or otherwise
                   7772: associated with a course.
                   7773: 
1.297     matthew  7774: This call is essentially a wrapper for lonnet::modifyuser and
                   7775: lonnet::modify_student_enrollment
1.286     matthew  7776: 
                   7777: Inputs: 
                   7778: 
                   7779: =over 4
                   7780: 
                   7781: =item B<$udom> Students loncapa domain
                   7782: 
                   7783: =item B<$uname> Students loncapa login name
                   7784: 
                   7785: =item B<$uid> Students id/student number
                   7786: 
                   7787: =item B<$umode> Students authentication mode
                   7788: 
                   7789: =item B<$upass> Students password
                   7790: 
                   7791: =item B<$first> Students first name
                   7792: 
                   7793: =item B<$middle> Students middle name
                   7794: 
                   7795: =item B<$last> Students last name
                   7796: 
                   7797: =item B<$gene> Students generation
                   7798: 
                   7799: =item B<$usec> Students section in course
                   7800: 
                   7801: =item B<$end> Unix time of the roles expiration
                   7802: 
                   7803: =item B<$start> Unix time of the roles start date
                   7804: 
                   7805: =item B<$forceid> If defined, allow $uid to be changed
                   7806: 
                   7807: =item B<$desiredhome> server to use as home server for student
                   7808: 
                   7809: =back
1.297     matthew  7810: 
                   7811: =item *
                   7812: 
                   7813: modify_student_enrollment
                   7814: 
                   7815: Change a students enrollment status in a class.  The environment variable
                   7816: 'role.request.course' must be defined for this function to proceed.
                   7817: 
                   7818: Inputs:
                   7819: 
                   7820: =over 4
                   7821: 
                   7822: =item $udom, students domain
                   7823: 
                   7824: =item $uname, students name
                   7825: 
                   7826: =item $uid, students user id
                   7827: 
                   7828: =item $first, students first name
                   7829: 
                   7830: =item $middle
                   7831: 
                   7832: =item $last
                   7833: 
                   7834: =item $gene
                   7835: 
                   7836: =item $usec
                   7837: 
                   7838: =item $end
                   7839: 
                   7840: =item $start
                   7841: 
                   7842: =back
                   7843: 
1.191     harris41 7844: 
                   7845: =item *
                   7846: 
1.243     albertel 7847: assigncustomrole($udom,$uname,$url,$rdom,$rnam,$rolename,$end,$start) : assign
                   7848: custom role; give a custom role to a user for the level given by URL.  Specify
                   7849: name and domain of role author, and role name
1.191     harris41 7850: 
                   7851: =item *
                   7852: 
1.243     albertel 7853: revokerole($udom,$uname,$url,$role) : revoke a role for url
1.191     harris41 7854: 
                   7855: =item *
                   7856: 
1.243     albertel 7857: revokecustomrole($udom,$uname,$url,$role) : revoke a custom role
                   7858: 
                   7859: =back
                   7860: 
                   7861: =head2 Course Infomation
                   7862: 
                   7863: =over 4
1.191     harris41 7864: 
                   7865: =item *
                   7866: 
1.631     albertel 7867: coursedescription($courseid) : returns a hash of information about the
                   7868: specified course id, including all environment settings for the
                   7869: course, the description of the course will be in the hash under the
                   7870: key 'description'
1.191     harris41 7871: 
                   7872: =item *
                   7873: 
1.624     albertel 7874: resdata($name,$domain,$type,@which) : request for current parameter
                   7875: setting for a specific $type, where $type is either 'course' or 'user',
                   7876: @what should be a list of parameters to ask about. This routine caches
                   7877: answers for 5 minutes.
1.243     albertel 7878: 
                   7879: =back
                   7880: 
                   7881: =head2 Course Modification
                   7882: 
                   7883: =over 4
1.191     harris41 7884: 
                   7885: =item *
                   7886: 
1.243     albertel 7887: writecoursepref($courseid,%prefs) : write preferences (environment
                   7888: database) for a course
1.191     harris41 7889: 
                   7890: =item *
                   7891: 
1.243     albertel 7892: createcourse($udom,$description,$url) : make/modify course
                   7893: 
                   7894: =back
                   7895: 
                   7896: =head2 Resource Subroutines
                   7897: 
                   7898: =over 4
1.191     harris41 7899: 
                   7900: =item *
                   7901: 
1.243     albertel 7902: subscribe($fname) : subscribe to a resource, returns URL if possible (probably should use repcopy instead)
1.191     harris41 7903: 
                   7904: =item *
                   7905: 
1.243     albertel 7906: repcopy($filename) : subscribes to the requested file, and attempts to
                   7907: replicate from the owning library server, Might return
1.607     raeburn  7908: 'unavailable', 'not_found', 'forbidden', 'ok', or
                   7909: 'bad_request', also attempts to grab the metadata for the
1.243     albertel 7910: resource. Expects the local filesystem pathname
                   7911: (/home/httpd/html/res/....)
                   7912: 
                   7913: =back
                   7914: 
                   7915: =head2 Resource Information
                   7916: 
                   7917: =over 4
1.191     harris41 7918: 
                   7919: =item *
                   7920: 
1.243     albertel 7921: EXT($varname,$symb,$udom,$uname) : evaluates and returns the value of
                   7922: a vairety of different possible values, $varname should be a request
                   7923: string, and the other parameters can be used to specify who and what
                   7924: one is asking about.
                   7925: 
                   7926: Possible values for $varname are environment.lastname (or other item
                   7927: from the envirnment hash), user.name (or someother aspect about the
                   7928: user), resource.0.maxtries (or some other part and parameter of a
                   7929: resource)
1.204     albertel 7930: 
                   7931: =item *
                   7932: 
1.243     albertel 7933: directcondval($number) : get current value of a condition; reads from a state
                   7934: string
1.204     albertel 7935: 
                   7936: =item *
                   7937: 
1.243     albertel 7938: condval($condidx) : value of condition index based on state
1.204     albertel 7939: 
                   7940: =item *
                   7941: 
1.243     albertel 7942: metadata($uri,$what,$liburi,$prefix,$depthcount) : request a
                   7943: resource's metadata, $what should be either a specific key, or either
                   7944: 'keys' (to get a list of possible keys) or 'packages' to get a list of
                   7945: packages that this resource currently uses, the last 3 arguments are only used internally for recursive metadata.
                   7946: 
                   7947: this function automatically caches all requests
1.191     harris41 7948: 
                   7949: =item *
                   7950: 
1.243     albertel 7951: metadata_query($query,$custom,$customshow) : make a metadata query against the
                   7952: network of library servers; returns file handle of where SQL and regex results
                   7953: will be stored for query
1.191     harris41 7954: 
                   7955: =item *
                   7956: 
1.243     albertel 7957: symbread($filename) : return symbolic list entry (filename argument optional);
                   7958: returns the data handle
1.191     harris41 7959: 
                   7960: =item *
                   7961: 
1.243     albertel 7962: symbverify($symb,$thisfn) : verifies that $symb actually exists and is
1.582     albertel 7963: a possible symb for the URL in $thisfn, and if is an encryypted
                   7964: resource that the user accessed using /enc/ returns a 1 on success, 0
                   7965: on failure, user must be in a course, as it assumes the existance of
1.620     albertel 7966: the course initial hash, and uses $env('request.course.id'}
1.243     albertel 7967: 
1.191     harris41 7968: 
                   7969: =item *
                   7970: 
1.243     albertel 7971: symbclean($symb) : removes versions numbers from a symb, returns the
                   7972: cleaned symb
1.191     harris41 7973: 
                   7974: =item *
                   7975: 
1.243     albertel 7976: is_on_map($uri) : checks if the $uri is somewhere on the current
                   7977: course map, user must be in a course for it to work.
1.191     harris41 7978: 
                   7979: =item *
                   7980: 
1.243     albertel 7981: numval($salt) : return random seed value (addend for rndseed)
1.191     harris41 7982: 
                   7983: =item *
                   7984: 
1.243     albertel 7985: rndseed($symb,$courseid,$udom,$uname) : create a random sum; returns
                   7986: a random seed, all arguments are optional, if they aren't sent it uses the
                   7987: environment to derive them. Note: if symb isn't sent and it can't get one
                   7988: from &symbread it will use the current time as its return value
1.191     harris41 7989: 
                   7990: =item *
                   7991: 
1.243     albertel 7992: ireceipt($funame,$fudom,$fucourseid,$fusymb) : return unique,
                   7993: unfakeable, receipt
1.191     harris41 7994: 
                   7995: =item *
                   7996: 
1.620     albertel 7997: receipt() : API to ireceipt working off of env values; given out to users
1.191     harris41 7998: 
                   7999: =item *
                   8000: 
1.243     albertel 8001: countacc($url) : count the number of accesses to a given URL
1.191     harris41 8002: 
                   8003: =item *
                   8004: 
1.243     albertel 8005: 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 8006: 
                   8007: =item *
                   8008: 
1.243     albertel 8009: 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 8010: 
                   8011: =item *
                   8012: 
1.243     albertel 8013: expirespread($uname,$udom,$stype,$usymb) : set expire date for spreadsheet
1.191     harris41 8014: 
                   8015: =item *
                   8016: 
1.243     albertel 8017: devalidate($symb) : devalidate temporary spreadsheet calculations,
                   8018: forcing spreadsheet to reevaluate the resource scores next time.
                   8019: 
                   8020: =back
                   8021: 
                   8022: =head2 Storing/Retreiving Data
                   8023: 
                   8024: =over 4
1.191     harris41 8025: 
                   8026: =item *
                   8027: 
1.243     albertel 8028: store($storehash,$symb,$namespace,$udom,$uname) : stores hash permanently
                   8029: for this url; hashref needs to be given and should be a \%hashname; the
                   8030: remaining args aren't required and if they aren't passed or are '' they will
1.620     albertel 8031: be derived from the env
1.191     harris41 8032: 
                   8033: =item *
                   8034: 
1.243     albertel 8035: cstore($storehash,$symb,$namespace,$udom,$uname) : same as store but
                   8036: uses critical subroutine
1.191     harris41 8037: 
                   8038: =item *
                   8039: 
1.243     albertel 8040: restore($symb,$namespace,$udom,$uname) : returns hash for this symb;
                   8041: all args are optional
1.191     harris41 8042: 
                   8043: =item *
                   8044: 
1.717     albertel 8045: dumpstore($namespace,$udom,$uname,$regexp,$range) : 
                   8046: dumps the complete (or key matching regexp) namespace into a hash
                   8047: ($udom, $uname, $regexp, $range are optional) for a namespace that is
                   8048: normally &store()ed into
                   8049: 
                   8050: $range should be either an integer '100' (give me the first 100
                   8051:                                            matching records)
                   8052:               or be  two integers sperated by a - with no spaces
                   8053:                  '30-50' (give me the 30th through the 50th matching
                   8054:                           records)
                   8055: 
                   8056: 
                   8057: =item *
                   8058: 
                   8059: putstore($namespace,$symb,$version,$storehash,$udomain,$uname) :
                   8060: replaces a &store() version of data with a replacement set of data
                   8061: for a particular resource in a namespace passed in the $storehash hash 
                   8062: reference
                   8063: 
                   8064: =item *
                   8065: 
1.243     albertel 8066: tmpstore($storehash,$symb,$namespace,$udom,$uname) : storage that
                   8067: works very similar to store/cstore, but all data is stored in a
                   8068: temporary location and can be reset using tmpreset, $storehash should
                   8069: be a hash reference, returns nothing on success
1.191     harris41 8070: 
                   8071: =item *
                   8072: 
1.243     albertel 8073: tmprestore($symb,$namespace,$udom,$uname) : storage that works very
                   8074: similar to restore, but all data is stored in a temporary location and
                   8075: can be reset using tmpreset. Returns a hash of values on success,
                   8076: error string otherwise.
1.191     harris41 8077: 
                   8078: =item *
                   8079: 
1.243     albertel 8080: tmpreset($symb,$namespace,$udom,$uname) : temporary storage reset,
                   8081: deltes all keys for $symb form the temporary storage hash.
1.191     harris41 8082: 
                   8083: =item *
                   8084: 
1.243     albertel 8085: get($namespace,$storearr,$udom,$uname) : returns hash with keys from array
                   8086: reference filled in from namesp ($udom and $uname are optional)
1.191     harris41 8087: 
                   8088: =item *
                   8089: 
1.243     albertel 8090: del($namespace,$storearr,$udom,$uname) : deletes keys out of array from
                   8091: namesp ($udom and $uname are optional)
1.191     harris41 8092: 
                   8093: =item *
                   8094: 
1.702     albertel 8095: dump($namespace,$udom,$uname,$regexp,$range) : 
1.243     albertel 8096: dumps the complete (or key matching regexp) namespace into a hash
1.702     albertel 8097: ($udom, $uname, $regexp, $range are optional)
1.449     matthew  8098: 
1.702     albertel 8099: $range should be either an integer '100' (give me the first 100
                   8100:                                            matching records)
                   8101:               or be  two integers sperated by a - with no spaces
                   8102:                  '30-50' (give me the 30th through the 50th matching
                   8103:                           records)
1.449     matthew  8104: =item *
                   8105: 
                   8106: inc($namespace,$store,$udom,$uname) : increments $store in $namespace.
                   8107: $store can be a scalar, an array reference, or if the amount to be 
                   8108: incremented is > 1, a hash reference.
                   8109: 
                   8110: ($udom and $uname are optional)
1.191     harris41 8111: 
                   8112: =item *
                   8113: 
1.243     albertel 8114: put($namespace,$storehash,$udom,$uname) : stores hash in namesp
                   8115: ($udom and $uname are optional)
1.191     harris41 8116: 
                   8117: =item *
                   8118: 
1.243     albertel 8119: cput($namespace,$storehash,$udom,$uname) : critical put
                   8120: ($udom and $uname are optional)
1.191     harris41 8121: 
                   8122: =item *
                   8123: 
1.748     albertel 8124: newput($namespace,$storehash,$udom,$uname) :
                   8125: 
                   8126: Attempts to store the items in the $storehash, but only if they don't
                   8127: currently exist, if this succeeds you can be certain that you have 
                   8128: successfully created a new key value pair in the $namespace db.
                   8129: 
                   8130: 
                   8131: Args:
                   8132:  $namespace: name of database to store values to
                   8133:  $storehash: hashref to store to the db
                   8134:  $udom: (optional) domain of user containing the db
                   8135:  $uname: (optional) name of user caontaining the db
                   8136: 
                   8137: Returns:
                   8138:  'ok' -> succeeded in storing all keys of $storehash
                   8139:  'key_exists: <key>' -> failed to anything out of $storehash, as at
                   8140:                         least <key> already existed in the db (other
                   8141:                         requested keys may also already exist)
                   8142:  'error: <msg>' -> unable to tie the DB or other erorr occured
                   8143:  'con_lost' -> unable to contact request server
                   8144:  'refused' -> action was not allowed by remote machine
                   8145: 
                   8146: 
                   8147: =item *
                   8148: 
1.243     albertel 8149: eget($namespace,$storearr,$udom,$uname) : returns hash with keys from array
                   8150: reference filled in from namesp (encrypts the return communication)
                   8151: ($udom and $uname are optional)
1.191     harris41 8152: 
                   8153: =item *
                   8154: 
1.243     albertel 8155: log($udom,$name,$home,$message) : write to permanent log for user; use
                   8156: critical subroutine
                   8157: 
1.806     raeburn  8158: =item *
                   8159: 
                   8160: get_dom($namespace,$storearr,$udomain) : returns hash with keys from array
                   8161: reference filled in from namespace found in domain level on primary domain server ($udomain is optional)
                   8162: 
                   8163: =item *
                   8164: 
                   8165: put_dom($namespace,$storehash,$udomain) :  stores hash in namespace at domain level on primary domain server ($udomain is optional)
                   8166: 
1.243     albertel 8167: =back
                   8168: 
                   8169: =head2 Network Status Functions
                   8170: 
                   8171: =over 4
1.191     harris41 8172: 
                   8173: =item *
                   8174: 
                   8175: dirlist($uri) : return directory list based on URI
                   8176: 
                   8177: =item *
                   8178: 
1.243     albertel 8179: spareserver() : find server with least workload from spare.tab
                   8180: 
                   8181: =back
                   8182: 
                   8183: =head2 Apache Request
                   8184: 
                   8185: =over 4
1.191     harris41 8186: 
                   8187: =item *
                   8188: 
1.243     albertel 8189: ssi($url,%hash) : server side include, does a complete request cycle on url to
                   8190: localhost, posts hash
                   8191: 
                   8192: =back
                   8193: 
                   8194: =head2 Data to String to Data
                   8195: 
                   8196: =over 4
1.191     harris41 8197: 
                   8198: =item *
                   8199: 
1.243     albertel 8200: hash2str(%hash) : convert a hash into a string complete with escaping and '='
                   8201: and '&' separators, supports elements that are arrayrefs and hashrefs
1.191     harris41 8202: 
                   8203: =item *
                   8204: 
1.243     albertel 8205: hashref2str($hashref) : convert a hashref into a string complete with
                   8206: escaping and '=' and '&' separators, supports elements that are
                   8207: arrayrefs and hashrefs
1.191     harris41 8208: 
                   8209: =item *
                   8210: 
1.243     albertel 8211: arrayref2str($arrayref) : convert an arrayref into a string complete
                   8212: with escaping and '&' separators, supports elements that are arrayrefs
                   8213: and hashrefs
1.191     harris41 8214: 
                   8215: =item *
                   8216: 
1.243     albertel 8217: str2hash($string) : convert string to hash using unescaping and
                   8218: splitting on '=' and '&', supports elements that are arrayrefs and
                   8219: hashrefs
1.191     harris41 8220: 
                   8221: =item *
                   8222: 
1.243     albertel 8223: str2array($string) : convert string to hash using unescaping and
                   8224: splitting on '&', supports elements that are arrayrefs and hashrefs
                   8225: 
                   8226: =back
                   8227: 
                   8228: =head2 Logging Routines
                   8229: 
                   8230: =over 4
                   8231: 
                   8232: These routines allow one to make log messages in the lonnet.log and
                   8233: lonnet.perm logfiles.
1.191     harris41 8234: 
                   8235: =item *
                   8236: 
1.243     albertel 8237: logtouch() : make sure the logfile, lonnet.log, exists
1.191     harris41 8238: 
                   8239: =item *
                   8240: 
1.243     albertel 8241: logthis() : append message to the normal lonnet.log file, it gets
                   8242: preiodically rolled over and deleted.
1.191     harris41 8243: 
                   8244: =item *
                   8245: 
1.243     albertel 8246: logperm() : append a permanent message to lonnet.perm.log, this log
                   8247: file never gets deleted by any automated portion of the system, only
                   8248: messages of critical importance should go in here.
                   8249: 
                   8250: =back
                   8251: 
                   8252: =head2 General File Helper Routines
                   8253: 
                   8254: =over 4
1.191     harris41 8255: 
                   8256: =item *
                   8257: 
1.481     raeburn  8258: getfile($file,$caller) : two cases - requests for files in /res or in /uploaded.
                   8259: (a) files in /uploaded
                   8260:   (i) If a local copy of the file exists - 
                   8261:       compares modification date of local copy with last-modified date for 
                   8262:       definitive version stored on home server for course. If local copy is 
                   8263:       stale, requests a new version from the home server and stores it. 
                   8264:       If the original has been removed from the home server, then local copy 
                   8265:       is unlinked.
                   8266:   (ii) If local copy does not exist -
                   8267:       requests the file from the home server and stores it. 
                   8268:   
                   8269:   If $caller is 'uploadrep':  
                   8270:     This indicates a call from lonuploadrep.pm (PerlHeaderParserHandler phase)
                   8271:     for request for files originally uploaded via DOCS. 
                   8272:      - returns 'ok' if fresh local copy now available, -1 otherwise.
                   8273:   
                   8274:   Otherwise:
                   8275:      This indicates a call from the content generation phase of the request.
                   8276:      -  returns the entire contents of the file or -1.
                   8277:      
                   8278: (b) files in /res
                   8279:    - returns the entire contents of a file or -1; 
                   8280:    it properly subscribes to and replicates the file if neccessary.
1.191     harris41 8281: 
1.712     albertel 8282: 
                   8283: =item *
                   8284: 
                   8285: stat_file($url) : $url is expected to be a /res/ or /uploaded/ style file
                   8286:                   reference
                   8287: 
                   8288: returns either a stat() list of data about the file or an empty list
                   8289: if the file doesn't exist or couldn't find out about it (connection
                   8290: problems or user unknown)
                   8291: 
1.191     harris41 8292: =item *
                   8293: 
1.243     albertel 8294: filelocation($dir,$file) : returns file system location of a file
                   8295: based on URI; meant to be "fairly clean" absolute reference, $dir is a
                   8296: directory that relative $file lookups are to looked in ($dir of /a/dir
                   8297: and a file of ../bob will become /a/bob)
1.191     harris41 8298: 
                   8299: =item *
                   8300: 
                   8301: hreflocation($dir,$file) : returns file system location or a URL; same as
                   8302: filelocation except for hrefs
                   8303: 
                   8304: =item *
                   8305: 
                   8306: declutter() : declutters URLs (remove docroot, beginning slashes, 'res' etc)
                   8307: 
1.243     albertel 8308: =back
                   8309: 
1.608     albertel 8310: =head2 Usererfile file routines (/uploaded*)
                   8311: 
                   8312: =over 4
                   8313: 
                   8314: =item *
                   8315: 
                   8316: userfileupload(): main rotine for putting a file in a user or course's
                   8317:                   filespace, arguments are,
                   8318: 
1.620     albertel 8319:  formname - required - this is the name of the element in $env where the
1.608     albertel 8320:            filename, and the contents of the file to create/modifed exist
1.620     albertel 8321:            the filename is in $env{'form.'.$formname.'.filename'} and the
                   8322:            contents of the file is located in $env{'form.'.$formname}
1.608     albertel 8323:  coursedoc - if true, store the file in the course of the active role
                   8324:              of the current user
                   8325:  subdir - required - subdirectory to put the file in under ../userfiles/
                   8326:          if undefined, it will be placed in "unknown"
                   8327: 
                   8328:  (This routine calls clean_filename() to remove any dangerous
                   8329:  characters from the filename, and then calls finuserfileupload() to
                   8330:  complete the transaction)
                   8331: 
                   8332:  returns either the url of the uploaded file (/uploaded/....) if successful
                   8333:  and /adm/notfound.html if unsuccessful
                   8334: 
                   8335: =item *
                   8336: 
                   8337: clean_filename(): routine for cleaing a filename up for storage in
                   8338:                  userfile space, argument is:
                   8339: 
                   8340:  filename - proposed filename
                   8341: 
                   8342: returns: the new clean filename
                   8343: 
                   8344: =item *
                   8345: 
                   8346: finishuserfileupload(): routine that creaes and sends the file to
                   8347: userspace, probably shouldn't be called directly
                   8348: 
                   8349:   docuname: username or courseid of destination for the file
                   8350:   docudom: domain of user/course of destination for the file
                   8351:   formname: same as for userfileupload()
                   8352:   fname: filename (inculding subdirectories) for the file
                   8353: 
                   8354:  returns either the url of the uploaded file (/uploaded/....) if successful
                   8355:  and /adm/notfound.html if unsuccessful
                   8356: 
                   8357: =item *
                   8358: 
                   8359: renameuserfile(): renames an existing userfile to a new name
                   8360: 
                   8361:   Args:
                   8362:    docuname: username or courseid of destination for the file
                   8363:    docudom: domain of user/course of destination for the file
                   8364:    old: current file name (including any subdirs under userfiles)
                   8365:    new: desired file name (including any subdirs under userfiles)
                   8366: 
                   8367: =item *
                   8368: 
                   8369: mkdiruserfile(): creates a directory is a userfiles dir
                   8370: 
                   8371:   Args:
                   8372:    docuname: username or courseid of destination for the file
                   8373:    docudom: domain of user/course of destination for the file
                   8374:    dir: dir to create (including any subdirs under userfiles)
                   8375: 
                   8376: =item *
                   8377: 
                   8378: removeuserfile(): removes a file that exists in userfiles
                   8379: 
                   8380:   Args:
                   8381:    docuname: username or courseid of destination for the file
                   8382:    docudom: domain of user/course of destination for the file
                   8383:    fname: filname to delete (including any subdirs under userfiles)
                   8384: 
                   8385: =item *
                   8386: 
                   8387: removeuploadedurl(): convience function for removeuserfile()
                   8388: 
                   8389:   Args:
                   8390:    url:  a full /uploaded/... url to delete
                   8391: 
1.747     albertel 8392: =item * 
                   8393: 
                   8394: get_portfile_permissions():
                   8395:   Args:
                   8396:     domain: domain of user or course contain the portfolio files
                   8397:     user: name of user or num of course contain the portfolio files
                   8398:   Returns:
                   8399:     hashref of a dump of the proper file_permissions.db
                   8400:    
                   8401: 
                   8402: =item * 
                   8403: 
                   8404: get_access_controls():
                   8405: 
                   8406: Args:
                   8407:   current_permissions: the hash ref returned from get_portfile_permissions()
                   8408:   group: (optional) the group you want the files associated with
                   8409:   file: (optional) the file you want access info on
                   8410: 
                   8411: Returns:
1.749     raeburn  8412:     a hash (keys are file names) of hashes containing
                   8413:         keys are: path to file/file_name\0uniqueID:scope_end_start (see below)
                   8414:         values are XML containing access control settings (see below) 
1.747     albertel 8415: 
                   8416: Internal notes:
                   8417: 
1.749     raeburn  8418:  access controls are stored in file_permissions.db as key=value pairs.
                   8419:     key -> path to file/file_name\0uniqueID:scope_end_start
                   8420:         where scope -> public,guest,course,group,domains or users.
                   8421:               end -> UNIX time for end of access (0 -> no end date)
                   8422:               start -> UNIX time for start of access
                   8423: 
                   8424:     value -> XML description of access control
                   8425:            <scope type=""> (type =1 of: public,guest,course,group,domains,users">
                   8426:             <start></start>
                   8427:             <end></end>
                   8428: 
                   8429:             <password></password>  for scope type = guest
                   8430: 
                   8431:             <domain></domain>     for scope type = course or group
                   8432:             <number></number>
                   8433:             <roles id="">
                   8434:              <role></role>
                   8435:              <access></access>
                   8436:              <section></section>
                   8437:              <group></group>
                   8438:             </roles>
                   8439: 
                   8440:             <dom></dom>         for scope type = domains
                   8441: 
                   8442:             <users>             for scope type = users
                   8443:              <user>
                   8444:               <uname></uname>
                   8445:               <udom></udom>
                   8446:              </user>
                   8447:             </users>
                   8448:            </scope> 
                   8449:               
                   8450:  Access data is also aggregated for each file in an additional key=value pair:
                   8451:  key -> path to file/file_name\0accesscontrol 
                   8452:  value -> reference to hash
                   8453:           hash contains key = value pairs
                   8454:           where key = uniqueID:scope_end_start
                   8455:                 value = UNIX time record was last updated
                   8456: 
                   8457:           Used to improve speed of look-ups of access controls for each file.  
                   8458:  
                   8459:  Locks on files (resulting from submission of portfolio file to a homework problem stored in array of arrays.
                   8460: 
                   8461: modify_access_controls():
                   8462: 
                   8463: Modifies access controls for a portfolio file
                   8464: Args
                   8465: 1. file name
                   8466: 2. reference to hash of required changes,
                   8467: 3. domain
                   8468: 4. username
                   8469:   where domain,username are the domain of the portfolio owner 
                   8470:   (either a user or a course) 
                   8471: 
                   8472: Returns:
                   8473: 1. result of additions or updates ('ok' or 'error', with error message). 
                   8474: 2. result of deletions ('ok' or 'error', with error message).
                   8475: 3. reference to hash of any new or updated access controls.
                   8476: 4. reference to hash used to map incoming IDs to uniqueIDs assigned to control.
                   8477:    key = integer (inbound ID)
                   8478:    value = uniqueID  
1.747     albertel 8479: 
1.608     albertel 8480: =back
                   8481: 
1.243     albertel 8482: =head2 HTTP Helper Routines
                   8483: 
                   8484: =over 4
                   8485: 
1.191     harris41 8486: =item *
                   8487: 
                   8488: escape() : unpack non-word characters into CGI-compatible hex codes
                   8489: 
                   8490: =item *
                   8491: 
                   8492: unescape() : pack CGI-compatible hex codes into actual non-word ASCII character
                   8493: 
1.243     albertel 8494: =back
                   8495: 
                   8496: =head1 PRIVATE SUBROUTINES
                   8497: 
                   8498: =head2 Underlying communication routines (Shouldn't call)
                   8499: 
                   8500: =over 4
                   8501: 
                   8502: =item *
                   8503: 
                   8504: subreply() : tries to pass a message to lonc, returns con_lost if incapable
                   8505: 
                   8506: =item *
                   8507: 
                   8508: reply() : uses subreply to send a message to remote machine, logs all failures
                   8509: 
                   8510: =item *
                   8511: 
                   8512: critical() : passes a critical message to another server; if cannot
                   8513: get through then place message in connection buffer directory and
                   8514: returns con_delayed, if incapable of saving message, returns
                   8515: con_failed
                   8516: 
                   8517: =item *
                   8518: 
                   8519: reconlonc() : tries to reconnect lonc client processes.
                   8520: 
                   8521: =back
                   8522: 
                   8523: =head2 Resource Access Logging
                   8524: 
                   8525: =over 4
                   8526: 
                   8527: =item *
                   8528: 
                   8529: flushcourselogs() : flush (save) buffer logs and access logs
                   8530: 
                   8531: =item *
                   8532: 
                   8533: courselog($what) : save message for course in hash
                   8534: 
                   8535: =item *
                   8536: 
                   8537: courseacclog($what) : save message for course using &courselog().  Perform
                   8538: special processing for specific resource types (problems, exams, quizzes, etc).
                   8539: 
1.191     harris41 8540: =item *
                   8541: 
                   8542: goodbye() : flush course logs and log shutting down; it is called in srm.conf
                   8543: as a PerlChildExitHandler
1.243     albertel 8544: 
                   8545: =back
                   8546: 
                   8547: =head2 Other
                   8548: 
                   8549: =over 4
                   8550: 
                   8551: =item *
                   8552: 
                   8553: symblist($mapname,%newhash) : update symbolic storage links
1.191     harris41 8554: 
                   8555: =back
                   8556: 
                   8557: =cut

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