Annotation of loncom/lonnet/perl/lonnet.pm, revision 1.552
1.1 albertel 1: # The LearningOnline Network
2: # TCP networking package
1.12 www 3: #
1.552 ! albertel 4: # $Id: lonnet.pm,v 1.551 2004/10/12 20:51:54 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.300 albertel 38: qw(%perlvar %hostname %homecache %badServerCache %hostip %iphost %spareid %hostdom
1.440 www 39: %libserv %pr %prp %metacache %packagetab %titlecache %courseresversioncache %resversioncache
1.349 www 40: %courselogs %accesshash %userrolehash $processmarker $dumpcount
1.516 raeburn 41: %coursedombuf %coursenumbuf %coursehombuf %coursedescrbuf %courseinstcodebuf %courseresdatacache
1.551 albertel 42: %userresdatacache %getsectioncache %domaindescription %domain_auth_def %domain_auth_arg_def
1.403 www 43: %domain_lang_def %domain_city %domain_longi %domain_lati $tmpdir);
44:
1.1 albertel 45: use IO::Socket;
1.31 www 46: use GDBM_File;
1.8 www 47: use Apache::Constants qw(:common :http);
1.208 albertel 48: use HTML::LCParser;
1.88 www 49: use Fcntl qw(:flock);
1.294 matthew 50: use Apache::loncoursedata;
1.414 www 51: use Apache::lonlocal;
1.428 albertel 52: use Storable qw(lock_store lock_nstore lock_retrieve freeze thaw);
1.539 albertel 53: use Time::HiRes qw( gettimeofday tv_interval );
1.195 www 54: my $readit;
1.550 foxr 55: my $max_connection_retries = 10; # Or some such value.
1.1 albertel 56:
1.449 matthew 57: =pod
58:
59: =head1 Package Variables
60:
61: These are largely undocumented, so if you decipher one please note it here.
62:
63: =over 4
64:
65: =item $processmarker
66:
67: Contains the time this process was started and this servers host id.
68:
69: =item $dumpcount
70:
71: Counts the number of times a message log flush has been attempted (regardless
72: of success) by this process. Used as part of the filename when messages are
73: delayed.
74:
75: =back
76:
77: =cut
78:
79:
1.1 albertel 80: # --------------------------------------------------------------------- Logging
81:
1.163 harris41 82: sub logtouch {
83: my $execdir=$perlvar{'lonDaemons'};
1.448 albertel 84: unless (-e "$execdir/logs/lonnet.log") {
85: open(my $fh,">>$execdir/logs/lonnet.log");
1.163 harris41 86: close $fh;
87: }
88: my ($wwwuid,$wwwgid)=(getpwnam('www'))[2,3];
89: chown($wwwuid,$wwwgid,$execdir.'/logs/lonnet.log');
90: }
91:
1.1 albertel 92: sub logthis {
93: my $message=shift;
94: my $execdir=$perlvar{'lonDaemons'};
95: my $now=time;
96: my $local=localtime($now);
1.448 albertel 97: if (open(my $fh,">>$execdir/logs/lonnet.log")) {
98: print $fh "$local ($$): $message\n";
99: close($fh);
100: }
1.1 albertel 101: return 1;
102: }
103:
104: sub logperm {
105: my $message=shift;
106: my $execdir=$perlvar{'lonDaemons'};
107: my $now=time;
108: my $local=localtime($now);
1.448 albertel 109: if (open(my $fh,">>$execdir/logs/lonnet.perm.log")) {
110: print $fh "$now:$message:$local\n";
111: close($fh);
112: }
1.1 albertel 113: return 1;
114: }
115:
116: # -------------------------------------------------- Non-critical communication
117: sub subreply {
118: my ($cmd,$server)=@_;
119: my $peerfile="$perlvar{'lonSockDir'}/$server";
1.549 foxr 120: #
121: # With loncnew process trimming, there's a timing hole between lonc server
122: # process exit and the master server picking up the listen on the AF_UNIX
123: # socket. In that time interval, a lock file will exist:
124:
125: my $lockfile=$peerfile.".lock";
126: while (-e $lockfile) { # Need to wait for the lockfile to disappear.
127: sleep(1);
128: }
129: # At this point, either a loncnew parent is listening or an old lonc
1.550 foxr 130: # or loncnew child is listening so we can connect or everything's dead.
1.549 foxr 131: #
1.550 foxr 132: # We'll give the connection a few tries before abandoning it. If
133: # connection is not possible, we'll con_lost back to the client.
134: #
135: my $client;
136: for (my $retries = 0; $retries < $max_connection_retries; $retries++) {
137: $client=IO::Socket::UNIX->new(Peer =>"$peerfile",
138: Type => SOCK_STREAM,
139: Timeout => 10);
140: if($client) {
141: last; # Connected!
142: }
143: sleep(1); # Try again later if failed connection.
144: }
145: my $answer;
146: if ($client) {
147: print $client "$cmd\n";
148: $answer=<$client>;
149: if (!$answer) { $answer="con_lost"; }
150: chomp($answer);
151: } else {
152: $answer = 'con_lost'; # Failed connection.
153: }
1.1 albertel 154: return $answer;
155: }
156:
157: sub reply {
158: my ($cmd,$server)=@_;
1.205 www 159: unless (defined($hostname{$server})) { return 'no_such_host'; }
1.1 albertel 160: my $answer=subreply($cmd,$server);
1.203 www 161: if ($answer eq 'con_lost') {
1.311 matthew 162: #sleep 5;
163: #$answer=subreply($cmd,$server);
164: #if ($answer eq 'con_lost') {
1.233 albertel 165: # &logthis("Second attempt con_lost on $server");
166: # my $peerfile="$perlvar{'lonSockDir'}/$server";
167: # my $client=IO::Socket::UNIX->new(Peer =>"$peerfile",
168: # Type => SOCK_STREAM,
169: # Timeout => 10)
170: # or return "con_lost";
171: # &logthis("Killing socket");
172: # print $client "close_connection_exit\n";
173: #sleep 5;
174: # $answer=subreply($cmd,$server);
175: #}
1.203 www 176: }
1.65 www 177: if (($answer=~/^refused/) || ($answer=~/^rejected/)) {
1.12 www 178: &logthis("<font color=blue>WARNING:".
179: " $cmd to $server returned $answer</font>");
180: }
1.1 albertel 181: return $answer;
182: }
183:
184: # ----------------------------------------------------------- Send USR1 to lonc
185:
186: sub reconlonc {
187: my $peerfile=shift;
188: &logthis("Trying to reconnect for $peerfile");
189: my $loncfile="$perlvar{'lonDaemons'}/logs/lonc.pid";
1.448 albertel 190: if (open(my $fh,"<$loncfile")) {
1.1 albertel 191: my $loncpid=<$fh>;
192: chomp($loncpid);
193: if (kill 0 => $loncpid) {
194: &logthis("lonc at pid $loncpid responding, sending USR1");
195: kill USR1 => $loncpid;
196: sleep 1;
197: if (-e "$peerfile") { return; }
198: &logthis("$peerfile still not there, give it another try");
199: sleep 5;
200: if (-e "$peerfile") { return; }
1.12 www 201: &logthis(
202: "<font color=blue>WARNING: $peerfile still not there, giving up</font>");
1.1 albertel 203: } else {
1.12 www 204: &logthis(
205: "<font color=blue>WARNING:".
206: " lonc at pid $loncpid not responding, giving up</font>");
1.1 albertel 207: }
208: } else {
1.12 www 209: &logthis('<font color=blue>WARNING: lonc not running, giving up</font>');
1.1 albertel 210: }
211: }
212:
213: # ------------------------------------------------------ Critical communication
1.12 www 214:
1.1 albertel 215: sub critical {
216: my ($cmd,$server)=@_;
1.89 www 217: unless ($hostname{$server}) {
218: &logthis("<font color=blue>WARNING:".
219: " Critical message to unknown server ($server)</font>");
220: return 'no_such_host';
221: }
1.1 albertel 222: my $answer=reply($cmd,$server);
223: if ($answer eq 'con_lost') {
224: my $pingreply=reply('ping',$server);
225: &reconlonc("$perlvar{'lonSockDir'}/$server");
226: my $pongreply=reply('pong',$server);
227: &logthis("Ping/Pong for $server: $pingreply/$pongreply");
228: $answer=reply($cmd,$server);
229: if ($answer eq 'con_lost') {
230: my $now=time;
231: my $middlename=$cmd;
1.5 www 232: $middlename=substr($middlename,0,16);
1.1 albertel 233: $middlename=~s/\W//g;
234: my $dfilename=
1.305 www 235: "$perlvar{'lonSockDir'}/delayed/$now.$dumpcount.$$.$middlename.$server";
236: $dumpcount++;
1.1 albertel 237: {
1.448 albertel 238: my $dfh;
239: if (open($dfh,">$dfilename")) {
240: print $dfh "$cmd\n";
241: close($dfh);
242: }
1.1 albertel 243: }
244: sleep 2;
245: my $wcmd='';
246: {
1.448 albertel 247: my $dfh;
248: if (open($dfh,"<$dfilename")) {
249: $wcmd=<$dfh>;
250: close($dfh);
251: }
1.1 albertel 252: }
253: chomp($wcmd);
1.7 www 254: if ($wcmd eq $cmd) {
1.12 www 255: &logthis("<font color=blue>WARNING: ".
256: "Connection buffer $dfilename: $cmd</font>");
1.1 albertel 257: &logperm("D:$server:$cmd");
258: return 'con_delayed';
259: } else {
1.12 www 260: &logthis("<font color=red>CRITICAL:"
261: ." Critical connection failed: $server $cmd</font>");
1.1 albertel 262: &logperm("F:$server:$cmd");
263: return 'con_failed';
264: }
265: }
266: }
267: return $answer;
1.405 albertel 268: }
269:
1.412 www 270: #
1.405 albertel 271: # -------------- Remove all key from the env that start witha lowercase letter
1.412 www 272: # (Which is always a lon-capa value)
273:
1.405 albertel 274: sub cleanenv {
1.412 www 275: # unless (defined(&Apache::exists_config_define("MODPERL2"))) { return; }
276: # unless (&Apache::exists_config_define("MODPERL2")) { return; }
1.405 albertel 277: foreach my $key (keys(%ENV)) {
278: if ($key =~ /^[a-z]/) {
279: delete($ENV{$key});
280: }
281: }
1.374 www 282: }
283:
284: # ------------------------------------------- Transfer profile into environment
285:
286: sub transfer_profile_to_env {
287: my ($lonidsdir,$handle)=@_;
288: my @profile;
289: {
1.448 albertel 290: open(my $idf,"$lonidsdir/$handle.id");
1.374 www 291: flock($idf,LOCK_SH);
292: @profile=<$idf>;
1.448 albertel 293: close($idf);
1.374 www 294: }
295: my $envi;
1.433 matthew 296: my %Remove;
1.374 www 297: for ($envi=0;$envi<=$#profile;$envi++) {
298: chomp($profile[$envi]);
299: my ($envname,$envvalue)=split(/=/,$profile[$envi]);
300: $ENV{$envname} = $envvalue;
1.433 matthew 301: if (my ($key,$time) = ($envname =~ /^(cgi\.(\d+)_\d+\.)/)) {
302: if ($time < time-300) {
303: $Remove{$key}++;
304: }
305: }
306: }
1.446 albertel 307: $ENV{'user.environment'} = "$lonidsdir/$handle.id";
1.433 matthew 308: foreach my $expired_key (keys(%Remove)) {
309: &delenv($expired_key);
1.374 www 310: }
1.1 albertel 311: }
312:
1.5 www 313: # ---------------------------------------------------------- Append Environment
314:
315: sub appenv {
1.6 www 316: my %newenv=@_;
1.191 harris41 317: foreach (keys %newenv) {
1.35 www 318: if (($newenv{$_}=~/^user\.role/) || ($newenv{$_}=~/^user\.priv/)) {
319: &logthis("<font color=blue>WARNING: ".
1.151 www 320: "Attempt to modify environment ".$_." to ".$newenv{$_}
321: .'</font>');
1.35 www 322: delete($newenv{$_});
323: } else {
324: $ENV{$_}=$newenv{$_};
325: }
1.191 harris41 326: }
1.95 www 327:
328: my $lockfh;
1.448 albertel 329: unless (open($lockfh,"$ENV{'user.environment'}")) {
330: return 'error: '.$!;
1.95 www 331: }
332: unless (flock($lockfh,LOCK_EX)) {
333: &logthis("<font color=blue>WARNING: ".
334: 'Could not obtain exclusive lock in appenv: '.$!);
1.448 albertel 335: close($lockfh);
1.95 www 336: return 'error: '.$!;
337: }
338:
1.6 www 339: my @oldenv;
340: {
1.448 albertel 341: my $fh;
342: unless (open($fh,"$ENV{'user.environment'}")) {
343: return 'error: '.$!;
344: }
345: @oldenv=<$fh>;
346: close($fh);
1.6 www 347: }
348: for (my $i=0; $i<=$#oldenv; $i++) {
349: chomp($oldenv[$i]);
1.9 www 350: if ($oldenv[$i] ne '') {
1.448 albertel 351: my ($name,$value)=split(/=/,$oldenv[$i]);
352: unless (defined($newenv{$name})) {
353: $newenv{$name}=$value;
354: }
1.9 www 355: }
1.6 www 356: }
357: {
1.448 albertel 358: my $fh;
359: unless (open($fh,">$ENV{'user.environment'}")) {
360: return 'error';
361: }
362: my $newname;
363: foreach $newname (keys %newenv) {
364: print $fh "$newname=$newenv{$newname}\n";
365: }
366: close($fh);
1.56 www 367: }
1.448 albertel 368:
369: close($lockfh);
1.56 www 370: return 'ok';
371: }
372: # ----------------------------------------------------- Delete from Environment
373:
374: sub delenv {
375: my $delthis=shift;
376: my %newenv=();
377: if (($delthis=~/user\.role/) || ($delthis=~/user\.priv/)) {
378: &logthis("<font color=blue>WARNING: ".
379: "Attempt to delete from environment ".$delthis);
380: return 'error';
381: }
382: my @oldenv;
383: {
1.448 albertel 384: my $fh;
385: unless (open($fh,"$ENV{'user.environment'}")) {
386: return 'error';
387: }
388: unless (flock($fh,LOCK_SH)) {
389: &logthis("<font color=blue>WARNING: ".
390: 'Could not obtain shared lock in delenv: '.$!);
391: close($fh);
392: return 'error: '.$!;
393: }
394: @oldenv=<$fh>;
395: close($fh);
1.56 www 396: }
397: {
1.448 albertel 398: my $fh;
399: unless (open($fh,">$ENV{'user.environment'}")) {
400: return 'error';
401: }
402: unless (flock($fh,LOCK_EX)) {
403: &logthis("<font color=blue>WARNING: ".
404: 'Could not obtain exclusive lock in delenv: '.$!);
405: close($fh);
406: return 'error: '.$!;
407: }
408: foreach (@oldenv) {
1.473 matthew 409: if ($_=~/^$delthis/) {
410: my ($key,undef) = split('=',$_);
411: delete($ENV{$key});
412: } else {
413: print $fh $_;
414: }
1.448 albertel 415: }
416: close($fh);
1.5 www 417: }
418: return 'ok';
1.369 albertel 419: }
420:
421: # ------------------------------------------ Find out current server userload
422: # there is a copy in lond
423: sub userload {
424: my $numusers=0;
425: {
426: opendir(LONIDS,$perlvar{'lonIDsDir'});
427: my $filename;
428: my $curtime=time;
429: while ($filename=readdir(LONIDS)) {
430: if ($filename eq '.' || $filename eq '..') {next;}
1.404 albertel 431: my ($mtime)=(stat($perlvar{'lonIDsDir'}.'/'.$filename))[9];
1.437 albertel 432: if ($curtime-$mtime < 1800) { $numusers++; }
1.369 albertel 433: }
434: closedir(LONIDS);
435: }
436: my $userloadpercent=0;
437: my $maxuserload=$perlvar{'lonUserLoadLim'};
438: if ($maxuserload) {
1.371 albertel 439: $userloadpercent=100*$numusers/$maxuserload;
1.369 albertel 440: }
1.372 albertel 441: $userloadpercent=sprintf("%.2f",$userloadpercent);
1.369 albertel 442: return $userloadpercent;
1.283 www 443: }
444:
445: # ------------------------------------------ Fight off request when overloaded
446:
447: sub overloaderror {
448: my ($r,$checkserver)=@_;
449: unless ($checkserver) { $checkserver=$perlvar{'lonHostID'}; }
450: my $loadavg;
451: if ($checkserver eq $perlvar{'lonHostID'}) {
1.448 albertel 452: open(my $loadfile,'/proc/loadavg');
1.283 www 453: $loadavg=<$loadfile>;
454: $loadavg =~ s/\s.*//g;
1.285 matthew 455: $loadavg = 100*$loadavg/$perlvar{'lonLoadLim'};
1.448 albertel 456: close($loadfile);
1.283 www 457: } else {
458: $loadavg=&reply('load',$checkserver);
459: }
1.285 matthew 460: my $overload=$loadavg-100;
1.283 www 461: if ($overload>0) {
1.285 matthew 462: $r->err_headers_out->{'Retry-After'}=$overload;
1.283 www 463: $r->log_error('Overload of '.$overload.' on '.$checkserver);
1.502 matthew 464: return 409;
1.283 www 465: }
466: return '';
1.5 www 467: }
1.1 albertel 468:
469: # ------------------------------ Find server with least workload from spare.tab
1.11 www 470:
1.1 albertel 471: sub spareserver {
1.370 albertel 472: my ($loadpercent,$userloadpercent) = @_;
1.1 albertel 473: my $tryserver;
474: my $spareserver='';
1.370 albertel 475: if ($userloadpercent !~ /\d/) { $userloadpercent=0; }
476: my $lowestserver=$loadpercent > $userloadpercent?
477: $loadpercent : $userloadpercent;
1.1 albertel 478: foreach $tryserver (keys %spareid) {
1.411 albertel 479: my $loadans=reply('load',$tryserver);
480: my $userloadans=reply('userload',$tryserver);
481: if ($loadans !~ /\d/ && $userloadans !~ /\d/) {
482: next; #didn't get a number from the server
483: }
484: my $answer;
485: if ($loadans =~ /\d/) {
486: if ($userloadans =~ /\d/) {
487: #both are numbers, pick the bigger one
488: $answer=$loadans > $userloadans?
489: $loadans : $userloadans;
490: } else {
491: $answer = $loadans;
492: }
493: } else {
494: $answer = $userloadans;
495: }
496: if (($answer =~ /\d/) && ($answer<$lowestserver)) {
497: $spareserver="http://$hostname{$tryserver}";
498: $lowestserver=$answer;
499: }
1.370 albertel 500: }
1.1 albertel 501: return $spareserver;
1.202 matthew 502: }
503:
504: # --------------------------------------------- Try to change a user's password
505:
506: sub changepass {
507: my ($uname,$udom,$currentpass,$newpass,$server)=@_;
508: $currentpass = &escape($currentpass);
509: $newpass = &escape($newpass);
510: my $answer = reply("encrypt:passwd:$udom:$uname:$currentpass:$newpass",
511: $server);
512: if (! $answer) {
513: &logthis("No reply on password change request to $server ".
514: "by $uname in domain $udom.");
515: } elsif ($answer =~ "^ok") {
516: &logthis("$uname in $udom successfully changed their password ".
517: "on $server.");
518: } elsif ($answer =~ "^pwchange_failure") {
519: &logthis("$uname in $udom was unable to change their password ".
520: "on $server. The action was blocked by either lcpasswd ".
521: "or pwchange");
522: } elsif ($answer =~ "^non_authorized") {
523: &logthis("$uname in $udom did not get their password correct when ".
524: "attempting to change it on $server.");
525: } elsif ($answer =~ "^auth_mode_error") {
526: &logthis("$uname in $udom attempted to change their password despite ".
527: "not being locally or internally authenticated on $server.");
528: } elsif ($answer =~ "^unknown_user") {
529: &logthis("$uname in $udom attempted to change their password ".
530: "on $server but were unable to because $server is not ".
531: "their home server.");
532: } elsif ($answer =~ "^refused") {
533: &logthis("$server refused to change $uname in $udom password because ".
534: "it was sent an unencrypted request to change the password.");
535: }
536: return $answer;
1.1 albertel 537: }
538:
1.169 harris41 539: # ----------------------- Try to determine user's current authentication scheme
540:
541: sub queryauthenticate {
542: my ($uname,$udom)=@_;
1.456 albertel 543: my $uhome=&homeserver($uname,$udom);
544: if (!$uhome) {
545: &logthis("User $uname at $udom is unknown when looking for authentication mechanism");
546: return 'no_host';
547: }
548: my $answer=reply("encrypt:currentauth:$udom:$uname",$uhome);
549: if ($answer =~ /^(unknown_user|refused|con_lost)/) {
550: &logthis("User $uname at $udom threw error $answer when checking authentication mechanism");
1.169 harris41 551: }
1.456 albertel 552: return $answer;
1.169 harris41 553: }
554:
1.1 albertel 555: # --------- Try to authenticate user from domain's lib servers (first this one)
1.11 www 556:
1.1 albertel 557: sub authenticate {
558: my ($uname,$upass,$udom)=@_;
1.12 www 559: $upass=escape($upass);
1.199 www 560: $uname=~s/\W//g;
1.471 albertel 561: my $uhome=&homeserver($uname,$udom);
562: if (!$uhome) {
563: &logthis("User $uname at $udom is unknown in authenticate");
564: return 'no_host';
1.1 albertel 565: }
1.471 albertel 566: my $answer=reply("encrypt:auth:$udom:$uname:$upass",$uhome);
567: if ($answer eq 'authorized') {
568: &logthis("User $uname at $udom authorized by $uhome");
569: return $uhome;
570: }
571: if ($answer eq 'non_authorized') {
572: &logthis("User $uname at $udom rejected by $uhome");
573: return 'no_host';
1.9 www 574: }
1.471 albertel 575: &logthis("User $uname at $udom threw error $answer when checking authentication mechanism");
1.1 albertel 576: return 'no_host';
577: }
578:
579: # ---------------------- Find the homebase for a user from domain's lib servers
1.11 www 580:
1.1 albertel 581: sub homeserver {
1.230 stredwic 582: my ($uname,$udom,$ignoreBadCache)=@_;
1.1 albertel 583: my $index="$uname:$udom";
1.426 albertel 584:
585: my ($result,$cached)=&is_cached(\%homecache,$index,'home',86400);
586: if (defined($cached)) { return $result; }
1.1 albertel 587: my $tryserver;
588: foreach $tryserver (keys %libserv) {
1.230 stredwic 589: next if ($ignoreBadCache ne 'true' &&
1.231 stredwic 590: exists($badServerCache{$tryserver}));
1.1 albertel 591: if ($hostdom{$tryserver} eq $udom) {
592: my $answer=reply("home:$udom:$uname",$tryserver);
593: if ($answer eq 'found') {
1.426 albertel 594: return &do_cache(\%homecache,$index,$tryserver,'home');
1.231 stredwic 595: } elsif ($answer eq 'no_host') {
596: $badServerCache{$tryserver}=1;
1.221 matthew 597: }
1.1 albertel 598: }
599: }
600: return 'no_host';
1.70 www 601: }
602:
603: # ------------------------------------- Find the usernames behind a list of IDs
604:
605: sub idget {
606: my ($udom,@ids)=@_;
607: my %returnhash=();
608:
609: my $tryserver;
610: foreach $tryserver (keys %libserv) {
611: if ($hostdom{$tryserver} eq $udom) {
612: my $idlist=join('&',@ids);
613: $idlist=~tr/A-Z/a-z/;
614: my $reply=&reply("idget:$udom:".$idlist,$tryserver);
615: my @answer=();
1.76 www 616: if (($reply ne 'con_lost') && ($reply!~/^error\:/)) {
1.70 www 617: @answer=split(/\&/,$reply);
618: } ;
619: my $i;
620: for ($i=0;$i<=$#ids;$i++) {
621: if ($answer[$i]) {
622: $returnhash{$ids[$i]}=$answer[$i];
623: }
624: }
625: }
626: }
627: return %returnhash;
628: }
629:
630: # ------------------------------------- Find the IDs behind a list of usernames
631:
632: sub idrget {
633: my ($udom,@unames)=@_;
634: my %returnhash=();
1.191 harris41 635: foreach (@unames) {
1.70 www 636: $returnhash{$_}=(&userenvironment($udom,$_,'id'))[1];
1.191 harris41 637: }
1.70 www 638: return %returnhash;
639: }
640:
641: # ------------------------------- Store away a list of names and associated IDs
642:
643: sub idput {
644: my ($udom,%ids)=@_;
645: my %servers=();
1.191 harris41 646: foreach (keys %ids) {
1.487 albertel 647: &cput('environment',{'id'=>$ids{$_}},$udom,$_);
1.70 www 648: my $uhom=&homeserver($_,$udom);
649: if ($uhom ne 'no_host') {
650: my $id=&escape($ids{$_});
651: $id=~tr/A-Z/a-z/;
652: my $unam=&escape($_);
653: if ($servers{$uhom}) {
654: $servers{$uhom}.='&'.$id.'='.$unam;
655: } else {
656: $servers{$uhom}=$id.'='.$unam;
657: }
658: }
1.191 harris41 659: }
660: foreach (keys %servers) {
1.70 www 661: &critical('idput:'.$udom.':'.$servers{$_},$_);
1.191 harris41 662: }
1.344 www 663: }
664:
665: # --------------------------------------------------- Assign a key to a student
666:
667: sub assign_access_key {
1.364 www 668: #
669: # a valid key looks like uname:udom#comments
670: # comments are being appended
671: #
1.498 www 672: my ($ckey,$kdom,$knum,$cdom,$cnum,$udom,$uname,$logentry)=@_;
673: $kdom=
674: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'} unless (defined($kdom));
675: $knum=
676: $ENV{'course.'.$ENV{'request.course.id'}.'.num'} unless (defined($knum));
1.344 www 677: $cdom=
678: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'} unless (defined($cdom));
679: $cnum=
680: $ENV{'course.'.$ENV{'request.course.id'}.'.num'} unless (defined($cnum));
681: $udom=$ENV{'user.name'} unless (defined($udom));
682: $uname=$ENV{'user.domain'} unless (defined($uname));
1.498 www 683: my %existing=&get('accesskeys',[$ckey],$kdom,$knum);
1.364 www 684: if (($existing{$ckey}=~/^\#(.*)$/) || # - new key
1.479 albertel 685: ($existing{$ckey}=~/^\Q$uname\E\:\Q$udom\E\#(.*)$/)) {
1.364 www 686: # assigned to this person
687: # - this should not happen,
1.345 www 688: # unless something went wrong
689: # the first time around
690: # ready to assign
1.364 www 691: $logentry=$1.'; '.$logentry;
1.496 www 692: if (&put('accesskeys',{$ckey=>$uname.':'.$udom.'#'.$logentry},
1.498 www 693: $kdom,$knum) eq 'ok') {
1.345 www 694: # key now belongs to user
1.346 www 695: my $envkey='key.'.$cdom.'_'.$cnum;
1.345 www 696: if (&put('environment',{$envkey => $ckey}) eq 'ok') {
697: &appenv('environment.'.$envkey => $ckey);
698: return 'ok';
699: } else {
700: return
701: 'error: Count not permanently assign key, will need to be re-entered later.';
702: }
703: } else {
704: return 'error: Could not assign key, try again later.';
705: }
1.364 www 706: } elsif (!$existing{$ckey}) {
1.345 www 707: # the key does not exist
708: return 'error: The key does not exist';
709: } else {
710: # the key is somebody else's
711: return 'error: The key is already in use';
712: }
1.344 www 713: }
714:
1.364 www 715: # ------------------------------------------ put an additional comment on a key
716:
717: sub comment_access_key {
718: #
719: # a valid key looks like uname:udom#comments
720: # comments are being appended
721: #
722: my ($ckey,$cdom,$cnum,$logentry)=@_;
723: $cdom=
724: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'} unless (defined($cdom));
725: $cnum=
726: $ENV{'course.'.$ENV{'request.course.id'}.'.num'} unless (defined($cnum));
727: my %existing=&get('accesskeys',[$ckey],$cdom,$cnum);
728: if ($existing{$ckey}) {
729: $existing{$ckey}.='; '.$logentry;
730: # ready to assign
1.367 www 731: if (&put('accesskeys',{$ckey=>$existing{$ckey}},
1.364 www 732: $cdom,$cnum) eq 'ok') {
733: return 'ok';
734: } else {
735: return 'error: Count not store comment.';
736: }
737: } else {
738: # the key does not exist
739: return 'error: The key does not exist';
740: }
741: }
742:
1.344 www 743: # ------------------------------------------------------ Generate a set of keys
744:
745: sub generate_access_keys {
1.364 www 746: my ($number,$cdom,$cnum,$logentry)=@_;
1.344 www 747: $cdom=
748: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'} unless (defined($cdom));
749: $cnum=
750: $ENV{'course.'.$ENV{'request.course.id'}.'.num'} unless (defined($cnum));
1.361 www 751: unless (&allowed('mky',$cdom)) { return 0; }
1.344 www 752: unless (($cdom) && ($cnum)) { return 0; }
753: if ($number>10000) { return 0; }
754: sleep(2); # make sure don't get same seed twice
755: srand(time()^($$+($$<<15))); # from "Programming Perl"
756: my $total=0;
757: for (my $i=1;$i<=$number;$i++) {
758: my $newkey=sprintf("%lx",int(100000*rand)).'-'.
759: sprintf("%lx",int(100000*rand)).'-'.
760: sprintf("%lx",int(100000*rand));
761: $newkey=~s/1/g/g; # folks mix up 1 and l
762: $newkey=~s/0/h/g; # and also 0 and O
763: my %existing=&get('accesskeys',[$newkey],$cdom,$cnum);
764: if ($existing{$newkey}) {
765: $i--;
766: } else {
1.364 www 767: if (&put('accesskeys',
768: { $newkey => '# generated '.localtime().
769: ' by '.$ENV{'user.name'}.'@'.$ENV{'user.domain'}.
770: '; '.$logentry },
771: $cdom,$cnum) eq 'ok') {
1.344 www 772: $total++;
773: }
774: }
775: }
776: &log($ENV{'user.domain'},$ENV{'user.name'},$ENV{'user.home'},
777: 'Generated '.$total.' keys for '.$cnum.' at '.$cdom);
778: return $total;
779: }
780:
781: # ------------------------------------------------------- Validate an accesskey
782:
783: sub validate_access_key {
784: my ($ckey,$cdom,$cnum,$udom,$uname)=@_;
785: $cdom=
786: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'} unless (defined($cdom));
787: $cnum=
788: $ENV{'course.'.$ENV{'request.course.id'}.'.num'} unless (defined($cnum));
1.497 www 789: $udom=$ENV{'user.domain'} unless (defined($udom));
790: $uname=$ENV{'user.name'} unless (defined($uname));
1.345 www 791: my %existing=&get('accesskeys',[$ckey],$cdom,$cnum);
1.479 albertel 792: return ($existing{$ckey}=~/^\Q$uname\E\:\Q$udom\E\#/);
1.70 www 793: }
794:
795: # ------------------------------------- Find the section of student in a course
1.298 matthew 796:
797: sub getsection {
798: my ($udom,$unam,$courseid)=@_;
799: $courseid=~s/\_/\//g;
800: $courseid=~s/^(\w)/\/$1/;
1.551 albertel 801:
802: my $hashid="$udom:$unam:$courseid";
803: my ($result,$cached)=&is_cached(\%getsectioncache,$hashid,'getsection');
804: if (defined($cached)) { return $result; }
805:
1.298 matthew 806: my %Pending;
807: my %Expired;
808: #
809: # Each role can either have not started yet (pending), be active,
810: # or have expired.
811: #
812: # If there is an active role, we are done.
813: #
814: # If there is more than one role which has not started yet,
815: # choose the one which will start sooner
816: # If there is one role which has not started yet, return it.
817: #
818: # If there is more than one expired role, choose the one which ended last.
819: # If there is a role which has expired, return it.
820: #
821: foreach (split(/\&/,&reply('dump:'.$udom.':'.$unam.':roles',
822: &homeserver($unam,$udom)))) {
823: my ($key,$value)=split(/\=/,$_);
824: $key=&unescape($key);
1.479 albertel 825: next if ($key !~/^\Q$courseid\E(?:\/)*(\w+)*\_st$/);
1.298 matthew 826: my $section=$1;
827: if ($key eq $courseid.'_st') { $section=''; }
828: my ($dummy,$end,$start)=split(/\_/,&unescape($value));
829: my $now=time;
1.548 albertel 830: if (defined($end) && $end && ($now > $end)) {
1.298 matthew 831: $Expired{$end}=$section;
832: next;
833: }
1.548 albertel 834: if (defined($start) && $start && ($now < $start)) {
1.298 matthew 835: $Pending{$start}=$section;
836: next;
837: }
1.551 albertel 838: return &do_cache(\%getsectioncache,$hashid,$section,'getsection');
1.298 matthew 839: }
840: #
841: # Presumedly there will be few matching roles from the above
842: # loop and the sorting time will be negligible.
843: if (scalar(keys(%Pending))) {
844: my ($time) = sort {$a <=> $b} keys(%Pending);
1.551 albertel 845: return &do_cache(\%getsectioncache,$hashid,$Pending{$time},'getsection');
1.298 matthew 846: }
847: if (scalar(keys(%Expired))) {
848: my @sorted = sort {$a <=> $b} keys(%Expired);
849: my $time = pop(@sorted);
1.551 albertel 850: return &do_cache(\%getsectioncache,$hashid,$Expired{$time},'getsection');
1.298 matthew 851: }
1.551 albertel 852: return &do_cache(\%getsectioncache,$hashid,'-1','getsection');
1.298 matthew 853: }
1.70 www 854:
1.452 albertel 855:
1.552 ! albertel 856: my $disk_caching_disabled=1;
1.452 albertel 857:
1.416 albertel 858: sub devalidate_cache {
1.428 albertel 859: my ($cache,$id,$name) = @_;
1.417 albertel 860: delete $$cache{$id.'.time'};
1.543 albertel 861: delete $$cache{$id.'.file'};
1.417 albertel 862: delete $$cache{$id};
1.541 albertel 863: if (1 || $disk_caching_disabled) { return; }
1.442 albertel 864: my $filename=$perlvar{'lonDaemons'}.'/tmp/lonnet_internal_cache_'.$name.".db";
1.541 albertel 865: if (!-e $filename) { return; }
866: open(DB,">$filename.lock");
1.428 albertel 867: flock(DB,LOCK_EX);
868: my %hash;
869: if (tie(%hash,'GDBM_File',$filename,&GDBM_WRCREAT(),0640)) {
1.442 albertel 870: eval <<'EVALBLOCK';
871: delete($hash{$id});
872: delete($hash{$id.'.time'});
873: EVALBLOCK
874: if ($@) {
875: &logthis("<font color='red'>devalidate_cache blew up :$@:$name</font>");
876: unlink($filename);
877: }
1.428 albertel 878: } else {
1.442 albertel 879: if (-e $filename) {
880: &logthis("Unable to tie hash (devalidate cache): $name");
881: unlink($filename);
882: }
1.428 albertel 883: }
884: untie(%hash);
885: flock(DB,LOCK_UN);
886: close(DB);
1.416 albertel 887: }
888:
889: sub is_cached {
1.425 albertel 890: my ($cache,$id,$name,$time) = @_;
1.420 albertel 891: if (!$time) { $time=300; }
1.416 albertel 892: if (!exists($$cache{$id.'.time'})) {
1.542 albertel 893: &load_cache_item($cache,$name,$id,$time);
1.425 albertel 894: }
895: if (!exists($$cache{$id.'.time'})) {
896: # &logthis("Didn't find $id");
1.417 albertel 897: return (undef,undef);
1.416 albertel 898: } else {
1.425 albertel 899: if (time-($$cache{$id.'.time'})>$time) {
1.543 albertel 900: if (exists($$cache{$id.'.file'})) {
901: foreach my $filename (@{ $$cache{$id.'.file'} }) {
902: my $mtime=(stat($filename))[9];
903: #+1 is to take care of edge effects
904: if ($mtime && (($mtime+1) < ($$cache{$id.'.time'}))) {
905: # &logthis("Upping $mtime - ".$$cache{$id.'.time'}.
906: # "$id because of $filename");
907: } else {
908: &logthis("Devalidating $filename $id - ".(time-($$cache{$id.'.time'})));
909: &devalidate_cache($cache,$id,$name);
910: return (undef,undef);
911: }
912: }
913: $$cache{$id.'.time'}=time;
914: } else {
915: # &logthis("Devalidating $id - ".time-($$cache{$id.'.time'}));
916: &devalidate_cache($cache,$id,$name);
917: return (undef,undef);
918: }
1.416 albertel 919: }
920: }
1.417 albertel 921: return ($$cache{$id},1);
1.416 albertel 922: }
923:
924: sub do_cache {
1.425 albertel 925: my ($cache,$id,$value,$name) = @_;
1.416 albertel 926: $$cache{$id.'.time'}=time;
1.425 albertel 927: $$cache{$id}=$value;
1.428 albertel 928: # &logthis("Caching $id as :$value:");
929: &save_cache_item($cache,$name,$id);
1.416 albertel 930: # do_cache implictly return the set value
1.425 albertel 931: $$cache{$id};
932: }
933:
1.541 albertel 934: my %do_save_item;
935: my %do_save;
1.428 albertel 936: sub save_cache_item {
937: my ($cache,$name,$id)=@_;
1.452 albertel 938: if ($disk_caching_disabled) { return; }
1.541 albertel 939: $do_save{$name}=$cache;
940: if (!exists($do_save_item{$name})) { $do_save_item{$name}={} }
941: $do_save_item{$name}->{$id}=1;
942: return;
943: }
944:
945: sub save_cache {
946: if ($disk_caching_disabled) { return; }
947: my ($cache,$name,$id);
948: foreach $name (keys(%do_save)) {
949: $cache=$do_save{$name};
950:
951: my $starttime=&Time::HiRes::time();
952: &logthis("Saving :$name:");
953: my %hash;
954: my $filename=$perlvar{'lonDaemons'}.'/tmp/lonnet_internal_cache_'.$name.".db";
955: open(DB,">$filename.lock");
956: flock(DB,LOCK_EX);
957: if (tie(%hash,'GDBM_File',$filename,&GDBM_WRCREAT(),0640)) {
958: foreach $id (keys(%{ $do_save_item{$name} })) {
959: eval <<'EVALBLOCK';
960: $hash{$id.'.time'}=$$cache{$id.'.time'};
961: $hash{$id}=freeze({'item'=>$$cache{$id}});
1.544 albertel 962: if (exists($$cache{$id.'.file'})) {
963: $hash{$id.'.file'}=freeze({'item'=>$$cache{$id.'.file'}});
964: }
1.442 albertel 965: EVALBLOCK
1.541 albertel 966: if ($@) {
967: &logthis("<font color='red'>save_cache blew up :$@:$name</font>");
968: unlink($filename);
969: last;
970: }
971: }
972: } else {
973: if (-e $filename) {
974: &logthis("Unable to tie hash (save cache): $name ($!)");
975: unlink($filename);
976: }
1.442 albertel 977: }
1.541 albertel 978: untie(%hash);
979: flock(DB,LOCK_UN);
980: close(DB);
981: &logthis("save_cache $name took ".(&Time::HiRes::time()-$starttime));
1.428 albertel 982: }
1.541 albertel 983: undef(%do_save);
984: undef(%do_save_item);
985:
1.428 albertel 986: }
987:
988: sub load_cache_item {
1.542 albertel 989: my ($cache,$name,$id,$time)=@_;
1.452 albertel 990: if ($disk_caching_disabled) { return; }
1.428 albertel 991: my $starttime=&Time::HiRes::time();
992: # &logthis("Before Loading $name for $id size is ".scalar(%$cache));
993: my %hash;
1.442 albertel 994: my $filename=$perlvar{'lonDaemons'}.'/tmp/lonnet_internal_cache_'.$name.".db";
1.541 albertel 995: if (!-e $filename) { return; }
996: open(DB,">$filename.lock");
1.428 albertel 997: flock(DB,LOCK_SH);
998: if (tie(%hash,'GDBM_File',$filename,&GDBM_READER(),0640)) {
1.442 albertel 999: eval <<'EVALBLOCK';
1000: if (!%$cache) {
1001: my $count;
1002: while (my ($key,$value)=each(%hash)) {
1003: $count++;
1004: if ($key =~ /\.time$/) {
1005: $$cache{$key}=$value;
1006: } else {
1007: my $hashref=thaw($value);
1008: $$cache{$key}=$hashref->{'item'};
1009: }
1.428 albertel 1010: }
1.442 albertel 1011: # &logthis("Initial load: $count");
1012: } else {
1.542 albertel 1013: if (($$cache{$id.'.time'}+$time) < time) {
1014: $$cache{$id.'.time'}=$hash{$id.'.time'};
1.544 albertel 1015: {
1016: my $hashref=thaw($hash{$id});
1017: $$cache{$id}=$hashref->{'item'};
1018: }
1019: if (exists($hash{$id.'.file'})) {
1020: my $hashref=thaw($hash{$id.'.file'});
1021: $$cache{$id.'.file'}=$hashref->{'item'};
1022: }
1.542 albertel 1023: }
1.428 albertel 1024: }
1.442 albertel 1025: EVALBLOCK
1026: if ($@) {
1027: &logthis("<font color='red'>load_cache blew up :$@:$name</font>");
1028: unlink($filename);
1029: }
1030: } else {
1031: if (-e $filename) {
1.445 www 1032: &logthis("Unable to tie hash (load cache item): $name ($!)");
1.442 albertel 1033: unlink($filename);
1.428 albertel 1034: }
1035: }
1036: untie(%hash);
1037: flock(DB,LOCK_UN);
1038: close(DB);
1039: # &logthis("After Loading $name size is ".scalar(%$cache));
1040: # &logthis("load_cache_item $name took ".(&Time::HiRes::time()-$starttime));
1041: }
1042:
1.70 www 1043: # ------------------------------------- Read an entry from a user's environment
1044:
1045: sub userenvironment {
1046: my ($udom,$unam,@what)=@_;
1047: my %returnhash=();
1048: my @answer=split(/\&/,
1049: &reply('get:'.$udom.':'.$unam.':environment:'.join('&',@what),
1050: &homeserver($unam,$udom)));
1051: my $i;
1052: for ($i=0;$i<=$#what;$i++) {
1053: $returnhash{$what[$i]}=&unescape($answer[$i]);
1054: }
1055: return %returnhash;
1.1 albertel 1056: }
1057:
1.263 www 1058: # -------------------------------------------------------------------- New chat
1059:
1060: sub chatsend {
1061: my ($newentry,$anon)=@_;
1062: my $cnum=$ENV{'course.'.$ENV{'request.course.id'}.'.num'};
1063: my $cdom=$ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
1064: my $chome=$ENV{'course.'.$ENV{'request.course.id'}.'.home'};
1065: &reply('chatsend:'.$cdom.':'.$cnum.':'.
1066: &escape($ENV{'user.domain'}.':'.$ENV{'user.name'}.':'.$anon.':'.
1067: &escape($newentry)),$chome);
1.292 www 1068: }
1069:
1070: # ------------------------------------------ Find current version of a resource
1071:
1072: sub getversion {
1073: my $fname=&clutter(shift);
1074: unless ($fname=~/^\/res\//) { return -1; }
1075: return ¤tversion(&filelocation('',$fname));
1076: }
1077:
1078: sub currentversion {
1079: my $fname=shift;
1.440 www 1080: my ($result,$cached)=&is_cached(\%resversioncache,$fname,'resversion',600);
1081: if (defined($cached)) { return $result; }
1.292 www 1082: my $author=$fname;
1083: $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
1084: my ($udom,$uname)=split(/\//,$author);
1085: my $home=homeserver($uname,$udom);
1086: if ($home eq 'no_host') {
1087: return -1;
1088: }
1089: my $answer=reply("currentversion:$fname",$home);
1090: if (($answer eq 'con_lost') || ($answer eq 'rejected')) {
1091: return -1;
1092: }
1.440 www 1093: return &do_cache(\%resversioncache,$fname,$answer,'resversion');
1.263 www 1094: }
1095:
1.1 albertel 1096: # ----------------------------- Subscribe to a resource, return URL if possible
1.11 www 1097:
1.1 albertel 1098: sub subscribe {
1099: my $fname=shift;
1.312 www 1100: if ($fname=~/\/(aboutme|syllabus|bulletinboard|smppg)$/) { return ''; }
1.532 albertel 1101: $fname=~s/[\n\r]//g;
1.1 albertel 1102: my $author=$fname;
1103: $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
1104: my ($udom,$uname)=split(/\//,$author);
1105: my $home=homeserver($uname,$udom);
1.335 albertel 1106: if ($home eq 'no_host') {
1107: return 'not_found';
1.1 albertel 1108: }
1109: my $answer=reply("sub:$fname",$home);
1.64 www 1110: if (($answer eq 'con_lost') || ($answer eq 'rejected')) {
1111: $answer.=' by '.$home;
1112: }
1.1 albertel 1113: return $answer;
1114: }
1115:
1.8 www 1116: # -------------------------------------------------------------- Replicate file
1117:
1118: sub repcopy {
1119: my $filename=shift;
1.23 www 1120: $filename=~s/\/+/\//g;
1.538 albertel 1121: if ($filename=~m|^/home/httpd/html/adm/|) { return OK; }
1122: if ($filename=~m|^/home/httpd/html/lonUsers/|) { return OK; }
1123: if ($filename=~m|^/home/httpd/html/userfiles/| or
1124: $filename=~m|^/*uploaded/|) {
1125: return &repcopy_userfile($filename);
1126: }
1.532 albertel 1127: $filename=~s/[\n\r]//g;
1.8 www 1128: my $transname="$filename.in.transfer";
1.17 www 1129: if ((-e $filename) || (-e $transname)) { return OK; }
1.8 www 1130: my $remoteurl=subscribe($filename);
1.64 www 1131: if ($remoteurl =~ /^con_lost by/) {
1132: &logthis("Subscribe returned $remoteurl: $filename");
1.8 www 1133: return HTTP_SERVICE_UNAVAILABLE;
1134: } elsif ($remoteurl eq 'not_found') {
1.441 albertel 1135: #&logthis("Subscribe returned not_found: $filename");
1.8 www 1136: return HTTP_NOT_FOUND;
1.64 www 1137: } elsif ($remoteurl =~ /^rejected by/) {
1138: &logthis("Subscribe returned $remoteurl: $filename");
1.8 www 1139: return FORBIDDEN;
1.20 www 1140: } elsif ($remoteurl eq 'directory') {
1141: return OK;
1.8 www 1142: } else {
1.290 www 1143: my $author=$filename;
1144: $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
1145: my ($udom,$uname)=split(/\//,$author);
1146: my $home=homeserver($uname,$udom);
1147: unless ($home eq $perlvar{'lonHostID'}) {
1.8 www 1148: my @parts=split(/\//,$filename);
1149: my $path="/$parts[1]/$parts[2]/$parts[3]/$parts[4]";
1150: if ($path ne "$perlvar{'lonDocRoot'}/res") {
1151: &logthis("Malconfiguration for replication: $filename");
1152: return HTTP_BAD_REQUEST;
1153: }
1154: my $count;
1155: for ($count=5;$count<$#parts;$count++) {
1156: $path.="/$parts[$count]";
1157: if ((-e $path)!=1) {
1158: mkdir($path,0777);
1159: }
1160: }
1161: my $ua=new LWP::UserAgent;
1162: my $request=new HTTP::Request('GET',"$remoteurl");
1163: my $response=$ua->request($request,$transname);
1164: if ($response->is_error()) {
1165: unlink($transname);
1166: my $message=$response->status_line;
1.12 www 1167: &logthis("<font color=blue>WARNING:"
1168: ." LWP get: $message: $filename</font>");
1.8 www 1169: return HTTP_SERVICE_UNAVAILABLE;
1170: } else {
1.16 www 1171: if ($remoteurl!~/\.meta$/) {
1172: my $mrequest=new HTTP::Request('GET',$remoteurl.'.meta');
1173: my $mresponse=$ua->request($mrequest,$filename.'.meta');
1174: if ($mresponse->is_error()) {
1175: unlink($filename.'.meta');
1176: &logthis(
1177: "<font color=yellow>INFO: No metadata: $filename</font>");
1178: }
1179: }
1.8 www 1180: rename($transname,$filename);
1181: return OK;
1182: }
1.290 www 1183: }
1.8 www 1184: }
1.330 www 1185: }
1186:
1187: # ------------------------------------------------ Get server side include body
1188: sub ssi_body {
1.381 albertel 1189: my ($filelink,%form)=@_;
1.330 www 1190: my $output=($filelink=~/^http\:/?&externalssi($filelink):
1.381 albertel 1191: &ssi($filelink,%form));
1.525 albertel 1192: $output=~
1193: s/\/\/ BEGIN LON\-CAPA Internal.+\/\/ END LON\-CAPA Internal\s//gs;
1.451 albertel 1194: $output=~s/^.*?\<body[^\>]*\>//si;
1195: $output=~s/(.*)\<\/body\s*\>.*?$/$1/si;
1.330 www 1196: return $output;
1.8 www 1197: }
1198:
1.15 www 1199: # --------------------------------------------------------- Server Side Include
1200:
1201: sub ssi {
1202:
1.23 www 1203: my ($fn,%form)=@_;
1.15 www 1204:
1205: my $ua=new LWP::UserAgent;
1.23 www 1206:
1207: my $request;
1208:
1209: if (%form) {
1210: $request=new HTTP::Request('POST',"http://".$ENV{'HTTP_HOST'}.$fn);
1.201 albertel 1211: $request->content(join('&',map { &escape($_).'='.&escape($form{$_}) } keys %form));
1.23 www 1212: } else {
1213: $request=new HTTP::Request('GET',"http://".$ENV{'HTTP_HOST'}.$fn);
1214: }
1215:
1.15 www 1216: $request->header(Cookie => $ENV{'HTTP_COOKIE'});
1217: my $response=$ua->request($request);
1218:
1.324 www 1219: return $response->content;
1220: }
1221:
1222: sub externalssi {
1223: my ($url)=@_;
1224: my $ua=new LWP::UserAgent;
1225: my $request=new HTTP::Request('GET',$url);
1226: my $response=$ua->request($request);
1.15 www 1227: return $response->content;
1228: }
1.254 www 1229:
1.492 albertel 1230: # -------------------------------- Allow a /uploaded/ URI to be vouched for
1231:
1232: sub allowuploaded {
1233: my ($srcurl,$url)=@_;
1234: $url=&clutter(&declutter($url));
1235: my $dir=$url;
1236: $dir=~s/\/[^\/]+$//;
1237: my %httpref=();
1238: my $httpurl=&hreflocation('',$url);
1239: $httpref{'httpref.'.$httpurl}=$srcurl;
1240: &Apache::lonnet::appenv(%httpref);
1.254 www 1241: }
1.477 raeburn 1242:
1.478 albertel 1243: # --------- File operations in /home/httpd/html/userfiles/$domain/1/2/3/$course
1244: # input: action, courseID, current domain, home server for course, intended
1245: # path to file, source of file.
1.485 raeburn 1246: # output: url to file (if action was uploaddoc),
1247: # ok if successful, or diagnostic message otherwise (if action was propagate or copy)
1.477 raeburn 1248: #
1.478 albertel 1249: # Allows directory structure to be used within lonUsers/../userfiles/ for a
1250: # course.
1.477 raeburn 1251: #
1.478 albertel 1252: # action = propagate - /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
1253: # will be copied to /home/httpd/lonUsers/1/2/3/$course/userfiles in
1254: # course's home server.
1.477 raeburn 1255: #
1.478 albertel 1256: # action = copy - /home/httpd/html/userfiles/$domain/1/2/3/$course/$file will
1257: # be copied from $source (current location) to
1258: # /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
1259: # and will then be copied to
1260: # /home/httpd/lonUsers/$domain/1/2/3/$course/userfiles/$file in
1261: # course's home server.
1.485 raeburn 1262: #
1.481 raeburn 1263: # action = uploaddoc - /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
1.485 raeburn 1264: # will be retrived from $ENV{form.uploaddoc} (from DOCS interface) to
1.481 raeburn 1265: # /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
1266: # and will then be copied to /home/httpd/lonUsers/1/2/3/$course/userfiles/$file
1267: # in course's home server.
1268:
1.477 raeburn 1269:
1270: sub process_coursefile {
1271: my ($action,$docuname,$docudom,$docuhome,$file,$source)=@_;
1272: my $fetchresult;
1273: if ($action eq 'propagate') {
1274: $fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file
1275: ,$docuhome);
1.481 raeburn 1276: } else {
1.477 raeburn 1277: my $fetchresult = '';
1278: my $fpath = '';
1279: my $fname = $file;
1.478 albertel 1280: ($fpath,$fname) = ($file =~ m|^(.*)/([^/]+)$|);
1.477 raeburn 1281: $fpath=$docudom.'/'.$docuname.'/'.$fpath;
1282: my $filepath=$perlvar{'lonDocRoot'}.'/userfiles';
1283: unless ($fpath eq '') {
1.478 albertel 1284: my @parts=split('/',$fpath);
1.477 raeburn 1285: foreach my $part (@parts) {
1286: $filepath.= '/'.$part;
1287: if ((-e $filepath)!=1) {
1288: mkdir($filepath,0777);
1289: }
1290: }
1291: }
1.481 raeburn 1292: if ($action eq 'copy') {
1293: if ($source eq '') {
1294: $fetchresult = 'no source file';
1295: return $fetchresult;
1296: } else {
1297: my $destination = $filepath.'/'.$fname;
1298: rename($source,$destination);
1299: $fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
1300: $docuhome);
1301: }
1302: } elsif ($action eq 'uploaddoc') {
1303: open(my $fh,'>'.$filepath.'/'.$fname);
1304: print $fh $ENV{'form.'.$source};
1305: close($fh);
1.477 raeburn 1306: $fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
1307: $docuhome);
1.481 raeburn 1308: if ($fetchresult eq 'ok') {
1309: return '/uploaded/'.$fpath.'/'.$fname;
1310: } else {
1311: &logthis('Failed to transfer '.$docudom.'/'.$docuname.'/'.$file.
1312: ' to host '.$docuhome.': '.$fetchresult);
1313: return '/adm/notfound.html';
1314: }
1.477 raeburn 1315: }
1316: }
1.485 raeburn 1317: unless ( $fetchresult eq 'ok') {
1.477 raeburn 1318: &logthis('Failed to transfer '.$docudom.'/'.$docuname.'/'.$file.
1319: ' to host '.$docuhome.': '.$fetchresult);
1320: }
1321: return $fetchresult;
1322: }
1323:
1.257 www 1324: # --------------- Take an uploaded file and put it into the userfiles directory
1.259 www 1325: # input: name of form element, coursedoc=1 means this is for the course
1.257 www 1326: # output: url of file in userspace
1327:
1.531 albertel 1328: sub clean_filename {
1329: my ($fname)=@_;
1.315 www 1330: # Replace Windows backslashes by forward slashes
1.257 www 1331: $fname=~s/\\/\//g;
1.315 www 1332: # Get rid of everything but the actual filename
1.257 www 1333: $fname=~s/^.*\/([^\/]+)$/$1/;
1.315 www 1334: # Replace spaces by underscores
1335: $fname=~s/\s+/\_/g;
1336: # Replace all other weird characters by nothing
1.317 www 1337: $fname=~s/[^\w\.\-]//g;
1.540 albertel 1338: # Replace all .\d. sequences with _\d. so they no longer look like version
1339: # numbers
1340: $fname=~s/\.(\d+)(?=\.)/_$1/g;
1.531 albertel 1341: return $fname;
1342: }
1343:
1344: sub userfileupload {
1345: my ($formname,$coursedoc,$subdir)=@_;
1346: if (!defined($subdir)) { $subdir='unknown'; }
1347: my $fname=$ENV{'form.'.$formname.'.filename'};
1348: $fname=&clean_filename($fname);
1.315 www 1349: # See if there is anything left
1.257 www 1350: unless ($fname) { return 'error: no uploaded file'; }
1.477 raeburn 1351: chop($ENV{'form.'.$formname});
1.523 raeburn 1352: if (($formname eq 'screenshot') && ($subdir eq 'helprequests')) { #files uploaded to help request form are handled differently
1353: my $now = time;
1354: my $filepath = 'tmp/helprequests/'.$now;
1355: my @parts=split(/\//,$filepath);
1356: my $fullpath = $perlvar{'lonDaemons'};
1357: for (my $i=0;$i<@parts;$i++) {
1358: $fullpath .= '/'.$parts[$i];
1359: if ((-e $fullpath)!=1) {
1360: mkdir($fullpath,0777);
1361: }
1362: }
1363: open(my $fh,'>'.$fullpath.'/'.$fname);
1364: print $fh $ENV{'form.'.$formname};
1365: close($fh);
1366: return $fullpath.'/'.$fname;
1367: }
1.258 www 1368: # Create the directory if not present
1.259 www 1369: my $docuname='';
1370: my $docudom='';
1371: my $docuhome='';
1.493 albertel 1372: $fname="$subdir/$fname";
1.259 www 1373: if ($coursedoc) {
1374: $docuname=$ENV{'course.'.$ENV{'request.course.id'}.'.num'};
1375: $docudom=$ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
1376: $docuhome=$ENV{'course.'.$ENV{'request.course.id'}.'.home'};
1.481 raeburn 1377: if ($ENV{'form.folder'} =~ m/^default/) {
1.485 raeburn 1378: return &finishuserfileupload($docuname,$docudom,$docuhome,$formname,$fname);
1.481 raeburn 1379: } else {
1380: $fname=$ENV{'form.folder'}.'/'.$fname;
1.485 raeburn 1381: return &process_coursefile('uploaddoc',$docuname,$docudom,$docuhome,$fname,$formname);
1.481 raeburn 1382: }
1.259 www 1383: } else {
1384: $docuname=$ENV{'user.name'};
1385: $docudom=$ENV{'user.domain'};
1386: $docuhome=$ENV{'user.home'};
1.485 raeburn 1387: return &finishuserfileupload($docuname,$docudom,$docuhome,$formname,$fname);
1.259 www 1388: }
1.271 www 1389: }
1390:
1391: sub finishuserfileupload {
1.477 raeburn 1392: my ($docuname,$docudom,$docuhome,$formname,$fname)=@_;
1393: my $path=$docudom.'/'.$docuname.'/';
1.258 www 1394: my $filepath=$perlvar{'lonDocRoot'};
1.494 albertel 1395: my ($fnamepath,$file);
1396: $file=$fname;
1397: if ($fname=~m|/|) {
1398: ($fnamepath,$file) = ($fname =~ m|^(.*)/([^/]+)$|);
1399: $path.=$fnamepath.'/';
1400: }
1.259 www 1401: my @parts=split(/\//,$filepath.'/userfiles/'.$path);
1.258 www 1402: my $count;
1403: for ($count=4;$count<=$#parts;$count++) {
1404: $filepath.="/$parts[$count]";
1405: if ((-e $filepath)!=1) {
1406: mkdir($filepath,0777);
1407: }
1408: }
1409: # Save the file
1410: {
1.500 albertel 1411: #&Apache::lonnet::logthis("Saving to $filepath $file");
1.494 albertel 1412: open(my $fh,'>'.$filepath.'/'.$file);
1.477 raeburn 1413: print $fh $ENV{'form.'.$formname};
1414: close($fh);
1.258 www 1415: }
1.259 www 1416: # Notify homeserver to grep it
1417: #
1.494 albertel 1418: my $fetchresult= &reply('fetchuserfile:'.$path.$file,$docuhome);
1.295 www 1419: if ($fetchresult eq 'ok') {
1.259 www 1420: #
1.258 www 1421: # Return the URL to it
1.494 albertel 1422: return '/uploaded/'.$path.$file;
1.263 www 1423: } else {
1.494 albertel 1424: &logthis('Failed to transfer '.$path.$file.' to host '.$docuhome.
1425: ': '.$fetchresult);
1.263 www 1426: return '/adm/notfound.html';
1427: }
1.493 albertel 1428: }
1429:
1430: sub removeuploadedurl {
1431: my ($url)=@_;
1432: my (undef,undef,$udom,$uname,$fname)=split('/',$url,5);
1433: return &Apache::lonnet::removeuserfile($uname,$udom,$fname);
1.490 albertel 1434: }
1435:
1436: sub removeuserfile {
1437: my ($docuname,$docudom,$fname)=@_;
1438: my $home=&homeserver($docuname,$docudom);
1439: return &reply("removeuserfile:$docudom/$docuname/$fname",$home);
1.257 www 1440: }
1.15 www 1441:
1.530 albertel 1442: sub mkdiruserfile {
1443: my ($docuname,$docudom,$dir)=@_;
1444: my $home=&homeserver($docuname,$docudom);
1445: return &reply("mkdiruserfile:".&escape("$docudom/$docuname/$dir"),$home);
1446: }
1447:
1.531 albertel 1448: sub renameuserfile {
1449: my ($docuname,$docudom,$old,$new)=@_;
1450: my $home=&homeserver($docuname,$docudom);
1451: return &reply("renameuserfile:$docudom:$docuname:".&escape("$old").':'.
1452: &escape("$new"),$home);
1453: }
1454:
1.14 www 1455: # ------------------------------------------------------------------------- Log
1456:
1457: sub log {
1458: my ($dom,$nam,$hom,$what)=@_;
1.47 www 1459: return critical("log:$dom:$nam:$what",$hom);
1.157 www 1460: }
1461:
1462: # ------------------------------------------------------------------ Course Log
1.352 www 1463: #
1464: # This routine flushes several buffers of non-mission-critical nature
1465: #
1.157 www 1466:
1467: sub flushcourselogs {
1.352 www 1468: &logthis('Flushing log buffers');
1469: #
1470: # course logs
1471: # This is a log of all transactions in a course, which can be used
1472: # for data mining purposes
1473: #
1474: # It also collects the courseid database, which lists last transaction
1475: # times and course titles for all courseids
1476: #
1477: my %courseidbuffer=();
1.191 harris41 1478: foreach (keys %courselogs) {
1.157 www 1479: my $crsid=$_;
1.352 www 1480: if (&reply('log:'.$coursedombuf{$crsid}.':'.$coursenumbuf{$crsid}.':'.
1.188 www 1481: &escape($courselogs{$crsid}),
1482: $coursehombuf{$crsid}) eq 'ok') {
1.157 www 1483: delete $courselogs{$crsid};
1484: } else {
1485: &logthis('Failed to flush log buffer for '.$crsid);
1486: if (length($courselogs{$crsid})>40000) {
1487: &logthis("<font color=blue>WARNING: Buffer for ".$crsid.
1488: " exceeded maximum size, deleting.</font>");
1489: delete $courselogs{$crsid};
1490: }
1.352 www 1491: }
1492: if ($courseidbuffer{$coursehombuf{$crsid}}) {
1493: $courseidbuffer{$coursehombuf{$crsid}}.='&'.
1.516 raeburn 1494: &escape($crsid).'='.&escape($coursedescrbuf{$crsid}).
1495: '='.&escape($courseinstcodebuf{$crsid});
1.352 www 1496: } else {
1497: $courseidbuffer{$coursehombuf{$crsid}}=
1.516 raeburn 1498: &escape($crsid).'='.&escape($coursedescrbuf{$crsid}).
1499: '='.&escape($courseinstcodebuf{$crsid});
1.352 www 1500: }
1.191 harris41 1501: }
1.352 www 1502: #
1503: # Write course id database (reverse lookup) to homeserver of courses
1504: # Is used in pickcourse
1505: #
1506: foreach (keys %courseidbuffer) {
1.353 www 1507: &courseidput($hostdom{$_},$courseidbuffer{$_},$_);
1.352 www 1508: }
1509: #
1510: # File accesses
1511: # Writes to the dynamic metadata of resources to get hit counts, etc.
1512: #
1.449 matthew 1513: foreach my $entry (keys(%accesshash)) {
1.458 matthew 1514: if ($entry =~ /___count$/) {
1515: my ($dom,$name);
1516: ($dom,$name,undef)=($entry=~m:___(\w+)/(\w+)/(.*)___count$:);
1517: if (! defined($dom) || $dom eq '' ||
1518: ! defined($name) || $name eq '') {
1519: my $cid = $ENV{'request.course.id'};
1520: $dom = $ENV{'request.'.$cid.'.domain'};
1521: $name = $ENV{'request.'.$cid.'.num'};
1522: }
1.450 matthew 1523: my $value = $accesshash{$entry};
1524: my (undef,$url,undef) = ($entry =~ /^(.*)___(.*)___count$/);
1525: my %temphash=($url => $value);
1.449 matthew 1526: my $result = &inc('nohist_accesscount',\%temphash,$dom,$name);
1527: if ($result eq 'ok') {
1528: delete $accesshash{$entry};
1529: } elsif ($result eq 'unknown_cmd') {
1530: # Target server has old code running on it.
1.450 matthew 1531: my %temphash=($entry => $value);
1.449 matthew 1532: if (&put('nohist_resevaldata',\%temphash,$dom,$name) eq 'ok') {
1533: delete $accesshash{$entry};
1534: }
1535: }
1536: } else {
1.458 matthew 1537: my ($dom,$name) = ($entry=~m:___(\w+)/(\w+)/(.*)___(\w+)$:);
1.450 matthew 1538: my %temphash=($entry => $accesshash{$entry});
1.449 matthew 1539: if (&put('nohist_resevaldata',\%temphash,$dom,$name) eq 'ok') {
1540: delete $accesshash{$entry};
1541: }
1.185 www 1542: }
1.191 harris41 1543: }
1.352 www 1544: #
1545: # Roles
1546: # Reverse lookup of user roles for course faculty/staff and co-authorship
1547: #
1.349 www 1548: foreach (keys %userrolehash) {
1549: my $entry=$_;
1.351 www 1550: my ($role,$uname,$udom,$runame,$rudom,$rsec)=
1.349 www 1551: split(/\:/,$entry);
1552: if (&Apache::lonnet::put('nohist_userroles',
1.351 www 1553: { $role.':'.$uname.':'.$udom.':'.$rsec => $userrolehash{$entry} },
1.349 www 1554: $rudom,$runame) eq 'ok') {
1555: delete $userrolehash{$entry};
1556: }
1557: }
1.186 www 1558: $dumpcount++;
1.157 www 1559: }
1560:
1561: sub courselog {
1562: my $what=shift;
1.158 www 1563: $what=time.':'.$what;
1.157 www 1564: unless ($ENV{'request.course.id'}) { return ''; }
1.188 www 1565: $coursedombuf{$ENV{'request.course.id'}}=
1.352 www 1566: $ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
1567: $coursenumbuf{$ENV{'request.course.id'}}=
1.188 www 1568: $ENV{'course.'.$ENV{'request.course.id'}.'.num'};
1569: $coursehombuf{$ENV{'request.course.id'}}=
1570: $ENV{'course.'.$ENV{'request.course.id'}.'.home'};
1.352 www 1571: $coursedescrbuf{$ENV{'request.course.id'}}=
1572: $ENV{'course.'.$ENV{'request.course.id'}.'.description'};
1.516 raeburn 1573: $courseinstcodebuf{$ENV{'request.course.id'}}=
1574: $ENV{'course.'.$ENV{'request.course.id'}.'.internal.coursecode'};
1.157 www 1575: if (defined $courselogs{$ENV{'request.course.id'}}) {
1576: $courselogs{$ENV{'request.course.id'}}.='&'.$what;
1577: } else {
1578: $courselogs{$ENV{'request.course.id'}}.=$what;
1579: }
1.458 matthew 1580: if (length($courselogs{$ENV{'request.course.id'}})>4048) {
1.157 www 1581: &flushcourselogs();
1582: }
1.158 www 1583: }
1584:
1585: sub courseacclog {
1586: my $fnsymb=shift;
1587: unless ($ENV{'request.course.id'}) { return ''; }
1588: my $what=$fnsymb.':'.$ENV{'user.name'}.':'.$ENV{'user.domain'};
1.408 www 1589: if ($fnsymb=~/(problem|exam|quiz|assess|survey|form|page)$/) {
1.187 www 1590: $what.=':POST';
1.191 harris41 1591: foreach (keys %ENV) {
1.158 www 1592: if ($_=~/^form\.(.*)/) {
1593: $what.=':'.$1.'='.$ENV{$_};
1594: }
1.191 harris41 1595: }
1.158 www 1596: }
1597: &courselog($what);
1.149 www 1598: }
1599:
1.185 www 1600: sub countacc {
1601: my $url=&declutter(shift);
1.458 matthew 1602: return if (! defined($url) || $url eq '');
1.185 www 1603: unless ($ENV{'request.course.id'}) { return ''; }
1604: $accesshash{$ENV{'request.course.id'}.'___'.$url.'___course'}=1;
1.281 www 1605: my $key=$$.$processmarker.'_'.$dumpcount.'___'.$url.'___count';
1.450 matthew 1606: $accesshash{$key}++;
1.185 www 1607: }
1.349 www 1608:
1.361 www 1609: sub linklog {
1610: my ($from,$to)=@_;
1611: $from=&declutter($from);
1612: $to=&declutter($to);
1613: $accesshash{$from.'___'.$to.'___comefrom'}=1;
1614: $accesshash{$to.'___'.$from.'___goto'}=1;
1615: }
1616:
1.349 www 1617: sub userrolelog {
1618: my ($trole,$username,$domain,$area,$tstart,$tend)=@_;
1619: if (($trole=~/^ca/) || ($trole=~/^in/) ||
1620: ($trole=~/^cc/) || ($trole=~/^ep/) ||
1.469 www 1621: ($trole=~/^cr/) || ($trole=~/^ta/)) {
1.350 www 1622: my (undef,$rudom,$runame,$rsec)=split(/\//,$area);
1623: $userrolehash
1624: {$trole.':'.$username.':'.$domain.':'.$runame.':'.$rudom.':'.$rsec}
1.349 www 1625: =$tend.':'.$tstart;
1626: }
1.351 www 1627: }
1628:
1629: sub get_course_adv_roles {
1630: my $cid=shift;
1631: $cid=$ENV{'request.course.id'} unless (defined($cid));
1632: my %coursehash=&coursedescription($cid);
1.470 www 1633: my %nothide=();
1634: foreach (split(/\s*\,\s*/,$coursehash{'nothideprivileged'})) {
1635: $nothide{join(':',split(/[\@\:]/,$_))}=1;
1636: }
1.351 www 1637: my %returnhash=();
1638: my %dumphash=
1639: &dump('nohist_userroles',$coursehash{'domain'},$coursehash{'num'});
1640: my $now=time;
1641: foreach (keys %dumphash) {
1642: my ($tend,$tstart)=split(/\:/,$dumphash{$_});
1643: if (($tstart) && ($tstart<0)) { next; }
1644: if (($tend) && ($tend<$now)) { next; }
1645: if (($tstart) && ($now<$tstart)) { next; }
1646: my ($role,$username,$domain,$section)=split(/\:/,$_);
1.470 www 1647: if ((&privileged($username,$domain)) &&
1648: (!$nothide{$username.':'.$domain})) { next; }
1.351 www 1649: my $key=&plaintext($role);
1650: if ($section) { $key.=' (Sec/Grp '.$section.')'; }
1651: if ($returnhash{$key}) {
1652: $returnhash{$key}.=','.$username.':'.$domain;
1653: } else {
1654: $returnhash{$key}=$username.':'.$domain;
1655: }
1.400 www 1656: }
1657: return %returnhash;
1658: }
1659:
1660: sub get_my_roles {
1661: my ($uname,$udom)=@_;
1662: unless (defined($uname)) { $uname=$ENV{'user.name'}; }
1663: unless (defined($udom)) { $udom=$ENV{'user.domain'}; }
1664: my %dumphash=
1665: &dump('nohist_userroles',$udom,$uname);
1666: my %returnhash=();
1667: my $now=time;
1668: foreach (keys %dumphash) {
1669: my ($tend,$tstart)=split(/\:/,$dumphash{$_});
1670: if (($tstart) && ($tstart<0)) { next; }
1671: if (($tend) && ($tend<$now)) { next; }
1672: if (($tstart) && ($now<$tstart)) { next; }
1673: my ($role,$username,$domain,$section)=split(/\:/,$_);
1674: $returnhash{$username.':'.$domain.':'.$role}=$tstart.':'.$tend;
1.373 www 1675: }
1676: return %returnhash;
1.399 www 1677: }
1678:
1679: # ----------------------------------------------------- Frontpage Announcements
1680: #
1681: #
1682:
1683: sub postannounce {
1684: my ($server,$text)=@_;
1685: unless (&allowed('psa',$hostdom{$server})) { return 'refused'; }
1686: unless ($text=~/\w/) { $text=''; }
1687: return &reply('setannounce:'.&escape($text),$server);
1688: }
1689:
1690: sub getannounce {
1.448 albertel 1691:
1692: if (open(my $fh,$perlvar{'lonDocRoot'}.'/announcement.txt')) {
1.399 www 1693: my $announcement='';
1694: while (<$fh>) { $announcement .=$_; }
1.448 albertel 1695: close($fh);
1.399 www 1696: if ($announcement=~/\w/) {
1697: return
1698: '<table bgcolor="#FF5555" cellpadding="5" cellspacing="3">'.
1.518 albertel 1699: '<tr><td bgcolor="#FFFFFF"><tt>'.$announcement.'</tt></td></tr></table>';
1.399 www 1700: } else {
1701: return '';
1702: }
1703: } else {
1704: return '';
1705: }
1.351 www 1706: }
1.353 www 1707:
1708: # ---------------------------------------------------------- Course ID routines
1709: # Deal with domain's nohist_courseid.db files
1710: #
1711:
1712: sub courseidput {
1713: my ($domain,$what,$coursehome)=@_;
1714: return &reply('courseidput:'.$domain.':'.$what,$coursehome);
1715: }
1716:
1717: sub courseiddump {
1.511 raeburn 1718: my ($domfilter,$descfilter,$sincefilter,$hostidflag,$hostidref)=@_;
1.353 www 1719: my %returnhash=();
1.355 www 1720: unless ($domfilter) { $domfilter=''; }
1.353 www 1721: foreach my $tryserver (keys %libserv) {
1.511 raeburn 1722: if ( ($hostidflag == 1 && grep/^$tryserver$/,@{$hostidref}) || (!defined($hostidflag)) ) {
1.506 raeburn 1723: if ((!$domfilter) || ($hostdom{$tryserver} eq $domfilter)) {
1724: foreach (
1725: split(/\&/,&reply('courseiddump:'.$hostdom{$tryserver}.':'.
1.354 www 1726: $sincefilter.':'.&escape($descfilter),
1727: $tryserver))) {
1.506 raeburn 1728: my ($key,$value)=split(/\=/,$_);
1729: if (($key) && ($value)) {
1.516 raeburn 1730: $returnhash{&unescape($key)}=$value;
1.506 raeburn 1731: }
1.353 www 1732: }
1733: }
1734: }
1735: }
1736: return %returnhash;
1737: }
1738:
1739: #
1.149 www 1740: # ----------------------------------------------------------- Check out an item
1741:
1.504 albertel 1742: sub get_first_access {
1743: my ($type,$argsymb)=@_;
1744: my ($symb,$courseid,$udom,$uname)=&Apache::lonxml::whichuser();
1745: if ($argsymb) { $symb=$argsymb; }
1746: my ($map,$id,$res)=&decode_symb($symb);
1747: if ($type eq 'map') { $res=$map; }
1748: my %times=&get('firstaccesstimes',[$res],$udom,$uname);
1749: return $times{$res};
1750: }
1751:
1752: sub set_first_access {
1753: my ($type)=@_;
1754: my ($symb,$courseid,$udom,$uname)=&Apache::lonxml::whichuser();
1755: my ($map,$id,$res)=&decode_symb($symb);
1756: if ($type eq 'map') { $res=$map; }
1.505 albertel 1757: my $firstaccess=&get_first_access($type);
1758: if (!$firstaccess) {
1759: return &put('firstaccesstimes',{$res=>time},$udom,$uname);
1760: }
1761: return 'already_set';
1.504 albertel 1762: }
1763:
1.149 www 1764: sub checkout {
1765: my ($symb,$tuname,$tudom,$tcrsid)=@_;
1766: my $now=time;
1767: my $lonhost=$perlvar{'lonHostID'};
1768: my $infostr=&escape(
1.234 www 1769: 'CHECKOUTTOKEN&'.
1.149 www 1770: $tuname.'&'.
1771: $tudom.'&'.
1772: $tcrsid.'&'.
1773: $symb.'&'.
1774: $now.'&'.$ENV{'REMOTE_ADDR'});
1775: my $token=&reply('tmpput:'.$infostr,$lonhost);
1.151 www 1776: if ($token=~/^error\:/) {
1777: &logthis("<font color=blue>WARNING: ".
1778: "Checkout tmpput failed ".$tudom.' - '.$tuname.' - '.$symb.
1779: "</font>");
1780: return '';
1781: }
1782:
1.149 www 1783: $token=~s/^(\d+)\_.*\_(\d+)$/$1\*$2\*$lonhost/;
1784: $token=~tr/a-z/A-Z/;
1785:
1.153 www 1786: my %infohash=('resource.0.outtoken' => $token,
1787: 'resource.0.checkouttime' => $now,
1788: 'resource.0.outremote' => $ENV{'REMOTE_ADDR'});
1.149 www 1789:
1790: unless (&cstore(\%infohash,$symb,$tcrsid,$tudom,$tuname) eq 'ok') {
1791: return '';
1.151 www 1792: } else {
1793: &logthis("<font color=blue>WARNING: ".
1794: "Checkout cstore failed ".$tudom.' - '.$tuname.' - '.$symb.
1795: "</font>");
1.149 www 1796: }
1797:
1798: if (&log($tudom,$tuname,&homeserver($tuname,$tudom),
1799: &escape('Checkout '.$infostr.' - '.
1800: $token)) ne 'ok') {
1801: return '';
1.151 www 1802: } else {
1803: &logthis("<font color=blue>WARNING: ".
1804: "Checkout log failed ".$tudom.' - '.$tuname.' - '.$symb.
1805: "</font>");
1.149 www 1806: }
1.151 www 1807: return $token;
1.149 www 1808: }
1809:
1810: # ------------------------------------------------------------ Check in an item
1811:
1812: sub checkin {
1813: my $token=shift;
1.150 www 1814: my $now=time;
1815: my ($ta,$tb,$lonhost)=split(/\*/,$token);
1816: $lonhost=~tr/A-Z/a-z/;
1817: my $dtoken=$ta.'_'.$hostip{$lonhost}.'_'.$tb;
1818: $dtoken=~s/\W/\_/g;
1.234 www 1819: my ($dummy,$tuname,$tudom,$tcrsid,$symb,$chtim,$rmaddr)=
1.150 www 1820: split(/\&/,&unescape(&reply('tmpget:'.$dtoken,$lonhost)));
1821:
1.154 www 1822: unless (($tuname) && ($tudom)) {
1823: &logthis('Check in '.$token.' ('.$dtoken.') failed');
1824: return '';
1825: }
1826:
1827: unless (&allowed('mgr',$tcrsid)) {
1828: &logthis('Check in '.$token.' ('.$dtoken.') unauthorized: '.
1829: $ENV{'user.name'}.' - '.$ENV{'user.domain'});
1830: return '';
1831: }
1832:
1.153 www 1833: my %infohash=('resource.0.intoken' => $token,
1834: 'resource.0.checkintime' => $now,
1835: 'resource.0.inremote' => $ENV{'REMOTE_ADDR'});
1.150 www 1836:
1837: unless (&cstore(\%infohash,$symb,$tcrsid,$tudom,$tuname) eq 'ok') {
1838: return '';
1839: }
1840:
1841: if (&log($tudom,$tuname,&homeserver($tuname,$tudom),
1842: &escape('Checkin - '.$token)) ne 'ok') {
1843: return '';
1844: }
1845:
1846: return ($symb,$tuname,$tudom,$tcrsid);
1.110 www 1847: }
1848:
1849: # --------------------------------------------- Set Expire Date for Spreadsheet
1850:
1851: sub expirespread {
1852: my ($uname,$udom,$stype,$usymb)=@_;
1853: my $cid=$ENV{'request.course.id'};
1854: if ($cid) {
1855: my $now=time;
1856: my $key=$uname.':'.$udom.':'.$stype.':'.$usymb;
1857: return &reply('put:'.$ENV{'course.'.$cid.'.domain'}.':'.
1858: $ENV{'course.'.$cid.'.num'}.
1859: ':nohist_expirationdates:'.
1860: &escape($key).'='.$now,
1861: $ENV{'course.'.$cid.'.home'})
1862: }
1863: return 'ok';
1.14 www 1864: }
1865:
1.109 www 1866: # ----------------------------------------------------- Devalidate Spreadsheets
1867:
1868: sub devalidate {
1.325 www 1869: my ($symb,$uname,$udom)=@_;
1.109 www 1870: my $cid=$ENV{'request.course.id'};
1871: if ($cid) {
1.391 matthew 1872: # delete the stored spreadsheets for
1873: # - the student level sheet of this user in course's homespace
1874: # - the assessment level sheet for this resource
1875: # for this user in user's homespace
1.325 www 1876: my $key=$uname.':'.$udom.':';
1.109 www 1877: my $status=
1.299 matthew 1878: &del('nohist_calculatedsheets',
1.391 matthew 1879: [$key.'studentcalc:'],
1.133 albertel 1880: $ENV{'course.'.$cid.'.domain'},
1881: $ENV{'course.'.$cid.'.num'})
1882: .' '.
1883: &del('nohist_calculatedsheets_'.$cid,
1.391 matthew 1884: [$key.'assesscalc:'.$symb],$udom,$uname);
1.109 www 1885: unless ($status eq 'ok ok') {
1886: &logthis('Could not devalidate spreadsheet '.
1.325 www 1887: $uname.' at '.$udom.' for '.
1.109 www 1888: $symb.': '.$status);
1.133 albertel 1889: }
1.109 www 1890: }
1891: }
1892:
1.265 albertel 1893: sub get_scalar {
1894: my ($string,$end) = @_;
1895: my $value;
1896: if ($$string =~ s/^([^&]*?)($end)/$2/) {
1897: $value = $1;
1898: } elsif ($$string =~ s/^([^&]*?)&//) {
1899: $value = $1;
1900: }
1901: return &unescape($value);
1902: }
1903:
1904: sub array2str {
1905: my (@array) = @_;
1906: my $result=&arrayref2str(\@array);
1907: $result=~s/^__ARRAY_REF__//;
1908: $result=~s/__END_ARRAY_REF__$//;
1909: return $result;
1910: }
1911:
1.204 albertel 1912: sub arrayref2str {
1913: my ($arrayref) = @_;
1.265 albertel 1914: my $result='__ARRAY_REF__';
1.204 albertel 1915: foreach my $elem (@$arrayref) {
1.265 albertel 1916: if(ref($elem) eq 'ARRAY') {
1917: $result.=&arrayref2str($elem).'&';
1918: } elsif(ref($elem) eq 'HASH') {
1919: $result.=&hashref2str($elem).'&';
1920: } elsif(ref($elem)) {
1921: #print("Got a ref of ".(ref($elem))." skipping.");
1.204 albertel 1922: } else {
1923: $result.=&escape($elem).'&';
1924: }
1925: }
1926: $result=~s/\&$//;
1.265 albertel 1927: $result .= '__END_ARRAY_REF__';
1.204 albertel 1928: return $result;
1929: }
1930:
1.168 albertel 1931: sub hash2str {
1.204 albertel 1932: my (%hash) = @_;
1933: my $result=&hashref2str(\%hash);
1.265 albertel 1934: $result=~s/^__HASH_REF__//;
1935: $result=~s/__END_HASH_REF__$//;
1.204 albertel 1936: return $result;
1937: }
1938:
1939: sub hashref2str {
1940: my ($hashref)=@_;
1.265 albertel 1941: my $result='__HASH_REF__';
1.495 albertel 1942: foreach (sort(keys(%$hashref))) {
1.204 albertel 1943: if (ref($_) eq 'ARRAY') {
1.265 albertel 1944: $result.=&arrayref2str($_).'=';
1.204 albertel 1945: } elsif (ref($_) eq 'HASH') {
1.265 albertel 1946: $result.=&hashref2str($_).'=';
1.204 albertel 1947: } elsif (ref($_)) {
1.265 albertel 1948: $result.='=';
1949: #print("Got a ref of ".(ref($_))." skipping.");
1.204 albertel 1950: } else {
1.265 albertel 1951: if ($_) {$result.=&escape($_).'=';} else { last; }
1.204 albertel 1952: }
1953:
1.265 albertel 1954: if(ref($hashref->{$_}) eq 'ARRAY') {
1955: $result.=&arrayref2str($hashref->{$_}).'&';
1956: } elsif(ref($hashref->{$_}) eq 'HASH') {
1957: $result.=&hashref2str($hashref->{$_}).'&';
1958: } elsif(ref($hashref->{$_})) {
1959: $result.='&';
1960: #print("Got a ref of ".(ref($hashref->{$_}))." skipping.");
1.204 albertel 1961: } else {
1.265 albertel 1962: $result.=&escape($hashref->{$_}).'&';
1.204 albertel 1963: }
1964: }
1.168 albertel 1965: $result=~s/\&$//;
1.265 albertel 1966: $result .= '__END_HASH_REF__';
1.168 albertel 1967: return $result;
1968: }
1969:
1970: sub str2hash {
1.265 albertel 1971: my ($string)=@_;
1972: my ($hash)=&str2hashref('__HASH_REF__'.$string.'__END_HASH_REF__');
1973: return %$hash;
1974: }
1975:
1976: sub str2hashref {
1.168 albertel 1977: my ($string) = @_;
1.265 albertel 1978:
1979: my %hash;
1980:
1981: if($string !~ /^__HASH_REF__/) {
1982: if (! ($string eq '' || !defined($string))) {
1983: $hash{'error'}='Not hash reference';
1984: }
1985: return (\%hash, $string);
1986: }
1987:
1988: $string =~ s/^__HASH_REF__//;
1989:
1990: while($string !~ /^__END_HASH_REF__/) {
1991: #key
1992: my $key='';
1993: if($string =~ /^__HASH_REF__/) {
1994: ($key, $string)=&str2hashref($string);
1995: if(defined($key->{'error'})) {
1996: $hash{'error'}='Bad data';
1997: return (\%hash, $string);
1998: }
1999: } elsif($string =~ /^__ARRAY_REF__/) {
2000: ($key, $string)=&str2arrayref($string);
2001: if($key->[0] eq 'Array reference error') {
2002: $hash{'error'}='Bad data';
2003: return (\%hash, $string);
2004: }
2005: } else {
2006: $string =~ s/^(.*?)=//;
1.267 albertel 2007: $key=&unescape($1);
1.265 albertel 2008: }
2009: $string =~ s/^=//;
2010:
2011: #value
2012: my $value='';
2013: if($string =~ /^__HASH_REF__/) {
2014: ($value, $string)=&str2hashref($string);
2015: if(defined($value->{'error'})) {
2016: $hash{'error'}='Bad data';
2017: return (\%hash, $string);
2018: }
2019: } elsif($string =~ /^__ARRAY_REF__/) {
2020: ($value, $string)=&str2arrayref($string);
2021: if($value->[0] eq 'Array reference error') {
2022: $hash{'error'}='Bad data';
2023: return (\%hash, $string);
2024: }
2025: } else {
2026: $value=&get_scalar(\$string,'__END_HASH_REF__');
2027: }
2028: $string =~ s/^&//;
2029:
2030: $hash{$key}=$value;
1.204 albertel 2031: }
1.265 albertel 2032:
2033: $string =~ s/^__END_HASH_REF__//;
2034:
2035: return (\%hash, $string);
1.204 albertel 2036: }
2037:
2038: sub str2array {
1.265 albertel 2039: my ($string)=@_;
2040: my ($array)=&str2arrayref('__ARRAY_REF__'.$string.'__END_ARRAY_REF__');
2041: return @$array;
2042: }
2043:
2044: sub str2arrayref {
1.204 albertel 2045: my ($string) = @_;
1.265 albertel 2046: my @array;
2047:
2048: if($string !~ /^__ARRAY_REF__/) {
2049: if (! ($string eq '' || !defined($string))) {
2050: $array[0]='Array reference error';
2051: }
2052: return (\@array, $string);
2053: }
2054:
2055: $string =~ s/^__ARRAY_REF__//;
2056:
2057: while($string !~ /^__END_ARRAY_REF__/) {
2058: my $value='';
2059: if($string =~ /^__HASH_REF__/) {
2060: ($value, $string)=&str2hashref($string);
2061: if(defined($value->{'error'})) {
2062: $array[0] ='Array reference error';
2063: return (\@array, $string);
2064: }
2065: } elsif($string =~ /^__ARRAY_REF__/) {
2066: ($value, $string)=&str2arrayref($string);
2067: if($value->[0] eq 'Array reference error') {
2068: $array[0] ='Array reference error';
2069: return (\@array, $string);
2070: }
2071: } else {
2072: $value=&get_scalar(\$string,'__END_ARRAY_REF__');
2073: }
2074: $string =~ s/^&//;
2075:
2076: push(@array, $value);
1.191 harris41 2077: }
1.265 albertel 2078:
2079: $string =~ s/^__END_ARRAY_REF__//;
2080:
2081: return (\@array, $string);
1.168 albertel 2082: }
2083:
1.167 albertel 2084: # -------------------------------------------------------------------Temp Store
2085:
1.168 albertel 2086: sub tmpreset {
2087: my ($symb,$namespace,$domain,$stuname) = @_;
2088: if (!$symb) {
2089: $symb=&symbread();
1.380 albertel 2090: if (!$symb) { $symb= $ENV{'request.url'}; }
1.168 albertel 2091: }
2092: $symb=escape($symb);
2093:
2094: if (!$namespace) { $namespace=$ENV{'request.state'}; }
2095: $namespace=~s/\//\_/g;
2096: $namespace=~s/\W//g;
2097:
2098: #FIXME needs to do something for /pub resources
2099: if (!$domain) { $domain=$ENV{'user.domain'}; }
2100: if (!$stuname) { $stuname=$ENV{'user.name'}; }
2101: my $path=$perlvar{'lonDaemons'}.'/tmp';
2102: my %hash;
2103: if (tie(%hash,'GDBM_File',
2104: $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
1.256 albertel 2105: &GDBM_WRCREAT(),0640)) {
1.168 albertel 2106: foreach my $key (keys %hash) {
1.180 albertel 2107: if ($key=~ /:$symb/) {
1.168 albertel 2108: delete($hash{$key});
2109: }
2110: }
2111: }
2112: }
2113:
1.167 albertel 2114: sub tmpstore {
1.168 albertel 2115: my ($storehash,$symb,$namespace,$domain,$stuname) = @_;
2116:
2117: if (!$symb) {
2118: $symb=&symbread();
2119: if (!$symb) { $symb= $ENV{'request.url'}; }
2120: }
2121: $symb=escape($symb);
2122:
2123: if (!$namespace) {
2124: # I don't think we would ever want to store this for a course.
2125: # it seems this will only be used if we don't have a course.
2126: #$namespace=$ENV{'request.course.id'};
2127: #if (!$namespace) {
2128: $namespace=$ENV{'request.state'};
2129: #}
2130: }
2131: $namespace=~s/\//\_/g;
2132: $namespace=~s/\W//g;
2133: #FIXME needs to do something for /pub resources
2134: if (!$domain) { $domain=$ENV{'user.domain'}; }
2135: if (!$stuname) { $stuname=$ENV{'user.name'}; }
2136: my $now=time;
2137: my %hash;
2138: my $path=$perlvar{'lonDaemons'}.'/tmp';
2139: if (tie(%hash,'GDBM_File',
2140: $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
1.256 albertel 2141: &GDBM_WRCREAT(),0640)) {
1.168 albertel 2142: $hash{"version:$symb"}++;
2143: my $version=$hash{"version:$symb"};
2144: my $allkeys='';
2145: foreach my $key (keys(%$storehash)) {
2146: $allkeys.=$key.':';
2147: $hash{"$version:$symb:$key"}=$$storehash{$key};
2148: }
2149: $hash{"$version:$symb:timestamp"}=$now;
2150: $allkeys.='timestamp';
2151: $hash{"$version:keys:$symb"}=$allkeys;
2152: if (untie(%hash)) {
2153: return 'ok';
2154: } else {
2155: return "error:$!";
2156: }
2157: } else {
2158: return "error:$!";
2159: }
2160: }
1.167 albertel 2161:
1.168 albertel 2162: # -----------------------------------------------------------------Temp Restore
1.167 albertel 2163:
1.168 albertel 2164: sub tmprestore {
2165: my ($symb,$namespace,$domain,$stuname) = @_;
1.167 albertel 2166:
1.168 albertel 2167: if (!$symb) {
2168: $symb=&symbread();
2169: if (!$symb) { $symb= $ENV{'request.url'}; }
2170: }
2171: $symb=escape($symb);
2172:
2173: if (!$namespace) { $namespace=$ENV{'request.state'}; }
2174: #FIXME needs to do something for /pub resources
2175: if (!$domain) { $domain=$ENV{'user.domain'}; }
2176: if (!$stuname) { $stuname=$ENV{'user.name'}; }
2177:
2178: my %returnhash;
2179: $namespace=~s/\//\_/g;
2180: $namespace=~s/\W//g;
2181: my %hash;
2182: my $path=$perlvar{'lonDaemons'}.'/tmp';
2183: if (tie(%hash,'GDBM_File',
2184: $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
1.256 albertel 2185: &GDBM_READER(),0640)) {
1.168 albertel 2186: my $version=$hash{"version:$symb"};
2187: $returnhash{'version'}=$version;
2188: my $scope;
2189: for ($scope=1;$scope<=$version;$scope++) {
2190: my $vkeys=$hash{"$scope:keys:$symb"};
2191: my @keys=split(/:/,$vkeys);
2192: my $key;
2193: $returnhash{"$scope:keys"}=$vkeys;
2194: foreach $key (@keys) {
2195: $returnhash{"$scope:$key"}=$hash{"$scope:$symb:$key"};
2196: $returnhash{"$key"}=$hash{"$scope:$symb:$key"};
1.167 albertel 2197: }
2198: }
1.168 albertel 2199: if (!(untie(%hash))) {
2200: return "error:$!";
2201: }
2202: } else {
2203: return "error:$!";
2204: }
2205: return %returnhash;
1.167 albertel 2206: }
2207:
1.9 www 2208: # ----------------------------------------------------------------------- Store
2209:
2210: sub store {
1.124 www 2211: my ($storehash,$symb,$namespace,$domain,$stuname) = @_;
2212: my $home='';
2213:
1.168 albertel 2214: if ($stuname) { $home=&homeserver($stuname,$domain); }
1.124 www 2215:
1.213 www 2216: $symb=&symbclean($symb);
1.122 albertel 2217: if (!$symb) { unless ($symb=&symbread()) { return ''; } }
1.109 www 2218:
1.325 www 2219: if (!$domain) { $domain=$ENV{'user.domain'}; }
2220: if (!$stuname) { $stuname=$ENV{'user.name'}; }
2221:
2222: &devalidate($symb,$stuname,$domain);
1.109 www 2223:
2224: $symb=escape($symb);
1.187 www 2225: if (!$namespace) {
2226: unless ($namespace=$ENV{'request.course.id'}) {
2227: return '';
2228: }
2229: }
1.122 albertel 2230: if (!$home) { $home=$ENV{'user.home'}; }
1.447 www 2231:
2232: $$storehash{'ip'}=$ENV{'REMOTE_ADDR'};
2233: $$storehash{'host'}=$perlvar{'lonHostID'};
2234:
1.12 www 2235: my $namevalue='';
1.191 harris41 2236: foreach (keys %$storehash) {
1.122 albertel 2237: $namevalue.=escape($_).'='.escape($$storehash{$_}).'&';
1.191 harris41 2238: }
1.12 www 2239: $namevalue=~s/\&$//;
1.187 www 2240: &courselog($symb.':'.$stuname.':'.$domain.':STORE:'.$namevalue);
1.124 www 2241: return reply("store:$domain:$stuname:$namespace:$symb:$namevalue","$home");
1.9 www 2242: }
2243:
1.47 www 2244: # -------------------------------------------------------------- Critical Store
2245:
2246: sub cstore {
1.124 www 2247: my ($storehash,$symb,$namespace,$domain,$stuname) = @_;
2248: my $home='';
2249:
1.168 albertel 2250: if ($stuname) { $home=&homeserver($stuname,$domain); }
1.124 www 2251:
1.213 www 2252: $symb=&symbclean($symb);
1.122 albertel 2253: if (!$symb) { unless ($symb=&symbread()) { return ''; } }
1.109 www 2254:
1.325 www 2255: if (!$domain) { $domain=$ENV{'user.domain'}; }
2256: if (!$stuname) { $stuname=$ENV{'user.name'}; }
2257:
2258: &devalidate($symb,$stuname,$domain);
1.109 www 2259:
2260: $symb=escape($symb);
1.187 www 2261: if (!$namespace) {
2262: unless ($namespace=$ENV{'request.course.id'}) {
2263: return '';
2264: }
2265: }
1.122 albertel 2266: if (!$home) { $home=$ENV{'user.home'}; }
1.447 www 2267:
2268: $$storehash{'ip'}=$ENV{'REMOTE_ADDR'};
2269: $$storehash{'host'}=$perlvar{'lonHostID'};
1.122 albertel 2270:
1.47 www 2271: my $namevalue='';
1.191 harris41 2272: foreach (keys %$storehash) {
1.122 albertel 2273: $namevalue.=escape($_).'='.escape($$storehash{$_}).'&';
1.191 harris41 2274: }
1.47 www 2275: $namevalue=~s/\&$//;
1.187 www 2276: &courselog($symb.':'.$stuname.':'.$domain.':CSTORE:'.$namevalue);
1.188 www 2277: return critical
2278: ("store:$domain:$stuname:$namespace:$symb:$namevalue","$home");
1.47 www 2279: }
2280:
1.9 www 2281: # --------------------------------------------------------------------- Restore
2282:
2283: sub restore {
1.124 www 2284: my ($symb,$namespace,$domain,$stuname) = @_;
2285: my $home='';
2286:
1.168 albertel 2287: if ($stuname) { $home=&homeserver($stuname,$domain); }
1.124 www 2288:
1.122 albertel 2289: if (!$symb) {
2290: unless ($symb=escape(&symbread())) { return ''; }
2291: } else {
1.213 www 2292: $symb=&escape(&symbclean($symb));
1.122 albertel 2293: }
1.188 www 2294: if (!$namespace) {
2295: unless ($namespace=$ENV{'request.course.id'}) {
2296: return '';
2297: }
2298: }
1.122 albertel 2299: if (!$domain) { $domain=$ENV{'user.domain'}; }
2300: if (!$stuname) { $stuname=$ENV{'user.name'}; }
2301: if (!$home) { $home=$ENV{'user.home'}; }
2302: my $answer=&reply("restore:$domain:$stuname:$namespace:$symb","$home");
2303:
1.12 www 2304: my %returnhash=();
1.191 harris41 2305: foreach (split(/\&/,$answer)) {
1.12 www 2306: my ($name,$value)=split(/\=/,$_);
2307: $returnhash{&unescape($name)}=&unescape($value);
1.191 harris41 2308: }
1.75 www 2309: my $version;
2310: for ($version=1;$version<=$returnhash{'version'};$version++) {
1.191 harris41 2311: foreach (split(/\:/,$returnhash{$version.':keys'})) {
1.75 www 2312: $returnhash{$_}=$returnhash{$version.':'.$_};
1.191 harris41 2313: }
1.75 www 2314: }
1.13 www 2315: return %returnhash;
1.34 www 2316: }
2317:
2318: # ---------------------------------------------------------- Course Description
2319:
2320: sub coursedescription {
2321: my $courseid=shift;
2322: $courseid=~s/^\///;
1.49 www 2323: $courseid=~s/\_/\//g;
1.34 www 2324: my ($cdomain,$cnum)=split(/\//,$courseid);
1.129 albertel 2325: my $chome=&homeserver($cnum,$cdomain);
1.302 albertel 2326: my $normalid=$cdomain.'_'.$cnum;
2327: # need to always cache even if we get errors otherwise we keep
2328: # trying and trying and trying to get the course description.
2329: my %envhash=();
2330: my %returnhash=();
2331: $envhash{'course.'.$normalid.'.last_cache'}=time;
1.34 www 2332: if ($chome ne 'no_host') {
1.302 albertel 2333: %returnhash=&dump('environment',$cdomain,$cnum);
1.129 albertel 2334: if (!exists($returnhash{'con_lost'})) {
2335: $returnhash{'home'}= $chome;
2336: $returnhash{'domain'} = $cdomain;
2337: $returnhash{'num'} = $cnum;
1.130 albertel 2338: while (my ($name,$value) = each %returnhash) {
1.53 www 2339: $envhash{'course.'.$normalid.'.'.$name}=$value;
1.129 albertel 2340: }
1.270 www 2341: $returnhash{'url'}=&clutter($returnhash{'url'});
1.34 www 2342: $returnhash{'fn'}=$perlvar{'lonDaemons'}.'/tmp/'.
1.38 www 2343: $ENV{'user.name'}.'_'.$cdomain.'_'.$cnum;
1.60 www 2344: $envhash{'course.'.$normalid.'.home'}=$chome;
2345: $envhash{'course.'.$normalid.'.domain'}=$cdomain;
2346: $envhash{'course.'.$normalid.'.num'}=$cnum;
1.34 www 2347: }
2348: }
1.302 albertel 2349: &appenv(%envhash);
2350: return %returnhash;
1.461 www 2351: }
2352:
2353: # -------------------------------------------------See if a user is privileged
2354:
2355: sub privileged {
2356: my ($username,$domain)=@_;
2357: my $rolesdump=&reply("dump:$domain:$username:roles",
2358: &homeserver($username,$domain));
2359: if (($rolesdump eq 'con_lost') || ($rolesdump eq '')) { return 0; }
2360: my $now=time;
2361: if ($rolesdump ne '') {
2362: foreach (split(/&/,$rolesdump)) {
2363: if ($_!~/^rolesdef\&/) {
2364: my ($area,$role)=split(/=/,$_);
2365: $area=~s/\_\w\w$//;
2366: my ($trole,$tend,$tstart)=split(/_/,$role);
2367: if (($trole eq 'dc') || ($trole eq 'su')) {
2368: my $active=1;
2369: if ($tend) {
2370: if ($tend<$now) { $active=0; }
2371: }
2372: if ($tstart) {
2373: if ($tstart>$now) { $active=0; }
2374: }
2375: if ($active) { return 1; }
2376: }
2377: }
2378: }
2379: }
2380: return 0;
1.9 www 2381: }
1.1 albertel 2382:
1.103 harris41 2383: # -------------------------------------------------------- Get user privileges
1.11 www 2384:
2385: sub rolesinit {
2386: my ($domain,$username,$authhost)=@_;
2387: my $rolesdump=reply("dump:$domain:$username:roles",$authhost);
1.12 www 2388: if (($rolesdump eq 'con_lost') || ($rolesdump eq '')) { return ''; }
1.11 www 2389: my %allroles=();
2390: my %thesepriv=();
2391: my $now=time;
1.21 www 2392: my $userroles="user.login.time=$now\n";
1.11 www 2393: my $thesestr;
2394:
2395: if ($rolesdump ne '') {
1.191 harris41 2396: foreach (split(/&/,$rolesdump)) {
1.21 www 2397: if ($_!~/^rolesdef\&/) {
1.11 www 2398: my ($area,$role)=split(/=/,$_);
1.21 www 2399: $area=~s/\_\w\w$//;
1.11 www 2400: my ($trole,$tend,$tstart)=split(/_/,$role);
1.21 www 2401: $userroles.='user.role.'.$trole.'.'.$area.'='.
2402: $tstart.'.'.$tend."\n";
1.349 www 2403: # log the associated role with the area
2404: &userrolelog($trole,$username,$domain,$area,$tstart,$tend);
1.11 www 2405: if ($tend!=0) {
2406: if ($tend<$now) {
2407: $trole='';
2408: }
2409: }
2410: if ($tstart!=0) {
2411: if ($tstart>$now) {
2412: $trole='';
2413: }
2414: }
2415: if (($area ne '') && ($trole ne '')) {
1.347 albertel 2416: my $spec=$trole.'.'.$area;
2417: my ($tdummy,$tdomain,$trest)=split(/\//,$area);
2418: if ($trole =~ /^cr\//) {
2419: my ($rdummy,$rdomain,$rauthor,$rrole)=split(/\//,$trole);
1.392 www 2420: my $homsvr=homeserver($rauthor,$rdomain);
1.347 albertel 2421: if ($hostname{$homsvr} ne '') {
1.392 www 2422: my ($rdummy,$roledef)=
2423: &get('roles',["rolesdef_$rrole"],$rdomain,$rauthor);
2424:
2425: if (($rdummy ne 'con_lost') && ($roledef ne '')) {
1.347 albertel 2426: my ($syspriv,$dompriv,$coursepriv)=
1.392 www 2427: split(/\_/,$roledef);
1.347 albertel 2428: if (defined($syspriv)) {
2429: $allroles{'cm./'}.=':'.$syspriv;
2430: $allroles{$spec.'./'}.=':'.$syspriv;
2431: }
2432: if ($tdomain ne '') {
2433: if (defined($dompriv)) {
2434: $allroles{'cm./'.$tdomain.'/'}.=':'.$dompriv;
2435: $allroles{$spec.'./'.$tdomain.'/'}.=':'.$dompriv;
2436: }
2437: if ($trest ne '') {
2438: if (defined($coursepriv)) {
2439: $allroles{'cm.'.$area}.=':'.$coursepriv;
2440: $allroles{$spec.'.'.$area}.=':'.$coursepriv;
2441: }
2442: }
2443: }
2444: }
2445: }
2446: } else {
2447: if (defined($pr{$trole.':s'})) {
2448: $allroles{'cm./'}.=':'.$pr{$trole.':s'};
2449: $allroles{$spec.'./'}.=':'.$pr{$trole.':s'};
2450: }
2451: if ($tdomain ne '') {
2452: if (defined($pr{$trole.':d'})) {
2453: $allroles{'cm./'.$tdomain.'/'}.=':'.$pr{$trole.':d'};
2454: $allroles{$spec.'./'.$tdomain.'/'}.=':'.$pr{$trole.':d'};
2455: }
2456: if ($trest ne '') {
2457: if (defined($pr{$trole.':c'})) {
2458: $allroles{'cm.'.$area}.=':'.$pr{$trole.':c'};
2459: $allroles{$spec.'.'.$area}.=':'.$pr{$trole.':c'};
2460: }
2461: }
2462: }
2463: }
1.12 www 2464: }
2465: }
1.191 harris41 2466: }
1.125 www 2467: my $adv=0;
1.128 www 2468: my $author=0;
1.191 harris41 2469: foreach (keys %allroles) {
1.11 www 2470: %thesepriv=();
1.146 www 2471: if (($_!~/^st/) && ($_!~/^ta/) && ($_!~/^cm/)) { $adv=1; }
1.128 www 2472: if (($_=~/^au/) || ($_=~/^ca/)) { $author=1; }
1.191 harris41 2473: foreach (split(/:/,$allroles{$_})) {
1.11 www 2474: if ($_ ne '') {
1.103 harris41 2475: my ($privilege,$restrictions)=split(/&/,$_);
1.11 www 2476: if ($restrictions eq '') {
1.103 harris41 2477: $thesepriv{$privilege}='F';
1.11 www 2478: } else {
1.103 harris41 2479: if ($thesepriv{$privilege} ne 'F') {
2480: $thesepriv{$privilege}.=$restrictions;
1.11 www 2481: }
2482: }
2483: }
1.191 harris41 2484: }
1.11 www 2485: $thesestr='';
1.191 harris41 2486: foreach (keys %thesepriv) { $thesestr.=':'.$_.'&'.$thesepriv{$_}; }
1.11 www 2487: $userroles.='user.priv.'.$_.'='.$thesestr."\n";
1.191 harris41 2488: }
1.128 www 2489: $userroles.='user.adv='.$adv."\n".
2490: 'user.author='.$author."\n";
1.126 www 2491: $ENV{'user.adv'}=$adv;
1.11 www 2492: }
2493: return $userroles;
2494: }
2495:
1.12 www 2496: # --------------------------------------------------------------- get interface
2497:
2498: sub get {
1.131 albertel 2499: my ($namespace,$storearr,$udomain,$uname)=@_;
1.12 www 2500: my $items='';
1.191 harris41 2501: foreach (@$storearr) {
1.12 www 2502: $items.=escape($_).'&';
1.191 harris41 2503: }
1.12 www 2504: $items=~s/\&$//;
1.131 albertel 2505: if (!$udomain) { $udomain=$ENV{'user.domain'}; }
2506: if (!$uname) { $uname=$ENV{'user.name'}; }
2507: my $uhome=&homeserver($uname,$udomain);
2508:
1.133 albertel 2509: my $rep=&reply("get:$udomain:$uname:$namespace:$items",$uhome);
1.15 www 2510: my @pairs=split(/\&/,$rep);
1.273 albertel 2511: if ( $#pairs==0 && $pairs[0] =~ /^(con_lost|error|no_such_host)/i) {
2512: return @pairs;
2513: }
1.15 www 2514: my %returnhash=();
1.42 www 2515: my $i=0;
1.191 harris41 2516: foreach (@$storearr) {
1.42 www 2517: $returnhash{$_}=unescape($pairs[$i]);
2518: $i++;
1.191 harris41 2519: }
1.15 www 2520: return %returnhash;
1.27 www 2521: }
2522:
2523: # --------------------------------------------------------------- del interface
2524:
2525: sub del {
1.133 albertel 2526: my ($namespace,$storearr,$udomain,$uname)=@_;
1.27 www 2527: my $items='';
1.191 harris41 2528: foreach (@$storearr) {
1.27 www 2529: $items.=escape($_).'&';
1.191 harris41 2530: }
1.27 www 2531: $items=~s/\&$//;
1.133 albertel 2532: if (!$udomain) { $udomain=$ENV{'user.domain'}; }
2533: if (!$uname) { $uname=$ENV{'user.name'}; }
2534: my $uhome=&homeserver($uname,$udomain);
2535:
2536: return &reply("del:$udomain:$uname:$namespace:$items",$uhome);
1.15 www 2537: }
2538:
2539: # -------------------------------------------------------------- dump interface
2540:
2541: sub dump {
1.193 www 2542: my ($namespace,$udomain,$uname,$regexp)=@_;
1.129 albertel 2543: if (!$udomain) { $udomain=$ENV{'user.domain'}; }
2544: if (!$uname) { $uname=$ENV{'user.name'}; }
2545: my $uhome=&homeserver($uname,$udomain);
1.193 www 2546: if ($regexp) {
2547: $regexp=&escape($regexp);
2548: } else {
2549: $regexp='.';
2550: }
2551: my $rep=reply("dump:$udomain:$uname:$namespace:$regexp",$uhome);
1.12 www 2552: my @pairs=split(/\&/,$rep);
2553: my %returnhash=();
1.191 harris41 2554: foreach (@pairs) {
1.12 www 2555: my ($key,$value)=split(/=/,$_);
1.29 www 2556: $returnhash{unescape($key)}=unescape($value);
1.318 matthew 2557: }
2558: return %returnhash;
1.407 www 2559: }
2560:
2561: # -------------------------------------------------------------- keys interface
2562:
2563: sub getkeys {
2564: my ($namespace,$udomain,$uname)=@_;
2565: if (!$udomain) { $udomain=$ENV{'user.domain'}; }
2566: if (!$uname) { $uname=$ENV{'user.name'}; }
2567: my $uhome=&homeserver($uname,$udomain);
2568: my $rep=reply("keys:$udomain:$uname:$namespace",$uhome);
2569: my @keyarray=();
2570: foreach (split(/\&/,$rep)) {
2571: push (@keyarray,&unescape($_));
2572: }
2573: return @keyarray;
1.318 matthew 2574: }
2575:
1.319 matthew 2576: # --------------------------------------------------------------- currentdump
2577: sub currentdump {
1.328 matthew 2578: my ($courseid,$sdom,$sname)=@_;
1.326 matthew 2579: $courseid = $ENV{'request.course.id'} if (! defined($courseid));
2580: $sdom = $ENV{'user.domain'} if (! defined($sdom));
2581: $sname = $ENV{'user.name'} if (! defined($sname));
2582: my $uhome = &homeserver($sname,$sdom);
2583: my $rep=reply('currentdump:'.$sdom.':'.$sname.':'.$courseid,$uhome);
1.318 matthew 2584: return if ($rep =~ /^(error:|no_such_host)/);
1.319 matthew 2585: #
1.318 matthew 2586: my %returnhash=();
1.319 matthew 2587: #
2588: if ($rep eq "unknown_cmd") {
2589: # an old lond will not know currentdump
2590: # Do a dump and make it look like a currentdump
1.326 matthew 2591: my @tmp = &dump($courseid,$sdom,$sname,'.');
1.319 matthew 2592: return if ($tmp[0] =~ /^(error:|no_such_host)/);
2593: my %hash = @tmp;
2594: @tmp=();
1.424 matthew 2595: %returnhash = %{&convert_dump_to_currentdump(\%hash)};
1.319 matthew 2596: } else {
2597: my @pairs=split(/\&/,$rep);
2598: foreach (@pairs) {
2599: my ($key,$value)=split(/=/,$_);
2600: my ($symb,$param) = split(/:/,$key);
2601: $returnhash{&unescape($symb)}->{&unescape($param)} =
2602: &unescape($value);
2603: }
1.191 harris41 2604: }
1.12 www 2605: return %returnhash;
1.424 matthew 2606: }
2607:
2608: sub convert_dump_to_currentdump{
2609: my %hash = %{shift()};
2610: my %returnhash;
2611: # Code ripped from lond, essentially. The only difference
2612: # here is the unescaping done by lonnet::dump(). Conceivably
2613: # we might run in to problems with parameter names =~ /^v\./
2614: while (my ($key,$value) = each(%hash)) {
2615: my ($v,$symb,$param) = split(/:/,$key);
2616: next if ($v eq 'version' || $symb eq 'keys');
2617: next if (exists($returnhash{$symb}) &&
2618: exists($returnhash{$symb}->{$param}) &&
2619: $returnhash{$symb}->{'v.'.$param} > $v);
2620: $returnhash{$symb}->{$param}=$value;
2621: $returnhash{$symb}->{'v.'.$param}=$v;
2622: }
2623: #
2624: # Remove all of the keys in the hashes which keep track of
2625: # the version of the parameter.
2626: while (my ($symb,$param_hash) = each(%returnhash)) {
2627: # use a foreach because we are going to delete from the hash.
2628: foreach my $key (keys(%$param_hash)) {
2629: delete($param_hash->{$key}) if ($key =~ /^v\./);
2630: }
2631: }
2632: return \%returnhash;
1.12 www 2633: }
2634:
1.449 matthew 2635: # --------------------------------------------------------------- inc interface
2636:
2637: sub inc {
2638: my ($namespace,$store,$udomain,$uname) = @_;
2639: if (!$udomain) { $udomain=$ENV{'user.domain'}; }
2640: if (!$uname) { $uname=$ENV{'user.name'}; }
2641: my $uhome=&homeserver($uname,$udomain);
2642: my $items='';
2643: if (! ref($store)) {
2644: # got a single value, so use that instead
2645: $items = &escape($store).'=&';
2646: } elsif (ref($store) eq 'SCALAR') {
2647: $items = &escape($$store).'=&';
2648: } elsif (ref($store) eq 'ARRAY') {
2649: $items = join('=&',map {&escape($_);} @{$store});
2650: } elsif (ref($store) eq 'HASH') {
2651: while (my($key,$value) = each(%{$store})) {
2652: $items.= &escape($key).'='.&escape($value).'&';
2653: }
2654: }
2655: $items=~s/\&$//;
2656: return &reply("inc:$udomain:$uname:$namespace:$items",$uhome);
2657: }
2658:
1.12 www 2659: # --------------------------------------------------------------- put interface
2660:
2661: sub put {
1.134 albertel 2662: my ($namespace,$storehash,$udomain,$uname)=@_;
2663: if (!$udomain) { $udomain=$ENV{'user.domain'}; }
2664: if (!$uname) { $uname=$ENV{'user.name'}; }
2665: my $uhome=&homeserver($uname,$udomain);
1.12 www 2666: my $items='';
1.191 harris41 2667: foreach (keys %$storehash) {
1.134 albertel 2668: $items.=&escape($_).'='.&escape($$storehash{$_}).'&';
1.191 harris41 2669: }
1.12 www 2670: $items=~s/\&$//;
1.134 albertel 2671: return &reply("put:$udomain:$uname:$namespace:$items",$uhome);
1.47 www 2672: }
2673:
1.524 raeburn 2674: # ---------------------------------------------------------- putstore interface
2675:
2676: sub putstore {
2677: my ($namespace,$storehash,$udomain,$uname)=@_;
2678: if (!$udomain) { $udomain=$ENV{'user.domain'}; }
2679: if (!$uname) { $uname=$ENV{'user.name'}; }
2680: my $uhome=&homeserver($uname,$udomain);
2681: my $items='';
2682: my %allitems = ();
2683: foreach (keys %$storehash) {
2684: if ($_ =~ m/^([^\:]+):([^\:]+):([^\:]+)$/) {
2685: my $key = $1.':keys:'.$2;
2686: $allitems{$key} .= $3.':';
2687: }
2688: $items.=$_.'='.&escape($$storehash{$_}).'&';
2689: }
2690: foreach (keys %allitems) {
2691: $allitems{$_} =~ s/\:$//;
2692: $items.= $_.'='.$allitems{$_}.'&';
2693: }
2694: $items=~s/\&$//;
2695: return &reply("put:$udomain:$uname:$namespace:$items",$uhome);
2696: }
2697:
1.47 www 2698: # ------------------------------------------------------ critical put interface
2699:
2700: sub cput {
1.134 albertel 2701: my ($namespace,$storehash,$udomain,$uname)=@_;
2702: if (!$udomain) { $udomain=$ENV{'user.domain'}; }
2703: if (!$uname) { $uname=$ENV{'user.name'}; }
2704: my $uhome=&homeserver($uname,$udomain);
1.47 www 2705: my $items='';
1.191 harris41 2706: foreach (keys %$storehash) {
1.134 albertel 2707: $items.=escape($_).'='.escape($$storehash{$_}).'&';
1.191 harris41 2708: }
1.47 www 2709: $items=~s/\&$//;
1.134 albertel 2710: return &critical("put:$udomain:$uname:$namespace:$items",$uhome);
1.12 www 2711: }
2712:
2713: # -------------------------------------------------------------- eget interface
2714:
2715: sub eget {
1.133 albertel 2716: my ($namespace,$storearr,$udomain,$uname)=@_;
1.12 www 2717: my $items='';
1.191 harris41 2718: foreach (@$storearr) {
1.12 www 2719: $items.=escape($_).'&';
1.191 harris41 2720: }
1.12 www 2721: $items=~s/\&$//;
1.133 albertel 2722: if (!$udomain) { $udomain=$ENV{'user.domain'}; }
2723: if (!$uname) { $uname=$ENV{'user.name'}; }
2724: my $uhome=&homeserver($uname,$udomain);
2725: my $rep=&reply("eget:$udomain:$uname:$namespace:$items",$uhome);
1.12 www 2726: my @pairs=split(/\&/,$rep);
2727: my %returnhash=();
1.42 www 2728: my $i=0;
1.191 harris41 2729: foreach (@$storearr) {
1.42 www 2730: $returnhash{$_}=unescape($pairs[$i]);
2731: $i++;
1.191 harris41 2732: }
1.12 www 2733: return %returnhash;
2734: }
2735:
1.341 www 2736: # ---------------------------------------------- Custom access rule evaluation
2737:
2738: sub customaccess {
2739: my ($priv,$uri)=@_;
1.342 www 2740: my ($urole,$urealm)=split(/\./,$ENV{'request.role'});
1.343 www 2741: $urealm=~s/^\W//;
2742: my ($udom,$ucrs,$usec)=split(/\//,$urealm);
1.341 www 2743: my $access=0;
2744: foreach (split(/\s*\,\s*/,&metadata($uri,'rule_rights'))) {
1.342 www 2745: my ($effect,$realm,$role)=split(/\:/,$_);
1.343 www 2746: if ($role) {
2747: if ($role ne $urole) { next; }
2748: }
2749: foreach (split(/\s*\,\s*/,$realm)) {
2750: my ($tdom,$tcrs,$tsec)=split(/\_/,$_);
2751: if ($tdom) {
2752: if ($tdom ne $udom) { next; }
2753: }
2754: if ($tcrs) {
2755: if ($tcrs ne $ucrs) { next; }
2756: }
2757: if ($tsec) {
2758: if ($tsec ne $usec) { next; }
2759: }
2760: $access=($effect eq 'allow');
2761: last;
1.342 www 2762: }
1.402 bowersj2 2763: if ($realm eq '' && $role eq '') {
2764: $access=($effect eq 'allow');
2765: }
1.341 www 2766: }
2767: return $access;
2768: }
2769:
1.103 harris41 2770: # ------------------------------------------------- Check for a user privilege
1.12 www 2771:
2772: sub allowed {
2773: my ($priv,$uri)=@_;
1.439 www 2774: $uri=&deversion($uri);
1.152 www 2775: my $orguri=$uri;
1.52 www 2776: $uri=&declutter($uri);
1.545 banghart 2777:
2778:
2779:
1.398 albertel 2780: if (defined($ENV{'allowed.'.$priv})) { return $ENV{'allowed.'.$priv}; }
1.54 www 2781: # Free bre access to adm and meta resources
1.529 albertel 2782: if (((($uri=~/^adm\//) && ($uri !~ m|/bulletinboard$|))
2783: || ($uri=~/\.meta$/)) && ($priv eq 'bre')) {
1.14 www 2784: return 'F';
1.159 www 2785: }
2786:
1.545 banghart 2787: # Free bre access to user's own portfolio contents
1.546 albertel 2788: my ($space,$domain,$name,$dir)=split('/',$uri);
2789: if (('uploaded' eq $space) && ($ENV{'user.name'} eq $name) &&
2790: ($ENV{'user.domain'} eq $domain) && ('portfolio' eq $dir)) {
1.545 banghart 2791: return 'F';
2792: }
2793:
1.159 www 2794: # Free bre to public access
2795:
2796: if ($priv eq 'bre') {
1.238 www 2797: my $copyright=&metadata($uri,'copyright');
1.301 www 2798: if (($copyright eq 'public') && (!$ENV{'request.course.id'})) {
2799: return 'F';
2800: }
1.238 www 2801: if ($copyright eq 'priv') {
2802: $uri=~/([^\/]+)\/([^\/]+)\//;
2803: unless (($ENV{'user.name'} eq $2) && ($ENV{'user.domain'} eq $1)) {
2804: return '';
2805: }
2806: }
2807: if ($copyright eq 'domain') {
2808: $uri=~/([^\/]+)\/([^\/]+)\//;
2809: unless (($ENV{'user.domain'} eq $1) ||
2810: ($ENV{'course.'.$ENV{'request.course.id'}.'.domain'} eq $1)) {
2811: return '';
2812: }
1.262 matthew 2813: }
2814: if ($ENV{'request.role'}=~ /li\.\//) {
2815: # Library role, so allow browsing of resources in this domain.
2816: return 'F';
1.238 www 2817: }
1.341 www 2818: if ($copyright eq 'custom') {
2819: unless (&customaccess($priv,$uri)) { return ''; }
2820: }
1.14 www 2821: }
1.264 matthew 2822: # Domain coordinator is trying to create a course
2823: if (($priv eq 'ccc') && ($ENV{'request.role'} =~ /^dc\./)) {
2824: # uri is the requested domain in this case.
2825: # comparison to 'request.role.domain' shows if the user has selected
2826: # a role of dc for the domain in question.
2827: return 'F' if ($uri eq $ENV{'request.role.domain'});
2828: }
1.29 www 2829:
1.52 www 2830: my $thisallowed='';
2831: my $statecond=0;
2832: my $courseprivid='';
2833:
2834: # Course
2835:
1.479 albertel 2836: if ($ENV{'user.priv.'.$ENV{'request.role'}.'./'}=~/\Q$priv\E\&([^\:]*)/) {
1.52 www 2837: $thisallowed.=$1;
2838: }
1.29 www 2839:
1.52 www 2840: # Domain
2841:
2842: if ($ENV{'user.priv.'.$ENV{'request.role'}.'./'.(split(/\//,$uri))[0].'/'}
1.479 albertel 2843: =~/\Q$priv\E\&([^\:]*)/) {
1.12 www 2844: $thisallowed.=$1;
2845: }
1.52 www 2846:
2847: # Course: uri itself is a course
1.66 www 2848: my $courseuri=$uri;
2849: $courseuri=~s/\_(\d)/\/$1/;
1.83 www 2850: $courseuri=~s/^([^\/])/\/$1/;
1.81 www 2851:
1.83 www 2852: if ($ENV{'user.priv.'.$ENV{'request.role'}.'.'.$courseuri}
1.479 albertel 2853: =~/\Q$priv\E\&([^\:]*)/) {
1.12 www 2854: $thisallowed.=$1;
2855: }
1.29 www 2856:
1.314 www 2857: # URI is an uploaded document for this course
2858:
1.492 albertel 2859: if (($priv eq 'bre') && ($uri=~m|^uploaded/|)) {
2860: my $refuri=$ENV{'httpref.'.$orguri};
2861: if ($refuri) {
2862: if ($refuri =~ m|^/adm/|) {
2863: $thisallowed='F';
2864: }
2865: }
1.314 www 2866: }
1.492 albertel 2867:
1.52 www 2868: # Full access at system, domain or course-wide level? Exit.
1.29 www 2869:
2870: if ($thisallowed=~/F/) {
2871: return 'F';
2872: }
2873:
1.52 www 2874: # If this is generating or modifying users, exit with special codes
1.29 www 2875:
1.479 albertel 2876: if (':csu:cdc:ccc:cin:cta:cep:ccr:cst:cad:cli:cau:cdg:cca:'=~/\:\Q$priv\E\:/) {
1.52 www 2877: return $thisallowed;
2878: }
2879: #
1.103 harris41 2880: # Gathered so far: system, domain and course wide privileges
1.52 www 2881: #
2882: # Course: See if uri or referer is an individual resource that is part of
2883: # the course
2884:
2885: if ($ENV{'request.course.id'}) {
1.232 www 2886:
1.52 www 2887: $courseprivid=$ENV{'request.course.id'};
2888: if ($ENV{'request.course.sec'}) {
2889: $courseprivid.='/'.$ENV{'request.course.sec'};
2890: }
2891: $courseprivid=~s/\_/\//;
2892: my $checkreferer=1;
1.232 www 2893: my ($match,$cond)=&is_on_map($uri);
2894: if ($match) {
2895: $statecond=$cond;
1.52 www 2896: if ($ENV{'user.priv.'.$ENV{'request.role'}.'./'.$courseprivid}
1.479 albertel 2897: =~/\Q$priv\E\&([^\:]*)/) {
1.52 www 2898: $thisallowed.=$1;
2899: $checkreferer=0;
2900: }
1.29 www 2901: }
1.83 www 2902:
1.148 www 2903: if ($checkreferer) {
1.152 www 2904: my $refuri=$ENV{'httpref.'.$orguri};
1.148 www 2905: unless ($refuri) {
1.191 harris41 2906: foreach (keys %ENV) {
1.148 www 2907: if ($_=~/^httpref\..*\*/) {
2908: my $pattern=$_;
1.156 www 2909: $pattern=~s/^httpref\.\/res\///;
1.148 www 2910: $pattern=~s/\*/\[\^\/\]\+/g;
2911: $pattern=~s/\//\\\//g;
1.152 www 2912: if ($orguri=~/$pattern/) {
1.148 www 2913: $refuri=$ENV{$_};
2914: }
2915: }
1.191 harris41 2916: }
1.148 www 2917: }
1.232 www 2918:
1.148 www 2919: if ($refuri) {
1.152 www 2920: $refuri=&declutter($refuri);
1.232 www 2921: my ($match,$cond)=&is_on_map($refuri);
2922: if ($match) {
2923: my $refstatecond=$cond;
1.52 www 2924: if ($ENV{'user.priv.'.$ENV{'request.role'}.'./'.$courseprivid}
1.479 albertel 2925: =~/\Q$priv\E\&([^\:]*)/) {
1.52 www 2926: $thisallowed.=$1;
1.53 www 2927: $uri=$refuri;
2928: $statecond=$refstatecond;
1.52 www 2929: }
2930: }
1.148 www 2931: }
1.29 www 2932: }
1.52 www 2933: }
1.29 www 2934:
1.52 www 2935: #
1.103 harris41 2936: # Gathered now: all privileges that could apply, and condition number
1.52 www 2937: #
2938: #
2939: # Full or no access?
2940: #
1.29 www 2941:
1.52 www 2942: if ($thisallowed=~/F/) {
2943: return 'F';
2944: }
1.29 www 2945:
1.52 www 2946: unless ($thisallowed) {
2947: return '';
2948: }
1.29 www 2949:
1.52 www 2950: # Restrictions exist, deal with them
2951: #
2952: # C:according to course preferences
2953: # R:according to resource settings
2954: # L:unless locked
2955: # X:according to user session state
2956: #
2957:
2958: # Possibly locked functionality, check all courses
1.54 www 2959: # Locks might take effect only after 10 minutes cache expiration for other
2960: # courses, and 2 minutes for current course
1.52 www 2961:
2962: my $envkey;
2963: if ($thisallowed=~/L/) {
2964: foreach $envkey (keys %ENV) {
1.54 www 2965: if ($envkey=~/^user\.role\.(st|ta)\.([^\.]*)/) {
2966: my $courseid=$2;
2967: my $roleid=$1.'.'.$2;
1.92 www 2968: $courseid=~s/^\///;
1.54 www 2969: my $expiretime=600;
2970: if ($ENV{'request.role'} eq $roleid) {
2971: $expiretime=120;
2972: }
2973: my ($cdom,$cnum,$csec)=split(/\//,$courseid);
2974: my $prefix='course.'.$cdom.'_'.$cnum.'.';
2975: if ((time-$ENV{$prefix.'last_cache'})>$expiretime) {
2976: &coursedescription($courseid);
2977: }
1.479 albertel 2978: if (($ENV{$prefix.'res.'.$uri.'.lock.sections'}=~/\,\Q$csec\E\,/)
1.54 www 2979: || ($ENV{$prefix.'res.'.$uri.'.lock.sections'} eq 'all')) {
2980: if ($ENV{$prefix.'res.'.$uri.'.lock.expire'}>time) {
1.57 www 2981: &log($ENV{'user.domain'},$ENV{'user.name'},
1.239 www 2982: $ENV{'user.home'},
1.57 www 2983: 'Locked by res: '.$priv.' for '.$uri.' due to '.
1.52 www 2984: $cdom.'/'.$cnum.'/'.$csec.' expire '.
1.54 www 2985: $ENV{$prefix.'priv.'.$priv.'.lock.expire'});
1.52 www 2986: return '';
2987: }
2988: }
1.479 albertel 2989: if (($ENV{$prefix.'priv.'.$priv.'.lock.sections'}=~/\,\Q$csec\E\,/)
1.54 www 2990: || ($ENV{$prefix.'priv.'.$priv.'.lock.sections'} eq 'all')) {
2991: if ($ENV{'priv.'.$priv.'.lock.expire'}>time) {
1.57 www 2992: &log($ENV{'user.domain'},$ENV{'user.name'},
1.239 www 2993: $ENV{'user.home'},
1.57 www 2994: 'Locked by priv: '.$priv.' for '.$uri.' due to '.
1.52 www 2995: $cdom.'/'.$cnum.'/'.$csec.' expire '.
1.54 www 2996: $ENV{$prefix.'priv.'.$priv.'.lock.expire'});
1.52 www 2997: return '';
2998: }
2999: }
3000: }
1.29 www 3001: }
1.52 www 3002: }
3003:
3004: #
3005: # Rest of the restrictions depend on selected course
3006: #
3007:
3008: unless ($ENV{'request.course.id'}) {
3009: return '1';
3010: }
1.29 www 3011:
1.52 www 3012: #
3013: # Now user is definitely in a course
3014: #
1.53 www 3015:
3016:
3017: # Course preferences
3018:
3019: if ($thisallowed=~/C/) {
1.54 www 3020: my $rolecode=(split(/\./,$ENV{'request.role'}))[0];
1.237 www 3021: my $unamedom=$ENV{'user.name'}.':'.$ENV{'user.domain'};
1.54 www 3022: if ($ENV{'course.'.$ENV{'request.course.id'}.'.'.$priv.'.roles.denied'}
1.479 albertel 3023: =~/\Q$rolecode\E/) {
1.57 www 3024: &log($ENV{'user.domain'},$ENV{'user.name'},$ENV{'user.host'},
3025: 'Denied by role: '.$priv.' for '.$uri.' as '.$rolecode.' in '.
1.237 www 3026: $ENV{'request.course.id'});
3027: return '';
3028: }
3029:
3030: if ($ENV{'course.'.$ENV{'request.course.id'}.'.'.$priv.'.users.denied'}
1.479 albertel 3031: =~/\Q$unamedom\E/) {
1.237 www 3032: &log($ENV{'user.domain'},$ENV{'user.name'},$ENV{'user.host'},
3033: 'Denied by user: '.$priv.' for '.$uri.' as '.$unamedom.' in '.
1.54 www 3034: $ENV{'request.course.id'});
3035: return '';
3036: }
1.53 www 3037: }
3038:
3039: # Resource preferences
3040:
3041: if ($thisallowed=~/R/) {
1.54 www 3042: my $rolecode=(split(/\./,$ENV{'request.role'}))[0];
1.479 albertel 3043: if (&metadata($uri,'roledeny')=~/\Q$rolecode\E/) {
1.341 www 3044: &log($ENV{'user.domain'},$ENV{'user.name'},$ENV{'user.host'},
1.57 www 3045: 'Denied by role: '.$priv.' for '.$uri.' as '.$rolecode);
1.341 www 3046: return '';
1.54 www 3047: }
1.53 www 3048: }
1.30 www 3049:
1.246 www 3050: # Restricted by state or randomout?
1.30 www 3051:
1.52 www 3052: if ($thisallowed=~/X/) {
1.247 www 3053: if ($ENV{'acc.randomout'}) {
1.249 www 3054: my $symb=&symbread($uri,1);
1.479 albertel 3055: if (($symb) && ($ENV{'acc.randomout'}=~/\&\Q$symb\E\&/)) {
1.248 www 3056: return '';
3057: }
1.247 www 3058: }
3059: if (&condval($statecond)) {
1.52 www 3060: return '2';
3061: } else {
3062: return '';
3063: }
3064: }
1.30 www 3065:
1.52 www 3066: return 'F';
1.232 www 3067: }
3068:
3069: # --------------------------------------------------- Is a resource on the map?
3070:
3071: sub is_on_map {
3072: my $uri=&declutter(shift);
1.435 www 3073: $uri=~s/\.\d+\.(\w+)$/\.$1/;
1.232 www 3074: my @uriparts=split(/\//,$uri);
3075: my $filename=$uriparts[$#uriparts];
3076: my $pathname=$uri;
1.289 bowersj2 3077: $pathname=~s|/\Q$filename\E$||;
1.332 www 3078: $pathname=~s/^adm\/wrapper\///;
1.289 bowersj2 3079: #Trying to find the conditional for the file
1.232 www 3080: my $match=($ENV{'acc.res.'.$ENV{'request.course.id'}.'.'.$pathname}=~
1.289 bowersj2 3081: /\&\Q$filename\E\:([\d\|]+)\&/);
1.232 www 3082: if ($match) {
1.289 bowersj2 3083: return (1,$1);
3084: } else {
1.434 www 3085: return (0,0);
1.289 bowersj2 3086: }
1.12 www 3087: }
3088:
1.427 www 3089: # --------------------------------------------------------- Get symb from alias
3090:
3091: sub get_symb_from_alias {
3092: my $symb=shift;
3093: my ($map,$resid,$url)=&decode_symb($symb);
3094: # Already is a symb
3095: if ($url) { return $symb; }
3096: # Must be an alias
3097: my $aliassymb='';
3098: my %bighash;
3099: if (tie(%bighash,'GDBM_File',$ENV{'request.course.fn'}.'.db',
3100: &GDBM_READER(),0640)) {
3101: my $rid=$bighash{'mapalias_'.$symb};
3102: if ($rid) {
3103: my ($mapid,$resid)=split(/\./,$rid);
1.429 albertel 3104: $aliassymb=&encode_symb($bighash{'map_id_'.$mapid},
3105: $resid,$bighash{'src_'.$rid});
1.427 www 3106: }
3107: untie %bighash;
3108: }
3109: return $aliassymb;
3110: }
3111:
1.12 www 3112: # ----------------------------------------------------------------- Define Role
3113:
3114: sub definerole {
3115: if (allowed('mcr','/')) {
3116: my ($rolename,$sysrole,$domrole,$courole)=@_;
1.392 www 3117: foreach (split(':',$sysrole)) {
1.21 www 3118: my ($crole,$cqual)=split(/\&/,$_);
1.479 albertel 3119: if ($pr{'cr:s'}!~/\Q$crole\E/) { return "refused:s:$crole"; }
3120: if ($pr{'cr:s'}=~/\Q$crole\E\&/) {
3121: if ($pr{'cr:s'}!~/\Q$crole\E\&\w*\Q$cqual\E/) {
1.21 www 3122: return "refused:s:$crole&$cqual";
3123: }
3124: }
1.191 harris41 3125: }
1.392 www 3126: foreach (split(':',$domrole)) {
1.21 www 3127: my ($crole,$cqual)=split(/\&/,$_);
1.479 albertel 3128: if ($pr{'cr:d'}!~/\Q$crole\E/) { return "refused:d:$crole"; }
3129: if ($pr{'cr:d'}=~/\Q$crole\E\&/) {
3130: if ($pr{'cr:d'}!~/\Q$crole\W\&\w*\Q$cqual\E/) {
1.21 www 3131: return "refused:d:$crole&$cqual";
3132: }
3133: }
1.191 harris41 3134: }
1.392 www 3135: foreach (split(':',$courole)) {
1.21 www 3136: my ($crole,$cqual)=split(/\&/,$_);
1.479 albertel 3137: if ($pr{'cr:c'}!~/\Q$crole\E/) { return "refused:c:$crole"; }
3138: if ($pr{'cr:c'}=~/\Q$crole\E\&/) {
3139: if ($pr{'cr:c'}!~/\Q$crole\E\&\w*\Q$cqual\E/) {
1.21 www 3140: return "refused:c:$crole&$cqual";
3141: }
3142: }
1.191 harris41 3143: }
1.12 www 3144: my $command="encrypt:rolesput:$ENV{'user.domain'}:$ENV{'user.name'}:".
3145: "$ENV{'user.domain'}:$ENV{'user.name'}:".
1.21 www 3146: "rolesdef_$rolename=".
3147: escape($sysrole.'_'.$domrole.'_'.$courole);
1.12 www 3148: return reply($command,$ENV{'user.home'});
3149: } else {
3150: return 'refused';
3151: }
1.105 harris41 3152: }
3153:
3154: # ---------------- Make a metadata query against the network of library servers
3155:
3156: sub metadata_query {
1.244 matthew 3157: my ($query,$custom,$customshow,$server_array)=@_;
1.120 harris41 3158: my %rhash;
1.244 matthew 3159: my @server_list = (defined($server_array) ? @$server_array
3160: : keys(%libserv) );
3161: for my $server (@server_list) {
1.118 harris41 3162: unless ($custom or $customshow) {
3163: my $reply=&reply("querysend:".&escape($query),$server);
3164: $rhash{$server}=$reply;
3165: }
3166: else {
3167: my $reply=&reply("querysend:".&escape($query).':'.
3168: &escape($custom).':'.&escape($customshow),
3169: $server);
3170: $rhash{$server}=$reply;
3171: }
1.112 harris41 3172: }
1.118 harris41 3173: return \%rhash;
1.240 www 3174: }
3175:
3176: # ----------------------------------------- Send log queries and wait for reply
3177:
3178: sub log_query {
3179: my ($uname,$udom,$query,%filters)=@_;
3180: my $uhome=&homeserver($uname,$udom);
3181: if ($uhome eq 'no_host') { return 'error: no_host'; }
3182: my $uhost=$hostname{$uhome};
1.241 www 3183: my $command=&escape(join(':',map{$_.'='.$filters{$_}} keys %filters));
1.240 www 3184: my $queryid=&reply("querysend:".$query.':'.$udom.':'.$uname.':'.$command,
3185: $uhome);
1.479 albertel 3186: unless ($queryid=~/^\Q$uhost\E\_/) { return 'error: '.$queryid; }
1.242 www 3187: return get_query_reply($queryid);
3188: }
3189:
1.508 raeburn 3190: # ------- Request retrieval of institutional classlists for course(s)
1.506 raeburn 3191:
3192: sub fetch_enrollment_query {
1.511 raeburn 3193: my ($context,$affiliatesref,$replyref,$dom,$cnum) = @_;
1.508 raeburn 3194: my $homeserver;
1.547 raeburn 3195: my $maxtries = 1;
1.508 raeburn 3196: if ($context eq 'automated') {
3197: $homeserver = $perlvar{'lonHostID'};
1.547 raeburn 3198: $maxtries = 10; # will wait for up to 2000s for retrieval of classlist data before timeout
1.508 raeburn 3199: } else {
3200: $homeserver = &homeserver($cnum,$dom);
3201: }
1.506 raeburn 3202: my $host=$hostname{$homeserver};
3203: my $cmd = '';
3204: foreach (keys %{$affiliatesref}) {
1.508 raeburn 3205: $cmd .= $_.'='.join(",",@{$$affiliatesref{$_}}).'%%';
1.506 raeburn 3206: }
3207: $cmd =~ s/%%$//;
3208: $cmd = &escape($cmd);
3209: my $query = 'fetchenrollment';
3210: my $queryid=&reply("querysend:".$query.':'.$dom.':'.$ENV{'user.name'}.':'.$cmd,$homeserver);
1.526 raeburn 3211: unless ($queryid=~/^\Q$host\E\_/) {
3212: &logthis('fetch_enrollment_query: invalid queryid: '.$queryid.' for host: '.$host.' and homeserver: '.$homeserver.' context: '.$context.' '.$cnum);
3213: return 'error: '.$queryid;
3214: }
1.506 raeburn 3215: my $reply = &get_query_reply($queryid);
1.547 raeburn 3216: my $tries = 1;
3217: while (($reply=~/^timeout/) && ($tries < $maxtries)) {
3218: $reply = &get_query_reply($queryid);
3219: $tries ++;
3220: }
1.526 raeburn 3221: if ( ($reply =~/^timeout/) || ($reply =~/^error/) ) {
1.547 raeburn 3222: &logthis('fetch_enrollment_query error: '.$reply.' for '.$dom.' '.$ENV{'user.name'}.' for '.$queryid.' context: '.$context.' '.$cnum.' maxtries: '.$maxtries.' tries: '.$tries);
1.526 raeburn 3223: } else {
1.515 raeburn 3224: my @responses = split/:/,$reply;
3225: if ($homeserver eq $perlvar{'lonHostID'}) {
3226: foreach (@responses) {
3227: my ($key,$value) = split/=/,$_;
3228: $$replyref{$key} = $value;
3229: }
3230: } else {
1.506 raeburn 3231: my $pathname = $perlvar{'lonDaemons'}.'/tmp';
3232: foreach (@responses) {
3233: my ($key,$value) = split/=/,$_;
3234: $$replyref{$key} = $value;
3235: if ($value > 0) {
3236: foreach (@{$$affiliatesref{$key}}) {
3237: my $filename = $dom.'_'.$key.'_'.$_.'_classlist.xml';
3238: my $destname = $pathname.'/'.$filename;
3239: my $xml_classlist = &reply("autoretrieve:".$filename,$homeserver);
1.526 raeburn 3240: if ($xml_classlist =~ /^error/) {
3241: &logthis('fetch_enrollment_query - autoretrieve error: '.$xml_classlist.' for '.$filename.' from server: '.$homeserver.' '.$context.' '.$cnum);
3242: } else {
1.506 raeburn 3243: if ( open(FILE,">$destname") ) {
3244: print FILE &unescape($xml_classlist);
3245: close(FILE);
1.526 raeburn 3246: } else {
3247: &logthis('fetch_enrollment_query - error opening classlist file '.$destname.' '.$context.' '.$cnum);
1.506 raeburn 3248: }
3249: }
3250: }
3251: }
3252: }
3253: }
3254: return 'ok';
3255: }
3256: return 'error';
3257: }
3258:
1.242 www 3259: sub get_query_reply {
3260: my $queryid=shift;
1.240 www 3261: my $replyfile=$perlvar{'lonDaemons'}.'/tmp/'.$queryid;
3262: my $reply='';
3263: for (1..100) {
3264: sleep 2;
3265: if (-e $replyfile.'.end') {
1.448 albertel 3266: if (open(my $fh,$replyfile)) {
1.240 www 3267: $reply.=<$fh>;
1.448 albertel 3268: close($fh);
1.240 www 3269: } else { return 'error: reply_file_error'; }
1.242 www 3270: return &unescape($reply);
3271: }
1.240 www 3272: }
1.242 www 3273: return 'timeout:'.$queryid;
1.240 www 3274: }
3275:
3276: sub courselog_query {
1.241 www 3277: #
3278: # possible filters:
3279: # url: url or symb
3280: # username
3281: # domain
3282: # action: view, submit, grade
3283: # start: timestamp
3284: # end: timestamp
3285: #
1.240 www 3286: my (%filters)=@_;
3287: unless ($ENV{'request.course.id'}) { return 'no_course'; }
1.241 www 3288: if ($filters{'url'}) {
3289: $filters{'url'}=&symbclean(&declutter($filters{'url'}));
3290: $filters{'url'}=~s/\.(\w+)$/(\\.\\d+)*\\.$1/;
3291: $filters{'url'}=~s/\.(\w+)\_\_\_/(\\.\\d+)*\\.$1/;
3292: }
1.240 www 3293: my $cname=$ENV{'course.'.$ENV{'request.course.id'}.'.num'};
3294: my $cdom=$ENV{'course.'.$ENV{'request.course.id'}.'.domain'};
3295: return &log_query($cname,$cdom,'courselog',%filters);
3296: }
3297:
3298: sub userlog_query {
3299: my ($uname,$udom,%filters)=@_;
3300: return &log_query($uname,$udom,'userlog',%filters);
1.12 www 3301: }
3302:
1.506 raeburn 3303: #--------- Call auto-enrollment subs in localenroll.pm for homeserver for course
3304:
3305: sub auto_run {
1.508 raeburn 3306: my ($cnum,$cdom) = @_;
3307: my $homeserver = &homeserver($cnum,$cdom);
1.511 raeburn 3308: my $response = &reply('autorun:'.$cdom,$homeserver);
1.506 raeburn 3309: return $response;
3310: }
3311:
3312: sub auto_get_sections {
1.508 raeburn 3313: my ($cnum,$cdom,$inst_coursecode) = @_;
3314: my $homeserver = &homeserver($cnum,$cdom);
1.506 raeburn 3315: my @secs = ();
1.511 raeburn 3316: my $response=&unescape(&reply('autogetsections:'.$inst_coursecode.':'.$cdom,$homeserver));
1.506 raeburn 3317: unless ($response eq 'refused') {
3318: @secs = split/:/,$response;
3319: }
3320: return @secs;
3321: }
3322:
3323: sub auto_new_course {
1.508 raeburn 3324: my ($cnum,$cdom,$inst_course_id,$owner) = @_;
3325: my $homeserver = &homeserver($cnum,$cdom);
1.515 raeburn 3326: my $response=&unescape(&reply('autonewcourse:'.$inst_course_id.':'.$owner.':'.$cdom,$homeserver));
1.506 raeburn 3327: return $response;
3328: }
3329:
3330: sub auto_validate_courseID {
1.508 raeburn 3331: my ($cnum,$cdom,$inst_course_id) = @_;
3332: my $homeserver = &homeserver($cnum,$cdom);
1.511 raeburn 3333: my $response=&unescape(&reply('autovalidatecourse:'.$inst_course_id.':'.$cdom,$homeserver));
1.506 raeburn 3334: return $response;
3335: }
3336:
3337: sub auto_create_password {
1.508 raeburn 3338: my ($cnum,$cdom,$authparam) = @_;
3339: my $homeserver = &homeserver($cnum,$cdom);
1.506 raeburn 3340: my $create_passwd = 0;
3341: my $authchk = '';
1.511 raeburn 3342: my $response=&unescape(&reply('autocreatepassword:'.$authparam.':'.$cdom,$homeserver));
1.506 raeburn 3343: if ($response eq 'refused') {
3344: $authchk = 'refused';
3345: } else {
3346: ($authparam,$create_passwd,$authchk) = split/:/,$response;
3347: }
3348: return ($authparam,$create_passwd,$authchk);
3349: }
3350:
1.521 raeburn 3351: sub auto_instcode_format {
3352: my ($caller,$codedom,$instcodes,$codes,$codetitles,$cat_titles,$cat_order) = @_;
3353: my $courses = '';
3354: my $homeserver;
3355: if ($caller eq 'global') {
3356: $homeserver = $perlvar{'lonHostID'};
3357: } else {
3358: $homeserver = &homeserver($caller,$codedom);
3359: }
3360: my $host=$hostname{$homeserver};
3361: foreach (keys %{$instcodes}) {
3362: $courses .= &escape($_).'='.&escape($$instcodes{$_}).'&';
3363: }
3364: chop($courses);
3365: my $response=&reply('autoinstcodeformat:'.$codedom.':'.$courses,$homeserver);
3366: unless ($response =~ /(con_lost|error|no_such_host|refused)/) {
3367: my ($codes_str,$codetitles_str,$cat_titles_str,$cat_order_str) = split/:/,$response;
3368: %{$codes} = &str2hash($codes_str);
3369: @{$codetitles} = &str2array($codetitles_str);
3370: %{$cat_titles} = &str2hash($cat_titles_str);
3371: %{$cat_order} = &str2hash($cat_order_str);
3372: return 'ok';
3373: }
3374: return $response;
3375: }
3376:
1.12 www 3377: # ------------------------------------------------------------------ Plain Text
3378:
3379: sub plaintext {
1.22 www 3380: my $short=shift;
1.414 www 3381: return &mt($prp{$short});
1.12 www 3382: }
3383:
3384: # ----------------------------------------------------------------- Assign Role
3385:
3386: sub assignrole {
1.357 www 3387: my ($udom,$uname,$url,$role,$end,$start,$deleteflag)=@_;
1.21 www 3388: my $mrole;
3389: if ($role =~ /^cr\//) {
1.393 www 3390: my $cwosec=$url;
3391: $cwosec=~s/^\/(\w+)\/(\w+)\/.*/$1\/$2/;
3392: unless (&allowed('ccr',$cwosec)) {
1.104 www 3393: &logthis('Refused custom assignrole: '.
3394: $udom.' '.$uname.' '.$url.' '.$role.' '.$end.' '.$start.' by '.
3395: $ENV{'user.name'}.' at '.$ENV{'user.domain'});
3396: return 'refused';
3397: }
1.21 www 3398: $mrole='cr';
3399: } else {
1.82 www 3400: my $cwosec=$url;
1.83 www 3401: $cwosec=~s/^\/(\w+)\/(\w+)\/.*/$1\/$2/;
1.373 www 3402: unless ((&allowed('c'.$role,$cwosec)) || &allowed('c'.$role,$udom)) {
1.104 www 3403: &logthis('Refused assignrole: '.
3404: $udom.' '.$uname.' '.$url.' '.$role.' '.$end.' '.$start.' by '.
3405: $ENV{'user.name'}.' at '.$ENV{'user.domain'});
3406: return 'refused';
3407: }
1.21 www 3408: $mrole=$role;
3409: }
3410: my $command="encrypt:rolesput:$ENV{'user.domain'}:$ENV{'user.name'}:".
3411: "$udom:$uname:$url".'_'."$mrole=$role";
1.81 www 3412: if ($end) { $command.='_'.$end; }
1.21 www 3413: if ($start) {
3414: if ($end) {
1.81 www 3415: $command.='_'.$start;
1.21 www 3416: } else {
1.81 www 3417: $command.='_0_'.$start;
1.21 www 3418: }
3419: }
1.357 www 3420: # actually delete
3421: if ($deleteflag) {
1.373 www 3422: if ((&allowed('dro',$udom)) || (&allowed('dro',$url))) {
1.357 www 3423: # modify command to delete the role
3424: $command="encrypt:rolesdel:$ENV{'user.domain'}:$ENV{'user.name'}:".
3425: "$udom:$uname:$url".'_'."$mrole";
1.373 www 3426: &logthis("$ENV{'user.name'} at $ENV{'user.domain'} deletes $mrole in $url for $uname at $udom");
1.357 www 3427: # set start and finish to negative values for userrolelog
3428: $start=-1;
3429: $end=-1;
3430: }
3431: }
3432: # send command
1.349 www 3433: my $answer=&reply($command,&homeserver($uname,$udom));
1.357 www 3434: # log new user role if status is ok
1.349 www 3435: if ($answer eq 'ok') {
3436: &userrolelog($mrole,$uname,$udom,$url,$start,$end);
3437: }
3438: return $answer;
1.169 harris41 3439: }
3440:
3441: # -------------------------------------------------- Modify user authentication
1.197 www 3442: # Overrides without validation
3443:
1.169 harris41 3444: sub modifyuserauth {
3445: my ($udom,$uname,$umode,$upass)=@_;
3446: my $uhome=&homeserver($uname,$udom);
1.197 www 3447: unless (&allowed('mau',$udom)) { return 'refused'; }
3448: &logthis('Call to modify user authentication '.$udom.', '.$uname.', '.
1.272 matthew 3449: $umode.' by '.$ENV{'user.name'}.' at '.$ENV{'user.domain'}.
3450: ' in domain '.$ENV{'request.role.domain'});
1.169 harris41 3451: my $reply=&reply('encrypt:changeuserauth:'.$udom.':'.$uname.':'.$umode.':'.
3452: &escape($upass),$uhome);
1.197 www 3453: &log($ENV{'user.domain'},$ENV{'user.name'},$ENV{'user.home'},
3454: 'Authentication changed for '.$udom.', '.$uname.', '.$umode.
3455: '(Remote '.$ENV{'REMOTE_ADDR'}.'): '.$reply);
3456: &log($udom,,$uname,$uhome,
3457: 'Authentication changed by '.$ENV{'user.domain'}.', '.
3458: $ENV{'user.name'}.', '.$umode.
3459: '(Remote '.$ENV{'REMOTE_ADDR'}.'): '.$reply);
1.169 harris41 3460: unless ($reply eq 'ok') {
1.197 www 3461: &logthis('Authentication mode error: '.$reply);
1.169 harris41 3462: return 'error: '.$reply;
3463: }
1.170 harris41 3464: return 'ok';
1.80 www 3465: }
3466:
1.81 www 3467: # --------------------------------------------------------------- Modify a user
1.80 www 3468:
1.81 www 3469: sub modifyuser {
1.206 matthew 3470: my ($udom, $uname, $uid,
3471: $umode, $upass, $first,
3472: $middle, $last, $gene,
1.387 www 3473: $forceid, $desiredhome, $email)=@_;
1.198 www 3474: $udom=~s/\W//g;
3475: $uname=~s/\W//g;
1.81 www 3476: &logthis('Call to modify user '.$udom.', '.$uname.', '.$uid.', '.
1.80 www 3477: $umode.', '.$first.', '.$middle.', '.
1.206 matthew 3478: $last.', '.$gene.'(forceid: '.$forceid.')'.
3479: (defined($desiredhome) ? ' desiredhome = '.$desiredhome :
3480: ' desiredhome not specified').
1.272 matthew 3481: ' by '.$ENV{'user.name'}.' at '.$ENV{'user.domain'}.
3482: ' in domain '.$ENV{'request.role.domain'});
1.230 stredwic 3483: my $uhome=&homeserver($uname,$udom,'true');
1.80 www 3484: # ----------------------------------------------------------------- Create User
1.406 albertel 3485: if (($uhome eq 'no_host') &&
3486: (($umode && $upass) || ($umode eq 'localauth'))) {
1.80 www 3487: my $unhome='';
1.209 matthew 3488: if (defined($desiredhome) && $hostdom{$desiredhome} eq $udom) {
3489: $unhome = $desiredhome;
3490: } elsif($ENV{'course.'.$ENV{'request.course.id'}.'.domain'} eq $udom) {
1.80 www 3491: $unhome=$ENV{'course.'.$ENV{'request.course.id'}.'.home'};
1.209 matthew 3492: } else { # load balancing routine for determining $unhome
1.80 www 3493: my $tryserver;
1.81 www 3494: my $loadm=10000000;
1.80 www 3495: foreach $tryserver (keys %libserv) {
3496: if ($hostdom{$tryserver} eq $udom) {
3497: my $answer=reply('load',$tryserver);
3498: if (($answer=~/\d+/) && ($answer<$loadm)) {
3499: $loadm=$answer;
3500: $unhome=$tryserver;
3501: }
3502: }
3503: }
3504: }
3505: if (($unhome eq '') || ($unhome eq 'no_host')) {
1.206 matthew 3506: return 'error: unable to find a home server for '.$uname.
3507: ' in domain '.$udom;
1.80 www 3508: }
3509: my $reply=&reply('encrypt:makeuser:'.$udom.':'.$uname.':'.$umode.':'.
3510: &escape($upass),$unhome);
3511: unless ($reply eq 'ok') {
3512: return 'error: '.$reply;
3513: }
1.230 stredwic 3514: $uhome=&homeserver($uname,$udom,'true');
1.80 www 3515: if (($uhome eq '') || ($uhome eq 'no_host') || ($uhome ne $unhome)) {
1.386 matthew 3516: return 'error: unable verify users home machine.';
1.80 www 3517: }
1.209 matthew 3518: } # End of creation of new user
1.80 www 3519: # ---------------------------------------------------------------------- Add ID
3520: if ($uid) {
3521: $uid=~tr/A-Z/a-z/;
3522: my %uidhash=&idrget($udom,$uname);
1.196 www 3523: if (($uidhash{$uname}) && ($uidhash{$uname}!~/error\:/)
3524: && (!$forceid)) {
1.80 www 3525: unless ($uid eq $uidhash{$uname}) {
1.386 matthew 3526: return 'error: user id "'.$uid.'" does not match '.
3527: 'current user id "'.$uidhash{$uname}.'".';
1.80 www 3528: }
3529: } else {
3530: &idput($udom,($uname => $uid));
3531: }
3532: }
3533: # -------------------------------------------------------------- Add names, etc
1.313 matthew 3534: my @tmp=&get('environment',
1.134 albertel 3535: ['firstname','middlename','lastname','generation'],
3536: $udom,$uname);
1.313 matthew 3537: my %names;
3538: if ($tmp[0] =~ m/^error:.*/) {
3539: %names=();
3540: } else {
3541: %names = @tmp;
3542: }
1.388 www 3543: #
3544: # Make sure to not trash student environment if instructor does not bother
3545: # to supply name and email information
3546: #
3547: if ($first) { $names{'firstname'} = $first; }
1.385 matthew 3548: if (defined($middle)) { $names{'middlename'} = $middle; }
1.388 www 3549: if ($last) { $names{'lastname'} = $last; }
1.385 matthew 3550: if (defined($gene)) { $names{'generation'} = $gene; }
1.388 www 3551: if ($email) { $names{'notification'} = $email;
3552: $names{'critnotification'} = $email; }
1.387 www 3553:
1.134 albertel 3554: my $reply = &put('environment', \%names, $udom,$uname);
3555: if ($reply ne 'ok') { return 'error: '.$reply; }
1.81 www 3556: &logthis('Success modifying user '.$udom.', '.$uname.', '.$uid.', '.
1.80 www 3557: $umode.', '.$first.', '.$middle.', '.
3558: $last.', '.$gene.' by '.
3559: $ENV{'user.name'}.' at '.$ENV{'user.domain'});
1.134 albertel 3560: return 'ok';
1.80 www 3561: }
3562:
1.81 www 3563: # -------------------------------------------------------------- Modify student
1.80 www 3564:
1.81 www 3565: sub modifystudent {
3566: my ($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene,$usec,
1.515 raeburn 3567: $end,$start,$forceid,$desiredhome,$email,$type,$locktype,$cid)=@_;
1.455 albertel 3568: if (!$cid) {
3569: unless ($cid=$ENV{'request.course.id'}) {
3570: return 'not_in_class';
3571: }
1.80 www 3572: }
3573: # --------------------------------------------------------------- Make the user
1.81 www 3574: my $reply=&modifyuser
1.209 matthew 3575: ($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene,$forceid,
1.387 www 3576: $desiredhome,$email);
1.80 www 3577: unless ($reply eq 'ok') { return $reply; }
1.297 matthew 3578: # This will cause &modify_student_enrollment to get the uid from the
3579: # students environment
3580: $uid = undef if (!$forceid);
1.455 albertel 3581: $reply = &modify_student_enrollment($udom,$uname,$uid,$first,$middle,$last,
1.515 raeburn 3582: $gene,$usec,$end,$start,$type,$locktype,$cid);
1.297 matthew 3583: return $reply;
3584: }
3585:
3586: sub modify_student_enrollment {
1.515 raeburn 3587: my ($udom,$uname,$uid,$first,$middle,$last,$gene,$usec,$end,$start,$type,$locktype,$cid) = @_;
1.455 albertel 3588: my ($cdom,$cnum,$chome);
3589: if (!$cid) {
3590: unless ($cid=$ENV{'request.course.id'}) {
3591: return 'not_in_class';
3592: }
3593: $cdom=$ENV{'course.'.$cid.'.domain'};
3594: $cnum=$ENV{'course.'.$cid.'.num'};
3595: } else {
3596: ($cdom,$cnum)=split(/_/,$cid);
3597: }
3598: $chome=$ENV{'course.'.$cid.'.home'};
3599: if (!$chome) {
1.457 raeburn 3600: $chome=&homeserver($cnum,$cdom);
1.297 matthew 3601: }
1.455 albertel 3602: if (!$chome) { return 'unknown_course'; }
1.297 matthew 3603: # Make sure the user exists
1.81 www 3604: my $uhome=&homeserver($uname,$udom);
3605: if (($uhome eq '') || ($uhome eq 'no_host')) {
3606: return 'error: no such user';
3607: }
1.297 matthew 3608: # Get student data if we were not given enough information
3609: if (!defined($first) || $first eq '' ||
3610: !defined($last) || $last eq '' ||
3611: !defined($uid) || $uid eq '' ||
3612: !defined($middle) || $middle eq '' ||
3613: !defined($gene) || $gene eq '') {
1.294 matthew 3614: # They did not supply us with enough data to enroll the student, so
3615: # we need to pick up more information.
1.297 matthew 3616: my %tmp = &get('environment',
1.294 matthew 3617: ['firstname','middlename','lastname', 'generation','id']
1.297 matthew 3618: ,$udom,$uname);
3619:
1.455 albertel 3620: #foreach (keys(%tmp)) {
3621: # &logthis("key $_ = ".$tmp{$_});
3622: #}
1.294 matthew 3623: $first = $tmp{'firstname'} if (!defined($first) || $first eq '');
3624: $middle = $tmp{'middlename'} if (!defined($middle) || $middle eq '');
3625: $last = $tmp{'lastname'} if (!defined($last) || $last eq '');
1.297 matthew 3626: $gene = $tmp{'generation'} if (!defined($gene) || $gene eq '');
1.294 matthew 3627: $uid = $tmp{'id'} if (!defined($uid) || $uid eq '');
3628: }
3629: my $fullname = &Apache::loncoursedata::ProcessFullName($last,$gene,
3630: $first,$middle);
1.487 albertel 3631: my $reply=cput('classlist',
3632: {"$uname:$udom" =>
1.515 raeburn 3633: join(':',$end,$start,$uid,$usec,$fullname,$type,$locktype) },
1.487 albertel 3634: $cdom,$cnum);
1.81 www 3635: unless (($reply eq 'ok') || ($reply eq 'delayed')) {
3636: return 'error: '.$reply;
3637: }
1.297 matthew 3638: # Add student role to user
1.83 www 3639: my $uurl='/'.$cid;
1.81 www 3640: $uurl=~s/\_/\//g;
3641: if ($usec) {
3642: $uurl.='/'.$usec;
3643: }
3644: return &assignrole($udom,$uname,$uurl,'st',$end,$start);
1.21 www 3645: }
3646:
1.84 www 3647: # ------------------------------------------------- Write to course preferences
3648:
3649: sub writecoursepref {
3650: my ($courseid,%prefs)=@_;
3651: $courseid=~s/^\///;
3652: $courseid=~s/\_/\//g;
3653: my ($cdomain,$cnum)=split(/\//,$courseid);
3654: my $chome=homeserver($cnum,$cdomain);
3655: if (($chome eq '') || ($chome eq 'no_host')) {
3656: return 'error: no such course';
3657: }
3658: my $cstring='';
1.191 harris41 3659: foreach (keys %prefs) {
1.84 www 3660: $cstring.=escape($_).'='.escape($prefs{$_}).'&';
1.191 harris41 3661: }
1.84 www 3662: $cstring=~s/\&$//;
3663: return reply('put:'.$cdomain.':'.$cnum.':environment:'.$cstring,$chome);
3664: }
3665:
3666: # ---------------------------------------------------------- Make/modify course
3667:
3668: sub createcourse {
1.516 raeburn 3669: my ($udom,$description,$url,$course_server,$nonstandard,$inst_code)=@_;
1.84 www 3670: $url=&declutter($url);
3671: my $cid='';
1.264 matthew 3672: unless (&allowed('ccc',$udom)) {
1.84 www 3673: return 'refused';
3674: }
3675: # ------------------------------------------------------------------- Create ID
3676: my $uname=substr($$.time,0,5).unpack("H8",pack("I32",time)).
3677: unpack("H2",pack("I32",int(rand(255)))).$perlvar{'lonHostID'};
3678: # ----------------------------------------------- Make sure that does not exist
1.230 stredwic 3679: my $uhome=&homeserver($uname,$udom,'true');
1.84 www 3680: unless (($uhome eq '') || ($uhome eq 'no_host')) {
3681: $uname=substr($$.time,0,5).unpack("H8",pack("I32",time)).
3682: unpack("H2",pack("I32",int(rand(255)))).$perlvar{'lonHostID'};
1.230 stredwic 3683: $uhome=&homeserver($uname,$udom,'true');
1.84 www 3684: unless (($uhome eq '') || ($uhome eq 'no_host')) {
3685: return 'error: unable to generate unique course-ID';
3686: }
3687: }
1.264 matthew 3688: # ------------------------------------------------ Check supplied server name
3689: $course_server = $ENV{'user.homeserver'} if (! defined($course_server));
3690: if (! exists($libserv{$course_server})) {
3691: return 'error:bad server name '.$course_server;
3692: }
1.84 www 3693: # ------------------------------------------------------------- Make the course
3694: my $reply=&reply('encrypt:makeuser:'.$udom.':'.$uname.':none::',
1.264 matthew 3695: $course_server);
1.84 www 3696: unless ($reply eq 'ok') { return 'error: '.$reply; }
1.230 stredwic 3697: $uhome=&homeserver($uname,$udom,'true');
1.84 www 3698: if (($uhome eq '') || ($uhome eq 'no_host')) {
3699: return 'error: no such course';
3700: }
1.271 www 3701: # ----------------------------------------------------------------- Course made
1.516 raeburn 3702: # log existence
3703: &courseidput($udom,&escape($udom.'_'.$uname).'='.&escape($description).
3704: '='.&escape($inst_code),$uhome);
1.358 www 3705: &flushcourselogs();
3706: # set toplevel url
1.271 www 3707: my $topurl=$url;
3708: unless ($nonstandard) {
3709: # ------------------------------------------ For standard courses, make top url
3710: my $mapurl=&clutter($url);
1.278 www 3711: if ($mapurl eq '/res/') { $mapurl=''; }
1.271 www 3712: $ENV{'form.initmap'}=(<<ENDINITMAP);
3713: <map>
3714: <resource id="1" type="start"></resource>
3715: <resource id="2" src="$mapurl"></resource>
3716: <resource id="3" type="finish"></resource>
3717: <link index="1" from="1" to="2"></link>
3718: <link index="2" from="2" to="3"></link>
3719: </map>
3720: ENDINITMAP
3721: $topurl=&declutter(
3722: &finishuserfileupload($uname,$udom,$uhome,'initmap','default.sequence')
3723: );
3724: }
3725: # ----------------------------------------------------------- Write preferences
1.84 www 3726: &writecoursepref($udom.'_'.$uname,
3727: ('description' => $description,
1.271 www 3728: 'url' => $topurl));
1.84 www 3729: return '/'.$udom.'/'.$uname;
3730: }
3731:
1.21 www 3732: # ---------------------------------------------------------- Assign Custom Role
3733:
3734: sub assigncustomrole {
1.357 www 3735: my ($udom,$uname,$url,$rdom,$rnam,$rolename,$end,$start,$deleteflag)=@_;
1.21 www 3736: return &assignrole($udom,$uname,$url,'cr/'.$rdom.'/'.$rnam.'/'.$rolename,
1.357 www 3737: $end,$start,$deleteflag);
1.21 www 3738: }
3739:
3740: # ----------------------------------------------------------------- Revoke Role
3741:
3742: sub revokerole {
1.357 www 3743: my ($udom,$uname,$url,$role,$deleteflag)=@_;
1.21 www 3744: my $now=time;
1.357 www 3745: return &assignrole($udom,$uname,$url,$role,$now,$deleteflag);
1.21 www 3746: }
3747:
3748: # ---------------------------------------------------------- Revoke Custom Role
3749:
3750: sub revokecustomrole {
1.357 www 3751: my ($udom,$uname,$url,$rdom,$rnam,$rolename,$deleteflag)=@_;
1.21 www 3752: my $now=time;
1.357 www 3753: return &assigncustomrole($udom,$uname,$url,$rdom,$rnam,$rolename,$now,
3754: $deleteflag);
1.17 www 3755: }
3756:
1.533 banghart 3757: # ------------------------------------------------------------ Disk usage
1.535 albertel 3758: sub diskusage {
1.533 banghart 3759: my ($udom,$uname,$directoryRoot)=@_;
3760: $directoryRoot =~ s/\/$//;
1.535 albertel 3761: my $listing=&reply('du:'.$directoryRoot,homeserver($uname,$udom));
1.514 albertel 3762: return $listing;
1.512 banghart 3763: }
3764:
3765:
1.17 www 3766: # ------------------------------------------------------------ Directory lister
3767:
3768: sub dirlist {
1.253 stredwic 3769: my ($uri,$userdomain,$username,$alternateDirectoryRoot)=@_;
3770:
1.18 www 3771: $uri=~s/^\///;
3772: $uri=~s/\/$//;
1.253 stredwic 3773: my ($udom, $uname);
3774: (undef,$udom,$uname)=split(/\//,$uri);
3775: if(defined($userdomain)) {
3776: $udom = $userdomain;
3777: }
3778: if(defined($username)) {
3779: $uname = $username;
3780: }
3781:
3782: my $dirRoot = $perlvar{'lonDocRoot'};
3783: if(defined($alternateDirectoryRoot)) {
3784: $dirRoot = $alternateDirectoryRoot;
3785: $dirRoot =~ s/\/$//;
3786: }
3787:
3788: if($udom) {
3789: if($uname) {
3790: my $listing=reply('ls:'.$dirRoot.'/'.$uri,
3791: homeserver($uname,$udom));
3792: return split(/:/,$listing);
3793: } elsif(!defined($alternateDirectoryRoot)) {
3794: my $tryserver;
3795: my %allusers=();
3796: foreach $tryserver (keys %libserv) {
3797: if($hostdom{$tryserver} eq $udom) {
3798: my $listing=reply('ls:'.$perlvar{'lonDocRoot'}.'/res/'.
3799: $udom, $tryserver);
3800: if (($listing ne 'no_such_dir') && ($listing ne 'empty')
3801: && ($listing ne 'con_lost')) {
3802: foreach (split(/:/,$listing)) {
3803: my ($entry,@stat)=split(/&/,$_);
3804: $allusers{$entry}=1;
3805: }
3806: }
1.191 harris41 3807: }
1.253 stredwic 3808: }
3809: my $alluserstr='';
3810: foreach (sort keys %allusers) {
3811: $alluserstr.=$_.'&user:';
3812: }
3813: $alluserstr=~s/:$//;
3814: return split(/:/,$alluserstr);
3815: } else {
3816: my @emptyResults = ();
3817: push(@emptyResults, 'missing user name');
3818: return split(':',@emptyResults);
3819: }
3820: } elsif(!defined($alternateDirectoryRoot)) {
3821: my $tryserver;
3822: my %alldom=();
3823: foreach $tryserver (keys %libserv) {
3824: $alldom{$hostdom{$tryserver}}=1;
3825: }
3826: my $alldomstr='';
3827: foreach (sort keys %alldom) {
1.397 albertel 3828: $alldomstr.=$perlvar{'lonDocRoot'}.'/res/'.$_.'/&domain:';
1.253 stredwic 3829: }
3830: $alldomstr=~s/:$//;
3831: return split(/:/,$alldomstr);
3832: } else {
3833: my @emptyResults = ();
3834: push(@emptyResults, 'missing domain');
3835: return split(':',@emptyResults);
1.275 stredwic 3836: }
3837: }
3838:
3839: # --------------------------------------------- GetFileTimestamp
3840: # This function utilizes dirlist and returns the date stamp for
3841: # when it was last modified. It will also return an error of -1
3842: # if an error occurs
3843:
1.410 matthew 3844: ##
3845: ## FIXME: This subroutine assumes its caller knows something about the
3846: ## directory structure of the home server for the student ($root).
3847: ## Not a good assumption to make. Since this is for looking up files
3848: ## in user directories, the full path should be constructed by lond, not
3849: ## whatever machine we request data from.
3850: ##
1.275 stredwic 3851: sub GetFileTimestamp {
3852: my ($studentDomain,$studentName,$filename,$root)=@_;
3853: $studentDomain=~s/\W//g;
3854: $studentName=~s/\W//g;
3855: my $subdir=$studentName.'__';
3856: $subdir =~ s/(.)(.)(.).*/$1\/$2\/$3/;
3857: my $proname="$studentDomain/$subdir/$studentName";
3858: $proname .= '/'.$filename;
1.375 matthew 3859: my ($fileStat) = &Apache::lonnet::dirlist($proname, $studentDomain,
3860: $studentName, $root);
1.275 stredwic 3861: my @stats = split('&', $fileStat);
3862: if($stats[0] ne 'empty' && $stats[0] ne 'no_such_dir') {
1.375 matthew 3863: # @stats contains first the filename, then the stat output
3864: return $stats[10]; # so this is 10 instead of 9.
1.275 stredwic 3865: } else {
3866: return -1;
1.253 stredwic 3867: }
1.26 www 3868: }
3869:
3870: # -------------------------------------------------------- Value of a Condition
3871:
1.40 www 3872: sub directcondval {
3873: my $number=shift;
3874: if ($ENV{'user.state.'.$ENV{'request.course.id'}}) {
3875: return substr($ENV{'user.state.'.$ENV{'request.course.id'}},$number,1);
3876: } else {
3877: return 2;
3878: }
3879: }
3880:
1.26 www 3881: sub condval {
3882: my $condidx=shift;
3883: my $result=0;
1.54 www 3884: my $allpathcond='';
1.191 harris41 3885: foreach (split(/\|/,$condidx)) {
1.54 www 3886: if (defined($ENV{'acc.cond.'.$ENV{'request.course.id'}.'.'.$_})) {
3887: $allpathcond.=
3888: '('.$ENV{'acc.cond.'.$ENV{'request.course.id'}.'.'.$_}.')|';
3889: }
1.191 harris41 3890: }
1.54 www 3891: $allpathcond=~s/\|$//;
1.33 www 3892: if ($ENV{'request.course.id'}) {
1.54 www 3893: if ($allpathcond) {
1.26 www 3894: my $operand='|';
3895: my @stack;
1.191 harris41 3896: foreach ($allpathcond=~/(\d+|\(|\)|\&|\|)/g) {
1.26 www 3897: if ($_ eq '(') {
3898: push @stack,($operand,$result)
3899: } elsif ($_ eq ')') {
3900: my $before=pop @stack;
3901: if (pop @stack eq '&') {
3902: $result=$result>$before?$before:$result;
3903: } else {
3904: $result=$result>$before?$result:$before;
3905: }
3906: } elsif (($_ eq '&') || ($_ eq '|')) {
3907: $operand=$_;
3908: } else {
1.40 www 3909: my $new=directcondval($_);
1.26 www 3910: if ($operand eq '&') {
3911: $result=$result>$new?$new:$result;
3912: } else {
3913: $result=$result>$new?$result:$new;
1.191 harris41 3914: }
1.26 www 3915: }
1.191 harris41 3916: }
1.26 www 3917: }
3918: }
3919: return $result;
1.421 albertel 3920: }
3921:
3922: # ---------------------------------------------------- Devalidate courseresdata
3923:
3924: sub devalidatecourseresdata {
3925: my ($coursenum,$coursedomain)=@_;
3926: my $hashid=$coursenum.':'.$coursedomain;
1.428 albertel 3927: &devalidate_cache(\%courseresdatacache,$hashid,'courseres');
1.28 www 3928: }
3929:
1.200 www 3930: # --------------------------------------------------- Course Resourcedata Query
3931:
3932: sub courseresdata {
3933: my ($coursenum,$coursedomain,@which)=@_;
3934: my $coursehom=&homeserver($coursenum,$coursedomain);
3935: my $hashid=$coursenum.':'.$coursedomain;
1.425 albertel 3936: my ($result,$cached)=&is_cached(\%courseresdatacache,$hashid,'courseres');
1.417 albertel 3937: unless (defined($cached)) {
1.251 albertel 3938: my %dumpreply=&dump('resourcedata',$coursedomain,$coursenum);
1.417 albertel 3939: $result=\%dumpreply;
1.251 albertel 3940: my ($tmp) = keys(%dumpreply);
3941: if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
1.425 albertel 3942: &do_cache(\%courseresdatacache,$hashid,$result,'courseres');
1.306 albertel 3943: } elsif ($tmp =~ /^(con_lost|no_such_host)/) {
3944: return $tmp;
1.416 albertel 3945: } elsif ($tmp =~ /^(error)/) {
1.417 albertel 3946: $result=undef;
1.425 albertel 3947: &do_cache(\%courseresdatacache,$hashid,$result,'courseres');
1.250 albertel 3948: }
3949: }
1.251 albertel 3950: foreach my $item (@which) {
1.417 albertel 3951: if (defined($result->{$item})) {
3952: return $result->{$item};
1.251 albertel 3953: }
1.250 albertel 3954: }
1.291 albertel 3955: return undef;
1.200 www 3956: }
3957:
1.379 matthew 3958: #
3959: # EXT resource caching routines
3960: #
3961:
3962: sub clear_EXT_cache_status {
1.383 albertel 3963: &delenv('cache.EXT.');
1.379 matthew 3964: }
3965:
3966: sub EXT_cache_status {
3967: my ($target_domain,$target_user) = @_;
1.383 albertel 3968: my $cachename = 'cache.EXT.'.$target_user.'.'.$target_domain;
1.389 www 3969: if (exists($ENV{$cachename}) && ($ENV{$cachename}+600) > time) {
1.379 matthew 3970: # We know already the user has no data
3971: return 1;
3972: } else {
3973: return 0;
3974: }
3975: }
3976:
3977: sub EXT_cache_set {
3978: my ($target_domain,$target_user) = @_;
1.383 albertel 3979: my $cachename = 'cache.EXT.'.$target_user.'.'.$target_domain;
1.379 matthew 3980: &appenv($cachename => time);
3981: }
3982:
1.28 www 3983: # --------------------------------------------------------- Value of a Variable
1.58 www 3984: sub EXT {
1.395 albertel 3985: my ($varname,$symbparm,$udom,$uname,$usection,$recurse)=@_;
1.218 albertel 3986:
1.68 www 3987: unless ($varname) { return ''; }
1.218 albertel 3988: #get real user name/domain, courseid and symb
3989: my $courseid;
1.359 albertel 3990: my $publicuser;
1.427 www 3991: if ($symbparm) {
3992: $symbparm=&get_symb_from_alias($symbparm);
3993: }
1.218 albertel 3994: if (!($uname && $udom)) {
1.360 albertel 3995: (my $cursymb,$courseid,$udom,$uname,$publicuser)=
1.378 matthew 3996: &Apache::lonxml::whichuser($symbparm);
1.218 albertel 3997: if (!$symbparm) { $symbparm=$cursymb; }
3998: } else {
3999: $courseid=$ENV{'request.course.id'};
4000: }
1.48 www 4001: my ($realm,$space,$qualifier,@therest)=split(/\./,$varname);
4002: my $rest;
1.320 albertel 4003: if (defined($therest[0])) {
1.48 www 4004: $rest=join('.',@therest);
4005: } else {
4006: $rest='';
4007: }
1.320 albertel 4008:
1.57 www 4009: my $qualifierrest=$qualifier;
4010: if ($rest) { $qualifierrest.='.'.$rest; }
4011: my $spacequalifierrest=$space;
4012: if ($qualifierrest) { $spacequalifierrest.='.'.$qualifierrest; }
1.28 www 4013: if ($realm eq 'user') {
1.48 www 4014: # --------------------------------------------------------------- user.resource
4015: if ($space eq 'resource') {
1.335 albertel 4016: if (defined($Apache::lonhomework::parsing_a_problem)) {
4017: return $Apache::lonhomework::history{$qualifierrest};
4018: } else {
1.359 albertel 4019: my %restored;
4020: if ($publicuser || $ENV{'request.state'} eq 'construct') {
4021: %restored=&tmprestore($symbparm,$courseid,$udom,$uname);
4022: } else {
4023: %restored=&restore($symbparm,$courseid,$udom,$uname);
4024: }
1.335 albertel 4025: return $restored{$qualifierrest};
4026: }
1.48 www 4027: # ----------------------------------------------------------------- user.access
4028: } elsif ($space eq 'access') {
1.218 albertel 4029: # FIXME - not supporting calls for a specific user
1.48 www 4030: return &allowed($qualifier,$rest);
4031: # ------------------------------------------ user.preferences, user.environment
4032: } elsif (($space eq 'preferences') || ($space eq 'environment')) {
1.218 albertel 4033: if (($uname eq $ENV{'user.name'}) &&
4034: ($udom eq $ENV{'user.domain'})) {
4035: return $ENV{join('.',('environment',$qualifierrest))};
4036: } else {
1.359 albertel 4037: my %returnhash;
4038: if (!$publicuser) {
4039: %returnhash=&userenvironment($udom,$uname,
4040: $qualifierrest);
4041: }
1.218 albertel 4042: return $returnhash{$qualifierrest};
4043: }
1.48 www 4044: # ----------------------------------------------------------------- user.course
4045: } elsif ($space eq 'course') {
1.218 albertel 4046: # FIXME - not supporting calls for a specific user
1.48 www 4047: return $ENV{join('.',('request.course',$qualifier))};
4048: # ------------------------------------------------------------------- user.role
4049: } elsif ($space eq 'role') {
1.218 albertel 4050: # FIXME - not supporting calls for a specific user
1.48 www 4051: my ($role,$where)=split(/\./,$ENV{'request.role'});
4052: if ($qualifier eq 'value') {
4053: return $role;
4054: } elsif ($qualifier eq 'extent') {
4055: return $where;
4056: }
4057: # ----------------------------------------------------------------- user.domain
4058: } elsif ($space eq 'domain') {
1.218 albertel 4059: return $udom;
1.48 www 4060: # ------------------------------------------------------------------- user.name
4061: } elsif ($space eq 'name') {
1.218 albertel 4062: return $uname;
1.48 www 4063: # ---------------------------------------------------- Any other user namespace
1.29 www 4064: } else {
1.359 albertel 4065: my %reply;
4066: if (!$publicuser) {
4067: %reply=&get($space,[$qualifierrest],$udom,$uname);
4068: }
4069: return $reply{$qualifierrest};
1.48 www 4070: }
1.236 www 4071: } elsif ($realm eq 'query') {
4072: # ---------------------------------------------- pull stuff out of query string
1.384 albertel 4073: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
4074: [$spacequalifierrest]);
1.376 albertel 4075: return $ENV{'form.'.$spacequalifierrest};
1.236 www 4076: } elsif ($realm eq 'request') {
1.48 www 4077: # ------------------------------------------------------------- request.browser
4078: if ($space eq 'browser') {
1.430 www 4079: if ($qualifier eq 'textremote') {
4080: if (&mt('textual_remote_display') eq 'on') {
4081: return 1;
4082: } else {
4083: return 0;
4084: }
4085: } else {
4086: return $ENV{'browser.'.$qualifier};
4087: }
1.57 www 4088: # ------------------------------------------------------------ request.filename
4089: } else {
4090: return $ENV{'request.'.$spacequalifierrest};
1.29 www 4091: }
1.28 www 4092: } elsif ($realm eq 'course') {
1.48 www 4093: # ---------------------------------------------------------- course.description
1.218 albertel 4094: return $ENV{'course.'.$courseid.'.'.$spacequalifierrest};
1.57 www 4095: } elsif ($realm eq 'resource') {
1.165 www 4096:
1.395 albertel 4097: my $section;
1.359 albertel 4098: if (defined($courseid) && $courseid eq $ENV{'request.course.id'}) {
1.539 albertel 4099: if (!$symbparm) { $symbparm=&symbread(); }
4100: }
4101: if ($symbparm && defined($courseid) &&
4102: $courseid eq $ENV{'request.course.id'}) {
1.165 www 4103:
1.218 albertel 4104: #print '<br>'.$space.' - '.$qualifier.' - '.$spacequalifierrest;
1.165 www 4105:
1.60 www 4106: # ----------------------------------------------------- Cascading lookup scheme
1.218 albertel 4107: my $symbp=$symbparm;
1.409 www 4108: my $mapp=(&decode_symb($symbp))[0];
1.218 albertel 4109:
4110: my $symbparm=$symbp.'.'.$spacequalifierrest;
4111: my $mapparm=$mapp.'___(all).'.$spacequalifierrest;
4112:
4113: if (($ENV{'user.name'} eq $uname) &&
4114: ($ENV{'user.domain'} eq $udom)) {
1.255 albertel 4115: $section=$ENV{'request.course.sec'};
1.218 albertel 4116: } else {
1.539 albertel 4117: if (! defined($usection)) {
1.551 albertel 4118: $section=&getsection($udom,$uname,$courseid);
1.539 albertel 4119: } else {
4120: $section = $usection;
4121: }
1.218 albertel 4122: }
4123:
4124: my $seclevel=$courseid.'.['.$section.'].'.$spacequalifierrest;
4125: my $seclevelr=$courseid.'.['.$section.'].'.$symbparm;
4126: my $seclevelm=$courseid.'.['.$section.'].'.$mapparm;
4127:
4128: my $courselevel=$courseid.'.'.$spacequalifierrest;
4129: my $courselevelr=$courseid.'.'.$symbparm;
4130: my $courselevelm=$courseid.'.'.$mapparm;
1.69 www 4131:
1.60 www 4132: # ----------------------------------------------------------- first, check user
1.379 matthew 4133: #most student don\'t have any data set, check if there is some data
4134: if (! &EXT_cache_status($udom,$uname)) {
1.420 albertel 4135: my $hashid="$udom:$uname";
1.425 albertel 4136: my ($result,$cached)=&is_cached(\%userresdatacache,$hashid,
4137: 'userres');
1.454 albertel 4138: if (!defined($cached)) {
4139: my %resourcedata=&dump('resourcedata',$udom,$uname);
1.420 albertel 4140: $result=\%resourcedata;
1.425 albertel 4141: &do_cache(\%userresdatacache,$hashid,$result,'userres');
1.420 albertel 4142: }
4143: my ($tmp)=keys(%$result);
1.308 albertel 4144: if (($tmp!~/^error\:/) && ($tmp!~/^con_lost/)) {
1.420 albertel 4145: if ($$result{$courselevelr}) {
4146: return $$result{$courselevelr}; }
4147: if ($$result{$courselevelm}) {
4148: return $$result{$courselevelm}; }
4149: if ($$result{$courselevel}) {
4150: return $$result{$courselevel}; }
1.308 albertel 4151: } else {
1.459 albertel 4152: #error 2 occurs when the .db doesn't exist
4153: if ($tmp!~/error: 2 /) {
1.308 albertel 4154: &logthis("<font color=blue>WARNING:".
4155: " Trying to get resource data for ".
4156: $uname." at ".$udom.": ".
4157: $tmp."</font>");
1.459 albertel 4158: } elsif ($tmp=~/error: 2 /) {
1.539 albertel 4159: &EXT_cache_set($udom,$uname);
1.308 albertel 4160: } elsif ($tmp =~ /^(con_lost|no_such_host)/) {
4161: return $tmp;
4162: }
1.218 albertel 4163: }
4164: }
1.95 www 4165:
1.60 www 4166: # -------------------------------------------------------- second, check course
1.96 www 4167:
1.218 albertel 4168: my $coursereply=&courseresdata($ENV{'course.'.$courseid.'.num'},
1.539 albertel 4169: $ENV{'course.'.$courseid.'.domain'},
4170: ($seclevelr,$seclevelm,$seclevel,
4171: $courselevelr,$courselevelm,
4172: $courselevel));
1.287 albertel 4173: if (defined($coursereply)) { return $coursereply; }
1.200 www 4174:
1.60 www 4175: # ------------------------------------------------------ third, check map parms
1.218 albertel 4176: my %parmhash=();
4177: my $thisparm='';
4178: if (tie(%parmhash,'GDBM_File',
4179: $ENV{'request.course.fn'}.'_parms.db',
1.256 albertel 4180: &GDBM_READER(),0640)) {
1.218 albertel 4181: $thisparm=$parmhash{$symbparm};
4182: untie(%parmhash);
4183: }
4184: if ($thisparm) { return $thisparm; }
4185: }
1.60 www 4186: # --------------------------------------------- last, look in resource metadata
1.71 www 4187:
1.218 albertel 4188: $spacequalifierrest=~s/\./\_/;
1.282 albertel 4189: my $filename;
4190: if (!$symbparm) { $symbparm=&symbread(); }
4191: if ($symbparm) {
1.409 www 4192: $filename=(&decode_symb($symbparm))[2];
1.282 albertel 4193: } else {
4194: $filename=$ENV{'request.filename'};
4195: }
4196: my $metadata=&metadata($filename,$spacequalifierrest);
1.288 albertel 4197: if (defined($metadata)) { return $metadata; }
1.282 albertel 4198: $metadata=&metadata($filename,'parameter_'.$spacequalifierrest);
1.288 albertel 4199: if (defined($metadata)) { return $metadata; }
1.142 www 4200:
1.145 www 4201: # ------------------------------------------------------------------ Cascade up
1.218 albertel 4202: unless ($space eq '0') {
1.336 albertel 4203: my @parts=split(/_/,$space);
4204: my $id=pop(@parts);
4205: my $part=join('_',@parts);
4206: if ($part eq '') { $part='0'; }
4207: my $partgeneral=&EXT('resource.'.$part.'.'.$qualifierrest,
1.395 albertel 4208: $symbparm,$udom,$uname,$section,1);
1.337 albertel 4209: if (defined($partgeneral)) { return $partgeneral; }
1.218 albertel 4210: }
1.395 albertel 4211: if ($recurse) { return undef; }
4212: my $pack_def=&packages_tab_default($filename,$varname);
4213: if (defined($pack_def)) { return $pack_def; }
1.71 www 4214:
1.48 www 4215: # ---------------------------------------------------- Any other user namespace
4216: } elsif ($realm eq 'environment') {
4217: # ----------------------------------------------------------------- environment
1.219 albertel 4218: if (($uname eq $ENV{'user.name'})&&($udom eq $ENV{'user.domain'})) {
4219: return $ENV{'environment.'.$spacequalifierrest};
4220: } else {
4221: my %returnhash=&userenvironment($udom,$uname,
4222: $spacequalifierrest);
4223: return $returnhash{$spacequalifierrest};
4224: }
1.28 www 4225: } elsif ($realm eq 'system') {
1.48 www 4226: # ----------------------------------------------------------------- system.time
4227: if ($space eq 'time') {
4228: return time;
4229: }
1.28 www 4230: }
1.48 www 4231: return '';
1.61 www 4232: }
4233:
1.395 albertel 4234: sub packages_tab_default {
4235: my ($uri,$varname)=@_;
4236: my (undef,$part,$name)=split(/\./,$varname);
4237: my $packages=&metadata($uri,'packages');
4238: foreach my $package (split(/,/,$packages)) {
4239: my ($pack_type,$pack_part)=split(/_/,$package,2);
1.468 albertel 4240: if (defined($packagetab{"$pack_type&$name&default"})) {
4241: return $packagetab{"$pack_type&$name&default"};
4242: }
4243: if (defined($packagetab{$pack_type."_".$pack_part."&$name&default"})) {
4244: return $packagetab{$pack_type."_".$pack_part."&$name&default"};
1.395 albertel 4245: }
4246: }
4247: return undef;
4248: }
4249:
1.334 albertel 4250: sub add_prefix_and_part {
4251: my ($prefix,$part)=@_;
4252: my $keyroot;
4253: if (defined($prefix) && $prefix !~ /^__/) {
4254: # prefix that has a part already
4255: $keyroot=$prefix;
4256: } elsif (defined($prefix)) {
4257: # prefix that is missing a part
4258: if (defined($part)) { $keyroot='_'.$part.substr($prefix,1); }
4259: } else {
4260: # no prefix at all
4261: if (defined($part)) { $keyroot='_'.$part; }
4262: }
4263: return $keyroot;
4264: }
4265:
1.71 www 4266: # ---------------------------------------------------------------- Get metadata
4267:
4268: sub metadata {
1.176 www 4269: my ($uri,$what,$liburi,$prefix,$depthcount)=@_;
1.71 www 4270: $uri=&declutter($uri);
1.288 albertel 4271: # if it is a non metadata possible uri return quickly
1.529 albertel 4272: if (($uri eq '') ||
4273: (($uri =~ m|^/*adm/|) &&
4274: ($uri !~ m|^adm/includes|) && ($uri !~ m|/bulletinboard$|)) ||
1.423 albertel 4275: ($uri =~ m|/$|) || ($uri =~ m|/.meta$|) || ($uri =~ /^~/) ||
1.489 albertel 4276: ($uri =~ m|home/[^/]+/public_html/|)) {
1.468 albertel 4277: return undef;
1.288 albertel 4278: }
1.73 www 4279: my $filename=$uri;
4280: $uri=~s/\.meta$//;
1.172 www 4281: #
4282: # Is the metadata already cached?
1.177 www 4283: # Look at timestamp of caching
1.172 www 4284: # Everything is cached by the main uri, libraries are never directly cached
4285: #
1.428 albertel 4286: if (!defined($liburi)) {
4287: my ($result,$cached)=&is_cached(\%metacache,$uri,'meta');
4288: if (defined($cached)) { return $result->{':'.$what}; }
4289: }
4290: {
1.172 www 4291: #
4292: # Is this a recursive call for a library?
4293: #
1.453 albertel 4294: if (! exists($metacache{$uri})) {
4295: $metacache{$uri}={};
4296: }
1.171 www 4297: if ($liburi) {
4298: $liburi=&declutter($liburi);
4299: $filename=$liburi;
1.401 bowersj2 4300: } else {
1.428 albertel 4301: &devalidate_cache(\%metacache,$uri,'meta');
1.401 bowersj2 4302: }
1.140 www 4303: my %metathesekeys=();
1.73 www 4304: unless ($filename=~/\.meta$/) { $filename.='.meta'; }
1.489 albertel 4305: my $metastring;
4306: if ($uri !~ m|^uploaded/|) {
1.543 albertel 4307: my $file=&filelocation('',&clutter($filename));
4308: push(@{$metacache{$uri.'.file'}},$file);
4309: $metastring=&getfile($file);
1.489 albertel 4310: }
1.208 albertel 4311: my $parser=HTML::LCParser->new(\$metastring);
1.71 www 4312: my $token;
1.140 www 4313: undef %metathesekeys;
1.71 www 4314: while ($token=$parser->get_token) {
1.339 albertel 4315: if ($token->[0] eq 'S') {
4316: if (defined($token->[2]->{'package'})) {
1.172 www 4317: #
4318: # This is a package - get package info
4319: #
1.339 albertel 4320: my $package=$token->[2]->{'package'};
4321: my $keyroot=&add_prefix_and_part($prefix,$token->[2]->{'part'});
4322: if (defined($token->[2]->{'id'})) {
4323: $keyroot.='_'.$token->[2]->{'id'};
4324: }
1.453 albertel 4325: if ($metacache{$uri}->{':packages'}) {
4326: $metacache{$uri}->{':packages'}.=','.$package.$keyroot;
1.339 albertel 4327: } else {
1.453 albertel 4328: $metacache{$uri}->{':packages'}=$package.$keyroot;
1.339 albertel 4329: }
4330: foreach (keys %packagetab) {
1.432 albertel 4331: my $part=$keyroot;
4332: $part=~s/^\_//;
4333: if ($_=~/^\Q$package\E\&/ ||
4334: $_=~/^\Q$package\E_0\&/) {
1.339 albertel 4335: my ($pack,$name,$subp)=split(/\&/,$_);
1.395 albertel 4336: # ignore package.tab specified default values
4337: # here &package_tab_default() will fetch those
4338: if ($subp eq 'default') { next; }
1.339 albertel 4339: my $value=$packagetab{$_};
1.432 albertel 4340: my $unikey;
4341: if ($pack =~ /_0$/) {
4342: $unikey='parameter_0_'.$name;
4343: $part=0;
4344: } else {
4345: $unikey='parameter'.$keyroot.'_'.$name;
4346: }
1.339 albertel 4347: if ($subp eq 'display') {
4348: $value.=' [Part: '.$part.']';
4349: }
1.453 albertel 4350: $metacache{$uri}->{':'.$unikey.'.part'}=$part;
1.395 albertel 4351: $metathesekeys{$unikey}=1;
1.453 albertel 4352: unless (defined($metacache{$uri}->{':'.$unikey.'.'.$subp})) {
4353: $metacache{$uri}->{':'.$unikey.'.'.$subp}=$value;
1.339 albertel 4354: }
1.453 albertel 4355: if (defined($metacache{$uri}->{':'.$unikey.'.default'})) {
4356: $metacache{$uri}->{':'.$unikey}=
4357: $metacache{$uri}->{':'.$unikey.'.default'};
1.356 albertel 4358: }
1.339 albertel 4359: }
4360: }
4361: } else {
1.172 www 4362: #
4363: # This is not a package - some other kind of start tag
1.339 albertel 4364: #
4365: my $entry=$token->[1];
4366: my $unikey;
4367: if ($entry eq 'import') {
4368: $unikey='';
4369: } else {
4370: $unikey=$entry;
4371: }
4372: $unikey.=&add_prefix_and_part($prefix,$token->[2]->{'part'});
4373:
4374: if (defined($token->[2]->{'id'})) {
4375: $unikey.='_'.$token->[2]->{'id'};
4376: }
1.175 www 4377:
1.339 albertel 4378: if ($entry eq 'import') {
1.175 www 4379: #
4380: # Importing a library here
1.339 albertel 4381: #
4382: if ($depthcount<20) {
4383: my $location=$parser->get_text('/import');
4384: my $dir=$filename;
4385: $dir=~s|[^/]*$||;
4386: $location=&filelocation($dir,$location);
4387: foreach (sort(split(/\,/,&metadata($uri,'keys',
4388: $location,$unikey,
4389: $depthcount+1)))) {
1.453 albertel 4390: $metacache{$uri}->{':'.$_}=$metacache{$uri}->{':'.$_};
1.339 albertel 4391: $metathesekeys{$_}=1;
4392: }
4393: }
4394: } else {
4395:
4396: if (defined($token->[2]->{'name'})) {
4397: $unikey.='_'.$token->[2]->{'name'};
4398: }
4399: $metathesekeys{$unikey}=1;
4400: foreach (@{$token->[3]}) {
1.453 albertel 4401: $metacache{$uri}->{':'.$unikey.'.'.$_}=$token->[2]->{$_};
1.339 albertel 4402: }
4403: my $internaltext=&HTML::Entities::decode($parser->get_text('/'.$entry));
1.453 albertel 4404: my $default=$metacache{$uri}->{':'.$unikey.'.default'};
1.339 albertel 4405: if ( $internaltext =~ /^\s*$/ && $default !~ /^\s*$/) {
4406: # only ws inside the tag, and not in default, so use default
4407: # as value
1.453 albertel 4408: $metacache{$uri}->{':'.$unikey}=$default;
1.339 albertel 4409: } else {
1.321 albertel 4410: # either something interesting inside the tag or default
4411: # uninteresting
1.453 albertel 4412: $metacache{$uri}->{':'.$unikey}=$internaltext;
1.339 albertel 4413: }
1.172 www 4414: # end of not-a-package not-a-library import
1.339 albertel 4415: }
1.172 www 4416: # end of not-a-package start tag
1.339 albertel 4417: }
1.172 www 4418: # the next is the end of "start tag"
1.339 albertel 4419: }
4420: }
1.483 albertel 4421: my ($extension) = ($uri =~ /\.(\w+)$/);
4422: foreach my $key (sort(keys(%packagetab))) {
4423: #&logthis("extsion1 $extension $key !!");
4424: #no specific packages #how's our extension
4425: if ($key!~/^extension_\Q$extension\E&/) { next; }
1.488 albertel 4426: &metadata_create_package_def($uri,$key,'extension_'.$extension,
1.483 albertel 4427: \%metathesekeys);
4428: }
4429: if (!exists($metacache{$uri}->{':packages'})) {
4430: foreach my $key (sort(keys(%packagetab))) {
4431: #no specific packages well let's get default then
4432: if ($key!~/^default&/) { next; }
1.488 albertel 4433: &metadata_create_package_def($uri,$key,'default',
1.483 albertel 4434: \%metathesekeys);
4435: }
4436: }
1.338 www 4437: # are there custom rights to evaluate
1.453 albertel 4438: if ($metacache{$uri}->{':copyright'} eq 'custom') {
1.339 albertel 4439:
1.338 www 4440: #
4441: # Importing a rights file here
1.339 albertel 4442: #
4443: unless ($depthcount) {
1.453 albertel 4444: my $location=$metacache{$uri}->{':customdistributionfile'};
1.339 albertel 4445: my $dir=$filename;
4446: $dir=~s|[^/]*$||;
4447: $location=&filelocation($dir,$location);
4448: foreach (sort(split(/\,/,&metadata($uri,'keys',
4449: $location,'_rights',
4450: $depthcount+1)))) {
1.453 albertel 4451: $metacache{$uri}->{':'.$_}=$metacache{$uri}->{':'.$_};
1.339 albertel 4452: $metathesekeys{$_}=1;
4453: }
4454: }
4455: }
1.453 albertel 4456: $metacache{$uri}->{':keys'}=join(',',keys %metathesekeys);
4457: &metadata_generate_part0(\%metathesekeys,$metacache{$uri},$uri);
4458: $metacache{$uri}->{':allpossiblekeys'}=join(',',keys %metathesekeys);
4459: &do_cache(\%metacache,$uri,$metacache{$uri},'meta');
1.177 www 4460: # this is the end of "was not already recently cached
1.71 www 4461: }
1.428 albertel 4462: return $metacache{$uri}->{':'.$what};
1.261 albertel 4463: }
4464:
1.488 albertel 4465: sub metadata_create_package_def {
1.483 albertel 4466: my ($uri,$key,$package,$metathesekeys)=@_;
4467: my ($pack,$name,$subp)=split(/\&/,$key);
4468: if ($subp eq 'default') { next; }
4469:
4470: if (defined($metacache{$uri}->{':packages'})) {
4471: $metacache{$uri}->{':packages'}.=','.$package;
4472: } else {
4473: $metacache{$uri}->{':packages'}=$package;
4474: }
4475: my $value=$packagetab{$key};
4476: my $unikey;
4477: $unikey='parameter_0_'.$name;
4478: $metacache{$uri}->{':'.$unikey.'.part'}=0;
4479: $$metathesekeys{$unikey}=1;
4480: unless (defined($metacache{$uri}->{':'.$unikey.'.'.$subp})) {
4481: $metacache{$uri}->{':'.$unikey.'.'.$subp}=$value;
4482: }
4483: if (defined($metacache{$uri}->{':'.$unikey.'.default'})) {
4484: $metacache{$uri}->{':'.$unikey}=
4485: $metacache{$uri}->{':'.$unikey.'.default'};
4486: }
4487: }
4488:
1.261 albertel 4489: sub metadata_generate_part0 {
4490: my ($metadata,$metacache,$uri) = @_;
4491: my %allnames;
4492: foreach my $metakey (sort keys %$metadata) {
4493: if ($metakey=~/^parameter\_(.*)/) {
1.428 albertel 4494: my $part=$$metacache{':'.$metakey.'.part'};
4495: my $name=$$metacache{':'.$metakey.'.name'};
1.356 albertel 4496: if (! exists($$metadata{'parameter_0_'.$name.'.name'})) {
1.261 albertel 4497: $allnames{$name}=$part;
4498: }
4499: }
4500: }
4501: foreach my $name (keys(%allnames)) {
4502: $$metadata{"parameter_0_$name"}=1;
1.428 albertel 4503: my $key=":parameter_0_$name";
1.261 albertel 4504: $$metacache{"$key.part"}='0';
4505: $$metacache{"$key.name"}=$name;
1.428 albertel 4506: $$metacache{"$key.type"}=$$metacache{':parameter_'.
1.261 albertel 4507: $allnames{$name}.'_'.$name.
4508: '.type'};
1.428 albertel 4509: my $olddis=$$metacache{':parameter_'.$allnames{$name}.'_'.$name.
1.261 albertel 4510: '.display'};
4511: my $expr='\\[Part: '.$allnames{$name}.'\\]';
1.479 albertel 4512: $olddis=~s/\Q$expr\E/\[Part: 0\]/;
1.261 albertel 4513: $$metacache{"$key.display"}=$olddis;
4514: }
1.71 www 4515: }
4516:
1.301 www 4517: # ------------------------------------------------- Get the title of a resource
4518:
4519: sub gettitle {
4520: my $urlsymb=shift;
4521: my $symb=&symbread($urlsymb);
1.534 albertel 4522: if ($symb) {
4523: my ($result,$cached)=&is_cached(\%titlecache,$symb,'title',600);
4524: if (defined($cached)) { return $result; }
4525: my ($map,$resid,$url)=&decode_symb($symb);
4526: my $title='';
4527: my %bighash;
4528: if (tie(%bighash,'GDBM_File',$ENV{'request.course.fn'}.'.db',
4529: &GDBM_READER(),0640)) {
4530: my $mapid=$bighash{'map_pc_'.&clutter($map)};
4531: $title=$bighash{'title_'.$mapid.'.'.$resid};
4532: untie %bighash;
4533: }
4534: $title=~s/\&colon\;/\:/gs;
4535: if ($title) {
4536: return &do_cache(\%titlecache,$symb,$title,'title');
4537: }
4538: $urlsymb=$url;
4539: }
4540: my $title=&metadata($urlsymb,'title');
4541: if (!$title) { $title=(split('/',$urlsymb))[-1]; }
4542: return $title;
1.301 www 4543: }
4544:
1.31 www 4545: # ------------------------------------------------- Update symbolic store links
4546:
4547: sub symblist {
4548: my ($mapname,%newhash)=@_;
1.438 www 4549: $mapname=&deversion(&declutter($mapname));
1.31 www 4550: my %hash;
4551: if (($ENV{'request.course.fn'}) && (%newhash)) {
4552: if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.'_symb.db',
1.256 albertel 4553: &GDBM_WRCREAT(),0640)) {
1.191 harris41 4554: foreach (keys %newhash) {
1.438 www 4555: $hash{declutter($_)}=$mapname.'___'.&deversion($newhash{$_});
1.191 harris41 4556: }
1.31 www 4557: if (untie(%hash)) {
4558: return 'ok';
4559: }
4560: }
4561: }
4562: return 'error';
1.212 www 4563: }
4564:
4565: # --------------------------------------------------------------- Verify a symb
4566:
4567: sub symbverify {
1.510 www 4568: my ($symb,$thisurl)=@_;
4569: my $thisfn=$thisurl;
4570: # wrapper not part of symbs
4571: $thisfn=~s/^\/adm\/wrapper//;
1.439 www 4572: $thisfn=&declutter($thisfn);
1.215 www 4573: # direct jump to resource in page or to a sequence - will construct own symbs
4574: if ($thisfn=~/\.(page|sequence)$/) { return 1; }
4575: # check URL part
1.409 www 4576: my ($map,$resid,$url)=&decode_symb($symb);
1.439 www 4577:
1.431 www 4578: unless ($url eq $thisfn) { return 0; }
1.213 www 4579:
1.216 www 4580: $symb=&symbclean($symb);
1.510 www 4581: $thisurl=&deversion($thisurl);
1.439 www 4582: $thisfn=&deversion($thisfn);
1.213 www 4583:
4584: my %bighash;
4585: my $okay=0;
1.431 www 4586:
1.213 www 4587: if (tie(%bighash,'GDBM_File',$ENV{'request.course.fn'}.'.db',
1.256 albertel 4588: &GDBM_READER(),0640)) {
1.510 www 4589: my $ids=$bighash{'ids_'.&clutter($thisurl)};
1.216 www 4590: unless ($ids) {
1.510 www 4591: $ids=$bighash{'ids_/'.$thisurl};
1.216 www 4592: }
4593: if ($ids) {
4594: # ------------------------------------------------------------------- Has ID(s)
4595: foreach (split(/\,/,$ids)) {
4596: my ($mapid,$resid)=split(/\./,$_);
4597: if (
4598: &symbclean(&declutter($bighash{'map_id_'.$mapid}).'___'.$resid.'___'.$thisfn)
4599: eq $symb) {
4600: $okay=1;
4601: }
4602: }
4603: }
1.213 www 4604: untie(%bighash);
4605: }
4606: return $okay;
1.31 www 4607: }
4608:
1.210 www 4609: # --------------------------------------------------------------- Clean-up symb
4610:
4611: sub symbclean {
4612: my $symb=shift;
1.213 www 4613:
1.210 www 4614: # remove version from map
4615: $symb=~s/\.(\d+)\.(\w+)\_\_\_/\.$2\_\_\_/;
1.215 www 4616:
1.210 www 4617: # remove version from URL
4618: $symb=~s/\.(\d+)\.(\w+)$/\.$2/;
1.213 www 4619:
1.507 www 4620: # remove wrapper
4621:
1.510 www 4622: $symb=~s/(\_\_\_\d+\_\_\_)adm\/wrapper\/(res\/)*/$1/;
1.210 www 4623: return $symb;
1.409 www 4624: }
4625:
4626: # ---------------------------------------------- Split symb to find map and url
1.429 albertel 4627:
4628: sub encode_symb {
4629: my ($map,$resid,$url)=@_;
4630: return &symbclean(&declutter($map).'___'.$resid.'___'.&declutter($url));
4631: }
1.409 www 4632:
4633: sub decode_symb {
1.413 www 4634: my ($map,$resid,$url)=split(/\_\_\_/,shift);
4635: return (&fixversion($map),$resid,&fixversion($url));
4636: }
4637:
4638: sub fixversion {
4639: my $fn=shift;
4640: if ($fn=~/^(adm|uploaded|public)/) { return $fn; }
1.435 www 4641: my %bighash;
4642: my $uri=&clutter($fn);
1.440 www 4643: my $key=$ENV{'request.course.id'}.'_'.$uri;
4644: # is this cached?
4645: my ($result,$cached)=&is_cached(\%courseresversioncache,$key,
4646: 'courseresversion',600);
4647: if (defined($cached)) { return $result; }
4648: # unfortunately not cached, or expired
1.435 www 4649: if (tie(%bighash,'GDBM_File',$ENV{'request.course.fn'}.'.db',
1.440 www 4650: &GDBM_READER(),0640)) {
4651: if ($bighash{'version_'.$uri}) {
4652: my $version=$bighash{'version_'.$uri};
1.444 www 4653: unless (($version eq 'mostrecent') ||
4654: ($version==&getversion($uri))) {
1.440 www 4655: $uri=~s/\.(\w+)$/\.$version\.$1/;
4656: }
4657: }
4658: untie %bighash;
1.413 www 4659: }
1.440 www 4660: return &do_cache
4661: (\%courseresversioncache,$key,&declutter($uri),'courseresversion');
1.438 www 4662: }
4663:
4664: sub deversion {
4665: my $url=shift;
4666: $url=~s/\.\d+\.(\w+)$/\.$1/;
4667: return $url;
1.210 www 4668: }
4669:
1.31 www 4670: # ------------------------------------------------------ Return symb list entry
4671:
4672: sub symbread {
1.249 www 4673: my ($thisfn,$donotrecurse)=@_;
1.542 albertel 4674: my $cache_str='request.symbread.cached.'.$thisfn;
4675: if (defined($ENV{$cache_str})) { return $ENV{$cache_str}; }
1.242 www 4676: # no filename provided? try from environment
1.44 www 4677: unless ($thisfn) {
1.539 albertel 4678: if ($ENV{'request.symb'}) {
1.542 albertel 4679: return $ENV{$cache_str}=&symbclean($ENV{'request.symb'});
1.539 albertel 4680: }
1.44 www 4681: $thisfn=$ENV{'request.filename'};
4682: }
1.242 www 4683: # is that filename actually a symb? Verify, clean, and return
4684: if ($thisfn=~/\_\_\_\d+\_\_\_(.*)$/) {
1.539 albertel 4685: if (&symbverify($thisfn,$1)) {
1.542 albertel 4686: return $ENV{$cache_str}=&symbclean($thisfn);
1.539 albertel 4687: }
1.242 www 4688: }
1.44 www 4689: $thisfn=declutter($thisfn);
1.31 www 4690: my %hash;
1.37 www 4691: my %bighash;
4692: my $syval='';
1.45 www 4693: if (($ENV{'request.course.fn'}) && ($thisfn)) {
1.481 raeburn 4694: my $targetfn = $thisfn;
4695: if ( ($thisfn =~ m/^uploaded\//) && ($thisfn !~ m/\.(page|sequence)$/) ) {
4696: $targetfn = 'adm/wrapper/'.$thisfn;
4697: }
1.31 www 4698: if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.'_symb.db',
1.256 albertel 4699: &GDBM_READER(),0640)) {
1.481 raeburn 4700: $syval=$hash{$targetfn};
1.37 www 4701: untie(%hash);
4702: }
4703: # ---------------------------------------------------------- There was an entry
4704: if ($syval) {
4705: unless ($syval=~/\_\d+$/) {
4706: unless ($ENV{'form.request.prefix'}=~/\.(\d+)\_$/) {
1.44 www 4707: &appenv('request.ambiguous' => $thisfn);
1.542 albertel 4708: return $ENV{$cache_str}='';
1.37 www 4709: }
4710: $syval.=$1;
4711: }
4712: } else {
4713: # ------------------------------------------------------- Was not in symb table
4714: if (tie(%bighash,'GDBM_File',$ENV{'request.course.fn'}.'.db',
1.256 albertel 4715: &GDBM_READER(),0640)) {
1.37 www 4716: # ---------------------------------------------- Get ID(s) for current resource
1.280 www 4717: my $ids=$bighash{'ids_'.&clutter($thisfn)};
1.65 www 4718: unless ($ids) {
4719: $ids=$bighash{'ids_/'.$thisfn};
1.242 www 4720: }
4721: unless ($ids) {
4722: # alias?
4723: $ids=$bighash{'mapalias_'.$thisfn};
1.65 www 4724: }
1.37 www 4725: if ($ids) {
4726: # ------------------------------------------------------------------- Has ID(s)
4727: my @possibilities=split(/\,/,$ids);
1.39 www 4728: if ($#possibilities==0) {
4729: # ----------------------------------------------- There is only one possibility
1.37 www 4730: my ($mapid,$resid)=split(/\./,$ids);
4731: $syval=declutter($bighash{'map_id_'.$mapid}).'___'.$resid;
1.249 www 4732: } elsif (!$donotrecurse) {
1.39 www 4733: # ------------------------------------------ There is more than one possibility
4734: my $realpossible=0;
1.191 harris41 4735: foreach (@possibilities) {
1.39 www 4736: my $file=$bighash{'src_'.$_};
4737: if (&allowed('bre',$file)) {
4738: my ($mapid,$resid)=split(/\./,$_);
4739: if ($bighash{'map_type_'.$mapid} ne 'page') {
4740: $realpossible++;
4741: $syval=declutter($bighash{'map_id_'.$mapid}).
4742: '___'.$resid;
4743: }
4744: }
1.191 harris41 4745: }
1.39 www 4746: if ($realpossible!=1) { $syval=''; }
1.249 www 4747: } else {
4748: $syval='';
1.37 www 4749: }
4750: }
4751: untie(%bighash)
1.481 raeburn 4752: }
1.31 www 4753: }
1.62 www 4754: if ($syval) {
1.542 albertel 4755: return $ENV{$cache_str}=&symbclean($syval.'___'.$thisfn);
1.62 www 4756: }
1.31 www 4757: }
1.44 www 4758: &appenv('request.ambiguous' => $thisfn);
1.542 albertel 4759: return $ENV{$cache_str}='';
1.31 www 4760: }
4761:
4762: # ---------------------------------------------------------- Return random seed
4763:
1.32 www 4764: sub numval {
4765: my $txt=shift;
4766: $txt=~tr/A-J/0-9/;
4767: $txt=~tr/a-j/0-9/;
4768: $txt=~tr/K-T/0-9/;
4769: $txt=~tr/k-t/0-9/;
4770: $txt=~tr/U-Z/0-5/;
4771: $txt=~tr/u-z/0-5/;
4772: $txt=~s/\D//g;
4773: return int($txt);
1.368 albertel 4774: }
4775:
1.484 albertel 4776: sub numval2 {
4777: my $txt=shift;
4778: $txt=~tr/A-J/0-9/;
4779: $txt=~tr/a-j/0-9/;
4780: $txt=~tr/K-T/0-9/;
4781: $txt=~tr/k-t/0-9/;
4782: $txt=~tr/U-Z/0-5/;
4783: $txt=~tr/u-z/0-5/;
4784: $txt=~s/\D//g;
4785: my @txts=split(/(\d\d\d\d\d\d\d\d\d)/,$txt);
4786: my $total;
4787: foreach my $val (@txts) { $total+=$val; }
4788: return int($total);
4789: }
4790:
1.368 albertel 4791: sub latest_rnd_algorithm_id {
1.501 albertel 4792: return '64bit3';
1.366 albertel 4793: }
1.32 www 4794:
1.503 albertel 4795: sub get_rand_alg {
4796: my ($courseid)=@_;
4797: if (!$courseid) { $courseid=(&Apache::lonxml::whichuser())[1]; }
4798: if ($courseid) {
4799: return $ENV{"course.$courseid.rndseed"};
4800: }
4801: return &latest_rnd_algorithm_id();
4802: }
4803:
1.491 albertel 4804: sub getCODE {
4805: if (defined($ENV{'form.CODE'})) { return $ENV{'form.CODE'}; }
4806: if (defined($Apache::lonhomework::parsing_a_problem) &&
4807: defined($Apache::lonhomework::history{'resource.CODE'})) {
4808: return $Apache::lonhomework::history{'resource.CODE'};
4809: }
4810: return undef;
4811: }
4812:
1.31 www 4813: sub rndseed {
1.155 albertel 4814: my ($symb,$courseid,$domain,$username)=@_;
1.366 albertel 4815:
4816: my ($wsymb,$wcourseid,$wdomain,$wusername)=&Apache::lonxml::whichuser();
1.155 albertel 4817: if (!$symb) {
1.366 albertel 4818: unless ($symb=$wsymb) { return time; }
4819: }
4820: if (!$courseid) { $courseid=$wcourseid; }
4821: if (!$domain) { $domain=$wdomain; }
4822: if (!$username) { $username=$wusername }
1.503 albertel 4823: my $which=&get_rand_alg();
1.491 albertel 4824: if (defined(&getCODE())) {
1.484 albertel 4825: return &rndseed_CODE_64bit($symb,$courseid,$domain,$username);
1.501 albertel 4826: } elsif ($which eq '64bit3') {
4827: return &rndseed_64bit3($symb,$courseid,$domain,$username);
1.443 albertel 4828: } elsif ($which eq '64bit2') {
4829: return &rndseed_64bit2($symb,$courseid,$domain,$username);
1.366 albertel 4830: } elsif ($which eq '64bit') {
4831: return &rndseed_64bit($symb,$courseid,$domain,$username);
4832: }
4833: return &rndseed_32bit($symb,$courseid,$domain,$username);
4834: }
4835:
4836: sub rndseed_32bit {
4837: my ($symb,$courseid,$domain,$username)=@_;
4838: {
4839: use integer;
4840: my $symbchck=unpack("%32C*",$symb) << 27;
4841: my $symbseed=numval($symb) << 22;
4842: my $namechck=unpack("%32C*",$username) << 17;
4843: my $nameseed=numval($username) << 12;
4844: my $domainseed=unpack("%32C*",$domain) << 7;
4845: my $courseseed=unpack("%32C*",$courseid);
4846: my $num=$symbseed+$nameseed+$domainseed+$courseseed+$namechck+$symbchck;
4847: #&Apache::lonxml::debug("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
4848: #&Apache::lonxml::debug("rndseed :$num:$symb");
4849: return $num;
4850: }
4851: }
4852:
4853: sub rndseed_64bit {
4854: my ($symb,$courseid,$domain,$username)=@_;
4855: {
4856: use integer;
4857: my $symbchck=unpack("%32S*",$symb) << 21;
4858: my $symbseed=numval($symb) << 10;
4859: my $namechck=unpack("%32S*",$username);
4860:
4861: my $nameseed=numval($username) << 21;
4862: my $domainseed=unpack("%32S*",$domain) << 10;
4863: my $courseseed=unpack("%32S*",$courseid);
4864:
4865: my $num1=$symbchck+$symbseed+$namechck;
4866: my $num2=$nameseed+$domainseed+$courseseed;
4867: #&Apache::lonxml::debug("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
4868: #&Apache::lonxml::debug("rndseed :$num:$symb");
4869: return "$num1,$num2";
1.155 albertel 4870: }
1.366 albertel 4871: }
4872:
1.443 albertel 4873: sub rndseed_64bit2 {
4874: my ($symb,$courseid,$domain,$username)=@_;
4875: {
4876: use integer;
4877: # strings need to be an even # of cahracters long, it it is odd the
4878: # last characters gets thrown away
4879: my $symbchck=unpack("%32S*",$symb.' ') << 21;
4880: my $symbseed=numval($symb) << 10;
4881: my $namechck=unpack("%32S*",$username.' ');
4882:
4883: my $nameseed=numval($username) << 21;
1.501 albertel 4884: my $domainseed=unpack("%32S*",$domain.' ') << 10;
4885: my $courseseed=unpack("%32S*",$courseid.' ');
4886:
4887: my $num1=$symbchck+$symbseed+$namechck;
4888: my $num2=$nameseed+$domainseed+$courseseed;
4889: #&Apache::lonxml::debug("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
4890: #&Apache::lonxml::debug("rndseed :$num:$symb");
4891: return "$num1,$num2";
4892: }
4893: }
4894:
4895: sub rndseed_64bit3 {
4896: my ($symb,$courseid,$domain,$username)=@_;
4897: {
4898: use integer;
4899: # strings need to be an even # of cahracters long, it it is odd the
4900: # last characters gets thrown away
4901: my $symbchck=unpack("%32S*",$symb.' ') << 21;
4902: my $symbseed=numval2($symb) << 10;
4903: my $namechck=unpack("%32S*",$username.' ');
4904:
4905: my $nameseed=numval2($username) << 21;
1.443 albertel 4906: my $domainseed=unpack("%32S*",$domain.' ') << 10;
4907: my $courseseed=unpack("%32S*",$courseid.' ');
4908:
4909: my $num1=$symbchck+$symbseed+$namechck;
4910: my $num2=$nameseed+$domainseed+$courseseed;
4911: #&Apache::lonxml::debug("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
4912: #&Apache::lonxml::debug("rndseed :$num:$symb");
1.503 albertel 4913: return "$num1:$num2";
1.443 albertel 4914: }
4915: }
4916:
1.366 albertel 4917: sub rndseed_CODE_64bit {
4918: my ($symb,$courseid,$domain,$username)=@_;
1.155 albertel 4919: {
1.366 albertel 4920: use integer;
1.443 albertel 4921: my $symbchck=unpack("%32S*",$symb.' ') << 16;
1.484 albertel 4922: my $symbseed=numval2($symb);
1.491 albertel 4923: my $CODEchck=unpack("%32S*",&getCODE().' ') << 16;
4924: my $CODEseed=numval(&getCODE());
1.443 albertel 4925: my $courseseed=unpack("%32S*",$courseid.' ');
1.484 albertel 4926: my $num1=$symbseed+$CODEchck;
4927: my $num2=$CODEseed+$courseseed+$symbchck;
4928: #&Apache::lonxml::debug("$symbseed:$CODEchck|$CODEseed:$courseseed:$symbchck");
1.366 albertel 4929: #&Apache::lonxml::debug("rndseed :$num1:$num2:$symb");
1.503 albertel 4930: return "$num1:$num2";
1.366 albertel 4931: }
4932: }
4933:
4934: sub setup_random_from_rndseed {
4935: my ($rndseed)=@_;
1.503 albertel 4936: if ($rndseed =~/([,:])/) {
4937: my ($num1,$num2)=split(/[,:]/,$rndseed);
1.366 albertel 4938: &Math::Random::random_set_seed(abs($num1),abs($num2));
4939: } else {
4940: &Math::Random::random_set_seed_from_phrase($rndseed);
1.98 albertel 4941: }
1.36 albertel 4942: }
4943:
1.474 albertel 4944: sub latest_receipt_algorithm_id {
4945: return 'receipt2';
4946: }
4947:
1.480 www 4948: sub recunique {
4949: my $fucourseid=shift;
4950: my $unique;
4951: if ($ENV{"course.$fucourseid.receiptalg"} eq 'receipt2') {
4952: $unique=$ENV{"course.$fucourseid.internal.encseed"};
4953: } else {
4954: $unique=$perlvar{'lonReceipt'};
4955: }
4956: return unpack("%32C*",$unique);
4957: }
4958:
4959: sub recprefix {
4960: my $fucourseid=shift;
4961: my $prefix;
4962: if ($ENV{"course.$fucourseid.receiptalg"} eq 'receipt2') {
4963: $prefix=$ENV{"course.$fucourseid.internal.encpref"};
4964: } else {
4965: $prefix=$perlvar{'lonHostID'};
4966: }
4967: return unpack("%32C*",$prefix);
4968: }
4969:
1.76 www 4970: sub ireceipt {
1.474 albertel 4971: my ($funame,$fudom,$fucourseid,$fusymb,$part)=@_;
1.76 www 4972: my $cuname=unpack("%32C*",$funame);
4973: my $cudom=unpack("%32C*",$fudom);
4974: my $cucourseid=unpack("%32C*",$fucourseid);
4975: my $cusymb=unpack("%32C*",$fusymb);
1.480 www 4976: my $cunique=&recunique($fucourseid);
1.474 albertel 4977: my $cpart=unpack("%32S*",$part);
1.480 www 4978: my $return =&recprefix($fucourseid).'-';
1.474 albertel 4979: if ($ENV{"course.$fucourseid.receiptalg"} eq 'receipt2' ||
4980: $ENV{'request.state'} eq 'construct') {
4981: &Apache::lonxml::debug("doing receipt2 using parts $cpart, uname $cuname and udom $cudom gets ".($cpart%$cuname).
4982: " and ".($cpart%$cudom));
4983:
4984: $return.= ($cunique%$cuname+
4985: $cunique%$cudom+
4986: $cusymb%$cuname+
4987: $cusymb%$cudom+
4988: $cucourseid%$cuname+
4989: $cucourseid%$cudom+
4990: $cpart%$cuname+
4991: $cpart%$cudom);
4992: } else {
4993: $return.= ($cunique%$cuname+
4994: $cunique%$cudom+
4995: $cusymb%$cuname+
4996: $cusymb%$cudom+
4997: $cucourseid%$cuname+
4998: $cucourseid%$cudom);
4999: }
5000: return $return;
1.76 www 5001: }
5002:
5003: sub receipt {
1.474 albertel 5004: my ($part)=@_;
5005: my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser();
5006: return &ireceipt($name,$domain,$courseid,$symb,$part);
1.76 www 5007: }
1.260 ng 5008:
1.36 albertel 5009: # ------------------------------------------------------------ Serves up a file
1.472 albertel 5010: # returns either the contents of the file or
5011: # -1 if the file doesn't exist
1.481 raeburn 5012: #
5013: # if the target is a file that was uploaded via DOCS,
5014: # a check will be made to see if a current copy exists on the local server,
5015: # if it does this will be served, otherwise a copy will be retrieved from
5016: # the home server for the course and stored in /home/httpd/html/userfiles on
5017: # the local server.
1.472 albertel 5018:
1.36 albertel 5019: sub getfile {
1.538 albertel 5020: my ($file) = @_;
1.482 albertel 5021:
1.538 albertel 5022: if ($file =~ m|^/*uploaded/|) { $file=&filelocation("",$file); }
5023: &repcopy($file);
5024: return &readfile($file);
5025: }
5026:
5027: sub repcopy_userfile {
5028: my ($file)=@_;
5029:
5030: if ($file =~ m|^/*uploaded/|) { $file=&filelocation("",$file); }
5031: if ($file =~ m|^/home/httpd/html/lonUsers/|) { return OK; }
5032:
5033: my ($cdom,$cnum,$filename) =
5034: ($file=~m|^\Q$perlvar{'lonDocRoot'}\E/+userfiles/+([^/]+)/+([^/]+)/+(.*)|);
5035: my ($info,$rtncode);
5036: my $uri="/uploaded/$cdom/$cnum/$filename";
5037: if (-e "$file") {
5038: my @fileinfo = stat($file);
5039: my $lwpresp = &getuploaded('HEAD',$uri,$cdom,$cnum,\$info,\$rtncode);
1.482 albertel 5040: if ($lwpresp ne 'ok') {
5041: if ($rtncode eq '404') {
1.538 albertel 5042: unlink($file);
1.482 albertel 5043: }
1.517 albertel 5044: #my $ua=new LWP::UserAgent;
1.538 albertel 5045: #my $request=new HTTP::Request('GET',&tokenwrapper($uri));
1.517 albertel 5046: #my $response=$ua->request($request);
5047: #if ($response->is_success()) {
5048: # return $response->content;
5049: # } else {
5050: # return -1;
5051: # }
1.482 albertel 5052: return -1;
5053: }
5054: if ($info < $fileinfo[9]) {
1.538 albertel 5055: return OK;
1.482 albertel 5056: }
5057: $info = '';
1.538 albertel 5058: $lwpresp = &getuploaded('GET',$uri,$cdom,$cnum,\$info,\$rtncode);
1.482 albertel 5059: if ($lwpresp ne 'ok') {
5060: return -1;
5061: }
5062: } else {
1.538 albertel 5063: my $lwpresp = &getuploaded('GET',$uri,$cdom,$cnum,\$info,\$rtncode);
1.482 albertel 5064: if ($lwpresp ne 'ok') {
1.517 albertel 5065: my $ua=new LWP::UserAgent;
1.538 albertel 5066: my $request=new HTTP::Request('GET',&tokenwrapper($uri));
1.517 albertel 5067: my $response=$ua->request($request);
5068: if ($response->is_success()) {
1.538 albertel 5069: $info=$response->content;
1.517 albertel 5070: } else {
5071: return -1;
5072: }
1.482 albertel 5073: }
5074: my @parts = ($cdom,$cnum);
5075: if ($filename =~ m|^(.+)/[^/]+$|) {
5076: push @parts, split(/\//,$1);
1.518 albertel 5077: }
1.538 albertel 5078: my $path = $perlvar{'lonDocRoot'}.'/userfiles';
1.482 albertel 5079: foreach my $part (@parts) {
5080: $path .= '/'.$part;
5081: if (!-e $path) {
5082: mkdir($path,0770);
5083: }
5084: }
5085: }
1.538 albertel 5086: open(FILE,">$file");
1.482 albertel 5087: print FILE $info;
5088: close(FILE);
1.538 albertel 5089: return OK;
1.481 raeburn 5090: }
5091:
1.517 albertel 5092: sub tokenwrapper {
5093: my $uri=shift;
1.552 ! albertel 5094: $uri=~s|^http\://([^/]+)||;
! 5095: $uri=~s|^/||;
1.517 albertel 5096: $ENV{'user.environment'}=~/\/([^\/]+)\.id/;
5097: my $token=$1;
1.552 ! albertel 5098: my (undef,$udom,$uname,$file)=split('/',$uri,4);
! 5099: if ($udom && $uname && $file) {
! 5100: $file=~s|(\?\.*)*$||;
! 5101: &appenv("userfile.$udom/$uname/$file" => $ENV{'request.course.id'});
! 5102: return 'http://'.$hostname{ &homeserver($uname,$udom)}.'/'.$uri.
1.517 albertel 5103: (($uri=~/\?/)?'&':'?').'token='.$token.
5104: '&tokenissued='.$perlvar{'lonHostID'};
5105: } else {
5106: return '/adm/notfound.html';
5107: }
5108: }
5109:
1.481 raeburn 5110: sub getuploaded {
5111: my ($reqtype,$uri,$cdom,$cnum,$info,$rtncode) = @_;
5112: $uri=~s/^\///;
5113: $uri = 'http://'.$hostname{ &homeserver($cnum,$cdom)}.'/raw/'.$uri;
5114: my $ua=new LWP::UserAgent;
5115: my $request=new HTTP::Request($reqtype,$uri);
5116: my $response=$ua->request($request);
5117: $$rtncode = $response->code;
1.482 albertel 5118: if (! $response->is_success()) {
5119: return 'failed';
5120: }
5121: if ($reqtype eq 'HEAD') {
1.486 www 5122: $$info = &HTTP::Date::str2time( $response->header('Last-modified') );
1.482 albertel 5123: } elsif ($reqtype eq 'GET') {
5124: $$info = $response->content;
1.472 albertel 5125: }
1.482 albertel 5126: return 'ok';
1.36 albertel 5127: }
5128:
1.481 raeburn 5129: sub readfile {
5130: my $file = shift;
5131: if ( (! -e $file ) || ($file eq '') ) { return -1; };
5132: my $fh;
5133: open($fh,"<$file");
5134: my $a='';
5135: while (<$fh>) { $a .=$_; }
5136: return $a;
5137: }
5138:
1.36 albertel 5139: sub filelocation {
5140: my ($dir,$file) = @_;
5141: my $location;
5142: $file=~ s/^\s*(\S+)\s*$/$1/; ## strip off leading and trailing spaces
1.59 albertel 5143: if ($file=~m:^/~:) { # is a contruction space reference
5144: $location = $file;
5145: $location =~ s:/~(.*?)/(.*):/home/$1/public_html/$2:;
1.270 www 5146: } elsif ($file=~/^\/*uploaded/) { # is an uploaded file
1.537 albertel 5147: my ($udom,$uname,$filename)=
5148: ($file=~m|^/+uploaded/+([^/]+)/+([^/]+)/+(.*)$|);
5149: my $home=&homeserver($uname,$udom);
5150: my $is_me=0;
1.536 sakharuk 5151: my @ids=¤t_machine_ids();
1.537 albertel 5152: foreach my $id (@ids) { if ($id eq $home) { $is_me=1; } }
5153: if ($is_me) {
5154: $location=&Apache::loncommon::propath($udom,$uname).
5155: '/userfiles/'.$filename;
1.527 sakharuk 5156: } else {
1.537 albertel 5157: $location=$Apache::lonnet::perlvar{'lonDocRoot'}.'/userfiles/'.
5158: $udom.'/'.$uname.'/'.$filename;
1.527 sakharuk 5159: }
1.36 albertel 5160: } else {
1.479 albertel 5161: $file=~s/^\Q$perlvar{'lonDocRoot'}\E//;
1.464 albertel 5162: $file=~s:^/res/:/:;
1.59 albertel 5163: if ( !( $file =~ m:^/:) ) {
5164: $location = $dir. '/'.$file;
5165: } else {
5166: $location = '/home/httpd/html/res'.$file;
5167: }
1.36 albertel 5168: }
5169: $location=~s://+:/:g; # remove duplicate /
1.46 www 5170: while ($location=~m:/\.\./:) {$location=~ s:/[^/]+/\.\./:/:g;} #remove dir/..
1.475 albertel 5171: while ($location=~m:/\./:) {$location=~ s:/\./:/:g;} #remove /./
1.46 www 5172: return $location;
5173: }
1.36 albertel 5174:
1.46 www 5175: sub hreflocation {
5176: my ($dir,$file)=@_;
1.460 albertel 5177: unless (($file=~m-^http://-i) || ($file=~m-^/-)) {
5178: my $finalpath=filelocation($dir,$file);
5179: $finalpath=~s-^/home/httpd/html--;
1.462 albertel 5180: $finalpath=~s-^/home/(\w+)/public_html/-/~$1/-;
1.460 albertel 5181: return $finalpath;
5182: } elsif ($file=~m-^/home-) {
5183: $file=~s-^/home/httpd/html--;
1.462 albertel 5184: $file=~s-^/home/(\w+)/public_html/-/~$1/-;
1.460 albertel 5185: return $file;
1.46 www 5186: }
1.462 albertel 5187: return $file;
1.465 albertel 5188: }
5189:
5190: sub current_machine_domains {
5191: my $hostname=$hostname{$perlvar{'lonHostID'}};
5192: my @domains;
5193: while( my($id, $name) = each(%hostname)) {
1.467 matthew 5194: # &logthis("-$id-$name-$hostname-");
1.465 albertel 5195: if ($hostname eq $name) {
5196: push(@domains,$hostdom{$id});
5197: }
5198: }
5199: return @domains;
5200: }
5201:
5202: sub current_machine_ids {
5203: my $hostname=$hostname{$perlvar{'lonHostID'}};
5204: my @ids;
5205: while( my($id, $name) = each(%hostname)) {
1.467 matthew 5206: # &logthis("-$id-$name-$hostname-");
1.465 albertel 5207: if ($hostname eq $name) {
5208: push(@ids,$id);
5209: }
5210: }
5211: return @ids;
1.31 www 5212: }
5213:
5214: # ------------------------------------------------------------- Declutters URLs
5215:
5216: sub declutter {
5217: my $thisfn=shift;
1.479 albertel 5218: $thisfn=~s/^\Q$perlvar{'lonDocRoot'}\E//;
1.31 www 5219: $thisfn=~s/^\///;
5220: $thisfn=~s/^res\///;
1.235 www 5221: $thisfn=~s/\?.+$//;
1.268 www 5222: return $thisfn;
5223: }
5224:
5225: # ------------------------------------------------------------- Clutter up URLs
5226:
5227: sub clutter {
5228: my $thisfn='/'.&declutter(shift);
1.509 albertel 5229: unless ($thisfn=~/^\/(uploaded|adm|userfiles|ext|raw|priv|public)\//) {
1.270 www 5230: $thisfn='/res'.$thisfn;
5231: }
1.31 www 5232: return $thisfn;
1.12 www 5233: }
5234:
5235: # -------------------------------------------------------- Escape Special Chars
5236:
5237: sub escape {
5238: my $str=shift;
5239: $str =~ s/(\W)/"%".unpack('H2',$1)/eg;
5240: return $str;
5241: }
5242:
5243: # ----------------------------------------------------- Un-Escape Special Chars
5244:
5245: sub unescape {
5246: my $str=shift;
5247: $str =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
5248: return $str;
5249: }
1.11 www 5250:
1.415 albertel 5251: sub mod_perl_version {
5252: if (defined($perlvar{'MODPERL2'})) {
5253: return 2;
5254: }
5255: return 1;
1.436 albertel 5256: }
5257:
5258: sub correct_line_ends {
5259: my ($result)=@_;
5260: $$result =~s/\r\n/\n/mg;
5261: $$result =~s/\r/\n/mg;
1.415 albertel 5262: }
1.1 albertel 5263: # ================================================================ Main Program
5264:
1.184 www 5265: sub goodbye {
1.204 albertel 5266: &logthis("Starting Shut down");
1.443 albertel 5267: #not converted to using infrastruture and probably shouldn't be
1.425 albertel 5268: &logthis(sprintf("%-20s is %s",'%badServerCache',scalar(%badServerCache)));
1.443 albertel 5269: #converted
1.425 albertel 5270: &logthis(sprintf("%-20s is %s",'%metacache',scalar(%metacache)));
1.443 albertel 5271: &logthis(sprintf("%-20s is %s",'%homecache',scalar(%homecache)));
1.425 albertel 5272: &logthis(sprintf("%-20s is %s",'%titlecache',scalar(%titlecache)));
5273: &logthis(sprintf("%-20s is %s",'%courseresdatacache',scalar(%courseresdatacache)));
5274: #1.1 only
5275: &logthis(sprintf("%-20s is %s",'%userresdatacache',scalar(%userresdatacache)));
1.551 albertel 5276: &logthis(sprintf("%-20s is %s",'%getsectioncache',scalar(%getsectioncache)));
1.440 www 5277: &logthis(sprintf("%-20s is %s",'%courseresversioncache',scalar(%courseresversioncache)));
5278: &logthis(sprintf("%-20s is %s",'%resversioncache',scalar(%resversioncache)));
1.184 www 5279: &flushcourselogs();
5280: &logthis("Shutting down");
1.362 albertel 5281: return DONE;
1.184 www 5282: }
5283:
1.179 www 5284: BEGIN {
1.228 harris41 5285: # ----------------------------------- Read loncapa.conf and loncapa_apache.conf
1.195 www 5286: unless ($readit) {
1.217 harris41 5287: {
1.448 albertel 5288: open(my $config,"</etc/httpd/conf/loncapa.conf");
1.217 harris41 5289:
5290: while (my $configline=<$config>) {
1.484 albertel 5291: if ($configline=~/\S/ && $configline =~ /^[^\#]*PerlSetVar/) {
1.1 albertel 5292: my ($dummy,$varname,$varvalue)=split(/\s+/,$configline);
1.8 www 5293: chomp($varvalue);
1.1 albertel 5294: $perlvar{$varname}=$varvalue;
5295: }
5296: }
1.448 albertel 5297: close($config);
1.1 albertel 5298: }
1.227 harris41 5299: {
1.448 albertel 5300: open(my $config,"</etc/httpd/conf/loncapa_apache.conf");
1.227 harris41 5301:
5302: while (my $configline=<$config>) {
5303: if ($configline =~ /^[^\#]*PerlSetVar/) {
5304: my ($dummy,$varname,$varvalue)=split(/\s+/,$configline);
5305: chomp($varvalue);
5306: $perlvar{$varname}=$varvalue;
5307: }
5308: }
1.448 albertel 5309: close($config);
1.227 harris41 5310: }
1.1 albertel 5311:
1.327 albertel 5312: # ------------------------------------------------------------ Read domain file
5313: {
5314: %domaindescription = ();
5315: %domain_auth_def = ();
5316: %domain_auth_arg_def = ();
1.448 albertel 5317: my $fh;
5318: if (open($fh,"<".$Apache::lonnet::perlvar{'lonTabDir'}.'/domain.tab')) {
1.327 albertel 5319: while (<$fh>) {
1.390 matthew 5320: next if (/^(\#|\s*$)/);
5321: # next if /^\#/;
1.327 albertel 5322: chomp;
1.403 www 5323: my ($domain, $domain_description, $def_auth, $def_auth_arg,
5324: $def_lang, $city, $longi, $lati) = split(/:/,$_);
5325: $domain_auth_def{$domain}=$def_auth;
1.327 albertel 5326: $domain_auth_arg_def{$domain}=$def_auth_arg;
1.403 www 5327: $domaindescription{$domain}=$domain_description;
5328: $domain_lang_def{$domain}=$def_lang;
5329: $domain_city{$domain}=$city;
5330: $domain_longi{$domain}=$longi;
5331: $domain_lati{$domain}=$lati;
5332:
1.448 albertel 5333: # &logthis("Domain.tab: $domain, $domain_auth_def{$domain}, $domain_auth_arg_def{$domain},$domaindescription{$domain}");
1.327 albertel 5334: # &logthis("Domain.tab: $domain ".$domaindescription{$domain} );
1.448 albertel 5335: }
1.327 albertel 5336: }
1.448 albertel 5337: close ($fh);
1.327 albertel 5338: }
5339:
5340:
1.1 albertel 5341: # ------------------------------------------------------------- Read hosts file
5342: {
1.448 albertel 5343: open(my $config,"<$perlvar{'lonTabDir'}/hosts.tab");
1.1 albertel 5344:
5345: while (my $configline=<$config>) {
1.303 matthew 5346: next if ($configline =~ /^(\#|\s*$)/);
1.154 www 5347: chomp($configline);
1.245 www 5348: my ($id,$domain,$role,$name,$ip,$domdescr)=split(/:/,$configline);
1.252 albertel 5349: if ($id && $domain && $role && $name && $ip) {
5350: $hostname{$id}=$name;
5351: $hostdom{$id}=$domain;
5352: $hostip{$id}=$ip;
1.300 albertel 5353: $iphost{$ip}=$id;
1.252 albertel 5354: if ($role eq 'library') { $libserv{$id}=$name; }
1.245 www 5355: }
1.1 albertel 5356: }
1.448 albertel 5357: close($config);
1.1 albertel 5358: }
5359:
5360: # ------------------------------------------------------ Read spare server file
5361: {
1.448 albertel 5362: open(my $config,"<$perlvar{'lonTabDir'}/spare.tab");
1.1 albertel 5363:
5364: while (my $configline=<$config>) {
5365: chomp($configline);
1.284 matthew 5366: if ($configline) {
1.1 albertel 5367: $spareid{$configline}=1;
5368: }
5369: }
1.448 albertel 5370: close($config);
1.1 albertel 5371: }
1.11 www 5372: # ------------------------------------------------------------ Read permissions
5373: {
1.448 albertel 5374: open(my $config,"<$perlvar{'lonTabDir'}/roles.tab");
1.11 www 5375:
5376: while (my $configline=<$config>) {
1.448 albertel 5377: chomp($configline);
5378: if ($configline) {
5379: my ($role,$perm)=split(/ /,$configline);
5380: if ($perm ne '') { $pr{$role}=$perm; }
5381: }
1.11 www 5382: }
1.448 albertel 5383: close($config);
1.11 www 5384: }
5385:
5386: # -------------------------------------------- Read plain texts for permissions
5387: {
1.448 albertel 5388: open(my $config,"<$perlvar{'lonTabDir'}/rolesplain.tab");
1.11 www 5389:
5390: while (my $configline=<$config>) {
1.448 albertel 5391: chomp($configline);
5392: if ($configline) {
5393: my ($short,$plain)=split(/:/,$configline);
5394: if ($plain ne '') { $prp{$short}=$plain; }
5395: }
1.135 www 5396: }
1.448 albertel 5397: close($config);
1.135 www 5398: }
5399:
5400: # ---------------------------------------------------------- Read package table
5401: {
1.448 albertel 5402: open(my $config,"<$perlvar{'lonTabDir'}/packages.tab");
1.135 www 5403:
5404: while (my $configline=<$config>) {
1.483 albertel 5405: if ($configline !~ /\S/ || $configline=~/^#/) { next; }
1.448 albertel 5406: chomp($configline);
5407: my ($short,$plain)=split(/:/,$configline);
5408: my ($pack,$name)=split(/\&/,$short);
5409: if ($plain ne '') {
5410: $packagetab{$pack.'&'.$name.'&name'}=$name;
5411: $packagetab{$short}=$plain;
5412: }
1.11 www 5413: }
1.448 albertel 5414: close($config);
1.329 matthew 5415: }
5416:
5417: # ------------- set up temporary directory
5418: {
5419: $tmpdir = $perlvar{'lonDaemons'}.'/tmp/';
5420:
1.11 www 5421: }
5422:
1.71 www 5423: %metacache=();
1.185 www 5424:
1.281 www 5425: $processmarker='_'.time.'_'.$perlvar{'lonHostID'};
1.186 www 5426: $dumpcount=0;
1.22 www 5427:
1.163 harris41 5428: &logtouch();
1.12 www 5429: &logthis('<font color=yellow>INFO: Read configuration</font>');
1.195 www 5430: $readit=1;
5431: }
1.1 albertel 5432: }
1.179 www 5433:
1.1 albertel 5434: 1;
1.191 harris41 5435: __END__
5436:
1.243 albertel 5437: =pod
5438:
1.191 harris41 5439: =head1 NAME
5440:
1.243 albertel 5441: Apache::lonnet - Subroutines to ask questions about things in the network.
1.191 harris41 5442:
5443: =head1 SYNOPSIS
5444:
1.243 albertel 5445: Invoked by other LON-CAPA modules, when they need to talk to or about objects in the network.
1.191 harris41 5446:
5447: &Apache::lonnet::SUBROUTINENAME(ARGUMENTS);
5448:
1.243 albertel 5449: Common parameters:
5450:
5451: =over 4
5452:
5453: =item *
5454:
5455: $uname : an internal username (if $cname expecting a course Id specifically)
5456:
5457: =item *
5458:
5459: $udom : a domain (if $cdom expecting a course's domain specifically)
5460:
5461: =item *
5462:
5463: $symb : a resource instance identifier
5464:
5465: =item *
5466:
5467: $namespace : the name of a .db file that contains the data needed or
5468: being set.
5469:
5470: =back
5471:
1.394 bowersj2 5472: =head1 OVERVIEW
1.191 harris41 5473:
1.394 bowersj2 5474: lonnet provides subroutines which interact with the
5475: lonc/lond (TCP) network layer of LON-CAPA. They can be used to ask
5476: about classes, users, and resources.
1.243 albertel 5477:
5478: For many of these objects you can also use this to store data about
5479: them or modify them in various ways.
1.191 harris41 5480:
1.394 bowersj2 5481: =head2 Symbs
1.191 harris41 5482:
1.394 bowersj2 5483: To identify a specific instance of a resource, LON-CAPA uses symbols
5484: or "symbs"X<symb>. These identifiers are built from the URL of the
5485: map, the resource number of the resource in the map, and the URL of
5486: the resource itself. The latter is somewhat redundant, but might help
5487: if maps change.
5488:
5489: An example is
5490:
5491: msu/korte/parts/part1.sequence___19___msu/korte/tests/part12.problem
5492:
5493: The respective map entry is
5494:
5495: <resource id="19" src="/res/msu/korte/tests/part12.problem"
5496: title="Problem 2">
5497: </resource>
5498:
5499: Symbs are used by the random number generator, as well as to store and
5500: restore data specific to a certain instance of for example a problem.
5501:
5502: =head2 Storing And Retrieving Data
5503:
5504: X<store()>X<cstore()>X<restore()>Three of the most important functions
5505: in C<lonnet.pm> are C<&Apache::lonnet::cstore()>,
5506: C<&Apache::lonnet:restore()>, and C<&Apache::lonnet::store()>, which
5507: is is the non-critical message twin of cstore. These functions are for
5508: handlers to store a perl hash to a user's permanent data space in an
5509: easy manner, and to retrieve it again on another call. It is expected
5510: that a handler would use this once at the beginning to retrieve data,
5511: and then again once at the end to send only the new data back.
5512:
5513: The data is stored in the user's data directory on the user's
5514: homeserver under the ID of the course.
5515:
5516: The hash that is returned by restore will have all of the previous
5517: value for all of the elements of the hash.
5518:
5519: Example:
5520:
5521: #creating a hash
5522: my %hash;
5523: $hash{'foo'}='bar';
5524:
5525: #storing it
5526: &Apache::lonnet::cstore(\%hash);
5527:
5528: #changing a value
5529: $hash{'foo'}='notbar';
5530:
5531: #adding a new value
5532: $hash{'bar'}='foo';
5533: &Apache::lonnet::cstore(\%hash);
5534:
5535: #retrieving the hash
5536: my %history=&Apache::lonnet::restore();
5537:
5538: #print the hash
5539: foreach my $key (sort(keys(%history))) {
5540: print("\%history{$key} = $history{$key}");
5541: }
5542:
5543: Will print out:
1.191 harris41 5544:
1.394 bowersj2 5545: %history{1:foo} = bar
5546: %history{1:keys} = foo:timestamp
5547: %history{1:timestamp} = 990455579
5548: %history{2:bar} = foo
5549: %history{2:foo} = notbar
5550: %history{2:keys} = foo:bar:timestamp
5551: %history{2:timestamp} = 990455580
5552: %history{bar} = foo
5553: %history{foo} = notbar
5554: %history{timestamp} = 990455580
5555: %history{version} = 2
5556:
5557: Note that the special hash entries C<keys>, C<version> and
5558: C<timestamp> were added to the hash. C<version> will be equal to the
5559: total number of versions of the data that have been stored. The
5560: C<timestamp> attribute will be the UNIX time the hash was
5561: stored. C<keys> is available in every historical section to list which
5562: keys were added or changed at a specific historical revision of a
5563: hash.
5564:
5565: B<Warning>: do not store the hash that restore returns directly. This
5566: will cause a mess since it will restore the historical keys as if the
5567: were new keys. I.E. 1:foo will become 1:1:foo etc.
1.191 harris41 5568:
1.394 bowersj2 5569: Calling convention:
1.191 harris41 5570:
1.394 bowersj2 5571: my %record=&Apache::lonnet::restore($symb,$courseid,$domain,$uname,$home);
5572: &Apache::lonnet::cstore(\%newrecord,$symb,$courseid,$domain,$uname,$home);
1.191 harris41 5573:
1.394 bowersj2 5574: For more detailed information, see lonnet specific documentation.
1.191 harris41 5575:
1.394 bowersj2 5576: =head1 RETURN MESSAGES
1.191 harris41 5577:
1.394 bowersj2 5578: =over 4
1.191 harris41 5579:
1.394 bowersj2 5580: =item * B<con_lost>: unable to contact remote host
1.191 harris41 5581:
1.394 bowersj2 5582: =item * B<con_delayed>: unable to contact remote host, message will be delivered
5583: when the connection is brought back up
1.191 harris41 5584:
1.394 bowersj2 5585: =item * B<con_failed>: unable to contact remote host and unable to save message
5586: for later delivery
1.191 harris41 5587:
1.394 bowersj2 5588: =item * B<error:>: an error a occured, a description of the error follows the :
1.191 harris41 5589:
1.394 bowersj2 5590: =item * B<no_such_host>: unable to fund a host associated with the user/domain
1.243 albertel 5591: that was requested
1.191 harris41 5592:
1.243 albertel 5593: =back
1.191 harris41 5594:
1.243 albertel 5595: =head1 PUBLIC SUBROUTINES
1.191 harris41 5596:
1.243 albertel 5597: =head2 Session Environment Functions
1.191 harris41 5598:
1.243 albertel 5599: =over 4
1.191 harris41 5600:
1.394 bowersj2 5601: =item *
5602: X<appenv()>
5603: B<appenv(%hash)>: the value of %hash is written to
5604: the user envirnoment file, and will be restored for each access this
5605: user makes during this session, also modifies the %ENV for the current
5606: process
1.191 harris41 5607:
5608: =item *
1.394 bowersj2 5609: X<delenv()>
5610: B<delenv($regexp)>: removes all items from the session
5611: environment file that matches the regular expression in $regexp. The
5612: values are also delted from the current processes %ENV.
1.191 harris41 5613:
1.243 albertel 5614: =back
5615:
5616: =head2 User Information
1.191 harris41 5617:
1.243 albertel 5618: =over 4
1.191 harris41 5619:
5620: =item *
1.394 bowersj2 5621: X<queryauthenticate()>
5622: B<queryauthenticate($uname,$udom)>: try to determine user's current
1.191 harris41 5623: authentication scheme
5624:
5625: =item *
1.394 bowersj2 5626: X<authenticate()>
5627: B<authenticate($uname,$upass,$udom)>: try to
5628: authenticate user from domain's lib servers (first use the current
5629: one). C<$upass> should be the users password.
1.191 harris41 5630:
5631: =item *
1.394 bowersj2 5632: X<homeserver()>
5633: B<homeserver($uname,$udom)>: find the server which has
5634: the user's directory and files (there must be only one), this caches
5635: the answer, and also caches if there is a borken connection.
1.191 harris41 5636:
5637: =item *
1.394 bowersj2 5638: X<idget()>
5639: B<idget($udom,@ids)>: find the usernames behind a list of IDs
5640: (IDs are a unique resource in a domain, there must be only 1 ID per
5641: username, and only 1 username per ID in a specific domain) (returns
5642: hash: id=>name,id=>name)
1.191 harris41 5643:
5644: =item *
1.394 bowersj2 5645: X<idrget()>
5646: B<idrget($udom,@unames)>: find the IDs behind a list of
5647: usernames (returns hash: name=>id,name=>id)
1.191 harris41 5648:
5649: =item *
1.394 bowersj2 5650: X<idput()>
5651: B<idput($udom,%ids)>: store away a list of names and associated IDs
1.191 harris41 5652:
5653: =item *
1.394 bowersj2 5654: X<rolesinit()>
5655: B<rolesinit($udom,$username,$authhost)>: get user privileges
1.243 albertel 5656:
5657: =item *
1.551 albertel 5658: X<getsection()>
5659: B<getsection($udom,$uname,$cname)>: finds the section of student in the
1.243 albertel 5660: course $cname, return section name/number or '' for "not in course"
5661: and '-1' for "no section"
5662:
5663: =item *
1.394 bowersj2 5664: X<userenvironment()>
5665: B<userenvironment($udom,$uname,@what)>: gets the values of the keys
1.243 albertel 5666: passed in @what from the requested user's environment, returns a hash
5667:
5668: =back
5669:
5670: =head2 User Roles
5671:
5672: =over 4
5673:
5674: =item *
5675:
5676: allowed($priv,$uri) : check for a user privilege; returns codes for allowed
5677: actions
5678: F: full access
5679: U,I,K: authentication modes (cxx only)
5680: '': forbidden
5681: 1: user needs to choose course
5682: 2: browse allowed
5683:
5684: =item *
5685:
5686: definerole($rolename,$sysrole,$domrole,$courole) : define role; define a custom
5687: role rolename set privileges in format of lonTabs/roles.tab for system, domain,
5688: and course level
5689:
5690: =item *
5691:
5692: plaintext($short) : return value in %prp hash (rolesplain.tab); plain text
5693: explanation of a user role term
5694:
5695: =back
5696:
5697: =head2 User Modification
5698:
5699: =over 4
5700:
5701: =item *
5702:
5703: assignrole($udom,$uname,$url,$role,$end,$start) : assign role; give a role to a
5704: user for the level given by URL. Optional start and end dates (leave empty
5705: string or zero for "no date")
1.191 harris41 5706:
5707: =item *
5708:
1.243 albertel 5709: changepass($uname,$udom,$currentpass,$newpass,$server) : attempts to
5710: change a users, password, possible return values are: ok,
5711: pwchange_failure, non_authorized, auth_mode_error, unknown_user,
5712: refused
1.191 harris41 5713:
5714: =item *
5715:
1.243 albertel 5716: modifyuserauth($udom,$uname,$umode,$upass) : modify user authentication
1.191 harris41 5717:
5718: =item *
5719:
1.243 albertel 5720: modifyuser($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene) :
5721: modify user
1.191 harris41 5722:
5723: =item *
5724:
1.286 matthew 5725: modifystudent
5726:
5727: modify a students enrollment and identification information.
5728: The course id is resolved based on the current users environment.
5729: This means the envoking user must be a course coordinator or otherwise
5730: associated with a course.
5731:
1.297 matthew 5732: This call is essentially a wrapper for lonnet::modifyuser and
5733: lonnet::modify_student_enrollment
1.286 matthew 5734:
5735: Inputs:
5736:
5737: =over 4
5738:
5739: =item B<$udom> Students loncapa domain
5740:
5741: =item B<$uname> Students loncapa login name
5742:
5743: =item B<$uid> Students id/student number
5744:
5745: =item B<$umode> Students authentication mode
5746:
5747: =item B<$upass> Students password
5748:
5749: =item B<$first> Students first name
5750:
5751: =item B<$middle> Students middle name
5752:
5753: =item B<$last> Students last name
5754:
5755: =item B<$gene> Students generation
5756:
5757: =item B<$usec> Students section in course
5758:
5759: =item B<$end> Unix time of the roles expiration
5760:
5761: =item B<$start> Unix time of the roles start date
5762:
5763: =item B<$forceid> If defined, allow $uid to be changed
5764:
5765: =item B<$desiredhome> server to use as home server for student
5766:
5767: =back
1.297 matthew 5768:
5769: =item *
5770:
5771: modify_student_enrollment
5772:
5773: Change a students enrollment status in a class. The environment variable
5774: 'role.request.course' must be defined for this function to proceed.
5775:
5776: Inputs:
5777:
5778: =over 4
5779:
5780: =item $udom, students domain
5781:
5782: =item $uname, students name
5783:
5784: =item $uid, students user id
5785:
5786: =item $first, students first name
5787:
5788: =item $middle
5789:
5790: =item $last
5791:
5792: =item $gene
5793:
5794: =item $usec
5795:
5796: =item $end
5797:
5798: =item $start
5799:
5800: =back
5801:
1.191 harris41 5802:
5803: =item *
5804:
1.243 albertel 5805: assigncustomrole($udom,$uname,$url,$rdom,$rnam,$rolename,$end,$start) : assign
5806: custom role; give a custom role to a user for the level given by URL. Specify
5807: name and domain of role author, and role name
1.191 harris41 5808:
5809: =item *
5810:
1.243 albertel 5811: revokerole($udom,$uname,$url,$role) : revoke a role for url
1.191 harris41 5812:
5813: =item *
5814:
1.243 albertel 5815: revokecustomrole($udom,$uname,$url,$role) : revoke a custom role
5816:
5817: =back
5818:
5819: =head2 Course Infomation
5820:
5821: =over 4
1.191 harris41 5822:
5823: =item *
5824:
1.243 albertel 5825: coursedescription($courseid) : course description
1.191 harris41 5826:
5827: =item *
5828:
1.243 albertel 5829: courseresdata($coursenum,$coursedomain,@which) : request for current
5830: parameter setting for a specific course, @what should be a list of
5831: parameters to ask about. This routine caches answers for 5 minutes.
5832:
5833: =back
5834:
5835: =head2 Course Modification
5836:
5837: =over 4
1.191 harris41 5838:
5839: =item *
5840:
1.243 albertel 5841: writecoursepref($courseid,%prefs) : write preferences (environment
5842: database) for a course
1.191 harris41 5843:
5844: =item *
5845:
1.243 albertel 5846: createcourse($udom,$description,$url) : make/modify course
5847:
5848: =back
5849:
5850: =head2 Resource Subroutines
5851:
5852: =over 4
1.191 harris41 5853:
5854: =item *
5855:
1.243 albertel 5856: subscribe($fname) : subscribe to a resource, returns URL if possible (probably should use repcopy instead)
1.191 harris41 5857:
5858: =item *
5859:
1.243 albertel 5860: repcopy($filename) : subscribes to the requested file, and attempts to
5861: replicate from the owning library server, Might return
5862: HTTP_SERVICE_UNAVAILABLE, HTTP_NOT_FOUND, FORBIDDEN, OK, or
5863: HTTP_BAD_REQUEST, also attempts to grab the metadata for the
5864: resource. Expects the local filesystem pathname
5865: (/home/httpd/html/res/....)
5866:
5867: =back
5868:
5869: =head2 Resource Information
5870:
5871: =over 4
1.191 harris41 5872:
5873: =item *
5874:
1.243 albertel 5875: EXT($varname,$symb,$udom,$uname) : evaluates and returns the value of
5876: a vairety of different possible values, $varname should be a request
5877: string, and the other parameters can be used to specify who and what
5878: one is asking about.
5879:
5880: Possible values for $varname are environment.lastname (or other item
5881: from the envirnment hash), user.name (or someother aspect about the
5882: user), resource.0.maxtries (or some other part and parameter of a
5883: resource)
1.204 albertel 5884:
5885: =item *
5886:
1.243 albertel 5887: directcondval($number) : get current value of a condition; reads from a state
5888: string
1.204 albertel 5889:
5890: =item *
5891:
1.243 albertel 5892: condval($condidx) : value of condition index based on state
1.204 albertel 5893:
5894: =item *
5895:
1.243 albertel 5896: metadata($uri,$what,$liburi,$prefix,$depthcount) : request a
5897: resource's metadata, $what should be either a specific key, or either
5898: 'keys' (to get a list of possible keys) or 'packages' to get a list of
5899: packages that this resource currently uses, the last 3 arguments are only used internally for recursive metadata.
5900:
5901: this function automatically caches all requests
1.191 harris41 5902:
5903: =item *
5904:
1.243 albertel 5905: metadata_query($query,$custom,$customshow) : make a metadata query against the
5906: network of library servers; returns file handle of where SQL and regex results
5907: will be stored for query
1.191 harris41 5908:
5909: =item *
5910:
1.243 albertel 5911: symbread($filename) : return symbolic list entry (filename argument optional);
5912: returns the data handle
1.191 harris41 5913:
5914: =item *
5915:
1.243 albertel 5916: symbverify($symb,$thisfn) : verifies that $symb actually exists and is
5917: a possible symb for the URL in $thisfn, returns a 1 on success, 0 on
5918: failure, user must be in a course, as it assumes the existance of the
5919: course initi hash, and uses $ENV('request.course.id'}
5920:
1.191 harris41 5921:
5922: =item *
5923:
1.243 albertel 5924: symbclean($symb) : removes versions numbers from a symb, returns the
5925: cleaned symb
1.191 harris41 5926:
5927: =item *
5928:
1.243 albertel 5929: is_on_map($uri) : checks if the $uri is somewhere on the current
5930: course map, user must be in a course for it to work.
1.191 harris41 5931:
5932: =item *
5933:
1.243 albertel 5934: numval($salt) : return random seed value (addend for rndseed)
1.191 harris41 5935:
5936: =item *
5937:
1.243 albertel 5938: rndseed($symb,$courseid,$udom,$uname) : create a random sum; returns
5939: a random seed, all arguments are optional, if they aren't sent it uses the
5940: environment to derive them. Note: if symb isn't sent and it can't get one
5941: from &symbread it will use the current time as its return value
1.191 harris41 5942:
5943: =item *
5944:
1.243 albertel 5945: ireceipt($funame,$fudom,$fucourseid,$fusymb) : return unique,
5946: unfakeable, receipt
1.191 harris41 5947:
5948: =item *
5949:
1.243 albertel 5950: receipt() : API to ireceipt working off of ENV values; given out to users
1.191 harris41 5951:
5952: =item *
5953:
1.243 albertel 5954: countacc($url) : count the number of accesses to a given URL
1.191 harris41 5955:
5956: =item *
5957:
1.243 albertel 5958: 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 5959:
5960: =item *
5961:
1.243 albertel 5962: 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 5963:
5964: =item *
5965:
1.243 albertel 5966: expirespread($uname,$udom,$stype,$usymb) : set expire date for spreadsheet
1.191 harris41 5967:
5968: =item *
5969:
1.243 albertel 5970: devalidate($symb) : devalidate temporary spreadsheet calculations,
5971: forcing spreadsheet to reevaluate the resource scores next time.
5972:
5973: =back
5974:
5975: =head2 Storing/Retreiving Data
5976:
5977: =over 4
1.191 harris41 5978:
5979: =item *
5980:
1.243 albertel 5981: store($storehash,$symb,$namespace,$udom,$uname) : stores hash permanently
5982: for this url; hashref needs to be given and should be a \%hashname; the
5983: remaining args aren't required and if they aren't passed or are '' they will
5984: be derived from the ENV
1.191 harris41 5985:
5986: =item *
5987:
1.243 albertel 5988: cstore($storehash,$symb,$namespace,$udom,$uname) : same as store but
5989: uses critical subroutine
1.191 harris41 5990:
5991: =item *
5992:
1.243 albertel 5993: restore($symb,$namespace,$udom,$uname) : returns hash for this symb;
5994: all args are optional
1.191 harris41 5995:
5996: =item *
5997:
1.243 albertel 5998: tmpstore($storehash,$symb,$namespace,$udom,$uname) : storage that
5999: works very similar to store/cstore, but all data is stored in a
6000: temporary location and can be reset using tmpreset, $storehash should
6001: be a hash reference, returns nothing on success
1.191 harris41 6002:
6003: =item *
6004:
1.243 albertel 6005: tmprestore($symb,$namespace,$udom,$uname) : storage that works very
6006: similar to restore, but all data is stored in a temporary location and
6007: can be reset using tmpreset. Returns a hash of values on success,
6008: error string otherwise.
1.191 harris41 6009:
6010: =item *
6011:
1.243 albertel 6012: tmpreset($symb,$namespace,$udom,$uname) : temporary storage reset,
6013: deltes all keys for $symb form the temporary storage hash.
1.191 harris41 6014:
6015: =item *
6016:
1.243 albertel 6017: get($namespace,$storearr,$udom,$uname) : returns hash with keys from array
6018: reference filled in from namesp ($udom and $uname are optional)
1.191 harris41 6019:
6020: =item *
6021:
1.243 albertel 6022: del($namespace,$storearr,$udom,$uname) : deletes keys out of array from
6023: namesp ($udom and $uname are optional)
1.191 harris41 6024:
6025: =item *
6026:
1.243 albertel 6027: dump($namespace,$udom,$uname,$regexp) :
6028: dumps the complete (or key matching regexp) namespace into a hash
6029: ($udom, $uname and $regexp are optional)
1.449 matthew 6030:
6031: =item *
6032:
6033: inc($namespace,$store,$udom,$uname) : increments $store in $namespace.
6034: $store can be a scalar, an array reference, or if the amount to be
6035: incremented is > 1, a hash reference.
6036:
6037: ($udom and $uname are optional)
1.191 harris41 6038:
6039: =item *
6040:
1.243 albertel 6041: put($namespace,$storehash,$udom,$uname) : stores hash in namesp
6042: ($udom and $uname are optional)
1.191 harris41 6043:
6044: =item *
6045:
1.524 raeburn 6046: putstore($namespace,$storehash,$udomain,$uname) : stores hash in namesp
6047: keys used in storehash include version information (e.g., 1:$symb:message etc.) as
6048: used in records written by &store and retrieved by &restore. This function
6049: was created for use in editing discussion posts, without incrementing the
6050: version number included in the key for a particular post. The colon
6051: separated list of attribute names (e.g., the value associated with the key
6052: 1:keys:$symb) is also generated and passed in the ampersand separated
6053: items sent to lonnet::reply().
6054:
6055: =item *
6056:
1.243 albertel 6057: cput($namespace,$storehash,$udom,$uname) : critical put
6058: ($udom and $uname are optional)
1.191 harris41 6059:
6060: =item *
6061:
1.243 albertel 6062: eget($namespace,$storearr,$udom,$uname) : returns hash with keys from array
6063: reference filled in from namesp (encrypts the return communication)
6064: ($udom and $uname are optional)
1.191 harris41 6065:
6066: =item *
6067:
1.243 albertel 6068: log($udom,$name,$home,$message) : write to permanent log for user; use
6069: critical subroutine
6070:
6071: =back
6072:
6073: =head2 Network Status Functions
6074:
6075: =over 4
1.191 harris41 6076:
6077: =item *
6078:
6079: dirlist($uri) : return directory list based on URI
6080:
6081: =item *
6082:
1.243 albertel 6083: spareserver() : find server with least workload from spare.tab
6084:
6085: =back
6086:
6087: =head2 Apache Request
6088:
6089: =over 4
1.191 harris41 6090:
6091: =item *
6092:
1.243 albertel 6093: ssi($url,%hash) : server side include, does a complete request cycle on url to
6094: localhost, posts hash
6095:
6096: =back
6097:
6098: =head2 Data to String to Data
6099:
6100: =over 4
1.191 harris41 6101:
6102: =item *
6103:
1.243 albertel 6104: hash2str(%hash) : convert a hash into a string complete with escaping and '='
6105: and '&' separators, supports elements that are arrayrefs and hashrefs
1.191 harris41 6106:
6107: =item *
6108:
1.243 albertel 6109: hashref2str($hashref) : convert a hashref into a string complete with
6110: escaping and '=' and '&' separators, supports elements that are
6111: arrayrefs and hashrefs
1.191 harris41 6112:
6113: =item *
6114:
1.243 albertel 6115: arrayref2str($arrayref) : convert an arrayref into a string complete
6116: with escaping and '&' separators, supports elements that are arrayrefs
6117: and hashrefs
1.191 harris41 6118:
6119: =item *
6120:
1.243 albertel 6121: str2hash($string) : convert string to hash using unescaping and
6122: splitting on '=' and '&', supports elements that are arrayrefs and
6123: hashrefs
1.191 harris41 6124:
6125: =item *
6126:
1.243 albertel 6127: str2array($string) : convert string to hash using unescaping and
6128: splitting on '&', supports elements that are arrayrefs and hashrefs
6129:
6130: =back
6131:
6132: =head2 Logging Routines
6133:
6134: =over 4
6135:
6136: These routines allow one to make log messages in the lonnet.log and
6137: lonnet.perm logfiles.
1.191 harris41 6138:
6139: =item *
6140:
1.243 albertel 6141: logtouch() : make sure the logfile, lonnet.log, exists
1.191 harris41 6142:
6143: =item *
6144:
1.243 albertel 6145: logthis() : append message to the normal lonnet.log file, it gets
6146: preiodically rolled over and deleted.
1.191 harris41 6147:
6148: =item *
6149:
1.243 albertel 6150: logperm() : append a permanent message to lonnet.perm.log, this log
6151: file never gets deleted by any automated portion of the system, only
6152: messages of critical importance should go in here.
6153:
6154: =back
6155:
6156: =head2 General File Helper Routines
6157:
6158: =over 4
1.191 harris41 6159:
6160: =item *
6161:
1.481 raeburn 6162: getfile($file,$caller) : two cases - requests for files in /res or in /uploaded.
6163: (a) files in /uploaded
6164: (i) If a local copy of the file exists -
6165: compares modification date of local copy with last-modified date for
6166: definitive version stored on home server for course. If local copy is
6167: stale, requests a new version from the home server and stores it.
6168: If the original has been removed from the home server, then local copy
6169: is unlinked.
6170: (ii) If local copy does not exist -
6171: requests the file from the home server and stores it.
6172:
6173: If $caller is 'uploadrep':
6174: This indicates a call from lonuploadrep.pm (PerlHeaderParserHandler phase)
6175: for request for files originally uploaded via DOCS.
6176: - returns 'ok' if fresh local copy now available, -1 otherwise.
6177:
6178: Otherwise:
6179: This indicates a call from the content generation phase of the request.
6180: - returns the entire contents of the file or -1.
6181:
6182: (b) files in /res
6183: - returns the entire contents of a file or -1;
6184: it properly subscribes to and replicates the file if neccessary.
1.191 harris41 6185:
6186: =item *
6187:
1.243 albertel 6188: filelocation($dir,$file) : returns file system location of a file
6189: based on URI; meant to be "fairly clean" absolute reference, $dir is a
6190: directory that relative $file lookups are to looked in ($dir of /a/dir
6191: and a file of ../bob will become /a/bob)
1.191 harris41 6192:
6193: =item *
6194:
6195: hreflocation($dir,$file) : returns file system location or a URL; same as
6196: filelocation except for hrefs
6197:
6198: =item *
6199:
6200: declutter() : declutters URLs (remove docroot, beginning slashes, 'res' etc)
6201:
1.243 albertel 6202: =back
6203:
6204: =head2 HTTP Helper Routines
6205:
6206: =over 4
6207:
1.191 harris41 6208: =item *
6209:
6210: escape() : unpack non-word characters into CGI-compatible hex codes
6211:
6212: =item *
6213:
6214: unescape() : pack CGI-compatible hex codes into actual non-word ASCII character
6215:
1.243 albertel 6216: =back
6217:
6218: =head1 PRIVATE SUBROUTINES
6219:
6220: =head2 Underlying communication routines (Shouldn't call)
6221:
6222: =over 4
6223:
6224: =item *
6225:
6226: subreply() : tries to pass a message to lonc, returns con_lost if incapable
6227:
6228: =item *
6229:
6230: reply() : uses subreply to send a message to remote machine, logs all failures
6231:
6232: =item *
6233:
6234: critical() : passes a critical message to another server; if cannot
6235: get through then place message in connection buffer directory and
6236: returns con_delayed, if incapable of saving message, returns
6237: con_failed
6238:
6239: =item *
6240:
6241: reconlonc() : tries to reconnect lonc client processes.
6242:
6243: =back
6244:
6245: =head2 Resource Access Logging
6246:
6247: =over 4
6248:
6249: =item *
6250:
6251: flushcourselogs() : flush (save) buffer logs and access logs
6252:
6253: =item *
6254:
6255: courselog($what) : save message for course in hash
6256:
6257: =item *
6258:
6259: courseacclog($what) : save message for course using &courselog(). Perform
6260: special processing for specific resource types (problems, exams, quizzes, etc).
6261:
1.191 harris41 6262: =item *
6263:
6264: goodbye() : flush course logs and log shutting down; it is called in srm.conf
6265: as a PerlChildExitHandler
1.243 albertel 6266:
6267: =back
6268:
6269: =head2 Other
6270:
6271: =over 4
6272:
6273: =item *
6274:
6275: symblist($mapname,%newhash) : update symbolic storage links
1.191 harris41 6276:
6277: =back
6278:
6279: =cut
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>