Annotation of loncom/lonnet/perl/lonnet.pm, revision 1.709
1.1 albertel 1: # The LearningOnline Network
2: # TCP networking package
1.12 www 3: #
1.709 ! albertel 4: # $Id: lonnet.pm,v 1.708 2006/02/08 23:47:00 raeburn Exp $
1.178 www 5: #
6: # Copyright Michigan State University Board of Trustees
7: #
8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
9: #
10: # LON-CAPA is free software; you can redistribute it and/or modify
11: # it under the terms of the GNU General Public License as published by
12: # the Free Software Foundation; either version 2 of the License, or
13: # (at your option) any later version.
14: #
15: # LON-CAPA is distributed in the hope that it will be useful,
16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18: # GNU General Public License for more details.
19: #
20: # You should have received a copy of the GNU General Public License
21: # along with LON-CAPA; if not, write to the Free Software
22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23: #
24: # /home/httpd/html/adm/gpl.txt
25: #
26: # http://www.lon-capa.org/
27: #
1.169 harris41 28: ###
29:
1.1 albertel 30: package Apache::lonnet;
31:
32: use strict;
1.8 www 33: use LWP::UserAgent();
1.15 www 34: use HTTP::Headers;
1.486 www 35: use HTTP::Date;
36: # use Date::Parse;
1.11 www 37: use vars
1.599 albertel 38: qw(%perlvar %hostname %badServerCache %iphost %spareid %hostdom
39: %libserv %pr %prp $memcache %packagetab
1.662 raeburn 40: %courselogs %accesshash %userrolehash %domainrolehash $processmarker $dumpcount
1.599 albertel 41: %coursedombuf %coursenumbuf %coursehombuf %coursedescrbuf %courseinstcodebuf %courseownerbuf
42: %domaindescription %domain_auth_def %domain_auth_arg_def
1.685 raeburn 43: %domain_lang_def %domain_city %domain_longi %domain_lati %domain_primary
44: $tmpdir $_64bit %env);
1.403 www 45:
1.1 albertel 46: use IO::Socket;
1.31 www 47: use GDBM_File;
1.8 www 48: use Apache::Constants qw(:common :http);
1.208 albertel 49: use HTML::LCParser;
1.637 raeburn 50: use HTML::Parser;
1.88 www 51: use Fcntl qw(:flock);
1.557 albertel 52: use Storable qw(lock_store lock_nstore lock_retrieve freeze thaw nfreeze);
1.539 albertel 53: use Time::HiRes qw( gettimeofday tv_interval );
1.599 albertel 54: use Cache::Memcached;
1.676 albertel 55: use Digest::MD5;
56:
1.195 www 57: my $readit;
1.550 foxr 58: my $max_connection_retries = 10; # Or some such value.
1.1 albertel 59:
1.619 albertel 60: require Exporter;
61:
62: our @ISA = qw (Exporter);
63: our @EXPORT = qw(%env);
64:
1.449 matthew 65: =pod
66:
67: =head1 Package Variables
68:
69: These are largely undocumented, so if you decipher one please note it here.
70:
71: =over 4
72:
73: =item $processmarker
74:
75: Contains the time this process was started and this servers host id.
76:
77: =item $dumpcount
78:
79: Counts the number of times a message log flush has been attempted (regardless
80: of success) by this process. Used as part of the filename when messages are
81: delayed.
82:
83: =back
84:
85: =cut
86:
87:
1.1 albertel 88: # --------------------------------------------------------------------- Logging
89:
1.163 harris41 90: sub logtouch {
91: my $execdir=$perlvar{'lonDaemons'};
1.448 albertel 92: unless (-e "$execdir/logs/lonnet.log") {
93: open(my $fh,">>$execdir/logs/lonnet.log");
1.163 harris41 94: close $fh;
95: }
96: my ($wwwuid,$wwwgid)=(getpwnam('www'))[2,3];
97: chown($wwwuid,$wwwgid,$execdir.'/logs/lonnet.log');
98: }
99:
1.1 albertel 100: sub logthis {
101: my $message=shift;
102: my $execdir=$perlvar{'lonDaemons'};
103: my $now=time;
104: my $local=localtime($now);
1.448 albertel 105: if (open(my $fh,">>$execdir/logs/lonnet.log")) {
106: print $fh "$local ($$): $message\n";
107: close($fh);
108: }
1.1 albertel 109: return 1;
110: }
111:
112: sub logperm {
113: my $message=shift;
114: my $execdir=$perlvar{'lonDaemons'};
115: my $now=time;
116: my $local=localtime($now);
1.448 albertel 117: if (open(my $fh,">>$execdir/logs/lonnet.perm.log")) {
118: print $fh "$now:$message:$local\n";
119: close($fh);
120: }
1.1 albertel 121: return 1;
122: }
123:
124: # -------------------------------------------------- Non-critical communication
125: sub subreply {
126: my ($cmd,$server)=@_;
1.704 albertel 127: my $peerfile="$perlvar{'lonSockDir'}/".$hostname{$server};
1.549 foxr 128: #
129: # With loncnew process trimming, there's a timing hole between lonc server
130: # process exit and the master server picking up the listen on the AF_UNIX
131: # socket. In that time interval, a lock file will exist:
132:
133: my $lockfile=$peerfile.".lock";
134: while (-e $lockfile) { # Need to wait for the lockfile to disappear.
135: sleep(1);
136: }
137: # At this point, either a loncnew parent is listening or an old lonc
1.550 foxr 138: # or loncnew child is listening so we can connect or everything's dead.
1.549 foxr 139: #
1.550 foxr 140: # We'll give the connection a few tries before abandoning it. If
141: # connection is not possible, we'll con_lost back to the client.
142: #
143: my $client;
144: for (my $retries = 0; $retries < $max_connection_retries; $retries++) {
145: $client=IO::Socket::UNIX->new(Peer =>"$peerfile",
146: Type => SOCK_STREAM,
147: Timeout => 10);
148: if($client) {
149: last; # Connected!
150: }
151: sleep(1); # Try again later if failed connection.
152: }
153: my $answer;
154: if ($client) {
1.704 albertel 155: print $client "sethost:$server:$cmd\n";
1.550 foxr 156: $answer=<$client>;
157: if (!$answer) { $answer="con_lost"; }
158: chomp($answer);
159: } else {
160: $answer = 'con_lost'; # Failed connection.
161: }
1.1 albertel 162: return $answer;
163: }
164:
165: sub reply {
166: my ($cmd,$server)=@_;
1.205 www 167: unless (defined($hostname{$server})) { return 'no_such_host'; }
1.1 albertel 168: my $answer=subreply($cmd,$server);
1.65 www 169: if (($answer=~/^refused/) || ($answer=~/^rejected/)) {
1.672 albertel 170: &logthis("<font color=\"blue\">WARNING:".
1.12 www 171: " $cmd to $server returned $answer</font>");
172: }
1.1 albertel 173: return $answer;
174: }
175:
176: # ----------------------------------------------------------- Send USR1 to lonc
177:
178: sub reconlonc {
179: my $peerfile=shift;
180: &logthis("Trying to reconnect for $peerfile");
181: my $loncfile="$perlvar{'lonDaemons'}/logs/lonc.pid";
1.448 albertel 182: if (open(my $fh,"<$loncfile")) {
1.1 albertel 183: my $loncpid=<$fh>;
184: chomp($loncpid);
185: if (kill 0 => $loncpid) {
186: &logthis("lonc at pid $loncpid responding, sending USR1");
187: kill USR1 => $loncpid;
188: sleep 1;
189: if (-e "$peerfile") { return; }
190: &logthis("$peerfile still not there, give it another try");
191: sleep 5;
192: if (-e "$peerfile") { return; }
1.12 www 193: &logthis(
1.672 albertel 194: "<font color=\"blue\">WARNING: $peerfile still not there, giving up</font>");
1.1 albertel 195: } else {
1.12 www 196: &logthis(
1.672 albertel 197: "<font color=\"blue\">WARNING:".
1.12 www 198: " lonc at pid $loncpid not responding, giving up</font>");
1.1 albertel 199: }
200: } else {
1.672 albertel 201: &logthis('<font color="blue">WARNING: lonc not running, giving up</font>');
1.1 albertel 202: }
203: }
204:
205: # ------------------------------------------------------ Critical communication
1.12 www 206:
1.1 albertel 207: sub critical {
208: my ($cmd,$server)=@_;
1.89 www 209: unless ($hostname{$server}) {
1.672 albertel 210: &logthis("<font color=\"blue\">WARNING:".
1.89 www 211: " Critical message to unknown server ($server)</font>");
212: return 'no_such_host';
213: }
1.1 albertel 214: my $answer=reply($cmd,$server);
215: if ($answer eq 'con_lost') {
216: &reconlonc("$perlvar{'lonSockDir'}/$server");
1.589 albertel 217: my $answer=reply($cmd,$server);
1.1 albertel 218: if ($answer eq 'con_lost') {
219: my $now=time;
220: my $middlename=$cmd;
1.5 www 221: $middlename=substr($middlename,0,16);
1.1 albertel 222: $middlename=~s/\W//g;
223: my $dfilename=
1.305 www 224: "$perlvar{'lonSockDir'}/delayed/$now.$dumpcount.$$.$middlename.$server";
225: $dumpcount++;
1.1 albertel 226: {
1.448 albertel 227: my $dfh;
228: if (open($dfh,">$dfilename")) {
229: print $dfh "$cmd\n";
230: close($dfh);
231: }
1.1 albertel 232: }
233: sleep 2;
234: my $wcmd='';
235: {
1.448 albertel 236: my $dfh;
237: if (open($dfh,"<$dfilename")) {
238: $wcmd=<$dfh>;
239: close($dfh);
240: }
1.1 albertel 241: }
242: chomp($wcmd);
1.7 www 243: if ($wcmd eq $cmd) {
1.672 albertel 244: &logthis("<font color=\"blue\">WARNING: ".
1.12 www 245: "Connection buffer $dfilename: $cmd</font>");
1.1 albertel 246: &logperm("D:$server:$cmd");
247: return 'con_delayed';
248: } else {
1.672 albertel 249: &logthis("<font color=\"red\">CRITICAL:"
1.12 www 250: ." Critical connection failed: $server $cmd</font>");
1.1 albertel 251: &logperm("F:$server:$cmd");
252: return 'con_failed';
253: }
254: }
255: }
256: return $answer;
1.405 albertel 257: }
258:
1.374 www 259: # ------------------------------------------- Transfer profile into environment
260:
261: sub transfer_profile_to_env {
262: my ($lonidsdir,$handle)=@_;
263: my @profile;
264: {
1.448 albertel 265: open(my $idf,"$lonidsdir/$handle.id");
1.374 www 266: flock($idf,LOCK_SH);
267: @profile=<$idf>;
1.448 albertel 268: close($idf);
1.374 www 269: }
270: my $envi;
1.433 matthew 271: my %Remove;
1.374 www 272: for ($envi=0;$envi<=$#profile;$envi++) {
273: chomp($profile[$envi]);
1.690 albertel 274: my ($envname,$envvalue)=split(/=/,$profile[$envi],2);
1.619 albertel 275: $env{$envname} = $envvalue;
1.433 matthew 276: if (my ($key,$time) = ($envname =~ /^(cgi\.(\d+)_\d+\.)/)) {
277: if ($time < time-300) {
278: $Remove{$key}++;
279: }
280: }
281: }
1.619 albertel 282: $env{'user.environment'} = "$lonidsdir/$handle.id";
1.433 matthew 283: foreach my $expired_key (keys(%Remove)) {
284: &delenv($expired_key);
1.374 www 285: }
1.1 albertel 286: }
287:
1.5 www 288: # ---------------------------------------------------------- Append Environment
289:
290: sub appenv {
1.6 www 291: my %newenv=@_;
1.692 albertel 292: foreach my $key (keys(%newenv)) {
293: if (($newenv{$key}=~/^user\.role/) || ($newenv{$key}=~/^user\.priv/)) {
1.672 albertel 294: &logthis("<font color=\"blue\">WARNING: ".
1.692 albertel 295: "Attempt to modify environment ".$key." to ".$newenv{$key}
1.151 www 296: .'</font>');
1.692 albertel 297: delete($newenv{$key});
1.35 www 298: } else {
1.692 albertel 299: $env{$key}=$newenv{$key};
1.35 www 300: }
1.191 harris41 301: }
1.95 www 302:
303: my $lockfh;
1.620 albertel 304: unless (open($lockfh,"$env{'user.environment'}")) {
1.448 albertel 305: return 'error: '.$!;
1.95 www 306: }
307: unless (flock($lockfh,LOCK_EX)) {
1.672 albertel 308: &logthis("<font color=\"blue\">WARNING: ".
1.95 www 309: 'Could not obtain exclusive lock in appenv: '.$!);
1.448 albertel 310: close($lockfh);
1.95 www 311: return 'error: '.$!;
312: }
313:
1.6 www 314: my @oldenv;
315: {
1.448 albertel 316: my $fh;
1.620 albertel 317: unless (open($fh,"$env{'user.environment'}")) {
1.448 albertel 318: return 'error: '.$!;
319: }
320: @oldenv=<$fh>;
321: close($fh);
1.6 www 322: }
323: for (my $i=0; $i<=$#oldenv; $i++) {
324: chomp($oldenv[$i]);
1.9 www 325: if ($oldenv[$i] ne '') {
1.690 albertel 326: my ($name,$value)=split(/=/,$oldenv[$i],2);
1.448 albertel 327: unless (defined($newenv{$name})) {
328: $newenv{$name}=$value;
329: }
1.9 www 330: }
1.6 www 331: }
332: {
1.448 albertel 333: my $fh;
1.620 albertel 334: unless (open($fh,">$env{'user.environment'}")) {
1.448 albertel 335: return 'error';
336: }
337: my $newname;
338: foreach $newname (keys %newenv) {
339: print $fh "$newname=$newenv{$newname}\n";
340: }
341: close($fh);
1.56 www 342: }
1.448 albertel 343:
344: close($lockfh);
1.56 www 345: return 'ok';
346: }
347: # ----------------------------------------------------- Delete from Environment
348:
349: sub delenv {
350: my $delthis=shift;
351: my %newenv=();
352: if (($delthis=~/user\.role/) || ($delthis=~/user\.priv/)) {
1.672 albertel 353: &logthis("<font color=\"blue\">WARNING: ".
1.56 www 354: "Attempt to delete from environment ".$delthis);
355: return 'error';
356: }
357: my @oldenv;
358: {
1.448 albertel 359: my $fh;
1.620 albertel 360: unless (open($fh,"$env{'user.environment'}")) {
1.448 albertel 361: return 'error';
362: }
363: unless (flock($fh,LOCK_SH)) {
1.672 albertel 364: &logthis("<font color=\"blue\">WARNING: ".
1.448 albertel 365: 'Could not obtain shared lock in delenv: '.$!);
366: close($fh);
367: return 'error: '.$!;
368: }
369: @oldenv=<$fh>;
370: close($fh);
1.56 www 371: }
372: {
1.448 albertel 373: my $fh;
1.620 albertel 374: unless (open($fh,">$env{'user.environment'}")) {
1.448 albertel 375: return 'error';
376: }
377: unless (flock($fh,LOCK_EX)) {
1.672 albertel 378: &logthis("<font color=\"blue\">WARNING: ".
1.448 albertel 379: 'Could not obtain exclusive lock in delenv: '.$!);
380: close($fh);
381: return 'error: '.$!;
382: }
1.692 albertel 383: foreach my $cur_key (@oldenv) {
384: if ($cur_key=~/^$delthis/) {
385: my ($key,undef) = split('=',$cur_key,2);
1.619 albertel 386: delete($env{$key});
1.473 matthew 387: } else {
1.692 albertel 388: print $fh $cur_key;
1.473 matthew 389: }
1.448 albertel 390: }
391: close($fh);
1.5 www 392: }
393: return 'ok';
1.369 albertel 394: }
395:
396: # ------------------------------------------ Find out current server userload
397: # there is a copy in lond
398: sub userload {
399: my $numusers=0;
400: {
401: opendir(LONIDS,$perlvar{'lonIDsDir'});
402: my $filename;
403: my $curtime=time;
404: while ($filename=readdir(LONIDS)) {
405: if ($filename eq '.' || $filename eq '..') {next;}
1.404 albertel 406: my ($mtime)=(stat($perlvar{'lonIDsDir'}.'/'.$filename))[9];
1.437 albertel 407: if ($curtime-$mtime < 1800) { $numusers++; }
1.369 albertel 408: }
409: closedir(LONIDS);
410: }
411: my $userloadpercent=0;
412: my $maxuserload=$perlvar{'lonUserLoadLim'};
413: if ($maxuserload) {
1.371 albertel 414: $userloadpercent=100*$numusers/$maxuserload;
1.369 albertel 415: }
1.372 albertel 416: $userloadpercent=sprintf("%.2f",$userloadpercent);
1.369 albertel 417: return $userloadpercent;
1.283 www 418: }
419:
420: # ------------------------------------------ Fight off request when overloaded
421:
422: sub overloaderror {
423: my ($r,$checkserver)=@_;
424: unless ($checkserver) { $checkserver=$perlvar{'lonHostID'}; }
425: my $loadavg;
426: if ($checkserver eq $perlvar{'lonHostID'}) {
1.448 albertel 427: open(my $loadfile,'/proc/loadavg');
1.283 www 428: $loadavg=<$loadfile>;
429: $loadavg =~ s/\s.*//g;
1.285 matthew 430: $loadavg = 100*$loadavg/$perlvar{'lonLoadLim'};
1.448 albertel 431: close($loadfile);
1.283 www 432: } else {
433: $loadavg=&reply('load',$checkserver);
434: }
1.285 matthew 435: my $overload=$loadavg-100;
1.283 www 436: if ($overload>0) {
1.285 matthew 437: $r->err_headers_out->{'Retry-After'}=$overload;
1.283 www 438: $r->log_error('Overload of '.$overload.' on '.$checkserver);
1.554 www 439: return 413;
1.283 www 440: }
441: return '';
1.5 www 442: }
1.1 albertel 443:
444: # ------------------------------ Find server with least workload from spare.tab
1.11 www 445:
1.1 albertel 446: sub spareserver {
1.670 albertel 447: my ($loadpercent,$userloadpercent,$want_server_name) = @_;
1.1 albertel 448: my $tryserver;
449: my $spareserver='';
1.370 albertel 450: if ($userloadpercent !~ /\d/) { $userloadpercent=0; }
451: my $lowestserver=$loadpercent > $userloadpercent?
452: $loadpercent : $userloadpercent;
1.670 albertel 453: foreach $tryserver (keys(%spareid)) {
454: my $loadans=&reply('load',$tryserver);
455: my $userloadans=&reply('userload',$tryserver);
1.411 albertel 456: if ($loadans !~ /\d/ && $userloadans !~ /\d/) {
457: next; #didn't get a number from the server
458: }
459: my $answer;
460: if ($loadans =~ /\d/) {
461: if ($userloadans =~ /\d/) {
462: #both are numbers, pick the bigger one
463: $answer=$loadans > $userloadans?
464: $loadans : $userloadans;
465: } else {
466: $answer = $loadans;
467: }
468: } else {
469: $answer = $userloadans;
470: }
471: if (($answer =~ /\d/) && ($answer<$lowestserver)) {
1.670 albertel 472: if ($want_server_name) {
473: $spareserver=$tryserver;
474: } else {
475: $spareserver="http://$hostname{$tryserver}";
476: }
1.411 albertel 477: $lowestserver=$answer;
478: }
1.370 albertel 479: }
1.1 albertel 480: return $spareserver;
1.202 matthew 481: }
482:
483: # --------------------------------------------- Try to change a user's password
484:
485: sub changepass {
486: my ($uname,$udom,$currentpass,$newpass,$server)=@_;
487: $currentpass = &escape($currentpass);
488: $newpass = &escape($newpass);
489: my $answer = reply("encrypt:passwd:$udom:$uname:$currentpass:$newpass",
490: $server);
491: if (! $answer) {
492: &logthis("No reply on password change request to $server ".
493: "by $uname in domain $udom.");
494: } elsif ($answer =~ "^ok") {
495: &logthis("$uname in $udom successfully changed their password ".
496: "on $server.");
497: } elsif ($answer =~ "^pwchange_failure") {
498: &logthis("$uname in $udom was unable to change their password ".
499: "on $server. The action was blocked by either lcpasswd ".
500: "or pwchange");
501: } elsif ($answer =~ "^non_authorized") {
502: &logthis("$uname in $udom did not get their password correct when ".
503: "attempting to change it on $server.");
504: } elsif ($answer =~ "^auth_mode_error") {
505: &logthis("$uname in $udom attempted to change their password despite ".
506: "not being locally or internally authenticated on $server.");
507: } elsif ($answer =~ "^unknown_user") {
508: &logthis("$uname in $udom attempted to change their password ".
509: "on $server but were unable to because $server is not ".
510: "their home server.");
511: } elsif ($answer =~ "^refused") {
512: &logthis("$server refused to change $uname in $udom password because ".
513: "it was sent an unencrypted request to change the password.");
514: }
515: return $answer;
1.1 albertel 516: }
517:
1.169 harris41 518: # ----------------------- Try to determine user's current authentication scheme
519:
520: sub queryauthenticate {
521: my ($uname,$udom)=@_;
1.456 albertel 522: my $uhome=&homeserver($uname,$udom);
523: if (!$uhome) {
524: &logthis("User $uname at $udom is unknown when looking for authentication mechanism");
525: return 'no_host';
526: }
527: my $answer=reply("encrypt:currentauth:$udom:$uname",$uhome);
528: if ($answer =~ /^(unknown_user|refused|con_lost)/) {
529: &logthis("User $uname at $udom threw error $answer when checking authentication mechanism");
1.169 harris41 530: }
1.456 albertel 531: return $answer;
1.169 harris41 532: }
533:
1.1 albertel 534: # --------- Try to authenticate user from domain's lib servers (first this one)
1.11 www 535:
1.1 albertel 536: sub authenticate {
537: my ($uname,$upass,$udom)=@_;
1.12 www 538: $upass=escape($upass);
1.199 www 539: $uname=~s/\W//g;
1.471 albertel 540: my $uhome=&homeserver($uname,$udom);
541: if (!$uhome) {
542: &logthis("User $uname at $udom is unknown in authenticate");
543: return 'no_host';
1.1 albertel 544: }
1.471 albertel 545: my $answer=reply("encrypt:auth:$udom:$uname:$upass",$uhome);
546: if ($answer eq 'authorized') {
547: &logthis("User $uname at $udom authorized by $uhome");
548: return $uhome;
549: }
550: if ($answer eq 'non_authorized') {
551: &logthis("User $uname at $udom rejected by $uhome");
552: return 'no_host';
1.9 www 553: }
1.471 albertel 554: &logthis("User $uname at $udom threw error $answer when checking authentication mechanism");
1.1 albertel 555: return 'no_host';
556: }
557:
558: # ---------------------- Find the homebase for a user from domain's lib servers
1.11 www 559:
1.599 albertel 560: my %homecache;
1.1 albertel 561: sub homeserver {
1.230 stredwic 562: my ($uname,$udom,$ignoreBadCache)=@_;
1.1 albertel 563: my $index="$uname:$udom";
1.426 albertel 564:
1.599 albertel 565: if (exists($homecache{$index})) { return $homecache{$index}; }
1.1 albertel 566: my $tryserver;
567: foreach $tryserver (keys %libserv) {
1.230 stredwic 568: next if ($ignoreBadCache ne 'true' &&
1.231 stredwic 569: exists($badServerCache{$tryserver}));
1.1 albertel 570: if ($hostdom{$tryserver} eq $udom) {
571: my $answer=reply("home:$udom:$uname",$tryserver);
572: if ($answer eq 'found') {
1.599 albertel 573: return $homecache{$index}=$tryserver;
1.231 stredwic 574: } elsif ($answer eq 'no_host') {
575: $badServerCache{$tryserver}=1;
1.221 matthew 576: }
1.1 albertel 577: }
578: }
579: return 'no_host';
1.70 www 580: }
581:
582: # ------------------------------------- Find the usernames behind a list of IDs
583:
584: sub idget {
585: my ($udom,@ids)=@_;
586: my %returnhash=();
587:
588: my $tryserver;
589: foreach $tryserver (keys %libserv) {
590: if ($hostdom{$tryserver} eq $udom) {
591: my $idlist=join('&',@ids);
592: $idlist=~tr/A-Z/a-z/;
593: my $reply=&reply("idget:$udom:".$idlist,$tryserver);
594: my @answer=();
1.76 www 595: if (($reply ne 'con_lost') && ($reply!~/^error\:/)) {
1.70 www 596: @answer=split(/\&/,$reply);
597: } ;
598: my $i;
599: for ($i=0;$i<=$#ids;$i++) {
600: if ($answer[$i]) {
601: $returnhash{$ids[$i]}=$answer[$i];
602: }
603: }
604: }
605: }
606: return %returnhash;
607: }
608:
609: # ------------------------------------- Find the IDs behind a list of usernames
610:
611: sub idrget {
612: my ($udom,@unames)=@_;
613: my %returnhash=();
1.191 harris41 614: foreach (@unames) {
1.70 www 615: $returnhash{$_}=(&userenvironment($udom,$_,'id'))[1];
1.191 harris41 616: }
1.70 www 617: return %returnhash;
618: }
619:
620: # ------------------------------- Store away a list of names and associated IDs
621:
622: sub idput {
623: my ($udom,%ids)=@_;
624: my %servers=();
1.191 harris41 625: foreach (keys %ids) {
1.487 albertel 626: &cput('environment',{'id'=>$ids{$_}},$udom,$_);
1.70 www 627: my $uhom=&homeserver($_,$udom);
628: if ($uhom ne 'no_host') {
629: my $id=&escape($ids{$_});
630: $id=~tr/A-Z/a-z/;
631: my $unam=&escape($_);
632: if ($servers{$uhom}) {
633: $servers{$uhom}.='&'.$id.'='.$unam;
634: } else {
635: $servers{$uhom}=$id.'='.$unam;
636: }
637: }
1.191 harris41 638: }
639: foreach (keys %servers) {
1.70 www 640: &critical('idput:'.$udom.':'.$servers{$_},$_);
1.191 harris41 641: }
1.344 www 642: }
643:
644: # --------------------------------------------------- Assign a key to a student
645:
646: sub assign_access_key {
1.364 www 647: #
648: # a valid key looks like uname:udom#comments
649: # comments are being appended
650: #
1.498 www 651: my ($ckey,$kdom,$knum,$cdom,$cnum,$udom,$uname,$logentry)=@_;
652: $kdom=
1.620 albertel 653: $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($kdom));
1.498 www 654: $knum=
1.620 albertel 655: $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($knum));
1.344 www 656: $cdom=
1.620 albertel 657: $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($cdom));
1.344 www 658: $cnum=
1.620 albertel 659: $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($cnum));
660: $udom=$env{'user.name'} unless (defined($udom));
661: $uname=$env{'user.domain'} unless (defined($uname));
1.498 www 662: my %existing=&get('accesskeys',[$ckey],$kdom,$knum);
1.364 www 663: if (($existing{$ckey}=~/^\#(.*)$/) || # - new key
1.479 albertel 664: ($existing{$ckey}=~/^\Q$uname\E\:\Q$udom\E\#(.*)$/)) {
1.364 www 665: # assigned to this person
666: # - this should not happen,
1.345 www 667: # unless something went wrong
668: # the first time around
669: # ready to assign
1.364 www 670: $logentry=$1.'; '.$logentry;
1.496 www 671: if (&put('accesskeys',{$ckey=>$uname.':'.$udom.'#'.$logentry},
1.498 www 672: $kdom,$knum) eq 'ok') {
1.345 www 673: # key now belongs to user
1.346 www 674: my $envkey='key.'.$cdom.'_'.$cnum;
1.345 www 675: if (&put('environment',{$envkey => $ckey}) eq 'ok') {
676: &appenv('environment.'.$envkey => $ckey);
677: return 'ok';
678: } else {
679: return
680: 'error: Count not permanently assign key, will need to be re-entered later.';
681: }
682: } else {
683: return 'error: Could not assign key, try again later.';
684: }
1.364 www 685: } elsif (!$existing{$ckey}) {
1.345 www 686: # the key does not exist
687: return 'error: The key does not exist';
688: } else {
689: # the key is somebody else's
690: return 'error: The key is already in use';
691: }
1.344 www 692: }
693:
1.364 www 694: # ------------------------------------------ put an additional comment on a key
695:
696: sub comment_access_key {
697: #
698: # a valid key looks like uname:udom#comments
699: # comments are being appended
700: #
701: my ($ckey,$cdom,$cnum,$logentry)=@_;
702: $cdom=
1.620 albertel 703: $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($cdom));
1.364 www 704: $cnum=
1.620 albertel 705: $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($cnum));
1.364 www 706: my %existing=&get('accesskeys',[$ckey],$cdom,$cnum);
707: if ($existing{$ckey}) {
708: $existing{$ckey}.='; '.$logentry;
709: # ready to assign
1.367 www 710: if (&put('accesskeys',{$ckey=>$existing{$ckey}},
1.364 www 711: $cdom,$cnum) eq 'ok') {
712: return 'ok';
713: } else {
714: return 'error: Count not store comment.';
715: }
716: } else {
717: # the key does not exist
718: return 'error: The key does not exist';
719: }
720: }
721:
1.344 www 722: # ------------------------------------------------------ Generate a set of keys
723:
724: sub generate_access_keys {
1.364 www 725: my ($number,$cdom,$cnum,$logentry)=@_;
1.344 www 726: $cdom=
1.620 albertel 727: $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($cdom));
1.344 www 728: $cnum=
1.620 albertel 729: $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($cnum));
1.361 www 730: unless (&allowed('mky',$cdom)) { return 0; }
1.344 www 731: unless (($cdom) && ($cnum)) { return 0; }
732: if ($number>10000) { return 0; }
733: sleep(2); # make sure don't get same seed twice
734: srand(time()^($$+($$<<15))); # from "Programming Perl"
735: my $total=0;
736: for (my $i=1;$i<=$number;$i++) {
737: my $newkey=sprintf("%lx",int(100000*rand)).'-'.
738: sprintf("%lx",int(100000*rand)).'-'.
739: sprintf("%lx",int(100000*rand));
740: $newkey=~s/1/g/g; # folks mix up 1 and l
741: $newkey=~s/0/h/g; # and also 0 and O
742: my %existing=&get('accesskeys',[$newkey],$cdom,$cnum);
743: if ($existing{$newkey}) {
744: $i--;
745: } else {
1.364 www 746: if (&put('accesskeys',
747: { $newkey => '# generated '.localtime().
1.620 albertel 748: ' by '.$env{'user.name'}.'@'.$env{'user.domain'}.
1.364 www 749: '; '.$logentry },
750: $cdom,$cnum) eq 'ok') {
1.344 www 751: $total++;
752: }
753: }
754: }
1.620 albertel 755: &log($env{'user.domain'},$env{'user.name'},$env{'user.home'},
1.344 www 756: 'Generated '.$total.' keys for '.$cnum.' at '.$cdom);
757: return $total;
758: }
759:
760: # ------------------------------------------------------- Validate an accesskey
761:
762: sub validate_access_key {
763: my ($ckey,$cdom,$cnum,$udom,$uname)=@_;
764: $cdom=
1.620 albertel 765: $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($cdom));
1.344 www 766: $cnum=
1.620 albertel 767: $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($cnum));
768: $udom=$env{'user.domain'} unless (defined($udom));
769: $uname=$env{'user.name'} unless (defined($uname));
1.345 www 770: my %existing=&get('accesskeys',[$ckey],$cdom,$cnum);
1.479 albertel 771: return ($existing{$ckey}=~/^\Q$uname\E\:\Q$udom\E\#/);
1.70 www 772: }
773:
774: # ------------------------------------- Find the section of student in a course
1.652 albertel 775: sub devalidate_getsection_cache {
776: my ($udom,$unam,$courseid)=@_;
777: $courseid=~s/\_/\//g;
778: $courseid=~s/^(\w)/\/$1/;
779: my $hashid="$udom:$unam:$courseid";
780: &devalidate_cache_new('getsection',$hashid);
781: }
1.298 matthew 782:
783: sub getsection {
784: my ($udom,$unam,$courseid)=@_;
1.599 albertel 785: my $cachetime=1800;
1.298 matthew 786: $courseid=~s/\_/\//g;
787: $courseid=~s/^(\w)/\/$1/;
1.551 albertel 788:
789: my $hashid="$udom:$unam:$courseid";
1.599 albertel 790: my ($result,$cached)=&is_cached_new('getsection',$hashid);
1.551 albertel 791: if (defined($cached)) { return $result; }
792:
1.298 matthew 793: my %Pending;
794: my %Expired;
795: #
796: # Each role can either have not started yet (pending), be active,
797: # or have expired.
798: #
799: # If there is an active role, we are done.
800: #
801: # If there is more than one role which has not started yet,
802: # choose the one which will start sooner
803: # If there is one role which has not started yet, return it.
804: #
805: # If there is more than one expired role, choose the one which ended last.
806: # If there is a role which has expired, return it.
807: #
808: foreach (split(/\&/,&reply('dump:'.$udom.':'.$unam.':roles',
809: &homeserver($unam,$udom)))) {
810: my ($key,$value)=split(/\=/,$_);
811: $key=&unescape($key);
1.479 albertel 812: next if ($key !~/^\Q$courseid\E(?:\/)*(\w+)*\_st$/);
1.298 matthew 813: my $section=$1;
814: if ($key eq $courseid.'_st') { $section=''; }
815: my ($dummy,$end,$start)=split(/\_/,&unescape($value));
816: my $now=time;
1.548 albertel 817: if (defined($end) && $end && ($now > $end)) {
1.298 matthew 818: $Expired{$end}=$section;
819: next;
820: }
1.548 albertel 821: if (defined($start) && $start && ($now < $start)) {
1.298 matthew 822: $Pending{$start}=$section;
823: next;
824: }
1.599 albertel 825: return &do_cache_new('getsection',$hashid,$section,$cachetime);
1.298 matthew 826: }
827: #
828: # Presumedly there will be few matching roles from the above
829: # loop and the sorting time will be negligible.
830: if (scalar(keys(%Pending))) {
831: my ($time) = sort {$a <=> $b} keys(%Pending);
1.599 albertel 832: return &do_cache_new('getsection',$hashid,$Pending{$time},$cachetime);
1.298 matthew 833: }
834: if (scalar(keys(%Expired))) {
835: my @sorted = sort {$a <=> $b} keys(%Expired);
836: my $time = pop(@sorted);
1.599 albertel 837: return &do_cache_new('getsection',$hashid,$Expired{$time},$cachetime);
1.298 matthew 838: }
1.599 albertel 839: return &do_cache_new('getsection',$hashid,'-1',$cachetime);
1.298 matthew 840: }
1.70 www 841:
1.599 albertel 842: sub save_cache {
1.628 albertel 843: my ($r)=@_;
844: if (! $r->is_initial_req()) { return DECLINED; }
1.599 albertel 845: &purge_remembered();
1.620 albertel 846: undef(%env);
1.628 albertel 847: return OK;
1.599 albertel 848: }
1.452 albertel 849:
1.599 albertel 850: my $to_remember=-1;
851: my %remembered;
852: my %accessed;
853: my $kicks=0;
854: my $hits=0;
855: sub devalidate_cache_new {
856: my ($name,$id,$debug) = @_;
857: if ($debug) { &Apache::lonnet::logthis("deleting $name:$id"); }
858: $id=&escape($name.':'.$id);
859: $memcache->delete($id);
860: delete($remembered{$id});
861: delete($accessed{$id});
862: }
863:
864: sub is_cached_new {
865: my ($name,$id,$debug) = @_;
866: $id=&escape($name.':'.$id);
867: if (exists($remembered{$id})) {
868: if ($debug) { &Apache::lonnet::logthis("Earyl return $id of $remembered{$id} "); }
869: $accessed{$id}=[&gettimeofday()];
870: $hits++;
871: return ($remembered{$id},1);
872: }
873: my $value = $memcache->get($id);
874: if (!(defined($value))) {
875: if ($debug) { &Apache::lonnet::logthis("getting $id is not defined"); }
1.417 albertel 876: return (undef,undef);
1.416 albertel 877: }
1.599 albertel 878: if ($value eq '__undef__') {
879: if ($debug) { &Apache::lonnet::logthis("getting $id is __undef__"); }
880: $value=undef;
881: }
882: &make_room($id,$value,$debug);
883: if ($debug) { &Apache::lonnet::logthis("getting $id is $value"); }
884: return ($value,1);
885: }
886:
887: sub do_cache_new {
888: my ($name,$id,$value,$time,$debug) = @_;
889: $id=&escape($name.':'.$id);
890: my $setvalue=$value;
891: if (!defined($setvalue)) {
892: $setvalue='__undef__';
893: }
1.623 albertel 894: if (!defined($time) ) {
895: $time=600;
896: }
1.599 albertel 897: if ($debug) { &Apache::lonnet::logthis("Setting $id to $value"); }
1.600 albertel 898: $memcache->set($id,$setvalue,$time);
899: # need to make a copy of $value
900: #&make_room($id,$value,$debug);
1.599 albertel 901: return $value;
902: }
903:
904: sub make_room {
905: my ($id,$value,$debug)=@_;
906: $remembered{$id}=$value;
907: if ($to_remember<0) { return; }
908: $accessed{$id}=[&gettimeofday()];
909: if (scalar(keys(%remembered)) <= $to_remember) { return; }
910: my $to_kick;
911: my $max_time=0;
912: foreach my $other (keys(%accessed)) {
913: if (&tv_interval($accessed{$other}) > $max_time) {
914: $to_kick=$other;
915: $max_time=&tv_interval($accessed{$other});
916: }
917: }
918: delete($remembered{$to_kick});
919: delete($accessed{$to_kick});
920: $kicks++;
921: if ($debug) { &logthis("kicking $to_kick $max_time $kicks\n"); }
1.541 albertel 922: return;
923: }
924:
1.599 albertel 925: sub purge_remembered {
1.604 albertel 926: #&logthis("Tossing ".scalar(keys(%remembered)));
927: #&logthis(sprintf("%-20s is %s",'%remembered',length(&freeze(\%remembered))));
1.599 albertel 928: undef(%remembered);
929: undef(%accessed);
1.428 albertel 930: }
1.70 www 931: # ------------------------------------- Read an entry from a user's environment
932:
933: sub userenvironment {
934: my ($udom,$unam,@what)=@_;
935: my %returnhash=();
936: my @answer=split(/\&/,
937: &reply('get:'.$udom.':'.$unam.':environment:'.join('&',@what),
938: &homeserver($unam,$udom)));
939: my $i;
940: for ($i=0;$i<=$#what;$i++) {
941: $returnhash{$what[$i]}=&unescape($answer[$i]);
942: }
943: return %returnhash;
1.1 albertel 944: }
945:
1.617 albertel 946: # ---------------------------------------------------------- Get a studentphoto
947: sub studentphoto {
948: my ($udom,$unam,$ext) = @_;
949: my $home=&Apache::lonnet::homeserver($unam,$udom);
1.706 raeburn 950: if (defined($env{'request.course.id'})) {
1.708 raeburn 951: if ($env{'course.'.$env{'request.course.id'}.'.internal.showphoto'}) {
1.706 raeburn 952: if ($udom eq $env{'course.'.$env{'request.course.id'}.'.domain'}) {
953: return(&retrievestudentphoto($udom,$unam,$ext));
954: } else {
955: my ($result,$perm_reqd)=
1.707 albertel 956: &Apache::lonnet::auto_photo_permission($unam,$udom);
1.706 raeburn 957: if ($result eq 'ok') {
958: if (!($perm_reqd eq 'yes')) {
959: return(&retrievestudentphoto($udom,$unam,$ext));
960: }
961: }
962: }
963: }
964: } else {
965: my ($result,$perm_reqd) =
1.707 albertel 966: &Apache::lonnet::auto_photo_permission($unam,$udom);
1.706 raeburn 967: if ($result eq 'ok') {
968: if (!($perm_reqd eq 'yes')) {
969: return(&retrievestudentphoto($udom,$unam,$ext));
970: }
971: }
972: }
973: return '/adm/lonKaputt/lonlogo_broken.gif';
974: }
975:
976: sub retrievestudentphoto {
977: my ($udom,$unam,$ext,$type) = @_;
978: my $home=&Apache::lonnet::homeserver($unam,$udom);
979: my $ret=&Apache::lonnet::reply("studentphoto:$udom:$unam:$ext:$type",$home);
980: if ($ret eq 'ok') {
981: my $url="/uploaded/$udom/$unam/internal/studentphoto.$ext";
982: if ($type eq 'thumbnail') {
983: $url="/uploaded/$udom/$unam/internal/studentphoto_tn.$ext";
984: }
985: my $tokenurl=&Apache::lonnet::tokenwrapper($url);
986: return $tokenurl;
987: } else {
988: if ($type eq 'thumbnail') {
989: return '/adm/lonKaputt/genericstudent_tn.gif';
990: } else {
991: return '/adm/lonKaputt/lonlogo_broken.gif';
992: }
1.617 albertel 993: }
994: }
995:
1.263 www 996: # -------------------------------------------------------------------- New chat
997:
998: sub chatsend {
999: my ($newentry,$anon)=@_;
1.620 albertel 1000: my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
1001: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1002: my $chome=$env{'course.'.$env{'request.course.id'}.'.home'};
1.263 www 1003: &reply('chatsend:'.$cdom.':'.$cnum.':'.
1.620 albertel 1004: &escape($env{'user.domain'}.':'.$env{'user.name'}.':'.$anon.':'.
1.263 www 1005: &escape($newentry)),$chome);
1.292 www 1006: }
1007:
1008: # ------------------------------------------ Find current version of a resource
1009:
1010: sub getversion {
1011: my $fname=&clutter(shift);
1012: unless ($fname=~/^\/res\//) { return -1; }
1013: return ¤tversion(&filelocation('',$fname));
1014: }
1015:
1016: sub currentversion {
1017: my $fname=shift;
1.599 albertel 1018: my ($result,$cached)=&is_cached_new('resversion',$fname);
1.440 www 1019: if (defined($cached)) { return $result; }
1.292 www 1020: my $author=$fname;
1021: $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
1022: my ($udom,$uname)=split(/\//,$author);
1023: my $home=homeserver($uname,$udom);
1024: if ($home eq 'no_host') {
1025: return -1;
1026: }
1027: my $answer=reply("currentversion:$fname",$home);
1028: if (($answer eq 'con_lost') || ($answer eq 'rejected')) {
1029: return -1;
1030: }
1.599 albertel 1031: return &do_cache_new('resversion',$fname,$answer,600);
1.263 www 1032: }
1033:
1.1 albertel 1034: # ----------------------------- Subscribe to a resource, return URL if possible
1.11 www 1035:
1.1 albertel 1036: sub subscribe {
1037: my $fname=shift;
1.312 www 1038: if ($fname=~/\/(aboutme|syllabus|bulletinboard|smppg)$/) { return ''; }
1.532 albertel 1039: $fname=~s/[\n\r]//g;
1.1 albertel 1040: my $author=$fname;
1041: $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
1042: my ($udom,$uname)=split(/\//,$author);
1043: my $home=homeserver($uname,$udom);
1.335 albertel 1044: if ($home eq 'no_host') {
1045: return 'not_found';
1.1 albertel 1046: }
1047: my $answer=reply("sub:$fname",$home);
1.64 www 1048: if (($answer eq 'con_lost') || ($answer eq 'rejected')) {
1049: $answer.=' by '.$home;
1050: }
1.1 albertel 1051: return $answer;
1052: }
1053:
1.8 www 1054: # -------------------------------------------------------------- Replicate file
1055:
1056: sub repcopy {
1057: my $filename=shift;
1.23 www 1058: $filename=~s/\/+/\//g;
1.607 raeburn 1059: if ($filename=~m|^/home/httpd/html/adm/|) { return 'ok'; }
1060: if ($filename=~m|^/home/httpd/html/lonUsers/|) { return 'ok'; }
1.538 albertel 1061: if ($filename=~m|^/home/httpd/html/userfiles/| or
1.609 banghart 1062: $filename=~m -^/*(uploaded|editupload)/-) {
1.538 albertel 1063: return &repcopy_userfile($filename);
1064: }
1.532 albertel 1065: $filename=~s/[\n\r]//g;
1.8 www 1066: my $transname="$filename.in.transfer";
1.607 raeburn 1067: if ((-e $filename) || (-e $transname)) { return 'ok'; }
1.8 www 1068: my $remoteurl=subscribe($filename);
1.64 www 1069: if ($remoteurl =~ /^con_lost by/) {
1070: &logthis("Subscribe returned $remoteurl: $filename");
1.607 raeburn 1071: return 'unavailable';
1.8 www 1072: } elsif ($remoteurl eq 'not_found') {
1.441 albertel 1073: #&logthis("Subscribe returned not_found: $filename");
1.607 raeburn 1074: return 'not_found';
1.64 www 1075: } elsif ($remoteurl =~ /^rejected by/) {
1076: &logthis("Subscribe returned $remoteurl: $filename");
1.607 raeburn 1077: return 'forbidden';
1.20 www 1078: } elsif ($remoteurl eq 'directory') {
1.607 raeburn 1079: return 'ok';
1.8 www 1080: } else {
1.290 www 1081: my $author=$filename;
1082: $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
1083: my ($udom,$uname)=split(/\//,$author);
1084: my $home=homeserver($uname,$udom);
1085: unless ($home eq $perlvar{'lonHostID'}) {
1.8 www 1086: my @parts=split(/\//,$filename);
1087: my $path="/$parts[1]/$parts[2]/$parts[3]/$parts[4]";
1088: if ($path ne "$perlvar{'lonDocRoot'}/res") {
1089: &logthis("Malconfiguration for replication: $filename");
1.607 raeburn 1090: return 'bad_request';
1.8 www 1091: }
1092: my $count;
1093: for ($count=5;$count<$#parts;$count++) {
1094: $path.="/$parts[$count]";
1095: if ((-e $path)!=1) {
1096: mkdir($path,0777);
1097: }
1098: }
1099: my $ua=new LWP::UserAgent;
1100: my $request=new HTTP::Request('GET',"$remoteurl");
1101: my $response=$ua->request($request,$transname);
1102: if ($response->is_error()) {
1103: unlink($transname);
1104: my $message=$response->status_line;
1.672 albertel 1105: &logthis("<font color=\"blue\">WARNING:"
1.12 www 1106: ." LWP get: $message: $filename</font>");
1.607 raeburn 1107: return 'unavailable';
1.8 www 1108: } else {
1.16 www 1109: if ($remoteurl!~/\.meta$/) {
1110: my $mrequest=new HTTP::Request('GET',$remoteurl.'.meta');
1111: my $mresponse=$ua->request($mrequest,$filename.'.meta');
1112: if ($mresponse->is_error()) {
1113: unlink($filename.'.meta');
1114: &logthis(
1.672 albertel 1115: "<font color=\"yellow\">INFO: No metadata: $filename</font>");
1.16 www 1116: }
1117: }
1.8 www 1118: rename($transname,$filename);
1.607 raeburn 1119: return 'ok';
1.8 www 1120: }
1.290 www 1121: }
1.8 www 1122: }
1.330 www 1123: }
1124:
1125: # ------------------------------------------------ Get server side include body
1126: sub ssi_body {
1.381 albertel 1127: my ($filelink,%form)=@_;
1.606 matthew 1128: if (! exists($form{'LONCAPA_INTERNAL_no_discussion'})) {
1129: $form{'LONCAPA_INTERNAL_no_discussion'}='true';
1130: }
1.330 www 1131: my $output=($filelink=~/^http\:/?&externalssi($filelink):
1.381 albertel 1132: &ssi($filelink,%form));
1.565 albertel 1133: $output=~s|//(\s*<!--)? BEGIN LON-CAPA Internal.+// END LON-CAPA Internal\s*(-->)?\s||gs;
1.451 albertel 1134: $output=~s/^.*?\<body[^\>]*\>//si;
1135: $output=~s/(.*)\<\/body\s*\>.*?$/$1/si;
1.330 www 1136: return $output;
1.8 www 1137: }
1138:
1.15 www 1139: # --------------------------------------------------------- Server Side Include
1140:
1141: sub ssi {
1142:
1.23 www 1143: my ($fn,%form)=@_;
1.15 www 1144:
1145: my $ua=new LWP::UserAgent;
1.23 www 1146:
1147: my $request;
1148:
1149: if (%form) {
1150: $request=new HTTP::Request('POST',"http://".$ENV{'HTTP_HOST'}.$fn);
1.201 albertel 1151: $request->content(join('&',map { &escape($_).'='.&escape($form{$_}) } keys %form));
1.23 www 1152: } else {
1153: $request=new HTTP::Request('GET',"http://".$ENV{'HTTP_HOST'}.$fn);
1154: }
1155:
1.15 www 1156: $request->header(Cookie => $ENV{'HTTP_COOKIE'});
1157: my $response=$ua->request($request);
1158:
1.324 www 1159: return $response->content;
1160: }
1161:
1162: sub externalssi {
1163: my ($url)=@_;
1164: my $ua=new LWP::UserAgent;
1165: my $request=new HTTP::Request('GET',$url);
1166: my $response=$ua->request($request);
1.15 www 1167: return $response->content;
1168: }
1.254 www 1169:
1.492 albertel 1170: # -------------------------------- Allow a /uploaded/ URI to be vouched for
1171:
1172: sub allowuploaded {
1173: my ($srcurl,$url)=@_;
1174: $url=&clutter(&declutter($url));
1175: my $dir=$url;
1176: $dir=~s/\/[^\/]+$//;
1177: my %httpref=();
1178: my $httpurl=&hreflocation('',$url);
1179: $httpref{'httpref.'.$httpurl}=$srcurl;
1180: &Apache::lonnet::appenv(%httpref);
1.254 www 1181: }
1.477 raeburn 1182:
1.478 albertel 1183: # --------- File operations in /home/httpd/html/userfiles/$domain/1/2/3/$course
1.638 albertel 1184: # input: action, courseID, current domain, intended
1.637 raeburn 1185: # path to file, source of file, instruction to parse file for objects,
1186: # ref to hash for embedded objects,
1187: # ref to hash for codebase of java objects.
1188: #
1.485 raeburn 1189: # output: url to file (if action was uploaddoc),
1190: # ok if successful, or diagnostic message otherwise (if action was propagate or copy)
1.477 raeburn 1191: #
1.478 albertel 1192: # Allows directory structure to be used within lonUsers/../userfiles/ for a
1193: # course.
1.477 raeburn 1194: #
1.478 albertel 1195: # action = propagate - /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
1196: # will be copied to /home/httpd/lonUsers/1/2/3/$course/userfiles in
1197: # course's home server.
1.477 raeburn 1198: #
1.478 albertel 1199: # action = copy - /home/httpd/html/userfiles/$domain/1/2/3/$course/$file will
1200: # be copied from $source (current location) to
1201: # /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
1202: # and will then be copied to
1203: # /home/httpd/lonUsers/$domain/1/2/3/$course/userfiles/$file in
1204: # course's home server.
1.485 raeburn 1205: #
1.481 raeburn 1206: # action = uploaddoc - /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
1.620 albertel 1207: # will be retrived from $env{form.uploaddoc} (from DOCS interface) to
1.481 raeburn 1208: # /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
1209: # and will then be copied to /home/httpd/lonUsers/1/2/3/$course/userfiles/$file
1210: # in course's home server.
1.637 raeburn 1211: #
1.477 raeburn 1212:
1213: sub process_coursefile {
1.638 albertel 1214: my ($action,$docuname,$docudom,$file,$source,$parser,$allfiles,$codebase)=@_;
1.477 raeburn 1215: my $fetchresult;
1.638 albertel 1216: my $home=&homeserver($docuname,$docudom);
1.477 raeburn 1217: if ($action eq 'propagate') {
1.638 albertel 1218: $fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
1219: $home);
1.481 raeburn 1220: } else {
1.477 raeburn 1221: my $fpath = '';
1222: my $fname = $file;
1.478 albertel 1223: ($fpath,$fname) = ($file =~ m|^(.*)/([^/]+)$|);
1.477 raeburn 1224: $fpath=$docudom.'/'.$docuname.'/'.$fpath;
1.637 raeburn 1225: my $filepath = &build_filepath($fpath);
1.481 raeburn 1226: if ($action eq 'copy') {
1227: if ($source eq '') {
1228: $fetchresult = 'no source file';
1229: return $fetchresult;
1230: } else {
1231: my $destination = $filepath.'/'.$fname;
1232: rename($source,$destination);
1233: $fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
1.638 albertel 1234: $home);
1.481 raeburn 1235: }
1236: } elsif ($action eq 'uploaddoc') {
1237: open(my $fh,'>'.$filepath.'/'.$fname);
1.620 albertel 1238: print $fh $env{'form.'.$source};
1.481 raeburn 1239: close($fh);
1.637 raeburn 1240: if ($parser eq 'parse') {
1241: my $parse_result = &extract_embedded_items($filepath,$fname,$allfiles,$codebase);
1242: unless ($parse_result eq 'ok') {
1243: &logthis('Failed to parse '.$filepath.'/'.$fname.' for embedded media: '.$parse_result);
1244: }
1245: }
1.477 raeburn 1246: $fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
1.638 albertel 1247: $home);
1.481 raeburn 1248: if ($fetchresult eq 'ok') {
1249: return '/uploaded/'.$fpath.'/'.$fname;
1250: } else {
1251: &logthis('Failed to transfer '.$docudom.'/'.$docuname.'/'.$file.
1.638 albertel 1252: ' to host '.$home.': '.$fetchresult);
1.481 raeburn 1253: return '/adm/notfound.html';
1254: }
1.477 raeburn 1255: }
1256: }
1.485 raeburn 1257: unless ( $fetchresult eq 'ok') {
1.477 raeburn 1258: &logthis('Failed to transfer '.$docudom.'/'.$docuname.'/'.$file.
1.638 albertel 1259: ' to host '.$home.': '.$fetchresult);
1.477 raeburn 1260: }
1261: return $fetchresult;
1262: }
1263:
1.637 raeburn 1264: sub build_filepath {
1265: my ($fpath) = @_;
1266: my $filepath=$perlvar{'lonDocRoot'}.'/userfiles';
1267: unless ($fpath eq '') {
1268: my @parts=split('/',$fpath);
1269: foreach my $part (@parts) {
1270: $filepath.= '/'.$part;
1271: if ((-e $filepath)!=1) {
1272: mkdir($filepath,0777);
1273: }
1274: }
1275: }
1276: return $filepath;
1277: }
1278:
1279: sub store_edited_file {
1.638 albertel 1280: my ($primary_url,$content,$docudom,$docuname,$fetchresult) = @_;
1.637 raeburn 1281: my $file = $primary_url;
1282: $file =~ s#^/uploaded/$docudom/$docuname/##;
1283: my $fpath = '';
1284: my $fname = $file;
1285: ($fpath,$fname) = ($file =~ m|^(.*)/([^/]+)$|);
1286: $fpath=$docudom.'/'.$docuname.'/'.$fpath;
1287: my $filepath = &build_filepath($fpath);
1288: open(my $fh,'>'.$filepath.'/'.$fname);
1289: print $fh $content;
1290: close($fh);
1.638 albertel 1291: my $home=&homeserver($docuname,$docudom);
1.637 raeburn 1292: $$fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
1.638 albertel 1293: $home);
1.637 raeburn 1294: if ($$fetchresult eq 'ok') {
1295: return '/uploaded/'.$fpath.'/'.$fname;
1296: } else {
1.638 albertel 1297: &logthis('Failed to transfer '.$docudom.'/'.$docuname.'/'.$file.
1298: ' to host '.$home.': '.$$fetchresult);
1.637 raeburn 1299: return '/adm/notfound.html';
1300: }
1301: }
1302:
1.531 albertel 1303: sub clean_filename {
1304: my ($fname)=@_;
1.315 www 1305: # Replace Windows backslashes by forward slashes
1.257 www 1306: $fname=~s/\\/\//g;
1.315 www 1307: # Get rid of everything but the actual filename
1.257 www 1308: $fname=~s/^.*\/([^\/]+)$/$1/;
1.315 www 1309: # Replace spaces by underscores
1310: $fname=~s/\s+/\_/g;
1311: # Replace all other weird characters by nothing
1.317 www 1312: $fname=~s/[^\w\.\-]//g;
1.540 albertel 1313: # Replace all .\d. sequences with _\d. so they no longer look like version
1314: # numbers
1315: $fname=~s/\.(\d+)(?=\.)/_$1/g;
1.531 albertel 1316: return $fname;
1317: }
1318:
1.608 albertel 1319: # --------------- Take an uploaded file and put it into the userfiles directory
1.686 albertel 1320: # input: $formname - the contents of the file are in $env{"form.$formname"}
1321: # the desired filenam is in $env{"form.$formname"}
1322: # $coursedoc - if true up to the current course
1323: # if false
1324: # $subdir - directory in userfile to store the file into
1325: # $parser, $allfiles, $codebase - unknown
1326: #
1327: # output: url of file in userspace, or error: <message>
1328: # or /adm/notfound.html if failure to upload occurse
1.608 albertel 1329:
1330:
1.531 albertel 1331: sub userfileupload {
1.637 raeburn 1332: my ($formname,$coursedoc,$subdir,$parser,$allfiles,$codebase)=@_;
1.531 albertel 1333: if (!defined($subdir)) { $subdir='unknown'; }
1.620 albertel 1334: my $fname=$env{'form.'.$formname.'.filename'};
1.531 albertel 1335: $fname=&clean_filename($fname);
1.315 www 1336: # See if there is anything left
1.257 www 1337: unless ($fname) { return 'error: no uploaded file'; }
1.620 albertel 1338: chop($env{'form.'.$formname});
1.523 raeburn 1339: if (($formname eq 'screenshot') && ($subdir eq 'helprequests')) { #files uploaded to help request form are handled differently
1340: my $now = time;
1341: my $filepath = 'tmp/helprequests/'.$now;
1342: my @parts=split(/\//,$filepath);
1343: my $fullpath = $perlvar{'lonDaemons'};
1344: for (my $i=0;$i<@parts;$i++) {
1345: $fullpath .= '/'.$parts[$i];
1346: if ((-e $fullpath)!=1) {
1347: mkdir($fullpath,0777);
1348: }
1349: }
1350: open(my $fh,'>'.$fullpath.'/'.$fname);
1.620 albertel 1351: print $fh $env{'form.'.$formname};
1.523 raeburn 1352: close($fh);
1353: return $fullpath.'/'.$fname;
1354: }
1.258 www 1355: # Create the directory if not present
1.493 albertel 1356: $fname="$subdir/$fname";
1.259 www 1357: if ($coursedoc) {
1.638 albertel 1358: my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
1359: my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.646 raeburn 1360: if ($env{'form.folder'} =~ m/^(default|supplemental)/) {
1.638 albertel 1361: return &finishuserfileupload($docuname,$docudom,
1362: $formname,$fname,$parser,$allfiles,
1363: $codebase);
1.481 raeburn 1364: } else {
1.620 albertel 1365: $fname=$env{'form.folder'}.'/'.$fname;
1.638 albertel 1366: return &process_coursefile('uploaddoc',$docuname,$docudom,
1367: $fname,$formname,$parser,
1368: $allfiles,$codebase);
1.481 raeburn 1369: }
1.259 www 1370: } else {
1.638 albertel 1371: my $docuname=$env{'user.name'};
1372: my $docudom=$env{'user.domain'};
1373: return &finishuserfileupload($docuname,$docudom,$formname,
1374: $fname,$parser,$allfiles,$codebase);
1.259 www 1375: }
1.271 www 1376: }
1377:
1378: sub finishuserfileupload {
1.638 albertel 1379: my ($docuname,$docudom,$formname,$fname,$parser,$allfiles,$codebase) = @_;
1.477 raeburn 1380: my $path=$docudom.'/'.$docuname.'/';
1.258 www 1381: my $filepath=$perlvar{'lonDocRoot'};
1.494 albertel 1382: my ($fnamepath,$file);
1383: $file=$fname;
1384: if ($fname=~m|/|) {
1385: ($fnamepath,$file) = ($fname =~ m|^(.*)/([^/]+)$|);
1386: $path.=$fnamepath.'/';
1387: }
1.259 www 1388: my @parts=split(/\//,$filepath.'/userfiles/'.$path);
1.258 www 1389: my $count;
1390: for ($count=4;$count<=$#parts;$count++) {
1391: $filepath.="/$parts[$count]";
1392: if ((-e $filepath)!=1) {
1393: mkdir($filepath,0777);
1394: }
1395: }
1396: # Save the file
1397: {
1.701 albertel 1398: if (!open(FH,'>'.$filepath.'/'.$file)) {
1399: &logthis('Failed to create '.$filepath.'/'.$file);
1400: print STDERR ('Failed to create '.$filepath.'/'.$file."\n");
1401: return '/adm/notfound.html';
1402: }
1403: if (!print FH ($env{'form.'.$formname})) {
1404: &logthis('Failed to write to '.$filepath.'/'.$file);
1405: print STDERR ('Failed to write to '.$filepath.'/'.$file."\n");
1406: return '/adm/notfound.html';
1407: }
1.570 albertel 1408: close(FH);
1.258 www 1409: }
1.637 raeburn 1410: if ($parser eq 'parse') {
1.638 albertel 1411: my $parse_result = &extract_embedded_items($filepath,$file,$allfiles,
1412: $codebase);
1.637 raeburn 1413: unless ($parse_result eq 'ok') {
1.638 albertel 1414: &logthis('Failed to parse '.$filepath.$file.
1415: ' for embedded media: '.$parse_result);
1.637 raeburn 1416: }
1417: }
1.259 www 1418: # Notify homeserver to grep it
1419: #
1.638 albertel 1420: my $docuhome=&homeserver($docuname,$docudom);
1.494 albertel 1421: my $fetchresult= &reply('fetchuserfile:'.$path.$file,$docuhome);
1.295 www 1422: if ($fetchresult eq 'ok') {
1.259 www 1423: #
1.258 www 1424: # Return the URL to it
1.494 albertel 1425: return '/uploaded/'.$path.$file;
1.263 www 1426: } else {
1.494 albertel 1427: &logthis('Failed to transfer '.$path.$file.' to host '.$docuhome.
1428: ': '.$fetchresult);
1.263 www 1429: return '/adm/notfound.html';
1430: }
1.493 albertel 1431: }
1432:
1.637 raeburn 1433: sub extract_embedded_items {
1.648 raeburn 1434: my ($filepath,$file,$allfiles,$codebase,$content) = @_;
1.637 raeburn 1435: my @state = ();
1436: my %javafiles = (
1437: codebase => '',
1438: code => '',
1439: archive => ''
1440: );
1441: my %mediafiles = (
1442: src => '',
1443: movie => '',
1444: );
1.648 raeburn 1445: my $p;
1446: if ($content) {
1447: $p = HTML::LCParser->new($content);
1448: } else {
1449: $p = HTML::LCParser->new($filepath.'/'.$file);
1450: }
1.641 albertel 1451: while (my $t=$p->get_token()) {
1.640 albertel 1452: if ($t->[0] eq 'S') {
1453: my ($tagname, $attr) = ($t->[1],$t->[2]);
1454: push (@state, $tagname);
1.648 raeburn 1455: if (lc($tagname) eq 'allow') {
1456: &add_filetype($allfiles,$attr->{'src'},'src');
1457: }
1.640 albertel 1458: if (lc($tagname) eq 'img') {
1459: &add_filetype($allfiles,$attr->{'src'},'src');
1460: }
1.645 raeburn 1461: if (lc($tagname) eq 'script') {
1462: if ($attr->{'archive'} =~ /\.jar$/i) {
1463: &add_filetype($allfiles,$attr->{'archive'},'archive');
1464: } else {
1465: &add_filetype($allfiles,$attr->{'src'},'src');
1466: }
1467: }
1468: if (lc($tagname) eq 'link') {
1469: if (lc($attr->{'rel'}) eq 'stylesheet') {
1470: &add_filetype($allfiles,$attr->{'href'},'href');
1471: }
1472: }
1.640 albertel 1473: if (lc($tagname) eq 'object' ||
1474: (lc($tagname) eq 'embed' && lc($state[-2]) ne 'object')) {
1475: foreach my $item (keys(%javafiles)) {
1476: $javafiles{$item} = '';
1477: }
1478: }
1479: if (lc($state[-2]) eq 'object' && lc($tagname) eq 'param') {
1480: my $name = lc($attr->{'name'});
1481: foreach my $item (keys(%javafiles)) {
1482: if ($name eq $item) {
1483: $javafiles{$item} = $attr->{'value'};
1484: last;
1485: }
1486: }
1487: foreach my $item (keys(%mediafiles)) {
1488: if ($name eq $item) {
1489: &add_filetype($allfiles, $attr->{'value'}, 'value');
1490: last;
1491: }
1492: }
1493: }
1494: if (lc($tagname) eq 'embed' || lc($tagname) eq 'applet') {
1495: foreach my $item (keys(%javafiles)) {
1496: if ($attr->{$item}) {
1497: $javafiles{$item} = $attr->{$item};
1498: last;
1499: }
1500: }
1501: foreach my $item (keys(%mediafiles)) {
1502: if ($attr->{$item}) {
1503: &add_filetype($allfiles,$attr->{$item},$item);
1504: last;
1505: }
1506: }
1507: }
1508: } elsif ($t->[0] eq 'E') {
1509: my ($tagname) = ($t->[1]);
1510: if ($javafiles{'codebase'} ne '') {
1511: $javafiles{'codebase'} .= '/';
1512: }
1513: if (lc($tagname) eq 'applet' ||
1514: lc($tagname) eq 'object' ||
1515: (lc($tagname) eq 'embed' && lc($state[-2]) ne 'object')
1516: ) {
1517: foreach my $item (keys(%javafiles)) {
1518: if ($item ne 'codebase' && $javafiles{$item} ne '') {
1519: my $file=$javafiles{'codebase'}.$javafiles{$item};
1520: &add_filetype($allfiles,$file,$item);
1521: }
1522: }
1523: }
1524: pop @state;
1525: }
1526: }
1.637 raeburn 1527: return 'ok';
1528: }
1529:
1.639 albertel 1530: sub add_filetype {
1531: my ($allfiles,$file,$type)=@_;
1532: if (exists($allfiles->{$file})) {
1533: unless (grep/^\Q$type\E$/, @{$allfiles->{$file}}) {
1534: push(@{$allfiles->{$file}}, &escape($type));
1535: }
1536: } else {
1537: @{$allfiles->{$file}} = (&escape($type));
1.637 raeburn 1538: }
1539: }
1540:
1.493 albertel 1541: sub removeuploadedurl {
1542: my ($url)=@_;
1543: my (undef,undef,$udom,$uname,$fname)=split('/',$url,5);
1.613 albertel 1544: return &removeuserfile($uname,$udom,$fname);
1.490 albertel 1545: }
1546:
1547: sub removeuserfile {
1548: my ($docuname,$docudom,$fname)=@_;
1549: my $home=&homeserver($docuname,$docudom);
1550: return &reply("removeuserfile:$docudom/$docuname/$fname",$home);
1.257 www 1551: }
1.15 www 1552:
1.530 albertel 1553: sub mkdiruserfile {
1554: my ($docuname,$docudom,$dir)=@_;
1555: my $home=&homeserver($docuname,$docudom);
1556: return &reply("mkdiruserfile:".&escape("$docudom/$docuname/$dir"),$home);
1557: }
1558:
1.531 albertel 1559: sub renameuserfile {
1560: my ($docuname,$docudom,$old,$new)=@_;
1561: my $home=&homeserver($docuname,$docudom);
1562: return &reply("renameuserfile:$docudom:$docuname:".&escape("$old").':'.
1563: &escape("$new"),$home);
1564: }
1565:
1.14 www 1566: # ------------------------------------------------------------------------- Log
1567:
1568: sub log {
1569: my ($dom,$nam,$hom,$what)=@_;
1.47 www 1570: return critical("log:$dom:$nam:$what",$hom);
1.157 www 1571: }
1572:
1573: # ------------------------------------------------------------------ Course Log
1.352 www 1574: #
1575: # This routine flushes several buffers of non-mission-critical nature
1576: #
1.157 www 1577:
1578: sub flushcourselogs {
1.352 www 1579: &logthis('Flushing log buffers');
1580: #
1581: # course logs
1582: # This is a log of all transactions in a course, which can be used
1583: # for data mining purposes
1584: #
1585: # It also collects the courseid database, which lists last transaction
1586: # times and course titles for all courseids
1587: #
1588: my %courseidbuffer=();
1.191 harris41 1589: foreach (keys %courselogs) {
1.157 www 1590: my $crsid=$_;
1.352 www 1591: if (&reply('log:'.$coursedombuf{$crsid}.':'.$coursenumbuf{$crsid}.':'.
1.188 www 1592: &escape($courselogs{$crsid}),
1593: $coursehombuf{$crsid}) eq 'ok') {
1.157 www 1594: delete $courselogs{$crsid};
1595: } else {
1596: &logthis('Failed to flush log buffer for '.$crsid);
1597: if (length($courselogs{$crsid})>40000) {
1.672 albertel 1598: &logthis("<font color=\"blue\">WARNING: Buffer for ".$crsid.
1.157 www 1599: " exceeded maximum size, deleting.</font>");
1600: delete $courselogs{$crsid};
1601: }
1.352 www 1602: }
1603: if ($courseidbuffer{$coursehombuf{$crsid}}) {
1604: $courseidbuffer{$coursehombuf{$crsid}}.='&'.
1.516 raeburn 1605: &escape($crsid).'='.&escape($coursedescrbuf{$crsid}).
1.571 raeburn 1606: ':'.&escape($courseinstcodebuf{$crsid}).':'.&escape($courseownerbuf{$crsid});
1.352 www 1607: } else {
1608: $courseidbuffer{$coursehombuf{$crsid}}=
1.516 raeburn 1609: &escape($crsid).'='.&escape($coursedescrbuf{$crsid}).
1.571 raeburn 1610: ':'.&escape($courseinstcodebuf{$crsid}).':'.&escape($courseownerbuf{$crsid});
1611: }
1.191 harris41 1612: }
1.352 www 1613: #
1614: # Write course id database (reverse lookup) to homeserver of courses
1615: # Is used in pickcourse
1616: #
1617: foreach (keys %courseidbuffer) {
1.353 www 1618: &courseidput($hostdom{$_},$courseidbuffer{$_},$_);
1.352 www 1619: }
1620: #
1621: # File accesses
1622: # Writes to the dynamic metadata of resources to get hit counts, etc.
1623: #
1.449 matthew 1624: foreach my $entry (keys(%accesshash)) {
1.458 matthew 1625: if ($entry =~ /___count$/) {
1626: my ($dom,$name);
1627: ($dom,$name,undef)=($entry=~m:___(\w+)/(\w+)/(.*)___count$:);
1628: if (! defined($dom) || $dom eq '' ||
1629: ! defined($name) || $name eq '') {
1.620 albertel 1630: my $cid = $env{'request.course.id'};
1631: $dom = $env{'request.'.$cid.'.domain'};
1632: $name = $env{'request.'.$cid.'.num'};
1.458 matthew 1633: }
1.450 matthew 1634: my $value = $accesshash{$entry};
1635: my (undef,$url,undef) = ($entry =~ /^(.*)___(.*)___count$/);
1636: my %temphash=($url => $value);
1.449 matthew 1637: my $result = &inc('nohist_accesscount',\%temphash,$dom,$name);
1638: if ($result eq 'ok') {
1639: delete $accesshash{$entry};
1640: } elsif ($result eq 'unknown_cmd') {
1641: # Target server has old code running on it.
1.450 matthew 1642: my %temphash=($entry => $value);
1.449 matthew 1643: if (&put('nohist_resevaldata',\%temphash,$dom,$name) eq 'ok') {
1644: delete $accesshash{$entry};
1645: }
1646: }
1647: } else {
1.458 matthew 1648: my ($dom,$name) = ($entry=~m:___(\w+)/(\w+)/(.*)___(\w+)$:);
1.450 matthew 1649: my %temphash=($entry => $accesshash{$entry});
1.449 matthew 1650: if (&put('nohist_resevaldata',\%temphash,$dom,$name) eq 'ok') {
1651: delete $accesshash{$entry};
1652: }
1.185 www 1653: }
1.191 harris41 1654: }
1.352 www 1655: #
1656: # Roles
1657: # Reverse lookup of user roles for course faculty/staff and co-authorship
1658: #
1.349 www 1659: foreach (keys %userrolehash) {
1660: my $entry=$_;
1.351 www 1661: my ($role,$uname,$udom,$runame,$rudom,$rsec)=
1.349 www 1662: split(/\:/,$entry);
1663: if (&Apache::lonnet::put('nohist_userroles',
1.351 www 1664: { $role.':'.$uname.':'.$udom.':'.$rsec => $userrolehash{$entry} },
1.349 www 1665: $rudom,$runame) eq 'ok') {
1666: delete $userrolehash{$entry};
1667: }
1668: }
1.662 raeburn 1669: #
1670: # Reverse lookup of domain roles (dc, ad, li, sc, au)
1671: #
1672: my %domrolebuffer = ();
1673: foreach my $entry (keys %domainrolehash) {
1674: my ($role,$uname,$udom,$runame,$rudom,$rsec)=split/:/,$entry;
1675: if ($domrolebuffer{$rudom}) {
1676: $domrolebuffer{$rudom}.='&'.&escape($entry).
1677: '='.&escape($domainrolehash{$entry});
1678: } else {
1679: $domrolebuffer{$rudom}.=&escape($entry).
1680: '='.&escape($domainrolehash{$entry});
1681: }
1682: delete $domainrolehash{$entry};
1683: }
1684: foreach my $dom (keys(%domrolebuffer)) {
1685: foreach my $tryserver (keys %libserv) {
1686: if ($hostdom{$tryserver} eq $dom) {
1687: unless (&reply('domroleput:'.$dom.':'.
1688: $domrolebuffer{$dom},$tryserver) eq 'ok') {
1689: &logthis('Put of domain roles failed for '.$dom.' and '.$tryserver);
1690: }
1691: }
1692: }
1693: }
1.186 www 1694: $dumpcount++;
1.157 www 1695: }
1696:
1697: sub courselog {
1698: my $what=shift;
1.158 www 1699: $what=time.':'.$what;
1.620 albertel 1700: unless ($env{'request.course.id'}) { return ''; }
1701: $coursedombuf{$env{'request.course.id'}}=
1702: $env{'course.'.$env{'request.course.id'}.'.domain'};
1703: $coursenumbuf{$env{'request.course.id'}}=
1704: $env{'course.'.$env{'request.course.id'}.'.num'};
1705: $coursehombuf{$env{'request.course.id'}}=
1706: $env{'course.'.$env{'request.course.id'}.'.home'};
1707: $coursedescrbuf{$env{'request.course.id'}}=
1708: $env{'course.'.$env{'request.course.id'}.'.description'};
1709: $courseinstcodebuf{$env{'request.course.id'}}=
1710: $env{'course.'.$env{'request.course.id'}.'.internal.coursecode'};
1711: $courseownerbuf{$env{'request.course.id'}}=
1712: $env{'course.'.$env{'request.course.id'}.'.internal.courseowner'};
1713: if (defined $courselogs{$env{'request.course.id'}}) {
1714: $courselogs{$env{'request.course.id'}}.='&'.$what;
1.157 www 1715: } else {
1.620 albertel 1716: $courselogs{$env{'request.course.id'}}.=$what;
1.157 www 1717: }
1.620 albertel 1718: if (length($courselogs{$env{'request.course.id'}})>4048) {
1.157 www 1719: &flushcourselogs();
1720: }
1.158 www 1721: }
1722:
1723: sub courseacclog {
1724: my $fnsymb=shift;
1.620 albertel 1725: unless ($env{'request.course.id'}) { return ''; }
1726: my $what=$fnsymb.':'.$env{'user.name'}.':'.$env{'user.domain'};
1.657 albertel 1727: if ($fnsymb=~/(problem|exam|quiz|assess|survey|form|task|page)$/) {
1.187 www 1728: $what.=':POST';
1.583 matthew 1729: # FIXME: Probably ought to escape things....
1.620 albertel 1730: foreach (keys %env) {
1.158 www 1731: if ($_=~/^form\.(.*)/) {
1.620 albertel 1732: $what.=':'.$1.'='.$env{$_};
1.158 www 1733: }
1.191 harris41 1734: }
1.583 matthew 1735: } elsif ($fnsymb =~ m:^/adm/searchcat:) {
1736: # FIXME: We should not be depending on a form parameter that someone
1737: # editing lonsearchcat.pm might change in the future.
1.620 albertel 1738: if ($env{'form.phase'} eq 'course_search') {
1.583 matthew 1739: $what.= ':POST';
1740: # FIXME: Probably ought to escape things....
1741: foreach my $element ('courseexp','crsfulltext','crsrelated',
1742: 'crsdiscuss') {
1.620 albertel 1743: $what.=':'.$element.'='.$env{'form.'.$element};
1.583 matthew 1744: }
1745: }
1.158 www 1746: }
1747: &courselog($what);
1.149 www 1748: }
1749:
1.185 www 1750: sub countacc {
1751: my $url=&declutter(shift);
1.458 matthew 1752: return if (! defined($url) || $url eq '');
1.620 albertel 1753: unless ($env{'request.course.id'}) { return ''; }
1754: $accesshash{$env{'request.course.id'}.'___'.$url.'___course'}=1;
1.281 www 1755: my $key=$$.$processmarker.'_'.$dumpcount.'___'.$url.'___count';
1.450 matthew 1756: $accesshash{$key}++;
1.185 www 1757: }
1.349 www 1758:
1.361 www 1759: sub linklog {
1760: my ($from,$to)=@_;
1761: $from=&declutter($from);
1762: $to=&declutter($to);
1763: $accesshash{$from.'___'.$to.'___comefrom'}=1;
1764: $accesshash{$to.'___'.$from.'___goto'}=1;
1765: }
1766:
1.349 www 1767: sub userrolelog {
1768: my ($trole,$username,$domain,$area,$tstart,$tend)=@_;
1.661 raeburn 1769: if (($trole=~/^ca/) || ($trole=~/^aa/) ||
1.662 raeburn 1770: ($trole=~/^in/) || ($trole=~/^cc/) ||
1.661 raeburn 1771: ($trole=~/^ep/) || ($trole=~/^cr/) ||
1772: ($trole=~/^ta/)) {
1.350 www 1773: my (undef,$rudom,$runame,$rsec)=split(/\//,$area);
1774: $userrolehash
1775: {$trole.':'.$username.':'.$domain.':'.$runame.':'.$rudom.':'.$rsec}
1.349 www 1776: =$tend.':'.$tstart;
1.662 raeburn 1777: }
1778: if (($trole=~/^dc/) || ($trole=~/^ad/) ||
1779: ($trole=~/^li/) || ($trole=~/^li/) ||
1780: ($trole=~/^au/) || ($trole=~/^dg/) ||
1781: ($trole=~/^sc/)) {
1782: my (undef,$rudom,$runame,$rsec)=split(/\//,$area);
1783: $domainrolehash
1784: {$trole.':'.$username.':'.$domain.':'.$runame.':'.$rudom.':'.$rsec}
1785: = $tend.':'.$tstart;
1786: }
1.351 www 1787: }
1788:
1789: sub get_course_adv_roles {
1790: my $cid=shift;
1.620 albertel 1791: $cid=$env{'request.course.id'} unless (defined($cid));
1.351 www 1792: my %coursehash=&coursedescription($cid);
1.470 www 1793: my %nothide=();
1794: foreach (split(/\s*\,\s*/,$coursehash{'nothideprivileged'})) {
1795: $nothide{join(':',split(/[\@\:]/,$_))}=1;
1796: }
1.351 www 1797: my %returnhash=();
1798: my %dumphash=
1799: &dump('nohist_userroles',$coursehash{'domain'},$coursehash{'num'});
1800: my $now=time;
1801: foreach (keys %dumphash) {
1802: my ($tend,$tstart)=split(/\:/,$dumphash{$_});
1803: if (($tstart) && ($tstart<0)) { next; }
1804: if (($tend) && ($tend<$now)) { next; }
1805: if (($tstart) && ($now<$tstart)) { next; }
1806: my ($role,$username,$domain,$section)=split(/\:/,$_);
1.576 albertel 1807: if ($username eq '' || $domain eq '') { next; }
1.470 www 1808: if ((&privileged($username,$domain)) &&
1809: (!$nothide{$username.':'.$domain})) { next; }
1.656 albertel 1810: if ($role eq 'cr') { next; }
1.351 www 1811: my $key=&plaintext($role);
1.656 albertel 1812: if ($role =~ /^cr/) {
1813: $key=(split('/',$role))[3];
1814: }
1.351 www 1815: if ($section) { $key.=' (Sec/Grp '.$section.')'; }
1816: if ($returnhash{$key}) {
1817: $returnhash{$key}.=','.$username.':'.$domain;
1818: } else {
1819: $returnhash{$key}=$username.':'.$domain;
1820: }
1.400 www 1821: }
1822: return %returnhash;
1823: }
1824:
1825: sub get_my_roles {
1826: my ($uname,$udom)=@_;
1.620 albertel 1827: unless (defined($uname)) { $uname=$env{'user.name'}; }
1828: unless (defined($udom)) { $udom=$env{'user.domain'}; }
1.400 www 1829: my %dumphash=
1830: &dump('nohist_userroles',$udom,$uname);
1831: my %returnhash=();
1832: my $now=time;
1833: foreach (keys %dumphash) {
1834: my ($tend,$tstart)=split(/\:/,$dumphash{$_});
1835: if (($tstart) && ($tstart<0)) { next; }
1836: if (($tend) && ($tend<$now)) { next; }
1837: if (($tstart) && ($now<$tstart)) { next; }
1838: my ($role,$username,$domain,$section)=split(/\:/,$_);
1839: $returnhash{$username.':'.$domain.':'.$role}=$tstart.':'.$tend;
1.373 www 1840: }
1841: return %returnhash;
1.399 www 1842: }
1843:
1844: # ----------------------------------------------------- Frontpage Announcements
1845: #
1846: #
1847:
1848: sub postannounce {
1849: my ($server,$text)=@_;
1850: unless (&allowed('psa',$hostdom{$server})) { return 'refused'; }
1851: unless ($text=~/\w/) { $text=''; }
1852: return &reply('setannounce:'.&escape($text),$server);
1853: }
1854:
1855: sub getannounce {
1.448 albertel 1856:
1857: if (open(my $fh,$perlvar{'lonDocRoot'}.'/announcement.txt')) {
1.399 www 1858: my $announcement='';
1859: while (<$fh>) { $announcement .=$_; }
1.448 albertel 1860: close($fh);
1.399 www 1861: if ($announcement=~/\w/) {
1862: return
1863: '<table bgcolor="#FF5555" cellpadding="5" cellspacing="3">'.
1.518 albertel 1864: '<tr><td bgcolor="#FFFFFF"><tt>'.$announcement.'</tt></td></tr></table>';
1.399 www 1865: } else {
1866: return '';
1867: }
1868: } else {
1869: return '';
1870: }
1.351 www 1871: }
1.353 www 1872:
1873: # ---------------------------------------------------------- Course ID routines
1874: # Deal with domain's nohist_courseid.db files
1875: #
1876:
1877: sub courseidput {
1878: my ($domain,$what,$coursehome)=@_;
1879: return &reply('courseidput:'.$domain.':'.$what,$coursehome);
1880: }
1881:
1882: sub courseiddump {
1.622 raeburn 1883: my ($domfilter,$descfilter,$sincefilter,$instcodefilter,$ownerfilter,$coursefilter,$hostidflag,$hostidref)=@_;
1.353 www 1884: my %returnhash=();
1.355 www 1885: unless ($domfilter) { $domfilter=''; }
1.353 www 1886: foreach my $tryserver (keys %libserv) {
1.511 raeburn 1887: if ( ($hostidflag == 1 && grep/^$tryserver$/,@{$hostidref}) || (!defined($hostidflag)) ) {
1.506 raeburn 1888: if ((!$domfilter) || ($hostdom{$tryserver} eq $domfilter)) {
1889: foreach (
1890: split(/\&/,&reply('courseiddump:'.$hostdom{$tryserver}.':'.
1.571 raeburn 1891: $sincefilter.':'.&escape($descfilter).':'.
1.622 raeburn 1892: &escape($instcodefilter).':'.&escape($ownerfilter).':'.&escape($coursefilter),
1.354 www 1893: $tryserver))) {
1.506 raeburn 1894: my ($key,$value)=split(/\=/,$_);
1895: if (($key) && ($value)) {
1.516 raeburn 1896: $returnhash{&unescape($key)}=$value;
1.506 raeburn 1897: }
1.353 www 1898: }
1899: }
1900: }
1901: }
1902: return %returnhash;
1903: }
1904:
1.658 raeburn 1905: # ---------------------------------------------------------- DC e-mail
1.662 raeburn 1906:
1907: sub dcmailput {
1.685 raeburn 1908: my ($domain,$msgid,$message,$server)=@_;
1.662 raeburn 1909: my $status = &Apache::lonnet::critical(
1910: 'dcmailput:'.$domain.':'.&Apache::lonnet::escape($msgid).'='.
1.685 raeburn 1911: &Apache::lonnet::escape($message),$server);
1.662 raeburn 1912: return $status;
1913: }
1914:
1.658 raeburn 1915: sub dcmaildump {
1916: my ($dom,$startdate,$enddate,$senders) = @_;
1.685 raeburn 1917: my %returnhash=();
1918: if (exists($domain_primary{$dom})) {
1919: my $cmd='dcmaildump:'.$dom.':'.&escape($startdate).':'.
1920: &escape($enddate).':';
1921: my @esc_senders=map { &escape($_)} @$senders;
1922: $cmd.=&escape(join('&',@esc_senders));
1923: foreach (split(/\&/,&reply($cmd,$domain_primary{$dom}))) {
1924: my ($key,$value) = split(/\=/,$_);
1925: if (($key) && ($value)) {
1926: $returnhash{&unescape($key)} = &unescape($value);
1.658 raeburn 1927: }
1928: }
1929: }
1930: return %returnhash;
1931: }
1.662 raeburn 1932: # ---------------------------------------------------------- Domain roles
1933:
1934: sub get_domain_roles {
1935: my ($dom,$roles,$startdate,$enddate)=@_;
1936: if (undef($startdate) || $startdate eq '') {
1937: $startdate = '.';
1938: }
1939: if (undef($enddate) || $enddate eq '') {
1940: $enddate = '.';
1941: }
1942: my $rolelist = join(':',@{$roles});
1943: my %personnel = ();
1944: foreach my $tryserver (keys(%libserv)) {
1945: if ($hostdom{$tryserver} eq $dom) {
1946: %{$personnel{$tryserver}}=();
1947: foreach (
1948: split(/\&/,&reply('domrolesdump:'.$dom.':'.
1949: &escape($startdate).':'.&escape($enddate).':'.
1950: &escape($rolelist), $tryserver))) {
1951: my($key,$value) = split(/\=/,$_);
1952: if (($key) && ($value)) {
1953: $personnel{$tryserver}{&unescape($key)} = &unescape($value);
1954: }
1955: }
1956: }
1957: }
1958: return %personnel;
1959: }
1.658 raeburn 1960:
1.149 www 1961: # ----------------------------------------------------------- Check out an item
1962:
1.504 albertel 1963: sub get_first_access {
1964: my ($type,$argsymb)=@_;
1965: my ($symb,$courseid,$udom,$uname)=&Apache::lonxml::whichuser();
1966: if ($argsymb) { $symb=$argsymb; }
1967: my ($map,$id,$res)=&decode_symb($symb);
1.588 albertel 1968: if ($type eq 'map') {
1969: $res=&symbread($map);
1970: } else {
1971: $res=$symb;
1972: }
1973: my %times=&get('firstaccesstimes',["$courseid\0$res"],$udom,$uname);
1974: return $times{"$courseid\0$res"};
1.504 albertel 1975: }
1976:
1977: sub set_first_access {
1978: my ($type)=@_;
1979: my ($symb,$courseid,$udom,$uname)=&Apache::lonxml::whichuser();
1980: my ($map,$id,$res)=&decode_symb($symb);
1.588 albertel 1981: if ($type eq 'map') {
1982: $res=&symbread($map);
1983: } else {
1984: $res=$symb;
1985: }
1986: my $firstaccess=&get_first_access($type,$symb);
1.505 albertel 1987: if (!$firstaccess) {
1.588 albertel 1988: return &put('firstaccesstimes',{"$courseid\0$res"=>time},$udom,$uname);
1.505 albertel 1989: }
1990: return 'already_set';
1.504 albertel 1991: }
1992:
1.149 www 1993: sub checkout {
1994: my ($symb,$tuname,$tudom,$tcrsid)=@_;
1995: my $now=time;
1996: my $lonhost=$perlvar{'lonHostID'};
1997: my $infostr=&escape(
1.234 www 1998: 'CHECKOUTTOKEN&'.
1.149 www 1999: $tuname.'&'.
2000: $tudom.'&'.
2001: $tcrsid.'&'.
2002: $symb.'&'.
2003: $now.'&'.$ENV{'REMOTE_ADDR'});
2004: my $token=&reply('tmpput:'.$infostr,$lonhost);
1.151 www 2005: if ($token=~/^error\:/) {
1.672 albertel 2006: &logthis("<font color=\"blue\">WARNING: ".
1.151 www 2007: "Checkout tmpput failed ".$tudom.' - '.$tuname.' - '.$symb.
2008: "</font>");
2009: return '';
2010: }
2011:
1.149 www 2012: $token=~s/^(\d+)\_.*\_(\d+)$/$1\*$2\*$lonhost/;
2013: $token=~tr/a-z/A-Z/;
2014:
1.153 www 2015: my %infohash=('resource.0.outtoken' => $token,
2016: 'resource.0.checkouttime' => $now,
2017: 'resource.0.outremote' => $ENV{'REMOTE_ADDR'});
1.149 www 2018:
2019: unless (&cstore(\%infohash,$symb,$tcrsid,$tudom,$tuname) eq 'ok') {
2020: return '';
1.151 www 2021: } else {
1.672 albertel 2022: &logthis("<font color=\"blue\">WARNING: ".
1.151 www 2023: "Checkout cstore failed ".$tudom.' - '.$tuname.' - '.$symb.
2024: "</font>");
1.149 www 2025: }
2026:
2027: if (&log($tudom,$tuname,&homeserver($tuname,$tudom),
2028: &escape('Checkout '.$infostr.' - '.
2029: $token)) ne 'ok') {
2030: return '';
1.151 www 2031: } else {
1.672 albertel 2032: &logthis("<font color=\"blue\">WARNING: ".
1.151 www 2033: "Checkout log failed ".$tudom.' - '.$tuname.' - '.$symb.
2034: "</font>");
1.149 www 2035: }
1.151 www 2036: return $token;
1.149 www 2037: }
2038:
2039: # ------------------------------------------------------------ Check in an item
2040:
2041: sub checkin {
2042: my $token=shift;
1.150 www 2043: my $now=time;
2044: my ($ta,$tb,$lonhost)=split(/\*/,$token);
2045: $lonhost=~tr/A-Z/a-z/;
1.595 albertel 2046: my $dtoken=$ta.'_'.$hostname{$lonhost}.'_'.$tb;
1.150 www 2047: $dtoken=~s/\W/\_/g;
1.234 www 2048: my ($dummy,$tuname,$tudom,$tcrsid,$symb,$chtim,$rmaddr)=
1.150 www 2049: split(/\&/,&unescape(&reply('tmpget:'.$dtoken,$lonhost)));
2050:
1.154 www 2051: unless (($tuname) && ($tudom)) {
2052: &logthis('Check in '.$token.' ('.$dtoken.') failed');
2053: return '';
2054: }
2055:
2056: unless (&allowed('mgr',$tcrsid)) {
2057: &logthis('Check in '.$token.' ('.$dtoken.') unauthorized: '.
1.620 albertel 2058: $env{'user.name'}.' - '.$env{'user.domain'});
1.154 www 2059: return '';
2060: }
2061:
1.153 www 2062: my %infohash=('resource.0.intoken' => $token,
2063: 'resource.0.checkintime' => $now,
2064: 'resource.0.inremote' => $ENV{'REMOTE_ADDR'});
1.150 www 2065:
2066: unless (&cstore(\%infohash,$symb,$tcrsid,$tudom,$tuname) eq 'ok') {
2067: return '';
2068: }
2069:
2070: if (&log($tudom,$tuname,&homeserver($tuname,$tudom),
2071: &escape('Checkin - '.$token)) ne 'ok') {
2072: return '';
2073: }
2074:
2075: return ($symb,$tuname,$tudom,$tcrsid);
1.110 www 2076: }
2077:
2078: # --------------------------------------------- Set Expire Date for Spreadsheet
2079:
2080: sub expirespread {
2081: my ($uname,$udom,$stype,$usymb)=@_;
1.620 albertel 2082: my $cid=$env{'request.course.id'};
1.110 www 2083: if ($cid) {
2084: my $now=time;
2085: my $key=$uname.':'.$udom.':'.$stype.':'.$usymb;
1.620 albertel 2086: return &reply('put:'.$env{'course.'.$cid.'.domain'}.':'.
2087: $env{'course.'.$cid.'.num'}.
1.110 www 2088: ':nohist_expirationdates:'.
2089: &escape($key).'='.$now,
1.620 albertel 2090: $env{'course.'.$cid.'.home'})
1.110 www 2091: }
2092: return 'ok';
1.14 www 2093: }
2094:
1.109 www 2095: # ----------------------------------------------------- Devalidate Spreadsheets
2096:
2097: sub devalidate {
1.325 www 2098: my ($symb,$uname,$udom)=@_;
1.620 albertel 2099: my $cid=$env{'request.course.id'};
1.109 www 2100: if ($cid) {
1.391 matthew 2101: # delete the stored spreadsheets for
2102: # - the student level sheet of this user in course's homespace
2103: # - the assessment level sheet for this resource
2104: # for this user in user's homespace
1.553 albertel 2105: # - current conditional state info
1.325 www 2106: my $key=$uname.':'.$udom.':';
1.109 www 2107: my $status=
1.299 matthew 2108: &del('nohist_calculatedsheets',
1.391 matthew 2109: [$key.'studentcalc:'],
1.620 albertel 2110: $env{'course.'.$cid.'.domain'},
2111: $env{'course.'.$cid.'.num'})
1.133 albertel 2112: .' '.
2113: &del('nohist_calculatedsheets_'.$cid,
1.391 matthew 2114: [$key.'assesscalc:'.$symb],$udom,$uname);
1.109 www 2115: unless ($status eq 'ok ok') {
2116: &logthis('Could not devalidate spreadsheet '.
1.325 www 2117: $uname.' at '.$udom.' for '.
1.109 www 2118: $symb.': '.$status);
1.133 albertel 2119: }
1.553 albertel 2120: &delenv('user.state.'.$cid);
1.109 www 2121: }
2122: }
2123:
1.265 albertel 2124: sub get_scalar {
2125: my ($string,$end) = @_;
2126: my $value;
2127: if ($$string =~ s/^([^&]*?)($end)/$2/) {
2128: $value = $1;
2129: } elsif ($$string =~ s/^([^&]*?)&//) {
2130: $value = $1;
2131: }
2132: return &unescape($value);
2133: }
2134:
2135: sub array2str {
2136: my (@array) = @_;
2137: my $result=&arrayref2str(\@array);
2138: $result=~s/^__ARRAY_REF__//;
2139: $result=~s/__END_ARRAY_REF__$//;
2140: return $result;
2141: }
2142:
1.204 albertel 2143: sub arrayref2str {
2144: my ($arrayref) = @_;
1.265 albertel 2145: my $result='__ARRAY_REF__';
1.204 albertel 2146: foreach my $elem (@$arrayref) {
1.265 albertel 2147: if(ref($elem) eq 'ARRAY') {
2148: $result.=&arrayref2str($elem).'&';
2149: } elsif(ref($elem) eq 'HASH') {
2150: $result.=&hashref2str($elem).'&';
2151: } elsif(ref($elem)) {
2152: #print("Got a ref of ".(ref($elem))." skipping.");
1.204 albertel 2153: } else {
2154: $result.=&escape($elem).'&';
2155: }
2156: }
2157: $result=~s/\&$//;
1.265 albertel 2158: $result .= '__END_ARRAY_REF__';
1.204 albertel 2159: return $result;
2160: }
2161:
1.168 albertel 2162: sub hash2str {
1.204 albertel 2163: my (%hash) = @_;
2164: my $result=&hashref2str(\%hash);
1.265 albertel 2165: $result=~s/^__HASH_REF__//;
2166: $result=~s/__END_HASH_REF__$//;
1.204 albertel 2167: return $result;
2168: }
2169:
2170: sub hashref2str {
2171: my ($hashref)=@_;
1.265 albertel 2172: my $result='__HASH_REF__';
1.495 albertel 2173: foreach (sort(keys(%$hashref))) {
1.204 albertel 2174: if (ref($_) eq 'ARRAY') {
1.265 albertel 2175: $result.=&arrayref2str($_).'=';
1.204 albertel 2176: } elsif (ref($_) eq 'HASH') {
1.265 albertel 2177: $result.=&hashref2str($_).'=';
1.204 albertel 2178: } elsif (ref($_)) {
1.265 albertel 2179: $result.='=';
2180: #print("Got a ref of ".(ref($_))." skipping.");
1.204 albertel 2181: } else {
1.265 albertel 2182: if ($_) {$result.=&escape($_).'=';} else { last; }
1.204 albertel 2183: }
2184:
1.265 albertel 2185: if(ref($hashref->{$_}) eq 'ARRAY') {
2186: $result.=&arrayref2str($hashref->{$_}).'&';
2187: } elsif(ref($hashref->{$_}) eq 'HASH') {
2188: $result.=&hashref2str($hashref->{$_}).'&';
2189: } elsif(ref($hashref->{$_})) {
2190: $result.='&';
2191: #print("Got a ref of ".(ref($hashref->{$_}))." skipping.");
1.204 albertel 2192: } else {
1.265 albertel 2193: $result.=&escape($hashref->{$_}).'&';
1.204 albertel 2194: }
2195: }
1.168 albertel 2196: $result=~s/\&$//;
1.265 albertel 2197: $result .= '__END_HASH_REF__';
1.168 albertel 2198: return $result;
2199: }
2200:
2201: sub str2hash {
1.265 albertel 2202: my ($string)=@_;
2203: my ($hash)=&str2hashref('__HASH_REF__'.$string.'__END_HASH_REF__');
2204: return %$hash;
2205: }
2206:
2207: sub str2hashref {
1.168 albertel 2208: my ($string) = @_;
1.265 albertel 2209:
2210: my %hash;
2211:
2212: if($string !~ /^__HASH_REF__/) {
2213: if (! ($string eq '' || !defined($string))) {
2214: $hash{'error'}='Not hash reference';
2215: }
2216: return (\%hash, $string);
2217: }
2218:
2219: $string =~ s/^__HASH_REF__//;
2220:
2221: while($string !~ /^__END_HASH_REF__/) {
2222: #key
2223: my $key='';
2224: if($string =~ /^__HASH_REF__/) {
2225: ($key, $string)=&str2hashref($string);
2226: if(defined($key->{'error'})) {
2227: $hash{'error'}='Bad data';
2228: return (\%hash, $string);
2229: }
2230: } elsif($string =~ /^__ARRAY_REF__/) {
2231: ($key, $string)=&str2arrayref($string);
2232: if($key->[0] eq 'Array reference error') {
2233: $hash{'error'}='Bad data';
2234: return (\%hash, $string);
2235: }
2236: } else {
2237: $string =~ s/^(.*?)=//;
1.267 albertel 2238: $key=&unescape($1);
1.265 albertel 2239: }
2240: $string =~ s/^=//;
2241:
2242: #value
2243: my $value='';
2244: if($string =~ /^__HASH_REF__/) {
2245: ($value, $string)=&str2hashref($string);
2246: if(defined($value->{'error'})) {
2247: $hash{'error'}='Bad data';
2248: return (\%hash, $string);
2249: }
2250: } elsif($string =~ /^__ARRAY_REF__/) {
2251: ($value, $string)=&str2arrayref($string);
2252: if($value->[0] eq 'Array reference error') {
2253: $hash{'error'}='Bad data';
2254: return (\%hash, $string);
2255: }
2256: } else {
2257: $value=&get_scalar(\$string,'__END_HASH_REF__');
2258: }
2259: $string =~ s/^&//;
2260:
2261: $hash{$key}=$value;
1.204 albertel 2262: }
1.265 albertel 2263:
2264: $string =~ s/^__END_HASH_REF__//;
2265:
2266: return (\%hash, $string);
1.204 albertel 2267: }
2268:
2269: sub str2array {
1.265 albertel 2270: my ($string)=@_;
2271: my ($array)=&str2arrayref('__ARRAY_REF__'.$string.'__END_ARRAY_REF__');
2272: return @$array;
2273: }
2274:
2275: sub str2arrayref {
1.204 albertel 2276: my ($string) = @_;
1.265 albertel 2277: my @array;
2278:
2279: if($string !~ /^__ARRAY_REF__/) {
2280: if (! ($string eq '' || !defined($string))) {
2281: $array[0]='Array reference error';
2282: }
2283: return (\@array, $string);
2284: }
2285:
2286: $string =~ s/^__ARRAY_REF__//;
2287:
2288: while($string !~ /^__END_ARRAY_REF__/) {
2289: my $value='';
2290: if($string =~ /^__HASH_REF__/) {
2291: ($value, $string)=&str2hashref($string);
2292: if(defined($value->{'error'})) {
2293: $array[0] ='Array reference error';
2294: return (\@array, $string);
2295: }
2296: } elsif($string =~ /^__ARRAY_REF__/) {
2297: ($value, $string)=&str2arrayref($string);
2298: if($value->[0] eq 'Array reference error') {
2299: $array[0] ='Array reference error';
2300: return (\@array, $string);
2301: }
2302: } else {
2303: $value=&get_scalar(\$string,'__END_ARRAY_REF__');
2304: }
2305: $string =~ s/^&//;
2306:
2307: push(@array, $value);
1.191 harris41 2308: }
1.265 albertel 2309:
2310: $string =~ s/^__END_ARRAY_REF__//;
2311:
2312: return (\@array, $string);
1.168 albertel 2313: }
2314:
1.167 albertel 2315: # -------------------------------------------------------------------Temp Store
2316:
1.168 albertel 2317: sub tmpreset {
2318: my ($symb,$namespace,$domain,$stuname) = @_;
2319: if (!$symb) {
2320: $symb=&symbread();
1.620 albertel 2321: if (!$symb) { $symb= $env{'request.url'}; }
1.168 albertel 2322: }
2323: $symb=escape($symb);
2324:
1.620 albertel 2325: if (!$namespace) { $namespace=$env{'request.state'}; }
1.168 albertel 2326: $namespace=~s/\//\_/g;
2327: $namespace=~s/\W//g;
2328:
1.620 albertel 2329: if (!$domain) { $domain=$env{'user.domain'}; }
2330: if (!$stuname) { $stuname=$env{'user.name'}; }
1.591 albertel 2331: if ($domain eq 'public' && $stuname eq 'public') {
2332: $stuname=$ENV{'REMOTE_ADDR'};
2333: }
1.168 albertel 2334: my $path=$perlvar{'lonDaemons'}.'/tmp';
2335: my %hash;
2336: if (tie(%hash,'GDBM_File',
2337: $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
1.256 albertel 2338: &GDBM_WRCREAT(),0640)) {
1.168 albertel 2339: foreach my $key (keys %hash) {
1.180 albertel 2340: if ($key=~ /:$symb/) {
1.168 albertel 2341: delete($hash{$key});
2342: }
2343: }
2344: }
2345: }
2346:
1.167 albertel 2347: sub tmpstore {
1.168 albertel 2348: my ($storehash,$symb,$namespace,$domain,$stuname) = @_;
2349:
2350: if (!$symb) {
2351: $symb=&symbread();
1.620 albertel 2352: if (!$symb) { $symb= $env{'request.url'}; }
1.168 albertel 2353: }
2354: $symb=escape($symb);
2355:
2356: if (!$namespace) {
2357: # I don't think we would ever want to store this for a course.
2358: # it seems this will only be used if we don't have a course.
1.620 albertel 2359: #$namespace=$env{'request.course.id'};
1.168 albertel 2360: #if (!$namespace) {
1.620 albertel 2361: $namespace=$env{'request.state'};
1.168 albertel 2362: #}
2363: }
2364: $namespace=~s/\//\_/g;
2365: $namespace=~s/\W//g;
1.620 albertel 2366: if (!$domain) { $domain=$env{'user.domain'}; }
2367: if (!$stuname) { $stuname=$env{'user.name'}; }
1.591 albertel 2368: if ($domain eq 'public' && $stuname eq 'public') {
2369: $stuname=$ENV{'REMOTE_ADDR'};
2370: }
1.168 albertel 2371: my $now=time;
2372: my %hash;
2373: my $path=$perlvar{'lonDaemons'}.'/tmp';
2374: if (tie(%hash,'GDBM_File',
2375: $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
1.256 albertel 2376: &GDBM_WRCREAT(),0640)) {
1.168 albertel 2377: $hash{"version:$symb"}++;
2378: my $version=$hash{"version:$symb"};
2379: my $allkeys='';
2380: foreach my $key (keys(%$storehash)) {
2381: $allkeys.=$key.':';
1.591 albertel 2382: $hash{"$version:$symb:$key"}=&freeze_escape($$storehash{$key});
1.168 albertel 2383: }
2384: $hash{"$version:$symb:timestamp"}=$now;
2385: $allkeys.='timestamp';
2386: $hash{"$version:keys:$symb"}=$allkeys;
2387: if (untie(%hash)) {
2388: return 'ok';
2389: } else {
2390: return "error:$!";
2391: }
2392: } else {
2393: return "error:$!";
2394: }
2395: }
1.167 albertel 2396:
1.168 albertel 2397: # -----------------------------------------------------------------Temp Restore
1.167 albertel 2398:
1.168 albertel 2399: sub tmprestore {
2400: my ($symb,$namespace,$domain,$stuname) = @_;
1.167 albertel 2401:
1.168 albertel 2402: if (!$symb) {
2403: $symb=&symbread();
1.620 albertel 2404: if (!$symb) { $symb= $env{'request.url'}; }
1.168 albertel 2405: }
2406: $symb=escape($symb);
2407:
1.620 albertel 2408: if (!$namespace) { $namespace=$env{'request.state'}; }
1.591 albertel 2409:
1.620 albertel 2410: if (!$domain) { $domain=$env{'user.domain'}; }
2411: if (!$stuname) { $stuname=$env{'user.name'}; }
1.591 albertel 2412: if ($domain eq 'public' && $stuname eq 'public') {
2413: $stuname=$ENV{'REMOTE_ADDR'};
2414: }
1.168 albertel 2415: my %returnhash;
2416: $namespace=~s/\//\_/g;
2417: $namespace=~s/\W//g;
2418: my %hash;
2419: my $path=$perlvar{'lonDaemons'}.'/tmp';
2420: if (tie(%hash,'GDBM_File',
2421: $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
1.256 albertel 2422: &GDBM_READER(),0640)) {
1.168 albertel 2423: my $version=$hash{"version:$symb"};
2424: $returnhash{'version'}=$version;
2425: my $scope;
2426: for ($scope=1;$scope<=$version;$scope++) {
2427: my $vkeys=$hash{"$scope:keys:$symb"};
2428: my @keys=split(/:/,$vkeys);
2429: my $key;
2430: $returnhash{"$scope:keys"}=$vkeys;
2431: foreach $key (@keys) {
1.591 albertel 2432: $returnhash{"$scope:$key"}=&thaw_unescape($hash{"$scope:$symb:$key"});
2433: $returnhash{"$key"}=&thaw_unescape($hash{"$scope:$symb:$key"});
1.167 albertel 2434: }
2435: }
1.168 albertel 2436: if (!(untie(%hash))) {
2437: return "error:$!";
2438: }
2439: } else {
2440: return "error:$!";
2441: }
2442: return %returnhash;
1.167 albertel 2443: }
2444:
1.9 www 2445: # ----------------------------------------------------------------------- Store
2446:
2447: sub store {
1.124 www 2448: my ($storehash,$symb,$namespace,$domain,$stuname) = @_;
2449: my $home='';
2450:
1.168 albertel 2451: if ($stuname) { $home=&homeserver($stuname,$domain); }
1.124 www 2452:
1.213 www 2453: $symb=&symbclean($symb);
1.122 albertel 2454: if (!$symb) { unless ($symb=&symbread()) { return ''; } }
1.109 www 2455:
1.620 albertel 2456: if (!$domain) { $domain=$env{'user.domain'}; }
2457: if (!$stuname) { $stuname=$env{'user.name'}; }
1.325 www 2458:
2459: &devalidate($symb,$stuname,$domain);
1.109 www 2460:
2461: $symb=escape($symb);
1.187 www 2462: if (!$namespace) {
1.620 albertel 2463: unless ($namespace=$env{'request.course.id'}) {
1.187 www 2464: return '';
2465: }
2466: }
1.620 albertel 2467: if (!$home) { $home=$env{'user.home'}; }
1.447 www 2468:
2469: $$storehash{'ip'}=$ENV{'REMOTE_ADDR'};
2470: $$storehash{'host'}=$perlvar{'lonHostID'};
2471:
1.12 www 2472: my $namevalue='';
1.191 harris41 2473: foreach (keys %$storehash) {
1.591 albertel 2474: $namevalue.=&escape($_).'='.&freeze_escape($$storehash{$_}).'&';
1.191 harris41 2475: }
1.12 www 2476: $namevalue=~s/\&$//;
1.187 www 2477: &courselog($symb.':'.$stuname.':'.$domain.':STORE:'.$namevalue);
1.124 www 2478: return reply("store:$domain:$stuname:$namespace:$symb:$namevalue","$home");
1.9 www 2479: }
2480:
1.47 www 2481: # -------------------------------------------------------------- Critical Store
2482:
2483: sub cstore {
1.124 www 2484: my ($storehash,$symb,$namespace,$domain,$stuname) = @_;
2485: my $home='';
2486:
1.168 albertel 2487: if ($stuname) { $home=&homeserver($stuname,$domain); }
1.124 www 2488:
1.213 www 2489: $symb=&symbclean($symb);
1.122 albertel 2490: if (!$symb) { unless ($symb=&symbread()) { return ''; } }
1.109 www 2491:
1.620 albertel 2492: if (!$domain) { $domain=$env{'user.domain'}; }
2493: if (!$stuname) { $stuname=$env{'user.name'}; }
1.325 www 2494:
2495: &devalidate($symb,$stuname,$domain);
1.109 www 2496:
2497: $symb=escape($symb);
1.187 www 2498: if (!$namespace) {
1.620 albertel 2499: unless ($namespace=$env{'request.course.id'}) {
1.187 www 2500: return '';
2501: }
2502: }
1.620 albertel 2503: if (!$home) { $home=$env{'user.home'}; }
1.447 www 2504:
2505: $$storehash{'ip'}=$ENV{'REMOTE_ADDR'};
2506: $$storehash{'host'}=$perlvar{'lonHostID'};
1.122 albertel 2507:
1.47 www 2508: my $namevalue='';
1.191 harris41 2509: foreach (keys %$storehash) {
1.591 albertel 2510: $namevalue.=&escape($_).'='.&freeze_escape($$storehash{$_}).'&';
1.191 harris41 2511: }
1.47 www 2512: $namevalue=~s/\&$//;
1.187 www 2513: &courselog($symb.':'.$stuname.':'.$domain.':CSTORE:'.$namevalue);
1.188 www 2514: return critical
2515: ("store:$domain:$stuname:$namespace:$symb:$namevalue","$home");
1.47 www 2516: }
2517:
1.9 www 2518: # --------------------------------------------------------------------- Restore
2519:
2520: sub restore {
1.124 www 2521: my ($symb,$namespace,$domain,$stuname) = @_;
2522: my $home='';
2523:
1.168 albertel 2524: if ($stuname) { $home=&homeserver($stuname,$domain); }
1.124 www 2525:
1.122 albertel 2526: if (!$symb) {
2527: unless ($symb=escape(&symbread())) { return ''; }
2528: } else {
1.213 www 2529: $symb=&escape(&symbclean($symb));
1.122 albertel 2530: }
1.188 www 2531: if (!$namespace) {
1.620 albertel 2532: unless ($namespace=$env{'request.course.id'}) {
1.188 www 2533: return '';
2534: }
2535: }
1.620 albertel 2536: if (!$domain) { $domain=$env{'user.domain'}; }
2537: if (!$stuname) { $stuname=$env{'user.name'}; }
2538: if (!$home) { $home=$env{'user.home'}; }
1.122 albertel 2539: my $answer=&reply("restore:$domain:$stuname:$namespace:$symb","$home");
2540:
1.12 www 2541: my %returnhash=();
1.191 harris41 2542: foreach (split(/\&/,$answer)) {
1.12 www 2543: my ($name,$value)=split(/\=/,$_);
1.591 albertel 2544: $returnhash{&unescape($name)}=&thaw_unescape($value);
1.191 harris41 2545: }
1.75 www 2546: my $version;
2547: for ($version=1;$version<=$returnhash{'version'};$version++) {
1.191 harris41 2548: foreach (split(/\:/,$returnhash{$version.':keys'})) {
1.75 www 2549: $returnhash{$_}=$returnhash{$version.':'.$_};
1.191 harris41 2550: }
1.75 www 2551: }
1.13 www 2552: return %returnhash;
1.34 www 2553: }
2554:
2555: # ---------------------------------------------------------- Course Description
2556:
2557: sub coursedescription {
2558: my $courseid=shift;
2559: $courseid=~s/^\///;
1.49 www 2560: $courseid=~s/\_/\//g;
1.34 www 2561: my ($cdomain,$cnum)=split(/\//,$courseid);
1.129 albertel 2562: my $chome=&homeserver($cnum,$cdomain);
1.302 albertel 2563: my $normalid=$cdomain.'_'.$cnum;
2564: # need to always cache even if we get errors otherwise we keep
2565: # trying and trying and trying to get the course description.
2566: my %envhash=();
2567: my %returnhash=();
2568: $envhash{'course.'.$normalid.'.last_cache'}=time;
1.34 www 2569: if ($chome ne 'no_host') {
1.302 albertel 2570: %returnhash=&dump('environment',$cdomain,$cnum);
1.129 albertel 2571: if (!exists($returnhash{'con_lost'})) {
2572: $returnhash{'home'}= $chome;
2573: $returnhash{'domain'} = $cdomain;
2574: $returnhash{'num'} = $cnum;
1.130 albertel 2575: while (my ($name,$value) = each %returnhash) {
1.53 www 2576: $envhash{'course.'.$normalid.'.'.$name}=$value;
1.129 albertel 2577: }
1.270 www 2578: $returnhash{'url'}=&clutter($returnhash{'url'});
1.34 www 2579: $returnhash{'fn'}=$perlvar{'lonDaemons'}.'/tmp/'.
1.620 albertel 2580: $env{'user.name'}.'_'.$cdomain.'_'.$cnum;
1.60 www 2581: $envhash{'course.'.$normalid.'.home'}=$chome;
2582: $envhash{'course.'.$normalid.'.domain'}=$cdomain;
2583: $envhash{'course.'.$normalid.'.num'}=$cnum;
1.34 www 2584: }
2585: }
1.302 albertel 2586: &appenv(%envhash);
2587: return %returnhash;
1.461 www 2588: }
2589:
2590: # -------------------------------------------------See if a user is privileged
2591:
2592: sub privileged {
2593: my ($username,$domain)=@_;
2594: my $rolesdump=&reply("dump:$domain:$username:roles",
2595: &homeserver($username,$domain));
2596: if (($rolesdump eq 'con_lost') || ($rolesdump eq '')) { return 0; }
2597: my $now=time;
2598: if ($rolesdump ne '') {
2599: foreach (split(/&/,$rolesdump)) {
1.586 albertel 2600: if ($_!~/^rolesdef_/) {
1.461 www 2601: my ($area,$role)=split(/=/,$_);
2602: $area=~s/\_\w\w$//;
2603: my ($trole,$tend,$tstart)=split(/_/,$role);
2604: if (($trole eq 'dc') || ($trole eq 'su')) {
2605: my $active=1;
2606: if ($tend) {
2607: if ($tend<$now) { $active=0; }
2608: }
2609: if ($tstart) {
2610: if ($tstart>$now) { $active=0; }
2611: }
2612: if ($active) { return 1; }
2613: }
2614: }
2615: }
2616: }
2617: return 0;
1.9 www 2618: }
1.1 albertel 2619:
1.103 harris41 2620: # -------------------------------------------------------- Get user privileges
1.11 www 2621:
2622: sub rolesinit {
2623: my ($domain,$username,$authhost)=@_;
2624: my $rolesdump=reply("dump:$domain:$username:roles",$authhost);
1.12 www 2625: if (($rolesdump eq 'con_lost') || ($rolesdump eq '')) { return ''; }
1.11 www 2626: my %allroles=();
1.678 raeburn 2627: my %allgroups=();
1.11 www 2628: my $now=time;
1.21 www 2629: my $userroles="user.login.time=$now\n";
1.678 raeburn 2630: my $group_privs;
1.11 www 2631:
2632: if ($rolesdump ne '') {
1.191 harris41 2633: foreach (split(/&/,$rolesdump)) {
1.586 albertel 2634: if ($_!~/^rolesdef_/) {
1.11 www 2635: my ($area,$role)=split(/=/,$_);
1.587 albertel 2636: $area=~s/\_\w\w$//;
1.678 raeburn 2637: my ($trole,$tend,$tstart,$group_privs);
1.587 albertel 2638: if ($role=~/^cr/) {
1.655 albertel 2639: if ($role=~m|^(cr/\w+/\w+/[a-zA-Z0-9]+)_(.*)$|) {
2640: ($trole,my $trest)=($role=~m|^(cr/\w+/\w+/[a-zA-Z0-9]+)_(.*)$|);
2641: ($tend,$tstart)=split('_',$trest);
2642: } else {
2643: $trole=$role;
2644: }
1.678 raeburn 2645: } elsif ($role =~ m|^gr/|) {
2646: ($trole,$tend,$tstart) = split(/_/,$role);
2647: ($trole,$group_privs) = split(/\//,$trole);
2648: $group_privs = &unescape($group_privs);
1.587 albertel 2649: } else {
2650: ($trole,$tend,$tstart)=split(/_/,$role);
2651: }
1.576 albertel 2652: $userroles.=&set_arearole($trole,$area,$tstart,$tend,$domain,$username);
1.567 raeburn 2653: if (($tend!=0) && ($tend<$now)) { $trole=''; }
2654: if (($tstart!=0) && ($tstart>$now)) { $trole=''; }
1.11 www 2655: if (($area ne '') && ($trole ne '')) {
1.347 albertel 2656: my $spec=$trole.'.'.$area;
2657: my ($tdummy,$tdomain,$trest)=split(/\//,$area);
2658: if ($trole =~ /^cr\//) {
1.567 raeburn 2659: &custom_roleprivs(\%allroles,$trole,$tdomain,$trest,$spec,$area);
1.678 raeburn 2660: } elsif ($trole eq 'gr') {
2661: &group_roleprivs(\%allgroups,$area,$group_privs,$tend,$tstart);
1.347 albertel 2662: } else {
1.567 raeburn 2663: &standard_roleprivs(\%allroles,$trole,$tdomain,$spec,$trest,$area);
1.347 albertel 2664: }
1.12 www 2665: }
1.662 raeburn 2666: }
1.191 harris41 2667: }
1.678 raeburn 2668: my ($author,$adv) = &set_userprivs(\$userroles,\%allroles,\%allgroups);
1.128 www 2669: $userroles.='user.adv='.$adv."\n".
2670: 'user.author='.$author."\n";
1.620 albertel 2671: $env{'user.adv'}=$adv;
1.11 www 2672: }
2673: return $userroles;
2674: }
2675:
1.567 raeburn 2676: sub set_arearole {
2677: my ($trole,$area,$tstart,$tend,$domain,$username) = @_;
2678: # log the associated role with the area
2679: &userrolelog($trole,$username,$domain,$area,$tstart,$tend);
2680: return 'user.role.'.$trole.'.'.$area.'='.$tstart.'.'.$tend."\n";
2681: }
2682:
2683: sub custom_roleprivs {
2684: my ($allroles,$trole,$tdomain,$trest,$spec,$area) = @_;
2685: my ($rdummy,$rdomain,$rauthor,$rrole)=split(/\//,$trole);
2686: my $homsvr=homeserver($rauthor,$rdomain);
2687: if ($hostname{$homsvr} ne '') {
2688: my ($rdummy,$roledef)=
2689: &get('roles',["rolesdef_$rrole"],$rdomain,$rauthor);
2690: if (($rdummy ne 'con_lost') && ($roledef ne '')) {
2691: my ($syspriv,$dompriv,$coursepriv)=split(/\_/,$roledef);
2692: if (defined($syspriv)) {
2693: $$allroles{'cm./'}.=':'.$syspriv;
2694: $$allroles{$spec.'./'}.=':'.$syspriv;
2695: }
2696: if ($tdomain ne '') {
2697: if (defined($dompriv)) {
2698: $$allroles{'cm./'.$tdomain.'/'}.=':'.$dompriv;
2699: $$allroles{$spec.'./'.$tdomain.'/'}.=':'.$dompriv;
2700: }
2701: if (($trest ne '') && (defined($coursepriv))) {
2702: $$allroles{'cm.'.$area}.=':'.$coursepriv;
2703: $$allroles{$spec.'.'.$area}.=':'.$coursepriv;
2704: }
2705: }
2706: }
2707: }
2708: }
2709:
1.678 raeburn 2710: sub group_roleprivs {
2711: my ($allgroups,$area,$group_privs,$tend,$tstart) = @_;
2712: my $access = 1;
2713: my $now = time;
2714: if (($tend!=0) && ($tend<$now)) { $access = 0; }
2715: if (($tstart!=0) && ($tstart>$now)) { $access=0; }
2716: if ($access) {
2717: my ($course,$group) = ($area =~ m|(/\w+/\w+)/([^/]+)$|);
2718: $$allgroups{$course}{$group} .=':'.$group_privs;
2719: }
2720: }
1.567 raeburn 2721:
2722: sub standard_roleprivs {
2723: my ($allroles,$trole,$tdomain,$spec,$trest,$area) = @_;
2724: if (defined($pr{$trole.':s'})) {
2725: $$allroles{'cm./'}.=':'.$pr{$trole.':s'};
2726: $$allroles{$spec.'./'}.=':'.$pr{$trole.':s'};
2727: }
2728: if ($tdomain ne '') {
2729: if (defined($pr{$trole.':d'})) {
2730: $$allroles{'cm./'.$tdomain.'/'}.=':'.$pr{$trole.':d'};
2731: $$allroles{$spec.'./'.$tdomain.'/'}.=':'.$pr{$trole.':d'};
2732: }
2733: if (($trest ne '') && (defined($pr{$trole.':c'}))) {
2734: $$allroles{'cm.'.$area}.=':'.$pr{$trole.':c'};
2735: $$allroles{$spec.'.'.$area}.=':'.$pr{$trole.':c'};
2736: }
2737: }
2738: }
2739:
2740: sub set_userprivs {
1.678 raeburn 2741: my ($userroles,$allroles,$allgroups) = @_;
1.567 raeburn 2742: my $author=0;
2743: my $adv=0;
1.678 raeburn 2744: my %grouproles = ();
2745: if (keys(%{$allgroups}) > 0) {
2746: foreach my $role (keys %{$allroles}) {
1.681 raeburn 2747: my ($trole,$area,$sec,$extendedarea);
2748: if ($role =~ m|^(\w+)\.(/\w+/\w+)(/?\w*)|) {
1.678 raeburn 2749: $trole = $1;
2750: $area = $2;
1.681 raeburn 2751: $sec = $3;
2752: $extendedarea = $area.$sec;
2753: if (exists($$allgroups{$area})) {
2754: foreach my $group (keys(%{$$allgroups{$area}})) {
2755: my $spec = $trole.'.'.$extendedarea;
2756: $grouproles{$spec.'.'.$area.'/'.$group} =
2757: $$allgroups{$area}{$group};
1.678 raeburn 2758: }
2759: }
2760: }
2761: }
2762: }
2763: foreach (keys(%grouproles)) {
2764: $$allroles{$_} = $grouproles{$_};
2765: }
1.567 raeburn 2766: foreach (keys %{$allroles}) {
2767: my %thesepriv=();
2768: if (($_=~/^au/) || ($_=~/^ca/)) { $author=1; }
2769: foreach (split(/:/,$$allroles{$_})) {
2770: if ($_ ne '') {
2771: my ($privilege,$restrictions)=split(/&/,$_);
2772: if ($restrictions eq '') {
2773: $thesepriv{$privilege}='F';
2774: } elsif ($thesepriv{$privilege} ne 'F') {
2775: $thesepriv{$privilege}.=$restrictions;
2776: }
2777: if ($thesepriv{'adv'} eq 'F') { $adv=1; }
2778: }
2779: }
2780: my $thesestr='';
2781: foreach (keys %thesepriv) { $thesestr.=':'.$_.'&'.$thesepriv{$_}; }
2782: $$userroles.='user.priv.'.$_.'='.$thesestr."\n";
2783: }
2784: return ($author,$adv);
2785: }
2786:
1.12 www 2787: # --------------------------------------------------------------- get interface
2788:
2789: sub get {
1.131 albertel 2790: my ($namespace,$storearr,$udomain,$uname)=@_;
1.12 www 2791: my $items='';
1.191 harris41 2792: foreach (@$storearr) {
1.12 www 2793: $items.=escape($_).'&';
1.191 harris41 2794: }
1.12 www 2795: $items=~s/\&$//;
1.620 albertel 2796: if (!$udomain) { $udomain=$env{'user.domain'}; }
2797: if (!$uname) { $uname=$env{'user.name'}; }
1.131 albertel 2798: my $uhome=&homeserver($uname,$udomain);
2799:
1.133 albertel 2800: my $rep=&reply("get:$udomain:$uname:$namespace:$items",$uhome);
1.15 www 2801: my @pairs=split(/\&/,$rep);
1.273 albertel 2802: if ( $#pairs==0 && $pairs[0] =~ /^(con_lost|error|no_such_host)/i) {
2803: return @pairs;
2804: }
1.15 www 2805: my %returnhash=();
1.42 www 2806: my $i=0;
1.191 harris41 2807: foreach (@$storearr) {
1.557 albertel 2808: $returnhash{$_}=&thaw_unescape($pairs[$i]);
1.42 www 2809: $i++;
1.191 harris41 2810: }
1.15 www 2811: return %returnhash;
1.27 www 2812: }
2813:
2814: # --------------------------------------------------------------- del interface
2815:
2816: sub del {
1.133 albertel 2817: my ($namespace,$storearr,$udomain,$uname)=@_;
1.27 www 2818: my $items='';
1.191 harris41 2819: foreach (@$storearr) {
1.27 www 2820: $items.=escape($_).'&';
1.191 harris41 2821: }
1.27 www 2822: $items=~s/\&$//;
1.620 albertel 2823: if (!$udomain) { $udomain=$env{'user.domain'}; }
2824: if (!$uname) { $uname=$env{'user.name'}; }
1.133 albertel 2825: my $uhome=&homeserver($uname,$udomain);
2826:
2827: return &reply("del:$udomain:$uname:$namespace:$items",$uhome);
1.15 www 2828: }
2829:
2830: # -------------------------------------------------------------- dump interface
2831:
2832: sub dump {
1.702 albertel 2833: my ($namespace,$udomain,$uname,$regexp,$range)=@_;
1.620 albertel 2834: if (!$udomain) { $udomain=$env{'user.domain'}; }
2835: if (!$uname) { $uname=$env{'user.name'}; }
1.129 albertel 2836: my $uhome=&homeserver($uname,$udomain);
1.193 www 2837: if ($regexp) {
2838: $regexp=&escape($regexp);
2839: } else {
2840: $regexp='.';
2841: }
1.702 albertel 2842: my $rep=reply("dump:$udomain:$uname:$namespace:$regexp:$range",$uhome);
1.12 www 2843: my @pairs=split(/\&/,$rep);
2844: my %returnhash=();
1.191 harris41 2845: foreach (@pairs) {
1.702 albertel 2846: my ($key,$value)=split(/=/,$_,2);
1.557 albertel 2847: $returnhash{unescape($key)}=&thaw_unescape($value);
1.318 matthew 2848: }
2849: return %returnhash;
1.407 www 2850: }
2851:
2852: # -------------------------------------------------------------- keys interface
2853:
2854: sub getkeys {
2855: my ($namespace,$udomain,$uname)=@_;
1.620 albertel 2856: if (!$udomain) { $udomain=$env{'user.domain'}; }
2857: if (!$uname) { $uname=$env{'user.name'}; }
1.407 www 2858: my $uhome=&homeserver($uname,$udomain);
2859: my $rep=reply("keys:$udomain:$uname:$namespace",$uhome);
2860: my @keyarray=();
2861: foreach (split(/\&/,$rep)) {
2862: push (@keyarray,&unescape($_));
2863: }
2864: return @keyarray;
1.318 matthew 2865: }
2866:
1.319 matthew 2867: # --------------------------------------------------------------- currentdump
2868: sub currentdump {
1.328 matthew 2869: my ($courseid,$sdom,$sname)=@_;
1.620 albertel 2870: $courseid = $env{'request.course.id'} if (! defined($courseid));
2871: $sdom = $env{'user.domain'} if (! defined($sdom));
2872: $sname = $env{'user.name'} if (! defined($sname));
1.326 matthew 2873: my $uhome = &homeserver($sname,$sdom);
2874: my $rep=reply('currentdump:'.$sdom.':'.$sname.':'.$courseid,$uhome);
1.318 matthew 2875: return if ($rep =~ /^(error:|no_such_host)/);
1.319 matthew 2876: #
1.318 matthew 2877: my %returnhash=();
1.319 matthew 2878: #
2879: if ($rep eq "unknown_cmd") {
2880: # an old lond will not know currentdump
2881: # Do a dump and make it look like a currentdump
1.326 matthew 2882: my @tmp = &dump($courseid,$sdom,$sname,'.');
1.319 matthew 2883: return if ($tmp[0] =~ /^(error:|no_such_host)/);
2884: my %hash = @tmp;
2885: @tmp=();
1.424 matthew 2886: %returnhash = %{&convert_dump_to_currentdump(\%hash)};
1.319 matthew 2887: } else {
2888: my @pairs=split(/\&/,$rep);
2889: foreach (@pairs) {
2890: my ($key,$value)=split(/=/,$_);
2891: my ($symb,$param) = split(/:/,$key);
2892: $returnhash{&unescape($symb)}->{&unescape($param)} =
1.557 albertel 2893: &thaw_unescape($value);
1.319 matthew 2894: }
1.191 harris41 2895: }
1.12 www 2896: return %returnhash;
1.424 matthew 2897: }
2898:
2899: sub convert_dump_to_currentdump{
2900: my %hash = %{shift()};
2901: my %returnhash;
2902: # Code ripped from lond, essentially. The only difference
2903: # here is the unescaping done by lonnet::dump(). Conceivably
2904: # we might run in to problems with parameter names =~ /^v\./
2905: while (my ($key,$value) = each(%hash)) {
2906: my ($v,$symb,$param) = split(/:/,$key);
2907: next if ($v eq 'version' || $symb eq 'keys');
2908: next if (exists($returnhash{$symb}) &&
2909: exists($returnhash{$symb}->{$param}) &&
2910: $returnhash{$symb}->{'v.'.$param} > $v);
2911: $returnhash{$symb}->{$param}=$value;
2912: $returnhash{$symb}->{'v.'.$param}=$v;
2913: }
2914: #
2915: # Remove all of the keys in the hashes which keep track of
2916: # the version of the parameter.
2917: while (my ($symb,$param_hash) = each(%returnhash)) {
2918: # use a foreach because we are going to delete from the hash.
2919: foreach my $key (keys(%$param_hash)) {
2920: delete($param_hash->{$key}) if ($key =~ /^v\./);
2921: }
2922: }
2923: return \%returnhash;
1.12 www 2924: }
2925:
1.627 albertel 2926: # ------------------------------------------------------ critical inc interface
2927:
2928: sub cinc {
2929: return &inc(@_,'critical');
2930: }
2931:
1.449 matthew 2932: # --------------------------------------------------------------- inc interface
2933:
2934: sub inc {
1.627 albertel 2935: my ($namespace,$store,$udomain,$uname,$critical) = @_;
1.620 albertel 2936: if (!$udomain) { $udomain=$env{'user.domain'}; }
2937: if (!$uname) { $uname=$env{'user.name'}; }
1.449 matthew 2938: my $uhome=&homeserver($uname,$udomain);
2939: my $items='';
2940: if (! ref($store)) {
2941: # got a single value, so use that instead
2942: $items = &escape($store).'=&';
2943: } elsif (ref($store) eq 'SCALAR') {
2944: $items = &escape($$store).'=&';
2945: } elsif (ref($store) eq 'ARRAY') {
2946: $items = join('=&',map {&escape($_);} @{$store});
2947: } elsif (ref($store) eq 'HASH') {
2948: while (my($key,$value) = each(%{$store})) {
2949: $items.= &escape($key).'='.&escape($value).'&';
2950: }
2951: }
2952: $items=~s/\&$//;
1.627 albertel 2953: if ($critical) {
2954: return &critical("inc:$udomain:$uname:$namespace:$items",$uhome);
2955: } else {
2956: return &reply("inc:$udomain:$uname:$namespace:$items",$uhome);
2957: }
1.449 matthew 2958: }
2959:
1.12 www 2960: # --------------------------------------------------------------- put interface
2961:
2962: sub put {
1.134 albertel 2963: my ($namespace,$storehash,$udomain,$uname)=@_;
1.620 albertel 2964: if (!$udomain) { $udomain=$env{'user.domain'}; }
2965: if (!$uname) { $uname=$env{'user.name'}; }
1.134 albertel 2966: my $uhome=&homeserver($uname,$udomain);
1.12 www 2967: my $items='';
1.191 harris41 2968: foreach (keys %$storehash) {
1.557 albertel 2969: $items.=&escape($_).'='.&freeze_escape($$storehash{$_}).'&';
1.191 harris41 2970: }
1.12 www 2971: $items=~s/\&$//;
1.134 albertel 2972: return &reply("put:$udomain:$uname:$namespace:$items",$uhome);
1.47 www 2973: }
2974:
1.631 albertel 2975: # ------------------------------------------------------------ newput interface
2976:
2977: sub newput {
2978: my ($namespace,$storehash,$udomain,$uname)=@_;
2979: if (!$udomain) { $udomain=$env{'user.domain'}; }
2980: if (!$uname) { $uname=$env{'user.name'}; }
2981: my $uhome=&homeserver($uname,$udomain);
2982: my $items='';
2983: foreach my $key (keys(%$storehash)) {
2984: $items.=&escape($key).'='.&freeze_escape($$storehash{$key}).'&';
2985: }
2986: $items=~s/\&$//;
2987: return &reply("newput:$udomain:$uname:$namespace:$items",$uhome);
2988: }
2989:
2990: # --------------------------------------------------------- putstore interface
2991:
1.524 raeburn 2992: sub putstore {
2993: my ($namespace,$storehash,$udomain,$uname)=@_;
1.620 albertel 2994: if (!$udomain) { $udomain=$env{'user.domain'}; }
2995: if (!$uname) { $uname=$env{'user.name'}; }
1.524 raeburn 2996: my $uhome=&homeserver($uname,$udomain);
2997: my $items='';
2998: my %allitems = ();
2999: foreach (keys %$storehash) {
3000: if ($_ =~ m/^([^\:]+):([^\:]+):([^\:]+)$/) {
3001: my $key = $1.':keys:'.$2;
3002: $allitems{$key} .= $3.':';
3003: }
1.591 albertel 3004: $items.=$_.'='.&freeze_escape($$storehash{$_}).'&';
1.524 raeburn 3005: }
3006: foreach (keys %allitems) {
3007: $allitems{$_} =~ s/\:$//;
3008: $items.= $_.'='.$allitems{$_}.'&';
3009: }
3010: $items=~s/\&$//;
3011: return &reply("put:$udomain:$uname:$namespace:$items",$uhome);
3012: }
3013:
1.47 www 3014: # ------------------------------------------------------ critical put interface
3015:
3016: sub cput {
1.134 albertel 3017: my ($namespace,$storehash,$udomain,$uname)=@_;
1.620 albertel 3018: if (!$udomain) { $udomain=$env{'user.domain'}; }
3019: if (!$uname) { $uname=$env{'user.name'}; }
1.134 albertel 3020: my $uhome=&homeserver($uname,$udomain);
1.47 www 3021: my $items='';
1.191 harris41 3022: foreach (keys %$storehash) {
1.557 albertel 3023: $items.=escape($_).'='.&freeze_escape($$storehash{$_}).'&';
1.191 harris41 3024: }
1.47 www 3025: $items=~s/\&$//;
1.134 albertel 3026: return &critical("put:$udomain:$uname:$namespace:$items",$uhome);
1.12 www 3027: }
3028:
3029: # -------------------------------------------------------------- eget interface
3030:
3031: sub eget {
1.133 albertel 3032: my ($namespace,$storearr,$udomain,$uname)=@_;
1.12 www 3033: my $items='';
1.191 harris41 3034: foreach (@$storearr) {
1.12 www 3035: $items.=escape($_).'&';
1.191 harris41 3036: }
1.12 www 3037: $items=~s/\&$//;
1.620 albertel 3038: if (!$udomain) { $udomain=$env{'user.domain'}; }
3039: if (!$uname) { $uname=$env{'user.name'}; }
1.133 albertel 3040: my $uhome=&homeserver($uname,$udomain);
3041: my $rep=&reply("eget:$udomain:$uname:$namespace:$items",$uhome);
1.12 www 3042: my @pairs=split(/\&/,$rep);
3043: my %returnhash=();
1.42 www 3044: my $i=0;
1.191 harris41 3045: foreach (@$storearr) {
1.557 albertel 3046: $returnhash{$_}=&thaw_unescape($pairs[$i]);
1.42 www 3047: $i++;
1.191 harris41 3048: }
1.12 www 3049: return %returnhash;
3050: }
3051:
1.667 albertel 3052: # ------------------------------------------------------------ tmpput interface
3053: sub tmpput {
3054: my ($storehash,$server)=@_;
3055: my $items='';
3056: foreach (keys(%$storehash)) {
3057: $items.=&escape($_).'='.&freeze_escape($$storehash{$_}).'&';
3058: }
3059: $items=~s/\&$//;
3060: return &reply("tmpput:$items",$server);
3061: }
3062:
3063: # ------------------------------------------------------------ tmpget interface
3064: sub tmpget {
1.688 albertel 3065: my ($token,$server)=@_;
3066: if (!defined($server)) { $server = $perlvar{'lonHostID'}; }
3067: my $rep=&reply("tmpget:$token",$server);
1.667 albertel 3068: my %returnhash;
3069: foreach my $item (split(/\&/,$rep)) {
3070: my ($key,$value)=split(/=/,$item);
3071: $returnhash{&unescape($key)}=&thaw_unescape($value);
3072: }
3073: return %returnhash;
3074: }
3075:
1.688 albertel 3076: # ------------------------------------------------------------ tmpget interface
3077: sub tmpdel {
3078: my ($token,$server)=@_;
3079: if (!defined($server)) { $server = $perlvar{'lonHostID'}; }
3080: return &reply("tmpdel:$token",$server);
3081: }
3082:
1.341 www 3083: # ---------------------------------------------- Custom access rule evaluation
3084:
3085: sub customaccess {
3086: my ($priv,$uri)=@_;
1.620 albertel 3087: my ($urole,$urealm)=split(/\./,$env{'request.role'});
1.343 www 3088: $urealm=~s/^\W//;
3089: my ($udom,$ucrs,$usec)=split(/\//,$urealm);
1.341 www 3090: my $access=0;
3091: foreach (split(/\s*\,\s*/,&metadata($uri,'rule_rights'))) {
1.342 www 3092: my ($effect,$realm,$role)=split(/\:/,$_);
1.343 www 3093: if ($role) {
3094: if ($role ne $urole) { next; }
3095: }
3096: foreach (split(/\s*\,\s*/,$realm)) {
3097: my ($tdom,$tcrs,$tsec)=split(/\_/,$_);
3098: if ($tdom) {
3099: if ($tdom ne $udom) { next; }
3100: }
3101: if ($tcrs) {
3102: if ($tcrs ne $ucrs) { next; }
3103: }
3104: if ($tsec) {
3105: if ($tsec ne $usec) { next; }
3106: }
3107: $access=($effect eq 'allow');
3108: last;
1.342 www 3109: }
1.402 bowersj2 3110: if ($realm eq '' && $role eq '') {
3111: $access=($effect eq 'allow');
3112: }
1.341 www 3113: }
3114: return $access;
3115: }
3116:
1.103 harris41 3117: # ------------------------------------------------- Check for a user privilege
1.12 www 3118:
3119: sub allowed {
1.579 albertel 3120: my ($priv,$uri,$symb)=@_;
1.705 albertel 3121: my $ver_orguri=$uri;
1.439 www 3122: $uri=&deversion($uri);
1.152 www 3123: my $orguri=$uri;
1.52 www 3124: $uri=&declutter($uri);
1.545 banghart 3125:
1.620 albertel 3126: if (defined($env{'allowed.'.$priv})) { return $env{'allowed.'.$priv}; }
1.54 www 3127: # Free bre access to adm and meta resources
1.529 albertel 3128: if (((($uri=~/^adm\//) && ($uri !~ m|/bulletinboard$|))
3129: || ($uri=~/\.meta$/)) && ($priv eq 'bre')) {
1.14 www 3130: return 'F';
1.159 www 3131: }
3132:
1.545 banghart 3133: # Free bre access to user's own portfolio contents
1.546 albertel 3134: my ($space,$domain,$name,$dir)=split('/',$uri);
1.647 raeburn 3135: if (($space=~/^(uploaded|editupload)$/) && ($env{'user.name'} eq $name) &&
1.620 albertel 3136: ($env{'user.domain'} eq $domain) && ('portfolio' eq $dir)) {
1.545 banghart 3137: return 'F';
3138: }
3139:
1.159 www 3140: # Free bre to public access
3141:
3142: if ($priv eq 'bre') {
1.238 www 3143: my $copyright=&metadata($uri,'copyright');
1.620 albertel 3144: if (($copyright eq 'public') && (!$env{'request.course.id'})) {
1.301 www 3145: return 'F';
3146: }
1.238 www 3147: if ($copyright eq 'priv') {
3148: $uri=~/([^\/]+)\/([^\/]+)\//;
1.620 albertel 3149: unless (($env{'user.name'} eq $2) && ($env{'user.domain'} eq $1)) {
1.238 www 3150: return '';
3151: }
3152: }
3153: if ($copyright eq 'domain') {
3154: $uri=~/([^\/]+)\/([^\/]+)\//;
1.620 albertel 3155: unless (($env{'user.domain'} eq $1) ||
3156: ($env{'course.'.$env{'request.course.id'}.'.domain'} eq $1)) {
1.238 www 3157: return '';
3158: }
1.262 matthew 3159: }
1.620 albertel 3160: if ($env{'request.role'}=~ /li\.\//) {
1.262 matthew 3161: # Library role, so allow browsing of resources in this domain.
3162: return 'F';
1.238 www 3163: }
1.341 www 3164: if ($copyright eq 'custom') {
3165: unless (&customaccess($priv,$uri)) { return ''; }
3166: }
1.14 www 3167: }
1.264 matthew 3168: # Domain coordinator is trying to create a course
1.620 albertel 3169: if (($priv eq 'ccc') && ($env{'request.role'} =~ /^dc\./)) {
1.264 matthew 3170: # uri is the requested domain in this case.
3171: # comparison to 'request.role.domain' shows if the user has selected
1.678 raeburn 3172: # a role of dc for the domain in question.
1.620 albertel 3173: return 'F' if ($uri eq $env{'request.role.domain'});
1.264 matthew 3174: }
1.29 www 3175:
1.52 www 3176: my $thisallowed='';
3177: my $statecond=0;
3178: my $courseprivid='';
3179:
3180: # Course
3181:
1.620 albertel 3182: if ($env{'user.priv.'.$env{'request.role'}.'./'}=~/\Q$priv\E\&([^\:]*)/) {
1.52 www 3183: $thisallowed.=$1;
3184: }
1.29 www 3185:
1.52 www 3186: # Domain
3187:
1.620 albertel 3188: if ($env{'user.priv.'.$env{'request.role'}.'./'.(split(/\//,$uri))[0].'/'}
1.479 albertel 3189: =~/\Q$priv\E\&([^\:]*)/) {
1.12 www 3190: $thisallowed.=$1;
3191: }
1.52 www 3192:
3193: # Course: uri itself is a course
1.66 www 3194: my $courseuri=$uri;
3195: $courseuri=~s/\_(\d)/\/$1/;
1.83 www 3196: $courseuri=~s/^([^\/])/\/$1/;
1.81 www 3197:
1.620 albertel 3198: if ($env{'user.priv.'.$env{'request.role'}.'.'.$courseuri}
1.479 albertel 3199: =~/\Q$priv\E\&([^\:]*)/) {
1.12 www 3200: $thisallowed.=$1;
3201: }
1.29 www 3202:
1.678 raeburn 3203: # Group: uri itself is a group
3204: my $groupuri=$uri;
3205: $groupuri=~s/^([^\/])/\/$1/;
3206: if ($env{'user.priv.'.$env{'request.role'}.'.'.$groupuri}
3207: =~/\Q$priv\E\&([^\:]*)/) {
3208: $thisallowed.=$1;
3209: }
3210:
1.665 albertel 3211: # URI is an uploaded document for this course, default permissions don't matter
1.611 albertel 3212: # not allowing 'edit' access (editupload) to uploaded course docs
1.492 albertel 3213: if (($priv eq 'bre') && ($uri=~m|^uploaded/|)) {
1.665 albertel 3214: $thisallowed='';
1.671 raeburn 3215: my ($match)=&is_on_map($uri);
3216: if ($match) {
3217: if ($env{'user.priv.'.$env{'request.role'}.'./'}
3218: =~/\Q$priv\E\&([^\:]*)/) {
3219: $thisallowed.=$1;
3220: }
3221: } else {
1.705 albertel 3222: my $refuri = $env{'httpref.'.$orguri} || $env{'httpref.'.$ver_orguri};
1.671 raeburn 3223: if ($refuri) {
3224: if ($refuri =~ m|^/adm/|) {
1.669 raeburn 3225: $thisallowed='F';
1.671 raeburn 3226: } else {
3227: $refuri=&declutter($refuri);
3228: my ($match) = &is_on_map($refuri);
3229: if ($match) {
3230: $thisallowed='F';
3231: }
1.669 raeburn 3232: }
1.671 raeburn 3233: }
3234: }
1.314 www 3235: }
1.492 albertel 3236:
1.52 www 3237: # Full access at system, domain or course-wide level? Exit.
1.29 www 3238:
3239: if ($thisallowed=~/F/) {
3240: return 'F';
3241: }
3242:
1.52 www 3243: # If this is generating or modifying users, exit with special codes
1.29 www 3244:
1.643 www 3245: if (':csu:cdc:ccc:cin:cta:cep:ccr:cst:cad:cli:cau:cdg:cca:caa:'=~/\:\Q$priv\E\:/) {
3246: if (($priv eq 'cca') || ($priv eq 'caa')) {
1.642 albertel 3247: my ($audom,$auname)=split('/',$uri);
1.643 www 3248: # no author name given, so this just checks on the general right to make a co-author in this domain
3249: unless ($auname) { return $thisallowed; }
3250: # an author name is given, so we are about to actually make a co-author for a certain account
1.642 albertel 3251: if (($auname ne $env{'user.name'} && $env{'request.role'} !~ /^dc\./) ||
3252: (($audom ne $env{'user.domain'} && $env{'request.role'} !~ /^dc\./) &&
3253: ($audom ne $env{'request.role.domain'}))) { return ''; }
3254: }
1.52 www 3255: return $thisallowed;
3256: }
3257: #
1.103 harris41 3258: # Gathered so far: system, domain and course wide privileges
1.52 www 3259: #
3260: # Course: See if uri or referer is an individual resource that is part of
3261: # the course
3262:
1.620 albertel 3263: if ($env{'request.course.id'}) {
1.232 www 3264:
1.620 albertel 3265: $courseprivid=$env{'request.course.id'};
3266: if ($env{'request.course.sec'}) {
3267: $courseprivid.='/'.$env{'request.course.sec'};
1.52 www 3268: }
3269: $courseprivid=~s/\_/\//;
3270: my $checkreferer=1;
1.232 www 3271: my ($match,$cond)=&is_on_map($uri);
3272: if ($match) {
3273: $statecond=$cond;
1.620 albertel 3274: if ($env{'user.priv.'.$env{'request.role'}.'./'.$courseprivid}
1.479 albertel 3275: =~/\Q$priv\E\&([^\:]*)/) {
1.52 www 3276: $thisallowed.=$1;
3277: $checkreferer=0;
3278: }
1.29 www 3279: }
1.83 www 3280:
1.148 www 3281: if ($checkreferer) {
1.620 albertel 3282: my $refuri=$env{'httpref.'.$orguri};
1.148 www 3283: unless ($refuri) {
1.620 albertel 3284: foreach (keys %env) {
1.148 www 3285: if ($_=~/^httpref\..*\*/) {
3286: my $pattern=$_;
1.156 www 3287: $pattern=~s/^httpref\.\/res\///;
1.148 www 3288: $pattern=~s/\*/\[\^\/\]\+/g;
3289: $pattern=~s/\//\\\//g;
1.152 www 3290: if ($orguri=~/$pattern/) {
1.620 albertel 3291: $refuri=$env{$_};
1.148 www 3292: }
3293: }
1.191 harris41 3294: }
1.148 www 3295: }
1.232 www 3296:
1.148 www 3297: if ($refuri) {
1.152 www 3298: $refuri=&declutter($refuri);
1.232 www 3299: my ($match,$cond)=&is_on_map($refuri);
3300: if ($match) {
3301: my $refstatecond=$cond;
1.620 albertel 3302: if ($env{'user.priv.'.$env{'request.role'}.'./'.$courseprivid}
1.479 albertel 3303: =~/\Q$priv\E\&([^\:]*)/) {
1.52 www 3304: $thisallowed.=$1;
1.53 www 3305: $uri=$refuri;
3306: $statecond=$refstatecond;
1.52 www 3307: }
3308: }
1.148 www 3309: }
1.29 www 3310: }
1.52 www 3311: }
1.29 www 3312:
1.52 www 3313: #
1.103 harris41 3314: # Gathered now: all privileges that could apply, and condition number
1.52 www 3315: #
3316: #
3317: # Full or no access?
3318: #
1.29 www 3319:
1.52 www 3320: if ($thisallowed=~/F/) {
3321: return 'F';
3322: }
1.29 www 3323:
1.52 www 3324: unless ($thisallowed) {
3325: return '';
3326: }
1.29 www 3327:
1.52 www 3328: # Restrictions exist, deal with them
3329: #
3330: # C:according to course preferences
3331: # R:according to resource settings
3332: # L:unless locked
3333: # X:according to user session state
3334: #
3335:
3336: # Possibly locked functionality, check all courses
1.54 www 3337: # Locks might take effect only after 10 minutes cache expiration for other
3338: # courses, and 2 minutes for current course
1.52 www 3339:
3340: my $envkey;
3341: if ($thisallowed=~/L/) {
1.620 albertel 3342: foreach $envkey (keys %env) {
1.54 www 3343: if ($envkey=~/^user\.role\.(st|ta)\.([^\.]*)/) {
3344: my $courseid=$2;
3345: my $roleid=$1.'.'.$2;
1.92 www 3346: $courseid=~s/^\///;
1.54 www 3347: my $expiretime=600;
1.620 albertel 3348: if ($env{'request.role'} eq $roleid) {
1.54 www 3349: $expiretime=120;
3350: }
3351: my ($cdom,$cnum,$csec)=split(/\//,$courseid);
3352: my $prefix='course.'.$cdom.'_'.$cnum.'.';
1.620 albertel 3353: if ((time-$env{$prefix.'last_cache'})>$expiretime) {
1.54 www 3354: &coursedescription($courseid);
3355: }
1.620 albertel 3356: if (($env{$prefix.'res.'.$uri.'.lock.sections'}=~/\,\Q$csec\E\,/)
3357: || ($env{$prefix.'res.'.$uri.'.lock.sections'} eq 'all')) {
3358: if ($env{$prefix.'res.'.$uri.'.lock.expire'}>time) {
3359: &log($env{'user.domain'},$env{'user.name'},
3360: $env{'user.home'},
1.57 www 3361: 'Locked by res: '.$priv.' for '.$uri.' due to '.
1.52 www 3362: $cdom.'/'.$cnum.'/'.$csec.' expire '.
1.620 albertel 3363: $env{$prefix.'priv.'.$priv.'.lock.expire'});
1.52 www 3364: return '';
3365: }
3366: }
1.620 albertel 3367: if (($env{$prefix.'priv.'.$priv.'.lock.sections'}=~/\,\Q$csec\E\,/)
3368: || ($env{$prefix.'priv.'.$priv.'.lock.sections'} eq 'all')) {
3369: if ($env{'priv.'.$priv.'.lock.expire'}>time) {
3370: &log($env{'user.domain'},$env{'user.name'},
3371: $env{'user.home'},
1.57 www 3372: 'Locked by priv: '.$priv.' for '.$uri.' due to '.
1.52 www 3373: $cdom.'/'.$cnum.'/'.$csec.' expire '.
1.620 albertel 3374: $env{$prefix.'priv.'.$priv.'.lock.expire'});
1.52 www 3375: return '';
3376: }
3377: }
3378: }
1.29 www 3379: }
1.52 www 3380: }
3381:
3382: #
3383: # Rest of the restrictions depend on selected course
3384: #
3385:
1.620 albertel 3386: unless ($env{'request.course.id'}) {
1.52 www 3387: return '1';
3388: }
1.29 www 3389:
1.52 www 3390: #
3391: # Now user is definitely in a course
3392: #
1.53 www 3393:
3394:
3395: # Course preferences
3396:
3397: if ($thisallowed=~/C/) {
1.620 albertel 3398: my $rolecode=(split(/\./,$env{'request.role'}))[0];
3399: my $unamedom=$env{'user.name'}.':'.$env{'user.domain'};
3400: if ($env{'course.'.$env{'request.course.id'}.'.'.$priv.'.roles.denied'}
1.479 albertel 3401: =~/\Q$rolecode\E/) {
1.689 albertel 3402: if ($priv ne 'pch') {
3403: &logthis($env{'user.domain'}.':'.$env{'user.name'}.':'.$env{'user.home'}.':'.
3404: 'Denied by role: '.$priv.' for '.$uri.' as '.$rolecode.' in '.
3405: $env{'request.course.id'});
3406: }
1.237 www 3407: return '';
3408: }
3409:
1.620 albertel 3410: if ($env{'course.'.$env{'request.course.id'}.'.'.$priv.'.users.denied'}
1.479 albertel 3411: =~/\Q$unamedom\E/) {
1.689 albertel 3412: if ($priv ne 'pch') {
3413: &logthis($env{'user.domain'}.':'.$env{'user.name'}.':'.$env{'user.home'}.
3414: 'Denied by user: '.$priv.' for '.$uri.' as '.$unamedom.' in '.
3415: $env{'request.course.id'});
3416: }
1.54 www 3417: return '';
3418: }
1.53 www 3419: }
3420:
3421: # Resource preferences
3422:
3423: if ($thisallowed=~/R/) {
1.620 albertel 3424: my $rolecode=(split(/\./,$env{'request.role'}))[0];
1.479 albertel 3425: if (&metadata($uri,'roledeny')=~/\Q$rolecode\E/) {
1.689 albertel 3426: if ($priv ne 'pch') {
3427: &logthis($env{'user.domain'}.':'.$env{'user.name'}.':'.$env{'user.home'}.':'.
3428: 'Denied by role: '.$priv.' for '.$uri.' as '.$rolecode);
3429: }
3430: return '';
1.54 www 3431: }
1.53 www 3432: }
1.30 www 3433:
1.246 www 3434: # Restricted by state or randomout?
1.30 www 3435:
1.52 www 3436: if ($thisallowed=~/X/) {
1.620 albertel 3437: if ($env{'acc.randomout'}) {
1.579 albertel 3438: if (!$symb) { $symb=&symbread($uri,1); }
1.620 albertel 3439: if (($symb) && ($env{'acc.randomout'}=~/\&\Q$symb\E\&/)) {
1.248 www 3440: return '';
3441: }
1.247 www 3442: }
3443: if (&condval($statecond)) {
1.52 www 3444: return '2';
3445: } else {
3446: return '';
3447: }
3448: }
1.30 www 3449:
1.52 www 3450: return 'F';
1.232 www 3451: }
3452:
3453: # --------------------------------------------------- Is a resource on the map?
3454:
3455: sub is_on_map {
1.659 albertel 3456: my $uri=&deversion(&declutter(shift));
1.232 www 3457: my @uriparts=split(/\//,$uri);
3458: my $filename=$uriparts[$#uriparts];
3459: my $pathname=$uri;
1.289 bowersj2 3460: $pathname=~s|/\Q$filename\E$||;
1.694 albertel 3461: $pathname=~s/^adm\/wrapper\///;
3462: $pathname=~s/^adm\/coursedocs\/showdoc\///;
1.289 bowersj2 3463: #Trying to find the conditional for the file
1.620 albertel 3464: my $match=($env{'acc.res.'.$env{'request.course.id'}.'.'.$pathname}=~
1.289 bowersj2 3465: /\&\Q$filename\E\:([\d\|]+)\&/);
1.232 www 3466: if ($match) {
1.289 bowersj2 3467: return (1,$1);
3468: } else {
1.434 www 3469: return (0,0);
1.289 bowersj2 3470: }
1.12 www 3471: }
3472:
1.427 www 3473: # --------------------------------------------------------- Get symb from alias
3474:
3475: sub get_symb_from_alias {
3476: my $symb=shift;
3477: my ($map,$resid,$url)=&decode_symb($symb);
3478: # Already is a symb
3479: if ($url) { return $symb; }
3480: # Must be an alias
3481: my $aliassymb='';
3482: my %bighash;
1.620 albertel 3483: if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.427 www 3484: &GDBM_READER(),0640)) {
3485: my $rid=$bighash{'mapalias_'.$symb};
3486: if ($rid) {
3487: my ($mapid,$resid)=split(/\./,$rid);
1.429 albertel 3488: $aliassymb=&encode_symb($bighash{'map_id_'.$mapid},
3489: $resid,$bighash{'src_'.$rid});
1.427 www 3490: }
3491: untie %bighash;
3492: }
3493: return $aliassymb;
3494: }
3495:
1.12 www 3496: # ----------------------------------------------------------------- Define Role
3497:
3498: sub definerole {
3499: if (allowed('mcr','/')) {
3500: my ($rolename,$sysrole,$domrole,$courole)=@_;
1.392 www 3501: foreach (split(':',$sysrole)) {
1.21 www 3502: my ($crole,$cqual)=split(/\&/,$_);
1.479 albertel 3503: if ($pr{'cr:s'}!~/\Q$crole\E/) { return "refused:s:$crole"; }
3504: if ($pr{'cr:s'}=~/\Q$crole\E\&/) {
3505: if ($pr{'cr:s'}!~/\Q$crole\E\&\w*\Q$cqual\E/) {
1.21 www 3506: return "refused:s:$crole&$cqual";
3507: }
3508: }
1.191 harris41 3509: }
1.392 www 3510: foreach (split(':',$domrole)) {
1.21 www 3511: my ($crole,$cqual)=split(/\&/,$_);
1.479 albertel 3512: if ($pr{'cr:d'}!~/\Q$crole\E/) { return "refused:d:$crole"; }
3513: if ($pr{'cr:d'}=~/\Q$crole\E\&/) {
3514: if ($pr{'cr:d'}!~/\Q$crole\W\&\w*\Q$cqual\E/) {
1.21 www 3515: return "refused:d:$crole&$cqual";
3516: }
3517: }
1.191 harris41 3518: }
1.392 www 3519: foreach (split(':',$courole)) {
1.21 www 3520: my ($crole,$cqual)=split(/\&/,$_);
1.479 albertel 3521: if ($pr{'cr:c'}!~/\Q$crole\E/) { return "refused:c:$crole"; }
3522: if ($pr{'cr:c'}=~/\Q$crole\E\&/) {
3523: if ($pr{'cr:c'}!~/\Q$crole\E\&\w*\Q$cqual\E/) {
1.21 www 3524: return "refused:c:$crole&$cqual";
3525: }
3526: }
1.191 harris41 3527: }
1.620 albertel 3528: my $command="encrypt:rolesput:$env{'user.domain'}:$env{'user.name'}:".
3529: "$env{'user.domain'}:$env{'user.name'}:".
1.21 www 3530: "rolesdef_$rolename=".
3531: escape($sysrole.'_'.$domrole.'_'.$courole);
1.620 albertel 3532: return reply($command,$env{'user.home'});
1.12 www 3533: } else {
3534: return 'refused';
3535: }
1.105 harris41 3536: }
3537:
3538: # ---------------- Make a metadata query against the network of library servers
3539:
3540: sub metadata_query {
1.244 matthew 3541: my ($query,$custom,$customshow,$server_array)=@_;
1.120 harris41 3542: my %rhash;
1.244 matthew 3543: my @server_list = (defined($server_array) ? @$server_array
3544: : keys(%libserv) );
3545: for my $server (@server_list) {
1.118 harris41 3546: unless ($custom or $customshow) {
3547: my $reply=&reply("querysend:".&escape($query),$server);
3548: $rhash{$server}=$reply;
3549: }
3550: else {
3551: my $reply=&reply("querysend:".&escape($query).':'.
3552: &escape($custom).':'.&escape($customshow),
3553: $server);
3554: $rhash{$server}=$reply;
3555: }
1.112 harris41 3556: }
1.118 harris41 3557: return \%rhash;
1.240 www 3558: }
3559:
3560: # ----------------------------------------- Send log queries and wait for reply
3561:
3562: sub log_query {
3563: my ($uname,$udom,$query,%filters)=@_;
3564: my $uhome=&homeserver($uname,$udom);
3565: if ($uhome eq 'no_host') { return 'error: no_host'; }
3566: my $uhost=$hostname{$uhome};
1.241 www 3567: my $command=&escape(join(':',map{$_.'='.$filters{$_}} keys %filters));
1.240 www 3568: my $queryid=&reply("querysend:".$query.':'.$udom.':'.$uname.':'.$command,
3569: $uhome);
1.479 albertel 3570: unless ($queryid=~/^\Q$uhost\E\_/) { return 'error: '.$queryid; }
1.242 www 3571: return get_query_reply($queryid);
3572: }
3573:
1.508 raeburn 3574: # ------- Request retrieval of institutional classlists for course(s)
1.506 raeburn 3575:
3576: sub fetch_enrollment_query {
1.511 raeburn 3577: my ($context,$affiliatesref,$replyref,$dom,$cnum) = @_;
1.508 raeburn 3578: my $homeserver;
1.547 raeburn 3579: my $maxtries = 1;
1.508 raeburn 3580: if ($context eq 'automated') {
3581: $homeserver = $perlvar{'lonHostID'};
1.547 raeburn 3582: $maxtries = 10; # will wait for up to 2000s for retrieval of classlist data before timeout
1.508 raeburn 3583: } else {
3584: $homeserver = &homeserver($cnum,$dom);
3585: }
1.506 raeburn 3586: my $host=$hostname{$homeserver};
3587: my $cmd = '';
3588: foreach (keys %{$affiliatesref}) {
1.508 raeburn 3589: $cmd .= $_.'='.join(",",@{$$affiliatesref{$_}}).'%%';
1.506 raeburn 3590: }
3591: $cmd =~ s/%%$//;
3592: $cmd = &escape($cmd);
3593: my $query = 'fetchenrollment';
1.620 albertel 3594: my $queryid=&reply("querysend:".$query.':'.$dom.':'.$env{'user.name'}.':'.$cmd,$homeserver);
1.526 raeburn 3595: unless ($queryid=~/^\Q$host\E\_/) {
3596: &logthis('fetch_enrollment_query: invalid queryid: '.$queryid.' for host: '.$host.' and homeserver: '.$homeserver.' context: '.$context.' '.$cnum);
3597: return 'error: '.$queryid;
3598: }
1.506 raeburn 3599: my $reply = &get_query_reply($queryid);
1.547 raeburn 3600: my $tries = 1;
3601: while (($reply=~/^timeout/) && ($tries < $maxtries)) {
3602: $reply = &get_query_reply($queryid);
3603: $tries ++;
3604: }
1.526 raeburn 3605: if ( ($reply =~/^timeout/) || ($reply =~/^error/) ) {
1.620 albertel 3606: &logthis('fetch_enrollment_query error: '.$reply.' for '.$dom.' '.$env{'user.name'}.' for '.$queryid.' context: '.$context.' '.$cnum.' maxtries: '.$maxtries.' tries: '.$tries);
1.526 raeburn 3607: } else {
1.515 raeburn 3608: my @responses = split/:/,$reply;
3609: if ($homeserver eq $perlvar{'lonHostID'}) {
3610: foreach (@responses) {
3611: my ($key,$value) = split/=/,$_;
3612: $$replyref{$key} = $value;
3613: }
3614: } else {
1.506 raeburn 3615: my $pathname = $perlvar{'lonDaemons'}.'/tmp';
3616: foreach (@responses) {
3617: my ($key,$value) = split/=/,$_;
3618: $$replyref{$key} = $value;
3619: if ($value > 0) {
3620: foreach (@{$$affiliatesref{$key}}) {
3621: my $filename = $dom.'_'.$key.'_'.$_.'_classlist.xml';
3622: my $destname = $pathname.'/'.$filename;
3623: my $xml_classlist = &reply("autoretrieve:".$filename,$homeserver);
1.526 raeburn 3624: if ($xml_classlist =~ /^error/) {
3625: &logthis('fetch_enrollment_query - autoretrieve error: '.$xml_classlist.' for '.$filename.' from server: '.$homeserver.' '.$context.' '.$cnum);
3626: } else {
1.506 raeburn 3627: if ( open(FILE,">$destname") ) {
3628: print FILE &unescape($xml_classlist);
3629: close(FILE);
1.526 raeburn 3630: } else {
3631: &logthis('fetch_enrollment_query - error opening classlist file '.$destname.' '.$context.' '.$cnum);
1.506 raeburn 3632: }
3633: }
3634: }
3635: }
3636: }
3637: }
3638: return 'ok';
3639: }
3640: return 'error';
3641: }
3642:
1.242 www 3643: sub get_query_reply {
3644: my $queryid=shift;
1.240 www 3645: my $replyfile=$perlvar{'lonDaemons'}.'/tmp/'.$queryid;
3646: my $reply='';
3647: for (1..100) {
3648: sleep 2;
3649: if (-e $replyfile.'.end') {
1.448 albertel 3650: if (open(my $fh,$replyfile)) {
1.240 www 3651: $reply.=<$fh>;
1.448 albertel 3652: close($fh);
1.240 www 3653: } else { return 'error: reply_file_error'; }
1.242 www 3654: return &unescape($reply);
3655: }
1.240 www 3656: }
1.242 www 3657: return 'timeout:'.$queryid;
1.240 www 3658: }
3659:
3660: sub courselog_query {
1.241 www 3661: #
3662: # possible filters:
3663: # url: url or symb
3664: # username
3665: # domain
3666: # action: view, submit, grade
3667: # start: timestamp
3668: # end: timestamp
3669: #
1.240 www 3670: my (%filters)=@_;
1.620 albertel 3671: unless ($env{'request.course.id'}) { return 'no_course'; }
1.241 www 3672: if ($filters{'url'}) {
3673: $filters{'url'}=&symbclean(&declutter($filters{'url'}));
3674: $filters{'url'}=~s/\.(\w+)$/(\\.\\d+)*\\.$1/;
3675: $filters{'url'}=~s/\.(\w+)\_\_\_/(\\.\\d+)*\\.$1/;
3676: }
1.620 albertel 3677: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
3678: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.240 www 3679: return &log_query($cname,$cdom,'courselog',%filters);
3680: }
3681:
3682: sub userlog_query {
3683: my ($uname,$udom,%filters)=@_;
3684: return &log_query($uname,$udom,'userlog',%filters);
1.12 www 3685: }
3686:
1.506 raeburn 3687: #--------- Call auto-enrollment subs in localenroll.pm for homeserver for course
3688:
3689: sub auto_run {
1.508 raeburn 3690: my ($cnum,$cdom) = @_;
3691: my $homeserver = &homeserver($cnum,$cdom);
1.511 raeburn 3692: my $response = &reply('autorun:'.$cdom,$homeserver);
1.506 raeburn 3693: return $response;
3694: }
3695:
3696: sub auto_get_sections {
1.508 raeburn 3697: my ($cnum,$cdom,$inst_coursecode) = @_;
3698: my $homeserver = &homeserver($cnum,$cdom);
1.506 raeburn 3699: my @secs = ();
1.511 raeburn 3700: my $response=&unescape(&reply('autogetsections:'.$inst_coursecode.':'.$cdom,$homeserver));
1.506 raeburn 3701: unless ($response eq 'refused') {
3702: @secs = split/:/,$response;
3703: }
3704: return @secs;
3705: }
3706:
3707: sub auto_new_course {
1.508 raeburn 3708: my ($cnum,$cdom,$inst_course_id,$owner) = @_;
3709: my $homeserver = &homeserver($cnum,$cdom);
1.515 raeburn 3710: my $response=&unescape(&reply('autonewcourse:'.$inst_course_id.':'.$owner.':'.$cdom,$homeserver));
1.506 raeburn 3711: return $response;
3712: }
3713:
3714: sub auto_validate_courseID {
1.508 raeburn 3715: my ($cnum,$cdom,$inst_course_id) = @_;
3716: my $homeserver = &homeserver($cnum,$cdom);
1.511 raeburn 3717: my $response=&unescape(&reply('autovalidatecourse:'.$inst_course_id.':'.$cdom,$homeserver));
1.506 raeburn 3718: return $response;
3719: }
3720:
3721: sub auto_create_password {
1.508 raeburn 3722: my ($cnum,$cdom,$authparam) = @_;
3723: my $homeserver = &homeserver($cnum,$cdom);
1.506 raeburn 3724: my $create_passwd = 0;
3725: my $authchk = '';
1.511 raeburn 3726: my $response=&unescape(&reply('autocreatepassword:'.$authparam.':'.$cdom,$homeserver));
1.506 raeburn 3727: if ($response eq 'refused') {
3728: $authchk = 'refused';
3729: } else {
3730: ($authparam,$create_passwd,$authchk) = split/:/,$response;
3731: }
3732: return ($authparam,$create_passwd,$authchk);
3733: }
3734:
1.706 raeburn 3735: sub auto_photo_permission {
3736: my ($cnum,$cdom,$students) = @_;
3737: my $homeserver = &homeserver($cnum,$cdom);
1.707 albertel 3738: my ($outcome,$perm_reqd,$conditions) =
3739: split(/:/,&unescape(&reply('autophotopermission:'.$cdom,$homeserver)),3);
1.709 ! albertel 3740: if ($outcome =~ /^(con_lost|unknown_cmd|no_such_host)$/) {
! 3741: return (undef,undef);
! 3742: }
1.706 raeburn 3743: return ($outcome,$perm_reqd,$conditions);
3744: }
3745:
3746: sub auto_checkphotos {
3747: my ($uname,$udom,$pid) = @_;
3748: my $homeserver = &homeserver($uname,$udom);
3749: my ($result,$resulttype);
3750: my $outcome = &unescape(&reply('autophotocheck:'.&escape($udom).':'.
1.707 albertel 3751: &escape($uname).':'.&escape($pid),
3752: $homeserver));
1.709 ! albertel 3753: if ($outcome =~ /^(con_lost|unknown_cmd|no_such_host)$/) {
! 3754: return (undef,undef);
! 3755: }
1.706 raeburn 3756: if ($outcome) {
3757: ($result,$resulttype) = split(/:/,$outcome);
3758: }
3759: return ($result,$resulttype);
3760: }
3761:
3762: sub auto_photochoice {
3763: my ($cnum,$cdom) = @_;
3764: my $homeserver = &homeserver($cnum,$cdom);
3765: my ($update,$comment) = split(/:/,&unescape(&reply('autophotochoice:'.
1.707 albertel 3766: &escape($cdom),
3767: $homeserver)));
1.709 ! albertel 3768: if ($update =~ /^(con_lost|unknown_cmd|no_such_host)$/) {
! 3769: return (undef,undef);
! 3770: }
1.706 raeburn 3771: return ($update,$comment);
3772: }
3773:
3774: sub auto_photoupdate {
3775: my ($affiliatesref,$dom,$cnum,$photo) = @_;
3776: my $homeserver = &homeserver($cnum,$dom);
3777: my $host=$hostname{$homeserver};
3778: my $cmd = '';
3779: my $maxtries = 1;
3780: foreach (keys %{$affiliatesref}) {
3781: $cmd .= $_.'='.join(",",@{$$affiliatesref{$_}}).'%%';
3782: }
3783: $cmd =~ s/%%$//;
3784: $cmd = &escape($cmd);
3785: my $query = 'institutionalphotos';
3786: my $queryid=&reply("querysend:".$query.':'.$dom.':'.$cnum.':'.$cmd,$homeserver);
3787: unless ($queryid=~/^\Q$host\E\_/) {
3788: &logthis('institutionalphotos: invalid queryid: '.$queryid.' for host: '.$host.' and homeserver: '.$homeserver.' and course: '.$cnum);
3789: return 'error: '.$queryid;
3790: }
3791: my $reply = &get_query_reply($queryid);
3792: my $tries = 1;
3793: while (($reply=~/^timeout/) && ($tries < $maxtries)) {
3794: $reply = &get_query_reply($queryid);
3795: $tries ++;
3796: }
3797: if ( ($reply =~/^timeout/) || ($reply =~/^error/) ) {
3798: &logthis('institutionalphotos error: '.$reply.' for '.$dom.' '.$env{'user.name'}.' for '.$queryid.' course: '.$cnum.' maxtries: '.$maxtries.' tries: '.$tries);
3799: } else {
3800: my @responses = split(/:/,$reply);
3801: my $outcome = shift(@responses);
3802: foreach my $item (@responses) {
3803: my ($key,$value) = split(/=/,$item);
3804: $$photo{$key} = $value;
3805: }
3806: return $outcome;
3807: }
3808: return 'error';
3809: }
3810:
1.521 raeburn 3811: sub auto_instcode_format {
3812: my ($caller,$codedom,$instcodes,$codes,$codetitles,$cat_titles,$cat_order) = @_;
3813: my $courses = '';
3814: my $homeserver;
3815: if ($caller eq 'global') {
1.584 raeburn 3816: foreach my $tryserver (keys %libserv) {
3817: if ($hostdom{$tryserver} eq $codedom) {
3818: $homeserver = $tryserver;
3819: last;
3820: }
3821: }
1.620 albertel 3822: if (($env{'user.name'}) && ($env{'user.domain'} eq $codedom)) {
3823: $homeserver = &homeserver($env{'user.name'},$codedom);
1.584 raeburn 3824: }
1.521 raeburn 3825: } else {
3826: $homeserver = &homeserver($caller,$codedom);
3827: }
3828: foreach (keys %{$instcodes}) {
3829: $courses .= &escape($_).'='.&escape($$instcodes{$_}).'&';
3830: }
3831: chop($courses);
3832: my $response=&reply('autoinstcodeformat:'.$codedom.':'.$courses,$homeserver);
3833: unless ($response =~ /(con_lost|error|no_such_host|refused)/) {
3834: my ($codes_str,$codetitles_str,$cat_titles_str,$cat_order_str) = split/:/,$response;
3835: %{$codes} = &str2hash($codes_str);
3836: @{$codetitles} = &str2array($codetitles_str);
3837: %{$cat_titles} = &str2hash($cat_titles_str);
3838: %{$cat_order} = &str2hash($cat_order_str);
3839: return 'ok';
3840: }
3841: return $response;
3842: }
3843:
1.679 raeburn 3844: # ------------------------------------------------------- Course Group routines
3845:
3846: sub get_coursegroups {
1.683 raeburn 3847: my ($cdom,$cnum,$group) = @_;
3848: return(&dump('coursegroups',$cdom,$cnum,$group));
1.679 raeburn 3849: }
3850:
3851: sub modify_coursegroup {
3852: my ($cdom,$cnum,$groupsettings) = @_;
3853: return(&put('coursegroups',$groupsettings,$cdom,$cnum));
3854: }
3855:
3856: sub modify_group_roles {
3857: my ($cdom,$cnum,$group_id,$user,$end,$start,$userprivs) = @_;
3858: my $url = '/'.$cdom.'/'.$cnum.'/'.$group_id;
3859: my $role = 'gr/'.&escape($userprivs);
3860: my ($uname,$udom) = split(/:/,$user);
3861: my $result = &assignrole($udom,$uname,$url,$role,$end,$start);
1.684 raeburn 3862: if ($result eq 'ok') {
3863: &devalidate_getgroups_cache($udom,$uname,$cdom,$cnum);
3864: }
3865:
1.679 raeburn 3866: return $result;
3867: }
3868:
3869: sub modify_coursegroup_membership {
3870: my ($cdom,$cnum,$membership) = @_;
3871: my $result = &put('groupmembership',$membership,$cdom,$cnum);
3872: return $result;
3873: }
3874:
1.682 raeburn 3875: sub get_active_groups {
3876: my ($udom,$uname,$cdom,$cnum) = @_;
3877: my $now = time;
3878: my %groups = ();
3879: foreach my $key (keys(%env)) {
3880: if ($key =~ m-user\.role\.gr\./([^/]+)/([^/]+)/(\w+)$-) {
3881: my ($start,$end) = split(/\./,$env{$key});
3882: if (($end!=0) && ($end<$now)) { next; }
3883: if (($start!=0) && ($start>$now)) { next; }
3884: if ($1 eq $cdom && $2 eq $cnum) {
3885: $groups{$3} = $env{$key} ;
3886: }
3887: }
3888: }
3889: return %groups;
3890: }
3891:
1.683 raeburn 3892: sub get_group_membership {
3893: my ($cdom,$cnum,$group) = @_;
3894: return(&dump('groupmembership',$cdom,$cnum,$group));
3895: }
3896:
3897: sub get_users_groups {
3898: my ($udom,$uname,$courseid) = @_;
3899: my $cachetime=1800;
3900: $courseid=~s/\_/\//g;
3901: $courseid=~s/^(\w)/\/$1/;
3902:
3903: my $hashid="$udom:$uname:$courseid";
3904: my ($result,$cached)=&is_cached_new('getgroups',$hashid);
3905: if (defined($cached)) { return $result; }
3906:
3907: my %roleshash = &dump('roles',$udom,$uname,$courseid);
3908: my ($tmp) = keys(%roleshash);
3909: if ($tmp=~/^error:/) {
3910: &logthis('Error retrieving roles: '.$tmp.' for '.$uname.':'.$udom);
3911: return '';
3912: } else {
3913: my $grouplist;
3914: foreach my $key (keys %roleshash) {
3915: if ($key =~ /^\Q$courseid\E\/(\w+)\_gr$/) {
3916: unless ($roleshash{$key} =~ /_1_1$/) { # deleted membership
3917: $grouplist .= $1.':';
3918: }
3919: }
3920: }
3921: $grouplist =~ s/:$//;
3922: return &do_cache_new('getgroups',$hashid,$grouplist,$cachetime);
3923: }
3924: }
3925:
3926: sub devalidate_getgroups_cache {
3927: my ($udom,$uname,$cdom,$cnum)=@_;
3928: my $courseid = $cdom.'_'.$cnum;
3929: $courseid=~s/\_/\//g;
3930: $courseid=~s/^(\w)/\/$1/;
3931: my $hashid="$udom:$uname:$courseid";
3932: &devalidate_cache_new('getgroups',$hashid);
3933: }
3934:
1.12 www 3935: # ------------------------------------------------------------------ Plain Text
3936:
3937: sub plaintext {
1.22 www 3938: my $short=shift;
1.676 albertel 3939: return &Apache::lonlocal::mt($prp{$short});
1.12 www 3940: }
3941:
3942: # ----------------------------------------------------------------- Assign Role
3943:
3944: sub assignrole {
1.357 www 3945: my ($udom,$uname,$url,$role,$end,$start,$deleteflag)=@_;
1.21 www 3946: my $mrole;
3947: if ($role =~ /^cr\//) {
1.393 www 3948: my $cwosec=$url;
3949: $cwosec=~s/^\/(\w+)\/(\w+)\/.*/$1\/$2/;
3950: unless (&allowed('ccr',$cwosec)) {
1.104 www 3951: &logthis('Refused custom assignrole: '.
3952: $udom.' '.$uname.' '.$url.' '.$role.' '.$end.' '.$start.' by '.
1.620 albertel 3953: $env{'user.name'}.' at '.$env{'user.domain'});
1.104 www 3954: return 'refused';
3955: }
1.21 www 3956: $mrole='cr';
1.678 raeburn 3957: } elsif ($role =~ /^gr\//) {
3958: my $cwogrp=$url;
3959: $cwogrp=~s/^\/(\w+)\/(\w+)\/.*/$1\/$2/;
3960: unless (&allowed('mdg',$cwogrp)) {
3961: &logthis('Refused group assignrole: '.
3962: $udom.' '.$uname.' '.$url.' '.$role.' '.$end.' '.$start.' by '.
3963: $env{'user.name'}.' at '.$env{'user.domain'});
3964: return 'refused';
3965: }
3966: $mrole='gr';
1.21 www 3967: } else {
1.82 www 3968: my $cwosec=$url;
1.83 www 3969: $cwosec=~s/^\/(\w+)\/(\w+)\/.*/$1\/$2/;
1.373 www 3970: unless ((&allowed('c'.$role,$cwosec)) || &allowed('c'.$role,$udom)) {
1.104 www 3971: &logthis('Refused assignrole: '.
3972: $udom.' '.$uname.' '.$url.' '.$role.' '.$end.' '.$start.' by '.
1.620 albertel 3973: $env{'user.name'}.' at '.$env{'user.domain'});
1.104 www 3974: return 'refused';
3975: }
1.21 www 3976: $mrole=$role;
3977: }
1.620 albertel 3978: my $command="encrypt:rolesput:$env{'user.domain'}:$env{'user.name'}:".
1.21 www 3979: "$udom:$uname:$url".'_'."$mrole=$role";
1.81 www 3980: if ($end) { $command.='_'.$end; }
1.21 www 3981: if ($start) {
3982: if ($end) {
1.81 www 3983: $command.='_'.$start;
1.21 www 3984: } else {
1.81 www 3985: $command.='_0_'.$start;
1.21 www 3986: }
3987: }
1.357 www 3988: # actually delete
3989: if ($deleteflag) {
1.373 www 3990: if ((&allowed('dro',$udom)) || (&allowed('dro',$url))) {
1.357 www 3991: # modify command to delete the role
1.620 albertel 3992: $command="encrypt:rolesdel:$env{'user.domain'}:$env{'user.name'}:".
1.357 www 3993: "$udom:$uname:$url".'_'."$mrole";
1.620 albertel 3994: &logthis("$env{'user.name'} at $env{'user.domain'} deletes $mrole in $url for $uname at $udom");
1.357 www 3995: # set start and finish to negative values for userrolelog
3996: $start=-1;
3997: $end=-1;
3998: }
3999: }
4000: # send command
1.349 www 4001: my $answer=&reply($command,&homeserver($uname,$udom));
1.357 www 4002: # log new user role if status is ok
1.349 www 4003: if ($answer eq 'ok') {
1.663 raeburn 4004: &userrolelog($role,$uname,$udom,$url,$start,$end);
1.349 www 4005: }
4006: return $answer;
1.169 harris41 4007: }
4008:
4009: # -------------------------------------------------- Modify user authentication
1.197 www 4010: # Overrides without validation
4011:
1.169 harris41 4012: sub modifyuserauth {
4013: my ($udom,$uname,$umode,$upass)=@_;
4014: my $uhome=&homeserver($uname,$udom);
1.197 www 4015: unless (&allowed('mau',$udom)) { return 'refused'; }
4016: &logthis('Call to modify user authentication '.$udom.', '.$uname.', '.
1.620 albertel 4017: $umode.' by '.$env{'user.name'}.' at '.$env{'user.domain'}.
4018: ' in domain '.$env{'request.role.domain'});
1.169 harris41 4019: my $reply=&reply('encrypt:changeuserauth:'.$udom.':'.$uname.':'.$umode.':'.
4020: &escape($upass),$uhome);
1.620 albertel 4021: &log($env{'user.domain'},$env{'user.name'},$env{'user.home'},
1.197 www 4022: 'Authentication changed for '.$udom.', '.$uname.', '.$umode.
4023: '(Remote '.$ENV{'REMOTE_ADDR'}.'): '.$reply);
4024: &log($udom,,$uname,$uhome,
1.620 albertel 4025: 'Authentication changed by '.$env{'user.domain'}.', '.
4026: $env{'user.name'}.', '.$umode.
1.197 www 4027: '(Remote '.$ENV{'REMOTE_ADDR'}.'): '.$reply);
1.169 harris41 4028: unless ($reply eq 'ok') {
1.197 www 4029: &logthis('Authentication mode error: '.$reply);
1.169 harris41 4030: return 'error: '.$reply;
4031: }
1.170 harris41 4032: return 'ok';
1.80 www 4033: }
4034:
1.81 www 4035: # --------------------------------------------------------------- Modify a user
1.80 www 4036:
1.81 www 4037: sub modifyuser {
1.206 matthew 4038: my ($udom, $uname, $uid,
4039: $umode, $upass, $first,
4040: $middle, $last, $gene,
1.387 www 4041: $forceid, $desiredhome, $email)=@_;
1.198 www 4042: $udom=~s/\W//g;
4043: $uname=~s/\W//g;
1.81 www 4044: &logthis('Call to modify user '.$udom.', '.$uname.', '.$uid.', '.
1.80 www 4045: $umode.', '.$first.', '.$middle.', '.
1.206 matthew 4046: $last.', '.$gene.'(forceid: '.$forceid.')'.
4047: (defined($desiredhome) ? ' desiredhome = '.$desiredhome :
4048: ' desiredhome not specified').
1.620 albertel 4049: ' by '.$env{'user.name'}.' at '.$env{'user.domain'}.
4050: ' in domain '.$env{'request.role.domain'});
1.230 stredwic 4051: my $uhome=&homeserver($uname,$udom,'true');
1.80 www 4052: # ----------------------------------------------------------------- Create User
1.406 albertel 4053: if (($uhome eq 'no_host') &&
4054: (($umode && $upass) || ($umode eq 'localauth'))) {
1.80 www 4055: my $unhome='';
1.209 matthew 4056: if (defined($desiredhome) && $hostdom{$desiredhome} eq $udom) {
4057: $unhome = $desiredhome;
1.620 albertel 4058: } elsif($env{'course.'.$env{'request.course.id'}.'.domain'} eq $udom) {
4059: $unhome=$env{'course.'.$env{'request.course.id'}.'.home'};
1.209 matthew 4060: } else { # load balancing routine for determining $unhome
1.80 www 4061: my $tryserver;
1.81 www 4062: my $loadm=10000000;
1.80 www 4063: foreach $tryserver (keys %libserv) {
4064: if ($hostdom{$tryserver} eq $udom) {
4065: my $answer=reply('load',$tryserver);
4066: if (($answer=~/\d+/) && ($answer<$loadm)) {
4067: $loadm=$answer;
4068: $unhome=$tryserver;
4069: }
4070: }
4071: }
4072: }
4073: if (($unhome eq '') || ($unhome eq 'no_host')) {
1.206 matthew 4074: return 'error: unable to find a home server for '.$uname.
4075: ' in domain '.$udom;
1.80 www 4076: }
4077: my $reply=&reply('encrypt:makeuser:'.$udom.':'.$uname.':'.$umode.':'.
4078: &escape($upass),$unhome);
4079: unless ($reply eq 'ok') {
4080: return 'error: '.$reply;
4081: }
1.230 stredwic 4082: $uhome=&homeserver($uname,$udom,'true');
1.80 www 4083: if (($uhome eq '') || ($uhome eq 'no_host') || ($uhome ne $unhome)) {
1.386 matthew 4084: return 'error: unable verify users home machine.';
1.80 www 4085: }
1.209 matthew 4086: } # End of creation of new user
1.80 www 4087: # ---------------------------------------------------------------------- Add ID
4088: if ($uid) {
4089: $uid=~tr/A-Z/a-z/;
4090: my %uidhash=&idrget($udom,$uname);
1.196 www 4091: if (($uidhash{$uname}) && ($uidhash{$uname}!~/error\:/)
4092: && (!$forceid)) {
1.80 www 4093: unless ($uid eq $uidhash{$uname}) {
1.386 matthew 4094: return 'error: user id "'.$uid.'" does not match '.
4095: 'current user id "'.$uidhash{$uname}.'".';
1.80 www 4096: }
4097: } else {
4098: &idput($udom,($uname => $uid));
4099: }
4100: }
4101: # -------------------------------------------------------------- Add names, etc
1.313 matthew 4102: my @tmp=&get('environment',
1.134 albertel 4103: ['firstname','middlename','lastname','generation'],
4104: $udom,$uname);
1.313 matthew 4105: my %names;
4106: if ($tmp[0] =~ m/^error:.*/) {
4107: %names=();
4108: } else {
4109: %names = @tmp;
4110: }
1.388 www 4111: #
4112: # Make sure to not trash student environment if instructor does not bother
4113: # to supply name and email information
4114: #
4115: if ($first) { $names{'firstname'} = $first; }
1.385 matthew 4116: if (defined($middle)) { $names{'middlename'} = $middle; }
1.388 www 4117: if ($last) { $names{'lastname'} = $last; }
1.385 matthew 4118: if (defined($gene)) { $names{'generation'} = $gene; }
1.592 www 4119: if ($email) {
4120: $email=~s/[^\w\@\.\-\,]//gs;
4121: if ($email=~/\@/) { $names{'notification'} = $email;
4122: $names{'critnotification'} = $email;
4123: $names{'permanentemail'} = $email; }
4124: }
1.134 albertel 4125: my $reply = &put('environment', \%names, $udom,$uname);
4126: if ($reply ne 'ok') { return 'error: '.$reply; }
1.680 www 4127: &devalidate_cache_new('namescache',$uname.':'.$udom);
1.81 www 4128: &logthis('Success modifying user '.$udom.', '.$uname.', '.$uid.', '.
1.80 www 4129: $umode.', '.$first.', '.$middle.', '.
4130: $last.', '.$gene.' by '.
1.620 albertel 4131: $env{'user.name'}.' at '.$env{'user.domain'});
1.134 albertel 4132: return 'ok';
1.80 www 4133: }
4134:
1.81 www 4135: # -------------------------------------------------------------- Modify student
1.80 www 4136:
1.81 www 4137: sub modifystudent {
4138: my ($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene,$usec,
1.515 raeburn 4139: $end,$start,$forceid,$desiredhome,$email,$type,$locktype,$cid)=@_;
1.455 albertel 4140: if (!$cid) {
1.620 albertel 4141: unless ($cid=$env{'request.course.id'}) {
1.455 albertel 4142: return 'not_in_class';
4143: }
1.80 www 4144: }
4145: # --------------------------------------------------------------- Make the user
1.81 www 4146: my $reply=&modifyuser
1.209 matthew 4147: ($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene,$forceid,
1.387 www 4148: $desiredhome,$email);
1.80 www 4149: unless ($reply eq 'ok') { return $reply; }
1.297 matthew 4150: # This will cause &modify_student_enrollment to get the uid from the
4151: # students environment
4152: $uid = undef if (!$forceid);
1.455 albertel 4153: $reply = &modify_student_enrollment($udom,$uname,$uid,$first,$middle,$last,
1.515 raeburn 4154: $gene,$usec,$end,$start,$type,$locktype,$cid);
1.297 matthew 4155: return $reply;
4156: }
4157:
4158: sub modify_student_enrollment {
1.515 raeburn 4159: my ($udom,$uname,$uid,$first,$middle,$last,$gene,$usec,$end,$start,$type,$locktype,$cid) = @_;
1.455 albertel 4160: my ($cdom,$cnum,$chome);
4161: if (!$cid) {
1.620 albertel 4162: unless ($cid=$env{'request.course.id'}) {
1.455 albertel 4163: return 'not_in_class';
4164: }
1.620 albertel 4165: $cdom=$env{'course.'.$cid.'.domain'};
4166: $cnum=$env{'course.'.$cid.'.num'};
1.455 albertel 4167: } else {
4168: ($cdom,$cnum)=split(/_/,$cid);
4169: }
1.620 albertel 4170: $chome=$env{'course.'.$cid.'.home'};
1.455 albertel 4171: if (!$chome) {
1.457 raeburn 4172: $chome=&homeserver($cnum,$cdom);
1.297 matthew 4173: }
1.455 albertel 4174: if (!$chome) { return 'unknown_course'; }
1.297 matthew 4175: # Make sure the user exists
1.81 www 4176: my $uhome=&homeserver($uname,$udom);
4177: if (($uhome eq '') || ($uhome eq 'no_host')) {
4178: return 'error: no such user';
4179: }
1.297 matthew 4180: # Get student data if we were not given enough information
4181: if (!defined($first) || $first eq '' ||
4182: !defined($last) || $last eq '' ||
4183: !defined($uid) || $uid eq '' ||
4184: !defined($middle) || $middle eq '' ||
4185: !defined($gene) || $gene eq '') {
1.294 matthew 4186: # They did not supply us with enough data to enroll the student, so
4187: # we need to pick up more information.
1.297 matthew 4188: my %tmp = &get('environment',
1.294 matthew 4189: ['firstname','middlename','lastname', 'generation','id']
1.297 matthew 4190: ,$udom,$uname);
4191:
1.455 albertel 4192: #foreach (keys(%tmp)) {
4193: # &logthis("key $_ = ".$tmp{$_});
4194: #}
1.294 matthew 4195: $first = $tmp{'firstname'} if (!defined($first) || $first eq '');
4196: $middle = $tmp{'middlename'} if (!defined($middle) || $middle eq '');
4197: $last = $tmp{'lastname'} if (!defined($last) || $last eq '');
1.297 matthew 4198: $gene = $tmp{'generation'} if (!defined($gene) || $gene eq '');
1.294 matthew 4199: $uid = $tmp{'id'} if (!defined($uid) || $uid eq '');
4200: }
1.556 albertel 4201: my $fullname = &format_name($first,$middle,$last,$gene,'lastname');
1.487 albertel 4202: my $reply=cput('classlist',
4203: {"$uname:$udom" =>
1.515 raeburn 4204: join(':',$end,$start,$uid,$usec,$fullname,$type,$locktype) },
1.487 albertel 4205: $cdom,$cnum);
1.81 www 4206: unless (($reply eq 'ok') || ($reply eq 'delayed')) {
4207: return 'error: '.$reply;
1.652 albertel 4208: } else {
4209: &devalidate_getsection_cache($udom,$uname,$cid);
1.81 www 4210: }
1.297 matthew 4211: # Add student role to user
1.83 www 4212: my $uurl='/'.$cid;
1.81 www 4213: $uurl=~s/\_/\//g;
4214: if ($usec) {
4215: $uurl.='/'.$usec;
4216: }
4217: return &assignrole($udom,$uname,$uurl,'st',$end,$start);
1.21 www 4218: }
4219:
1.556 albertel 4220: sub format_name {
4221: my ($firstname,$middlename,$lastname,$generation,$first)=@_;
4222: my $name;
4223: if ($first ne 'lastname') {
4224: $name=$firstname.' '.$middlename.' '.$lastname.' '.$generation;
4225: } else {
4226: if ($lastname=~/\S/) {
4227: $name.= $lastname.' '.$generation.', '.$firstname.' '.$middlename;
4228: $name=~s/\s+,/,/;
4229: } else {
4230: $name.= $firstname.' '.$middlename.' '.$generation;
4231: }
4232: }
4233: $name=~s/^\s+//;
4234: $name=~s/\s+$//;
4235: $name=~s/\s+/ /g;
4236: return $name;
4237: }
4238:
1.84 www 4239: # ------------------------------------------------- Write to course preferences
4240:
4241: sub writecoursepref {
4242: my ($courseid,%prefs)=@_;
4243: $courseid=~s/^\///;
4244: $courseid=~s/\_/\//g;
4245: my ($cdomain,$cnum)=split(/\//,$courseid);
4246: my $chome=homeserver($cnum,$cdomain);
4247: if (($chome eq '') || ($chome eq 'no_host')) {
4248: return 'error: no such course';
4249: }
4250: my $cstring='';
1.191 harris41 4251: foreach (keys %prefs) {
1.84 www 4252: $cstring.=escape($_).'='.escape($prefs{$_}).'&';
1.191 harris41 4253: }
1.84 www 4254: $cstring=~s/\&$//;
4255: return reply('put:'.$cdomain.':'.$cnum.':environment:'.$cstring,$chome);
4256: }
4257:
4258: # ---------------------------------------------------------- Make/modify course
4259:
4260: sub createcourse {
1.571 raeburn 4261: my ($udom,$description,$url,$course_server,$nonstandard,$inst_code,$course_owner)=@_;
1.84 www 4262: $url=&declutter($url);
4263: my $cid='';
1.264 matthew 4264: unless (&allowed('ccc',$udom)) {
1.84 www 4265: return 'refused';
4266: }
4267: # ------------------------------------------------------------------- Create ID
1.674 www 4268: my $uname=int(1+rand(9)).
4269: ('a'..'z','A'..'Z','0'..'9')[int(rand(62))].
4270: substr($$.time,0,5).unpack("H8",pack("I32",time)).
1.84 www 4271: unpack("H2",pack("I32",int(rand(255)))).$perlvar{'lonHostID'};
4272: # ----------------------------------------------- Make sure that does not exist
1.230 stredwic 4273: my $uhome=&homeserver($uname,$udom,'true');
1.84 www 4274: unless (($uhome eq '') || ($uhome eq 'no_host')) {
4275: $uname=substr($$.time,0,5).unpack("H8",pack("I32",time)).
4276: unpack("H2",pack("I32",int(rand(255)))).$perlvar{'lonHostID'};
1.230 stredwic 4277: $uhome=&homeserver($uname,$udom,'true');
1.84 www 4278: unless (($uhome eq '') || ($uhome eq 'no_host')) {
4279: return 'error: unable to generate unique course-ID';
4280: }
4281: }
1.264 matthew 4282: # ------------------------------------------------ Check supplied server name
1.620 albertel 4283: $course_server = $env{'user.homeserver'} if (! defined($course_server));
1.264 matthew 4284: if (! exists($libserv{$course_server})) {
4285: return 'error:bad server name '.$course_server;
4286: }
1.84 www 4287: # ------------------------------------------------------------- Make the course
4288: my $reply=&reply('encrypt:makeuser:'.$udom.':'.$uname.':none::',
1.264 matthew 4289: $course_server);
1.84 www 4290: unless ($reply eq 'ok') { return 'error: '.$reply; }
1.230 stredwic 4291: $uhome=&homeserver($uname,$udom,'true');
1.84 www 4292: if (($uhome eq '') || ($uhome eq 'no_host')) {
4293: return 'error: no such course';
4294: }
1.271 www 4295: # ----------------------------------------------------------------- Course made
1.516 raeburn 4296: # log existence
4297: &courseidput($udom,&escape($udom.'_'.$uname).'='.&escape($description).
1.571 raeburn 4298: ':'.&escape($inst_code).':'.&escape($course_owner),$uhome);
1.358 www 4299: &flushcourselogs();
4300: # set toplevel url
1.271 www 4301: my $topurl=$url;
4302: unless ($nonstandard) {
4303: # ------------------------------------------ For standard courses, make top url
4304: my $mapurl=&clutter($url);
1.278 www 4305: if ($mapurl eq '/res/') { $mapurl=''; }
1.620 albertel 4306: $env{'form.initmap'}=(<<ENDINITMAP);
1.271 www 4307: <map>
4308: <resource id="1" type="start"></resource>
4309: <resource id="2" src="$mapurl"></resource>
4310: <resource id="3" type="finish"></resource>
4311: <link index="1" from="1" to="2"></link>
4312: <link index="2" from="2" to="3"></link>
4313: </map>
4314: ENDINITMAP
4315: $topurl=&declutter(
1.638 albertel 4316: &finishuserfileupload($uname,$udom,'initmap','default.sequence')
1.271 www 4317: );
4318: }
4319: # ----------------------------------------------------------- Write preferences
1.84 www 4320: &writecoursepref($udom.'_'.$uname,
4321: ('description' => $description,
1.271 www 4322: 'url' => $topurl));
1.84 www 4323: return '/'.$udom.'/'.$uname;
4324: }
4325:
1.21 www 4326: # ---------------------------------------------------------- Assign Custom Role
4327:
4328: sub assigncustomrole {
1.357 www 4329: my ($udom,$uname,$url,$rdom,$rnam,$rolename,$end,$start,$deleteflag)=@_;
1.21 www 4330: return &assignrole($udom,$uname,$url,'cr/'.$rdom.'/'.$rnam.'/'.$rolename,
1.357 www 4331: $end,$start,$deleteflag);
1.21 www 4332: }
4333:
4334: # ----------------------------------------------------------------- Revoke Role
4335:
4336: sub revokerole {
1.357 www 4337: my ($udom,$uname,$url,$role,$deleteflag)=@_;
1.21 www 4338: my $now=time;
1.357 www 4339: return &assignrole($udom,$uname,$url,$role,$now,$deleteflag);
1.21 www 4340: }
4341:
4342: # ---------------------------------------------------------- Revoke Custom Role
4343:
4344: sub revokecustomrole {
1.357 www 4345: my ($udom,$uname,$url,$rdom,$rnam,$rolename,$deleteflag)=@_;
1.21 www 4346: my $now=time;
1.357 www 4347: return &assigncustomrole($udom,$uname,$url,$rdom,$rnam,$rolename,$now,
4348: $deleteflag);
1.17 www 4349: }
4350:
1.533 banghart 4351: # ------------------------------------------------------------ Disk usage
1.535 albertel 4352: sub diskusage {
1.533 banghart 4353: my ($udom,$uname,$directoryRoot)=@_;
4354: $directoryRoot =~ s/\/$//;
1.535 albertel 4355: my $listing=&reply('du:'.$directoryRoot,homeserver($uname,$udom));
1.514 albertel 4356: return $listing;
1.512 banghart 4357: }
4358:
1.566 banghart 4359: sub is_locked {
4360: my ($file_name, $domain, $user) = @_;
4361: my @check;
4362: my $is_locked;
4363: push @check, $file_name;
1.613 albertel 4364: my %locked = &get('file_permissions',\@check,
1.620 albertel 4365: $env{'user.domain'},$env{'user.name'});
1.615 albertel 4366: my ($tmp)=keys(%locked);
4367: if ($tmp=~/^error:/) { undef(%locked); }
1.613 albertel 4368:
1.566 banghart 4369: if (ref($locked{$file_name}) eq 'ARRAY') {
4370: $is_locked = 'true';
4371: } else {
4372: $is_locked = 'false';
4373: }
4374: }
4375:
1.559 banghart 4376: # ------------------------------------------------------------- Mark as Read Only
4377:
4378: sub mark_as_readonly {
4379: my ($domain,$user,$files,$what) = @_;
1.613 albertel 4380: my %current_permissions = &dump('file_permissions',$domain,$user);
1.615 albertel 4381: my ($tmp)=keys(%current_permissions);
4382: if ($tmp=~/^error:/) { undef(%current_permissions); }
1.560 banghart 4383: foreach my $file (@{$files}) {
1.561 banghart 4384: push(@{$current_permissions{$file}},$what);
1.559 banghart 4385: }
1.613 albertel 4386: &put('file_permissions',\%current_permissions,$domain,$user);
1.559 banghart 4387: return;
4388: }
4389:
1.572 banghart 4390: # ------------------------------------------------------------Save Selected Files
4391:
4392: sub save_selected_files {
4393: my ($user, $path, @files) = @_;
4394: my $filename = $user."savedfiles";
1.573 banghart 4395: my @other_files = &files_not_in_path($user, $path);
1.574 banghart 4396: open (OUT, '>'.$Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/'.$filename);
1.573 banghart 4397: foreach my $file (@files) {
1.620 albertel 4398: print (OUT $env{'form.currentpath'}.$file."\n");
1.573 banghart 4399: }
4400: foreach my $file (@other_files) {
1.574 banghart 4401: print (OUT $file."\n");
1.572 banghart 4402: }
1.574 banghart 4403: close (OUT);
1.572 banghart 4404: return 'ok';
4405: }
4406:
1.574 banghart 4407: sub clear_selected_files {
4408: my ($user) = @_;
4409: my $filename = $user."savedfiles";
4410: open (OUT, '>'.$Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/'.$filename);
4411: print (OUT undef);
4412: close (OUT);
4413: return ("ok");
4414: }
4415:
1.572 banghart 4416: sub files_in_path {
4417: my ($user, $path) = @_;
4418: my $filename = $user."savedfiles";
4419: my %return_files;
1.574 banghart 4420: open (IN, '<'.$Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/'.$filename);
1.573 banghart 4421: while (my $line_in = <IN>) {
1.574 banghart 4422: chomp ($line_in);
4423: my @paths_and_file = split (m!/!, $line_in);
4424: my $file_part = pop (@paths_and_file);
4425: my $path_part = join ('/', @paths_and_file);
1.573 banghart 4426: $path_part.='/';
4427: my $path_and_file = $path_part.$file_part;
4428: if ($path_part eq $path) {
4429: $return_files{$file_part}= 'selected';
4430: }
4431: }
1.574 banghart 4432: close (IN);
4433: return (\%return_files);
1.572 banghart 4434: }
4435:
4436: # called in portfolio select mode, to show files selected NOT in current directory
4437: sub files_not_in_path {
4438: my ($user, $path) = @_;
4439: my $filename = $user."savedfiles";
4440: my @return_files;
4441: my $path_part;
1.574 banghart 4442: open (IN, '<'.$Apache::lonnet::perlvar{'lonDaemons'}.'/tmp/'.$filename);
1.572 banghart 4443: while (<IN>) {
4444: #ok, I know it's clunky, but I want it to work
4445: my @paths_and_file = split m!/!, $_;
1.574 banghart 4446: my $file_part = pop (@paths_and_file);
4447: chomp ($file_part);
4448: my $path_part = join ('/', @paths_and_file);
1.572 banghart 4449: $path_part .= '/';
4450: my $path_and_file = $path_part.$file_part;
4451: if ($path_part ne $path) {
1.574 banghart 4452: push (@return_files, ($path_and_file));
1.572 banghart 4453: }
4454: }
1.574 banghart 4455: close (OUT);
4456: return (@return_files);
1.572 banghart 4457: }
4458:
1.561 banghart 4459: #--------------------------------------------------------------Get Marked as Read Only
4460:
1.629 banghart 4461:
1.561 banghart 4462: sub get_marked_as_readonly {
4463: my ($domain,$user,$what) = @_;
1.613 albertel 4464: my %current_permissions = &dump('file_permissions',$domain,$user);
1.615 albertel 4465: my ($tmp)=keys(%current_permissions);
4466: if ($tmp=~/^error:/) { undef(%current_permissions); }
1.563 banghart 4467: my @readonly_files;
1.629 banghart 4468: my $cmp1=$what;
4469: if (ref($what)) { $cmp1=join('',@{$what}) };
1.563 banghart 4470: while (my ($file_name,$value) = each(%current_permissions)) {
1.561 banghart 4471: if (ref($value) eq "ARRAY"){
4472: foreach my $stored_what (@{$value}) {
1.629 banghart 4473: my $cmp2=$stored_what;
4474: if (ref($stored_what)) { $cmp2=join('',@{$stored_what}) };
4475: if ($cmp1 eq $cmp2) {
1.561 banghart 4476: push(@readonly_files, $file_name);
1.563 banghart 4477: } elsif (!defined($what)) {
4478: push(@readonly_files, $file_name);
1.561 banghart 4479: }
4480: }
4481: }
4482: }
4483: return @readonly_files;
4484: }
1.577 banghart 4485: #-----------------------------------------------------------Get Marked as Read Only Hash
1.561 banghart 4486:
1.577 banghart 4487: sub get_marked_as_readonly_hash {
4488: my ($domain,$user,$what) = @_;
1.613 albertel 4489: my %current_permissions = &dump('file_permissions',$domain,$user);
1.615 albertel 4490: my ($tmp)=keys(%current_permissions);
4491: if ($tmp=~/^error:/) { undef(%current_permissions); }
1.613 albertel 4492:
1.577 banghart 4493: my %readonly_files;
4494: while (my ($file_name,$value) = each(%current_permissions)) {
4495: if (ref($value) eq "ARRAY"){
4496: foreach my $stored_what (@{$value}) {
4497: if ($stored_what eq $what) {
4498: $readonly_files{$file_name} = 'locked';
4499: } elsif (!defined($what)) {
4500: $readonly_files{$file_name} = 'locked';
4501: }
4502: }
4503: }
4504: }
4505: return %readonly_files;
4506: }
1.559 banghart 4507: # ------------------------------------------------------------ Unmark as Read Only
4508:
4509: sub unmark_as_readonly {
1.629 banghart 4510: # unmarks $file_name (if $file_name is defined), or all files locked by $what
4511: # for portfolio submissions, $what contains [$symb,$crsid]
4512: my ($domain,$user,$what,$file_name) = @_;
1.634 albertel 4513: my $symb_crs = $what;
4514: if (ref($what)) { $symb_crs=join('',@$what); }
1.613 albertel 4515: my %current_permissions = &dump('file_permissions',$domain,$user);
1.615 albertel 4516: my ($tmp)=keys(%current_permissions);
4517: if ($tmp=~/^error:/) { undef(%current_permissions); }
1.613 albertel 4518: my @readonly_files = &get_marked_as_readonly($domain,$user,$what);
1.650 albertel 4519: foreach my $file (@readonly_files) {
4520: if (defined($file_name) && ($file_name ne $file)) { next; }
4521: my $current_locks = $current_permissions{$file};
1.563 banghart 4522: my @new_locks;
4523: my @del_keys;
4524: if (ref($current_locks) eq "ARRAY"){
4525: foreach my $locker (@{$current_locks}) {
1.632 albertel 4526: my $compare=$locker;
4527: if (ref($locker)) { $compare=join('',@{$locker}) };
1.650 albertel 4528: if ($compare ne $symb_crs) {
4529: push(@new_locks, $locker);
1.563 banghart 4530: }
4531: }
1.650 albertel 4532: if (scalar(@new_locks) > 0) {
1.563 banghart 4533: $current_permissions{$file} = \@new_locks;
4534: } else {
4535: push(@del_keys, $file);
1.613 albertel 4536: &del('file_permissions',\@del_keys, $domain, $user);
1.650 albertel 4537: delete($current_permissions{$file});
1.563 banghart 4538: }
4539: }
1.561 banghart 4540: }
1.613 albertel 4541: &put('file_permissions',\%current_permissions,$domain,$user);
1.559 banghart 4542: return;
4543: }
1.512 banghart 4544:
1.17 www 4545: # ------------------------------------------------------------ Directory lister
4546:
4547: sub dirlist {
1.253 stredwic 4548: my ($uri,$userdomain,$username,$alternateDirectoryRoot)=@_;
4549:
1.18 www 4550: $uri=~s/^\///;
4551: $uri=~s/\/$//;
1.253 stredwic 4552: my ($udom, $uname);
4553: (undef,$udom,$uname)=split(/\//,$uri);
4554: if(defined($userdomain)) {
4555: $udom = $userdomain;
4556: }
4557: if(defined($username)) {
4558: $uname = $username;
4559: }
4560:
4561: my $dirRoot = $perlvar{'lonDocRoot'};
4562: if(defined($alternateDirectoryRoot)) {
4563: $dirRoot = $alternateDirectoryRoot;
4564: $dirRoot =~ s/\/$//;
4565: }
4566:
4567: if($udom) {
4568: if($uname) {
1.605 matthew 4569: my $listing=reply('ls2:'.$dirRoot.'/'.$uri,
1.253 stredwic 4570: homeserver($uname,$udom));
1.605 matthew 4571: my @listing_results;
4572: if ($listing eq 'unknown_cmd') {
4573: $listing=reply('ls:'.$dirRoot.'/'.$uri,
4574: homeserver($uname,$udom));
4575: @listing_results = split(/:/,$listing);
4576: } else {
4577: @listing_results = map { &unescape($_); } split(/:/,$listing);
4578: }
4579: return @listing_results;
1.253 stredwic 4580: } elsif(!defined($alternateDirectoryRoot)) {
4581: my $tryserver;
4582: my %allusers=();
4583: foreach $tryserver (keys %libserv) {
4584: if($hostdom{$tryserver} eq $udom) {
1.605 matthew 4585: my $listing=reply('ls2:'.$perlvar{'lonDocRoot'}.'/res/'.
1.253 stredwic 4586: $udom, $tryserver);
1.605 matthew 4587: my @listing_results;
4588: if ($listing eq 'unknown_cmd') {
4589: $listing=reply('ls:'.$perlvar{'lonDocRoot'}.'/res/'.
4590: $udom, $tryserver);
4591: @listing_results = split(/:/,$listing);
4592: } else {
4593: @listing_results =
4594: map { &unescape($_); } split(/:/,$listing);
4595: }
4596: if ($listing_results[0] ne 'no_such_dir' &&
4597: $listing_results[0] ne 'empty' &&
4598: $listing_results[0] ne 'con_lost') {
4599: foreach (@listing_results) {
1.253 stredwic 4600: my ($entry,@stat)=split(/&/,$_);
4601: $allusers{$entry}=1;
4602: }
4603: }
1.191 harris41 4604: }
1.253 stredwic 4605: }
4606: my $alluserstr='';
4607: foreach (sort keys %allusers) {
4608: $alluserstr.=$_.'&user:';
4609: }
4610: $alluserstr=~s/:$//;
4611: return split(/:/,$alluserstr);
4612: } else {
4613: my @emptyResults = ();
4614: push(@emptyResults, 'missing user name');
4615: return split(':',@emptyResults);
4616: }
4617: } elsif(!defined($alternateDirectoryRoot)) {
4618: my $tryserver;
4619: my %alldom=();
4620: foreach $tryserver (keys %libserv) {
4621: $alldom{$hostdom{$tryserver}}=1;
4622: }
4623: my $alldomstr='';
4624: foreach (sort keys %alldom) {
1.397 albertel 4625: $alldomstr.=$perlvar{'lonDocRoot'}.'/res/'.$_.'/&domain:';
1.253 stredwic 4626: }
4627: $alldomstr=~s/:$//;
4628: return split(/:/,$alldomstr);
4629: } else {
4630: my @emptyResults = ();
4631: push(@emptyResults, 'missing domain');
4632: return split(':',@emptyResults);
1.275 stredwic 4633: }
4634: }
4635:
4636: # --------------------------------------------- GetFileTimestamp
4637: # This function utilizes dirlist and returns the date stamp for
4638: # when it was last modified. It will also return an error of -1
4639: # if an error occurs
4640:
1.410 matthew 4641: ##
4642: ## FIXME: This subroutine assumes its caller knows something about the
4643: ## directory structure of the home server for the student ($root).
4644: ## Not a good assumption to make. Since this is for looking up files
4645: ## in user directories, the full path should be constructed by lond, not
4646: ## whatever machine we request data from.
4647: ##
1.275 stredwic 4648: sub GetFileTimestamp {
4649: my ($studentDomain,$studentName,$filename,$root)=@_;
4650: $studentDomain=~s/\W//g;
4651: $studentName=~s/\W//g;
4652: my $subdir=$studentName.'__';
4653: $subdir =~ s/(.)(.)(.).*/$1\/$2\/$3/;
4654: my $proname="$studentDomain/$subdir/$studentName";
4655: $proname .= '/'.$filename;
1.375 matthew 4656: my ($fileStat) = &Apache::lonnet::dirlist($proname, $studentDomain,
4657: $studentName, $root);
1.275 stredwic 4658: my @stats = split('&', $fileStat);
4659: if($stats[0] ne 'empty' && $stats[0] ne 'no_such_dir') {
1.375 matthew 4660: # @stats contains first the filename, then the stat output
4661: return $stats[10]; # so this is 10 instead of 9.
1.275 stredwic 4662: } else {
4663: return -1;
1.253 stredwic 4664: }
1.26 www 4665: }
4666:
4667: # -------------------------------------------------------- Value of a Condition
4668:
1.40 www 4669: sub directcondval {
4670: my $number=shift;
1.620 albertel 4671: if (!defined($env{'user.state.'.$env{'request.course.id'}})) {
1.555 albertel 4672: &Apache::lonuserstate::evalstate();
4673: }
1.620 albertel 4674: if ($env{'user.state.'.$env{'request.course.id'}}) {
4675: return substr($env{'user.state.'.$env{'request.course.id'}},$number,1);
1.40 www 4676: } else {
4677: return 2;
4678: }
4679: }
4680:
1.26 www 4681: sub condval {
4682: my $condidx=shift;
4683: my $result=0;
1.54 www 4684: my $allpathcond='';
1.191 harris41 4685: foreach (split(/\|/,$condidx)) {
1.620 albertel 4686: if (defined($env{'acc.cond.'.$env{'request.course.id'}.'.'.$_})) {
1.54 www 4687: $allpathcond.=
1.620 albertel 4688: '('.$env{'acc.cond.'.$env{'request.course.id'}.'.'.$_}.')|';
1.54 www 4689: }
1.191 harris41 4690: }
1.54 www 4691: $allpathcond=~s/\|$//;
1.620 albertel 4692: if ($env{'request.course.id'}) {
1.54 www 4693: if ($allpathcond) {
1.26 www 4694: my $operand='|';
4695: my @stack;
1.191 harris41 4696: foreach ($allpathcond=~/(\d+|\(|\)|\&|\|)/g) {
1.26 www 4697: if ($_ eq '(') {
4698: push @stack,($operand,$result)
4699: } elsif ($_ eq ')') {
4700: my $before=pop @stack;
4701: if (pop @stack eq '&') {
4702: $result=$result>$before?$before:$result;
4703: } else {
4704: $result=$result>$before?$result:$before;
4705: }
4706: } elsif (($_ eq '&') || ($_ eq '|')) {
4707: $operand=$_;
4708: } else {
1.40 www 4709: my $new=directcondval($_);
1.26 www 4710: if ($operand eq '&') {
4711: $result=$result>$new?$new:$result;
4712: } else {
4713: $result=$result>$new?$result:$new;
1.191 harris41 4714: }
1.26 www 4715: }
1.191 harris41 4716: }
1.26 www 4717: }
4718: }
4719: return $result;
1.421 albertel 4720: }
4721:
4722: # ---------------------------------------------------- Devalidate courseresdata
4723:
4724: sub devalidatecourseresdata {
4725: my ($coursenum,$coursedomain)=@_;
4726: my $hashid=$coursenum.':'.$coursedomain;
1.599 albertel 4727: &devalidate_cache_new('courseres',$hashid);
1.28 www 4728: }
4729:
1.200 www 4730: # --------------------------------------------------- Course Resourcedata Query
4731:
1.624 albertel 4732: sub get_courseresdata {
4733: my ($coursenum,$coursedomain)=@_;
1.200 www 4734: my $coursehom=&homeserver($coursenum,$coursedomain);
4735: my $hashid=$coursenum.':'.$coursedomain;
1.599 albertel 4736: my ($result,$cached)=&is_cached_new('courseres',$hashid);
1.624 albertel 4737: my %dumpreply;
1.417 albertel 4738: unless (defined($cached)) {
1.624 albertel 4739: %dumpreply=&dump('resourcedata',$coursedomain,$coursenum);
1.417 albertel 4740: $result=\%dumpreply;
1.251 albertel 4741: my ($tmp) = keys(%dumpreply);
4742: if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
1.599 albertel 4743: &do_cache_new('courseres',$hashid,$result,600);
1.306 albertel 4744: } elsif ($tmp =~ /^(con_lost|no_such_host)/) {
4745: return $tmp;
1.416 albertel 4746: } elsif ($tmp =~ /^(error)/) {
1.417 albertel 4747: $result=undef;
1.599 albertel 4748: &do_cache_new('courseres',$hashid,$result,600);
1.250 albertel 4749: }
4750: }
1.624 albertel 4751: return $result;
4752: }
4753:
1.633 albertel 4754: sub devalidateuserresdata {
4755: my ($uname,$udom)=@_;
4756: my $hashid="$udom:$uname";
4757: &devalidate_cache_new('userres',$hashid);
4758: }
4759:
1.624 albertel 4760: sub get_userresdata {
4761: my ($uname,$udom)=@_;
4762: #most student don\'t have any data set, check if there is some data
4763: if (&EXT_cache_status($udom,$uname)) { return undef; }
4764:
4765: my $hashid="$udom:$uname";
4766: my ($result,$cached)=&is_cached_new('userres',$hashid);
4767: if (!defined($cached)) {
4768: my %resourcedata=&dump('resourcedata',$udom,$uname);
4769: $result=\%resourcedata;
4770: &do_cache_new('userres',$hashid,$result,600);
4771: }
4772: my ($tmp)=keys(%$result);
4773: if (($tmp!~/^error\:/) && ($tmp!~/^con_lost/)) {
4774: return $result;
4775: }
4776: #error 2 occurs when the .db doesn't exist
4777: if ($tmp!~/error: 2 /) {
1.672 albertel 4778: &logthis("<font color=\"blue\">WARNING:".
1.624 albertel 4779: " Trying to get resource data for ".
4780: $uname." at ".$udom.": ".
4781: $tmp."</font>");
4782: } elsif ($tmp=~/error: 2 /) {
1.633 albertel 4783: #&EXT_cache_set($udom,$uname);
4784: &do_cache_new('userres',$hashid,undef,600);
1.636 albertel 4785: undef($tmp); # not really an error so don't send it back
1.624 albertel 4786: }
4787: return $tmp;
4788: }
4789:
4790: sub resdata {
4791: my ($name,$domain,$type,@which)=@_;
4792: my $result;
4793: if ($type eq 'course') {
4794: $result=&get_courseresdata($name,$domain);
4795: } elsif ($type eq 'user') {
4796: $result=&get_userresdata($name,$domain);
4797: }
4798: if (!ref($result)) { return $result; }
1.251 albertel 4799: foreach my $item (@which) {
1.417 albertel 4800: if (defined($result->{$item})) {
4801: return $result->{$item};
1.251 albertel 4802: }
1.250 albertel 4803: }
1.291 albertel 4804: return undef;
1.200 www 4805: }
4806:
1.379 matthew 4807: #
4808: # EXT resource caching routines
4809: #
4810:
4811: sub clear_EXT_cache_status {
1.383 albertel 4812: &delenv('cache.EXT.');
1.379 matthew 4813: }
4814:
4815: sub EXT_cache_status {
4816: my ($target_domain,$target_user) = @_;
1.383 albertel 4817: my $cachename = 'cache.EXT.'.$target_user.'.'.$target_domain;
1.620 albertel 4818: if (exists($env{$cachename}) && ($env{$cachename}+600) > time) {
1.379 matthew 4819: # We know already the user has no data
4820: return 1;
4821: } else {
4822: return 0;
4823: }
4824: }
4825:
4826: sub EXT_cache_set {
4827: my ($target_domain,$target_user) = @_;
1.383 albertel 4828: my $cachename = 'cache.EXT.'.$target_user.'.'.$target_domain;
1.633 albertel 4829: #&appenv($cachename => time);
1.379 matthew 4830: }
4831:
1.28 www 4832: # --------------------------------------------------------- Value of a Variable
1.58 www 4833: sub EXT {
1.395 albertel 4834: my ($varname,$symbparm,$udom,$uname,$usection,$recurse)=@_;
1.218 albertel 4835:
1.68 www 4836: unless ($varname) { return ''; }
1.218 albertel 4837: #get real user name/domain, courseid and symb
4838: my $courseid;
1.359 albertel 4839: my $publicuser;
1.427 www 4840: if ($symbparm) {
4841: $symbparm=&get_symb_from_alias($symbparm);
4842: }
1.218 albertel 4843: if (!($uname && $udom)) {
1.360 albertel 4844: (my $cursymb,$courseid,$udom,$uname,$publicuser)=
1.378 matthew 4845: &Apache::lonxml::whichuser($symbparm);
1.218 albertel 4846: if (!$symbparm) { $symbparm=$cursymb; }
4847: } else {
1.620 albertel 4848: $courseid=$env{'request.course.id'};
1.218 albertel 4849: }
1.48 www 4850: my ($realm,$space,$qualifier,@therest)=split(/\./,$varname);
4851: my $rest;
1.320 albertel 4852: if (defined($therest[0])) {
1.48 www 4853: $rest=join('.',@therest);
4854: } else {
4855: $rest='';
4856: }
1.320 albertel 4857:
1.57 www 4858: my $qualifierrest=$qualifier;
4859: if ($rest) { $qualifierrest.='.'.$rest; }
4860: my $spacequalifierrest=$space;
4861: if ($qualifierrest) { $spacequalifierrest.='.'.$qualifierrest; }
1.28 www 4862: if ($realm eq 'user') {
1.48 www 4863: # --------------------------------------------------------------- user.resource
4864: if ($space eq 'resource') {
1.651 albertel 4865: if ( (defined($Apache::lonhomework::parsing_a_problem)
4866: || defined($Apache::lonhomework::parsing_a_task))
4867: &&
4868: ($symbparm eq &symbread()) ) {
1.335 albertel 4869: return $Apache::lonhomework::history{$qualifierrest};
4870: } else {
1.359 albertel 4871: my %restored;
1.620 albertel 4872: if ($publicuser || $env{'request.state'} eq 'construct') {
1.359 albertel 4873: %restored=&tmprestore($symbparm,$courseid,$udom,$uname);
4874: } else {
4875: %restored=&restore($symbparm,$courseid,$udom,$uname);
4876: }
1.335 albertel 4877: return $restored{$qualifierrest};
4878: }
1.48 www 4879: # ----------------------------------------------------------------- user.access
4880: } elsif ($space eq 'access') {
1.218 albertel 4881: # FIXME - not supporting calls for a specific user
1.48 www 4882: return &allowed($qualifier,$rest);
4883: # ------------------------------------------ user.preferences, user.environment
4884: } elsif (($space eq 'preferences') || ($space eq 'environment')) {
1.620 albertel 4885: if (($uname eq $env{'user.name'}) &&
4886: ($udom eq $env{'user.domain'})) {
4887: return $env{join('.',('environment',$qualifierrest))};
1.218 albertel 4888: } else {
1.359 albertel 4889: my %returnhash;
4890: if (!$publicuser) {
4891: %returnhash=&userenvironment($udom,$uname,
4892: $qualifierrest);
4893: }
1.218 albertel 4894: return $returnhash{$qualifierrest};
4895: }
1.48 www 4896: # ----------------------------------------------------------------- user.course
4897: } elsif ($space eq 'course') {
1.218 albertel 4898: # FIXME - not supporting calls for a specific user
1.620 albertel 4899: return $env{join('.',('request.course',$qualifier))};
1.48 www 4900: # ------------------------------------------------------------------- user.role
4901: } elsif ($space eq 'role') {
1.218 albertel 4902: # FIXME - not supporting calls for a specific user
1.620 albertel 4903: my ($role,$where)=split(/\./,$env{'request.role'});
1.48 www 4904: if ($qualifier eq 'value') {
4905: return $role;
4906: } elsif ($qualifier eq 'extent') {
4907: return $where;
4908: }
4909: # ----------------------------------------------------------------- user.domain
4910: } elsif ($space eq 'domain') {
1.218 albertel 4911: return $udom;
1.48 www 4912: # ------------------------------------------------------------------- user.name
4913: } elsif ($space eq 'name') {
1.218 albertel 4914: return $uname;
1.48 www 4915: # ---------------------------------------------------- Any other user namespace
1.29 www 4916: } else {
1.359 albertel 4917: my %reply;
4918: if (!$publicuser) {
4919: %reply=&get($space,[$qualifierrest],$udom,$uname);
4920: }
4921: return $reply{$qualifierrest};
1.48 www 4922: }
1.236 www 4923: } elsif ($realm eq 'query') {
4924: # ---------------------------------------------- pull stuff out of query string
1.384 albertel 4925: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
4926: [$spacequalifierrest]);
1.620 albertel 4927: return $env{'form.'.$spacequalifierrest};
1.236 www 4928: } elsif ($realm eq 'request') {
1.48 www 4929: # ------------------------------------------------------------- request.browser
4930: if ($space eq 'browser') {
1.430 www 4931: if ($qualifier eq 'textremote') {
1.676 albertel 4932: if (&Apache::lonlocal::mt('textual_remote_display') eq 'on') {
1.430 www 4933: return 1;
4934: } else {
4935: return 0;
4936: }
4937: } else {
1.620 albertel 4938: return $env{'browser.'.$qualifier};
1.430 www 4939: }
1.57 www 4940: # ------------------------------------------------------------ request.filename
4941: } else {
1.620 albertel 4942: return $env{'request.'.$spacequalifierrest};
1.29 www 4943: }
1.28 www 4944: } elsif ($realm eq 'course') {
1.48 www 4945: # ---------------------------------------------------------- course.description
1.620 albertel 4946: return $env{'course.'.$courseid.'.'.$spacequalifierrest};
1.57 www 4947: } elsif ($realm eq 'resource') {
1.165 www 4948:
1.620 albertel 4949: if (defined($courseid) && $courseid eq $env{'request.course.id'}) {
1.539 albertel 4950: if (!$symbparm) { $symbparm=&symbread(); }
4951: }
1.693 albertel 4952:
4953: if ($space eq 'title') {
4954: if (!$symbparm) { $symbparm = $env{'request.filename'}; }
4955: return &gettitle($symbparm);
4956: }
4957:
4958: if ($space eq 'map') {
4959: my ($map) = &decode_symb($symbparm);
4960: return &symbread($map);
4961: }
4962:
4963: my ($section, $group, @groups);
1.593 albertel 4964: my ($courselevelm,$courselevel);
1.539 albertel 4965: if ($symbparm && defined($courseid) &&
1.620 albertel 4966: $courseid eq $env{'request.course.id'}) {
1.165 www 4967:
1.218 albertel 4968: #print '<br>'.$space.' - '.$qualifier.' - '.$spacequalifierrest;
1.165 www 4969:
1.60 www 4970: # ----------------------------------------------------- Cascading lookup scheme
1.218 albertel 4971: my $symbp=$symbparm;
1.409 www 4972: my $mapp=(&decode_symb($symbp))[0];
1.218 albertel 4973:
4974: my $symbparm=$symbp.'.'.$spacequalifierrest;
4975: my $mapparm=$mapp.'___(all).'.$spacequalifierrest;
4976:
1.620 albertel 4977: if (($env{'user.name'} eq $uname) &&
4978: ($env{'user.domain'} eq $udom)) {
4979: $section=$env{'request.course.sec'};
1.691 raeburn 4980: @groups=&sort_course_groups($env{'request.course.groups'},$courseid);
1.684 raeburn 4981: if (@groups > 0) {
4982: @groups = sort(@groups);
4983: }
1.218 albertel 4984: } else {
1.539 albertel 4985: if (! defined($usection)) {
1.551 albertel 4986: $section=&getsection($udom,$uname,$courseid);
1.539 albertel 4987: } else {
4988: $section = $usection;
4989: }
1.684 raeburn 4990: my $grouplist = &get_users_groups($udom,$uname,$courseid);
4991: if ($grouplist) {
1.691 raeburn 4992: @groups=&sort_course_groups($grouplist,$courseid);
1.684 raeburn 4993: }
1.218 albertel 4994: }
4995:
4996: my $seclevel=$courseid.'.['.$section.'].'.$spacequalifierrest;
4997: my $seclevelr=$courseid.'.['.$section.'].'.$symbparm;
4998: my $seclevelm=$courseid.'.['.$section.'].'.$mapparm;
4999:
1.593 albertel 5000: $courselevel=$courseid.'.'.$spacequalifierrest;
1.218 albertel 5001: my $courselevelr=$courseid.'.'.$symbparm;
1.593 albertel 5002: $courselevelm=$courseid.'.'.$mapparm;
1.69 www 5003:
1.60 www 5004: # ----------------------------------------------------------- first, check user
1.624 albertel 5005:
5006: my $userreply=&resdata($uname,$udom,'user',
5007: ($courselevelr,$courselevelm,
5008: $courselevel));
5009: if (defined($userreply)) { return $userreply; }
1.95 www 5010:
1.594 albertel 5011: # ------------------------------------------------ second, check some of course
1.684 raeburn 5012: my $coursereply;
1.691 raeburn 5013: if (@groups > 0) {
5014: $coursereply = &check_group_parms($courseid,\@groups,$symbparm,
5015: $mapparm,$spacequalifierrest);
1.684 raeburn 5016: if (defined($coursereply)) { return $coursereply; }
5017: }
1.96 www 5018:
1.684 raeburn 5019: $coursereply=&resdata($env{'course.'.$courseid.'.num'},
1.624 albertel 5020: $env{'course.'.$courseid.'.domain'},
5021: 'course',
5022: ($seclevelr,$seclevelm,$seclevel,
5023: $courselevelr));
1.287 albertel 5024: if (defined($coursereply)) { return $coursereply; }
1.200 www 5025:
1.60 www 5026: # ------------------------------------------------------ third, check map parms
1.218 albertel 5027: my %parmhash=();
5028: my $thisparm='';
5029: if (tie(%parmhash,'GDBM_File',
1.620 albertel 5030: $env{'request.course.fn'}.'_parms.db',
1.256 albertel 5031: &GDBM_READER(),0640)) {
1.218 albertel 5032: $thisparm=$parmhash{$symbparm};
5033: untie(%parmhash);
5034: }
5035: if ($thisparm) { return $thisparm; }
5036: }
1.594 albertel 5037: # ------------------------------------------ fourth, look in resource metadata
1.71 www 5038:
1.218 albertel 5039: $spacequalifierrest=~s/\./\_/;
1.282 albertel 5040: my $filename;
5041: if (!$symbparm) { $symbparm=&symbread(); }
5042: if ($symbparm) {
1.409 www 5043: $filename=(&decode_symb($symbparm))[2];
1.282 albertel 5044: } else {
1.620 albertel 5045: $filename=$env{'request.filename'};
1.282 albertel 5046: }
5047: my $metadata=&metadata($filename,$spacequalifierrest);
1.288 albertel 5048: if (defined($metadata)) { return $metadata; }
1.282 albertel 5049: $metadata=&metadata($filename,'parameter_'.$spacequalifierrest);
1.288 albertel 5050: if (defined($metadata)) { return $metadata; }
1.142 www 5051:
1.594 albertel 5052: # ---------------------------------------------- fourth, look in rest pf course
1.593 albertel 5053: if ($symbparm && defined($courseid) &&
1.620 albertel 5054: $courseid eq $env{'request.course.id'}) {
1.624 albertel 5055: my $coursereply=&resdata($env{'course.'.$courseid.'.num'},
5056: $env{'course.'.$courseid.'.domain'},
5057: 'course',
5058: ($courselevelm,$courselevel));
1.593 albertel 5059: if (defined($coursereply)) { return $coursereply; }
5060: }
1.145 www 5061: # ------------------------------------------------------------------ Cascade up
1.218 albertel 5062: unless ($space eq '0') {
1.336 albertel 5063: my @parts=split(/_/,$space);
5064: my $id=pop(@parts);
5065: my $part=join('_',@parts);
5066: if ($part eq '') { $part='0'; }
5067: my $partgeneral=&EXT('resource.'.$part.'.'.$qualifierrest,
1.395 albertel 5068: $symbparm,$udom,$uname,$section,1);
1.337 albertel 5069: if (defined($partgeneral)) { return $partgeneral; }
1.218 albertel 5070: }
1.395 albertel 5071: if ($recurse) { return undef; }
5072: my $pack_def=&packages_tab_default($filename,$varname);
5073: if (defined($pack_def)) { return $pack_def; }
1.71 www 5074:
1.48 www 5075: # ---------------------------------------------------- Any other user namespace
5076: } elsif ($realm eq 'environment') {
5077: # ----------------------------------------------------------------- environment
1.620 albertel 5078: if (($uname eq $env{'user.name'})&&($udom eq $env{'user.domain'})) {
5079: return $env{'environment.'.$spacequalifierrest};
1.219 albertel 5080: } else {
5081: my %returnhash=&userenvironment($udom,$uname,
5082: $spacequalifierrest);
5083: return $returnhash{$spacequalifierrest};
5084: }
1.28 www 5085: } elsif ($realm eq 'system') {
1.48 www 5086: # ----------------------------------------------------------------- system.time
5087: if ($space eq 'time') {
5088: return time;
5089: }
1.696 albertel 5090: } elsif ($realm eq 'server') {
5091: # ----------------------------------------------------------------- system.time
5092: if ($space eq 'name') {
5093: return $ENV{'SERVER_NAME'};
5094: }
1.28 www 5095: }
1.48 www 5096: return '';
1.61 www 5097: }
5098:
1.691 raeburn 5099: sub check_group_parms {
5100: my ($courseid,$groups,$symbparm,$mapparm,$what) = @_;
5101: my @groupitems = ();
5102: my $resultitem;
5103: my @levels = ($symbparm,$mapparm,$what);
5104: foreach my $group (@{$groups}) {
5105: foreach my $level (@levels) {
5106: my $item = $courseid.'.['.$group.'].'.$level;
5107: push(@groupitems,$item);
5108: }
5109: }
5110: my $coursereply = &resdata($env{'course.'.$courseid.'.num'},
5111: $env{'course.'.$courseid.'.domain'},
5112: 'course',@groupitems);
5113: return $coursereply;
5114: }
5115:
5116: sub sort_course_groups { # Sort groups based on defined rankings. Default is sort().
5117: my ($grouplist,$courseid) = @_;
5118: my @groups = split/:/,$grouplist;
5119: if (@groups > 1) {
5120: @groups = sort(@groups);
5121: }
5122: return @groups;
5123: }
5124:
1.395 albertel 5125: sub packages_tab_default {
5126: my ($uri,$varname)=@_;
5127: my (undef,$part,$name)=split(/\./,$varname);
5128: my $packages=&metadata($uri,'packages');
5129: foreach my $package (split(/,/,$packages)) {
5130: my ($pack_type,$pack_part)=split(/_/,$package,2);
1.468 albertel 5131: if (defined($packagetab{"$pack_type&$name&default"})) {
5132: return $packagetab{"$pack_type&$name&default"};
5133: }
1.585 albertel 5134: if ($pack_type eq 'part') { $pack_part='0'; }
1.468 albertel 5135: if (defined($packagetab{$pack_type."_".$pack_part."&$name&default"})) {
5136: return $packagetab{$pack_type."_".$pack_part."&$name&default"};
1.395 albertel 5137: }
5138: }
5139: return undef;
5140: }
5141:
1.334 albertel 5142: sub add_prefix_and_part {
5143: my ($prefix,$part)=@_;
5144: my $keyroot;
5145: if (defined($prefix) && $prefix !~ /^__/) {
5146: # prefix that has a part already
5147: $keyroot=$prefix;
5148: } elsif (defined($prefix)) {
5149: # prefix that is missing a part
5150: if (defined($part)) { $keyroot='_'.$part.substr($prefix,1); }
5151: } else {
5152: # no prefix at all
5153: if (defined($part)) { $keyroot='_'.$part; }
5154: }
5155: return $keyroot;
5156: }
5157:
1.71 www 5158: # ---------------------------------------------------------------- Get metadata
5159:
1.599 albertel 5160: my %metaentry;
1.71 www 5161: sub metadata {
1.176 www 5162: my ($uri,$what,$liburi,$prefix,$depthcount)=@_;
1.71 www 5163: $uri=&declutter($uri);
1.288 albertel 5164: # if it is a non metadata possible uri return quickly
1.529 albertel 5165: if (($uri eq '') ||
5166: (($uri =~ m|^/*adm/|) &&
1.698 albertel 5167: ($uri !~ m|^adm/includes|) && ($uri !~ m|/bulletinboard$|)) ||
1.423 albertel 5168: ($uri =~ m|/$|) || ($uri =~ m|/.meta$|) || ($uri =~ /^~/) ||
1.489 albertel 5169: ($uri =~ m|home/[^/]+/public_html/|)) {
1.468 albertel 5170: return undef;
1.288 albertel 5171: }
1.73 www 5172: my $filename=$uri;
5173: $uri=~s/\.meta$//;
1.172 www 5174: #
5175: # Is the metadata already cached?
1.177 www 5176: # Look at timestamp of caching
1.172 www 5177: # Everything is cached by the main uri, libraries are never directly cached
5178: #
1.428 albertel 5179: if (!defined($liburi)) {
1.599 albertel 5180: my ($result,$cached)=&is_cached_new('meta',$uri);
1.428 albertel 5181: if (defined($cached)) { return $result->{':'.$what}; }
5182: }
5183: {
1.172 www 5184: #
5185: # Is this a recursive call for a library?
5186: #
1.599 albertel 5187: # if (! exists($metacache{$uri})) {
5188: # $metacache{$uri}={};
5189: # }
1.171 www 5190: if ($liburi) {
5191: $liburi=&declutter($liburi);
5192: $filename=$liburi;
1.401 bowersj2 5193: } else {
1.599 albertel 5194: &devalidate_cache_new('meta',$uri);
5195: undef(%metaentry);
1.401 bowersj2 5196: }
1.140 www 5197: my %metathesekeys=();
1.73 www 5198: unless ($filename=~/\.meta$/) { $filename.='.meta'; }
1.489 albertel 5199: my $metastring;
1.609 banghart 5200: if ($uri !~ m -^(uploaded|editupload)/-) {
1.543 albertel 5201: my $file=&filelocation('',&clutter($filename));
1.599 albertel 5202: #push(@{$metaentry{$uri.'.file'}},$file);
1.543 albertel 5203: $metastring=&getfile($file);
1.489 albertel 5204: }
1.208 albertel 5205: my $parser=HTML::LCParser->new(\$metastring);
1.71 www 5206: my $token;
1.140 www 5207: undef %metathesekeys;
1.71 www 5208: while ($token=$parser->get_token) {
1.339 albertel 5209: if ($token->[0] eq 'S') {
5210: if (defined($token->[2]->{'package'})) {
1.172 www 5211: #
5212: # This is a package - get package info
5213: #
1.339 albertel 5214: my $package=$token->[2]->{'package'};
5215: my $keyroot=&add_prefix_and_part($prefix,$token->[2]->{'part'});
5216: if (defined($token->[2]->{'id'})) {
5217: $keyroot.='_'.$token->[2]->{'id'};
5218: }
1.599 albertel 5219: if ($metaentry{':packages'}) {
5220: $metaentry{':packages'}.=','.$package.$keyroot;
1.339 albertel 5221: } else {
1.599 albertel 5222: $metaentry{':packages'}=$package.$keyroot;
1.339 albertel 5223: }
1.613 albertel 5224: foreach (sort keys %packagetab) {
1.432 albertel 5225: my $part=$keyroot;
5226: $part=~s/^\_//;
5227: if ($_=~/^\Q$package\E\&/ ||
5228: $_=~/^\Q$package\E_0\&/) {
1.339 albertel 5229: my ($pack,$name,$subp)=split(/\&/,$_);
1.395 albertel 5230: # ignore package.tab specified default values
5231: # here &package_tab_default() will fetch those
5232: if ($subp eq 'default') { next; }
1.339 albertel 5233: my $value=$packagetab{$_};
1.432 albertel 5234: my $unikey;
5235: if ($pack =~ /_0$/) {
5236: $unikey='parameter_0_'.$name;
5237: $part=0;
5238: } else {
5239: $unikey='parameter'.$keyroot.'_'.$name;
5240: }
1.339 albertel 5241: if ($subp eq 'display') {
5242: $value.=' [Part: '.$part.']';
5243: }
1.599 albertel 5244: $metaentry{':'.$unikey.'.part'}=$part;
1.395 albertel 5245: $metathesekeys{$unikey}=1;
1.599 albertel 5246: unless (defined($metaentry{':'.$unikey.'.'.$subp})) {
5247: $metaentry{':'.$unikey.'.'.$subp}=$value;
1.339 albertel 5248: }
1.599 albertel 5249: if (defined($metaentry{':'.$unikey.'.default'})) {
5250: $metaentry{':'.$unikey}=
5251: $metaentry{':'.$unikey.'.default'};
1.356 albertel 5252: }
1.339 albertel 5253: }
5254: }
5255: } else {
1.172 www 5256: #
5257: # This is not a package - some other kind of start tag
1.339 albertel 5258: #
5259: my $entry=$token->[1];
5260: my $unikey;
5261: if ($entry eq 'import') {
5262: $unikey='';
5263: } else {
5264: $unikey=$entry;
5265: }
5266: $unikey.=&add_prefix_and_part($prefix,$token->[2]->{'part'});
5267:
5268: if (defined($token->[2]->{'id'})) {
5269: $unikey.='_'.$token->[2]->{'id'};
5270: }
1.175 www 5271:
1.339 albertel 5272: if ($entry eq 'import') {
1.175 www 5273: #
5274: # Importing a library here
1.339 albertel 5275: #
5276: if ($depthcount<20) {
5277: my $location=$parser->get_text('/import');
5278: my $dir=$filename;
5279: $dir=~s|[^/]*$||;
5280: $location=&filelocation($dir,$location);
5281: foreach (sort(split(/\,/,&metadata($uri,'keys',
5282: $location,$unikey,
5283: $depthcount+1)))) {
1.599 albertel 5284: $metaentry{':'.$_}=$metaentry{':'.$_};
1.339 albertel 5285: $metathesekeys{$_}=1;
5286: }
5287: }
5288: } else {
5289:
5290: if (defined($token->[2]->{'name'})) {
5291: $unikey.='_'.$token->[2]->{'name'};
5292: }
5293: $metathesekeys{$unikey}=1;
5294: foreach (@{$token->[3]}) {
1.599 albertel 5295: $metaentry{':'.$unikey.'.'.$_}=$token->[2]->{$_};
1.339 albertel 5296: }
5297: my $internaltext=&HTML::Entities::decode($parser->get_text('/'.$entry));
1.599 albertel 5298: my $default=$metaentry{':'.$unikey.'.default'};
1.339 albertel 5299: if ( $internaltext =~ /^\s*$/ && $default !~ /^\s*$/) {
5300: # only ws inside the tag, and not in default, so use default
5301: # as value
1.599 albertel 5302: $metaentry{':'.$unikey}=$default;
1.339 albertel 5303: } else {
1.321 albertel 5304: # either something interesting inside the tag or default
5305: # uninteresting
1.599 albertel 5306: $metaentry{':'.$unikey}=$internaltext;
1.339 albertel 5307: }
1.172 www 5308: # end of not-a-package not-a-library import
1.339 albertel 5309: }
1.172 www 5310: # end of not-a-package start tag
1.339 albertel 5311: }
1.172 www 5312: # the next is the end of "start tag"
1.339 albertel 5313: }
5314: }
1.483 albertel 5315: my ($extension) = ($uri =~ /\.(\w+)$/);
5316: foreach my $key (sort(keys(%packagetab))) {
5317: #no specific packages #how's our extension
5318: if ($key!~/^extension_\Q$extension\E&/) { next; }
1.488 albertel 5319: &metadata_create_package_def($uri,$key,'extension_'.$extension,
1.483 albertel 5320: \%metathesekeys);
5321: }
1.599 albertel 5322: if (!exists($metaentry{':packages'})) {
1.483 albertel 5323: foreach my $key (sort(keys(%packagetab))) {
5324: #no specific packages well let's get default then
5325: if ($key!~/^default&/) { next; }
1.488 albertel 5326: &metadata_create_package_def($uri,$key,'default',
1.483 albertel 5327: \%metathesekeys);
5328: }
5329: }
1.338 www 5330: # are there custom rights to evaluate
1.599 albertel 5331: if ($metaentry{':copyright'} eq 'custom') {
1.339 albertel 5332:
1.338 www 5333: #
5334: # Importing a rights file here
1.339 albertel 5335: #
5336: unless ($depthcount) {
1.599 albertel 5337: my $location=$metaentry{':customdistributionfile'};
1.339 albertel 5338: my $dir=$filename;
5339: $dir=~s|[^/]*$||;
5340: $location=&filelocation($dir,$location);
5341: foreach (sort(split(/\,/,&metadata($uri,'keys',
5342: $location,'_rights',
5343: $depthcount+1)))) {
1.599 albertel 5344: #$metaentry{':'.$_}=$metacache{$uri}->{':'.$_};
1.339 albertel 5345: $metathesekeys{$_}=1;
5346: }
5347: }
5348: }
1.599 albertel 5349: $metaentry{':keys'}=join(',',keys %metathesekeys);
5350: &metadata_generate_part0(\%metathesekeys,\%metaentry,$uri);
5351: $metaentry{':allpossiblekeys'}=join(',',keys %metathesekeys);
1.699 albertel 5352: &do_cache_new('meta',$uri,\%metaentry,60*60);
1.177 www 5353: # this is the end of "was not already recently cached
1.71 www 5354: }
1.599 albertel 5355: return $metaentry{':'.$what};
1.261 albertel 5356: }
5357:
1.488 albertel 5358: sub metadata_create_package_def {
1.483 albertel 5359: my ($uri,$key,$package,$metathesekeys)=@_;
5360: my ($pack,$name,$subp)=split(/\&/,$key);
5361: if ($subp eq 'default') { next; }
5362:
1.599 albertel 5363: if (defined($metaentry{':packages'})) {
5364: $metaentry{':packages'}.=','.$package;
1.483 albertel 5365: } else {
1.599 albertel 5366: $metaentry{':packages'}=$package;
1.483 albertel 5367: }
5368: my $value=$packagetab{$key};
5369: my $unikey;
5370: $unikey='parameter_0_'.$name;
1.599 albertel 5371: $metaentry{':'.$unikey.'.part'}=0;
1.483 albertel 5372: $$metathesekeys{$unikey}=1;
1.599 albertel 5373: unless (defined($metaentry{':'.$unikey.'.'.$subp})) {
5374: $metaentry{':'.$unikey.'.'.$subp}=$value;
1.483 albertel 5375: }
1.599 albertel 5376: if (defined($metaentry{':'.$unikey.'.default'})) {
5377: $metaentry{':'.$unikey}=
5378: $metaentry{':'.$unikey.'.default'};
1.483 albertel 5379: }
5380: }
5381:
1.261 albertel 5382: sub metadata_generate_part0 {
5383: my ($metadata,$metacache,$uri) = @_;
5384: my %allnames;
5385: foreach my $metakey (sort keys %$metadata) {
5386: if ($metakey=~/^parameter\_(.*)/) {
1.428 albertel 5387: my $part=$$metacache{':'.$metakey.'.part'};
5388: my $name=$$metacache{':'.$metakey.'.name'};
1.356 albertel 5389: if (! exists($$metadata{'parameter_0_'.$name.'.name'})) {
1.261 albertel 5390: $allnames{$name}=$part;
5391: }
5392: }
5393: }
5394: foreach my $name (keys(%allnames)) {
5395: $$metadata{"parameter_0_$name"}=1;
1.428 albertel 5396: my $key=":parameter_0_$name";
1.261 albertel 5397: $$metacache{"$key.part"}='0';
5398: $$metacache{"$key.name"}=$name;
1.428 albertel 5399: $$metacache{"$key.type"}=$$metacache{':parameter_'.
1.261 albertel 5400: $allnames{$name}.'_'.$name.
5401: '.type'};
1.428 albertel 5402: my $olddis=$$metacache{':parameter_'.$allnames{$name}.'_'.$name.
1.261 albertel 5403: '.display'};
1.644 www 5404: my $expr='[Part: '.$allnames{$name}.']';
1.479 albertel 5405: $olddis=~s/\Q$expr\E/\[Part: 0\]/;
1.261 albertel 5406: $$metacache{"$key.display"}=$olddis;
5407: }
1.71 www 5408: }
5409:
1.301 www 5410: # ------------------------------------------------- Get the title of a resource
5411:
5412: sub gettitle {
5413: my $urlsymb=shift;
5414: my $symb=&symbread($urlsymb);
1.534 albertel 5415: if ($symb) {
1.620 albertel 5416: my $key=$env{'request.course.id'}."\0".$symb;
1.599 albertel 5417: my ($result,$cached)=&is_cached_new('title',$key);
1.575 albertel 5418: if (defined($cached)) {
5419: return $result;
5420: }
1.534 albertel 5421: my ($map,$resid,$url)=&decode_symb($symb);
5422: my $title='';
5423: my %bighash;
1.620 albertel 5424: if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.534 albertel 5425: &GDBM_READER(),0640)) {
5426: my $mapid=$bighash{'map_pc_'.&clutter($map)};
5427: $title=$bighash{'title_'.$mapid.'.'.$resid};
5428: untie %bighash;
5429: }
5430: $title=~s/\&colon\;/\:/gs;
5431: if ($title) {
1.599 albertel 5432: return &do_cache_new('title',$key,$title,600);
1.534 albertel 5433: }
5434: $urlsymb=$url;
5435: }
5436: my $title=&metadata($urlsymb,'title');
5437: if (!$title) { $title=(split('/',$urlsymb))[-1]; }
5438: return $title;
1.301 www 5439: }
1.613 albertel 5440:
1.614 albertel 5441: sub get_slot {
5442: my ($which,$cnum,$cdom)=@_;
5443: if (!$cnum || !$cdom) {
5444: (undef,my $courseid)=&Apache::lonxml::whichuser();
1.620 albertel 5445: $cdom=$env{'course.'.$courseid.'.domain'};
5446: $cnum=$env{'course.'.$courseid.'.num'};
1.614 albertel 5447: }
1.703 albertel 5448: my $key=join("\0",'slots',$cdom,$cnum,$which);
5449: my %slotinfo;
5450: if (exists($remembered{$key})) {
5451: $slotinfo{$which} = $remembered{$key};
5452: } else {
5453: %slotinfo=&get('slots',[$which],$cdom,$cnum);
5454: &Apache::lonhomework::showhash(%slotinfo);
5455: my ($tmp)=keys(%slotinfo);
5456: if ($tmp=~/^error:/) { return (); }
5457: $remembered{$key} = $slotinfo{$which};
5458: }
1.616 albertel 5459: if (ref($slotinfo{$which}) eq 'HASH') {
5460: return %{$slotinfo{$which}};
5461: }
5462: return $slotinfo{$which};
1.614 albertel 5463: }
1.31 www 5464: # ------------------------------------------------- Update symbolic store links
5465:
5466: sub symblist {
5467: my ($mapname,%newhash)=@_;
1.438 www 5468: $mapname=&deversion(&declutter($mapname));
1.31 www 5469: my %hash;
1.620 albertel 5470: if (($env{'request.course.fn'}) && (%newhash)) {
5471: if (tie(%hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db',
1.256 albertel 5472: &GDBM_WRCREAT(),0640)) {
1.191 harris41 5473: foreach (keys %newhash) {
1.601 albertel 5474: $hash{declutter($_)}=&encode_symb($mapname,$newhash{$_}->[1],
5475: $newhash{$_}->[0]);
1.191 harris41 5476: }
1.31 www 5477: if (untie(%hash)) {
5478: return 'ok';
5479: }
5480: }
5481: }
5482: return 'error';
1.212 www 5483: }
5484:
5485: # --------------------------------------------------------------- Verify a symb
5486:
5487: sub symbverify {
1.510 www 5488: my ($symb,$thisurl)=@_;
5489: my $thisfn=$thisurl;
5490: # wrapper not part of symbs
5491: $thisfn=~s/^\/adm\/wrapper//;
1.694 albertel 5492: $thisfn=~s/^\/adm\/coursedocs\/showdoc\///;
1.439 www 5493: $thisfn=&declutter($thisfn);
1.215 www 5494: # direct jump to resource in page or to a sequence - will construct own symbs
5495: if ($thisfn=~/\.(page|sequence)$/) { return 1; }
5496: # check URL part
1.409 www 5497: my ($map,$resid,$url)=&decode_symb($symb);
1.439 www 5498:
1.431 www 5499: unless ($url eq $thisfn) { return 0; }
1.213 www 5500:
1.216 www 5501: $symb=&symbclean($symb);
1.510 www 5502: $thisurl=&deversion($thisurl);
1.439 www 5503: $thisfn=&deversion($thisfn);
1.213 www 5504:
5505: my %bighash;
5506: my $okay=0;
1.431 www 5507:
1.620 albertel 5508: if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.256 albertel 5509: &GDBM_READER(),0640)) {
1.510 www 5510: my $ids=$bighash{'ids_'.&clutter($thisurl)};
1.216 www 5511: unless ($ids) {
1.510 www 5512: $ids=$bighash{'ids_/'.$thisurl};
1.216 www 5513: }
5514: if ($ids) {
5515: # ------------------------------------------------------------------- Has ID(s)
5516: foreach (split(/\,/,$ids)) {
1.644 www 5517: my ($mapid,$resid)=split(/\./,$_);
1.216 www 5518: if (
5519: &symbclean(&declutter($bighash{'map_id_'.$mapid}).'___'.$resid.'___'.$thisfn)
5520: eq $symb) {
1.620 albertel 5521: if (($env{'request.role.adv'}) ||
5522: $bighash{'encrypted_'.$_} eq $env{'request.enc'}) {
1.582 albertel 5523: $okay=1;
5524: }
5525: }
1.216 www 5526: }
5527: }
1.213 www 5528: untie(%bighash);
5529: }
5530: return $okay;
1.31 www 5531: }
5532:
1.210 www 5533: # --------------------------------------------------------------- Clean-up symb
5534:
5535: sub symbclean {
5536: my $symb=shift;
1.568 albertel 5537: if ($symb=~m|^/enc/|) { $symb=&Apache::lonenc::unencrypted($symb); }
1.210 www 5538: # remove version from map
5539: $symb=~s/\.(\d+)\.(\w+)\_\_\_/\.$2\_\_\_/;
1.215 www 5540:
1.210 www 5541: # remove version from URL
5542: $symb=~s/\.(\d+)\.(\w+)$/\.$2/;
1.213 www 5543:
1.507 www 5544: # remove wrapper
5545:
1.510 www 5546: $symb=~s/(\_\_\_\d+\_\_\_)adm\/wrapper\/(res\/)*/$1/;
1.694 albertel 5547: $symb=~s/(\_\_\_\d+\_\_\_)adm\/coursedocs\/showdoc\/(res\/)*/$1/;
1.210 www 5548: return $symb;
1.409 www 5549: }
5550:
5551: # ---------------------------------------------- Split symb to find map and url
1.429 albertel 5552:
5553: sub encode_symb {
5554: my ($map,$resid,$url)=@_;
5555: return &symbclean(&declutter($map).'___'.$resid.'___'.&declutter($url));
5556: }
1.409 www 5557:
5558: sub decode_symb {
1.568 albertel 5559: my $symb=shift;
5560: if ($symb=~m|^/enc/|) { $symb=&Apache::lonenc::unencrypted($symb); }
5561: my ($map,$resid,$url)=split(/___/,$symb);
1.413 www 5562: return (&fixversion($map),$resid,&fixversion($url));
5563: }
5564:
5565: sub fixversion {
5566: my $fn=shift;
1.609 banghart 5567: if ($fn=~/^(adm|uploaded|editupload|public)/) { return $fn; }
1.435 www 5568: my %bighash;
5569: my $uri=&clutter($fn);
1.620 albertel 5570: my $key=$env{'request.course.id'}.'_'.$uri;
1.440 www 5571: # is this cached?
1.599 albertel 5572: my ($result,$cached)=&is_cached_new('courseresversion',$key);
1.440 www 5573: if (defined($cached)) { return $result; }
5574: # unfortunately not cached, or expired
1.620 albertel 5575: if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.440 www 5576: &GDBM_READER(),0640)) {
5577: if ($bighash{'version_'.$uri}) {
5578: my $version=$bighash{'version_'.$uri};
1.444 www 5579: unless (($version eq 'mostrecent') ||
5580: ($version==&getversion($uri))) {
1.440 www 5581: $uri=~s/\.(\w+)$/\.$version\.$1/;
5582: }
5583: }
5584: untie %bighash;
1.413 www 5585: }
1.599 albertel 5586: return &do_cache_new('courseresversion',$key,&declutter($uri),600);
1.438 www 5587: }
5588:
5589: sub deversion {
5590: my $url=shift;
5591: $url=~s/\.\d+\.(\w+)$/\.$1/;
5592: return $url;
1.210 www 5593: }
5594:
1.31 www 5595: # ------------------------------------------------------ Return symb list entry
5596:
5597: sub symbread {
1.249 www 5598: my ($thisfn,$donotrecurse)=@_;
1.542 albertel 5599: my $cache_str='request.symbread.cached.'.$thisfn;
1.620 albertel 5600: if (defined($env{$cache_str})) { return $env{$cache_str}; }
1.242 www 5601: # no filename provided? try from environment
1.44 www 5602: unless ($thisfn) {
1.620 albertel 5603: if ($env{'request.symb'}) {
5604: return $env{$cache_str}=&symbclean($env{'request.symb'});
1.539 albertel 5605: }
1.620 albertel 5606: $thisfn=$env{'request.filename'};
1.44 www 5607: }
1.569 albertel 5608: if ($thisfn=~m|^/enc/|) { $thisfn=&Apache::lonenc::unencrypted($thisfn); }
1.242 www 5609: # is that filename actually a symb? Verify, clean, and return
5610: if ($thisfn=~/\_\_\_\d+\_\_\_(.*)$/) {
1.539 albertel 5611: if (&symbverify($thisfn,$1)) {
1.620 albertel 5612: return $env{$cache_str}=&symbclean($thisfn);
1.539 albertel 5613: }
1.242 www 5614: }
1.44 www 5615: $thisfn=declutter($thisfn);
1.31 www 5616: my %hash;
1.37 www 5617: my %bighash;
5618: my $syval='';
1.620 albertel 5619: if (($env{'request.course.fn'}) && ($thisfn)) {
1.481 raeburn 5620: my $targetfn = $thisfn;
1.609 banghart 5621: if ( ($thisfn =~ m/^(uploaded|editupload)\//) && ($thisfn !~ m/\.(page|sequence)$/) ) {
1.481 raeburn 5622: $targetfn = 'adm/wrapper/'.$thisfn;
5623: }
1.687 albertel 5624: if ($targetfn =~ m|^adm/wrapper/(ext/.*)|) {
5625: $targetfn=$1;
5626: }
1.620 albertel 5627: if (tie(%hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db',
1.256 albertel 5628: &GDBM_READER(),0640)) {
1.481 raeburn 5629: $syval=$hash{$targetfn};
1.37 www 5630: untie(%hash);
5631: }
5632: # ---------------------------------------------------------- There was an entry
5633: if ($syval) {
1.601 albertel 5634: #unless ($syval=~/\_\d+$/) {
1.620 albertel 5635: #unless ($env{'form.request.prefix'}=~/\.(\d+)\_$/) {
1.601 albertel 5636: #&appenv('request.ambiguous' => $thisfn);
1.620 albertel 5637: #return $env{$cache_str}='';
1.601 albertel 5638: #}
5639: #$syval.=$1;
5640: #}
1.37 www 5641: } else {
5642: # ------------------------------------------------------- Was not in symb table
1.620 albertel 5643: if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.256 albertel 5644: &GDBM_READER(),0640)) {
1.37 www 5645: # ---------------------------------------------- Get ID(s) for current resource
1.280 www 5646: my $ids=$bighash{'ids_'.&clutter($thisfn)};
1.65 www 5647: unless ($ids) {
5648: $ids=$bighash{'ids_/'.$thisfn};
1.242 www 5649: }
5650: unless ($ids) {
5651: # alias?
5652: $ids=$bighash{'mapalias_'.$thisfn};
1.65 www 5653: }
1.37 www 5654: if ($ids) {
5655: # ------------------------------------------------------------------- Has ID(s)
5656: my @possibilities=split(/\,/,$ids);
1.39 www 5657: if ($#possibilities==0) {
5658: # ----------------------------------------------- There is only one possibility
1.37 www 5659: my ($mapid,$resid)=split(/\./,$ids);
1.626 albertel 5660: $syval=&encode_symb($bighash{'map_id_'.$mapid},
5661: $resid,$thisfn);
1.249 www 5662: } elsif (!$donotrecurse) {
1.39 www 5663: # ------------------------------------------ There is more than one possibility
5664: my $realpossible=0;
1.191 harris41 5665: foreach (@possibilities) {
1.39 www 5666: my $file=$bighash{'src_'.$_};
5667: if (&allowed('bre',$file)) {
5668: my ($mapid,$resid)=split(/\./,$_);
5669: if ($bighash{'map_type_'.$mapid} ne 'page') {
5670: $realpossible++;
1.626 albertel 5671: $syval=&encode_symb($bighash{'map_id_'.$mapid},
5672: $resid,$thisfn);
1.39 www 5673: }
5674: }
1.191 harris41 5675: }
1.39 www 5676: if ($realpossible!=1) { $syval=''; }
1.249 www 5677: } else {
5678: $syval='';
1.37 www 5679: }
5680: }
5681: untie(%bighash)
1.481 raeburn 5682: }
1.31 www 5683: }
1.62 www 5684: if ($syval) {
1.620 albertel 5685: return $env{$cache_str}=$syval;
1.62 www 5686: }
1.31 www 5687: }
1.44 www 5688: &appenv('request.ambiguous' => $thisfn);
1.620 albertel 5689: return $env{$cache_str}='';
1.31 www 5690: }
5691:
5692: # ---------------------------------------------------------- Return random seed
5693:
1.32 www 5694: sub numval {
5695: my $txt=shift;
5696: $txt=~tr/A-J/0-9/;
5697: $txt=~tr/a-j/0-9/;
5698: $txt=~tr/K-T/0-9/;
5699: $txt=~tr/k-t/0-9/;
5700: $txt=~tr/U-Z/0-5/;
5701: $txt=~tr/u-z/0-5/;
5702: $txt=~s/\D//g;
1.564 albertel 5703: if ($_64bit) { if ($txt > 2**32) { return -1; } }
1.32 www 5704: return int($txt);
1.368 albertel 5705: }
5706:
1.484 albertel 5707: sub numval2 {
5708: my $txt=shift;
5709: $txt=~tr/A-J/0-9/;
5710: $txt=~tr/a-j/0-9/;
5711: $txt=~tr/K-T/0-9/;
5712: $txt=~tr/k-t/0-9/;
5713: $txt=~tr/U-Z/0-5/;
5714: $txt=~tr/u-z/0-5/;
5715: $txt=~s/\D//g;
5716: my @txts=split(/(\d\d\d\d\d\d\d\d\d)/,$txt);
5717: my $total;
5718: foreach my $val (@txts) { $total+=$val; }
1.564 albertel 5719: if ($_64bit) { if ($total > 2**32) { return -1; } }
1.484 albertel 5720: return int($total);
5721: }
5722:
1.575 albertel 5723: sub numval3 {
5724: use integer;
5725: my $txt=shift;
5726: $txt=~tr/A-J/0-9/;
5727: $txt=~tr/a-j/0-9/;
5728: $txt=~tr/K-T/0-9/;
5729: $txt=~tr/k-t/0-9/;
5730: $txt=~tr/U-Z/0-5/;
5731: $txt=~tr/u-z/0-5/;
5732: $txt=~s/\D//g;
5733: my @txts=split(/(\d\d\d\d\d\d\d\d\d)/,$txt);
5734: my $total;
5735: foreach my $val (@txts) { $total+=$val; }
5736: if ($_64bit) { $total=(($total<<32)>>32); }
5737: return $total;
5738: }
5739:
1.675 albertel 5740: sub digest {
5741: my ($data)=@_;
5742: my $digest=&Digest::MD5::md5($data);
5743: my ($a,$b,$c,$d)=unpack("iiii",$digest);
5744: my ($e,$f);
5745: {
5746: use integer;
5747: $e=($a+$b);
5748: $f=($c+$d);
5749: if ($_64bit) {
5750: $e=(($e<<32)>>32);
5751: $f=(($f<<32)>>32);
5752: }
5753: }
5754: if (wantarray) {
5755: return ($e,$f);
5756: } else {
5757: my $g;
5758: {
5759: use integer;
5760: $g=($e+$f);
5761: if ($_64bit) {
5762: $g=(($g<<32)>>32);
5763: }
5764: }
5765: return $g;
5766: }
5767: }
5768:
1.368 albertel 5769: sub latest_rnd_algorithm_id {
1.675 albertel 5770: return '64bit5';
1.366 albertel 5771: }
1.32 www 5772:
1.503 albertel 5773: sub get_rand_alg {
5774: my ($courseid)=@_;
5775: if (!$courseid) { $courseid=(&Apache::lonxml::whichuser())[1]; }
5776: if ($courseid) {
1.620 albertel 5777: return $env{"course.$courseid.rndseed"};
1.503 albertel 5778: }
5779: return &latest_rnd_algorithm_id();
5780: }
5781:
1.562 albertel 5782: sub validCODE {
5783: my ($CODE)=@_;
5784: if (defined($CODE) && $CODE ne '' && $CODE =~ /^\w+$/) { return 1; }
5785: return 0;
5786: }
5787:
1.491 albertel 5788: sub getCODE {
1.620 albertel 5789: if (&validCODE($env{'form.CODE'})) { return $env{'form.CODE'}; }
1.618 albertel 5790: if ( (defined($Apache::lonhomework::parsing_a_problem) ||
5791: defined($Apache::lonhomework::parsing_a_task) ) &&
5792: &validCODE($Apache::lonhomework::history{'resource.CODE'})) {
1.491 albertel 5793: return $Apache::lonhomework::history{'resource.CODE'};
5794: }
5795: return undef;
5796: }
5797:
1.31 www 5798: sub rndseed {
1.155 albertel 5799: my ($symb,$courseid,$domain,$username)=@_;
1.366 albertel 5800:
5801: my ($wsymb,$wcourseid,$wdomain,$wusername)=&Apache::lonxml::whichuser();
1.155 albertel 5802: if (!$symb) {
1.366 albertel 5803: unless ($symb=$wsymb) { return time; }
5804: }
5805: if (!$courseid) { $courseid=$wcourseid; }
5806: if (!$domain) { $domain=$wdomain; }
5807: if (!$username) { $username=$wusername }
1.503 albertel 5808: my $which=&get_rand_alg();
1.491 albertel 5809: if (defined(&getCODE())) {
1.675 albertel 5810: if ($which eq '64bit5') {
5811: return &rndseed_CODE_64bit5($symb,$courseid,$domain,$username);
5812: } elsif ($which eq '64bit4') {
1.575 albertel 5813: return &rndseed_CODE_64bit4($symb,$courseid,$domain,$username);
5814: } else {
5815: return &rndseed_CODE_64bit($symb,$courseid,$domain,$username);
5816: }
1.675 albertel 5817: } elsif ($which eq '64bit5') {
5818: return &rndseed_64bit5($symb,$courseid,$domain,$username);
1.575 albertel 5819: } elsif ($which eq '64bit4') {
5820: return &rndseed_64bit4($symb,$courseid,$domain,$username);
1.501 albertel 5821: } elsif ($which eq '64bit3') {
5822: return &rndseed_64bit3($symb,$courseid,$domain,$username);
1.443 albertel 5823: } elsif ($which eq '64bit2') {
5824: return &rndseed_64bit2($symb,$courseid,$domain,$username);
1.366 albertel 5825: } elsif ($which eq '64bit') {
5826: return &rndseed_64bit($symb,$courseid,$domain,$username);
5827: }
5828: return &rndseed_32bit($symb,$courseid,$domain,$username);
5829: }
5830:
5831: sub rndseed_32bit {
5832: my ($symb,$courseid,$domain,$username)=@_;
5833: {
5834: use integer;
5835: my $symbchck=unpack("%32C*",$symb) << 27;
5836: my $symbseed=numval($symb) << 22;
5837: my $namechck=unpack("%32C*",$username) << 17;
5838: my $nameseed=numval($username) << 12;
5839: my $domainseed=unpack("%32C*",$domain) << 7;
5840: my $courseseed=unpack("%32C*",$courseid);
5841: my $num=$symbseed+$nameseed+$domainseed+$courseseed+$namechck+$symbchck;
5842: #&Apache::lonxml::debug("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
5843: #&Apache::lonxml::debug("rndseed :$num:$symb");
1.564 albertel 5844: if ($_64bit) { $num=(($num<<32)>>32); }
1.366 albertel 5845: return $num;
5846: }
5847: }
5848:
5849: sub rndseed_64bit {
5850: my ($symb,$courseid,$domain,$username)=@_;
5851: {
5852: use integer;
5853: my $symbchck=unpack("%32S*",$symb) << 21;
5854: my $symbseed=numval($symb) << 10;
5855: my $namechck=unpack("%32S*",$username);
5856:
5857: my $nameseed=numval($username) << 21;
5858: my $domainseed=unpack("%32S*",$domain) << 10;
5859: my $courseseed=unpack("%32S*",$courseid);
5860:
5861: my $num1=$symbchck+$symbseed+$namechck;
5862: my $num2=$nameseed+$domainseed+$courseseed;
5863: #&Apache::lonxml::debug("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
5864: #&Apache::lonxml::debug("rndseed :$num:$symb");
1.564 albertel 5865: if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
5866: if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
1.366 albertel 5867: return "$num1,$num2";
1.155 albertel 5868: }
1.366 albertel 5869: }
5870:
1.443 albertel 5871: sub rndseed_64bit2 {
5872: my ($symb,$courseid,$domain,$username)=@_;
5873: {
5874: use integer;
5875: # strings need to be an even # of cahracters long, it it is odd the
5876: # last characters gets thrown away
5877: my $symbchck=unpack("%32S*",$symb.' ') << 21;
5878: my $symbseed=numval($symb) << 10;
5879: my $namechck=unpack("%32S*",$username.' ');
5880:
5881: my $nameseed=numval($username) << 21;
1.501 albertel 5882: my $domainseed=unpack("%32S*",$domain.' ') << 10;
5883: my $courseseed=unpack("%32S*",$courseid.' ');
5884:
5885: my $num1=$symbchck+$symbseed+$namechck;
5886: my $num2=$nameseed+$domainseed+$courseseed;
5887: #&Apache::lonxml::debug("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
5888: #&Apache::lonxml::debug("rndseed :$num:$symb");
5889: return "$num1,$num2";
5890: }
5891: }
5892:
5893: sub rndseed_64bit3 {
5894: my ($symb,$courseid,$domain,$username)=@_;
5895: {
5896: use integer;
5897: # strings need to be an even # of cahracters long, it it is odd the
5898: # last characters gets thrown away
5899: my $symbchck=unpack("%32S*",$symb.' ') << 21;
5900: my $symbseed=numval2($symb) << 10;
5901: my $namechck=unpack("%32S*",$username.' ');
5902:
5903: my $nameseed=numval2($username) << 21;
1.443 albertel 5904: my $domainseed=unpack("%32S*",$domain.' ') << 10;
5905: my $courseseed=unpack("%32S*",$courseid.' ');
5906:
5907: my $num1=$symbchck+$symbseed+$namechck;
5908: my $num2=$nameseed+$domainseed+$courseseed;
5909: #&Apache::lonxml::debug("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
1.564 albertel 5910: #&Apache::lonxml::debug("rndseed :$num1:$num2:$_64bit");
5911: if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
5912:
1.503 albertel 5913: return "$num1:$num2";
1.443 albertel 5914: }
5915: }
5916:
1.575 albertel 5917: sub rndseed_64bit4 {
5918: my ($symb,$courseid,$domain,$username)=@_;
5919: {
5920: use integer;
5921: # strings need to be an even # of cahracters long, it it is odd the
5922: # last characters gets thrown away
5923: my $symbchck=unpack("%32S*",$symb.' ') << 21;
5924: my $symbseed=numval3($symb) << 10;
5925: my $namechck=unpack("%32S*",$username.' ');
5926:
5927: my $nameseed=numval3($username) << 21;
5928: my $domainseed=unpack("%32S*",$domain.' ') << 10;
5929: my $courseseed=unpack("%32S*",$courseid.' ');
5930:
5931: my $num1=$symbchck+$symbseed+$namechck;
5932: my $num2=$nameseed+$domainseed+$courseseed;
5933: #&Apache::lonxml::debug("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
5934: #&Apache::lonxml::debug("rndseed :$num1:$num2:$_64bit");
5935: if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
5936:
5937: return "$num1:$num2";
5938: }
5939: }
5940:
1.675 albertel 5941: sub rndseed_64bit5 {
5942: my ($symb,$courseid,$domain,$username)=@_;
5943: my ($num1,$num2)=&digest("$symb,$courseid,$domain,$username");
5944: return "$num1:$num2";
5945: }
5946:
1.366 albertel 5947: sub rndseed_CODE_64bit {
5948: my ($symb,$courseid,$domain,$username)=@_;
1.155 albertel 5949: {
1.366 albertel 5950: use integer;
1.443 albertel 5951: my $symbchck=unpack("%32S*",$symb.' ') << 16;
1.484 albertel 5952: my $symbseed=numval2($symb);
1.491 albertel 5953: my $CODEchck=unpack("%32S*",&getCODE().' ') << 16;
5954: my $CODEseed=numval(&getCODE());
1.443 albertel 5955: my $courseseed=unpack("%32S*",$courseid.' ');
1.484 albertel 5956: my $num1=$symbseed+$CODEchck;
5957: my $num2=$CODEseed+$courseseed+$symbchck;
5958: #&Apache::lonxml::debug("$symbseed:$CODEchck|$CODEseed:$courseseed:$symbchck");
1.366 albertel 5959: #&Apache::lonxml::debug("rndseed :$num1:$num2:$symb");
1.564 albertel 5960: if ($_64bit) { $num1=(($num1<<32)>>32); }
5961: if ($_64bit) { $num2=(($num2<<32)>>32); }
1.503 albertel 5962: return "$num1:$num2";
1.366 albertel 5963: }
5964: }
5965:
1.575 albertel 5966: sub rndseed_CODE_64bit4 {
5967: my ($symb,$courseid,$domain,$username)=@_;
5968: {
5969: use integer;
5970: my $symbchck=unpack("%32S*",$symb.' ') << 16;
5971: my $symbseed=numval3($symb);
5972: my $CODEchck=unpack("%32S*",&getCODE().' ') << 16;
5973: my $CODEseed=numval3(&getCODE());
5974: my $courseseed=unpack("%32S*",$courseid.' ');
5975: my $num1=$symbseed+$CODEchck;
5976: my $num2=$CODEseed+$courseseed+$symbchck;
5977: #&Apache::lonxml::debug("$symbseed:$CODEchck|$CODEseed:$courseseed:$symbchck");
5978: #&Apache::lonxml::debug("rndseed :$num1:$num2:$symb");
5979: if ($_64bit) { $num1=(($num1<<32)>>32); }
5980: if ($_64bit) { $num2=(($num2<<32)>>32); }
5981: return "$num1:$num2";
5982: }
5983: }
5984:
1.675 albertel 5985: sub rndseed_CODE_64bit5 {
5986: my ($symb,$courseid,$domain,$username)=@_;
5987: my $code = &getCODE();
5988: my ($num1,$num2)=&digest("$symb,$courseid,$code");
5989: return "$num1:$num2";
5990: }
5991:
1.366 albertel 5992: sub setup_random_from_rndseed {
5993: my ($rndseed)=@_;
1.503 albertel 5994: if ($rndseed =~/([,:])/) {
5995: my ($num1,$num2)=split(/[,:]/,$rndseed);
1.366 albertel 5996: &Math::Random::random_set_seed(abs($num1),abs($num2));
5997: } else {
5998: &Math::Random::random_set_seed_from_phrase($rndseed);
1.98 albertel 5999: }
1.36 albertel 6000: }
6001:
1.474 albertel 6002: sub latest_receipt_algorithm_id {
6003: return 'receipt2';
6004: }
6005:
1.480 www 6006: sub recunique {
6007: my $fucourseid=shift;
6008: my $unique;
1.620 albertel 6009: if ($env{"course.$fucourseid.receiptalg"} eq 'receipt2') {
6010: $unique=$env{"course.$fucourseid.internal.encseed"};
1.480 www 6011: } else {
6012: $unique=$perlvar{'lonReceipt'};
6013: }
6014: return unpack("%32C*",$unique);
6015: }
6016:
6017: sub recprefix {
6018: my $fucourseid=shift;
6019: my $prefix;
1.620 albertel 6020: if ($env{"course.$fucourseid.receiptalg"} eq 'receipt2') {
6021: $prefix=$env{"course.$fucourseid.internal.encpref"};
1.480 www 6022: } else {
6023: $prefix=$perlvar{'lonHostID'};
6024: }
6025: return unpack("%32C*",$prefix);
6026: }
6027:
1.76 www 6028: sub ireceipt {
1.474 albertel 6029: my ($funame,$fudom,$fucourseid,$fusymb,$part)=@_;
1.76 www 6030: my $cuname=unpack("%32C*",$funame);
6031: my $cudom=unpack("%32C*",$fudom);
6032: my $cucourseid=unpack("%32C*",$fucourseid);
6033: my $cusymb=unpack("%32C*",$fusymb);
1.480 www 6034: my $cunique=&recunique($fucourseid);
1.474 albertel 6035: my $cpart=unpack("%32S*",$part);
1.480 www 6036: my $return =&recprefix($fucourseid).'-';
1.620 albertel 6037: if ($env{"course.$fucourseid.receiptalg"} eq 'receipt2' ||
6038: $env{'request.state'} eq 'construct') {
1.474 albertel 6039: &Apache::lonxml::debug("doing receipt2 using parts $cpart, uname $cuname and udom $cudom gets ".($cpart%$cuname).
6040: " and ".($cpart%$cudom));
6041:
6042: $return.= ($cunique%$cuname+
6043: $cunique%$cudom+
6044: $cusymb%$cuname+
6045: $cusymb%$cudom+
6046: $cucourseid%$cuname+
6047: $cucourseid%$cudom+
6048: $cpart%$cuname+
6049: $cpart%$cudom);
6050: } else {
6051: $return.= ($cunique%$cuname+
6052: $cunique%$cudom+
6053: $cusymb%$cuname+
6054: $cusymb%$cudom+
6055: $cucourseid%$cuname+
6056: $cucourseid%$cudom);
6057: }
6058: return $return;
1.76 www 6059: }
6060:
6061: sub receipt {
1.474 albertel 6062: my ($part)=@_;
6063: my ($symb,$courseid,$domain,$name) = &Apache::lonxml::whichuser();
6064: return &ireceipt($name,$domain,$courseid,$symb,$part);
1.76 www 6065: }
1.260 ng 6066:
1.36 albertel 6067: # ------------------------------------------------------------ Serves up a file
1.472 albertel 6068: # returns either the contents of the file or
6069: # -1 if the file doesn't exist
1.481 raeburn 6070: #
6071: # if the target is a file that was uploaded via DOCS,
6072: # a check will be made to see if a current copy exists on the local server,
6073: # if it does this will be served, otherwise a copy will be retrieved from
6074: # the home server for the course and stored in /home/httpd/html/userfiles on
6075: # the local server.
1.472 albertel 6076:
1.36 albertel 6077: sub getfile {
1.538 albertel 6078: my ($file) = @_;
1.609 banghart 6079: if ($file =~ m -^/*(uploaded|editupload)/-) { $file=&filelocation("",$file); }
1.538 albertel 6080: &repcopy($file);
6081: return &readfile($file);
6082: }
6083:
6084: sub repcopy_userfile {
6085: my ($file)=@_;
1.609 banghart 6086: if ($file =~ m -^/*(uploaded|editupload)/-) { $file=&filelocation("",$file); }
1.610 albertel 6087: if ($file =~ m|^/home/httpd/html/lonUsers/|) { return 'ok'; }
1.538 albertel 6088: my ($cdom,$cnum,$filename) =
6089: ($file=~m|^\Q$perlvar{'lonDocRoot'}\E/+userfiles/+([^/]+)/+([^/]+)/+(.*)|);
6090: my ($info,$rtncode);
6091: my $uri="/uploaded/$cdom/$cnum/$filename";
6092: if (-e "$file") {
6093: my @fileinfo = stat($file);
6094: my $lwpresp = &getuploaded('HEAD',$uri,$cdom,$cnum,\$info,\$rtncode);
1.482 albertel 6095: if ($lwpresp ne 'ok') {
6096: if ($rtncode eq '404') {
1.538 albertel 6097: unlink($file);
1.482 albertel 6098: }
1.517 albertel 6099: #my $ua=new LWP::UserAgent;
1.538 albertel 6100: #my $request=new HTTP::Request('GET',&tokenwrapper($uri));
1.517 albertel 6101: #my $response=$ua->request($request);
6102: #if ($response->is_success()) {
6103: # return $response->content;
6104: # } else {
6105: # return -1;
6106: # }
1.482 albertel 6107: return -1;
6108: }
6109: if ($info < $fileinfo[9]) {
1.607 raeburn 6110: return 'ok';
1.482 albertel 6111: }
6112: $info = '';
1.538 albertel 6113: $lwpresp = &getuploaded('GET',$uri,$cdom,$cnum,\$info,\$rtncode);
1.482 albertel 6114: if ($lwpresp ne 'ok') {
6115: return -1;
6116: }
6117: } else {
1.538 albertel 6118: my $lwpresp = &getuploaded('GET',$uri,$cdom,$cnum,\$info,\$rtncode);
1.482 albertel 6119: if ($lwpresp ne 'ok') {
1.517 albertel 6120: my $ua=new LWP::UserAgent;
1.538 albertel 6121: my $request=new HTTP::Request('GET',&tokenwrapper($uri));
1.517 albertel 6122: my $response=$ua->request($request);
6123: if ($response->is_success()) {
1.538 albertel 6124: $info=$response->content;
1.517 albertel 6125: } else {
6126: return -1;
6127: }
1.482 albertel 6128: }
6129: my @parts = ($cdom,$cnum);
6130: if ($filename =~ m|^(.+)/[^/]+$|) {
6131: push @parts, split(/\//,$1);
1.518 albertel 6132: }
1.538 albertel 6133: my $path = $perlvar{'lonDocRoot'}.'/userfiles';
1.482 albertel 6134: foreach my $part (@parts) {
6135: $path .= '/'.$part;
6136: if (!-e $path) {
6137: mkdir($path,0770);
6138: }
6139: }
6140: }
1.538 albertel 6141: open(FILE,">$file");
1.482 albertel 6142: print FILE $info;
6143: close(FILE);
1.607 raeburn 6144: return 'ok';
1.481 raeburn 6145: }
6146:
1.517 albertel 6147: sub tokenwrapper {
6148: my $uri=shift;
1.552 albertel 6149: $uri=~s|^http\://([^/]+)||;
6150: $uri=~s|^/||;
1.620 albertel 6151: $env{'user.environment'}=~/\/([^\/]+)\.id/;
1.517 albertel 6152: my $token=$1;
1.552 albertel 6153: my (undef,$udom,$uname,$file)=split('/',$uri,4);
6154: if ($udom && $uname && $file) {
6155: $file=~s|(\?\.*)*$||;
1.620 albertel 6156: &appenv("userfile.$udom/$uname/$file" => $env{'request.course.id'});
1.552 albertel 6157: return 'http://'.$hostname{ &homeserver($uname,$udom)}.'/'.$uri.
1.517 albertel 6158: (($uri=~/\?/)?'&':'?').'token='.$token.
6159: '&tokenissued='.$perlvar{'lonHostID'};
6160: } else {
6161: return '/adm/notfound.html';
6162: }
6163: }
6164:
1.481 raeburn 6165: sub getuploaded {
6166: my ($reqtype,$uri,$cdom,$cnum,$info,$rtncode) = @_;
6167: $uri=~s/^\///;
6168: $uri = 'http://'.$hostname{ &homeserver($cnum,$cdom)}.'/raw/'.$uri;
6169: my $ua=new LWP::UserAgent;
6170: my $request=new HTTP::Request($reqtype,$uri);
6171: my $response=$ua->request($request);
6172: $$rtncode = $response->code;
1.482 albertel 6173: if (! $response->is_success()) {
6174: return 'failed';
6175: }
6176: if ($reqtype eq 'HEAD') {
1.486 www 6177: $$info = &HTTP::Date::str2time( $response->header('Last-modified') );
1.482 albertel 6178: } elsif ($reqtype eq 'GET') {
6179: $$info = $response->content;
1.472 albertel 6180: }
1.482 albertel 6181: return 'ok';
1.36 albertel 6182: }
6183:
1.481 raeburn 6184: sub readfile {
6185: my $file = shift;
6186: if ( (! -e $file ) || ($file eq '') ) { return -1; };
6187: my $fh;
6188: open($fh,"<$file");
6189: my $a='';
6190: while (<$fh>) { $a .=$_; }
6191: return $a;
6192: }
6193:
1.36 albertel 6194: sub filelocation {
1.590 banghart 6195: my ($dir,$file) = @_;
6196: my $location;
6197: $file=~ s/^\s*(\S+)\s*$/$1/; ## strip off leading and trailing spaces
1.700 albertel 6198:
6199: if ($file =~ m-^/adm/-) {
6200: $file=~s-^/adm/wrapper/-/-;
6201: $file=~s-^/adm/coursedocs/showdoc/-/-;
6202: }
1.590 banghart 6203: if ($file=~m:^/~:) { # is a contruction space reference
6204: $location = $file;
6205: $location =~ s:/~(.*?)/(.*):/home/$1/public_html/$2:;
1.649 albertel 6206: } elsif ($file=~m:^/home/[^/]*/public_html/:) {
6207: # is a correct contruction space reference
6208: $location = $file;
1.609 banghart 6209: } elsif ($file=~/^\/*(uploaded|editupload)/) { # is an uploaded file
1.590 banghart 6210: my ($udom,$uname,$filename)=
1.609 banghart 6211: ($file=~m -^/+(?:uploaded|editupload)/+([^/]+)/+([^/]+)/+(.*)$-);
1.590 banghart 6212: my $home=&homeserver($uname,$udom);
6213: my $is_me=0;
6214: my @ids=¤t_machine_ids();
6215: foreach my $id (@ids) { if ($id eq $home) { $is_me=1; } }
6216: if ($is_me) {
6217: $location=&Apache::loncommon::propath($udom,$uname).
6218: '/userfiles/'.$filename;
6219: } else {
6220: $location=$Apache::lonnet::perlvar{'lonDocRoot'}.'/userfiles/'.
6221: $udom.'/'.$uname.'/'.$filename;
6222: }
6223: } else {
6224: $file=~s/^\Q$perlvar{'lonDocRoot'}\E//;
6225: $file=~s:^/res/:/:;
6226: if ( !( $file =~ m:^/:) ) {
6227: $location = $dir. '/'.$file;
6228: } else {
6229: $location = '/home/httpd/html/res'.$file;
6230: }
1.59 albertel 6231: }
1.590 banghart 6232: $location=~s://+:/:g; # remove duplicate /
6233: while ($location=~m:/\.\./:) {$location=~ s:/[^/]+/\.\./:/:g;} #remove dir/..
6234: while ($location=~m:/\./:) {$location=~ s:/\./:/:g;} #remove /./
6235: return $location;
1.46 www 6236: }
1.36 albertel 6237:
1.46 www 6238: sub hreflocation {
6239: my ($dir,$file)=@_;
1.460 albertel 6240: unless (($file=~m-^http://-i) || ($file=~m-^/-)) {
1.666 albertel 6241: $file=filelocation($dir,$file);
1.700 albertel 6242: } elsif ($file=~m-^/adm/-) {
6243: $file=~s-^/adm/wrapper/-/-;
6244: $file=~s-^/adm/coursedocs/showdoc/-/-;
1.666 albertel 6245: }
6246: if ($file=~m-^\Q$perlvar{'lonDocRoot'}\E-) {
6247: $file=~s-^\Q$perlvar{'lonDocRoot'}\E--;
6248: } elsif ($file=~m-/home/(\w+)/public_html/-) {
1.462 albertel 6249: $file=~s-^/home/(\w+)/public_html/-/~$1/-;
1.666 albertel 6250: } elsif ($file=~m-^\Q$perlvar{'lonUsersDir'}\E-) {
6251: $file=~s-^/home/httpd/lonUsers/([^/]*)/./././([^/]*)/userfiles/
6252: -/uploaded/$1/$2/-x;
1.46 www 6253: }
1.462 albertel 6254: return $file;
1.465 albertel 6255: }
6256:
6257: sub current_machine_domains {
6258: my $hostname=$hostname{$perlvar{'lonHostID'}};
6259: my @domains;
6260: while( my($id, $name) = each(%hostname)) {
1.467 matthew 6261: # &logthis("-$id-$name-$hostname-");
1.465 albertel 6262: if ($hostname eq $name) {
6263: push(@domains,$hostdom{$id});
6264: }
6265: }
6266: return @domains;
6267: }
6268:
6269: sub current_machine_ids {
6270: my $hostname=$hostname{$perlvar{'lonHostID'}};
6271: my @ids;
6272: while( my($id, $name) = each(%hostname)) {
1.467 matthew 6273: # &logthis("-$id-$name-$hostname-");
1.465 albertel 6274: if ($hostname eq $name) {
6275: push(@ids,$id);
6276: }
6277: }
6278: return @ids;
1.31 www 6279: }
6280:
6281: # ------------------------------------------------------------- Declutters URLs
6282:
6283: sub declutter {
6284: my $thisfn=shift;
1.569 albertel 6285: if ($thisfn=~m|^/enc/|) { $thisfn=&Apache::lonenc::unencrypted($thisfn); }
1.479 albertel 6286: $thisfn=~s/^\Q$perlvar{'lonDocRoot'}\E//;
1.31 www 6287: $thisfn=~s/^\///;
1.697 albertel 6288: $thisfn=~s|^adm/wrapper/||;
6289: $thisfn=~s|^adm/coursedocs/showdoc/||;
1.31 www 6290: $thisfn=~s/^res\///;
1.235 www 6291: $thisfn=~s/\?.+$//;
1.268 www 6292: return $thisfn;
6293: }
6294:
6295: # ------------------------------------------------------------- Clutter up URLs
6296:
6297: sub clutter {
6298: my $thisfn='/'.&declutter(shift);
1.609 banghart 6299: unless ($thisfn=~/^\/(uploaded|editupload|adm|userfiles|ext|raw|priv|public)\//) {
1.270 www 6300: $thisfn='/res'.$thisfn;
6301: }
1.694 albertel 6302: if ($thisfn !~m|/adm|) {
1.695 albertel 6303: if ($thisfn =~ m|/ext/|) {
1.694 albertel 6304: $thisfn='/adm/wrapper'.$thisfn;
1.695 albertel 6305: } else {
6306: my ($ext) = ($thisfn =~ /\.(\w+)$/);
6307: my $embstyle=&Apache::loncommon::fileembstyle($ext);
1.698 albertel 6308: if ($embstyle eq 'ssi'
6309: || ($embstyle eq 'hdn')
6310: || ($embstyle eq 'rat')
6311: || ($embstyle eq 'prv')
6312: || ($embstyle eq 'ign')) {
6313: #do nothing with these
6314: } elsif (($embstyle eq 'img')
1.695 albertel 6315: || ($embstyle eq 'emb')
6316: || ($embstyle eq 'wrp')) {
6317: $thisfn='/adm/wrapper'.$thisfn;
1.698 albertel 6318: } elsif ($embstyle eq 'unk'
6319: && $thisfn!~/\.(sequence|page)$/) {
1.695 albertel 6320: $thisfn='/adm/coursedocs/showdoc'.$thisfn;
1.698 albertel 6321: } else {
6322: &logthis("Got a blank emb style");
1.695 albertel 6323: }
1.694 albertel 6324: }
6325: }
1.31 www 6326: return $thisfn;
1.12 www 6327: }
6328:
1.557 albertel 6329: sub freeze_escape {
6330: my ($value)=@_;
6331: if (ref($value)) {
6332: $value=&nfreeze($value);
6333: return '__FROZEN__'.&escape($value);
6334: }
6335: return &escape($value);
6336: }
6337:
1.12 www 6338: # -------------------------------------------------------- Escape Special Chars
6339:
6340: sub escape {
6341: my $str=shift;
6342: $str =~ s/(\W)/"%".unpack('H2',$1)/eg;
6343: return $str;
6344: }
6345:
6346: # ----------------------------------------------------- Un-Escape Special Chars
6347:
6348: sub unescape {
6349: my $str=shift;
6350: $str =~ s/%([a-fA-F0-9][a-fA-F0-9])/pack("C",hex($1))/eg;
6351: return $str;
6352: }
1.11 www 6353:
1.557 albertel 6354: sub thaw_unescape {
6355: my ($value)=@_;
6356: if ($value =~ /^__FROZEN__/) {
6357: substr($value,0,10,undef);
6358: $value=&unescape($value);
6359: return &thaw($value);
6360: }
6361: return &unescape($value);
6362: }
6363:
1.436 albertel 6364: sub correct_line_ends {
6365: my ($result)=@_;
6366: $$result =~s/\r\n/\n/mg;
6367: $$result =~s/\r/\n/mg;
1.415 albertel 6368: }
1.1 albertel 6369: # ================================================================ Main Program
6370:
1.184 www 6371: sub goodbye {
1.204 albertel 6372: &logthis("Starting Shut down");
1.443 albertel 6373: #not converted to using infrastruture and probably shouldn't be
1.599 albertel 6374: &logthis(sprintf("%-20s is %s",'%badServerCache',length(&freeze(\%badServerCache))));
1.443 albertel 6375: #converted
1.599 albertel 6376: # &logthis(sprintf("%-20s is %s",'%metacache',scalar(%metacache)));
6377: &logthis(sprintf("%-20s is %s",'%homecache',length(&freeze(\%homecache))));
6378: # &logthis(sprintf("%-20s is %s",'%titlecache',length(&freeze(\%titlecache))));
6379: # &logthis(sprintf("%-20s is %s",'%courseresdatacache',length(&freeze(\%courseresdatacache))));
1.425 albertel 6380: #1.1 only
1.599 albertel 6381: # &logthis(sprintf("%-20s is %s",'%userresdatacache',length(&freeze(\%userresdatacache))));
6382: # &logthis(sprintf("%-20s is %s",'%getsectioncache',length(&freeze(\%getsectioncache))));
6383: # &logthis(sprintf("%-20s is %s",'%courseresversioncache',length(&freeze(\%courseresversioncache))));
6384: # &logthis(sprintf("%-20s is %s",'%resversioncache',length(&freeze(\%resversioncache))));
6385: &logthis(sprintf("%-20s is %s",'%remembered',length(&freeze(\%remembered))));
6386: &logthis(sprintf("%-20s is %s",'kicks',$kicks));
6387: &logthis(sprintf("%-20s is %s",'hits',$hits));
1.184 www 6388: &flushcourselogs();
6389: &logthis("Shutting down");
1.362 albertel 6390: return DONE;
1.184 www 6391: }
6392:
1.179 www 6393: BEGIN {
1.228 harris41 6394: # ----------------------------------- Read loncapa.conf and loncapa_apache.conf
1.195 www 6395: unless ($readit) {
1.217 harris41 6396: {
1.581 matthew 6397: # FIXME: Use LONCAPA::Configuration::read_conf here and omit next block
1.448 albertel 6398: open(my $config,"</etc/httpd/conf/loncapa.conf");
1.217 harris41 6399:
6400: while (my $configline=<$config>) {
1.484 albertel 6401: if ($configline=~/\S/ && $configline =~ /^[^\#]*PerlSetVar/) {
1.1 albertel 6402: my ($dummy,$varname,$varvalue)=split(/\s+/,$configline);
1.8 www 6403: chomp($varvalue);
1.1 albertel 6404: $perlvar{$varname}=$varvalue;
6405: }
6406: }
1.448 albertel 6407: close($config);
1.1 albertel 6408: }
1.227 harris41 6409: {
1.448 albertel 6410: open(my $config,"</etc/httpd/conf/loncapa_apache.conf");
1.227 harris41 6411:
6412: while (my $configline=<$config>) {
6413: if ($configline =~ /^[^\#]*PerlSetVar/) {
6414: my ($dummy,$varname,$varvalue)=split(/\s+/,$configline);
6415: chomp($varvalue);
6416: $perlvar{$varname}=$varvalue;
6417: }
6418: }
1.448 albertel 6419: close($config);
1.227 harris41 6420: }
1.1 albertel 6421:
1.327 albertel 6422: # ------------------------------------------------------------ Read domain file
6423: {
6424: %domaindescription = ();
6425: %domain_auth_def = ();
6426: %domain_auth_arg_def = ();
1.448 albertel 6427: my $fh;
6428: if (open($fh,"<".$Apache::lonnet::perlvar{'lonTabDir'}.'/domain.tab')) {
1.327 albertel 6429: while (<$fh>) {
1.390 matthew 6430: next if (/^(\#|\s*$)/);
6431: # next if /^\#/;
1.327 albertel 6432: chomp;
1.403 www 6433: my ($domain, $domain_description, $def_auth, $def_auth_arg,
1.685 raeburn 6434: $def_lang, $city, $longi, $lati, $primary) = split(/:/,$_);
1.403 www 6435: $domain_auth_def{$domain}=$def_auth;
1.327 albertel 6436: $domain_auth_arg_def{$domain}=$def_auth_arg;
1.403 www 6437: $domaindescription{$domain}=$domain_description;
6438: $domain_lang_def{$domain}=$def_lang;
6439: $domain_city{$domain}=$city;
6440: $domain_longi{$domain}=$longi;
6441: $domain_lati{$domain}=$lati;
1.685 raeburn 6442: $domain_primary{$domain}=$primary;
1.403 www 6443:
1.448 albertel 6444: # &logthis("Domain.tab: $domain, $domain_auth_def{$domain}, $domain_auth_arg_def{$domain},$domaindescription{$domain}");
1.327 albertel 6445: # &logthis("Domain.tab: $domain ".$domaindescription{$domain} );
1.448 albertel 6446: }
1.327 albertel 6447: }
1.448 albertel 6448: close ($fh);
1.327 albertel 6449: }
6450:
6451:
1.1 albertel 6452: # ------------------------------------------------------------- Read hosts file
6453: {
1.448 albertel 6454: open(my $config,"<$perlvar{'lonTabDir'}/hosts.tab");
1.1 albertel 6455:
6456: while (my $configline=<$config>) {
1.303 matthew 6457: next if ($configline =~ /^(\#|\s*$)/);
1.154 www 6458: chomp($configline);
1.595 albertel 6459: my ($id,$domain,$role,$name)=split(/:/,$configline);
1.597 albertel 6460: $name=~s/\s//g;
1.595 albertel 6461: if ($id && $domain && $role && $name) {
1.252 albertel 6462: $hostname{$id}=$name;
6463: $hostdom{$id}=$domain;
6464: if ($role eq 'library') { $libserv{$id}=$name; }
1.245 www 6465: }
1.1 albertel 6466: }
1.448 albertel 6467: close($config);
1.619 albertel 6468: # FIXME: dev server don't want this, production servers _do_ want this
1.654 albertel 6469: #&get_iphost();
1.1 albertel 6470: }
6471:
1.598 albertel 6472: sub get_iphost {
6473: if (%iphost) { return %iphost; }
1.653 albertel 6474: my %name_to_ip;
1.598 albertel 6475: foreach my $id (keys(%hostname)) {
6476: my $name=$hostname{$id};
1.653 albertel 6477: my $ip;
6478: if (!exists($name_to_ip{$name})) {
6479: $ip = gethostbyname($name);
6480: if (!$ip || length($ip) ne 4) {
6481: &logthis("Skipping host $id name $name no IP found\n");
6482: next;
6483: }
6484: $ip=inet_ntoa($ip);
6485: $name_to_ip{$name} = $ip;
6486: } else {
6487: $ip = $name_to_ip{$name};
1.598 albertel 6488: }
6489: push(@{$iphost{$ip}},$id);
6490: }
6491: return %iphost;
6492: }
6493:
1.1 albertel 6494: # ------------------------------------------------------ Read spare server file
6495: {
1.448 albertel 6496: open(my $config,"<$perlvar{'lonTabDir'}/spare.tab");
1.1 albertel 6497:
6498: while (my $configline=<$config>) {
6499: chomp($configline);
1.284 matthew 6500: if ($configline) {
1.1 albertel 6501: $spareid{$configline}=1;
6502: }
6503: }
1.448 albertel 6504: close($config);
1.1 albertel 6505: }
1.11 www 6506: # ------------------------------------------------------------ Read permissions
6507: {
1.448 albertel 6508: open(my $config,"<$perlvar{'lonTabDir'}/roles.tab");
1.11 www 6509:
6510: while (my $configline=<$config>) {
1.448 albertel 6511: chomp($configline);
6512: if ($configline) {
6513: my ($role,$perm)=split(/ /,$configline);
6514: if ($perm ne '') { $pr{$role}=$perm; }
6515: }
1.11 www 6516: }
1.448 albertel 6517: close($config);
1.11 www 6518: }
6519:
6520: # -------------------------------------------- Read plain texts for permissions
6521: {
1.448 albertel 6522: open(my $config,"<$perlvar{'lonTabDir'}/rolesplain.tab");
1.11 www 6523:
6524: while (my $configline=<$config>) {
1.448 albertel 6525: chomp($configline);
6526: if ($configline) {
6527: my ($short,$plain)=split(/:/,$configline);
6528: if ($plain ne '') { $prp{$short}=$plain; }
6529: }
1.135 www 6530: }
1.448 albertel 6531: close($config);
1.135 www 6532: }
6533:
6534: # ---------------------------------------------------------- Read package table
6535: {
1.448 albertel 6536: open(my $config,"<$perlvar{'lonTabDir'}/packages.tab");
1.135 www 6537:
6538: while (my $configline=<$config>) {
1.483 albertel 6539: if ($configline !~ /\S/ || $configline=~/^#/) { next; }
1.448 albertel 6540: chomp($configline);
6541: my ($short,$plain)=split(/:/,$configline);
6542: my ($pack,$name)=split(/\&/,$short);
6543: if ($plain ne '') {
6544: $packagetab{$pack.'&'.$name.'&name'}=$name;
6545: $packagetab{$short}=$plain;
6546: }
1.11 www 6547: }
1.448 albertel 6548: close($config);
1.329 matthew 6549: }
6550:
6551: # ------------- set up temporary directory
6552: {
6553: $tmpdir = $perlvar{'lonDaemons'}.'/tmp/';
6554:
1.11 www 6555: }
6556:
1.599 albertel 6557: $memcache=new Cache::Memcached({'servers'=>['127.0.0.1:11211']});
1.185 www 6558:
1.281 www 6559: $processmarker='_'.time.'_'.$perlvar{'lonHostID'};
1.186 www 6560: $dumpcount=0;
1.22 www 6561:
1.163 harris41 6562: &logtouch();
1.672 albertel 6563: &logthis('<font color="yellow">INFO: Read configuration</font>');
1.195 www 6564: $readit=1;
1.564 albertel 6565: {
6566: use integer;
6567: my $test=(2**32)+1;
1.568 albertel 6568: if ($test != 0) { $_64bit=1; } else { $_64bit=0; }
1.564 albertel 6569: &logthis(" Detected 64bit platform ($_64bit)");
6570: }
1.195 www 6571: }
1.1 albertel 6572: }
1.179 www 6573:
1.1 albertel 6574: 1;
1.191 harris41 6575: __END__
6576:
1.243 albertel 6577: =pod
6578:
1.191 harris41 6579: =head1 NAME
6580:
1.243 albertel 6581: Apache::lonnet - Subroutines to ask questions about things in the network.
1.191 harris41 6582:
6583: =head1 SYNOPSIS
6584:
1.243 albertel 6585: Invoked by other LON-CAPA modules, when they need to talk to or about objects in the network.
1.191 harris41 6586:
6587: &Apache::lonnet::SUBROUTINENAME(ARGUMENTS);
6588:
1.243 albertel 6589: Common parameters:
6590:
6591: =over 4
6592:
6593: =item *
6594:
6595: $uname : an internal username (if $cname expecting a course Id specifically)
6596:
6597: =item *
6598:
6599: $udom : a domain (if $cdom expecting a course's domain specifically)
6600:
6601: =item *
6602:
6603: $symb : a resource instance identifier
6604:
6605: =item *
6606:
6607: $namespace : the name of a .db file that contains the data needed or
6608: being set.
6609:
6610: =back
6611:
1.394 bowersj2 6612: =head1 OVERVIEW
1.191 harris41 6613:
1.394 bowersj2 6614: lonnet provides subroutines which interact with the
6615: lonc/lond (TCP) network layer of LON-CAPA. They can be used to ask
6616: about classes, users, and resources.
1.243 albertel 6617:
6618: For many of these objects you can also use this to store data about
6619: them or modify them in various ways.
1.191 harris41 6620:
1.394 bowersj2 6621: =head2 Symbs
1.191 harris41 6622:
1.394 bowersj2 6623: To identify a specific instance of a resource, LON-CAPA uses symbols
6624: or "symbs"X<symb>. These identifiers are built from the URL of the
6625: map, the resource number of the resource in the map, and the URL of
6626: the resource itself. The latter is somewhat redundant, but might help
6627: if maps change.
6628:
6629: An example is
6630:
6631: msu/korte/parts/part1.sequence___19___msu/korte/tests/part12.problem
6632:
6633: The respective map entry is
6634:
6635: <resource id="19" src="/res/msu/korte/tests/part12.problem"
6636: title="Problem 2">
6637: </resource>
6638:
6639: Symbs are used by the random number generator, as well as to store and
6640: restore data specific to a certain instance of for example a problem.
6641:
6642: =head2 Storing And Retrieving Data
6643:
6644: X<store()>X<cstore()>X<restore()>Three of the most important functions
6645: in C<lonnet.pm> are C<&Apache::lonnet::cstore()>,
6646: C<&Apache::lonnet:restore()>, and C<&Apache::lonnet::store()>, which
6647: is is the non-critical message twin of cstore. These functions are for
6648: handlers to store a perl hash to a user's permanent data space in an
6649: easy manner, and to retrieve it again on another call. It is expected
6650: that a handler would use this once at the beginning to retrieve data,
6651: and then again once at the end to send only the new data back.
6652:
6653: The data is stored in the user's data directory on the user's
6654: homeserver under the ID of the course.
6655:
6656: The hash that is returned by restore will have all of the previous
6657: value for all of the elements of the hash.
6658:
6659: Example:
6660:
6661: #creating a hash
6662: my %hash;
6663: $hash{'foo'}='bar';
6664:
6665: #storing it
6666: &Apache::lonnet::cstore(\%hash);
6667:
6668: #changing a value
6669: $hash{'foo'}='notbar';
6670:
6671: #adding a new value
6672: $hash{'bar'}='foo';
6673: &Apache::lonnet::cstore(\%hash);
6674:
6675: #retrieving the hash
6676: my %history=&Apache::lonnet::restore();
6677:
6678: #print the hash
6679: foreach my $key (sort(keys(%history))) {
6680: print("\%history{$key} = $history{$key}");
6681: }
6682:
6683: Will print out:
1.191 harris41 6684:
1.394 bowersj2 6685: %history{1:foo} = bar
6686: %history{1:keys} = foo:timestamp
6687: %history{1:timestamp} = 990455579
6688: %history{2:bar} = foo
6689: %history{2:foo} = notbar
6690: %history{2:keys} = foo:bar:timestamp
6691: %history{2:timestamp} = 990455580
6692: %history{bar} = foo
6693: %history{foo} = notbar
6694: %history{timestamp} = 990455580
6695: %history{version} = 2
6696:
6697: Note that the special hash entries C<keys>, C<version> and
6698: C<timestamp> were added to the hash. C<version> will be equal to the
6699: total number of versions of the data that have been stored. The
6700: C<timestamp> attribute will be the UNIX time the hash was
6701: stored. C<keys> is available in every historical section to list which
6702: keys were added or changed at a specific historical revision of a
6703: hash.
6704:
6705: B<Warning>: do not store the hash that restore returns directly. This
6706: will cause a mess since it will restore the historical keys as if the
6707: were new keys. I.E. 1:foo will become 1:1:foo etc.
1.191 harris41 6708:
1.394 bowersj2 6709: Calling convention:
1.191 harris41 6710:
1.394 bowersj2 6711: my %record=&Apache::lonnet::restore($symb,$courseid,$domain,$uname,$home);
6712: &Apache::lonnet::cstore(\%newrecord,$symb,$courseid,$domain,$uname,$home);
1.191 harris41 6713:
1.394 bowersj2 6714: For more detailed information, see lonnet specific documentation.
1.191 harris41 6715:
1.394 bowersj2 6716: =head1 RETURN MESSAGES
1.191 harris41 6717:
1.394 bowersj2 6718: =over 4
1.191 harris41 6719:
1.394 bowersj2 6720: =item * B<con_lost>: unable to contact remote host
1.191 harris41 6721:
1.394 bowersj2 6722: =item * B<con_delayed>: unable to contact remote host, message will be delivered
6723: when the connection is brought back up
1.191 harris41 6724:
1.394 bowersj2 6725: =item * B<con_failed>: unable to contact remote host and unable to save message
6726: for later delivery
1.191 harris41 6727:
1.394 bowersj2 6728: =item * B<error:>: an error a occured, a description of the error follows the :
1.191 harris41 6729:
1.394 bowersj2 6730: =item * B<no_such_host>: unable to fund a host associated with the user/domain
1.243 albertel 6731: that was requested
1.191 harris41 6732:
1.243 albertel 6733: =back
1.191 harris41 6734:
1.243 albertel 6735: =head1 PUBLIC SUBROUTINES
1.191 harris41 6736:
1.243 albertel 6737: =head2 Session Environment Functions
1.191 harris41 6738:
1.243 albertel 6739: =over 4
1.191 harris41 6740:
1.394 bowersj2 6741: =item *
6742: X<appenv()>
6743: B<appenv(%hash)>: the value of %hash is written to
6744: the user envirnoment file, and will be restored for each access this
1.620 albertel 6745: user makes during this session, also modifies the %env for the current
1.394 bowersj2 6746: process
1.191 harris41 6747:
6748: =item *
1.394 bowersj2 6749: X<delenv()>
6750: B<delenv($regexp)>: removes all items from the session
6751: environment file that matches the regular expression in $regexp. The
1.620 albertel 6752: values are also delted from the current processes %env.
1.191 harris41 6753:
1.243 albertel 6754: =back
6755:
6756: =head2 User Information
1.191 harris41 6757:
1.243 albertel 6758: =over 4
1.191 harris41 6759:
6760: =item *
1.394 bowersj2 6761: X<queryauthenticate()>
6762: B<queryauthenticate($uname,$udom)>: try to determine user's current
1.191 harris41 6763: authentication scheme
6764:
6765: =item *
1.394 bowersj2 6766: X<authenticate()>
6767: B<authenticate($uname,$upass,$udom)>: try to
6768: authenticate user from domain's lib servers (first use the current
6769: one). C<$upass> should be the users password.
1.191 harris41 6770:
6771: =item *
1.394 bowersj2 6772: X<homeserver()>
6773: B<homeserver($uname,$udom)>: find the server which has
6774: the user's directory and files (there must be only one), this caches
6775: the answer, and also caches if there is a borken connection.
1.191 harris41 6776:
6777: =item *
1.394 bowersj2 6778: X<idget()>
6779: B<idget($udom,@ids)>: find the usernames behind a list of IDs
6780: (IDs are a unique resource in a domain, there must be only 1 ID per
6781: username, and only 1 username per ID in a specific domain) (returns
6782: hash: id=>name,id=>name)
1.191 harris41 6783:
6784: =item *
1.394 bowersj2 6785: X<idrget()>
6786: B<idrget($udom,@unames)>: find the IDs behind a list of
6787: usernames (returns hash: name=>id,name=>id)
1.191 harris41 6788:
6789: =item *
1.394 bowersj2 6790: X<idput()>
6791: B<idput($udom,%ids)>: store away a list of names and associated IDs
1.191 harris41 6792:
6793: =item *
1.394 bowersj2 6794: X<rolesinit()>
6795: B<rolesinit($udom,$username,$authhost)>: get user privileges
1.243 albertel 6796:
6797: =item *
1.551 albertel 6798: X<getsection()>
6799: B<getsection($udom,$uname,$cname)>: finds the section of student in the
1.243 albertel 6800: course $cname, return section name/number or '' for "not in course"
6801: and '-1' for "no section"
6802:
6803: =item *
1.394 bowersj2 6804: X<userenvironment()>
6805: B<userenvironment($udom,$uname,@what)>: gets the values of the keys
1.243 albertel 6806: passed in @what from the requested user's environment, returns a hash
6807:
6808: =back
6809:
6810: =head2 User Roles
6811:
6812: =over 4
6813:
6814: =item *
6815:
6816: allowed($priv,$uri) : check for a user privilege; returns codes for allowed
6817: actions
6818: F: full access
6819: U,I,K: authentication modes (cxx only)
6820: '': forbidden
6821: 1: user needs to choose course
6822: 2: browse allowed
6823:
6824: =item *
6825:
6826: definerole($rolename,$sysrole,$domrole,$courole) : define role; define a custom
6827: role rolename set privileges in format of lonTabs/roles.tab for system, domain,
6828: and course level
6829:
6830: =item *
6831:
6832: plaintext($short) : return value in %prp hash (rolesplain.tab); plain text
6833: explanation of a user role term
6834:
6835: =back
6836:
6837: =head2 User Modification
6838:
6839: =over 4
6840:
6841: =item *
6842:
6843: assignrole($udom,$uname,$url,$role,$end,$start) : assign role; give a role to a
6844: user for the level given by URL. Optional start and end dates (leave empty
6845: string or zero for "no date")
1.191 harris41 6846:
6847: =item *
6848:
1.243 albertel 6849: changepass($uname,$udom,$currentpass,$newpass,$server) : attempts to
6850: change a users, password, possible return values are: ok,
6851: pwchange_failure, non_authorized, auth_mode_error, unknown_user,
6852: refused
1.191 harris41 6853:
6854: =item *
6855:
1.243 albertel 6856: modifyuserauth($udom,$uname,$umode,$upass) : modify user authentication
1.191 harris41 6857:
6858: =item *
6859:
1.243 albertel 6860: modifyuser($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene) :
6861: modify user
1.191 harris41 6862:
6863: =item *
6864:
1.286 matthew 6865: modifystudent
6866:
6867: modify a students enrollment and identification information.
6868: The course id is resolved based on the current users environment.
6869: This means the envoking user must be a course coordinator or otherwise
6870: associated with a course.
6871:
1.297 matthew 6872: This call is essentially a wrapper for lonnet::modifyuser and
6873: lonnet::modify_student_enrollment
1.286 matthew 6874:
6875: Inputs:
6876:
6877: =over 4
6878:
6879: =item B<$udom> Students loncapa domain
6880:
6881: =item B<$uname> Students loncapa login name
6882:
6883: =item B<$uid> Students id/student number
6884:
6885: =item B<$umode> Students authentication mode
6886:
6887: =item B<$upass> Students password
6888:
6889: =item B<$first> Students first name
6890:
6891: =item B<$middle> Students middle name
6892:
6893: =item B<$last> Students last name
6894:
6895: =item B<$gene> Students generation
6896:
6897: =item B<$usec> Students section in course
6898:
6899: =item B<$end> Unix time of the roles expiration
6900:
6901: =item B<$start> Unix time of the roles start date
6902:
6903: =item B<$forceid> If defined, allow $uid to be changed
6904:
6905: =item B<$desiredhome> server to use as home server for student
6906:
6907: =back
1.297 matthew 6908:
6909: =item *
6910:
6911: modify_student_enrollment
6912:
6913: Change a students enrollment status in a class. The environment variable
6914: 'role.request.course' must be defined for this function to proceed.
6915:
6916: Inputs:
6917:
6918: =over 4
6919:
6920: =item $udom, students domain
6921:
6922: =item $uname, students name
6923:
6924: =item $uid, students user id
6925:
6926: =item $first, students first name
6927:
6928: =item $middle
6929:
6930: =item $last
6931:
6932: =item $gene
6933:
6934: =item $usec
6935:
6936: =item $end
6937:
6938: =item $start
6939:
6940: =back
6941:
1.191 harris41 6942:
6943: =item *
6944:
1.243 albertel 6945: assigncustomrole($udom,$uname,$url,$rdom,$rnam,$rolename,$end,$start) : assign
6946: custom role; give a custom role to a user for the level given by URL. Specify
6947: name and domain of role author, and role name
1.191 harris41 6948:
6949: =item *
6950:
1.243 albertel 6951: revokerole($udom,$uname,$url,$role) : revoke a role for url
1.191 harris41 6952:
6953: =item *
6954:
1.243 albertel 6955: revokecustomrole($udom,$uname,$url,$role) : revoke a custom role
6956:
6957: =back
6958:
6959: =head2 Course Infomation
6960:
6961: =over 4
1.191 harris41 6962:
6963: =item *
6964:
1.631 albertel 6965: coursedescription($courseid) : returns a hash of information about the
6966: specified course id, including all environment settings for the
6967: course, the description of the course will be in the hash under the
6968: key 'description'
1.191 harris41 6969:
6970: =item *
6971:
1.624 albertel 6972: resdata($name,$domain,$type,@which) : request for current parameter
6973: setting for a specific $type, where $type is either 'course' or 'user',
6974: @what should be a list of parameters to ask about. This routine caches
6975: answers for 5 minutes.
1.243 albertel 6976:
6977: =back
6978:
6979: =head2 Course Modification
6980:
6981: =over 4
1.191 harris41 6982:
6983: =item *
6984:
1.243 albertel 6985: writecoursepref($courseid,%prefs) : write preferences (environment
6986: database) for a course
1.191 harris41 6987:
6988: =item *
6989:
1.243 albertel 6990: createcourse($udom,$description,$url) : make/modify course
6991:
6992: =back
6993:
6994: =head2 Resource Subroutines
6995:
6996: =over 4
1.191 harris41 6997:
6998: =item *
6999:
1.243 albertel 7000: subscribe($fname) : subscribe to a resource, returns URL if possible (probably should use repcopy instead)
1.191 harris41 7001:
7002: =item *
7003:
1.243 albertel 7004: repcopy($filename) : subscribes to the requested file, and attempts to
7005: replicate from the owning library server, Might return
1.607 raeburn 7006: 'unavailable', 'not_found', 'forbidden', 'ok', or
7007: 'bad_request', also attempts to grab the metadata for the
1.243 albertel 7008: resource. Expects the local filesystem pathname
7009: (/home/httpd/html/res/....)
7010:
7011: =back
7012:
7013: =head2 Resource Information
7014:
7015: =over 4
1.191 harris41 7016:
7017: =item *
7018:
1.243 albertel 7019: EXT($varname,$symb,$udom,$uname) : evaluates and returns the value of
7020: a vairety of different possible values, $varname should be a request
7021: string, and the other parameters can be used to specify who and what
7022: one is asking about.
7023:
7024: Possible values for $varname are environment.lastname (or other item
7025: from the envirnment hash), user.name (or someother aspect about the
7026: user), resource.0.maxtries (or some other part and parameter of a
7027: resource)
1.204 albertel 7028:
7029: =item *
7030:
1.243 albertel 7031: directcondval($number) : get current value of a condition; reads from a state
7032: string
1.204 albertel 7033:
7034: =item *
7035:
1.243 albertel 7036: condval($condidx) : value of condition index based on state
1.204 albertel 7037:
7038: =item *
7039:
1.243 albertel 7040: metadata($uri,$what,$liburi,$prefix,$depthcount) : request a
7041: resource's metadata, $what should be either a specific key, or either
7042: 'keys' (to get a list of possible keys) or 'packages' to get a list of
7043: packages that this resource currently uses, the last 3 arguments are only used internally for recursive metadata.
7044:
7045: this function automatically caches all requests
1.191 harris41 7046:
7047: =item *
7048:
1.243 albertel 7049: metadata_query($query,$custom,$customshow) : make a metadata query against the
7050: network of library servers; returns file handle of where SQL and regex results
7051: will be stored for query
1.191 harris41 7052:
7053: =item *
7054:
1.243 albertel 7055: symbread($filename) : return symbolic list entry (filename argument optional);
7056: returns the data handle
1.191 harris41 7057:
7058: =item *
7059:
1.243 albertel 7060: symbverify($symb,$thisfn) : verifies that $symb actually exists and is
1.582 albertel 7061: a possible symb for the URL in $thisfn, and if is an encryypted
7062: resource that the user accessed using /enc/ returns a 1 on success, 0
7063: on failure, user must be in a course, as it assumes the existance of
1.620 albertel 7064: the course initial hash, and uses $env('request.course.id'}
1.243 albertel 7065:
1.191 harris41 7066:
7067: =item *
7068:
1.243 albertel 7069: symbclean($symb) : removes versions numbers from a symb, returns the
7070: cleaned symb
1.191 harris41 7071:
7072: =item *
7073:
1.243 albertel 7074: is_on_map($uri) : checks if the $uri is somewhere on the current
7075: course map, user must be in a course for it to work.
1.191 harris41 7076:
7077: =item *
7078:
1.243 albertel 7079: numval($salt) : return random seed value (addend for rndseed)
1.191 harris41 7080:
7081: =item *
7082:
1.243 albertel 7083: rndseed($symb,$courseid,$udom,$uname) : create a random sum; returns
7084: a random seed, all arguments are optional, if they aren't sent it uses the
7085: environment to derive them. Note: if symb isn't sent and it can't get one
7086: from &symbread it will use the current time as its return value
1.191 harris41 7087:
7088: =item *
7089:
1.243 albertel 7090: ireceipt($funame,$fudom,$fucourseid,$fusymb) : return unique,
7091: unfakeable, receipt
1.191 harris41 7092:
7093: =item *
7094:
1.620 albertel 7095: receipt() : API to ireceipt working off of env values; given out to users
1.191 harris41 7096:
7097: =item *
7098:
1.243 albertel 7099: countacc($url) : count the number of accesses to a given URL
1.191 harris41 7100:
7101: =item *
7102:
1.243 albertel 7103: 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 7104:
7105: =item *
7106:
1.243 albertel 7107: 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 7108:
7109: =item *
7110:
1.243 albertel 7111: expirespread($uname,$udom,$stype,$usymb) : set expire date for spreadsheet
1.191 harris41 7112:
7113: =item *
7114:
1.243 albertel 7115: devalidate($symb) : devalidate temporary spreadsheet calculations,
7116: forcing spreadsheet to reevaluate the resource scores next time.
7117:
7118: =back
7119:
7120: =head2 Storing/Retreiving Data
7121:
7122: =over 4
1.191 harris41 7123:
7124: =item *
7125:
1.243 albertel 7126: store($storehash,$symb,$namespace,$udom,$uname) : stores hash permanently
7127: for this url; hashref needs to be given and should be a \%hashname; the
7128: remaining args aren't required and if they aren't passed or are '' they will
1.620 albertel 7129: be derived from the env
1.191 harris41 7130:
7131: =item *
7132:
1.243 albertel 7133: cstore($storehash,$symb,$namespace,$udom,$uname) : same as store but
7134: uses critical subroutine
1.191 harris41 7135:
7136: =item *
7137:
1.243 albertel 7138: restore($symb,$namespace,$udom,$uname) : returns hash for this symb;
7139: all args are optional
1.191 harris41 7140:
7141: =item *
7142:
1.243 albertel 7143: tmpstore($storehash,$symb,$namespace,$udom,$uname) : storage that
7144: works very similar to store/cstore, but all data is stored in a
7145: temporary location and can be reset using tmpreset, $storehash should
7146: be a hash reference, returns nothing on success
1.191 harris41 7147:
7148: =item *
7149:
1.243 albertel 7150: tmprestore($symb,$namespace,$udom,$uname) : storage that works very
7151: similar to restore, but all data is stored in a temporary location and
7152: can be reset using tmpreset. Returns a hash of values on success,
7153: error string otherwise.
1.191 harris41 7154:
7155: =item *
7156:
1.243 albertel 7157: tmpreset($symb,$namespace,$udom,$uname) : temporary storage reset,
7158: deltes all keys for $symb form the temporary storage hash.
1.191 harris41 7159:
7160: =item *
7161:
1.243 albertel 7162: get($namespace,$storearr,$udom,$uname) : returns hash with keys from array
7163: reference filled in from namesp ($udom and $uname are optional)
1.191 harris41 7164:
7165: =item *
7166:
1.243 albertel 7167: del($namespace,$storearr,$udom,$uname) : deletes keys out of array from
7168: namesp ($udom and $uname are optional)
1.191 harris41 7169:
7170: =item *
7171:
1.702 albertel 7172: dump($namespace,$udom,$uname,$regexp,$range) :
1.243 albertel 7173: dumps the complete (or key matching regexp) namespace into a hash
1.702 albertel 7174: ($udom, $uname, $regexp, $range are optional)
1.449 matthew 7175:
1.702 albertel 7176: $range should be either an integer '100' (give me the first 100
7177: matching records)
7178: or be two integers sperated by a - with no spaces
7179: '30-50' (give me the 30th through the 50th matching
7180: records)
1.449 matthew 7181: =item *
7182:
7183: inc($namespace,$store,$udom,$uname) : increments $store in $namespace.
7184: $store can be a scalar, an array reference, or if the amount to be
7185: incremented is > 1, a hash reference.
7186:
7187: ($udom and $uname are optional)
1.191 harris41 7188:
7189: =item *
7190:
1.243 albertel 7191: put($namespace,$storehash,$udom,$uname) : stores hash in namesp
7192: ($udom and $uname are optional)
1.191 harris41 7193:
7194: =item *
7195:
1.524 raeburn 7196: putstore($namespace,$storehash,$udomain,$uname) : stores hash in namesp
7197: keys used in storehash include version information (e.g., 1:$symb:message etc.) as
7198: used in records written by &store and retrieved by &restore. This function
7199: was created for use in editing discussion posts, without incrementing the
7200: version number included in the key for a particular post. The colon
7201: separated list of attribute names (e.g., the value associated with the key
7202: 1:keys:$symb) is also generated and passed in the ampersand separated
7203: items sent to lonnet::reply().
7204:
7205: =item *
7206:
1.243 albertel 7207: cput($namespace,$storehash,$udom,$uname) : critical put
7208: ($udom and $uname are optional)
1.191 harris41 7209:
7210: =item *
7211:
1.243 albertel 7212: eget($namespace,$storearr,$udom,$uname) : returns hash with keys from array
7213: reference filled in from namesp (encrypts the return communication)
7214: ($udom and $uname are optional)
1.191 harris41 7215:
7216: =item *
7217:
1.243 albertel 7218: log($udom,$name,$home,$message) : write to permanent log for user; use
7219: critical subroutine
7220:
7221: =back
7222:
7223: =head2 Network Status Functions
7224:
7225: =over 4
1.191 harris41 7226:
7227: =item *
7228:
7229: dirlist($uri) : return directory list based on URI
7230:
7231: =item *
7232:
1.243 albertel 7233: spareserver() : find server with least workload from spare.tab
7234:
7235: =back
7236:
7237: =head2 Apache Request
7238:
7239: =over 4
1.191 harris41 7240:
7241: =item *
7242:
1.243 albertel 7243: ssi($url,%hash) : server side include, does a complete request cycle on url to
7244: localhost, posts hash
7245:
7246: =back
7247:
7248: =head2 Data to String to Data
7249:
7250: =over 4
1.191 harris41 7251:
7252: =item *
7253:
1.243 albertel 7254: hash2str(%hash) : convert a hash into a string complete with escaping and '='
7255: and '&' separators, supports elements that are arrayrefs and hashrefs
1.191 harris41 7256:
7257: =item *
7258:
1.243 albertel 7259: hashref2str($hashref) : convert a hashref into a string complete with
7260: escaping and '=' and '&' separators, supports elements that are
7261: arrayrefs and hashrefs
1.191 harris41 7262:
7263: =item *
7264:
1.243 albertel 7265: arrayref2str($arrayref) : convert an arrayref into a string complete
7266: with escaping and '&' separators, supports elements that are arrayrefs
7267: and hashrefs
1.191 harris41 7268:
7269: =item *
7270:
1.243 albertel 7271: str2hash($string) : convert string to hash using unescaping and
7272: splitting on '=' and '&', supports elements that are arrayrefs and
7273: hashrefs
1.191 harris41 7274:
7275: =item *
7276:
1.243 albertel 7277: str2array($string) : convert string to hash using unescaping and
7278: splitting on '&', supports elements that are arrayrefs and hashrefs
7279:
7280: =back
7281:
7282: =head2 Logging Routines
7283:
7284: =over 4
7285:
7286: These routines allow one to make log messages in the lonnet.log and
7287: lonnet.perm logfiles.
1.191 harris41 7288:
7289: =item *
7290:
1.243 albertel 7291: logtouch() : make sure the logfile, lonnet.log, exists
1.191 harris41 7292:
7293: =item *
7294:
1.243 albertel 7295: logthis() : append message to the normal lonnet.log file, it gets
7296: preiodically rolled over and deleted.
1.191 harris41 7297:
7298: =item *
7299:
1.243 albertel 7300: logperm() : append a permanent message to lonnet.perm.log, this log
7301: file never gets deleted by any automated portion of the system, only
7302: messages of critical importance should go in here.
7303:
7304: =back
7305:
7306: =head2 General File Helper Routines
7307:
7308: =over 4
1.191 harris41 7309:
7310: =item *
7311:
1.481 raeburn 7312: getfile($file,$caller) : two cases - requests for files in /res or in /uploaded.
7313: (a) files in /uploaded
7314: (i) If a local copy of the file exists -
7315: compares modification date of local copy with last-modified date for
7316: definitive version stored on home server for course. If local copy is
7317: stale, requests a new version from the home server and stores it.
7318: If the original has been removed from the home server, then local copy
7319: is unlinked.
7320: (ii) If local copy does not exist -
7321: requests the file from the home server and stores it.
7322:
7323: If $caller is 'uploadrep':
7324: This indicates a call from lonuploadrep.pm (PerlHeaderParserHandler phase)
7325: for request for files originally uploaded via DOCS.
7326: - returns 'ok' if fresh local copy now available, -1 otherwise.
7327:
7328: Otherwise:
7329: This indicates a call from the content generation phase of the request.
7330: - returns the entire contents of the file or -1.
7331:
7332: (b) files in /res
7333: - returns the entire contents of a file or -1;
7334: it properly subscribes to and replicates the file if neccessary.
1.191 harris41 7335:
7336: =item *
7337:
1.243 albertel 7338: filelocation($dir,$file) : returns file system location of a file
7339: based on URI; meant to be "fairly clean" absolute reference, $dir is a
7340: directory that relative $file lookups are to looked in ($dir of /a/dir
7341: and a file of ../bob will become /a/bob)
1.191 harris41 7342:
7343: =item *
7344:
7345: hreflocation($dir,$file) : returns file system location or a URL; same as
7346: filelocation except for hrefs
7347:
7348: =item *
7349:
7350: declutter() : declutters URLs (remove docroot, beginning slashes, 'res' etc)
7351:
1.243 albertel 7352: =back
7353:
1.608 albertel 7354: =head2 Usererfile file routines (/uploaded*)
7355:
7356: =over 4
7357:
7358: =item *
7359:
7360: userfileupload(): main rotine for putting a file in a user or course's
7361: filespace, arguments are,
7362:
1.620 albertel 7363: formname - required - this is the name of the element in $env where the
1.608 albertel 7364: filename, and the contents of the file to create/modifed exist
1.620 albertel 7365: the filename is in $env{'form.'.$formname.'.filename'} and the
7366: contents of the file is located in $env{'form.'.$formname}
1.608 albertel 7367: coursedoc - if true, store the file in the course of the active role
7368: of the current user
7369: subdir - required - subdirectory to put the file in under ../userfiles/
7370: if undefined, it will be placed in "unknown"
7371:
7372: (This routine calls clean_filename() to remove any dangerous
7373: characters from the filename, and then calls finuserfileupload() to
7374: complete the transaction)
7375:
7376: returns either the url of the uploaded file (/uploaded/....) if successful
7377: and /adm/notfound.html if unsuccessful
7378:
7379: =item *
7380:
7381: clean_filename(): routine for cleaing a filename up for storage in
7382: userfile space, argument is:
7383:
7384: filename - proposed filename
7385:
7386: returns: the new clean filename
7387:
7388: =item *
7389:
7390: finishuserfileupload(): routine that creaes and sends the file to
7391: userspace, probably shouldn't be called directly
7392:
7393: docuname: username or courseid of destination for the file
7394: docudom: domain of user/course of destination for the file
7395: formname: same as for userfileupload()
7396: fname: filename (inculding subdirectories) for the file
7397:
7398: returns either the url of the uploaded file (/uploaded/....) if successful
7399: and /adm/notfound.html if unsuccessful
7400:
7401: =item *
7402:
7403: renameuserfile(): renames an existing userfile to a new name
7404:
7405: Args:
7406: docuname: username or courseid of destination for the file
7407: docudom: domain of user/course of destination for the file
7408: old: current file name (including any subdirs under userfiles)
7409: new: desired file name (including any subdirs under userfiles)
7410:
7411: =item *
7412:
7413: mkdiruserfile(): creates a directory is a userfiles dir
7414:
7415: Args:
7416: docuname: username or courseid of destination for the file
7417: docudom: domain of user/course of destination for the file
7418: dir: dir to create (including any subdirs under userfiles)
7419:
7420: =item *
7421:
7422: removeuserfile(): removes a file that exists in userfiles
7423:
7424: Args:
7425: docuname: username or courseid of destination for the file
7426: docudom: domain of user/course of destination for the file
7427: fname: filname to delete (including any subdirs under userfiles)
7428:
7429: =item *
7430:
7431: removeuploadedurl(): convience function for removeuserfile()
7432:
7433: Args:
7434: url: a full /uploaded/... url to delete
7435:
7436: =back
7437:
1.243 albertel 7438: =head2 HTTP Helper Routines
7439:
7440: =over 4
7441:
1.191 harris41 7442: =item *
7443:
7444: escape() : unpack non-word characters into CGI-compatible hex codes
7445:
7446: =item *
7447:
7448: unescape() : pack CGI-compatible hex codes into actual non-word ASCII character
7449:
1.243 albertel 7450: =back
7451:
7452: =head1 PRIVATE SUBROUTINES
7453:
7454: =head2 Underlying communication routines (Shouldn't call)
7455:
7456: =over 4
7457:
7458: =item *
7459:
7460: subreply() : tries to pass a message to lonc, returns con_lost if incapable
7461:
7462: =item *
7463:
7464: reply() : uses subreply to send a message to remote machine, logs all failures
7465:
7466: =item *
7467:
7468: critical() : passes a critical message to another server; if cannot
7469: get through then place message in connection buffer directory and
7470: returns con_delayed, if incapable of saving message, returns
7471: con_failed
7472:
7473: =item *
7474:
7475: reconlonc() : tries to reconnect lonc client processes.
7476:
7477: =back
7478:
7479: =head2 Resource Access Logging
7480:
7481: =over 4
7482:
7483: =item *
7484:
7485: flushcourselogs() : flush (save) buffer logs and access logs
7486:
7487: =item *
7488:
7489: courselog($what) : save message for course in hash
7490:
7491: =item *
7492:
7493: courseacclog($what) : save message for course using &courselog(). Perform
7494: special processing for specific resource types (problems, exams, quizzes, etc).
7495:
1.191 harris41 7496: =item *
7497:
7498: goodbye() : flush course logs and log shutting down; it is called in srm.conf
7499: as a PerlChildExitHandler
1.243 albertel 7500:
7501: =back
7502:
7503: =head2 Other
7504:
7505: =over 4
7506:
7507: =item *
7508:
7509: symblist($mapname,%newhash) : update symbolic storage links
1.191 harris41 7510:
7511: =back
7512:
7513: =cut
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>