Annotation of loncom/lonnet/perl/lonnet.pm, revision 1.1198
1.1 albertel 1: # The LearningOnline Network
2: # TCP networking package
1.12 www 3: #
1.1198 ! raeburn 4: # $Id: lonnet.pm,v 1.1197 2012/11/11 01:48:33 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.971 jms 30: =pod
31:
1.972 jms 32: =head1 NAME
33:
34: Apache::lonnet.pm
35:
36: =head1 SYNOPSIS
37:
38: This file is an interface to the lonc processes of
39: the LON-CAPA network as well as set of elaborated functions for handling information
40: necessary for navigating through a given cluster of LON-CAPA machines within a
41: domain. There are over 40 specialized functions in this module which handle the
42: reading and transmission of metadata, user information (ids, names, environments, roles,
43: logs), file information (storage, reading, directories, extensions, replication, embedded
44: styles and descriptors), educational resources (course descriptions, section names and
45: numbers), url hashing (to assign roles on a url basis), and translating abbreviated symbols to
46: and from more descriptive phrases or explanations.
47:
48: This is part of the LearningOnline Network with CAPA project
49: described at http://www.lon-capa.org.
50:
1.971 jms 51: =head1 Package Variables
52:
53: These are largely undocumented, so if you decipher one please note it here.
54:
55: =over 4
56:
57: =item $processmarker
58:
59: Contains the time this process was started and this servers host id.
60:
61: =item $dumpcount
62:
63: Counts the number of times a message log flush has been attempted (regardless
64: of success) by this process. Used as part of the filename when messages are
65: delayed.
66:
67: =back
68:
69: =cut
70:
1.1 albertel 71: package Apache::lonnet;
72:
73: use strict;
1.8 www 74: use LWP::UserAgent();
1.486 www 75: use HTTP::Date;
1.977 amueller 76: use Image::Magick;
77:
1.1182 foxr 78:
1.1173 foxr 79: use Encode;
80:
1.871 albertel 81: use vars qw(%perlvar %spareid %pr %prp $memcache %packagetab $tmpdir
1.1138 raeburn 82: $_64bit %env %protocol %loncaparevs %serverhomeIDs %needsrelease
83: %managerstab);
1.871 albertel 84:
85: my (%badServerCache, $memcache, %courselogs, %accesshash, %domainrolehash,
86: %userrolehash, $processmarker, $dumpcount, %coursedombuf,
87: %coursenumbuf, %coursehombuf, %coursedescrbuf, %courseinstcodebuf,
1.958 www 88: %courseownerbuf, %coursetypebuf,$locknum);
1.403 www 89:
1.1 albertel 90: use IO::Socket;
1.31 www 91: use GDBM_File;
1.208 albertel 92: use HTML::LCParser;
1.88 www 93: use Fcntl qw(:flock);
1.870 albertel 94: use Storable qw(thaw nfreeze);
1.539 albertel 95: use Time::HiRes qw( gettimeofday tv_interval );
1.599 albertel 96: use Cache::Memcached;
1.676 albertel 97: use Digest::MD5;
1.790 albertel 98: use Math::Random;
1.1024 raeburn 99: use File::MMagic;
1.807 albertel 100: use LONCAPA qw(:DEFAULT :match);
1.740 www 101: use LONCAPA::Configuration;
1.1160 www 102: use LONCAPA::lonmetadata;
1.1167 droeschl 103: use LONCAPA::Lond;
1.1117 foxr 104:
1.1090 raeburn 105: use File::Copy;
1.676 albertel 106:
1.195 www 107: my $readit;
1.550 foxr 108: my $max_connection_retries = 10; # Or some such value.
1.1 albertel 109:
1.619 albertel 110: require Exporter;
111:
112: our @ISA = qw (Exporter);
113: our @EXPORT = qw(%env);
114:
1.449 matthew 115:
1.1187 raeburn 116: # ------------------------------------ Logging (parameters, docs, slots, roles)
1.729 www 117: {
118: my $logid;
1.1187 raeburn 119: sub write_log {
1.1188 raeburn 120: my ($context,$hash_name,$storehash,$delflag,$uname,$udom,$cnum,$cdom)=@_;
1.1184 raeburn 121: if ($context eq 'course') {
122: if (($cnum eq '') || ($cdom eq '')) {
123: $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
124: $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
125: }
1.957 raeburn 126: }
1.1184 raeburn 127: $logid ++;
1.957 raeburn 128: my $now = time();
129: my $id=$now.'00000'.$$.'00000'.$logid;
1.1184 raeburn 130: my $logentry = {
131: $id => {
132: 'exe_uname' => $env{'user.name'},
133: 'exe_udom' => $env{'user.domain'},
134: 'exe_time' => $now,
135: 'exe_ip' => $ENV{'REMOTE_ADDR'},
136: 'delflag' => $delflag,
137: 'logentry' => $storehash,
138: 'uname' => $uname,
139: 'udom' => $udom,
140: }
141: };
142: return &put('nohist_'.$hash_name,$logentry,$cdom,$cnum);
1.729 www 143: }
144: }
1.1 albertel 145:
1.163 harris41 146: sub logtouch {
147: my $execdir=$perlvar{'lonDaemons'};
1.448 albertel 148: unless (-e "$execdir/logs/lonnet.log") {
149: open(my $fh,">>$execdir/logs/lonnet.log");
1.163 harris41 150: close $fh;
151: }
152: my ($wwwuid,$wwwgid)=(getpwnam('www'))[2,3];
153: chown($wwwuid,$wwwgid,$execdir.'/logs/lonnet.log');
154: }
155:
1.1 albertel 156: sub logthis {
157: my $message=shift;
158: my $execdir=$perlvar{'lonDaemons'};
159: my $now=time;
160: my $local=localtime($now);
1.448 albertel 161: if (open(my $fh,">>$execdir/logs/lonnet.log")) {
1.986 foxr 162: my $logstring = $local. " ($$): ".$message."\n"; # Keep any \'s in string.
163: print $fh $logstring;
1.448 albertel 164: close($fh);
165: }
1.1 albertel 166: return 1;
167: }
168:
169: sub logperm {
170: my $message=shift;
171: my $execdir=$perlvar{'lonDaemons'};
172: my $now=time;
173: my $local=localtime($now);
1.448 albertel 174: if (open(my $fh,">>$execdir/logs/lonnet.perm.log")) {
175: print $fh "$now:$message:$local\n";
176: close($fh);
177: }
1.1 albertel 178: return 1;
179: }
180:
1.850 albertel 181: sub create_connection {
1.853 albertel 182: my ($hostname,$lonid) = @_;
1.851 albertel 183: my $client=IO::Socket::UNIX->new(Peer => $perlvar{'lonSockCreate'},
1.850 albertel 184: Type => SOCK_STREAM,
185: Timeout => 10);
186: return 0 if (!$client);
1.890 albertel 187: print $client (join(':',$hostname,$lonid,&machine_ids($hostname))."\n");
1.850 albertel 188: my $result = <$client>;
189: chomp($result);
190: return 1 if ($result eq 'done');
191: return 0;
192: }
193:
1.983 raeburn 194: sub get_server_timezone {
195: my ($cnum,$cdom) = @_;
196: my $home=&homeserver($cnum,$cdom);
197: if ($home ne 'no_host') {
198: my $cachetime = 24*3600;
199: my ($timezone,$cached)=&is_cached_new('servertimezone',$home);
200: if (defined($cached)) {
201: return $timezone;
202: } else {
203: my $timezone = &reply('servertimezone',$home);
204: return &do_cache_new('servertimezone',$home,$timezone,$cachetime);
205: }
206: }
207: }
1.850 albertel 208:
1.1106 raeburn 209: sub get_server_distarch {
210: my ($lonhost,$ignore_cache) = @_;
211: if (defined($lonhost)) {
212: if (!defined(&hostname($lonhost))) {
213: return;
214: }
215: my $cachetime = 12*3600;
216: if (!$ignore_cache) {
217: my ($distarch,$cached)=&is_cached_new('serverdistarch',$lonhost);
218: if (defined($cached)) {
219: return $distarch;
220: }
221: }
222: my $rep = &reply('serverdistarch',$lonhost);
223: unless ($rep eq 'unknown_command' || $rep eq 'no_such_host' ||
224: $rep eq 'con_lost' || $rep eq 'rejected' || $rep eq 'refused' ||
225: $rep eq '') {
226: return &do_cache_new('serverdistarch',$lonhost,$rep,$cachetime);
227: }
228: }
229: return;
230: }
231:
1.993 raeburn 232: sub get_server_loncaparev {
1.1073 raeburn 233: my ($dom,$lonhost,$ignore_cache,$caller) = @_;
1.993 raeburn 234: if (defined($lonhost)) {
235: if (!defined(&hostname($lonhost))) {
236: undef($lonhost);
237: }
238: }
239: if (!defined($lonhost)) {
240: if (defined(&domain($dom,'primary'))) {
241: $lonhost=&domain($dom,'primary');
242: if ($lonhost eq 'no_host') {
243: undef($lonhost);
244: }
245: }
246: }
247: if (defined($lonhost)) {
1.1073 raeburn 248: my $cachetime = 12*3600;
249: if (!$ignore_cache) {
250: my ($loncaparev,$cached)=&is_cached_new('serverloncaparev',$lonhost);
251: if (defined($cached)) {
252: return $loncaparev;
253: }
254: }
255: my ($answer,$loncaparev);
256: my @ids=¤t_machine_ids();
257: if (grep(/^\Q$lonhost\E$/,@ids)) {
258: $answer = $perlvar{'lonVersion'};
1.1081 raeburn 259: if ($answer =~ /^[\'\"]?([\w.\-]+)[\'\"]?$/) {
1.1073 raeburn 260: $loncaparev = $1;
261: }
262: } else {
263: $answer = &reply('serverloncaparev',$lonhost);
264: if (($answer eq 'unknown_cmd') || ($answer eq 'con_lost')) {
265: if ($caller eq 'loncron') {
266: my $ua=new LWP::UserAgent;
1.1082 raeburn 267: $ua->timeout(4);
1.1073 raeburn 268: my $protocol = $protocol{$lonhost};
269: $protocol = 'http' if ($protocol ne 'https');
270: my $url = $protocol.'://'.&hostname($lonhost).'/adm/about.html';
271: my $request=new HTTP::Request('GET',$url);
272: my $response=$ua->request($request);
273: unless ($response->is_error()) {
274: my $content = $response->content;
1.1081 raeburn 275: if ($content =~ /<p>VERSION\:\s*([\w.\-]+)<\/p>/) {
1.1073 raeburn 276: $loncaparev = $1;
277: }
278: }
279: } else {
280: $loncaparev = $loncaparevs{$lonhost};
281: }
1.1081 raeburn 282: } elsif ($answer =~ /^[\'\"]?([\w.\-]+)[\'\"]?$/) {
1.1073 raeburn 283: $loncaparev = $1;
284: }
1.993 raeburn 285: }
1.1073 raeburn 286: return &do_cache_new('serverloncaparev',$lonhost,$loncaparev,$cachetime);
1.993 raeburn 287: }
288: }
289:
1.1074 raeburn 290: sub get_server_homeID {
291: my ($hostname,$ignore_cache,$caller) = @_;
292: unless ($ignore_cache) {
293: my ($serverhomeID,$cached)=&is_cached_new('serverhomeID',$hostname);
294: if (defined($cached)) {
295: return $serverhomeID;
296: }
297: }
298: my $cachetime = 12*3600;
299: my $serverhomeID;
300: if ($caller eq 'loncron') {
301: my @machine_ids = &machine_ids($hostname);
302: foreach my $id (@machine_ids) {
303: my $response = &reply('serverhomeID',$id);
304: unless (($response eq 'unknown_cmd') || ($response eq 'con_lost')) {
305: $serverhomeID = $response;
306: last;
307: }
308: }
309: if ($serverhomeID eq '') {
310: $serverhomeID = $machine_ids[-1];
311: }
312: } else {
313: $serverhomeID = $serverhomeIDs{$hostname};
314: }
315: return &do_cache_new('serverhomeID',$hostname,$serverhomeID,$cachetime);
316: }
317:
1.1121 raeburn 318: sub get_remote_globals {
319: my ($lonhost,$whathash,$ignore_cache) = @_;
1.1125 raeburn 320: my ($result,%returnhash,%whatneeded);
321: if (ref($whathash) eq 'HASH') {
1.1121 raeburn 322: foreach my $what (sort(keys(%{$whathash}))) {
323: my $hashid = $lonhost.'-'.$what;
1.1125 raeburn 324: my ($response,$cached);
1.1121 raeburn 325: unless ($ignore_cache) {
1.1125 raeburn 326: ($response,$cached)=&is_cached_new('lonnetglobal',$hashid);
1.1121 raeburn 327: }
328: if (defined($cached)) {
1.1125 raeburn 329: $returnhash{$what} = $response;
1.1121 raeburn 330: } else {
1.1125 raeburn 331: $whatneeded{$what} = 1;
1.1121 raeburn 332: }
333: }
1.1125 raeburn 334: if (keys(%whatneeded) == 0) {
335: $result = 'ok';
336: } else {
1.1121 raeburn 337: my $requested = &freeze_escape(\%whatneeded);
338: my $rep=&reply('readlonnetglobal:'.$requested,$lonhost);
1.1125 raeburn 339: if (($rep=~/^(refused|rejected|error)/) || ($rep eq 'con_lost') ||
340: ($rep eq 'unknown_cmd')) {
341: $result = $rep;
342: } else {
343: $result = 'ok';
1.1121 raeburn 344: my @pairs=split(/\&/,$rep);
1.1125 raeburn 345: foreach my $item (@pairs) {
346: my ($key,$value)=split(/=/,$item,2);
347: my $what = &unescape($key);
348: my $hashid = $lonhost.'-'.$what;
349: $returnhash{$what}=&thaw_unescape($value);
350: &do_cache_new('lonnetglobal',$hashid,$returnhash{$what},600);
1.1121 raeburn 351: }
352: }
353: }
354: }
1.1125 raeburn 355: return ($result,\%returnhash);
1.1121 raeburn 356: }
357:
1.1124 raeburn 358: sub remote_devalidate_cache {
359: my ($lonhost,$name,$id) = @_;
1.1130 raeburn 360: my $response = &reply('devalidatecache:'.&escape($name).':'.&escape($id),$lonhost);
1.1124 raeburn 361: return $response;
362: }
363:
1.1 albertel 364: # -------------------------------------------------- Non-critical communication
365: sub subreply {
366: my ($cmd,$server)=@_;
1.838 albertel 367: my $peerfile="$perlvar{'lonSockDir'}/".&hostname($server);
1.549 foxr 368: #
369: # With loncnew process trimming, there's a timing hole between lonc server
370: # process exit and the master server picking up the listen on the AF_UNIX
371: # socket. In that time interval, a lock file will exist:
372:
373: my $lockfile=$peerfile.".lock";
374: while (-e $lockfile) { # Need to wait for the lockfile to disappear.
375: sleep(1);
376: }
377: # At this point, either a loncnew parent is listening or an old lonc
1.550 foxr 378: # or loncnew child is listening so we can connect or everything's dead.
1.549 foxr 379: #
1.550 foxr 380: # We'll give the connection a few tries before abandoning it. If
381: # connection is not possible, we'll con_lost back to the client.
382: #
383: my $client;
384: for (my $retries = 0; $retries < $max_connection_retries; $retries++) {
385: $client=IO::Socket::UNIX->new(Peer =>"$peerfile",
386: Type => SOCK_STREAM,
387: Timeout => 10);
1.869 albertel 388: if ($client) {
1.550 foxr 389: last; # Connected!
1.850 albertel 390: } else {
1.853 albertel 391: &create_connection(&hostname($server),$server);
1.550 foxr 392: }
1.850 albertel 393: sleep(1); # Try again later if failed connection.
1.550 foxr 394: }
395: my $answer;
396: if ($client) {
1.704 albertel 397: print $client "sethost:$server:$cmd\n";
1.550 foxr 398: $answer=<$client>;
399: if (!$answer) { $answer="con_lost"; }
400: chomp($answer);
401: } else {
402: $answer = 'con_lost'; # Failed connection.
403: }
1.1 albertel 404: return $answer;
405: }
406:
407: sub reply {
408: my ($cmd,$server)=@_;
1.838 albertel 409: unless (defined(&hostname($server))) { return 'no_such_host'; }
1.1 albertel 410: my $answer=subreply($cmd,$server);
1.65 www 411: if (($answer=~/^refused/) || ($answer=~/^rejected/)) {
1.672 albertel 412: &logthis("<font color=\"blue\">WARNING:".
1.12 www 413: " $cmd to $server returned $answer</font>");
414: }
1.1 albertel 415: return $answer;
416: }
417:
418: # ----------------------------------------------------------- Send USR1 to lonc
419:
420: sub reconlonc {
1.891 albertel 421: my ($lonid) = @_;
422: my $hostname = &hostname($lonid);
423: if ($lonid) {
424: my $peerfile="$perlvar{'lonSockDir'}/$hostname";
425: if ($hostname && -e $peerfile) {
426: &logthis("Trying to reconnect lonc for $lonid ($hostname)");
427: my $client=IO::Socket::UNIX->new(Peer => $peerfile,
428: Type => SOCK_STREAM,
429: Timeout => 10);
430: if ($client) {
431: print $client ("reset_retries\n");
432: my $answer=<$client>;
433: #reset just this one.
434: }
435: }
436: return;
437: }
438:
1.836 www 439: &logthis("Trying to reconnect lonc");
1.1 albertel 440: my $loncfile="$perlvar{'lonDaemons'}/logs/lonc.pid";
1.448 albertel 441: if (open(my $fh,"<$loncfile")) {
1.1 albertel 442: my $loncpid=<$fh>;
443: chomp($loncpid);
444: if (kill 0 => $loncpid) {
445: &logthis("lonc at pid $loncpid responding, sending USR1");
446: kill USR1 => $loncpid;
447: sleep 1;
1.836 www 448: } else {
1.12 www 449: &logthis(
1.672 albertel 450: "<font color=\"blue\">WARNING:".
1.12 www 451: " lonc at pid $loncpid not responding, giving up</font>");
1.1 albertel 452: }
453: } else {
1.836 www 454: &logthis('<font color="blue">WARNING: lonc not running, giving up</font>');
1.1 albertel 455: }
456: }
457:
458: # ------------------------------------------------------ Critical communication
1.12 www 459:
1.1 albertel 460: sub critical {
461: my ($cmd,$server)=@_;
1.838 albertel 462: unless (&hostname($server)) {
1.672 albertel 463: &logthis("<font color=\"blue\">WARNING:".
1.89 www 464: " Critical message to unknown server ($server)</font>");
465: return 'no_such_host';
466: }
1.1 albertel 467: my $answer=reply($cmd,$server);
468: if ($answer eq 'con_lost') {
469: &reconlonc("$perlvar{'lonSockDir'}/$server");
1.589 albertel 470: my $answer=reply($cmd,$server);
1.1 albertel 471: if ($answer eq 'con_lost') {
472: my $now=time;
473: my $middlename=$cmd;
1.5 www 474: $middlename=substr($middlename,0,16);
1.1 albertel 475: $middlename=~s/\W//g;
476: my $dfilename=
1.305 www 477: "$perlvar{'lonSockDir'}/delayed/$now.$dumpcount.$$.$middlename.$server";
478: $dumpcount++;
1.1 albertel 479: {
1.448 albertel 480: my $dfh;
481: if (open($dfh,">$dfilename")) {
482: print $dfh "$cmd\n";
483: close($dfh);
484: }
1.1 albertel 485: }
486: sleep 2;
487: my $wcmd='';
488: {
1.448 albertel 489: my $dfh;
490: if (open($dfh,"<$dfilename")) {
491: $wcmd=<$dfh>;
492: close($dfh);
493: }
1.1 albertel 494: }
495: chomp($wcmd);
1.7 www 496: if ($wcmd eq $cmd) {
1.672 albertel 497: &logthis("<font color=\"blue\">WARNING: ".
1.12 www 498: "Connection buffer $dfilename: $cmd</font>");
1.1 albertel 499: &logperm("D:$server:$cmd");
500: return 'con_delayed';
501: } else {
1.672 albertel 502: &logthis("<font color=\"red\">CRITICAL:"
1.12 www 503: ." Critical connection failed: $server $cmd</font>");
1.1 albertel 504: &logperm("F:$server:$cmd");
505: return 'con_failed';
506: }
507: }
508: }
509: return $answer;
1.405 albertel 510: }
511:
1.755 albertel 512: # ------------------------------------------- check if return value is an error
513:
514: sub error {
515: my ($result) = @_;
1.756 albertel 516: if ($result =~ /^(con_lost|no_such_host|error: (\d+) (.*))/) {
1.755 albertel 517: if ($2 == 2) { return undef; }
518: return $1;
519: }
520: return undef;
521: }
522:
1.783 albertel 523: sub convert_and_load_session_env {
524: my ($lonidsdir,$handle)=@_;
525: my @profile;
526: {
1.917 albertel 527: my $opened = open(my $idf,'+<',"$lonidsdir/$handle.id");
528: if (!$opened) {
1.915 albertel 529: return 0;
530: }
1.783 albertel 531: flock($idf,LOCK_SH);
532: @profile=<$idf>;
533: close($idf);
534: }
535: my %temp_env;
536: foreach my $line (@profile) {
1.786 albertel 537: if ($line !~ m/=/) {
538: return 0;
539: }
1.783 albertel 540: chomp($line);
541: my ($envname,$envvalue)=split(/=/,$line,2);
542: $temp_env{&unescape($envname)} = &unescape($envvalue);
543: }
544: unlink("$lonidsdir/$handle.id");
545: if (tie(my %disk_env,'GDBM_File',"$lonidsdir/$handle.id",&GDBM_WRCREAT(),
546: 0640)) {
547: %disk_env = %temp_env;
548: @env{keys(%temp_env)} = @disk_env{keys(%temp_env)};
549: untie(%disk_env);
550: }
1.786 albertel 551: return 1;
1.783 albertel 552: }
553:
1.374 www 554: # ------------------------------------------- Transfer profile into environment
1.780 albertel 555: my $env_loaded;
556: sub transfer_profile_to_env {
1.788 albertel 557: my ($lonidsdir,$handle,$force_transfer) = @_;
558: if (!$force_transfer && $env_loaded) { return; }
1.374 www 559:
1.720 albertel 560: if (!defined($lonidsdir)) {
561: $lonidsdir = $perlvar{'lonIDsDir'};
562: }
563: if (!defined($handle)) {
564: ($handle) = ($env{'user.environment'} =~m|/([^/]+)\.id$| );
565: }
566:
1.786 albertel 567: my $convert;
568: {
1.917 albertel 569: my $opened = open(my $idf,'+<',"$lonidsdir/$handle.id");
570: if (!$opened) {
1.915 albertel 571: return;
572: }
1.786 albertel 573: flock($idf,LOCK_SH);
574: if (tie(my %disk_env,'GDBM_File',"$lonidsdir/$handle.id",
575: &GDBM_READER(),0640)) {
576: @env{keys(%disk_env)} = @disk_env{keys(%disk_env)};
577: untie(%disk_env);
578: } else {
579: $convert = 1;
580: }
581: }
582: if ($convert) {
583: if (!&convert_and_load_session_env($lonidsdir,$handle)) {
584: &logthis("Failed to load session, or convert session.");
585: }
1.374 www 586: }
1.783 albertel 587:
1.786 albertel 588: my %remove;
1.783 albertel 589: while ( my $envname = each(%env) ) {
1.433 matthew 590: if (my ($key,$time) = ($envname =~ /^(cgi\.(\d+)_\d+\.)/)) {
591: if ($time < time-300) {
1.783 albertel 592: $remove{$key}++;
1.433 matthew 593: }
594: }
595: }
1.783 albertel 596:
1.619 albertel 597: $env{'user.environment'} = "$lonidsdir/$handle.id";
1.780 albertel 598: $env_loaded=1;
1.783 albertel 599: foreach my $expired_key (keys(%remove)) {
1.433 matthew 600: &delenv($expired_key);
1.374 www 601: }
1.1 albertel 602: }
603:
1.916 albertel 604: # ---------------------------------------------------- Check for valid session
605: sub check_for_valid_session {
1.1155 raeburn 606: my ($r,$name) = @_;
1.916 albertel 607: my %cookies=CGI::Cookie->parse($r->header_in('Cookie'));
1.1155 raeburn 608: if ($name eq '') {
609: $name = 'lonID';
610: }
611: my $lonid=$cookies{$name};
1.916 albertel 612: return undef if (!$lonid);
613:
614: my $handle=&LONCAPA::clean_handle($lonid->value);
1.1155 raeburn 615: my $lonidsdir;
616: if ($name eq 'lonDAV') {
617: $lonidsdir=$r->dir_config('lonDAVsessDir');
618: } else {
619: $lonidsdir=$r->dir_config('lonIDsDir');
620: }
1.916 albertel 621: return undef if (!-e "$lonidsdir/$handle.id");
622:
1.917 albertel 623: my $opened = open(my $idf,'+<',"$lonidsdir/$handle.id");
624: return undef if (!$opened);
1.916 albertel 625:
626: flock($idf,LOCK_SH);
627: my %disk_env;
628: if (!tie(%disk_env,'GDBM_File',"$lonidsdir/$handle.id",
629: &GDBM_READER(),0640)) {
630: return undef;
631: }
632:
633: if (!defined($disk_env{'user.name'})
634: || !defined($disk_env{'user.domain'})) {
635: return undef;
636: }
637: return $handle;
638: }
639:
1.830 albertel 640: sub timed_flock {
641: my ($file,$lock_type) = @_;
642: my $failed=0;
643: eval {
644: local $SIG{__DIE__}='DEFAULT';
645: local $SIG{ALRM}=sub {
646: $failed=1;
647: die("failed lock");
648: };
649: alarm(13);
650: flock($file,$lock_type);
651: alarm(0);
652: };
653: if ($failed) {
654: return undef;
655: } else {
656: return 1;
657: }
658: }
659:
1.5 www 660: # ---------------------------------------------------------- Append Environment
661:
662: sub appenv {
1.949 raeburn 663: my ($newenv,$roles) = @_;
664: if (ref($newenv) eq 'HASH') {
665: foreach my $key (keys(%{$newenv})) {
666: my $refused = 0;
667: if (($key =~ /^user\.role/) || ($key =~ /^user\.priv/)) {
668: $refused = 1;
669: if (ref($roles) eq 'ARRAY') {
670: my ($type,$role) = ($key =~ /^user\.(role|priv)\.([^.]+)\./);
671: if (grep(/^\Q$role\E$/,@{$roles})) {
672: $refused = 0;
673: }
674: }
675: }
676: if ($refused) {
677: &logthis("<font color=\"blue\">WARNING: ".
678: "Attempt to modify environment ".$key." to ".$newenv->{$key}
679: .'</font>');
680: delete($newenv->{$key});
681: } else {
682: $env{$key}=$newenv->{$key};
683: }
684: }
685: my $opened = open(my $env_file,'+<',$env{'user.environment'});
686: if ($opened
687: && &timed_flock($env_file,LOCK_EX)
688: &&
689: tie(my %disk_env,'GDBM_File',$env{'user.environment'},
690: (&GDBM_WRITER()|&GDBM_NOLOCK()),0640)) {
691: while (my ($key,$value) = each(%{$newenv})) {
692: $disk_env{$key} = $value;
693: }
694: untie(%disk_env);
1.35 www 695: }
1.191 harris41 696: }
1.56 www 697: return 'ok';
698: }
699: # ----------------------------------------------------- Delete from Environment
700:
701: sub delenv {
1.1104 raeburn 702: my ($delthis,$regexp,$roles) = @_;
703: if (($delthis=~/^user\.role/) || ($delthis=~/^user\.priv/)) {
704: my $refused = 1;
705: if (ref($roles) eq 'ARRAY') {
706: my ($type,$role) = ($delthis =~ /^user\.(role|priv)\.([^.]+)\./);
707: if (grep(/^\Q$role\E$/,@{$roles})) {
708: $refused = 0;
709: }
710: }
711: if ($refused) {
712: &logthis("<font color=\"blue\">WARNING: ".
713: "Attempt to delete from environment ".$delthis);
714: return 'error';
715: }
1.56 www 716: }
1.917 albertel 717: my $opened = open(my $env_file,'+<',$env{'user.environment'});
718: if ($opened
1.915 albertel 719: && &timed_flock($env_file,LOCK_EX)
1.830 albertel 720: &&
721: tie(my %disk_env,'GDBM_File',$env{'user.environment'},
722: (&GDBM_WRITER()|&GDBM_NOLOCK()),0640)) {
1.783 albertel 723: foreach my $key (keys(%disk_env)) {
1.987 raeburn 724: if ($regexp) {
725: if ($key=~/^$delthis/) {
726: delete($env{$key});
727: delete($disk_env{$key});
728: }
729: } else {
730: if ($key=~/^\Q$delthis\E/) {
731: delete($env{$key});
732: delete($disk_env{$key});
733: }
734: }
1.448 albertel 735: }
1.783 albertel 736: untie(%disk_env);
1.5 www 737: }
738: return 'ok';
1.369 albertel 739: }
740:
1.790 albertel 741: sub get_env_multiple {
742: my ($name) = @_;
743: my @values;
744: if (defined($env{$name})) {
745: # exists is it an array
746: if (ref($env{$name})) {
747: @values=@{ $env{$name} };
748: } else {
749: $values[0]=$env{$name};
750: }
751: }
752: return(@values);
753: }
754:
1.958 www 755: # ------------------------------------------------------------------- Locking
756:
757: sub set_lock {
758: my ($text)=@_;
759: $locknum++;
760: my $id=$$.'-'.$locknum;
761: &appenv({'session.locks' => $env{'session.locks'}.','.$id,
762: 'session.lock.'.$id => $text});
763: return $id;
764: }
765:
766: sub get_locks {
767: my $num=0;
768: my %texts=();
769: foreach my $lock (split(/\,/,$env{'session.locks'})) {
770: if ($lock=~/\w/) {
771: $num++;
772: $texts{$lock}=$env{'session.lock.'.$lock};
773: }
774: }
775: return ($num,%texts);
776: }
777:
778: sub remove_lock {
779: my ($id)=@_;
780: my $newlocks='';
781: foreach my $lock (split(/\,/,$env{'session.locks'})) {
782: if (($lock=~/\w/) && ($lock ne $id)) {
783: $newlocks.=','.$lock;
784: }
785: }
786: &appenv({'session.locks' => $newlocks});
787: &delenv('session.lock.'.$id);
788: }
789:
790: sub remove_all_locks {
791: my $activelocks=$env{'session.locks'};
792: foreach my $lock (split(/\,/,$env{'session.locks'})) {
793: if ($lock=~/\w/) {
794: &remove_lock($lock);
795: }
796: }
797: }
798:
799:
1.369 albertel 800: # ------------------------------------------ Find out current server userload
801: sub userload {
802: my $numusers=0;
803: {
804: opendir(LONIDS,$perlvar{'lonIDsDir'});
805: my $filename;
806: my $curtime=time;
807: while ($filename=readdir(LONIDS)) {
1.925 albertel 808: next if ($filename eq '.' || $filename eq '..');
809: next if ($filename =~ /publicuser_\d+\.id/);
1.404 albertel 810: my ($mtime)=(stat($perlvar{'lonIDsDir'}.'/'.$filename))[9];
1.437 albertel 811: if ($curtime-$mtime < 1800) { $numusers++; }
1.369 albertel 812: }
813: closedir(LONIDS);
814: }
815: my $userloadpercent=0;
816: my $maxuserload=$perlvar{'lonUserLoadLim'};
817: if ($maxuserload) {
1.371 albertel 818: $userloadpercent=100*$numusers/$maxuserload;
1.369 albertel 819: }
1.372 albertel 820: $userloadpercent=sprintf("%.2f",$userloadpercent);
1.369 albertel 821: return $userloadpercent;
1.283 www 822: }
823:
1.1 albertel 824: # ------------------------------ Find server with least workload from spare.tab
1.11 www 825:
1.1 albertel 826: sub spareserver {
1.1083 raeburn 827: my ($loadpercent,$userloadpercent,$want_server_name,$udom) = @_;
1.784 albertel 828: my $spare_server;
1.370 albertel 829: if ($userloadpercent !~ /\d/) { $userloadpercent=0; }
1.784 albertel 830: my $lowest_load=($loadpercent > $userloadpercent) ? $loadpercent
831: : $userloadpercent;
1.1083 raeburn 832: my ($uint_dom,$remotesessions);
833: if (($udom ne '') && (&domain($udom) ne '')) {
834: my $uprimary_id = &Apache::lonnet::domain($udom,'primary');
835: $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);
836: my %udomdefaults = &Apache::lonnet::get_domain_defaults($udom);
837: $remotesessions = $udomdefaults{'remotesessions'};
838: }
1.1123 raeburn 839: my $spareshash = &this_host_spares($udom);
840: if (ref($spareshash) eq 'HASH') {
841: if (ref($spareshash->{'primary'}) eq 'ARRAY') {
842: foreach my $try_server (@{ $spareshash->{'primary'} }) {
843: if ($uint_dom) {
844: next unless (&spare_can_host($udom,$uint_dom,$remotesessions,
845: $try_server));
846: }
847: ($spare_server, $lowest_load) =
848: &compare_server_load($try_server, $spare_server, $lowest_load);
849: }
1.1083 raeburn 850: }
1.784 albertel 851:
1.1123 raeburn 852: my $found_server = ($spare_server ne '' && $lowest_load < 100);
853:
854: if (!$found_server) {
855: if (ref($spareshash->{'default'}) eq 'ARRAY') {
856: foreach my $try_server (@{ $spareshash->{'default'} }) {
857: if ($uint_dom) {
858: next unless (&spare_can_host($udom,$uint_dom,
859: $remotesessions,$try_server));
860: }
861: ($spare_server, $lowest_load) =
862: &compare_server_load($try_server, $spare_server, $lowest_load);
863: }
864: }
865: }
1.784 albertel 866: }
867:
868: if (!$want_server_name) {
1.968 raeburn 869: my $protocol = 'http';
870: if ($protocol{$spare_server} eq 'https') {
871: $protocol = $protocol{$spare_server};
872: }
1.1001 raeburn 873: if (defined($spare_server)) {
874: my $hostname = &hostname($spare_server);
1.1083 raeburn 875: if (defined($hostname)) {
1.1001 raeburn 876: $spare_server = $protocol.'://'.$hostname;
877: }
878: }
1.784 albertel 879: }
880: return $spare_server;
881: }
882:
883: sub compare_server_load {
884: my ($try_server, $spare_server, $lowest_load) = @_;
885:
886: my $loadans = &reply('load', $try_server);
887: my $userloadans = &reply('userload',$try_server);
888:
889: if ($loadans !~ /\d/ && $userloadans !~ /\d/) {
1.1114 raeburn 890: return ($spare_server, $lowest_load); #didn't get a number from the server
1.784 albertel 891: }
892:
893: my $load;
894: if ($loadans =~ /\d/) {
895: if ($userloadans =~ /\d/) {
896: #both are numbers, pick the bigger one
897: $load = ($loadans > $userloadans) ? $loadans
898: : $userloadans;
1.411 albertel 899: } else {
1.784 albertel 900: $load = $loadans;
1.411 albertel 901: }
1.784 albertel 902: } else {
903: $load = $userloadans;
904: }
905:
906: if (($load =~ /\d/) && ($load < $lowest_load)) {
907: $spare_server = $try_server;
908: $lowest_load = $load;
1.370 albertel 909: }
1.784 albertel 910: return ($spare_server,$lowest_load);
1.202 matthew 911: }
1.914 albertel 912:
913: # --------------------------- ask offload servers if user already has a session
914: sub find_existing_session {
915: my ($udom,$uname) = @_;
1.1123 raeburn 916: my $spareshash = &this_host_spares($udom);
917: if (ref($spareshash) eq 'HASH') {
918: if (ref($spareshash->{'primary'}) eq 'ARRAY') {
919: foreach my $try_server (@{ $spareshash->{'primary'} }) {
920: return $try_server if (&has_user_session($try_server, $udom, $uname));
921: }
922: }
923: if (ref($spareshash->{'default'}) eq 'ARRAY') {
924: foreach my $try_server (@{ $spareshash->{'default'} }) {
925: return $try_server if (&has_user_session($try_server, $udom, $uname));
926: }
927: }
1.914 albertel 928: }
929: return;
930: }
931:
932: # -------------------------------- ask if server already has a session for user
933: sub has_user_session {
934: my ($lonid,$udom,$uname) = @_;
935: my $result = &reply(join(':','userhassession',
936: map {&escape($_)} ($udom,$uname)),$lonid);
937: return 1 if ($result eq 'ok');
938:
939: return 0;
940: }
941:
1.1076 raeburn 942: # --------- determine least loaded server in a user's domain which allows login
943:
944: sub choose_server {
1.1115 raeburn 945: my ($udom,$checkloginvia) = @_;
1.1076 raeburn 946: my %domconfhash = &Apache::loncommon::get_domainconf($udom);
1.1077 raeburn 947: my %servers = &get_servers($udom);
1.1076 raeburn 948: my $lowest_load = 30000;
1.1151 raeburn 949: my ($login_host,$hostname,$portal_path,$isredirect);
1.1076 raeburn 950: foreach my $lonhost (keys(%servers)) {
1.1115 raeburn 951: my $loginvia;
952: if ($checkloginvia) {
953: $loginvia = $domconfhash{$udom.'.login.loginvia_'.$lonhost};
1.1116 raeburn 954: if ($loginvia) {
955: my ($server,$path) = split(/:/,$loginvia);
956: ($login_host, $lowest_load) =
957: &compare_server_load($server, $login_host, $lowest_load);
958: if ($login_host eq $server) {
959: $portal_path = $path;
1.1151 raeburn 960: $isredirect = 1;
1.1116 raeburn 961: }
962: } else {
963: ($login_host, $lowest_load) =
964: &compare_server_load($lonhost, $login_host, $lowest_load);
965: if ($login_host eq $lonhost) {
966: $portal_path = '';
1.1151 raeburn 967: $isredirect = '';
1.1116 raeburn 968: }
969: }
970: } else {
1.1076 raeburn 971: ($login_host, $lowest_load) =
1.1116 raeburn 972: &compare_server_load($lonhost, $login_host, $lowest_load);
1.1076 raeburn 973: }
974: }
975: if ($login_host ne '') {
1.1116 raeburn 976: $hostname = &hostname($login_host);
1.1076 raeburn 977: }
1.1151 raeburn 978: return ($login_host,$hostname,$portal_path,$isredirect);
1.1076 raeburn 979: }
980:
1.202 matthew 981: # --------------------------------------------- Try to change a user's password
982:
983: sub changepass {
1.799 raeburn 984: my ($uname,$udom,$currentpass,$newpass,$server,$context)=@_;
1.202 matthew 985: $currentpass = &escape($currentpass);
986: $newpass = &escape($newpass);
1.1030 raeburn 987: my $lonhost = $perlvar{'lonHostID'};
988: my $answer = reply("encrypt:passwd:$udom:$uname:$currentpass:$newpass:$context:$lonhost",
1.202 matthew 989: $server);
990: if (! $answer) {
991: &logthis("No reply on password change request to $server ".
992: "by $uname in domain $udom.");
993: } elsif ($answer =~ "^ok") {
994: &logthis("$uname in $udom successfully changed their password ".
995: "on $server.");
996: } elsif ($answer =~ "^pwchange_failure") {
997: &logthis("$uname in $udom was unable to change their password ".
998: "on $server. The action was blocked by either lcpasswd ".
999: "or pwchange");
1000: } elsif ($answer =~ "^non_authorized") {
1001: &logthis("$uname in $udom did not get their password correct when ".
1002: "attempting to change it on $server.");
1003: } elsif ($answer =~ "^auth_mode_error") {
1004: &logthis("$uname in $udom attempted to change their password despite ".
1005: "not being locally or internally authenticated on $server.");
1006: } elsif ($answer =~ "^unknown_user") {
1007: &logthis("$uname in $udom attempted to change their password ".
1008: "on $server but were unable to because $server is not ".
1009: "their home server.");
1010: } elsif ($answer =~ "^refused") {
1011: &logthis("$server refused to change $uname in $udom password because ".
1012: "it was sent an unencrypted request to change the password.");
1.1030 raeburn 1013: } elsif ($answer =~ "invalid_client") {
1014: &logthis("$server refused to change $uname in $udom password because ".
1015: "it was a reset by e-mail originating from an invalid server.");
1.202 matthew 1016: }
1017: return $answer;
1.1 albertel 1018: }
1019:
1.169 harris41 1020: # ----------------------- Try to determine user's current authentication scheme
1021:
1022: sub queryauthenticate {
1023: my ($uname,$udom)=@_;
1.456 albertel 1024: my $uhome=&homeserver($uname,$udom);
1025: if (!$uhome) {
1026: &logthis("User $uname at $udom is unknown when looking for authentication mechanism");
1027: return 'no_host';
1028: }
1029: my $answer=reply("encrypt:currentauth:$udom:$uname",$uhome);
1030: if ($answer =~ /^(unknown_user|refused|con_lost)/) {
1031: &logthis("User $uname at $udom threw error $answer when checking authentication mechanism");
1.169 harris41 1032: }
1.456 albertel 1033: return $answer;
1.169 harris41 1034: }
1035:
1.1 albertel 1036: # --------- Try to authenticate user from domain's lib servers (first this one)
1.11 www 1037:
1.1 albertel 1038: sub authenticate {
1.1073 raeburn 1039: my ($uname,$upass,$udom,$checkdefauth,$clientcancheckhost)=@_;
1.807 albertel 1040: $upass=&escape($upass);
1041: $uname= &LONCAPA::clean_username($uname);
1.836 www 1042: my $uhome=&homeserver($uname,$udom,1);
1.952 raeburn 1043: my $newhome;
1.836 www 1044: if ((!$uhome) || ($uhome eq 'no_host')) {
1045: # Maybe the machine was offline and only re-appeared again recently?
1046: &reconlonc();
1047: # One more
1.952 raeburn 1048: $uhome=&homeserver($uname,$udom,1);
1049: if (($uhome eq 'no_host') && $checkdefauth) {
1050: if (defined(&domain($udom,'primary'))) {
1051: $newhome=&domain($udom,'primary');
1052: }
1053: if ($newhome ne '') {
1054: $uhome = $newhome;
1055: }
1056: }
1.836 www 1057: if ((!$uhome) || ($uhome eq 'no_host')) {
1058: &logthis("User $uname at $udom is unknown in authenticate");
1.952 raeburn 1059: return 'no_host';
1060: }
1.1 albertel 1061: }
1.1073 raeburn 1062: my $answer=reply("encrypt:auth:$udom:$uname:$upass:$checkdefauth:$clientcancheckhost",$uhome);
1.471 albertel 1063: if ($answer eq 'authorized') {
1.952 raeburn 1064: if ($newhome) {
1065: &logthis("User $uname at $udom authorized by $uhome, but needs account");
1066: return 'no_account_on_host';
1067: } else {
1068: &logthis("User $uname at $udom authorized by $uhome");
1069: return $uhome;
1070: }
1.471 albertel 1071: }
1072: if ($answer eq 'non_authorized') {
1073: &logthis("User $uname at $udom rejected by $uhome");
1074: return 'no_host';
1.9 www 1075: }
1.471 albertel 1076: &logthis("User $uname at $udom threw error $answer when checking authentication mechanism");
1.1 albertel 1077: return 'no_host';
1078: }
1079:
1.1073 raeburn 1080: sub can_host_session {
1.1074 raeburn 1081: my ($udom,$lonhost,$remoterev,$remotesessions,$hostedsessions) = @_;
1.1073 raeburn 1082: my $canhost = 1;
1.1074 raeburn 1083: my $host_idn = &Apache::lonnet::internet_dom($lonhost);
1.1073 raeburn 1084: if (ref($remotesessions) eq 'HASH') {
1085: if (ref($remotesessions->{'excludedomain'}) eq 'ARRAY') {
1.1074 raeburn 1086: if (grep(/^\Q$host_idn\E$/,@{$remotesessions->{'excludedomain'}})) {
1.1073 raeburn 1087: $canhost = 0;
1088: } else {
1089: $canhost = 1;
1090: }
1091: }
1092: if (ref($remotesessions->{'includedomain'}) eq 'ARRAY') {
1.1074 raeburn 1093: if (grep(/^\Q$host_idn\E$/,@{$remotesessions->{'includedomain'}})) {
1.1073 raeburn 1094: $canhost = 1;
1095: } else {
1096: $canhost = 0;
1097: }
1098: }
1099: if ($canhost) {
1100: if ($remotesessions->{'version'} ne '') {
1101: my ($reqmajor,$reqminor) = ($remotesessions->{'version'} =~ /^(\d+)\.(\d+)$/);
1102: if ($reqmajor ne '' && $reqminor ne '') {
1103: if ($remoterev =~ /^\'?(\d+)\.(\d+)/) {
1104: my $major = $1;
1105: my $minor = $2;
1106: if (($major < $reqmajor ) ||
1107: (($major == $reqmajor) && ($minor < $reqminor))) {
1108: $canhost = 0;
1109: }
1110: } else {
1111: $canhost = 0;
1112: }
1113: }
1114: }
1115: }
1116: }
1117: if ($canhost) {
1118: if (ref($hostedsessions) eq 'HASH') {
1.1120 raeburn 1119: my $uprimary_id = &Apache::lonnet::domain($udom,'primary');
1120: my $uint_dom = &Apache::lonnet::internet_dom($uprimary_id);
1.1073 raeburn 1121: if (ref($hostedsessions->{'excludedomain'}) eq 'ARRAY') {
1.1120 raeburn 1122: if (($uint_dom ne '') &&
1123: (grep(/^\Q$uint_dom\E$/,@{$hostedsessions->{'excludedomain'}}))) {
1.1073 raeburn 1124: $canhost = 0;
1125: } else {
1126: $canhost = 1;
1127: }
1128: }
1129: if (ref($hostedsessions->{'includedomain'}) eq 'ARRAY') {
1.1120 raeburn 1130: if (($uint_dom ne '') &&
1131: (grep(/^\Q$uint_dom\E$/,@{$hostedsessions->{'includedomain'}}))) {
1.1073 raeburn 1132: $canhost = 1;
1133: } else {
1134: $canhost = 0;
1135: }
1136: }
1137: }
1138: }
1139: return $canhost;
1140: }
1141:
1.1083 raeburn 1142: sub spare_can_host {
1143: my ($udom,$uint_dom,$remotesessions,$try_server)=@_;
1144: my $canhost=1;
1145: my @intdoms;
1146: my $internet_names = &Apache::lonnet::get_internet_names($try_server);
1147: if (ref($internet_names) eq 'ARRAY') {
1148: @intdoms = @{$internet_names};
1149: }
1150: unless (grep(/^\Q$uint_dom\E$/,@intdoms)) {
1151: my $serverhomeID = &Apache::lonnet::get_server_homeID($try_server);
1152: my $serverhomedom = &Apache::lonnet::host_domain($serverhomeID);
1153: my %defdomdefaults = &Apache::lonnet::get_domain_defaults($serverhomedom);
1154: my $remoterev = &Apache::lonnet::get_server_loncaparev(undef,$try_server);
1155: $canhost = &can_host_session($udom,$try_server,$remoterev,
1156: $remotesessions,
1157: $defdomdefaults{'hostedsessions'});
1158: }
1159: return $canhost;
1160: }
1161:
1.1123 raeburn 1162: sub this_host_spares {
1163: my ($dom) = @_;
1.1126 raeburn 1164: my ($dom_in_use,$lonhost_in_use,$result);
1.1123 raeburn 1165: my @hosts = ¤t_machine_ids();
1166: foreach my $lonhost (@hosts) {
1167: if (&host_domain($lonhost) eq $dom) {
1.1126 raeburn 1168: $dom_in_use = $dom;
1169: $lonhost_in_use = $lonhost;
1.1123 raeburn 1170: last;
1171: }
1172: }
1.1126 raeburn 1173: if ($dom_in_use ne '') {
1174: $result = &spares_for_offload($dom_in_use,$lonhost_in_use);
1175: }
1176: if (ref($result) ne 'HASH') {
1177: $lonhost_in_use = $perlvar{'lonHostID'};
1178: $dom_in_use = &host_domain($lonhost_in_use);
1179: $result = &spares_for_offload($dom_in_use,$lonhost_in_use);
1180: if (ref($result) ne 'HASH') {
1181: $result = \%spareid;
1182: }
1183: }
1184: return $result;
1185: }
1186:
1187: sub spares_for_offload {
1188: my ($dom_in_use,$lonhost_in_use) = @_;
1189: my ($result,$cached)=&is_cached_new('spares',$dom_in_use);
1.1123 raeburn 1190: if (defined($cached)) {
1191: return $result;
1192: } else {
1.1126 raeburn 1193: my $cachetime = 60*60*24;
1194: my %domconfig =
1195: &Apache::lonnet::get_dom('configuration',['usersessions'],$dom_in_use);
1196: if (ref($domconfig{'usersessions'}) eq 'HASH') {
1197: if (ref($domconfig{'usersessions'}{'spares'}) eq 'HASH') {
1198: if (ref($domconfig{'usersessions'}{'spares'}{$lonhost_in_use}) eq 'HASH') {
1199: return &do_cache_new('spares',$dom_in_use,$domconfig{'usersessions'}{'spares'}{$lonhost_in_use},$cachetime);
1.1123 raeburn 1200: }
1201: }
1202: }
1203: }
1.1126 raeburn 1204: return;
1.1123 raeburn 1205: }
1206:
1.1129 raeburn 1207: sub get_lonbalancer_config {
1208: my ($servers) = @_;
1209: my ($currbalancer,$currtargets);
1210: if (ref($servers) eq 'HASH') {
1211: foreach my $server (keys(%{$servers})) {
1212: my %what = (
1213: spareid => 1,
1214: perlvar => 1,
1215: );
1216: my ($result,$returnhash) = &get_remote_globals($server,\%what);
1217: if ($result eq 'ok') {
1218: if (ref($returnhash) eq 'HASH') {
1219: if (ref($returnhash->{'perlvar'}) eq 'HASH') {
1220: if ($returnhash->{'perlvar'}->{'lonBalancer'} eq 'yes') {
1221: $currbalancer = $server;
1222: $currtargets = {};
1223: if (ref($returnhash->{'spareid'}) eq 'HASH') {
1224: if (ref($returnhash->{'spareid'}->{'primary'}) eq 'ARRAY') {
1225: $currtargets->{'primary'} = $returnhash->{'spareid'}->{'primary'};
1226: }
1227: if (ref($returnhash->{'spareid'}->{'default'}) eq 'ARRAY') {
1228: $currtargets->{'default'} = $returnhash->{'spareid'}->{'default'};
1229: }
1230: }
1231: last;
1232: }
1233: }
1234: }
1235: }
1236: }
1237: }
1238: return ($currbalancer,$currtargets);
1239: }
1240:
1241: sub check_loadbalancing {
1242: my ($uname,$udom) = @_;
1.1191 raeburn 1243: my ($is_balancer,$currtargets,$currrules,$dom_in_use,$homeintdom,
1244: $rule_in_effect,$offloadto,$otherserver);
1.1129 raeburn 1245: my $lonhost = $perlvar{'lonHostID'};
1.1175 raeburn 1246: my @hosts = ¤t_machine_ids();
1.1129 raeburn 1247: my $uprimary_id = &Apache::lonnet::domain($udom,'primary');
1248: my $uintdom = &Apache::lonnet::internet_dom($uprimary_id);
1249: my $intdom = &Apache::lonnet::internet_dom($lonhost);
1250: my $serverhomedom = &host_domain($lonhost);
1251:
1252: my $cachetime = 60*60*24;
1253:
1254: if (($uintdom ne '') && ($uintdom eq $intdom)) {
1255: $dom_in_use = $udom;
1256: $homeintdom = 1;
1257: } else {
1258: $dom_in_use = $serverhomedom;
1259: }
1260: my ($result,$cached)=&is_cached_new('loadbalancing',$dom_in_use);
1261: unless (defined($cached)) {
1262: my %domconfig =
1263: &Apache::lonnet::get_dom('configuration',['loadbalancing'],$dom_in_use);
1264: if (ref($domconfig{'loadbalancing'}) eq 'HASH') {
1.1130 raeburn 1265: $result = &do_cache_new('loadbalancing',$dom_in_use,$domconfig{'loadbalancing'},$cachetime);
1.1129 raeburn 1266: }
1267: }
1268: if (ref($result) eq 'HASH') {
1.1191 raeburn 1269: ($is_balancer,$currtargets,$currrules) =
1270: &check_balancer_result($result,@hosts);
1.1129 raeburn 1271: if ($is_balancer) {
1272: if (ref($currrules) eq 'HASH') {
1273: if ($homeintdom) {
1274: if ($uname ne '') {
1275: if (($currrules->{'_LC_adv'} ne '') || ($currrules->{'_LC_author'} ne '')) {
1276: my ($is_adv,$is_author) = &is_advanced_user($udom,$uname);
1277: if (($currrules->{'_LC_author'} ne '') && ($is_author)) {
1278: $rule_in_effect = $currrules->{'_LC_author'};
1279: } elsif (($currrules->{'_LC_adv'} ne '') && ($is_adv)) {
1280: $rule_in_effect = $currrules->{'_LC_adv'}
1281: }
1282: }
1283: if ($rule_in_effect eq '') {
1284: my %userenv = &userenvironment($udom,$uname,'inststatus');
1285: if ($userenv{'inststatus'} ne '') {
1286: my @statuses = map { &unescape($_); } split(/:/,$userenv{'inststatus'});
1287: my ($othertitle,$usertypes,$types) =
1288: &Apache::loncommon::sorted_inst_types($udom);
1289: if (ref($types) eq 'ARRAY') {
1290: foreach my $type (@{$types}) {
1291: if (grep(/^\Q$type\E$/,@statuses)) {
1292: if (exists($currrules->{$type})) {
1293: $rule_in_effect = $currrules->{$type};
1294: }
1295: }
1296: }
1297: }
1298: } else {
1299: if (exists($currrules->{'default'})) {
1300: $rule_in_effect = $currrules->{'default'};
1301: }
1302: }
1303: }
1304: } else {
1305: if (exists($currrules->{'default'})) {
1306: $rule_in_effect = $currrules->{'default'};
1307: }
1308: }
1309: } else {
1310: if ($currrules->{'_LC_external'} ne '') {
1311: $rule_in_effect = $currrules->{'_LC_external'};
1312: }
1313: }
1314: $offloadto = &get_loadbalancer_targets($rule_in_effect,$currtargets,
1315: $uname,$udom);
1316: }
1317: }
1318: } elsif (($homeintdom) && ($udom ne $serverhomedom)) {
1319: my ($result,$cached)=&is_cached_new('loadbalancing',$serverhomedom);
1320: unless (defined($cached)) {
1321: my %domconfig =
1322: &Apache::lonnet::get_dom('configuration',['loadbalancing'],$serverhomedom);
1323: if (ref($domconfig{'loadbalancing'}) eq 'HASH') {
1.1130 raeburn 1324: $result = &do_cache_new('loadbalancing',$dom_in_use,$domconfig{'loadbalancing'},$cachetime);
1.1129 raeburn 1325: }
1326: }
1327: if (ref($result) eq 'HASH') {
1.1191 raeburn 1328: ($is_balancer,$currtargets,$currrules) =
1329: &check_balancer_result($result,@hosts);
1330: if ($is_balancer) {
1.1129 raeburn 1331: if (ref($currrules) eq 'HASH') {
1332: if ($currrules->{'_LC_internetdom'} ne '') {
1333: $rule_in_effect = $currrules->{'_LC_internetdom'};
1334: }
1335: }
1336: $offloadto = &get_loadbalancer_targets($rule_in_effect,$currtargets,
1337: $uname,$udom);
1338: }
1339: } else {
1340: if ($perlvar{'lonBalancer'} eq 'yes') {
1341: $is_balancer = 1;
1342: $offloadto = &this_host_spares($dom_in_use);
1343: }
1344: }
1345: } else {
1346: if ($perlvar{'lonBalancer'} eq 'yes') {
1347: $is_balancer = 1;
1348: $offloadto = &this_host_spares($dom_in_use);
1349: }
1350: }
1.1176 raeburn 1351: if ($is_balancer) {
1352: my $lowest_load = 30000;
1353: if (ref($offloadto) eq 'HASH') {
1354: if (ref($offloadto->{'primary'}) eq 'ARRAY') {
1355: foreach my $try_server (@{$offloadto->{'primary'}}) {
1356: ($otherserver,$lowest_load) =
1357: &compare_server_load($try_server,$otherserver,$lowest_load);
1358: }
1.1129 raeburn 1359: }
1.1176 raeburn 1360: my $found_server = ($otherserver ne '' && $lowest_load < 100);
1.1129 raeburn 1361:
1.1176 raeburn 1362: if (!$found_server) {
1363: if (ref($offloadto->{'default'}) eq 'ARRAY') {
1364: foreach my $try_server (@{$offloadto->{'default'}}) {
1365: ($otherserver,$lowest_load) =
1366: &compare_server_load($try_server,$otherserver,$lowest_load);
1367: }
1368: }
1369: }
1370: } elsif (ref($offloadto) eq 'ARRAY') {
1371: if (@{$offloadto} == 1) {
1372: $otherserver = $offloadto->[0];
1373: } elsif (@{$offloadto} > 1) {
1374: foreach my $try_server (@{$offloadto}) {
1.1129 raeburn 1375: ($otherserver,$lowest_load) =
1376: &compare_server_load($try_server,$otherserver,$lowest_load);
1377: }
1378: }
1379: }
1.1176 raeburn 1380: if (($otherserver ne '') && (grep(/^\Q$otherserver\E$/,@hosts))) {
1381: $is_balancer = 0;
1382: if ($uname ne '' && $udom ne '') {
1383: if (($env{'user.name'} eq $uname) && ($env{'user.domain'} eq $udom)) {
1384:
1385: &appenv({'user.loadbalexempt' => $lonhost,
1386: 'user.loadbalcheck.time' => time});
1387: }
1.1129 raeburn 1388: }
1389: }
1390: }
1391: return ($is_balancer,$otherserver);
1392: }
1393:
1.1191 raeburn 1394: sub check_balancer_result {
1395: my ($result,@hosts) = @_;
1396: my ($is_balancer,$currtargets,$currrules);
1397: if (ref($result) eq 'HASH') {
1398: if ($result->{'lonhost'} ne '') {
1399: my $currbalancer = $result->{'lonhost'};
1400: if (grep(/^\Q$currbalancer\E$/,@hosts)) {
1401: $is_balancer = 1;
1402: $currtargets = $result->{'targets'};
1403: $currrules = $result->{'rules'};
1404: }
1405: } else {
1406: foreach my $key (keys(%{$result})) {
1407: if (($key ne '') && (grep(/^\Q$key\E$/,@hosts)) &&
1408: (ref($result->{$key}) eq 'HASH')) {
1409: $is_balancer = 1;
1410: $currrules = $result->{$key}{'rules'};
1411: $currtargets = $result->{$key}{'targets'};
1412: last;
1413: }
1414: }
1415: }
1416: }
1417: return ($is_balancer,$currtargets,$currrules);
1418: }
1419:
1.1129 raeburn 1420: sub get_loadbalancer_targets {
1421: my ($rule_in_effect,$currtargets,$uname,$udom) = @_;
1422: my $offloadto;
1.1175 raeburn 1423: if ($rule_in_effect eq 'none') {
1424: return [$perlvar{'lonHostID'}];
1425: } elsif ($rule_in_effect eq '') {
1.1129 raeburn 1426: $offloadto = $currtargets;
1427: } else {
1428: if ($rule_in_effect eq 'homeserver') {
1429: my $homeserver = &homeserver($uname,$udom);
1430: if ($homeserver ne 'no_host') {
1431: $offloadto = [$homeserver];
1432: }
1433: } elsif ($rule_in_effect eq 'externalbalancer') {
1434: my %domconfig =
1435: &Apache::lonnet::get_dom('configuration',['loadbalancing'],$udom);
1436: if (ref($domconfig{'loadbalancing'}) eq 'HASH') {
1437: if ($domconfig{'loadbalancing'}{'lonhost'} ne '') {
1438: if (&hostname($domconfig{'loadbalancing'}{'lonhost'}) ne '') {
1439: $offloadto = [$domconfig{'loadbalancing'}{'lonhost'}];
1440: }
1441: }
1442: } else {
1.1178 raeburn 1443: my %servers = &internet_dom_servers($udom);
1.1129 raeburn 1444: my ($remotebalancer,$remotetargets) = &get_lonbalancer_config(\%servers);
1445: if (&hostname($remotebalancer) ne '') {
1446: $offloadto = [$remotebalancer];
1447: }
1448: }
1449: } elsif (&hostname($rule_in_effect) ne '') {
1450: $offloadto = [$rule_in_effect];
1451: }
1452: }
1453: return $offloadto;
1454: }
1455:
1.1127 raeburn 1456: sub internet_dom_servers {
1457: my ($dom) = @_;
1458: my (%uniqservers,%servers);
1459: my $primaryserver = &hostname(&domain($dom,'primary'));
1460: my @machinedoms = &machine_domains($primaryserver);
1461: foreach my $mdom (@machinedoms) {
1462: my %currservers = %servers;
1463: my %server = &get_servers($mdom);
1464: %servers = (%currservers,%server);
1465: }
1466: my %by_hostname;
1467: foreach my $id (keys(%servers)) {
1468: push(@{$by_hostname{$servers{$id}}},$id);
1469: }
1470: foreach my $hostname (sort(keys(%by_hostname))) {
1471: if (@{$by_hostname{$hostname}} > 1) {
1472: my $match = 0;
1473: foreach my $id (@{$by_hostname{$hostname}}) {
1474: if (&host_domain($id) eq $dom) {
1475: $uniqservers{$id} = $hostname;
1476: $match = 1;
1477: }
1478: }
1479: unless ($match) {
1480: $uniqservers{$by_hostname{$hostname}[0]} = $hostname;
1481: }
1482: } else {
1483: $uniqservers{$by_hostname{$hostname}[0]} = $hostname;
1484: }
1485: }
1486: return %uniqservers;
1487: }
1488:
1.1 albertel 1489: # ---------------------- Find the homebase for a user from domain's lib servers
1.11 www 1490:
1.599 albertel 1491: my %homecache;
1.1 albertel 1492: sub homeserver {
1.230 stredwic 1493: my ($uname,$udom,$ignoreBadCache)=@_;
1.1 albertel 1494: my $index="$uname:$udom";
1.426 albertel 1495:
1.599 albertel 1496: if (exists($homecache{$index})) { return $homecache{$index}; }
1.841 albertel 1497:
1498: my %servers = &get_servers($udom,'library');
1499: foreach my $tryserver (keys(%servers)) {
1.230 stredwic 1500: next if ($ignoreBadCache ne 'true' &&
1.231 stredwic 1501: exists($badServerCache{$tryserver}));
1.841 albertel 1502:
1503: my $answer=reply("home:$udom:$uname",$tryserver);
1504: if ($answer eq 'found') {
1505: delete($badServerCache{$tryserver});
1506: return $homecache{$index}=$tryserver;
1507: } elsif ($answer eq 'no_host') {
1508: $badServerCache{$tryserver}=1;
1509: }
1.1 albertel 1510: }
1511: return 'no_host';
1.70 www 1512: }
1513:
1514: # ------------------------------------- Find the usernames behind a list of IDs
1515:
1516: sub idget {
1517: my ($udom,@ids)=@_;
1518: my %returnhash=();
1519:
1.841 albertel 1520: my %servers = &get_servers($udom,'library');
1521: foreach my $tryserver (keys(%servers)) {
1522: my $idlist=join('&',@ids);
1523: $idlist=~tr/A-Z/a-z/;
1524: my $reply=&reply("idget:$udom:".$idlist,$tryserver);
1525: my @answer=();
1526: if (($reply ne 'con_lost') && ($reply!~/^error\:/)) {
1527: @answer=split(/\&/,$reply);
1528: } ;
1529: my $i;
1530: for ($i=0;$i<=$#ids;$i++) {
1531: if ($answer[$i]) {
1532: $returnhash{$ids[$i]}=$answer[$i];
1533: }
1534: }
1535: }
1.70 www 1536: return %returnhash;
1537: }
1538:
1539: # ------------------------------------- Find the IDs behind a list of usernames
1540:
1541: sub idrget {
1542: my ($udom,@unames)=@_;
1543: my %returnhash=();
1.800 albertel 1544: foreach my $uname (@unames) {
1545: $returnhash{$uname}=(&userenvironment($udom,$uname,'id'))[1];
1.191 harris41 1546: }
1.70 www 1547: return %returnhash;
1548: }
1549:
1550: # ------------------------------- Store away a list of names and associated IDs
1551:
1552: sub idput {
1553: my ($udom,%ids)=@_;
1554: my %servers=();
1.800 albertel 1555: foreach my $uname (keys(%ids)) {
1556: &cput('environment',{'id'=>$ids{$uname}},$udom,$uname);
1557: my $uhom=&homeserver($uname,$udom);
1.70 www 1558: if ($uhom ne 'no_host') {
1.800 albertel 1559: my $id=&escape($ids{$uname});
1.70 www 1560: $id=~tr/A-Z/a-z/;
1.800 albertel 1561: my $esc_unam=&escape($uname);
1.70 www 1562: if ($servers{$uhom}) {
1.800 albertel 1563: $servers{$uhom}.='&'.$id.'='.$esc_unam;
1.70 www 1564: } else {
1.800 albertel 1565: $servers{$uhom}=$id.'='.$esc_unam;
1.70 www 1566: }
1567: }
1.191 harris41 1568: }
1.800 albertel 1569: foreach my $server (keys(%servers)) {
1570: &critical('idput:'.$udom.':'.$servers{$server},$server);
1.191 harris41 1571: }
1.344 www 1572: }
1573:
1.1023 raeburn 1574: # ------------------------------dump from db file owned by domainconfig user
1.1012 raeburn 1575: sub dump_dom {
1.1165 droeschl 1576: my ($namespace, $udom, $regexp) = @_;
1577:
1578: $udom ||= $env{'user.domain'};
1579:
1580: return () unless $udom;
1581:
1582: return &dump($namespace, $udom, &get_domainconfiguser($udom), $regexp);
1.1012 raeburn 1583: }
1584:
1.1023 raeburn 1585: # ------------------------------------------ get items from domain db files
1.806 raeburn 1586:
1587: sub get_dom {
1.860 raeburn 1588: my ($namespace,$storearr,$udom,$uhome)=@_;
1.806 raeburn 1589: my $items='';
1590: foreach my $item (@$storearr) {
1591: $items.=&escape($item).'&';
1592: }
1593: $items=~s/\&$//;
1.860 raeburn 1594: if (!$udom) {
1595: $udom=$env{'user.domain'};
1596: if (defined(&domain($udom,'primary'))) {
1597: $uhome=&domain($udom,'primary');
1598: } else {
1.874 albertel 1599: undef($uhome);
1.860 raeburn 1600: }
1601: } else {
1602: if (!$uhome) {
1603: if (defined(&domain($udom,'primary'))) {
1604: $uhome=&domain($udom,'primary');
1605: }
1606: }
1607: }
1608: if ($udom && $uhome && ($uhome ne 'no_host')) {
1.806 raeburn 1609: my $rep=&reply("getdom:$udom:$namespace:$items",$uhome);
1.866 raeburn 1610: my %returnhash;
1.875 albertel 1611: if ($rep eq '' || $rep =~ /^error: 2 /) {
1.866 raeburn 1612: return %returnhash;
1613: }
1.806 raeburn 1614: my @pairs=split(/\&/,$rep);
1615: if ( $#pairs==0 && $pairs[0] =~ /^(con_lost|error|no_such_host)/i) {
1616: return @pairs;
1617: }
1618: my $i=0;
1619: foreach my $item (@$storearr) {
1620: $returnhash{$item}=&thaw_unescape($pairs[$i]);
1621: $i++;
1622: }
1623: return %returnhash;
1624: } else {
1.880 banghart 1625: &logthis("get_dom failed - no homeserver and/or domain ($udom) ($uhome)");
1.806 raeburn 1626: }
1627: }
1628:
1629: # -------------------------------------------- put items in domain db files
1630:
1631: sub put_dom {
1.860 raeburn 1632: my ($namespace,$storehash,$udom,$uhome)=@_;
1633: if (!$udom) {
1634: $udom=$env{'user.domain'};
1635: if (defined(&domain($udom,'primary'))) {
1636: $uhome=&domain($udom,'primary');
1637: } else {
1.874 albertel 1638: undef($uhome);
1.860 raeburn 1639: }
1640: } else {
1641: if (!$uhome) {
1642: if (defined(&domain($udom,'primary'))) {
1643: $uhome=&domain($udom,'primary');
1644: }
1645: }
1646: }
1647: if ($udom && $uhome && ($uhome ne 'no_host')) {
1.806 raeburn 1648: my $items='';
1649: foreach my $item (keys(%$storehash)) {
1650: $items.=&escape($item).'='.&freeze_escape($$storehash{$item}).'&';
1651: }
1652: $items=~s/\&$//;
1653: return &reply("putdom:$udom:$namespace:$items",$uhome);
1654: } else {
1.860 raeburn 1655: &logthis("put_dom failed - no homeserver and/or domain");
1.806 raeburn 1656: }
1657: }
1658:
1.1023 raeburn 1659: # --------------------- newput for items in db file owned by domainconfig user
1.1012 raeburn 1660: sub newput_dom {
1.1023 raeburn 1661: my ($namespace,$storehash,$udom) = @_;
1.1012 raeburn 1662: my $result;
1663: if (!$udom) {
1664: $udom=$env{'user.domain'};
1665: }
1.1023 raeburn 1666: if ($udom) {
1667: my $uname = &get_domainconfiguser($udom);
1668: $result = &newput($namespace,$storehash,$udom,$uname);
1.1012 raeburn 1669: }
1670: return $result;
1671: }
1672:
1.1023 raeburn 1673: # --------------------- delete for items in db file owned by domainconfig user
1.1012 raeburn 1674: sub del_dom {
1.1023 raeburn 1675: my ($namespace,$storearr,$udom)=@_;
1.1012 raeburn 1676: if (ref($storearr) eq 'ARRAY') {
1677: if (!$udom) {
1678: $udom=$env{'user.domain'};
1679: }
1.1023 raeburn 1680: if ($udom) {
1681: my $uname = &get_domainconfiguser($udom);
1682: return &del($namespace,$storearr,$udom,$uname);
1.1012 raeburn 1683: }
1684: }
1685: }
1686:
1.1023 raeburn 1687: # ----------------------------------construct domainconfig user for a domain
1688: sub get_domainconfiguser {
1689: my ($udom) = @_;
1690: return $udom.'-domainconfig';
1691: }
1692:
1.837 raeburn 1693: sub retrieve_inst_usertypes {
1694: my ($udom) = @_;
1695: my (%returnhash,@order);
1.989 raeburn 1696: my %domdefs = &Apache::lonnet::get_domain_defaults($udom);
1697: if ((ref($domdefs{'inststatustypes'}) eq 'HASH') &&
1698: (ref($domdefs{'inststatusorder'}) eq 'ARRAY')) {
1699: %returnhash = %{$domdefs{'inststatustypes'}};
1700: @order = @{$domdefs{'inststatusorder'}};
1701: } else {
1702: if (defined(&domain($udom,'primary'))) {
1703: my $uhome=&domain($udom,'primary');
1704: my $rep=&reply("inst_usertypes:$udom",$uhome);
1705: if ($rep =~ /^(con_lost|error|no_such_host|refused)/) {
1706: &logthis("get_dom failed - $rep returned from $uhome in domain: $udom");
1707: return (\%returnhash,\@order);
1708: }
1709: my ($hashitems,$orderitems) = split(/:/,$rep);
1710: my @pairs=split(/\&/,$hashitems);
1711: foreach my $item (@pairs) {
1712: my ($key,$value)=split(/=/,$item,2);
1713: $key = &unescape($key);
1714: next if ($key =~ /^error: 2 /);
1715: $returnhash{$key}=&thaw_unescape($value);
1716: }
1717: my @esc_order = split(/\&/,$orderitems);
1718: foreach my $item (@esc_order) {
1719: push(@order,&unescape($item));
1720: }
1721: } else {
1722: &logthis("get_dom failed - no primary domain server for $udom");
1.837 raeburn 1723: }
1724: }
1725: return (\%returnhash,\@order);
1726: }
1727:
1.868 raeburn 1728: sub is_domainimage {
1729: my ($url) = @_;
1730: if ($url=~m-^/+res/+($match_domain)/+\1\-domainconfig/+(img|logo|domlogo)/+-) {
1731: if (&domain($1) ne '') {
1732: return '1';
1733: }
1734: }
1735: return;
1736: }
1737:
1.899 raeburn 1738: sub inst_directory_query {
1739: my ($srch) = @_;
1740: my $udom = $srch->{'srchdomain'};
1741: my %results;
1742: my $homeserver = &domain($udom,'primary');
1.909 raeburn 1743: my $outcome;
1.899 raeburn 1744: if ($homeserver ne '') {
1.904 albertel 1745: my $queryid=&reply("querysend:instdirsearch:".
1746: &escape($srch->{'srchby'}).':'.
1747: &escape($srch->{'srchterm'}).':'.
1748: &escape($srch->{'srchtype'}),$homeserver);
1749: my $host=&hostname($homeserver);
1750: if ($queryid !~/^\Q$host\E\_/) {
1751: &logthis('instituional directory search invalid queryid: '.$queryid.' for host: '.$homeserver.'in domain '.$udom);
1752: return;
1753: }
1754: my $response = &get_query_reply($queryid);
1755: my $maxtries = 5;
1756: my $tries = 1;
1757: while (($response=~/^timeout/) && ($tries < $maxtries)) {
1758: $response = &get_query_reply($queryid);
1759: $tries ++;
1760: }
1761:
1762: if (!&error($response) && $response ne 'refused') {
1.909 raeburn 1763: if ($response eq 'unavailable') {
1764: $outcome = $response;
1765: } else {
1766: $outcome = 'ok';
1767: my @matches = split(/\n/,$response);
1768: foreach my $match (@matches) {
1769: my ($key,$value) = split(/=/,$match);
1770: $results{&unescape($key).':'.$udom} = &thaw_unescape($value);
1771: }
1.899 raeburn 1772: }
1773: }
1774: }
1.909 raeburn 1775: return ($outcome,%results);
1.899 raeburn 1776: }
1777:
1778: sub usersearch {
1779: my ($srch) = @_;
1780: my $dom = $srch->{'srchdomain'};
1781: my %results;
1782: my %libserv = &all_library();
1783: my $query = 'usersearch';
1784: foreach my $tryserver (keys(%libserv)) {
1785: if (&host_domain($tryserver) eq $dom) {
1786: my $host=&hostname($tryserver);
1787: my $queryid=
1.911 raeburn 1788: &reply("querysend:".&escape($query).':'.
1789: &escape($srch->{'srchby'}).':'.
1.899 raeburn 1790: &escape($srch->{'srchtype'}).':'.
1791: &escape($srch->{'srchterm'}),$tryserver);
1792: if ($queryid !~/^\Q$host\E\_/) {
1793: &logthis('usersearch: invalid queryid: '.$queryid.' for host: '.$host.'in domain '.$dom.' and server: '.$tryserver);
1.902 raeburn 1794: next;
1.899 raeburn 1795: }
1796: my $reply = &get_query_reply($queryid);
1797: my $maxtries = 1;
1798: my $tries = 1;
1799: while (($reply=~/^timeout/) && ($tries < $maxtries)) {
1800: $reply = &get_query_reply($queryid);
1801: $tries ++;
1802: }
1803: if ( ($reply =~/^timeout/) || ($reply =~/^error/) ) {
1804: &logthis('usersrch error: '.$reply.' for '.$dom.' - searching for : '.$srch->{'srchterm'}.' by '.$srch->{'srchby'}.' ('.$srch->{'srchtype'}.') - maxtries: '.$maxtries.' tries: '.$tries);
1805: } else {
1.911 raeburn 1806: my @matches;
1807: if ($reply =~ /\n/) {
1808: @matches = split(/\n/,$reply);
1809: } else {
1810: @matches = split(/\&/,$reply);
1811: }
1.899 raeburn 1812: foreach my $match (@matches) {
1813: my ($uname,$udom,%userhash);
1.911 raeburn 1814: foreach my $entry (split(/:/,$match)) {
1815: my ($key,$value) =
1816: map {&unescape($_);} split(/=/,$entry);
1.899 raeburn 1817: $userhash{$key} = $value;
1818: if ($key eq 'username') {
1819: $uname = $value;
1820: } elsif ($key eq 'domain') {
1821: $udom = $value;
1.911 raeburn 1822: }
1.899 raeburn 1823: }
1824: $results{$uname.':'.$udom} = \%userhash;
1825: }
1826: }
1827: }
1828: }
1829: return %results;
1830: }
1831:
1.912 raeburn 1832: sub get_instuser {
1833: my ($udom,$uname,$id) = @_;
1834: my $homeserver = &domain($udom,'primary');
1835: my ($outcome,%results);
1836: if ($homeserver ne '') {
1837: my $queryid=&reply("querysend:getinstuser:".&escape($uname).':'.
1838: &escape($id).':'.&escape($udom),$homeserver);
1839: my $host=&hostname($homeserver);
1840: if ($queryid !~/^\Q$host\E\_/) {
1841: &logthis('get_instuser invalid queryid: '.$queryid.' for host: '.$homeserver.'in domain '.$udom);
1842: return;
1843: }
1844: my $response = &get_query_reply($queryid);
1845: my $maxtries = 5;
1846: my $tries = 1;
1847: while (($response=~/^timeout/) && ($tries < $maxtries)) {
1848: $response = &get_query_reply($queryid);
1849: $tries ++;
1850: }
1851: if (!&error($response) && $response ne 'refused') {
1852: if ($response eq 'unavailable') {
1853: $outcome = $response;
1854: } else {
1855: $outcome = 'ok';
1856: my @matches = split(/\n/,$response);
1857: foreach my $match (@matches) {
1858: my ($key,$value) = split(/=/,$match);
1859: $results{&unescape($key)} = &thaw_unescape($value);
1860: }
1861: }
1862: }
1863: }
1864: my %userinfo;
1865: if (ref($results{$uname}) eq 'HASH') {
1866: %userinfo = %{$results{$uname}};
1867: }
1868: return ($outcome,%userinfo);
1869: }
1870:
1871: sub inst_rulecheck {
1.923 raeburn 1872: my ($udom,$uname,$id,$item,$rules) = @_;
1.912 raeburn 1873: my %returnhash;
1874: if ($udom ne '') {
1875: if (ref($rules) eq 'ARRAY') {
1876: @{$rules} = map {&escape($_);} (@{$rules});
1877: my $rulestr = join(':',@{$rules});
1878: my $homeserver=&domain($udom,'primary');
1879: if (($homeserver ne '') && ($homeserver ne 'no_host')) {
1.923 raeburn 1880: my $response;
1881: if ($item eq 'username') {
1882: $response=&unescape(&reply('instrulecheck:'.&escape($udom).
1883: ':'.&escape($uname).':'.$rulestr,
1.912 raeburn 1884: $homeserver));
1.923 raeburn 1885: } elsif ($item eq 'id') {
1886: $response=&unescape(&reply('instidrulecheck:'.&escape($udom).
1887: ':'.&escape($id).':'.$rulestr,
1888: $homeserver));
1.945 raeburn 1889: } elsif ($item eq 'selfcreate') {
1890: $response=&unescape(&reply('instselfcreatecheck:'.
1.943 raeburn 1891: &escape($udom).':'.&escape($uname).
1892: ':'.$rulestr,$homeserver));
1.923 raeburn 1893: }
1.912 raeburn 1894: if ($response ne 'refused') {
1895: my @pairs=split(/\&/,$response);
1896: foreach my $item (@pairs) {
1897: my ($key,$value)=split(/=/,$item,2);
1898: $key = &unescape($key);
1899: next if ($key =~ /^error: 2 /);
1900: $returnhash{$key}=&thaw_unescape($value);
1901: }
1902: }
1903: }
1904: }
1905: }
1906: return %returnhash;
1907: }
1908:
1909: sub inst_userrules {
1.923 raeburn 1910: my ($udom,$check) = @_;
1.912 raeburn 1911: my (%ruleshash,@ruleorder);
1912: if ($udom ne '') {
1913: my $homeserver=&domain($udom,'primary');
1914: if (($homeserver ne '') && ($homeserver ne 'no_host')) {
1.923 raeburn 1915: my $response;
1916: if ($check eq 'id') {
1917: $response=&reply('instidrules:'.&escape($udom),
1.912 raeburn 1918: $homeserver);
1.943 raeburn 1919: } elsif ($check eq 'email') {
1920: $response=&reply('instemailrules:'.&escape($udom),
1921: $homeserver);
1.923 raeburn 1922: } else {
1923: $response=&reply('instuserrules:'.&escape($udom),
1924: $homeserver);
1925: }
1.912 raeburn 1926: if (($response ne 'refused') && ($response ne 'error') &&
1.923 raeburn 1927: ($response ne 'unknown_cmd') &&
1.912 raeburn 1928: ($response ne 'no_such_host')) {
1929: my ($hashitems,$orderitems) = split(/:/,$response);
1930: my @pairs=split(/\&/,$hashitems);
1931: foreach my $item (@pairs) {
1932: my ($key,$value)=split(/=/,$item,2);
1933: $key = &unescape($key);
1934: next if ($key =~ /^error: 2 /);
1935: $ruleshash{$key}=&thaw_unescape($value);
1936: }
1937: my @esc_order = split(/\&/,$orderitems);
1938: foreach my $item (@esc_order) {
1939: push(@ruleorder,&unescape($item));
1940: }
1941: }
1942: }
1943: }
1944: return (\%ruleshash,\@ruleorder);
1945: }
1946:
1.976 raeburn 1947: # ------------- Get Authentication, Language and User Tools Defaults for Domain
1.943 raeburn 1948:
1949: sub get_domain_defaults {
1950: my ($domain) = @_;
1951: my $cachetime = 60*60*24;
1952: my ($result,$cached)=&is_cached_new('domdefaults',$domain);
1953: if (defined($cached)) {
1954: if (ref($result) eq 'HASH') {
1955: return %{$result};
1956: }
1957: }
1958: my %domdefaults;
1959: my %domconfig =
1.989 raeburn 1960: &Apache::lonnet::get_dom('configuration',['defaults','quotas',
1.1047 raeburn 1961: 'requestcourses','inststatus',
1.1183 raeburn 1962: 'coursedefaults','usersessions',
1963: 'requestauthor'],$domain);
1.943 raeburn 1964: if (ref($domconfig{'defaults'}) eq 'HASH') {
1965: $domdefaults{'lang_def'} = $domconfig{'defaults'}{'lang_def'};
1966: $domdefaults{'auth_def'} = $domconfig{'defaults'}{'auth_def'};
1967: $domdefaults{'auth_arg_def'} = $domconfig{'defaults'}{'auth_arg_def'};
1.982 raeburn 1968: $domdefaults{'timezone_def'} = $domconfig{'defaults'}{'timezone_def'};
1.985 raeburn 1969: $domdefaults{'datelocale_def'} = $domconfig{'defaults'}{'datelocale_def'};
1.1147 raeburn 1970: $domdefaults{'portal_def'} = $domconfig{'defaults'}{'portal_def'};
1.943 raeburn 1971: } else {
1972: $domdefaults{'lang_def'} = &domain($domain,'lang_def');
1973: $domdefaults{'auth_def'} = &domain($domain,'auth_def');
1974: $domdefaults{'auth_arg_def'} = &domain($domain,'auth_arg_def');
1975: }
1.976 raeburn 1976: if (ref($domconfig{'quotas'}) eq 'HASH') {
1977: if (ref($domconfig{'quotas'}{'defaultquota'}) eq 'HASH') {
1978: $domdefaults{'defaultquota'} = $domconfig{'quotas'}{'defaultquota'};
1979: } else {
1980: $domdefaults{'defaultquota'} = $domconfig{'quotas'};
1981: }
1.1177 raeburn 1982: my @usertools = ('aboutme','blog','webdav','portfolio');
1.976 raeburn 1983: foreach my $item (@usertools) {
1984: if (ref($domconfig{'quotas'}{$item}) eq 'HASH') {
1985: $domdefaults{$item} = $domconfig{'quotas'}{$item};
1986: }
1987: }
1988: }
1.985 raeburn 1989: if (ref($domconfig{'requestcourses'}) eq 'HASH') {
1.1006 raeburn 1990: foreach my $item ('official','unofficial','community') {
1.985 raeburn 1991: $domdefaults{$item} = $domconfig{'requestcourses'}{$item};
1992: }
1993: }
1.1183 raeburn 1994: if (ref($domconfig{'requestauthor'}) eq 'HASH') {
1995: $domdefaults{'requestauthor'} = $domconfig{'requestauthor'};
1996: }
1.989 raeburn 1997: if (ref($domconfig{'inststatus'}) eq 'HASH') {
1998: foreach my $item ('inststatustypes','inststatusorder') {
1999: $domdefaults{$item} = $domconfig{'inststatus'}{$item};
2000: }
2001: }
1.1047 raeburn 2002: if (ref($domconfig{'coursedefaults'}) eq 'HASH') {
2003: foreach my $item ('canuse_pdfforms') {
2004: $domdefaults{$item} = $domconfig{'coursedefaults'}{$item};
2005: }
2006: }
1.1073 raeburn 2007: if (ref($domconfig{'usersessions'}) eq 'HASH') {
2008: if (ref($domconfig{'usersessions'}{'remote'}) eq 'HASH') {
2009: $domdefaults{'remotesessions'} = $domconfig{'usersessions'}{'remote'};
2010: }
2011: if (ref($domconfig{'usersessions'}{'hosted'}) eq 'HASH') {
2012: $domdefaults{'hostedsessions'} = $domconfig{'usersessions'}{'hosted'};
2013: }
2014: }
1.943 raeburn 2015: &Apache::lonnet::do_cache_new('domdefaults',$domain,\%domdefaults,
2016: $cachetime);
2017: return %domdefaults;
2018: }
2019:
1.344 www 2020: # --------------------------------------------------- Assign a key to a student
2021:
2022: sub assign_access_key {
1.364 www 2023: #
2024: # a valid key looks like uname:udom#comments
2025: # comments are being appended
2026: #
1.498 www 2027: my ($ckey,$kdom,$knum,$cdom,$cnum,$udom,$uname,$logentry)=@_;
2028: $kdom=
1.620 albertel 2029: $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($kdom));
1.498 www 2030: $knum=
1.620 albertel 2031: $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($knum));
1.344 www 2032: $cdom=
1.620 albertel 2033: $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($cdom));
1.344 www 2034: $cnum=
1.620 albertel 2035: $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($cnum));
2036: $udom=$env{'user.name'} unless (defined($udom));
2037: $uname=$env{'user.domain'} unless (defined($uname));
1.498 www 2038: my %existing=&get('accesskeys',[$ckey],$kdom,$knum);
1.364 www 2039: if (($existing{$ckey}=~/^\#(.*)$/) || # - new key
1.479 albertel 2040: ($existing{$ckey}=~/^\Q$uname\E\:\Q$udom\E\#(.*)$/)) {
1.364 www 2041: # assigned to this person
2042: # - this should not happen,
1.345 www 2043: # unless something went wrong
2044: # the first time around
2045: # ready to assign
1.364 www 2046: $logentry=$1.'; '.$logentry;
1.496 www 2047: if (&put('accesskeys',{$ckey=>$uname.':'.$udom.'#'.$logentry},
1.498 www 2048: $kdom,$knum) eq 'ok') {
1.345 www 2049: # key now belongs to user
1.346 www 2050: my $envkey='key.'.$cdom.'_'.$cnum;
1.345 www 2051: if (&put('environment',{$envkey => $ckey}) eq 'ok') {
1.949 raeburn 2052: &appenv({'environment.'.$envkey => $ckey});
1.345 www 2053: return 'ok';
2054: } else {
2055: return
2056: 'error: Count not permanently assign key, will need to be re-entered later.';
2057: }
2058: } else {
2059: return 'error: Could not assign key, try again later.';
2060: }
1.364 www 2061: } elsif (!$existing{$ckey}) {
1.345 www 2062: # the key does not exist
2063: return 'error: The key does not exist';
2064: } else {
2065: # the key is somebody else's
2066: return 'error: The key is already in use';
2067: }
1.344 www 2068: }
2069:
1.364 www 2070: # ------------------------------------------ put an additional comment on a key
2071:
2072: sub comment_access_key {
2073: #
2074: # a valid key looks like uname:udom#comments
2075: # comments are being appended
2076: #
2077: my ($ckey,$cdom,$cnum,$logentry)=@_;
2078: $cdom=
1.620 albertel 2079: $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($cdom));
1.364 www 2080: $cnum=
1.620 albertel 2081: $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($cnum));
1.364 www 2082: my %existing=&get('accesskeys',[$ckey],$cdom,$cnum);
2083: if ($existing{$ckey}) {
2084: $existing{$ckey}.='; '.$logentry;
2085: # ready to assign
1.367 www 2086: if (&put('accesskeys',{$ckey=>$existing{$ckey}},
1.364 www 2087: $cdom,$cnum) eq 'ok') {
2088: return 'ok';
2089: } else {
2090: return 'error: Count not store comment.';
2091: }
2092: } else {
2093: # the key does not exist
2094: return 'error: The key does not exist';
2095: }
2096: }
2097:
1.344 www 2098: # ------------------------------------------------------ Generate a set of keys
2099:
2100: sub generate_access_keys {
1.364 www 2101: my ($number,$cdom,$cnum,$logentry)=@_;
1.344 www 2102: $cdom=
1.620 albertel 2103: $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($cdom));
1.344 www 2104: $cnum=
1.620 albertel 2105: $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($cnum));
1.361 www 2106: unless (&allowed('mky',$cdom)) { return 0; }
1.344 www 2107: unless (($cdom) && ($cnum)) { return 0; }
2108: if ($number>10000) { return 0; }
2109: sleep(2); # make sure don't get same seed twice
2110: srand(time()^($$+($$<<15))); # from "Programming Perl"
2111: my $total=0;
2112: for (my $i=1;$i<=$number;$i++) {
2113: my $newkey=sprintf("%lx",int(100000*rand)).'-'.
2114: sprintf("%lx",int(100000*rand)).'-'.
2115: sprintf("%lx",int(100000*rand));
2116: $newkey=~s/1/g/g; # folks mix up 1 and l
2117: $newkey=~s/0/h/g; # and also 0 and O
2118: my %existing=&get('accesskeys',[$newkey],$cdom,$cnum);
2119: if ($existing{$newkey}) {
2120: $i--;
2121: } else {
1.364 www 2122: if (&put('accesskeys',
2123: { $newkey => '# generated '.localtime().
1.620 albertel 2124: ' by '.$env{'user.name'}.'@'.$env{'user.domain'}.
1.364 www 2125: '; '.$logentry },
2126: $cdom,$cnum) eq 'ok') {
1.344 www 2127: $total++;
2128: }
2129: }
2130: }
1.620 albertel 2131: &log($env{'user.domain'},$env{'user.name'},$env{'user.home'},
1.344 www 2132: 'Generated '.$total.' keys for '.$cnum.' at '.$cdom);
2133: return $total;
2134: }
2135:
2136: # ------------------------------------------------------- Validate an accesskey
2137:
2138: sub validate_access_key {
2139: my ($ckey,$cdom,$cnum,$udom,$uname)=@_;
2140: $cdom=
1.620 albertel 2141: $env{'course.'.$env{'request.course.id'}.'.domain'} unless (defined($cdom));
1.344 www 2142: $cnum=
1.620 albertel 2143: $env{'course.'.$env{'request.course.id'}.'.num'} unless (defined($cnum));
2144: $udom=$env{'user.domain'} unless (defined($udom));
2145: $uname=$env{'user.name'} unless (defined($uname));
1.345 www 2146: my %existing=&get('accesskeys',[$ckey],$cdom,$cnum);
1.479 albertel 2147: return ($existing{$ckey}=~/^\Q$uname\E\:\Q$udom\E\#/);
1.70 www 2148: }
2149:
2150: # ------------------------------------- Find the section of student in a course
1.652 albertel 2151: sub devalidate_getsection_cache {
2152: my ($udom,$unam,$courseid)=@_;
2153: my $hashid="$udom:$unam:$courseid";
2154: &devalidate_cache_new('getsection',$hashid);
2155: }
1.298 matthew 2156:
1.815 albertel 2157: sub courseid_to_courseurl {
2158: my ($courseid) = @_;
2159: #already url style courseid
2160: return $courseid if ($courseid =~ m{^/});
2161:
2162: if (exists($env{'course.'.$courseid.'.num'})) {
2163: my $cnum = $env{'course.'.$courseid.'.num'};
2164: my $cdom = $env{'course.'.$courseid.'.domain'};
2165: return "/$cdom/$cnum";
2166: }
2167:
2168: my %courseinfo=&Apache::lonnet::coursedescription($courseid);
2169: if (exists($courseinfo{'num'})) {
2170: return "/$courseinfo{'domain'}/$courseinfo{'num'}";
2171: }
2172:
2173: return undef;
2174: }
2175:
1.298 matthew 2176: sub getsection {
2177: my ($udom,$unam,$courseid)=@_;
1.599 albertel 2178: my $cachetime=1800;
1.551 albertel 2179:
2180: my $hashid="$udom:$unam:$courseid";
1.599 albertel 2181: my ($result,$cached)=&is_cached_new('getsection',$hashid);
1.551 albertel 2182: if (defined($cached)) { return $result; }
2183:
1.298 matthew 2184: my %Pending;
2185: my %Expired;
2186: #
2187: # Each role can either have not started yet (pending), be active,
2188: # or have expired.
2189: #
2190: # If there is an active role, we are done.
2191: #
2192: # If there is more than one role which has not started yet,
2193: # choose the one which will start sooner
2194: # If there is one role which has not started yet, return it.
2195: #
2196: # If there is more than one expired role, choose the one which ended last.
2197: # If there is a role which has expired, return it.
2198: #
1.815 albertel 2199: $courseid = &courseid_to_courseurl($courseid);
1.1166 raeburn 2200: my %roleshash = &dump('roles',$udom,$unam,$courseid);
1.817 raeburn 2201: foreach my $key (keys(%roleshash)) {
1.479 albertel 2202: next if ($key !~/^\Q$courseid\E(?:\/)*(\w+)*\_st$/);
1.298 matthew 2203: my $section=$1;
2204: if ($key eq $courseid.'_st') { $section=''; }
1.817 raeburn 2205: my ($dummy,$end,$start)=split(/\_/,&unescape($roleshash{$key}));
1.298 matthew 2206: my $now=time;
1.548 albertel 2207: if (defined($end) && $end && ($now > $end)) {
1.298 matthew 2208: $Expired{$end}=$section;
2209: next;
2210: }
1.548 albertel 2211: if (defined($start) && $start && ($now < $start)) {
1.298 matthew 2212: $Pending{$start}=$section;
2213: next;
2214: }
1.599 albertel 2215: return &do_cache_new('getsection',$hashid,$section,$cachetime);
1.298 matthew 2216: }
2217: #
2218: # Presumedly there will be few matching roles from the above
2219: # loop and the sorting time will be negligible.
2220: if (scalar(keys(%Pending))) {
2221: my ($time) = sort {$a <=> $b} keys(%Pending);
1.599 albertel 2222: return &do_cache_new('getsection',$hashid,$Pending{$time},$cachetime);
1.298 matthew 2223: }
2224: if (scalar(keys(%Expired))) {
2225: my @sorted = sort {$a <=> $b} keys(%Expired);
2226: my $time = pop(@sorted);
1.599 albertel 2227: return &do_cache_new('getsection',$hashid,$Expired{$time},$cachetime);
1.298 matthew 2228: }
1.599 albertel 2229: return &do_cache_new('getsection',$hashid,'-1',$cachetime);
1.298 matthew 2230: }
1.70 www 2231:
1.599 albertel 2232: sub save_cache {
2233: &purge_remembered();
1.722 albertel 2234: #&Apache::loncommon::validate_page();
1.620 albertel 2235: undef(%env);
1.780 albertel 2236: undef($env_loaded);
1.599 albertel 2237: }
1.452 albertel 2238:
1.599 albertel 2239: my $to_remember=-1;
2240: my %remembered;
2241: my %accessed;
2242: my $kicks=0;
2243: my $hits=0;
1.849 albertel 2244: sub make_key {
2245: my ($name,$id) = @_;
1.872 albertel 2246: if (length($id) > 65
2247: && length(&escape($id)) > 200) {
2248: $id=length($id).':'.&Digest::MD5::md5_hex($id);
2249: }
1.849 albertel 2250: return &escape($name.':'.$id);
2251: }
2252:
1.599 albertel 2253: sub devalidate_cache_new {
2254: my ($name,$id,$debug) = @_;
2255: if ($debug) { &Apache::lonnet::logthis("deleting $name:$id"); }
1.849 albertel 2256: $id=&make_key($name,$id);
1.599 albertel 2257: $memcache->delete($id);
2258: delete($remembered{$id});
2259: delete($accessed{$id});
2260: }
2261:
2262: sub is_cached_new {
2263: my ($name,$id,$debug) = @_;
1.849 albertel 2264: $id=&make_key($name,$id);
1.599 albertel 2265: if (exists($remembered{$id})) {
1.1133 foxr 2266: if ($debug) { &Apache::lonnet::logthis("Early return $id of $remembered{$id} "); }
1.599 albertel 2267: $accessed{$id}=[&gettimeofday()];
2268: $hits++;
2269: return ($remembered{$id},1);
2270: }
2271: my $value = $memcache->get($id);
2272: if (!(defined($value))) {
2273: if ($debug) { &Apache::lonnet::logthis("getting $id is not defined"); }
1.417 albertel 2274: return (undef,undef);
1.416 albertel 2275: }
1.599 albertel 2276: if ($value eq '__undef__') {
2277: if ($debug) { &Apache::lonnet::logthis("getting $id is __undef__"); }
2278: $value=undef;
2279: }
2280: &make_room($id,$value,$debug);
2281: if ($debug) { &Apache::lonnet::logthis("getting $id is $value"); }
2282: return ($value,1);
2283: }
2284:
2285: sub do_cache_new {
2286: my ($name,$id,$value,$time,$debug) = @_;
1.849 albertel 2287: $id=&make_key($name,$id);
1.599 albertel 2288: my $setvalue=$value;
2289: if (!defined($setvalue)) {
2290: $setvalue='__undef__';
2291: }
1.623 albertel 2292: if (!defined($time) ) {
2293: $time=600;
2294: }
1.599 albertel 2295: if ($debug) { &Apache::lonnet::logthis("Setting $id to $value"); }
1.910 albertel 2296: my $result = $memcache->set($id,$setvalue,$time);
2297: if (! $result) {
1.872 albertel 2298: &logthis("caching of id -> $id failed");
1.910 albertel 2299: $memcache->disconnect_all();
1.872 albertel 2300: }
1.600 albertel 2301: # need to make a copy of $value
1.919 albertel 2302: &make_room($id,$value,$debug);
1.599 albertel 2303: return $value;
2304: }
2305:
2306: sub make_room {
2307: my ($id,$value,$debug)=@_;
1.919 albertel 2308:
2309: $remembered{$id}= (ref($value)) ? &Storable::dclone($value)
2310: : $value;
1.599 albertel 2311: if ($to_remember<0) { return; }
2312: $accessed{$id}=[&gettimeofday()];
2313: if (scalar(keys(%remembered)) <= $to_remember) { return; }
2314: my $to_kick;
2315: my $max_time=0;
2316: foreach my $other (keys(%accessed)) {
2317: if (&tv_interval($accessed{$other}) > $max_time) {
2318: $to_kick=$other;
2319: $max_time=&tv_interval($accessed{$other});
2320: }
2321: }
2322: delete($remembered{$to_kick});
2323: delete($accessed{$to_kick});
2324: $kicks++;
2325: if ($debug) { &logthis("kicking $to_kick $max_time $kicks\n"); }
1.541 albertel 2326: return;
2327: }
2328:
1.599 albertel 2329: sub purge_remembered {
1.604 albertel 2330: #&logthis("Tossing ".scalar(keys(%remembered)));
2331: #&logthis(sprintf("%-20s is %s",'%remembered',length(&freeze(\%remembered))));
1.599 albertel 2332: undef(%remembered);
2333: undef(%accessed);
1.428 albertel 2334: }
1.70 www 2335: # ------------------------------------- Read an entry from a user's environment
2336:
2337: sub userenvironment {
2338: my ($udom,$unam,@what)=@_;
1.976 raeburn 2339: my $items;
2340: foreach my $item (@what) {
2341: $items.=&escape($item).'&';
2342: }
2343: $items=~s/\&$//;
1.70 www 2344: my %returnhash=();
1.1009 raeburn 2345: my $uhome = &homeserver($unam,$udom);
2346: unless ($uhome eq 'no_host') {
2347: my @answer=split(/\&/,
2348: &reply('get:'.$udom.':'.$unam.':environment:'.$items,$uhome));
1.1048 raeburn 2349: if ($#answer==0 && $answer[0] =~ /^(con_lost|error:|no_such_host)/i) {
2350: return %returnhash;
2351: }
1.1009 raeburn 2352: my $i;
2353: for ($i=0;$i<=$#what;$i++) {
2354: $returnhash{$what[$i]}=&unescape($answer[$i]);
2355: }
1.70 www 2356: }
2357: return %returnhash;
1.1 albertel 2358: }
2359:
1.617 albertel 2360: # ---------------------------------------------------------- Get a studentphoto
2361: sub studentphoto {
2362: my ($udom,$unam,$ext) = @_;
2363: my $home=&Apache::lonnet::homeserver($unam,$udom);
1.706 raeburn 2364: if (defined($env{'request.course.id'})) {
1.708 raeburn 2365: if ($env{'course.'.$env{'request.course.id'}.'.internal.showphoto'}) {
1.706 raeburn 2366: if ($udom eq $env{'course.'.$env{'request.course.id'}.'.domain'}) {
2367: return(&retrievestudentphoto($udom,$unam,$ext));
2368: } else {
2369: my ($result,$perm_reqd)=
1.707 albertel 2370: &Apache::lonnet::auto_photo_permission($unam,$udom);
1.706 raeburn 2371: if ($result eq 'ok') {
2372: if (!($perm_reqd eq 'yes')) {
2373: return(&retrievestudentphoto($udom,$unam,$ext));
2374: }
2375: }
2376: }
2377: }
2378: } else {
2379: my ($result,$perm_reqd) =
1.707 albertel 2380: &Apache::lonnet::auto_photo_permission($unam,$udom);
1.706 raeburn 2381: if ($result eq 'ok') {
2382: if (!($perm_reqd eq 'yes')) {
2383: return(&retrievestudentphoto($udom,$unam,$ext));
2384: }
2385: }
2386: }
2387: return '/adm/lonKaputt/lonlogo_broken.gif';
2388: }
2389:
2390: sub retrievestudentphoto {
2391: my ($udom,$unam,$ext,$type) = @_;
2392: my $home=&Apache::lonnet::homeserver($unam,$udom);
2393: my $ret=&Apache::lonnet::reply("studentphoto:$udom:$unam:$ext:$type",$home);
2394: if ($ret eq 'ok') {
2395: my $url="/uploaded/$udom/$unam/internal/studentphoto.$ext";
2396: if ($type eq 'thumbnail') {
2397: $url="/uploaded/$udom/$unam/internal/studentphoto_tn.$ext";
2398: }
2399: my $tokenurl=&Apache::lonnet::tokenwrapper($url);
2400: return $tokenurl;
2401: } else {
2402: if ($type eq 'thumbnail') {
2403: return '/adm/lonKaputt/genericstudent_tn.gif';
2404: } else {
2405: return '/adm/lonKaputt/lonlogo_broken.gif';
2406: }
1.617 albertel 2407: }
2408: }
2409:
1.263 www 2410: # -------------------------------------------------------------------- New chat
2411:
2412: sub chatsend {
1.724 raeburn 2413: my ($newentry,$anon,$group)=@_;
1.620 albertel 2414: my $cnum=$env{'course.'.$env{'request.course.id'}.'.num'};
2415: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
2416: my $chome=$env{'course.'.$env{'request.course.id'}.'.home'};
1.263 www 2417: &reply('chatsend:'.$cdom.':'.$cnum.':'.
1.620 albertel 2418: &escape($env{'user.domain'}.':'.$env{'user.name'}.':'.$anon.':'.
1.724 raeburn 2419: &escape($newentry)).':'.$group,$chome);
1.292 www 2420: }
2421:
2422: # ------------------------------------------ Find current version of a resource
2423:
2424: sub getversion {
2425: my $fname=&clutter(shift);
1.1189 raeburn 2426: unless ($fname=~m{^(/adm/wrapper|)/res/}) { return -1; }
1.292 www 2427: return ¤tversion(&filelocation('',$fname));
2428: }
2429:
2430: sub currentversion {
2431: my $fname=shift;
2432: my $author=$fname;
2433: $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
2434: my ($udom,$uname)=split(/\//,$author);
1.1112 www 2435: my $home=&homeserver($uname,$udom);
1.292 www 2436: if ($home eq 'no_host') {
2437: return -1;
2438: }
1.1112 www 2439: my $answer=&reply("currentversion:$fname",$home);
1.292 www 2440: if (($answer eq 'con_lost') || ($answer eq 'rejected')) {
2441: return -1;
2442: }
1.1112 www 2443: return $answer;
1.263 www 2444: }
2445:
1.1111 www 2446: #
2447: # Return special version number of resource if set by override, empty otherwise
2448: #
2449: sub usedversion {
2450: my $fname=shift;
2451: unless ($fname) { $fname=$env{'request.uri'}; }
2452: my ($urlversion)=($fname=~/\.(\d+)\.\w+$/);
2453: if ($urlversion) { return $urlversion; }
2454: return '';
2455: }
2456:
1.1 albertel 2457: # ----------------------------- Subscribe to a resource, return URL if possible
1.11 www 2458:
1.1 albertel 2459: sub subscribe {
2460: my $fname=shift;
1.761 raeburn 2461: if ($fname=~/\/(aboutme|syllabus|bulletinboard|smppg)$/) { return ''; }
1.532 albertel 2462: $fname=~s/[\n\r]//g;
1.1 albertel 2463: my $author=$fname;
2464: $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
2465: my ($udom,$uname)=split(/\//,$author);
2466: my $home=homeserver($uname,$udom);
1.335 albertel 2467: if ($home eq 'no_host') {
2468: return 'not_found';
1.1 albertel 2469: }
2470: my $answer=reply("sub:$fname",$home);
1.64 www 2471: if (($answer eq 'con_lost') || ($answer eq 'rejected')) {
2472: $answer.=' by '.$home;
2473: }
1.1 albertel 2474: return $answer;
2475: }
2476:
1.8 www 2477: # -------------------------------------------------------------- Replicate file
2478:
2479: sub repcopy {
2480: my $filename=shift;
1.23 www 2481: $filename=~s/\/+/\//g;
1.1142 raeburn 2482: my $londocroot = $perlvar{'lonDocRoot'};
2483: if ($filename=~m{^\Q$londocroot/adm/\E}) { return 'ok'; }
1.1164 raeburn 2484: if ($filename=~m{^\Q/home/httpd/lonUsers/\E}) { return 'ok'; }
1.1142 raeburn 2485: if ($filename=~m{^\Q$londocroot/userfiles/\E} or
2486: $filename=~m{^/*(uploaded|editupload)/}) {
1.538 albertel 2487: return &repcopy_userfile($filename);
2488: }
1.532 albertel 2489: $filename=~s/[\n\r]//g;
1.8 www 2490: my $transname="$filename.in.transfer";
1.828 www 2491: # FIXME: this should flock
1.607 raeburn 2492: if ((-e $filename) || (-e $transname)) { return 'ok'; }
1.8 www 2493: my $remoteurl=subscribe($filename);
1.64 www 2494: if ($remoteurl =~ /^con_lost by/) {
2495: &logthis("Subscribe returned $remoteurl: $filename");
1.607 raeburn 2496: return 'unavailable';
1.8 www 2497: } elsif ($remoteurl eq 'not_found') {
1.441 albertel 2498: #&logthis("Subscribe returned not_found: $filename");
1.607 raeburn 2499: return 'not_found';
1.64 www 2500: } elsif ($remoteurl =~ /^rejected by/) {
2501: &logthis("Subscribe returned $remoteurl: $filename");
1.607 raeburn 2502: return 'forbidden';
1.20 www 2503: } elsif ($remoteurl eq 'directory') {
1.607 raeburn 2504: return 'ok';
1.8 www 2505: } else {
1.290 www 2506: my $author=$filename;
2507: $author=~s/\/home\/httpd\/html\/res\/([^\/]*)\/([^\/]*).*/$1\/$2/;
2508: my ($udom,$uname)=split(/\//,$author);
2509: my $home=homeserver($uname,$udom);
2510: unless ($home eq $perlvar{'lonHostID'}) {
1.8 www 2511: my @parts=split(/\//,$filename);
2512: my $path="/$parts[1]/$parts[2]/$parts[3]/$parts[4]";
1.1142 raeburn 2513: if ($path ne "$londocroot/res") {
1.8 www 2514: &logthis("Malconfiguration for replication: $filename");
1.607 raeburn 2515: return 'bad_request';
1.8 www 2516: }
2517: my $count;
2518: for ($count=5;$count<$#parts;$count++) {
2519: $path.="/$parts[$count]";
2520: if ((-e $path)!=1) {
2521: mkdir($path,0777);
2522: }
2523: }
2524: my $ua=new LWP::UserAgent;
2525: my $request=new HTTP::Request('GET',"$remoteurl");
2526: my $response=$ua->request($request,$transname);
2527: if ($response->is_error()) {
2528: unlink($transname);
2529: my $message=$response->status_line;
1.672 albertel 2530: &logthis("<font color=\"blue\">WARNING:"
1.12 www 2531: ." LWP get: $message: $filename</font>");
1.607 raeburn 2532: return 'unavailable';
1.8 www 2533: } else {
1.16 www 2534: if ($remoteurl!~/\.meta$/) {
2535: my $mrequest=new HTTP::Request('GET',$remoteurl.'.meta');
2536: my $mresponse=$ua->request($mrequest,$filename.'.meta');
2537: if ($mresponse->is_error()) {
2538: unlink($filename.'.meta');
2539: &logthis(
1.672 albertel 2540: "<font color=\"yellow\">INFO: No metadata: $filename</font>");
1.16 www 2541: }
2542: }
1.8 www 2543: rename($transname,$filename);
1.607 raeburn 2544: return 'ok';
1.8 www 2545: }
1.290 www 2546: }
1.8 www 2547: }
1.330 www 2548: }
2549:
2550: # ------------------------------------------------ Get server side include body
2551: sub ssi_body {
1.381 albertel 2552: my ($filelink,%form)=@_;
1.606 matthew 2553: if (! exists($form{'LONCAPA_INTERNAL_no_discussion'})) {
2554: $form{'LONCAPA_INTERNAL_no_discussion'}='true';
2555: }
1.953 www 2556: my $output='';
2557: my $response;
1.980 raeburn 2558: if ($filelink=~/^https?\:/) {
1.954 raeburn 2559: ($output,$response)=&externalssi($filelink);
1.953 www 2560: } else {
1.1004 droeschl 2561: $filelink .= $filelink=~/\?/ ? '&' : '?';
2562: $filelink .= 'inhibitmenu=yes';
1.953 www 2563: ($output,$response)=&ssi($filelink,%form);
2564: }
1.778 albertel 2565: $output=~s|//(\s*<!--)? BEGIN LON-CAPA Internal.+?// END LON-CAPA Internal\s*(-->)?\s||gs;
1.451 albertel 2566: $output=~s/^.*?\<body[^\>]*\>//si;
1.930 albertel 2567: $output=~s/\<\/body\s*\>.*?$//si;
1.953 www 2568: if (wantarray) {
2569: return ($output, $response);
2570: } else {
2571: return $output;
2572: }
1.8 www 2573: }
2574:
1.15 www 2575: # --------------------------------------------------------- Server Side Include
2576:
1.782 albertel 2577: sub absolute_url {
2578: my ($host_name) = @_;
2579: my $protocol = ($ENV{'SERVER_PORT'} == 443?'https://':'http://');
2580: if ($host_name eq '') {
2581: $host_name = $ENV{'SERVER_NAME'};
2582: }
2583: return $protocol.$host_name;
2584: }
2585:
1.942 foxr 2586: #
2587: # Server side include.
2588: # Parameters:
2589: # fn Possibly encrypted resource name/id.
2590: # form Hash that describes how the rendering should be done
2591: # and other things.
1.944 foxr 2592: # Returns:
1.950 raeburn 2593: # Scalar context: The content of the response.
2594: # Array context: 2 element list of the content and the full response object.
1.942 foxr 2595: #
1.15 www 2596: sub ssi {
2597:
1.944 foxr 2598: my ($fn,%form)=@_;
1.15 www 2599: my $ua=new LWP::UserAgent;
1.23 www 2600: my $request;
1.711 albertel 2601:
2602: $form{'no_update_last_known'}=1;
1.895 albertel 2603: &Apache::lonenc::check_encrypt(\$fn);
1.23 www 2604: if (%form) {
1.782 albertel 2605: $request=new HTTP::Request('POST',&absolute_url().$fn);
1.1000 raeburn 2606: $request->content(join('&',map { &escape($_).'='.&escape($form{$_}) } keys(%form)));
1.23 www 2607: } else {
1.782 albertel 2608: $request=new HTTP::Request('GET',&absolute_url().$fn);
1.23 www 2609: }
2610:
1.15 www 2611: $request->header(Cookie => $ENV{'HTTP_COOKIE'});
1.1173 foxr 2612: my $response= $ua->request($request);
1.1182 foxr 2613: my $content = $response->content;
2614:
2615:
1.944 foxr 2616: if (wantarray) {
1.1173 foxr 2617: return ($content, $response);
1.944 foxr 2618: } else {
1.1173 foxr 2619: return $content;
1.942 foxr 2620: }
1.324 www 2621: }
2622:
2623: sub externalssi {
2624: my ($url)=@_;
2625: my $ua=new LWP::UserAgent;
2626: my $request=new HTTP::Request('GET',$url);
2627: my $response=$ua->request($request);
1.954 raeburn 2628: if (wantarray) {
2629: return ($response->content, $response);
2630: } else {
2631: return $response->content;
2632: }
1.15 www 2633: }
1.254 www 2634:
1.492 albertel 2635: # -------------------------------- Allow a /uploaded/ URI to be vouched for
2636:
2637: sub allowuploaded {
2638: my ($srcurl,$url)=@_;
2639: $url=&clutter(&declutter($url));
2640: my $dir=$url;
2641: $dir=~s/\/[^\/]+$//;
2642: my %httpref=();
2643: my $httpurl=&hreflocation('',$url);
2644: $httpref{'httpref.'.$httpurl}=$srcurl;
1.949 raeburn 2645: &Apache::lonnet::appenv(\%httpref);
1.254 www 2646: }
1.477 raeburn 2647:
1.1193 raeburn 2648: #
2649: # Determine if the current user should be able to edit a particular resource,
2650: # when viewing in course context.
2651: # (a) When viewing resource used to determine if "Edit" item is included in
2652: # Functions.
2653: # (b) When displaying folder contents in course editor, used to determine if
2654: # "Edit" link will be displayed alongside resource.
2655: #
1.1196 raeburn 2656: # input: six args -- filename (decluttered), course number, course domain,
2657: # url, symb (if registered) and group (if this is a group
2658: # item -- e.g., bulletin board, group page etc.).
2659: # output: array of five scalars --
1.1193 raeburn 2660: # $cfile -- url for file editing if editable on current server
2661: # $home -- homeserver of resource (i.e., for author if published,
2662: # or course if uploaded.).
2663: # $switchserver -- 1 if server switch will be needed.
1.1196 raeburn 2664: # $forceedit -- 1 if icon/link should be to go to edit mode
2665: # $forceview -- 1 if icon/link should be to go to view mode
1.1193 raeburn 2666: #
2667:
2668: sub can_edit_resource {
1.1194 raeburn 2669: my ($file,$cnum,$cdom,$resurl,$symb,$group) = @_;
2670: my ($cfile,$home,$switchserver,$forceedit,$forceview,$uploaded,$incourse);
2671: #
2672: # For aboutme pages user can only edit his/her own.
2673: #
2674: if ($resurl =~ m{^/adm/($match_domain)/($match_username)/aboutme$}) {
2675: my ($sdom,$sname) = ($1,$2);
2676: if (($sdom eq $env{'user.domain'}) && ($sname eq $env{'user.name'})) {
2677: $home = $env{'user.home'};
2678: $cfile = $resurl;
2679: if ($env{'form.forceedit'}) {
2680: $forceview = 1;
2681: } else {
2682: $forceedit = 1;
2683: }
2684: return ($cfile,$home,$switchserver,$forceedit,$forceview);
2685: } else {
2686: return;
2687: }
2688: }
2689:
2690: if ($env{'request.course.id'}) {
2691: my $crsedit = &Apache::lonnet::allowed('mdc',$env{'request.course.id'});
2692: if ($group ne '') {
2693: # if this is a group homepage or group bulletin board, check group privs
2694: my $allowed = 0;
1.1197 raeburn 2695: if ($resurl =~ m{^/?adm/$cdom/$cnum/$group/smppg$}) {
2696: if ((&allowed('mdg',$env{'request.course.id'}.
1.1198 ! raeburn 2697: ($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) ||
1.1194 raeburn 2698: (&allowed('mgh',$env{'request.course.id'}.'/'.$group)) || $crsedit) {
2699: $allowed = 1;
2700: }
1.1197 raeburn 2701: } elsif ($resurl =~ m{^/?adm/$cdom/$cnum/\d+/bulletinboard$}) {
2702: if ((&allowed('mdg',$env{'request.course.id'}.($env{'request.course.sec'}?'/'.$env{'request.course.sec'}:''))) ||
2703: (&allowed('cgb',$env{'request.course.id'}.'/'.$group)) || $crsedit) {
1.1194 raeburn 2704: $allowed = 1;
2705: }
2706: }
2707: if ($allowed) {
2708: $home=&homeserver($cnum,$cdom);
2709: if ($env{'form.forceedit'}) {
2710: $forceview = 1;
2711: } else {
2712: $forceedit = 1;
2713: }
2714: $cfile = $resurl;
2715: } else {
2716: return;
2717: }
2718: } else {
2719: #
2720: # No edit allowed where CC has switched to student role.
2721: #
2722: unless ($crsedit) {
2723: return;
2724: }
2725: }
2726: }
2727:
1.1193 raeburn 2728: if ($file ne '') {
2729: if (($cnum =~ /$match_courseid/) && ($cdom =~ /$match_domain/)) {
1.1194 raeburn 2730: if (&is_course_upload($file,$cnum,$cdom)) {
2731: $uploaded = 1;
2732: $incourse = 1;
1.1193 raeburn 2733: if ($file =~/\.(htm|html|css|js|txt)$/) {
2734: $cfile = &hreflocation('',$file);
1.1194 raeburn 2735: $forceedit = 1;
2736: }
2737: } elsif ($resurl =~ m{^/public/$cdom/$cnum/syllabus}) {
2738: $incourse = 1;
2739: if ($env{'form.forceedit'}) {
2740: $forceview = 1;
2741: } else {
2742: $forceedit = 1;
2743: }
2744: $cfile = $resurl;
2745: } elsif (($resurl ne '') && (&is_on_map($resurl))) {
2746: if ($resurl =~ m{^/adm/$match_domain/$match_username/\d+/smppg|bulletinboard$}) {
2747: $incourse = 1;
2748: if ($env{'form.forceedit'}) {
2749: $forceview = 1;
2750: } else {
2751: $forceedit = 1;
2752: }
2753: $cfile = $resurl;
2754: } elsif (($resurl eq '/res/lib/templates/simpleproblem.problem')) {
2755: $incourse = 1;
2756: $cfile = $resurl.'/smpedit';
2757: } elsif ($resurl =~ /ext/) {
2758: $incourse = 1;
2759: # is external
2760: }
2761: } elsif ($resurl eq '/res/lib/templates/simpleproblem.problem/smpedit') {
2762: my $template = '/res/lib/templates/simpleproblem.problem';
2763: if (&is_on_map($template)) {
2764: $incourse = 1;
2765: $forceview = 1;
2766: $cfile = $template;
1.1193 raeburn 2767: }
2768: }
2769: }
1.1194 raeburn 2770: if ($uploaded || $incourse) {
2771: $home=&homeserver($cnum,$cdom);
2772: } else {
1.1193 raeburn 2773: $file=~s{^(priv/$match_domain/$match_username)}{/$1};
2774: $file=~s{^($match_domain/$match_username)}{/priv/$1};
2775: # Check that the user has permission to edit this resource
2776: my $setpriv = 1;
2777: my ($cfuname,$cfudom)=&constructaccess($file,$setpriv);
2778: if (defined($cfudom)) {
2779: $home=&homeserver($cfuname,$cfudom);
2780: $cfile=$file;
2781: }
2782: }
1.1194 raeburn 2783: if (($cfile ne '') && (!$incourse || $uploaded) &&
2784: (($home ne '') && ($home ne 'no_host'))) {
1.1193 raeburn 2785: my @ids=¤t_machine_ids();
2786: unless (grep(/^\Q$home\E$/,@ids)) {
2787: $switchserver=1;
2788: }
2789: }
2790: }
1.1194 raeburn 2791: return ($cfile,$home,$switchserver,$forceedit,$forceview);
1.1193 raeburn 2792: }
2793:
2794: sub is_course_upload {
2795: my ($file,$cnum,$cdom) = @_;
2796: my $uploadpath = &LONCAPA::propath($cdom,$cnum);
2797: $uploadpath =~ s{^\/}{};
2798: if (($file =~ m{^\Q$uploadpath\E/userfiles/docs/}) ||
2799: ($file =~ m{^userfiles/\Q$cdom\E/\Q$cnum\E/docs/})) {
2800: return 1;
2801: }
2802: return;
2803: }
2804:
1.1194 raeburn 2805: sub in_course {
1.1195 raeburn 2806: my ($udom,$uname,$cdom,$cnum,$type,$hideprivileged) = @_;
2807: if ($hideprivileged) {
2808: my $skipuser;
2809: if (&privileged($uname,$udom)) {
2810: $skipuser = 1;
2811: my %coursehash = &coursedescription($cdom.'_'.$cnum);
2812: if ($coursehash{'nothideprivileged'}) {
2813: foreach my $item (split(/\s*\,\s*/,$coursehash{'nothideprivileged'})) {
2814: my $user;
2815: if ($item =~ /:/) {
2816: $user = $item;
2817: } else {
2818: $user = join(':',split(/[\@]/,$item));
2819: }
2820: if ($user eq $uname.':'.$udom) {
2821: undef($skipuser);
2822: last;
2823: }
2824: }
2825: }
2826: if ($skipuser) {
2827: return 0;
2828: }
2829: }
2830: }
1.1194 raeburn 2831: $type ||= 'any';
2832: if (!defined($cdom) || !defined($cnum)) {
2833: my $cid = $env{'request.course.id'};
2834: $cdom = $env{'course.'.$cid.'.domain'};
2835: $cnum = $env{'course.'.$cid.'.num'};
2836: }
2837: my $typesref;
1.1195 raeburn 2838: if (($type eq 'any') || ($type eq 'all')) {
1.1194 raeburn 2839: $typesref = ['active','previous','future'];
2840: } elsif ($type eq 'previous' || $type eq 'future') {
2841: $typesref = [$type];
2842: }
2843: my %roles = &get_my_roles($uname,$udom,'userroles',
2844: $typesref,undef,[$cdom]);
2845: my ($tmp) = keys(%roles);
2846: return 0 if ($tmp =~ /^(con_lost|error|no_such_host)/i);
2847: my @course_roles = grep(/^\Q$cnum\E:\Q$cdom\E:/, keys(%roles));
2848: if (@course_roles > 0) {
2849: return 1;
2850: }
2851: return 0;
2852: }
2853:
1.478 albertel 2854: # --------- File operations in /home/httpd/html/userfiles/$domain/1/2/3/$course
1.638 albertel 2855: # input: action, courseID, current domain, intended
1.637 raeburn 2856: # path to file, source of file, instruction to parse file for objects,
2857: # ref to hash for embedded objects,
2858: # ref to hash for codebase of java objects.
1.1095 raeburn 2859: # reference to scalar to accommodate mime type determined
2860: # from File::MMagic if $parser = parse.
1.637 raeburn 2861: #
1.485 raeburn 2862: # output: url to file (if action was uploaddoc),
2863: # ok if successful, or diagnostic message otherwise (if action was propagate or copy)
1.477 raeburn 2864: #
1.478 albertel 2865: # Allows directory structure to be used within lonUsers/../userfiles/ for a
2866: # course.
1.477 raeburn 2867: #
1.478 albertel 2868: # action = propagate - /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
2869: # will be copied to /home/httpd/lonUsers/1/2/3/$course/userfiles in
2870: # course's home server.
1.477 raeburn 2871: #
1.478 albertel 2872: # action = copy - /home/httpd/html/userfiles/$domain/1/2/3/$course/$file will
2873: # be copied from $source (current location) to
2874: # /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
2875: # and will then be copied to
2876: # /home/httpd/lonUsers/$domain/1/2/3/$course/userfiles/$file in
2877: # course's home server.
1.485 raeburn 2878: #
1.481 raeburn 2879: # action = uploaddoc - /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
1.620 albertel 2880: # will be retrived from $env{form.uploaddoc} (from DOCS interface) to
1.481 raeburn 2881: # /home/httpd/html/userfiles/$domain/1/2/3/$course/$file
2882: # and will then be copied to /home/httpd/lonUsers/1/2/3/$course/userfiles/$file
2883: # in course's home server.
1.637 raeburn 2884: #
1.477 raeburn 2885:
2886: sub process_coursefile {
1.1095 raeburn 2887: my ($action,$docuname,$docudom,$file,$source,$parser,$allfiles,$codebase,
2888: $mimetype)=@_;
1.477 raeburn 2889: my $fetchresult;
1.638 albertel 2890: my $home=&homeserver($docuname,$docudom);
1.477 raeburn 2891: if ($action eq 'propagate') {
1.638 albertel 2892: $fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
2893: $home);
1.481 raeburn 2894: } else {
1.477 raeburn 2895: my $fpath = '';
2896: my $fname = $file;
1.478 albertel 2897: ($fpath,$fname) = ($file =~ m|^(.*)/([^/]+)$|);
1.477 raeburn 2898: $fpath=$docudom.'/'.$docuname.'/'.$fpath;
1.637 raeburn 2899: my $filepath = &build_filepath($fpath);
1.481 raeburn 2900: if ($action eq 'copy') {
2901: if ($source eq '') {
2902: $fetchresult = 'no source file';
2903: return $fetchresult;
2904: } else {
2905: my $destination = $filepath.'/'.$fname;
2906: rename($source,$destination);
2907: $fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
1.638 albertel 2908: $home);
1.481 raeburn 2909: }
2910: } elsif ($action eq 'uploaddoc') {
2911: open(my $fh,'>'.$filepath.'/'.$fname);
1.620 albertel 2912: print $fh $env{'form.'.$source};
1.481 raeburn 2913: close($fh);
1.637 raeburn 2914: if ($parser eq 'parse') {
1.1024 raeburn 2915: my $mm = new File::MMagic;
1.1095 raeburn 2916: my $type = $mm->checktype_filename($filepath.'/'.$fname);
2917: if ($type eq 'text/html') {
1.1024 raeburn 2918: my $parse_result = &extract_embedded_items($filepath.'/'.$fname,$allfiles,$codebase);
2919: unless ($parse_result eq 'ok') {
2920: &logthis('Failed to parse '.$filepath.'/'.$fname.' for embedded media: '.$parse_result);
2921: }
1.637 raeburn 2922: }
1.1095 raeburn 2923: if (ref($mimetype)) {
2924: $$mimetype = $type;
2925: }
1.637 raeburn 2926: }
1.477 raeburn 2927: $fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
1.638 albertel 2928: $home);
1.481 raeburn 2929: if ($fetchresult eq 'ok') {
2930: return '/uploaded/'.$fpath.'/'.$fname;
2931: } else {
2932: &logthis('Failed to transfer '.$docudom.'/'.$docuname.'/'.$file.
1.638 albertel 2933: ' to host '.$home.': '.$fetchresult);
1.481 raeburn 2934: return '/adm/notfound.html';
2935: }
1.477 raeburn 2936: }
2937: }
1.485 raeburn 2938: unless ( $fetchresult eq 'ok') {
1.477 raeburn 2939: &logthis('Failed to transfer '.$docudom.'/'.$docuname.'/'.$file.
1.638 albertel 2940: ' to host '.$home.': '.$fetchresult);
1.477 raeburn 2941: }
2942: return $fetchresult;
2943: }
2944:
1.637 raeburn 2945: sub build_filepath {
2946: my ($fpath) = @_;
2947: my $filepath=$perlvar{'lonDocRoot'}.'/userfiles';
2948: unless ($fpath eq '') {
2949: my @parts=split('/',$fpath);
2950: foreach my $part (@parts) {
2951: $filepath.= '/'.$part;
2952: if ((-e $filepath)!=1) {
2953: mkdir($filepath,0777);
2954: }
2955: }
2956: }
2957: return $filepath;
2958: }
2959:
2960: sub store_edited_file {
1.638 albertel 2961: my ($primary_url,$content,$docudom,$docuname,$fetchresult) = @_;
1.637 raeburn 2962: my $file = $primary_url;
2963: $file =~ s#^/uploaded/$docudom/$docuname/##;
2964: my $fpath = '';
2965: my $fname = $file;
2966: ($fpath,$fname) = ($file =~ m|^(.*)/([^/]+)$|);
2967: $fpath=$docudom.'/'.$docuname.'/'.$fpath;
2968: my $filepath = &build_filepath($fpath);
2969: open(my $fh,'>'.$filepath.'/'.$fname);
2970: print $fh $content;
2971: close($fh);
1.638 albertel 2972: my $home=&homeserver($docuname,$docudom);
1.637 raeburn 2973: $$fetchresult= &reply('fetchuserfile:'.$docudom.'/'.$docuname.'/'.$file,
1.638 albertel 2974: $home);
1.637 raeburn 2975: if ($$fetchresult eq 'ok') {
2976: return '/uploaded/'.$fpath.'/'.$fname;
2977: } else {
1.638 albertel 2978: &logthis('Failed to transfer '.$docudom.'/'.$docuname.'/'.$file.
2979: ' to host '.$home.': '.$$fetchresult);
1.637 raeburn 2980: return '/adm/notfound.html';
2981: }
2982: }
2983:
1.531 albertel 2984: sub clean_filename {
1.831 albertel 2985: my ($fname,$args)=@_;
1.315 www 2986: # Replace Windows backslashes by forward slashes
1.257 www 2987: $fname=~s/\\/\//g;
1.831 albertel 2988: if (!$args->{'keep_path'}) {
2989: # Get rid of everything but the actual filename
2990: $fname=~s/^.*\/([^\/]+)$/$1/;
2991: }
1.315 www 2992: # Replace spaces by underscores
2993: $fname=~s/\s+/\_/g;
2994: # Replace all other weird characters by nothing
1.831 albertel 2995: $fname=~s{[^/\w\.\-]}{}g;
1.540 albertel 2996: # Replace all .\d. sequences with _\d. so they no longer look like version
2997: # numbers
2998: $fname=~s/\.(\d+)(?=\.)/_$1/g;
1.531 albertel 2999: return $fname;
3000: }
1.1051 raeburn 3001: # This Function checks if an Image's dimensions exceed either $resizewidth (width)
3002: # or $resizeheight (height) - both pixels. If so, the image is scaled to produce an
3003: # image with the same aspect ratio as the original, but with dimensions which do
3004: # not exceed $resizewidth and $resizeheight.
3005:
1.984 neumanie 3006: sub resizeImage {
1.1051 raeburn 3007: my ($img_path,$resizewidth,$resizeheight) = @_;
3008: my $ima = Image::Magick->new;
3009: my $resized;
3010: if (-e $img_path) {
3011: $ima->Read($img_path);
3012: if (($resizewidth =~ /^\d+$/) && ($resizeheight > 0)) {
3013: my $width = $ima->Get('width');
3014: my $height = $ima->Get('height');
3015: if ($width > $resizewidth) {
3016: my $factor = $width/$resizewidth;
3017: my $newheight = $height/$factor;
3018: $ima->Scale(width=>$resizewidth,height=>$newheight);
3019: $resized = 1;
3020: }
3021: }
3022: if (($resizeheight =~ /^\d+$/) && ($resizeheight > 0)) {
3023: my $width = $ima->Get('width');
3024: my $height = $ima->Get('height');
3025: if ($height > $resizeheight) {
3026: my $factor = $height/$resizeheight;
3027: my $newwidth = $width/$factor;
3028: $ima->Scale(width=>$newwidth,height=>$resizeheight);
3029: $resized = 1;
3030: }
3031: }
3032: if ($resized) {
3033: $ima->Write($img_path);
3034: }
3035: }
3036: return;
1.977 amueller 3037: }
3038:
1.608 albertel 3039: # --------------- Take an uploaded file and put it into the userfiles directory
1.686 albertel 3040: # input: $formname - the contents of the file are in $env{"form.$formname"}
1.1093 raeburn 3041: # the desired filename is in $env{"form.$formname.filename"}
1.1090 raeburn 3042: # $context - possible values: coursedoc, existingfile, overwrite,
3043: # canceloverwrite, or ''.
3044: # if 'coursedoc': upload to the current course
3045: # if 'existingfile': write file to tmp/overwrites directory
3046: # if 'canceloverwrite': delete file written to tmp/overwrites directory
3047: # $context is passed as argument to &finishuserfileupload
1.686 albertel 3048: # $subdir - directory in userfile to store the file into
1.858 raeburn 3049: # $parser - instruction to parse file for objects ($parser = parse)
3050: # $allfiles - reference to hash for embedded objects
3051: # $codebase - reference to hash for codebase of java objects
3052: # $desuname - username for permanent storage of uploaded file
3053: # $dsetudom - domain for permanaent storage of uploaded file
1.860 raeburn 3054: # $thumbwidth - width (pixels) of thumbnail to make for uploaded image
3055: # $thumbheight - height (pixels) of thumbnail to make for uploaded image
1.1051 raeburn 3056: # $resizewidth - width (pixels) to which to resize uploaded image
3057: # $resizeheight - height (pixels) to which to resize uploaded image
1.1095 raeburn 3058: # $mimetype - reference to scalar to accommodate mime type determined
1.1152 raeburn 3059: # from File::MMagic.
1.858 raeburn 3060: #
1.686 albertel 3061: # output: url of file in userspace, or error: <message>
3062: # or /adm/notfound.html if failure to upload occurse
1.608 albertel 3063:
1.531 albertel 3064: sub userfileupload {
1.1090 raeburn 3065: my ($formname,$context,$subdir,$parser,$allfiles,$codebase,$destuname,
1.1095 raeburn 3066: $destudom,$thumbwidth,$thumbheight,$resizewidth,$resizeheight,$mimetype)=@_;
1.531 albertel 3067: if (!defined($subdir)) { $subdir='unknown'; }
1.620 albertel 3068: my $fname=$env{'form.'.$formname.'.filename'};
1.531 albertel 3069: $fname=&clean_filename($fname);
1.1090 raeburn 3070: # See if there is anything left
1.257 www 3071: unless ($fname) { return 'error: no uploaded file'; }
1.1090 raeburn 3072: # Files uploaded to help request form, or uploaded to "create course" page are handled differently
3073: if ((($formname eq 'screenshot') && ($subdir eq 'helprequests')) ||
3074: (($formname eq 'coursecreatorxml') && ($subdir eq 'batchupload')) ||
3075: ($context eq 'existingfile') || ($context eq 'canceloverwrite')) {
1.523 raeburn 3076: my $now = time;
1.1090 raeburn 3077: my $filepath;
1.1095 raeburn 3078: if (($formname eq 'screenshot') && ($subdir eq 'helprequests')) {
1.1090 raeburn 3079: $filepath = 'tmp/helprequests/'.$now;
3080: } elsif (($formname eq 'coursecreatorxml') && ($subdir eq 'batchupload')) {
3081: $filepath = 'tmp/addcourse/'.$destudom.'/web/'.$env{'user.name'}.
3082: '_'.$env{'user.domain'}.'/pending';
3083: } elsif (($context eq 'existingfile') || ($context eq 'canceloverwrite')) {
3084: my ($docuname,$docudom);
3085: if ($destudom) {
3086: $docudom = $destudom;
3087: } else {
3088: $docudom = $env{'user.domain'};
3089: }
3090: if ($destuname) {
3091: $docuname = $destuname;
3092: } else {
3093: $docuname = $env{'user.name'};
3094: }
3095: if (exists($env{'form.group'})) {
3096: $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
3097: $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
3098: }
3099: $filepath = 'tmp/overwrites/'.$docudom.'/'.$docuname.'/'.$subdir;
3100: if ($context eq 'canceloverwrite') {
3101: my $tempfile = $perlvar{'lonDaemons'}.'/'.$filepath.'/'.$fname;
3102: if (-e $tempfile) {
3103: my @info = stat($tempfile);
3104: if ($info[9] eq $env{'form.timestamp'}) {
3105: unlink($tempfile);
3106: }
3107: }
3108: return;
1.523 raeburn 3109: }
3110: }
1.1090 raeburn 3111: # Create the directory if not present
1.741 raeburn 3112: my @parts=split(/\//,$filepath);
3113: my $fullpath = $perlvar{'lonDaemons'};
3114: for (my $i=0;$i<@parts;$i++) {
3115: $fullpath .= '/'.$parts[$i];
3116: if ((-e $fullpath)!=1) {
3117: mkdir($fullpath,0777);
3118: }
3119: }
3120: open(my $fh,'>'.$fullpath.'/'.$fname);
3121: print $fh $env{'form.'.$formname};
3122: close($fh);
1.1090 raeburn 3123: if ($context eq 'existingfile') {
3124: my @info = stat($fullpath.'/'.$fname);
3125: return ($fullpath.'/'.$fname,$info[9]);
3126: } else {
3127: return $fullpath.'/'.$fname;
3128: }
1.523 raeburn 3129: }
1.995 raeburn 3130: if ($subdir eq 'scantron') {
3131: $fname = 'scantron_orig_'.$fname;
1.1093 raeburn 3132: } else {
1.995 raeburn 3133: $fname="$subdir/$fname";
3134: }
1.1090 raeburn 3135: if ($context eq 'coursedoc') {
1.638 albertel 3136: my $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
3137: my $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.646 raeburn 3138: if ($env{'form.folder'} =~ m/^(default|supplemental)/) {
1.638 albertel 3139: return &finishuserfileupload($docuname,$docudom,
3140: $formname,$fname,$parser,$allfiles,
1.1051 raeburn 3141: $codebase,$thumbwidth,$thumbheight,
1.1095 raeburn 3142: $resizewidth,$resizeheight,$context,$mimetype);
1.481 raeburn 3143: } else {
1.620 albertel 3144: $fname=$env{'form.folder'}.'/'.$fname;
1.638 albertel 3145: return &process_coursefile('uploaddoc',$docuname,$docudom,
3146: $fname,$formname,$parser,
1.1095 raeburn 3147: $allfiles,$codebase,$mimetype);
1.481 raeburn 3148: }
1.719 banghart 3149: } elsif (defined($destuname)) {
3150: my $docuname=$destuname;
3151: my $docudom=$destudom;
1.860 raeburn 3152: return &finishuserfileupload($docuname,$docudom,$formname,$fname,
3153: $parser,$allfiles,$codebase,
1.1051 raeburn 3154: $thumbwidth,$thumbheight,
1.1095 raeburn 3155: $resizewidth,$resizeheight,$context,$mimetype);
1.259 www 3156: } else {
1.638 albertel 3157: my $docuname=$env{'user.name'};
3158: my $docudom=$env{'user.domain'};
1.714 raeburn 3159: if (exists($env{'form.group'})) {
3160: $docuname=$env{'course.'.$env{'request.course.id'}.'.num'};
3161: $docudom=$env{'course.'.$env{'request.course.id'}.'.domain'};
3162: }
1.860 raeburn 3163: return &finishuserfileupload($docuname,$docudom,$formname,$fname,
3164: $parser,$allfiles,$codebase,
1.1051 raeburn 3165: $thumbwidth,$thumbheight,
1.1095 raeburn 3166: $resizewidth,$resizeheight,$context,$mimetype);
1.259 www 3167: }
1.271 www 3168: }
3169:
3170: sub finishuserfileupload {
1.860 raeburn 3171: my ($docuname,$docudom,$formname,$fname,$parser,$allfiles,$codebase,
1.1095 raeburn 3172: $thumbwidth,$thumbheight,$resizewidth,$resizeheight,$context,$mimetype) = @_;
1.477 raeburn 3173: my $path=$docudom.'/'.$docuname.'/';
1.258 www 3174: my $filepath=$perlvar{'lonDocRoot'};
1.984 neumanie 3175:
1.860 raeburn 3176: my ($fnamepath,$file,$fetchthumb);
1.494 albertel 3177: $file=$fname;
3178: if ($fname=~m|/|) {
3179: ($fnamepath,$file) = ($fname =~ m|^(.*)/([^/]+)$|);
3180: $path.=$fnamepath.'/';
3181: }
1.259 www 3182: my @parts=split(/\//,$filepath.'/userfiles/'.$path);
1.258 www 3183: my $count;
3184: for ($count=4;$count<=$#parts;$count++) {
3185: $filepath.="/$parts[$count]";
3186: if ((-e $filepath)!=1) {
3187: mkdir($filepath,0777);
3188: }
3189: }
1.984 neumanie 3190:
1.258 www 3191: # Save the file
3192: {
1.701 albertel 3193: if (!open(FH,'>'.$filepath.'/'.$file)) {
3194: &logthis('Failed to create '.$filepath.'/'.$file);
3195: print STDERR ('Failed to create '.$filepath.'/'.$file."\n");
3196: return '/adm/notfound.html';
3197: }
1.1090 raeburn 3198: if ($context eq 'overwrite') {
1.1117 foxr 3199: my $source = LONCAPA::tempdir().'/overwrites/'.$docudom.'/'.$docuname.'/'.$fname;
1.1090 raeburn 3200: my $target = $filepath.'/'.$file;
3201: if (-e $source) {
3202: my @info = stat($source);
3203: if ($info[9] eq $env{'form.timestamp'}) {
3204: unless (&File::Copy::move($source,$target)) {
3205: &logthis('Failed to overwrite '.$filepath.'/'.$file);
3206: return "Moving from $source failed";
3207: }
3208: } else {
3209: return "Temporary file: $source had unexpected date/time for last modification";
3210: }
3211: } else {
3212: return "Temporary file: $source missing";
3213: }
3214: } elsif (!print FH ($env{'form.'.$formname})) {
1.701 albertel 3215: &logthis('Failed to write to '.$filepath.'/'.$file);
3216: print STDERR ('Failed to write to '.$filepath.'/'.$file."\n");
3217: return '/adm/notfound.html';
3218: }
1.570 albertel 3219: close(FH);
1.1051 raeburn 3220: if ($resizewidth && $resizeheight) {
3221: my $mm = new File::MMagic;
3222: my $mime_type = $mm->checktype_filename($filepath.'/'.$file);
3223: if ($mime_type =~ m{^image/}) {
3224: &resizeImage($filepath.'/'.$file,$resizewidth,$resizeheight);
3225: }
1.977 amueller 3226: }
1.258 www 3227: }
1.1152 raeburn 3228: if (($context eq 'coursedoc') || ($parser eq 'parse')) {
3229: if (ref($mimetype)) {
3230: if ($$mimetype eq '') {
3231: my $mm = new File::MMagic;
3232: my $type = $mm->checktype_filename($filepath.'/'.$file);
3233: $$mimetype = $type;
3234: }
3235: }
3236: }
1.637 raeburn 3237: if ($parser eq 'parse') {
1.1152 raeburn 3238: if ((ref($mimetype)) && ($$mimetype eq 'text/html')) {
1.1024 raeburn 3239: my $parse_result = &extract_embedded_items($filepath.'/'.$file,
3240: $allfiles,$codebase);
3241: unless ($parse_result eq 'ok') {
3242: &logthis('Failed to parse '.$filepath.$file.
3243: ' for embedded media: '.$parse_result);
3244: }
1.637 raeburn 3245: }
3246: }
1.860 raeburn 3247: if (($thumbwidth =~ /^\d+$/) && ($thumbheight =~ /^\d+$/)) {
3248: my $input = $filepath.'/'.$file;
3249: my $output = $filepath.'/'.'tn-'.$file;
3250: my $thumbsize = $thumbwidth.'x'.$thumbheight;
3251: system("convert -sample $thumbsize $input $output");
3252: if (-e $filepath.'/'.'tn-'.$file) {
3253: $fetchthumb = 1;
3254: }
3255: }
1.858 raeburn 3256:
1.259 www 3257: # Notify homeserver to grep it
3258: #
1.984 neumanie 3259: my $docuhome=&homeserver($docuname,$docudom);
1.494 albertel 3260: my $fetchresult= &reply('fetchuserfile:'.$path.$file,$docuhome);
1.295 www 3261: if ($fetchresult eq 'ok') {
1.860 raeburn 3262: if ($fetchthumb) {
3263: my $thumbresult= &reply('fetchuserfile:'.$path.'tn-'.$file,$docuhome);
3264: if ($thumbresult ne 'ok') {
3265: &logthis('Failed to transfer '.$path.'tn-'.$file.' to host '.
3266: $docuhome.': '.$thumbresult);
3267: }
3268: }
1.259 www 3269: #
1.258 www 3270: # Return the URL to it
1.494 albertel 3271: return '/uploaded/'.$path.$file;
1.263 www 3272: } else {
1.494 albertel 3273: &logthis('Failed to transfer '.$path.$file.' to host '.$docuhome.
3274: ': '.$fetchresult);
1.263 www 3275: return '/adm/notfound.html';
1.858 raeburn 3276: }
1.493 albertel 3277: }
3278:
1.637 raeburn 3279: sub extract_embedded_items {
1.961 raeburn 3280: my ($fullpath,$allfiles,$codebase,$content) = @_;
1.637 raeburn 3281: my @state = ();
1.1164 raeburn 3282: my (%lastids,%related,%shockwave,%flashvars);
1.637 raeburn 3283: my %javafiles = (
3284: codebase => '',
3285: code => '',
3286: archive => ''
3287: );
3288: my %mediafiles = (
3289: src => '',
3290: movie => '',
3291: );
1.648 raeburn 3292: my $p;
3293: if ($content) {
3294: $p = HTML::LCParser->new($content);
3295: } else {
1.961 raeburn 3296: $p = HTML::LCParser->new($fullpath);
1.648 raeburn 3297: }
1.641 albertel 3298: while (my $t=$p->get_token()) {
1.640 albertel 3299: if ($t->[0] eq 'S') {
3300: my ($tagname, $attr) = ($t->[1],$t->[2]);
1.886 albertel 3301: push(@state, $tagname);
1.648 raeburn 3302: if (lc($tagname) eq 'allow') {
3303: &add_filetype($allfiles,$attr->{'src'},'src');
3304: }
1.640 albertel 3305: if (lc($tagname) eq 'img') {
3306: &add_filetype($allfiles,$attr->{'src'},'src');
3307: }
1.886 albertel 3308: if (lc($tagname) eq 'a') {
3309: &add_filetype($allfiles,$attr->{'href'},'href');
3310: }
1.645 raeburn 3311: if (lc($tagname) eq 'script') {
1.1164 raeburn 3312: my $src;
1.645 raeburn 3313: if ($attr->{'archive'} =~ /\.jar$/i) {
3314: &add_filetype($allfiles,$attr->{'archive'},'archive');
3315: } else {
1.1164 raeburn 3316: if ($attr->{'src'} ne '') {
3317: $src = $attr->{'src'};
3318: &add_filetype($allfiles,$src,'src');
3319: }
3320: }
3321: my $text = $p->get_trimmed_text();
3322: if ($text =~ /\Qswfobject.registerObject(\E([^\)]+)\)/) {
3323: my @swfargs = split(/,/,$1);
3324: foreach my $item (@swfargs) {
3325: $item =~ s/["']//g;
3326: $item =~ s/^\s+//;
3327: $item =~ s/\s+$//;
3328: }
3329: if (($swfargs[0] ne'') && ($swfargs[2] ne '')) {
3330: if (ref($related{$swfargs[0]}) eq 'ARRAY') {
3331: push(@{$related{$swfargs[0]}},$swfargs[2]);
3332: } else {
3333: $related{$swfargs[0]} = [$swfargs[2]];
3334: }
3335: }
1.645 raeburn 3336: }
3337: }
3338: if (lc($tagname) eq 'link') {
3339: if (lc($attr->{'rel'}) eq 'stylesheet') {
3340: &add_filetype($allfiles,$attr->{'href'},'href');
3341: }
3342: }
1.640 albertel 3343: if (lc($tagname) eq 'object' ||
3344: (lc($tagname) eq 'embed' && lc($state[-2]) ne 'object')) {
3345: foreach my $item (keys(%javafiles)) {
3346: $javafiles{$item} = '';
3347: }
1.1164 raeburn 3348: if ((lc($tagname) eq 'object') && (lc($state[-2]) ne 'object')) {
3349: $lastids{lc($tagname)} = $attr->{'id'};
3350: }
1.640 albertel 3351: }
3352: if (lc($state[-2]) eq 'object' && lc($tagname) eq 'param') {
3353: my $name = lc($attr->{'name'});
3354: foreach my $item (keys(%javafiles)) {
3355: if ($name eq $item) {
3356: $javafiles{$item} = $attr->{'value'};
3357: last;
3358: }
3359: }
1.1164 raeburn 3360: my $pathfrom;
1.640 albertel 3361: foreach my $item (keys(%mediafiles)) {
3362: if ($name eq $item) {
1.1164 raeburn 3363: $pathfrom = $attr->{'value'};
3364: $shockwave{$lastids{lc($state[-2])}} = $pathfrom;
3365: &add_filetype($allfiles,$pathfrom,$name);
1.640 albertel 3366: last;
3367: }
3368: }
1.1164 raeburn 3369: if ($name eq 'flashvars') {
3370: $flashvars{$lastids{lc($state[-2])}} = $attr->{'value'};
3371: }
3372: if ($pathfrom ne '') {
3373: &embedded_dependency($allfiles,\%related,$lastids{lc($state[-2])},
3374: $pathfrom);
3375: }
1.640 albertel 3376: }
3377: if (lc($tagname) eq 'embed' || lc($tagname) eq 'applet') {
3378: foreach my $item (keys(%javafiles)) {
3379: if ($attr->{$item}) {
3380: $javafiles{$item} = $attr->{$item};
3381: last;
3382: }
3383: }
3384: foreach my $item (keys(%mediafiles)) {
3385: if ($attr->{$item}) {
3386: &add_filetype($allfiles,$attr->{$item},$item);
3387: last;
3388: }
3389: }
1.1164 raeburn 3390: if (lc($tagname) eq 'embed') {
3391: if (($attr->{'name'} ne '') && ($attr->{'src'} ne '')) {
3392: &embedded_dependency($allfiles,\%related,$attr->{'name'},
3393: $attr->{'src'});
3394: }
3395: }
1.640 albertel 3396: }
1.1164 raeburn 3397: if ($t->[4] =~ m{/>$}) {
3398: pop(@state);
3399: }
1.640 albertel 3400: } elsif ($t->[0] eq 'E') {
3401: my ($tagname) = ($t->[1]);
3402: if ($javafiles{'codebase'} ne '') {
3403: $javafiles{'codebase'} .= '/';
3404: }
3405: if (lc($tagname) eq 'applet' ||
3406: lc($tagname) eq 'object' ||
3407: (lc($tagname) eq 'embed' && lc($state[-2]) ne 'object')
3408: ) {
3409: foreach my $item (keys(%javafiles)) {
3410: if ($item ne 'codebase' && $javafiles{$item} ne '') {
3411: my $file=$javafiles{'codebase'}.$javafiles{$item};
3412: &add_filetype($allfiles,$file,$item);
3413: }
3414: }
3415: }
3416: pop @state;
3417: }
3418: }
1.1164 raeburn 3419: foreach my $id (sort(keys(%flashvars))) {
3420: if ($shockwave{$id} ne '') {
3421: my @pairs = split(/\&/,$flashvars{$id});
3422: foreach my $pair (@pairs) {
3423: my ($key,$value) = split(/\=/,$pair);
3424: if ($key eq 'thumb') {
3425: &add_filetype($allfiles,$value,$key);
3426: } elsif ($key eq 'content') {
3427: my ($path) = ($shockwave{$id} =~ m{^(.+/)[^/]+$});
3428: my ($ext) = ($value =~ /\.([^.]+)$/);
3429: if ($ext ne '') {
3430: &add_filetype($allfiles,$path.$value,$ext);
3431: }
3432: }
3433: }
3434: }
3435: }
1.637 raeburn 3436: return 'ok';
3437: }
3438:
1.639 albertel 3439: sub add_filetype {
3440: my ($allfiles,$file,$type)=@_;
3441: if (exists($allfiles->{$file})) {
3442: unless (grep/^\Q$type\E$/, @{$allfiles->{$file}}) {
3443: push(@{$allfiles->{$file}}, &escape($type));
3444: }
3445: } else {
3446: @{$allfiles->{$file}} = (&escape($type));
1.637 raeburn 3447: }
3448: }
3449:
1.1164 raeburn 3450: sub embedded_dependency {
3451: my ($allfiles,$related,$identifier,$pathfrom) = @_;
3452: if ((ref($allfiles) eq 'HASH') && (ref($related) eq 'HASH')) {
3453: if (($identifier ne '') &&
3454: (ref($related->{$identifier}) eq 'ARRAY') &&
3455: ($pathfrom ne '')) {
3456: my ($path) = ($pathfrom =~ m{^(.+/)[^/]+$});
3457: foreach my $dep (@{$related->{$identifier}}) {
3458: &add_filetype($allfiles,$path.$dep,'object');
3459: }
3460: }
3461: }
3462: return;
3463: }
3464:
1.493 albertel 3465: sub removeuploadedurl {
1.984 neumanie 3466: my ($url)=@_;
3467: my (undef,undef,$udom,$uname,$fname)=split('/',$url,5);
1.613 albertel 3468: return &removeuserfile($uname,$udom,$fname);
1.490 albertel 3469: }
3470:
3471: sub removeuserfile {
3472: my ($docuname,$docudom,$fname)=@_;
1.984 neumanie 3473: my $home=&homeserver($docuname,$docudom);
1.798 raeburn 3474: my $result = &reply("removeuserfile:$docudom/$docuname/$fname",$home);
1.984 neumanie 3475: if ($result eq 'ok') {
1.798 raeburn 3476: if (($fname !~ /\.meta$/) && (&is_portfolio_file($fname))) {
3477: my $metafile = $fname.'.meta';
3478: my $metaresult = &removeuserfile($docuname,$docudom,$metafile);
1.823 albertel 3479: my $url = "/uploaded/$docudom/$docuname/$fname";
1.984 neumanie 3480: my ($file,$group) = (&parse_portfolio_url($url))[3,4];
1.821 raeburn 3481: my $sqlresult =
1.823 albertel 3482: &update_portfolio_table($docuname,$docudom,$file,
1.821 raeburn 3483: 'portfolio_metadata',$group,
3484: 'delete');
1.798 raeburn 3485: }
3486: }
3487: return $result;
1.257 www 3488: }
1.15 www 3489:
1.530 albertel 3490: sub mkdiruserfile {
3491: my ($docuname,$docudom,$dir)=@_;
3492: my $home=&homeserver($docuname,$docudom);
3493: return &reply("mkdiruserfile:".&escape("$docudom/$docuname/$dir"),$home);
3494: }
3495:
1.531 albertel 3496: sub renameuserfile {
3497: my ($docuname,$docudom,$old,$new)=@_;
3498: my $home=&homeserver($docuname,$docudom);
1.798 raeburn 3499: my $result = &reply("renameuserfile:$docudom:$docuname:".
3500: &escape("$old").':'.&escape("$new"),$home);
3501: if ($result eq 'ok') {
3502: if (($old !~ /\.meta$/) && (&is_portfolio_file($old))) {
3503: my $oldmeta = $old.'.meta';
3504: my $newmeta = $new.'.meta';
3505: my $metaresult =
3506: &renameuserfile($docuname,$docudom,$oldmeta,$newmeta);
1.823 albertel 3507: my $url = "/uploaded/$docudom/$docuname/$old";
3508: my ($file,$group) = (&parse_portfolio_url($url))[3,4];
1.821 raeburn 3509: my $sqlresult =
1.823 albertel 3510: &update_portfolio_table($docuname,$docudom,$file,
1.821 raeburn 3511: 'portfolio_metadata',$group,
3512: 'delete');
1.798 raeburn 3513: }
3514: }
3515: return $result;
1.531 albertel 3516: }
3517:
1.14 www 3518: # ------------------------------------------------------------------------- Log
3519:
3520: sub log {
3521: my ($dom,$nam,$hom,$what)=@_;
1.47 www 3522: return critical("log:$dom:$nam:$what",$hom);
1.157 www 3523: }
3524:
3525: # ------------------------------------------------------------------ Course Log
1.352 www 3526: #
3527: # This routine flushes several buffers of non-mission-critical nature
3528: #
1.157 www 3529:
3530: sub flushcourselogs {
1.352 www 3531: &logthis('Flushing log buffers');
3532: #
3533: # course logs
3534: # This is a log of all transactions in a course, which can be used
3535: # for data mining purposes
3536: #
3537: # It also collects the courseid database, which lists last transaction
3538: # times and course titles for all courseids
3539: #
3540: my %courseidbuffer=();
1.921 raeburn 3541: foreach my $crsid (keys(%courselogs)) {
1.352 www 3542: if (&reply('log:'.$coursedombuf{$crsid}.':'.$coursenumbuf{$crsid}.':'.
1.188 www 3543: &escape($courselogs{$crsid}),
3544: $coursehombuf{$crsid}) eq 'ok') {
1.157 www 3545: delete $courselogs{$crsid};
3546: } else {
3547: &logthis('Failed to flush log buffer for '.$crsid);
3548: if (length($courselogs{$crsid})>40000) {
1.672 albertel 3549: &logthis("<font color=\"blue\">WARNING: Buffer for ".$crsid.
1.157 www 3550: " exceeded maximum size, deleting.</font>");
3551: delete $courselogs{$crsid};
3552: }
1.352 www 3553: }
1.920 raeburn 3554: $courseidbuffer{$coursehombuf{$crsid}}{$crsid} = {
1.936 raeburn 3555: 'description' => $coursedescrbuf{$crsid},
3556: 'inst_code' => $courseinstcodebuf{$crsid},
3557: 'type' => $coursetypebuf{$crsid},
3558: 'owner' => $courseownerbuf{$crsid},
1.920 raeburn 3559: };
1.191 harris41 3560: }
1.352 www 3561: #
3562: # Write course id database (reverse lookup) to homeserver of courses
3563: # Is used in pickcourse
3564: #
1.840 albertel 3565: foreach my $crs_home (keys(%courseidbuffer)) {
1.918 raeburn 3566: my $response = &courseidput(&host_domain($crs_home),
1.921 raeburn 3567: $courseidbuffer{$crs_home},
3568: $crs_home,'timeonly');
1.352 www 3569: }
3570: #
3571: # File accesses
3572: # Writes to the dynamic metadata of resources to get hit counts, etc.
3573: #
1.449 matthew 3574: foreach my $entry (keys(%accesshash)) {
1.458 matthew 3575: if ($entry =~ /___count$/) {
3576: my ($dom,$name);
1.807 albertel 3577: ($dom,$name,undef)=
1.811 albertel 3578: ($entry=~m{___($match_domain)/($match_name)/(.*)___count$});
1.458 matthew 3579: if (! defined($dom) || $dom eq '' ||
3580: ! defined($name) || $name eq '') {
1.620 albertel 3581: my $cid = $env{'request.course.id'};
3582: $dom = $env{'request.'.$cid.'.domain'};
3583: $name = $env{'request.'.$cid.'.num'};
1.458 matthew 3584: }
1.450 matthew 3585: my $value = $accesshash{$entry};
3586: my (undef,$url,undef) = ($entry =~ /^(.*)___(.*)___count$/);
3587: my %temphash=($url => $value);
1.449 matthew 3588: my $result = &inc('nohist_accesscount',\%temphash,$dom,$name);
3589: if ($result eq 'ok') {
3590: delete $accesshash{$entry};
3591: }
3592: } else {
1.811 albertel 3593: my ($dom,$name) = ($entry=~m{___($match_domain)/($match_name)/(.*)___(\w+)$});
1.1159 www 3594: if (($dom eq 'uploaded') || ($dom eq 'adm')) { next; }
1.450 matthew 3595: my %temphash=($entry => $accesshash{$entry});
1.449 matthew 3596: if (&put('nohist_resevaldata',\%temphash,$dom,$name) eq 'ok') {
3597: delete $accesshash{$entry};
3598: }
1.185 www 3599: }
1.191 harris41 3600: }
1.352 www 3601: #
3602: # Roles
3603: # Reverse lookup of user roles for course faculty/staff and co-authorship
3604: #
1.800 albertel 3605: foreach my $entry (keys(%userrolehash)) {
1.351 www 3606: my ($role,$uname,$udom,$runame,$rudom,$rsec)=
1.349 www 3607: split(/\:/,$entry);
3608: if (&Apache::lonnet::put('nohist_userroles',
1.351 www 3609: { $role.':'.$uname.':'.$udom.':'.$rsec => $userrolehash{$entry} },
1.349 www 3610: $rudom,$runame) eq 'ok') {
3611: delete $userrolehash{$entry};
3612: }
3613: }
1.662 raeburn 3614: #
3615: # Reverse lookup of domain roles (dc, ad, li, sc, au)
3616: #
3617: my %domrolebuffer = ();
1.1000 raeburn 3618: foreach my $entry (keys(%domainrolehash)) {
1.901 albertel 3619: my ($role,$uname,$udom,$runame,$rudom,$rsec)=split(/:/,$entry);
1.662 raeburn 3620: if ($domrolebuffer{$rudom}) {
3621: $domrolebuffer{$rudom}.='&'.&escape($entry).
3622: '='.&escape($domainrolehash{$entry});
3623: } else {
3624: $domrolebuffer{$rudom}.=&escape($entry).
3625: '='.&escape($domainrolehash{$entry});
3626: }
3627: delete $domainrolehash{$entry};
3628: }
3629: foreach my $dom (keys(%domrolebuffer)) {
1.841 albertel 3630: my %servers = &get_servers($dom,'library');
3631: foreach my $tryserver (keys(%servers)) {
3632: unless (&reply('domroleput:'.$dom.':'.
3633: $domrolebuffer{$dom},$tryserver) eq 'ok') {
3634: &logthis('Put of domain roles failed for '.$dom.' and '.$tryserver);
3635: }
1.662 raeburn 3636: }
3637: }
1.186 www 3638: $dumpcount++;
1.157 www 3639: }
3640:
3641: sub courselog {
3642: my $what=shift;
1.158 www 3643: $what=time.':'.$what;
1.620 albertel 3644: unless ($env{'request.course.id'}) { return ''; }
3645: $coursedombuf{$env{'request.course.id'}}=
3646: $env{'course.'.$env{'request.course.id'}.'.domain'};
3647: $coursenumbuf{$env{'request.course.id'}}=
3648: $env{'course.'.$env{'request.course.id'}.'.num'};
3649: $coursehombuf{$env{'request.course.id'}}=
3650: $env{'course.'.$env{'request.course.id'}.'.home'};
3651: $coursedescrbuf{$env{'request.course.id'}}=
3652: $env{'course.'.$env{'request.course.id'}.'.description'};
3653: $courseinstcodebuf{$env{'request.course.id'}}=
3654: $env{'course.'.$env{'request.course.id'}.'.internal.coursecode'};
3655: $courseownerbuf{$env{'request.course.id'}}=
3656: $env{'course.'.$env{'request.course.id'}.'.internal.courseowner'};
1.741 raeburn 3657: $coursetypebuf{$env{'request.course.id'}}=
3658: $env{'course.'.$env{'request.course.id'}.'.type'};
1.620 albertel 3659: if (defined $courselogs{$env{'request.course.id'}}) {
3660: $courselogs{$env{'request.course.id'}}.='&'.$what;
1.157 www 3661: } else {
1.620 albertel 3662: $courselogs{$env{'request.course.id'}}.=$what;
1.157 www 3663: }
1.620 albertel 3664: if (length($courselogs{$env{'request.course.id'}})>4048) {
1.157 www 3665: &flushcourselogs();
3666: }
1.158 www 3667: }
3668:
3669: sub courseacclog {
3670: my $fnsymb=shift;
1.620 albertel 3671: unless ($env{'request.course.id'}) { return ''; }
3672: my $what=$fnsymb.':'.$env{'user.name'}.':'.$env{'user.domain'};
1.1144 www 3673: if ($fnsymb=~/$LONCAPA::assess_re/) {
1.187 www 3674: $what.=':POST';
1.583 matthew 3675: # FIXME: Probably ought to escape things....
1.800 albertel 3676: foreach my $key (keys(%env)) {
3677: if ($key=~/^form\.(.*)/) {
1.975 raeburn 3678: my $formitem = $1;
3679: if ($formitem =~ /^HWFILE(?:SIZE|TOOBIG)/) {
3680: $what.=':'.$formitem.'='.$env{$key};
3681: } elsif ($formitem !~ /^HWFILE(?:[^.]+)$/) {
3682: $what.=':'.$formitem.'='.$env{$key};
3683: }
1.158 www 3684: }
1.191 harris41 3685: }
1.583 matthew 3686: } elsif ($fnsymb =~ m:^/adm/searchcat:) {
3687: # FIXME: We should not be depending on a form parameter that someone
3688: # editing lonsearchcat.pm might change in the future.
1.620 albertel 3689: if ($env{'form.phase'} eq 'course_search') {
1.583 matthew 3690: $what.= ':POST';
3691: # FIXME: Probably ought to escape things....
3692: foreach my $element ('courseexp','crsfulltext','crsrelated',
3693: 'crsdiscuss') {
1.620 albertel 3694: $what.=':'.$element.'='.$env{'form.'.$element};
1.583 matthew 3695: }
3696: }
1.158 www 3697: }
3698: &courselog($what);
1.149 www 3699: }
3700:
1.185 www 3701: sub countacc {
3702: my $url=&declutter(shift);
1.458 matthew 3703: return if (! defined($url) || $url eq '');
1.620 albertel 3704: unless ($env{'request.course.id'}) { return ''; }
1.1158 www 3705: #
3706: # Mark that this url was used in this course
3707: #
1.620 albertel 3708: $accesshash{$env{'request.course.id'}.'___'.$url.'___course'}=1;
1.1158 www 3709: #
3710: # Increase the access count for this resource in this child process
3711: #
1.281 www 3712: my $key=$$.$processmarker.'_'.$dumpcount.'___'.$url.'___count';
1.450 matthew 3713: $accesshash{$key}++;
1.185 www 3714: }
1.349 www 3715:
1.361 www 3716: sub linklog {
3717: my ($from,$to)=@_;
3718: $from=&declutter($from);
3719: $to=&declutter($to);
3720: $accesshash{$from.'___'.$to.'___comefrom'}=1;
3721: $accesshash{$to.'___'.$from.'___goto'}=1;
3722: }
1.1160 www 3723:
3724: sub statslog {
3725: my ($symb,$part,$users,$av_attempts,$degdiff)=@_;
3726: if ($users<2) { return; }
3727: my %dynstore=&LONCAPA::lonmetadata::dynamic_metadata_storage({
3728: 'course' => $env{'request.course.id'},
3729: 'sections' => '"all"',
3730: 'num_students' => $users,
3731: 'part' => $part,
3732: 'symb' => $symb,
3733: 'mean_tries' => $av_attempts,
3734: 'deg_of_diff' => $degdiff});
3735: foreach my $key (keys(%dynstore)) {
3736: $accesshash{$key}=$dynstore{$key};
3737: }
3738: }
1.361 www 3739:
1.349 www 3740: sub userrolelog {
3741: my ($trole,$username,$domain,$area,$tstart,$tend)=@_;
1.1169 droeschl 3742: if ( $trole =~ /^(ca|aa|in|cc|ep|cr|ta|co)/ ) {
1.350 www 3743: my (undef,$rudom,$runame,$rsec)=split(/\//,$area);
3744: $userrolehash
3745: {$trole.':'.$username.':'.$domain.':'.$runame.':'.$rudom.':'.$rsec}
1.349 www 3746: =$tend.':'.$tstart;
1.662 raeburn 3747: }
1.1169 droeschl 3748: if ($env{'request.role'} =~ /dc\./ && $trole =~ /^(au|in|cc|ep|cr|ta|co)/) {
1.898 albertel 3749: $userrolehash
3750: {$trole.':'.$username.':'.$domain.':'.$env{'user.name'}.':'.$env{'user.domain'}.':'}
3751: =$tend.':'.$tstart;
3752: }
1.1169 droeschl 3753: if ($trole =~ /^(dc|ad|li|au|dg|sc)/ ) {
1.662 raeburn 3754: my (undef,$rudom,$runame,$rsec)=split(/\//,$area);
3755: $domainrolehash
3756: {$trole.':'.$username.':'.$domain.':'.$runame.':'.$rudom.':'.$rsec}
3757: = $tend.':'.$tstart;
3758: }
1.351 www 3759: }
3760:
1.957 raeburn 3761: sub courserolelog {
3762: my ($trole,$username,$domain,$area,$tstart,$tend,$delflag,$selfenroll,$context)=@_;
1.1184 raeburn 3763: if ($area =~ m-^/($match_domain)/($match_courseid)/?([^/]*)-) {
3764: my $cdom = $1;
3765: my $cnum = $2;
3766: my $sec = $3;
3767: my $namespace = 'rolelog';
3768: my %storehash = (
3769: role => $trole,
3770: start => $tstart,
3771: end => $tend,
3772: selfenroll => $selfenroll,
3773: context => $context,
3774: );
3775: if ($trole eq 'gr') {
3776: $namespace = 'groupslog';
3777: $storehash{'group'} = $sec;
3778: } else {
3779: $storehash{'section'} = $sec;
3780: }
1.1188 raeburn 3781: &write_log('course',$namespace,\%storehash,$delflag,$username,
3782: $domain,$cnum,$cdom);
1.1184 raeburn 3783: if (($trole ne 'st') || ($sec ne '')) {
3784: &devalidate_cache_new('getcourseroles',$cdom.'_'.$cnum);
1.957 raeburn 3785: }
3786: }
3787: return;
3788: }
3789:
1.1184 raeburn 3790: sub domainrolelog {
3791: my ($trole,$username,$domain,$area,$tstart,$tend,$delflag,$context)=@_;
3792: if ($area =~ m{^/($match_domain)/$}) {
3793: my $cdom = $1;
3794: my $domconfiguser = &Apache::lonnet::get_domainconfiguser($cdom);
3795: my $namespace = 'rolelog';
3796: my %storehash = (
3797: role => $trole,
3798: start => $tstart,
3799: end => $tend,
3800: context => $context,
3801: );
1.1188 raeburn 3802: &write_log('domain',$namespace,\%storehash,$delflag,$username,
3803: $domain,$domconfiguser,$cdom);
1.1184 raeburn 3804: }
3805: return;
3806:
3807: }
3808:
3809: sub coauthorrolelog {
3810: my ($trole,$username,$domain,$area,$tstart,$tend,$delflag,$context)=@_;
3811: if ($area =~ m{^/($match_domain)/($match_username)$}) {
3812: my $audom = $1;
3813: my $auname = $2;
3814: my $namespace = 'rolelog';
3815: my %storehash = (
3816: role => $trole,
3817: start => $tstart,
3818: end => $tend,
3819: context => $context,
3820: );
1.1188 raeburn 3821: &write_log('author',$namespace,\%storehash,$delflag,$username,
3822: $domain,$auname,$audom);
1.1184 raeburn 3823: }
3824: return;
3825: }
3826:
1.351 www 3827: sub get_course_adv_roles {
1.948 raeburn 3828: my ($cid,$codes) = @_;
1.620 albertel 3829: $cid=$env{'request.course.id'} unless (defined($cid));
1.351 www 3830: my %coursehash=&coursedescription($cid);
1.988 raeburn 3831: my $crstype = &Apache::loncommon::course_type($cid);
1.470 www 3832: my %nothide=();
1.800 albertel 3833: foreach my $user (split(/\s*\,\s*/,$coursehash{'nothideprivileged'})) {
1.937 raeburn 3834: if ($user !~ /:/) {
3835: $nothide{join(':',split(/[\@]/,$user))}=1;
3836: } else {
3837: $nothide{$user}=1;
3838: }
1.470 www 3839: }
1.351 www 3840: my %returnhash=();
3841: my %dumphash=
3842: &dump('nohist_userroles',$coursehash{'domain'},$coursehash{'num'});
3843: my $now=time;
1.997 raeburn 3844: my %privileged;
1.1000 raeburn 3845: foreach my $entry (keys(%dumphash)) {
1.800 albertel 3846: my ($tend,$tstart)=split(/\:/,$dumphash{$entry});
1.351 www 3847: if (($tstart) && ($tstart<0)) { next; }
3848: if (($tend) && ($tend<$now)) { next; }
3849: if (($tstart) && ($now<$tstart)) { next; }
1.800 albertel 3850: my ($role,$username,$domain,$section)=split(/\:/,$entry);
1.576 albertel 3851: if ($username eq '' || $domain eq '') { next; }
1.997 raeburn 3852: unless (ref($privileged{$domain}) eq 'HASH') {
3853: my %dompersonnel =
1.998 raeburn 3854: &Apache::lonnet::get_domain_roles($domain,['dc'],$now,$now);
1.997 raeburn 3855: $privileged{$domain} = {};
3856: foreach my $server (keys(%dompersonnel)) {
1.999 raeburn 3857: if (ref($dompersonnel{$server}) eq 'HASH') {
1.997 raeburn 3858: foreach my $user (keys(%{$dompersonnel{$server}})) {
3859: my ($trole,$uname,$udom) = split(/:/,$user);
3860: $privileged{$udom}{$uname} = 1;
3861: }
3862: }
3863: }
3864: }
3865: if ((exists($privileged{$domain}{$username})) &&
3866: (!$nothide{$username.':'.$domain})) { next; }
1.656 albertel 3867: if ($role eq 'cr') { next; }
1.948 raeburn 3868: if ($codes) {
3869: if ($section) { $role .= ':'.$section; }
3870: if ($returnhash{$role}) {
3871: $returnhash{$role}.=','.$username.':'.$domain;
3872: } else {
3873: $returnhash{$role}=$username.':'.$domain;
3874: }
1.351 www 3875: } else {
1.988 raeburn 3876: my $key=&plaintext($role,$crstype);
1.973 bisitz 3877: if ($section) { $key.=' ('.&Apache::lonlocal::mt('Section [_1]',$section).')'; }
1.948 raeburn 3878: if ($returnhash{$key}) {
3879: $returnhash{$key}.=','.$username.':'.$domain;
3880: } else {
3881: $returnhash{$key}=$username.':'.$domain;
3882: }
1.351 www 3883: }
1.948 raeburn 3884: }
1.400 www 3885: return %returnhash;
3886: }
3887:
3888: sub get_my_roles {
1.937 raeburn 3889: my ($uname,$udom,$context,$types,$roles,$roledoms,$withsec,$hidepriv)=@_;
1.620 albertel 3890: unless (defined($uname)) { $uname=$env{'user.name'}; }
3891: unless (defined($udom)) { $udom=$env{'user.domain'}; }
1.937 raeburn 3892: my (%dumphash,%nothide);
1.1086 raeburn 3893: if ($context eq 'userroles') {
1.1166 raeburn 3894: %dumphash = &dump('roles',$udom,$uname);
1.858 raeburn 3895: } else {
3896: %dumphash=
1.400 www 3897: &dump('nohist_userroles',$udom,$uname);
1.937 raeburn 3898: if ($hidepriv) {
3899: my %coursehash=&coursedescription($udom.'_'.$uname);
3900: foreach my $user (split(/\s*\,\s*/,$coursehash{'nothideprivileged'})) {
3901: if ($user !~ /:/) {
3902: $nothide{join(':',split(/[\@]/,$user))} = 1;
3903: } else {
3904: $nothide{$user} = 1;
3905: }
3906: }
3907: }
1.858 raeburn 3908: }
1.400 www 3909: my %returnhash=();
3910: my $now=time;
1.999 raeburn 3911: my %privileged;
1.800 albertel 3912: foreach my $entry (keys(%dumphash)) {
1.867 raeburn 3913: my ($role,$tend,$tstart);
3914: if ($context eq 'userroles') {
1.1149 raeburn 3915: next if ($entry =~ /^rolesdef/);
1.867 raeburn 3916: ($role,$tend,$tstart)=split(/_/,$dumphash{$entry});
3917: } else {
3918: ($tend,$tstart)=split(/\:/,$dumphash{$entry});
3919: }
1.400 www 3920: if (($tstart) && ($tstart<0)) { next; }
1.832 raeburn 3921: my $status = 'active';
1.939 raeburn 3922: if (($tend) && ($tend<=$now)) {
1.832 raeburn 3923: $status = 'previous';
3924: }
3925: if (($tstart) && ($now<$tstart)) {
3926: $status = 'future';
3927: }
3928: if (ref($types) eq 'ARRAY') {
3929: if (!grep(/^\Q$status\E$/,@{$types})) {
3930: next;
3931: }
3932: } else {
3933: if ($status ne 'active') {
3934: next;
3935: }
3936: }
1.867 raeburn 3937: my ($rolecode,$username,$domain,$section,$area);
3938: if ($context eq 'userroles') {
1.1186 raeburn 3939: ($area,$rolecode) = ($entry =~ /^(.+)_([^_]+)$/);
1.867 raeburn 3940: (undef,$domain,$username,$section) = split(/\//,$area);
3941: } else {
3942: ($role,$username,$domain,$section) = split(/\:/,$entry);
3943: }
1.832 raeburn 3944: if (ref($roledoms) eq 'ARRAY') {
3945: if (!grep(/^\Q$domain\E$/,@{$roledoms})) {
3946: next;
3947: }
3948: }
3949: if (ref($roles) eq 'ARRAY') {
3950: if (!grep(/^\Q$role\E$/,@{$roles})) {
1.922 raeburn 3951: if ($role =~ /^cr\//) {
3952: if (!grep(/^cr$/,@{$roles})) {
3953: next;
3954: }
1.1104 raeburn 3955: } elsif ($role =~ /^gr\//) {
3956: if (!grep(/^gr$/,@{$roles})) {
3957: next;
3958: }
1.922 raeburn 3959: } else {
3960: next;
3961: }
1.832 raeburn 3962: }
1.867 raeburn 3963: }
1.937 raeburn 3964: if ($hidepriv) {
1.999 raeburn 3965: if ($context eq 'userroles') {
3966: if ((&privileged($username,$domain)) &&
3967: (!$nothide{$username.':'.$domain})) {
3968: next;
3969: }
3970: } else {
3971: unless (ref($privileged{$domain}) eq 'HASH') {
3972: my %dompersonnel =
3973: &Apache::lonnet::get_domain_roles($domain,['dc'],$now,$now);
3974: $privileged{$domain} = {};
3975: if (keys(%dompersonnel)) {
3976: foreach my $server (keys(%dompersonnel)) {
3977: if (ref($dompersonnel{$server}) eq 'HASH') {
3978: foreach my $user (keys(%{$dompersonnel{$server}})) {
3979: my ($trole,$uname,$udom) = split(/:/,$user);
3980: $privileged{$udom}{$uname} = $trole;
3981: }
3982: }
3983: }
3984: }
3985: }
3986: if (exists($privileged{$domain}{$username})) {
3987: if (!$nothide{$username.':'.$domain}) {
3988: next;
3989: }
3990: }
1.937 raeburn 3991: }
3992: }
1.933 raeburn 3993: if ($withsec) {
3994: $returnhash{$username.':'.$domain.':'.$role.':'.$section} =
3995: $tstart.':'.$tend;
3996: } else {
3997: $returnhash{$username.':'.$domain.':'.$role}=$tstart.':'.$tend;
3998: }
1.832 raeburn 3999: }
1.373 www 4000: return %returnhash;
1.399 www 4001: }
4002:
4003: # ----------------------------------------------------- Frontpage Announcements
4004: #
4005: #
4006:
4007: sub postannounce {
4008: my ($server,$text)=@_;
1.844 albertel 4009: unless (&allowed('psa',&host_domain($server))) { return 'refused'; }
1.399 www 4010: unless ($text=~/\w/) { $text=''; }
4011: return &reply('setannounce:'.&escape($text),$server);
4012: }
4013:
4014: sub getannounce {
1.448 albertel 4015:
4016: if (open(my $fh,$perlvar{'lonDocRoot'}.'/announcement.txt')) {
1.399 www 4017: my $announcement='';
1.800 albertel 4018: while (my $line = <$fh>) { $announcement .= $line; }
1.448 albertel 4019: close($fh);
1.399 www 4020: if ($announcement=~/\w/) {
4021: return
4022: '<table bgcolor="#FF5555" cellpadding="5" cellspacing="3">'.
1.518 albertel 4023: '<tr><td bgcolor="#FFFFFF"><tt>'.$announcement.'</tt></td></tr></table>';
1.399 www 4024: } else {
4025: return '';
4026: }
4027: } else {
4028: return '';
4029: }
1.351 www 4030: }
1.353 www 4031:
4032: # ---------------------------------------------------------- Course ID routines
4033: # Deal with domain's nohist_courseid.db files
4034: #
4035:
4036: sub courseidput {
1.921 raeburn 4037: my ($domain,$storehash,$coursehome,$caller) = @_;
1.1054 raeburn 4038: return unless (ref($storehash) eq 'HASH');
1.921 raeburn 4039: my $outcome;
4040: if ($caller eq 'timeonly') {
4041: my $cids = '';
4042: foreach my $item (keys(%$storehash)) {
4043: $cids.=&escape($item).'&';
4044: }
4045: $cids=~s/\&$//;
4046: $outcome = &reply('courseidputhash:'.$domain.':'.$caller.':'.$cids,
4047: $coursehome);
4048: } else {
4049: my $items = '';
4050: foreach my $item (keys(%$storehash)) {
4051: $items.= &escape($item).'='.
4052: &freeze_escape($$storehash{$item}).'&';
4053: }
4054: $items=~s/\&$//;
4055: $outcome = &reply('courseidputhash:'.$domain.':'.$caller.':'.$items,
4056: $coursehome);
1.918 raeburn 4057: }
4058: if ($outcome eq 'unknown_cmd') {
4059: my $what;
4060: foreach my $cid (keys(%$storehash)) {
4061: $what .= &escape($cid).'=';
1.921 raeburn 4062: foreach my $item ('description','inst_code','owner','type') {
1.936 raeburn 4063: $what .= &escape($storehash->{$cid}{$item}).':';
1.918 raeburn 4064: }
4065: $what =~ s/\:$/&/;
4066: }
4067: $what =~ s/\&$//;
4068: return &reply('courseidput:'.$domain.':'.$what,$coursehome);
4069: } else {
4070: return $outcome;
4071: }
1.353 www 4072: }
4073:
4074: sub courseiddump {
1.921 raeburn 4075: my ($domfilter,$descfilter,$sincefilter,$instcodefilter,$ownerfilter,
1.947 raeburn 4076: $coursefilter,$hostidflag,$hostidref,$typefilter,$regexp_ok,
1.1029 raeburn 4077: $selfenrollonly,$catfilter,$showhidden,$caller,$cloner,$cc_clone,
1.1071 raeburn 4078: $cloneonly,$createdbefore,$createdafter,$creationcontext,$domcloner)=@_;
1.918 raeburn 4079: my $as_hash = 1;
4080: my %returnhash;
4081: if (!$domfilter) { $domfilter=''; }
1.845 albertel 4082: my %libserv = &all_library();
4083: foreach my $tryserver (keys(%libserv)) {
4084: if ( ( $hostidflag == 1
4085: && grep(/^\Q$tryserver\E$/,@{$hostidref}) )
4086: || (!defined($hostidflag)) ) {
4087:
1.918 raeburn 4088: if (($domfilter eq '') ||
4089: (&host_domain($tryserver) eq $domfilter)) {
1.1180 droeschl 4090: my $rep;
4091: if (grep { $_ eq $tryserver } current_machine_ids()) {
4092: $rep = LONCAPA::Lond::dump_course_id_handler(
4093: join(":", (&host_domain($tryserver), $sincefilter,
4094: &escape($descfilter), &escape($instcodefilter),
4095: &escape($ownerfilter), &escape($coursefilter),
4096: &escape($typefilter), &escape($regexp_ok),
4097: $as_hash, &escape($selfenrollonly),
4098: &escape($catfilter), $showhidden, $caller,
4099: &escape($cloner), &escape($cc_clone), $cloneonly,
4100: &escape($createdbefore), &escape($createdafter),
4101: &escape($creationcontext), $domcloner)));
4102: } else {
4103: $rep = &reply('courseiddump:'.&host_domain($tryserver).':'.
4104: $sincefilter.':'.&escape($descfilter).':'.
4105: &escape($instcodefilter).':'.&escape($ownerfilter).
4106: ':'.&escape($coursefilter).':'.&escape($typefilter).
4107: ':'.&escape($regexp_ok).':'.$as_hash.':'.
4108: &escape($selfenrollonly).':'.&escape($catfilter).':'.
4109: $showhidden.':'.$caller.':'.&escape($cloner).':'.
4110: &escape($cc_clone).':'.$cloneonly.':'.
4111: &escape($createdbefore).':'.&escape($createdafter).':'.
4112: &escape($creationcontext).':'.$domcloner,
4113: $tryserver);
4114: }
4115:
1.918 raeburn 4116: my @pairs=split(/\&/,$rep);
4117: foreach my $item (@pairs) {
4118: my ($key,$value)=split(/\=/,$item,2);
4119: $key = &unescape($key);
4120: next if ($key =~ /^error: 2 /);
4121: my $result = &thaw_unescape($value);
4122: if (ref($result) eq 'HASH') {
4123: $returnhash{$key}=$result;
4124: } else {
1.921 raeburn 4125: my @responses = split(/:/,$value);
4126: my @items = ('description','inst_code','owner','type');
1.918 raeburn 4127: for (my $i=0; $i<@responses; $i++) {
1.921 raeburn 4128: $returnhash{$key}{$items[$i]} = &unescape($responses[$i]);
1.918 raeburn 4129: }
1.1008 raeburn 4130: }
1.353 www 4131: }
4132: }
4133: }
4134: }
4135: return %returnhash;
4136: }
4137:
1.1055 raeburn 4138: sub courselastaccess {
4139: my ($cdom,$cnum,$hostidref) = @_;
4140: my %returnhash;
4141: if ($cdom && $cnum) {
4142: my $chome = &homeserver($cnum,$cdom);
4143: if ($chome ne 'no_host') {
4144: my $rep = &reply('courselastaccess:'.$cdom.':'.$cnum,$chome);
4145: &extract_lastaccess(\%returnhash,$rep);
4146: }
4147: } else {
4148: if (!$cdom) { $cdom=''; }
4149: my %libserv = &all_library();
4150: foreach my $tryserver (keys(%libserv)) {
4151: if (ref($hostidref) eq 'ARRAY') {
4152: next unless (grep(/^\Q$tryserver\E$/,@{$hostidref}));
4153: }
4154: if (($cdom eq '') || (&host_domain($tryserver) eq $cdom)) {
4155: my $rep = &reply('courselastaccess:'.&host_domain($tryserver).':',$tryserver);
4156: &extract_lastaccess(\%returnhash,$rep);
4157: }
4158: }
4159: }
4160: return %returnhash;
4161: }
4162:
4163: sub extract_lastaccess {
4164: my ($returnhash,$rep) = @_;
4165: if (ref($returnhash) eq 'HASH') {
4166: unless ($rep eq 'unknown_command' || $rep eq 'no_such_host' ||
4167: $rep eq 'con_lost' || $rep eq 'rejected' || $rep eq 'refused' ||
4168: $rep eq '') {
4169: my @pairs=split(/\&/,$rep);
4170: foreach my $item (@pairs) {
4171: my ($key,$value)=split(/\=/,$item,2);
4172: $key = &unescape($key);
4173: next if ($key =~ /^error: 2 /);
4174: $returnhash->{$key} = &thaw_unescape($value);
4175: }
4176: }
4177: }
4178: return;
4179: }
4180:
1.658 raeburn 4181: # ---------------------------------------------------------- DC e-mail
1.662 raeburn 4182:
4183: sub dcmailput {
1.685 raeburn 4184: my ($domain,$msgid,$message,$server)=@_;
1.662 raeburn 4185: my $status = &Apache::lonnet::critical(
1.740 www 4186: 'dcmailput:'.$domain.':'.&escape($msgid).'='.
4187: &escape($message),$server);
1.662 raeburn 4188: return $status;
4189: }
4190:
1.658 raeburn 4191: sub dcmaildump {
4192: my ($dom,$startdate,$enddate,$senders) = @_;
1.685 raeburn 4193: my %returnhash=();
1.846 albertel 4194:
4195: if (defined(&domain($dom,'primary'))) {
1.685 raeburn 4196: my $cmd='dcmaildump:'.$dom.':'.&escape($startdate).':'.
4197: &escape($enddate).':';
4198: my @esc_senders=map { &escape($_)} @$senders;
4199: $cmd.=&escape(join('&',@esc_senders));
1.846 albertel 4200: foreach my $line (split(/\&/,&reply($cmd,&domain($dom,'primary')))) {
1.800 albertel 4201: my ($key,$value) = split(/\=/,$line,2);
1.685 raeburn 4202: if (($key) && ($value)) {
4203: $returnhash{&unescape($key)} = &unescape($value);
1.658 raeburn 4204: }
4205: }
4206: }
4207: return %returnhash;
4208: }
1.662 raeburn 4209: # ---------------------------------------------------------- Domain roles
4210:
4211: sub get_domain_roles {
4212: my ($dom,$roles,$startdate,$enddate)=@_;
1.1018 raeburn 4213: if ((!defined($startdate)) || ($startdate eq '')) {
1.662 raeburn 4214: $startdate = '.';
4215: }
1.1018 raeburn 4216: if ((!defined($enddate)) || ($enddate eq '')) {
1.662 raeburn 4217: $enddate = '.';
4218: }
1.922 raeburn 4219: my $rolelist;
4220: if (ref($roles) eq 'ARRAY') {
4221: $rolelist = join(':',@{$roles});
4222: }
1.662 raeburn 4223: my %personnel = ();
1.841 albertel 4224:
4225: my %servers = &get_servers($dom,'library');
4226: foreach my $tryserver (keys(%servers)) {
4227: %{$personnel{$tryserver}}=();
4228: foreach my $line (split(/\&/,&reply('domrolesdump:'.$dom.':'.
4229: &escape($startdate).':'.
4230: &escape($enddate).':'.
4231: &escape($rolelist), $tryserver))) {
4232: my ($key,$value) = split(/\=/,$line,2);
4233: if (($key) && ($value)) {
4234: $personnel{$tryserver}{&unescape($key)} = &unescape($value);
4235: }
4236: }
1.662 raeburn 4237: }
4238: return %personnel;
4239: }
1.658 raeburn 4240:
1.1057 www 4241: # ----------------------------------------------------------- Interval timing
1.149 www 4242:
1.1153 www 4243: {
4244: # Caches needed for speedup of navmaps
4245: # We don't want to cache this for very long at all (5 seconds at most)
4246: #
4247: # The user for whom we cache
4248: my $cachedkey='';
4249: # The cached times for this user
4250: my %cachedtimes=();
4251: # When this was last done
4252: my $cachedtime=();
4253:
4254: sub load_all_first_access {
1.1154 raeburn 4255: my ($uname,$udom)=@_;
1.1156 www 4256: if (($cachedkey eq $uname.':'.$udom) &&
1.1174 raeburn 4257: (abs($cachedtime-time)<5) && (!$env{'form.markaccess'})) {
1.1154 raeburn 4258: return;
4259: }
4260: $cachedtime=time;
4261: $cachedkey=$uname.':'.$udom;
4262: %cachedtimes=&dump('firstaccesstimes',$udom,$uname);
1.1153 www 4263: }
4264:
1.504 albertel 4265: sub get_first_access {
1.1162 raeburn 4266: my ($type,$argsymb,$argmap)=@_;
1.790 albertel 4267: my ($symb,$courseid,$udom,$uname)=&whichuser();
1.504 albertel 4268: if ($argsymb) { $symb=$argsymb; }
4269: my ($map,$id,$res)=&decode_symb($symb);
1.1162 raeburn 4270: if ($argmap) { $map = $argmap; }
1.926 albertel 4271: if ($type eq 'course') {
4272: $res='course';
4273: } elsif ($type eq 'map') {
1.588 albertel 4274: $res=&symbread($map);
4275: } else {
4276: $res=$symb;
4277: }
1.1153 www 4278: &load_all_first_access($uname,$udom);
4279: return $cachedtimes{"$courseid\0$res"};
1.504 albertel 4280: }
4281:
4282: sub set_first_access {
1.1162 raeburn 4283: my ($type,$interval)=@_;
1.790 albertel 4284: my ($symb,$courseid,$udom,$uname)=&whichuser();
1.504 albertel 4285: my ($map,$id,$res)=&decode_symb($symb);
1.928 albertel 4286: if ($type eq 'course') {
4287: $res='course';
4288: } elsif ($type eq 'map') {
1.588 albertel 4289: $res=&symbread($map);
4290: } else {
4291: $res=$symb;
4292: }
1.1153 www 4293: $cachedkey='';
1.1162 raeburn 4294: my $firstaccess=&get_first_access($type,$symb,$map);
1.505 albertel 4295: if (!$firstaccess) {
1.1162 raeburn 4296: my $start = time;
4297: my $putres = &put('firstaccesstimes',{"$courseid\0$res"=>$start},
4298: $udom,$uname);
4299: if ($putres eq 'ok') {
4300: &put('timerinterval',{"$courseid\0$res"=>$interval},
4301: $udom,$uname);
4302: &appenv(
4303: {
4304: 'course.'.$courseid.'.firstaccess.'.$res => $start,
4305: 'course.'.$courseid.'.timerinterval.'.$res => $interval,
4306: }
4307: );
4308: }
4309: return $putres;
1.505 albertel 4310: }
4311: return 'already_set';
1.504 albertel 4312: }
1.1153 www 4313: }
1.110 www 4314: # --------------------------------------------- Set Expire Date for Spreadsheet
4315:
4316: sub expirespread {
4317: my ($uname,$udom,$stype,$usymb)=@_;
1.620 albertel 4318: my $cid=$env{'request.course.id'};
1.110 www 4319: if ($cid) {
4320: my $now=time;
4321: my $key=$uname.':'.$udom.':'.$stype.':'.$usymb;
1.620 albertel 4322: return &reply('put:'.$env{'course.'.$cid.'.domain'}.':'.
4323: $env{'course.'.$cid.'.num'}.
1.110 www 4324: ':nohist_expirationdates:'.
4325: &escape($key).'='.$now,
1.620 albertel 4326: $env{'course.'.$cid.'.home'})
1.110 www 4327: }
4328: return 'ok';
1.14 www 4329: }
4330:
1.109 www 4331: # ----------------------------------------------------- Devalidate Spreadsheets
4332:
4333: sub devalidate {
1.325 www 4334: my ($symb,$uname,$udom)=@_;
1.620 albertel 4335: my $cid=$env{'request.course.id'};
1.109 www 4336: if ($cid) {
1.391 matthew 4337: # delete the stored spreadsheets for
4338: # - the student level sheet of this user in course's homespace
4339: # - the assessment level sheet for this resource
4340: # for this user in user's homespace
1.553 albertel 4341: # - current conditional state info
1.325 www 4342: my $key=$uname.':'.$udom.':';
1.109 www 4343: my $status=
1.299 matthew 4344: &del('nohist_calculatedsheets',
1.391 matthew 4345: [$key.'studentcalc:'],
1.620 albertel 4346: $env{'course.'.$cid.'.domain'},
4347: $env{'course.'.$cid.'.num'})
1.133 albertel 4348: .' '.
4349: &del('nohist_calculatedsheets_'.$cid,
1.391 matthew 4350: [$key.'assesscalc:'.$symb],$udom,$uname);
1.109 www 4351: unless ($status eq 'ok ok') {
4352: &logthis('Could not devalidate spreadsheet '.
1.325 www 4353: $uname.' at '.$udom.' for '.
1.109 www 4354: $symb.': '.$status);
1.133 albertel 4355: }
1.553 albertel 4356: &delenv('user.state.'.$cid);
1.109 www 4357: }
4358: }
4359:
1.265 albertel 4360: sub get_scalar {
4361: my ($string,$end) = @_;
4362: my $value;
4363: if ($$string =~ s/^([^&]*?)($end)/$2/) {
4364: $value = $1;
4365: } elsif ($$string =~ s/^([^&]*?)&//) {
4366: $value = $1;
4367: }
4368: return &unescape($value);
4369: }
4370:
4371: sub array2str {
4372: my (@array) = @_;
4373: my $result=&arrayref2str(\@array);
4374: $result=~s/^__ARRAY_REF__//;
4375: $result=~s/__END_ARRAY_REF__$//;
4376: return $result;
4377: }
4378:
1.204 albertel 4379: sub arrayref2str {
4380: my ($arrayref) = @_;
1.265 albertel 4381: my $result='__ARRAY_REF__';
1.204 albertel 4382: foreach my $elem (@$arrayref) {
1.265 albertel 4383: if(ref($elem) eq 'ARRAY') {
4384: $result.=&arrayref2str($elem).'&';
4385: } elsif(ref($elem) eq 'HASH') {
4386: $result.=&hashref2str($elem).'&';
4387: } elsif(ref($elem)) {
4388: #print("Got a ref of ".(ref($elem))." skipping.");
1.204 albertel 4389: } else {
4390: $result.=&escape($elem).'&';
4391: }
4392: }
4393: $result=~s/\&$//;
1.265 albertel 4394: $result .= '__END_ARRAY_REF__';
1.204 albertel 4395: return $result;
4396: }
4397:
1.168 albertel 4398: sub hash2str {
1.204 albertel 4399: my (%hash) = @_;
4400: my $result=&hashref2str(\%hash);
1.265 albertel 4401: $result=~s/^__HASH_REF__//;
4402: $result=~s/__END_HASH_REF__$//;
1.204 albertel 4403: return $result;
4404: }
4405:
4406: sub hashref2str {
4407: my ($hashref)=@_;
1.265 albertel 4408: my $result='__HASH_REF__';
1.800 albertel 4409: foreach my $key (sort(keys(%$hashref))) {
4410: if (ref($key) eq 'ARRAY') {
4411: $result.=&arrayref2str($key).'=';
4412: } elsif (ref($key) eq 'HASH') {
4413: $result.=&hashref2str($key).'=';
4414: } elsif (ref($key)) {
1.265 albertel 4415: $result.='=';
1.800 albertel 4416: #print("Got a ref of ".(ref($key))." skipping.");
1.204 albertel 4417: } else {
1.1132 raeburn 4418: if (defined($key)) {$result.=&escape($key).'=';} else { last; }
1.204 albertel 4419: }
4420:
1.800 albertel 4421: if(ref($hashref->{$key}) eq 'ARRAY') {
4422: $result.=&arrayref2str($hashref->{$key}).'&';
4423: } elsif(ref($hashref->{$key}) eq 'HASH') {
4424: $result.=&hashref2str($hashref->{$key}).'&';
4425: } elsif(ref($hashref->{$key})) {
1.265 albertel 4426: $result.='&';
1.800 albertel 4427: #print("Got a ref of ".(ref($hashref->{$key}))." skipping.");
1.204 albertel 4428: } else {
1.800 albertel 4429: $result.=&escape($hashref->{$key}).'&';
1.204 albertel 4430: }
4431: }
1.168 albertel 4432: $result=~s/\&$//;
1.265 albertel 4433: $result .= '__END_HASH_REF__';
1.168 albertel 4434: return $result;
4435: }
4436:
4437: sub str2hash {
1.265 albertel 4438: my ($string)=@_;
4439: my ($hash)=&str2hashref('__HASH_REF__'.$string.'__END_HASH_REF__');
4440: return %$hash;
4441: }
4442:
4443: sub str2hashref {
1.168 albertel 4444: my ($string) = @_;
1.265 albertel 4445:
4446: my %hash;
4447:
4448: if($string !~ /^__HASH_REF__/) {
4449: if (! ($string eq '' || !defined($string))) {
4450: $hash{'error'}='Not hash reference';
4451: }
4452: return (\%hash, $string);
4453: }
4454:
4455: $string =~ s/^__HASH_REF__//;
4456:
4457: while($string !~ /^__END_HASH_REF__/) {
4458: #key
4459: my $key='';
4460: if($string =~ /^__HASH_REF__/) {
4461: ($key, $string)=&str2hashref($string);
4462: if(defined($key->{'error'})) {
4463: $hash{'error'}='Bad data';
4464: return (\%hash, $string);
4465: }
4466: } elsif($string =~ /^__ARRAY_REF__/) {
4467: ($key, $string)=&str2arrayref($string);
4468: if($key->[0] eq 'Array reference error') {
4469: $hash{'error'}='Bad data';
4470: return (\%hash, $string);
4471: }
4472: } else {
4473: $string =~ s/^(.*?)=//;
1.267 albertel 4474: $key=&unescape($1);
1.265 albertel 4475: }
4476: $string =~ s/^=//;
4477:
4478: #value
4479: my $value='';
4480: if($string =~ /^__HASH_REF__/) {
4481: ($value, $string)=&str2hashref($string);
4482: if(defined($value->{'error'})) {
4483: $hash{'error'}='Bad data';
4484: return (\%hash, $string);
4485: }
4486: } elsif($string =~ /^__ARRAY_REF__/) {
4487: ($value, $string)=&str2arrayref($string);
4488: if($value->[0] eq 'Array reference error') {
4489: $hash{'error'}='Bad data';
4490: return (\%hash, $string);
4491: }
4492: } else {
4493: $value=&get_scalar(\$string,'__END_HASH_REF__');
4494: }
4495: $string =~ s/^&//;
4496:
4497: $hash{$key}=$value;
1.204 albertel 4498: }
1.265 albertel 4499:
4500: $string =~ s/^__END_HASH_REF__//;
4501:
4502: return (\%hash, $string);
1.204 albertel 4503: }
4504:
4505: sub str2array {
1.265 albertel 4506: my ($string)=@_;
4507: my ($array)=&str2arrayref('__ARRAY_REF__'.$string.'__END_ARRAY_REF__');
4508: return @$array;
4509: }
4510:
4511: sub str2arrayref {
1.204 albertel 4512: my ($string) = @_;
1.265 albertel 4513: my @array;
4514:
4515: if($string !~ /^__ARRAY_REF__/) {
4516: if (! ($string eq '' || !defined($string))) {
4517: $array[0]='Array reference error';
4518: }
4519: return (\@array, $string);
4520: }
4521:
4522: $string =~ s/^__ARRAY_REF__//;
4523:
4524: while($string !~ /^__END_ARRAY_REF__/) {
4525: my $value='';
4526: if($string =~ /^__HASH_REF__/) {
4527: ($value, $string)=&str2hashref($string);
4528: if(defined($value->{'error'})) {
4529: $array[0] ='Array reference error';
4530: return (\@array, $string);
4531: }
4532: } elsif($string =~ /^__ARRAY_REF__/) {
4533: ($value, $string)=&str2arrayref($string);
4534: if($value->[0] eq 'Array reference error') {
4535: $array[0] ='Array reference error';
4536: return (\@array, $string);
4537: }
4538: } else {
4539: $value=&get_scalar(\$string,'__END_ARRAY_REF__');
4540: }
4541: $string =~ s/^&//;
4542:
4543: push(@array, $value);
1.191 harris41 4544: }
1.265 albertel 4545:
4546: $string =~ s/^__END_ARRAY_REF__//;
4547:
4548: return (\@array, $string);
1.168 albertel 4549: }
4550:
1.167 albertel 4551: # -------------------------------------------------------------------Temp Store
4552:
1.168 albertel 4553: sub tmpreset {
4554: my ($symb,$namespace,$domain,$stuname) = @_;
4555: if (!$symb) {
4556: $symb=&symbread();
1.620 albertel 4557: if (!$symb) { $symb= $env{'request.url'}; }
1.168 albertel 4558: }
4559: $symb=escape($symb);
4560:
1.620 albertel 4561: if (!$namespace) { $namespace=$env{'request.state'}; }
1.168 albertel 4562: $namespace=~s/\//\_/g;
4563: $namespace=~s/\W//g;
4564:
1.620 albertel 4565: if (!$domain) { $domain=$env{'user.domain'}; }
4566: if (!$stuname) { $stuname=$env{'user.name'}; }
1.591 albertel 4567: if ($domain eq 'public' && $stuname eq 'public') {
4568: $stuname=$ENV{'REMOTE_ADDR'};
4569: }
1.1117 foxr 4570: my $path=LONCAPA::tempdir();
1.168 albertel 4571: my %hash;
4572: if (tie(%hash,'GDBM_File',
4573: $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
1.256 albertel 4574: &GDBM_WRCREAT(),0640)) {
1.1000 raeburn 4575: foreach my $key (keys(%hash)) {
1.180 albertel 4576: if ($key=~ /:$symb/) {
1.168 albertel 4577: delete($hash{$key});
4578: }
4579: }
4580: }
4581: }
4582:
1.167 albertel 4583: sub tmpstore {
1.168 albertel 4584: my ($storehash,$symb,$namespace,$domain,$stuname) = @_;
4585:
4586: if (!$symb) {
4587: $symb=&symbread();
1.620 albertel 4588: if (!$symb) { $symb= $env{'request.url'}; }
1.168 albertel 4589: }
4590: $symb=escape($symb);
4591:
4592: if (!$namespace) {
4593: # I don't think we would ever want to store this for a course.
4594: # it seems this will only be used if we don't have a course.
1.620 albertel 4595: #$namespace=$env{'request.course.id'};
1.168 albertel 4596: #if (!$namespace) {
1.620 albertel 4597: $namespace=$env{'request.state'};
1.168 albertel 4598: #}
4599: }
4600: $namespace=~s/\//\_/g;
4601: $namespace=~s/\W//g;
1.620 albertel 4602: if (!$domain) { $domain=$env{'user.domain'}; }
4603: if (!$stuname) { $stuname=$env{'user.name'}; }
1.591 albertel 4604: if ($domain eq 'public' && $stuname eq 'public') {
4605: $stuname=$ENV{'REMOTE_ADDR'};
4606: }
1.168 albertel 4607: my $now=time;
4608: my %hash;
1.1117 foxr 4609: my $path=LONCAPA::tempdir();
1.168 albertel 4610: if (tie(%hash,'GDBM_File',
4611: $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
1.256 albertel 4612: &GDBM_WRCREAT(),0640)) {
1.168 albertel 4613: $hash{"version:$symb"}++;
4614: my $version=$hash{"version:$symb"};
4615: my $allkeys='';
4616: foreach my $key (keys(%$storehash)) {
4617: $allkeys.=$key.':';
1.591 albertel 4618: $hash{"$version:$symb:$key"}=&freeze_escape($$storehash{$key});
1.168 albertel 4619: }
4620: $hash{"$version:$symb:timestamp"}=$now;
4621: $allkeys.='timestamp';
4622: $hash{"$version:keys:$symb"}=$allkeys;
4623: if (untie(%hash)) {
4624: return 'ok';
4625: } else {
4626: return "error:$!";
4627: }
4628: } else {
4629: return "error:$!";
4630: }
4631: }
1.167 albertel 4632:
1.168 albertel 4633: # -----------------------------------------------------------------Temp Restore
1.167 albertel 4634:
1.168 albertel 4635: sub tmprestore {
4636: my ($symb,$namespace,$domain,$stuname) = @_;
1.167 albertel 4637:
1.168 albertel 4638: if (!$symb) {
4639: $symb=&symbread();
1.620 albertel 4640: if (!$symb) { $symb= $env{'request.url'}; }
1.168 albertel 4641: }
4642: $symb=escape($symb);
4643:
1.620 albertel 4644: if (!$namespace) { $namespace=$env{'request.state'}; }
1.591 albertel 4645:
1.620 albertel 4646: if (!$domain) { $domain=$env{'user.domain'}; }
4647: if (!$stuname) { $stuname=$env{'user.name'}; }
1.591 albertel 4648: if ($domain eq 'public' && $stuname eq 'public') {
4649: $stuname=$ENV{'REMOTE_ADDR'};
4650: }
1.168 albertel 4651: my %returnhash;
4652: $namespace=~s/\//\_/g;
4653: $namespace=~s/\W//g;
4654: my %hash;
1.1117 foxr 4655: my $path=LONCAPA::tempdir();
1.168 albertel 4656: if (tie(%hash,'GDBM_File',
4657: $path.'/tmpstore_'.$stuname.'_'.$domain.'_'.$namespace.'.db',
1.256 albertel 4658: &GDBM_READER(),0640)) {
1.168 albertel 4659: my $version=$hash{"version:$symb"};
4660: $returnhash{'version'}=$version;
4661: my $scope;
4662: for ($scope=1;$scope<=$version;$scope++) {
4663: my $vkeys=$hash{"$scope:keys:$symb"};
4664: my @keys=split(/:/,$vkeys);
4665: my $key;
4666: $returnhash{"$scope:keys"}=$vkeys;
4667: foreach $key (@keys) {
1.591 albertel 4668: $returnhash{"$scope:$key"}=&thaw_unescape($hash{"$scope:$symb:$key"});
4669: $returnhash{"$key"}=&thaw_unescape($hash{"$scope:$symb:$key"});
1.167 albertel 4670: }
4671: }
1.168 albertel 4672: if (!(untie(%hash))) {
4673: return "error:$!";
4674: }
4675: } else {
4676: return "error:$!";
4677: }
4678: return %returnhash;
1.167 albertel 4679: }
4680:
1.9 www 4681: # ----------------------------------------------------------------------- Store
4682:
4683: sub store {
1.124 www 4684: my ($storehash,$symb,$namespace,$domain,$stuname) = @_;
4685: my $home='';
4686:
1.168 albertel 4687: if ($stuname) { $home=&homeserver($stuname,$domain); }
1.124 www 4688:
1.213 www 4689: $symb=&symbclean($symb);
1.122 albertel 4690: if (!$symb) { unless ($symb=&symbread()) { return ''; } }
1.109 www 4691:
1.620 albertel 4692: if (!$domain) { $domain=$env{'user.domain'}; }
4693: if (!$stuname) { $stuname=$env{'user.name'}; }
1.325 www 4694:
4695: &devalidate($symb,$stuname,$domain);
1.109 www 4696:
4697: $symb=escape($symb);
1.187 www 4698: if (!$namespace) {
1.620 albertel 4699: unless ($namespace=$env{'request.course.id'}) {
1.187 www 4700: return '';
4701: }
4702: }
1.620 albertel 4703: if (!$home) { $home=$env{'user.home'}; }
1.447 www 4704:
4705: $$storehash{'ip'}=$ENV{'REMOTE_ADDR'};
4706: $$storehash{'host'}=$perlvar{'lonHostID'};
4707:
1.12 www 4708: my $namevalue='';
1.800 albertel 4709: foreach my $key (keys(%$storehash)) {
4710: $namevalue.=&escape($key).'='.&freeze_escape($$storehash{$key}).'&';
1.191 harris41 4711: }
1.12 www 4712: $namevalue=~s/\&$//;
1.187 www 4713: &courselog($symb.':'.$stuname.':'.$domain.':STORE:'.$namevalue);
1.124 www 4714: return reply("store:$domain:$stuname:$namespace:$symb:$namevalue","$home");
1.9 www 4715: }
4716:
1.47 www 4717: # -------------------------------------------------------------- Critical Store
4718:
4719: sub cstore {
1.124 www 4720: my ($storehash,$symb,$namespace,$domain,$stuname) = @_;
4721: my $home='';
4722:
1.168 albertel 4723: if ($stuname) { $home=&homeserver($stuname,$domain); }
1.124 www 4724:
1.213 www 4725: $symb=&symbclean($symb);
1.122 albertel 4726: if (!$symb) { unless ($symb=&symbread()) { return ''; } }
1.109 www 4727:
1.620 albertel 4728: if (!$domain) { $domain=$env{'user.domain'}; }
4729: if (!$stuname) { $stuname=$env{'user.name'}; }
1.325 www 4730:
4731: &devalidate($symb,$stuname,$domain);
1.109 www 4732:
4733: $symb=escape($symb);
1.187 www 4734: if (!$namespace) {
1.620 albertel 4735: unless ($namespace=$env{'request.course.id'}) {
1.187 www 4736: return '';
4737: }
4738: }
1.620 albertel 4739: if (!$home) { $home=$env{'user.home'}; }
1.447 www 4740:
4741: $$storehash{'ip'}=$ENV{'REMOTE_ADDR'};
4742: $$storehash{'host'}=$perlvar{'lonHostID'};
1.122 albertel 4743:
1.47 www 4744: my $namevalue='';
1.800 albertel 4745: foreach my $key (keys(%$storehash)) {
4746: $namevalue.=&escape($key).'='.&freeze_escape($$storehash{$key}).'&';
1.191 harris41 4747: }
1.47 www 4748: $namevalue=~s/\&$//;
1.187 www 4749: &courselog($symb.':'.$stuname.':'.$domain.':CSTORE:'.$namevalue);
1.188 www 4750: return critical
4751: ("store:$domain:$stuname:$namespace:$symb:$namevalue","$home");
1.47 www 4752: }
4753:
1.9 www 4754: # --------------------------------------------------------------------- Restore
4755:
4756: sub restore {
1.124 www 4757: my ($symb,$namespace,$domain,$stuname) = @_;
4758: my $home='';
4759:
1.168 albertel 4760: if ($stuname) { $home=&homeserver($stuname,$domain); }
1.124 www 4761:
1.122 albertel 4762: if (!$symb) {
4763: unless ($symb=escape(&symbread())) { return ''; }
4764: } else {
1.213 www 4765: $symb=&escape(&symbclean($symb));
1.122 albertel 4766: }
1.188 www 4767: if (!$namespace) {
1.620 albertel 4768: unless ($namespace=$env{'request.course.id'}) {
1.188 www 4769: return '';
4770: }
4771: }
1.620 albertel 4772: if (!$domain) { $domain=$env{'user.domain'}; }
4773: if (!$stuname) { $stuname=$env{'user.name'}; }
4774: if (!$home) { $home=$env{'user.home'}; }
1.122 albertel 4775: my $answer=&reply("restore:$domain:$stuname:$namespace:$symb","$home");
4776:
1.12 www 4777: my %returnhash=();
1.800 albertel 4778: foreach my $line (split(/\&/,$answer)) {
4779: my ($name,$value)=split(/\=/,$line);
1.591 albertel 4780: $returnhash{&unescape($name)}=&thaw_unescape($value);
1.191 harris41 4781: }
1.75 www 4782: my $version;
4783: for ($version=1;$version<=$returnhash{'version'};$version++) {
1.800 albertel 4784: foreach my $item (split(/\:/,$returnhash{$version.':keys'})) {
4785: $returnhash{$item}=$returnhash{$version.':'.$item};
1.191 harris41 4786: }
1.75 www 4787: }
1.13 www 4788: return %returnhash;
1.34 www 4789: }
4790:
4791: # ---------------------------------------------------------- Course Description
1.1118 foxr 4792: #
4793: #
1.34 www 4794:
4795: sub coursedescription {
1.731 albertel 4796: my ($courseid,$args)=@_;
1.34 www 4797: $courseid=~s/^\///;
1.49 www 4798: $courseid=~s/\_/\//g;
1.34 www 4799: my ($cdomain,$cnum)=split(/\//,$courseid);
1.129 albertel 4800: my $chome=&homeserver($cnum,$cdomain);
1.302 albertel 4801: my $normalid=$cdomain.'_'.$cnum;
4802: # need to always cache even if we get errors otherwise we keep
4803: # trying and trying and trying to get the course description.
4804: my %envhash=();
4805: my %returnhash=();
1.731 albertel 4806:
4807: my $expiretime=600;
4808: if ($env{'request.course.id'} eq $normalid) {
4809: $expiretime=120;
4810: }
4811:
4812: my $prefix='course.'.$cdomain.'_'.$cnum.'.';
4813: if (!$args->{'freshen_cache'}
4814: && ((time-$env{$prefix.'last_cache'}) < $expiretime) ) {
4815: foreach my $key (keys(%env)) {
4816: next if ($key !~ /^\Q$prefix\E(.*)/);
4817: my ($setting) = $1;
4818: $returnhash{$setting} = $env{$key};
4819: }
4820: return %returnhash;
4821: }
4822:
1.1118 foxr 4823: # get the data again
4824:
1.731 albertel 4825: if (!$args->{'one_time'}) {
4826: $envhash{'course.'.$normalid.'.last_cache'}=time;
4827: }
1.811 albertel 4828:
1.34 www 4829: if ($chome ne 'no_host') {
1.302 albertel 4830: %returnhash=&dump('environment',$cdomain,$cnum);
1.129 albertel 4831: if (!exists($returnhash{'con_lost'})) {
1.1118 foxr 4832: my $username = $env{'user.name'}; # Defult username
4833: if(defined $args->{'user'}) {
4834: $username = $args->{'user'};
4835: }
1.129 albertel 4836: $returnhash{'home'}= $chome;
4837: $returnhash{'domain'} = $cdomain;
4838: $returnhash{'num'} = $cnum;
1.741 raeburn 4839: if (!defined($returnhash{'type'})) {
4840: $returnhash{'type'} = 'Course';
4841: }
1.130 albertel 4842: while (my ($name,$value) = each %returnhash) {
1.53 www 4843: $envhash{'course.'.$normalid.'.'.$name}=$value;
1.129 albertel 4844: }
1.270 www 4845: $returnhash{'url'}=&clutter($returnhash{'url'});
1.1117 foxr 4846: $returnhash{'fn'}=LONCAPA::tempdir() .
1.1118 foxr 4847: $username.'_'.$cdomain.'_'.$cnum;
1.60 www 4848: $envhash{'course.'.$normalid.'.home'}=$chome;
4849: $envhash{'course.'.$normalid.'.domain'}=$cdomain;
4850: $envhash{'course.'.$normalid.'.num'}=$cnum;
1.34 www 4851: }
4852: }
1.731 albertel 4853: if (!$args->{'one_time'}) {
1.949 raeburn 4854: &appenv(\%envhash);
1.731 albertel 4855: }
1.302 albertel 4856: return %returnhash;
1.461 www 4857: }
4858:
1.1080 raeburn 4859: sub update_released_required {
4860: my ($needsrelease,$cdom,$cnum,$chome,$cid) = @_;
4861: if ($cdom eq '' || $cnum eq '' || $chome eq '' || $cid eq '') {
4862: $cid = $env{'request.course.id'};
4863: $cdom = $env{'course.'.$cid.'.domain'};
4864: $cnum = $env{'course.'.$cid.'.num'};
4865: $chome = $env{'course.'.$cid.'.home'};
4866: }
4867: if ($needsrelease) {
4868: my %curr_reqd_hash = &userenvironment($cdom,$cnum,'internal.releaserequired');
4869: my $needsupdate;
4870: if ($curr_reqd_hash{'internal.releaserequired'} eq '') {
4871: $needsupdate = 1;
4872: } else {
4873: my ($currmajor,$currminor) = split(/\./,$curr_reqd_hash{'internal.releaserequired'});
4874: my ($needsmajor,$needsminor) = split(/\./,$needsrelease);
4875: if (($currmajor < $needsmajor) || ($currmajor == $needsmajor && $currminor < $needsminor)) {
4876: $needsupdate = 1;
4877: }
4878: }
4879: if ($needsupdate) {
4880: my %needshash = (
4881: 'internal.releaserequired' => $needsrelease,
4882: );
4883: my $putresult = &put('environment',\%needshash,$cdom,$cnum);
4884: if ($putresult eq 'ok') {
4885: &appenv({'course.'.$cid.'.internal.releaserequired' => $needsrelease});
4886: my %crsinfo = &courseiddump($cdom,'.',1,'.','.',$cnum,undef,undef,'.');
4887: if (ref($crsinfo{$cid}) eq 'HASH') {
4888: $crsinfo{$cid}{'releaserequired'} = $needsrelease;
4889: &courseidput($cdom,\%crsinfo,$chome,'notime');
4890: }
4891: }
4892: }
4893: }
4894: return;
4895: }
4896:
1.461 www 4897: # -------------------------------------------------See if a user is privileged
4898:
4899: sub privileged {
4900: my ($username,$domain)=@_;
1.1170 droeschl 4901:
4902: my %rolesdump = &dump("roles", $domain, $username) or return 0;
4903: my $now = time;
4904:
4905: for my $role (@rolesdump{grep { ! /^rolesdef_/ } keys %rolesdump}) {
4906: my ($trole, $tend, $tstart) = split(/_/, $role);
4907: if (($trole eq 'dc') || ($trole eq 'su')) {
4908: return 1 unless ($tend && $tend < $now)
4909: or ($tstart && $tstart > $now);
4910: }
1.461 www 4911: }
1.1170 droeschl 4912:
1.461 www 4913: return 0;
1.9 www 4914: }
1.1 albertel 4915:
1.103 harris41 4916: # -------------------------------------------------------- Get user privileges
1.11 www 4917:
4918: sub rolesinit {
1.1169 droeschl 4919: my ($domain, $username) = @_;
4920: my %userroles = ('user.login.time' => time);
4921: my %rolesdump = &dump("roles", $domain, $username) or return \%userroles;
4922:
4923: # firstaccess and timerinterval are related to timed maps/resources.
4924: # also, blocking can be triggered by an activating timer
4925: # it's saved in the user's %env.
4926: my %firstaccess = &dump('firstaccesstimes', $domain, $username);
4927: my %timerinterval = &dump('timerinterval', $domain, $username);
4928: my (%coursetimerstarts, %firstaccchk, %firstaccenv, %coursetimerintervals,
4929: %timerintchk, %timerintenv);
4930:
1.1162 raeburn 4931: foreach my $key (keys(%firstaccess)) {
1.1169 droeschl 4932: my ($cid, $rest) = split(/\0/, $key);
1.1162 raeburn 4933: $coursetimerstarts{$cid}{$rest} = $firstaccess{$key};
4934: }
1.1169 droeschl 4935:
1.1162 raeburn 4936: foreach my $key (keys(%timerinterval)) {
4937: my ($cid,$rest) = split(/\0/,$key);
4938: $coursetimerintervals{$cid}{$rest} = $timerinterval{$key};
4939: }
1.1169 droeschl 4940:
1.11 www 4941: my %allroles=();
1.1162 raeburn 4942: my %allgroups=();
1.11 www 4943:
1.1169 droeschl 4944: for my $area (grep { ! /^rolesdef_/ } keys %rolesdump) {
4945: my $role = $rolesdump{$area};
4946: $area =~ s/\_\w\w$//;
4947:
4948: my ($trole, $tend, $tstart, $group_privs);
4949:
4950: if ($role =~ /^cr/) {
4951: # Custom role, defined by a user
4952: # e.g., user.role.cr/msu/smith/mynewrole
4953: if ($role =~ m|^(cr/$match_domain/$match_username/[a-zA-Z0-9]+)_(.*)$|) {
4954: $trole = $1;
4955: ($tend, $tstart) = split('_', $2);
4956: } else {
4957: $trole = $role;
4958: }
4959: } elsif ($role =~ m|^gr/|) {
4960: # Role of member in a group, defined within a course/community
4961: # e.g., user.role.gr/msu/04935610a19ee4a5fmsul1/leopards
4962: ($trole, $tend, $tstart) = split(/_/, $role);
4963: next if $tstart eq '-1';
4964: ($trole, $group_privs) = split(/\//, $trole);
4965: $group_privs = &unescape($group_privs);
4966: } else {
4967: # Just a normal role, defined in roles.tab
4968: ($trole, $tend, $tstart) = split(/_/,$role);
4969: }
4970:
4971: my %new_role = &set_arearole($trole,$area,$tstart,$tend,$domain,
4972: $username);
4973: @userroles{keys(%new_role)} = @new_role{keys(%new_role)};
4974:
4975: # role expired or not available yet?
4976: $trole = '' if ($tend != 0 && $tend < $userroles{'user.login.time'}) or
4977: ($tstart != 0 && $tstart > $userroles{'user.login.time'});
4978:
4979: next if $area eq '' or $trole eq '';
4980:
4981: my $spec = "$trole.$area";
4982: my ($tdummy, $tdomain, $trest) = split(/\//, $area);
4983:
4984: if ($trole =~ /^cr\//) {
4985: # Custom role, defined by a user
4986: &custom_roleprivs(\%allroles,$trole,$tdomain,$trest,$spec,$area);
4987: } elsif ($trole eq 'gr') {
4988: # Role of a member in a group, defined within a course/community
4989: &group_roleprivs(\%allgroups,$area,$group_privs,$tend,$tstart);
4990: next;
4991: } else {
4992: # Normal role, defined in roles.tab
4993: &standard_roleprivs(\%allroles,$trole,$tdomain,$spec,$trest,$area);
4994: }
4995:
4996: my $cid = $tdomain.'_'.$trest;
4997: unless ($firstaccchk{$cid}) {
4998: if (ref($coursetimerstarts{$cid}) eq 'HASH') {
4999: foreach my $item (keys(%{$coursetimerstarts{$cid}})) {
5000: $firstaccenv{'course.'.$cid.'.firstaccess.'.$item} =
5001: $coursetimerstarts{$cid}{$item};
5002: }
5003: }
5004: $firstaccchk{$cid} = 1;
5005: }
5006: unless ($timerintchk{$cid}) {
5007: if (ref($coursetimerintervals{$cid}) eq 'HASH') {
5008: foreach my $item (keys(%{$coursetimerintervals{$cid}})) {
5009: $timerintenv{'course.'.$cid.'.timerinterval.'.$item} =
5010: $coursetimerintervals{$cid}{$item};
1.1162 raeburn 5011: }
1.12 www 5012: }
1.1169 droeschl 5013: $timerintchk{$cid} = 1;
1.191 harris41 5014: }
1.11 www 5015: }
1.1169 droeschl 5016:
5017: @userroles{'user.author', 'user.adv'} = &set_userprivs(\%userroles,
5018: \%allroles, \%allgroups);
5019: $env{'user.adv'} = $userroles{'user.adv'};
5020:
1.1162 raeburn 5021: return (\%userroles,\%firstaccenv,\%timerintenv);
1.11 www 5022: }
5023:
1.567 raeburn 5024: sub set_arearole {
5025: my ($trole,$area,$tstart,$tend,$domain,$username) = @_;
5026: # log the associated role with the area
5027: &userrolelog($trole,$username,$domain,$area,$tstart,$tend);
1.743 albertel 5028: return ('user.role.'.$trole.'.'.$area => $tstart.'.'.$tend);
1.567 raeburn 5029: }
5030:
5031: sub custom_roleprivs {
5032: my ($allroles,$trole,$tdomain,$trest,$spec,$area) = @_;
5033: my ($rdummy,$rdomain,$rauthor,$rrole)=split(/\//,$trole);
5034: my $homsvr=homeserver($rauthor,$rdomain);
1.838 albertel 5035: if (&hostname($homsvr) ne '') {
1.567 raeburn 5036: my ($rdummy,$roledef)=
5037: &get('roles',["rolesdef_$rrole"],$rdomain,$rauthor);
5038: if (($rdummy ne 'con_lost') && ($roledef ne '')) {
5039: my ($syspriv,$dompriv,$coursepriv)=split(/\_/,$roledef);
5040: if (defined($syspriv)) {
1.1043 raeburn 5041: if ($trest =~ /^$match_community$/) {
5042: $syspriv =~ s/bre\&S//;
5043: }
1.567 raeburn 5044: $$allroles{'cm./'}.=':'.$syspriv;
5045: $$allroles{$spec.'./'}.=':'.$syspriv;
5046: }
5047: if ($tdomain ne '') {
5048: if (defined($dompriv)) {
5049: $$allroles{'cm./'.$tdomain.'/'}.=':'.$dompriv;
5050: $$allroles{$spec.'./'.$tdomain.'/'}.=':'.$dompriv;
5051: }
5052: if (($trest ne '') && (defined($coursepriv))) {
5053: $$allroles{'cm.'.$area}.=':'.$coursepriv;
5054: $$allroles{$spec.'.'.$area}.=':'.$coursepriv;
5055: }
5056: }
5057: }
5058: }
5059: }
5060:
1.678 raeburn 5061: sub group_roleprivs {
5062: my ($allgroups,$area,$group_privs,$tend,$tstart) = @_;
5063: my $access = 1;
5064: my $now = time;
5065: if (($tend!=0) && ($tend<$now)) { $access = 0; }
5066: if (($tstart!=0) && ($tstart>$now)) { $access=0; }
5067: if ($access) {
1.811 albertel 5068: my ($course,$group) = ($area =~ m|(/$match_domain/$match_courseid)/([^/]+)$|);
1.678 raeburn 5069: $$allgroups{$course}{$group} .=':'.$group_privs;
5070: }
5071: }
1.567 raeburn 5072:
5073: sub standard_roleprivs {
5074: my ($allroles,$trole,$tdomain,$spec,$trest,$area) = @_;
5075: if (defined($pr{$trole.':s'})) {
5076: $$allroles{'cm./'}.=':'.$pr{$trole.':s'};
5077: $$allroles{$spec.'./'}.=':'.$pr{$trole.':s'};
5078: }
5079: if ($tdomain ne '') {
5080: if (defined($pr{$trole.':d'})) {
5081: $$allroles{'cm./'.$tdomain.'/'}.=':'.$pr{$trole.':d'};
5082: $$allroles{$spec.'./'.$tdomain.'/'}.=':'.$pr{$trole.':d'};
5083: }
5084: if (($trest ne '') && (defined($pr{$trole.':c'}))) {
5085: $$allroles{'cm.'.$area}.=':'.$pr{$trole.':c'};
5086: $$allroles{$spec.'.'.$area}.=':'.$pr{$trole.':c'};
5087: }
5088: }
5089: }
5090:
5091: sub set_userprivs {
1.1064 raeburn 5092: my ($userroles,$allroles,$allgroups,$groups_roles) = @_;
1.567 raeburn 5093: my $author=0;
5094: my $adv=0;
1.678 raeburn 5095: my %grouproles = ();
5096: if (keys(%{$allgroups}) > 0) {
1.1064 raeburn 5097: my @groupkeys;
1.1000 raeburn 5098: foreach my $role (keys(%{$allroles})) {
1.1064 raeburn 5099: push(@groupkeys,$role);
5100: }
5101: if (ref($groups_roles) eq 'HASH') {
5102: foreach my $key (keys(%{$groups_roles})) {
5103: unless (grep(/^\Q$key\E$/,@groupkeys)) {
5104: push(@groupkeys,$key);
5105: }
5106: }
5107: }
5108: if (@groupkeys > 0) {
5109: foreach my $role (@groupkeys) {
5110: my ($trole,$area,$sec,$extendedarea);
5111: if ($role =~ m-^(\w+|cr/$match_domain/$match_username/\w+)\.(/$match_domain/$match_courseid)(/?\w*)\.-) {
5112: $trole = $1;
5113: $area = $2;
5114: $sec = $3;
5115: $extendedarea = $area.$sec;
5116: if (exists($$allgroups{$area})) {
5117: foreach my $group (keys(%{$$allgroups{$area}})) {
5118: my $spec = $trole.'.'.$extendedarea;
5119: $grouproles{$spec.'.'.$area.'/'.$group} =
1.681 raeburn 5120: $$allgroups{$area}{$group};
1.1064 raeburn 5121: }
1.678 raeburn 5122: }
5123: }
5124: }
5125: }
5126: }
1.800 albertel 5127: foreach my $group (keys(%grouproles)) {
5128: $$allroles{$group} = $grouproles{$group};
1.678 raeburn 5129: }
1.800 albertel 5130: foreach my $role (keys(%{$allroles})) {
5131: my %thesepriv;
1.941 raeburn 5132: if (($role=~/^au/) || ($role=~/^ca/) || ($role=~/^aa/)) { $author=1; }
1.800 albertel 5133: foreach my $item (split(/:/,$$allroles{$role})) {
5134: if ($item ne '') {
5135: my ($privilege,$restrictions)=split(/&/,$item);
1.567 raeburn 5136: if ($restrictions eq '') {
5137: $thesepriv{$privilege}='F';
5138: } elsif ($thesepriv{$privilege} ne 'F') {
5139: $thesepriv{$privilege}.=$restrictions;
5140: }
5141: if ($thesepriv{'adv'} eq 'F') { $adv=1; }
5142: }
5143: }
5144: my $thesestr='';
1.1104 raeburn 5145: foreach my $priv (sort(keys(%thesepriv))) {
1.800 albertel 5146: $thesestr.=':'.$priv.'&'.$thesepriv{$priv};
5147: }
5148: $userroles->{'user.priv.'.$role} = $thesestr;
1.567 raeburn 5149: }
5150: return ($author,$adv);
5151: }
5152:
1.994 raeburn 5153: sub role_status {
1.1104 raeburn 5154: my ($rolekey,$update,$refresh,$now,$role,$where,$trolecode,$tstatus,$tstart,$tend) = @_;
1.994 raeburn 5155: my @pwhere = ();
5156: if (exists($env{$rolekey}) && $env{$rolekey} ne '') {
5157: (undef,undef,$$role,@pwhere)=split(/\./,$rolekey);
5158: unless (!defined($$role) || $$role eq '') {
5159: $$where=join('.',@pwhere);
5160: $$trolecode=$$role.'.'.$$where;
5161: ($$tstart,$$tend)=split(/\./,$env{$rolekey});
5162: $$tstatus='is';
1.1104 raeburn 5163: if ($$tstart && $$tstart>$update) {
1.994 raeburn 5164: $$tstatus='future';
1.1034 raeburn 5165: if ($$tstart<$now) {
5166: if ($$tstart && $$tstart>$refresh) {
1.1002 raeburn 5167: if (($$where ne '') && ($$role ne '')) {
1.1064 raeburn 5168: my (%allroles,%allgroups,$group_privs,
5169: %groups_roles,@rolecodes);
1.1002 raeburn 5170: my %userroles = (
5171: 'user.role.'.$$role.'.'.$$where => $$tstart.'.'.$$tend
5172: );
1.1064 raeburn 5173: @rolecodes = ('cm');
1.1002 raeburn 5174: my $spec=$$role.'.'.$$where;
5175: my ($tdummy,$tdomain,$trest)=split(/\//,$$where);
5176: if ($$role =~ /^cr\//) {
5177: &custom_roleprivs(\%allroles,$$role,$tdomain,$trest,$spec,$$where);
1.1064 raeburn 5178: push(@rolecodes,'cr');
1.1002 raeburn 5179: } elsif ($$role eq 'gr') {
1.1064 raeburn 5180: push(@rolecodes,$$role);
1.1002 raeburn 5181: my %rolehash = &get('roles',[$$where.'_'.$$role],$env{'user.domain'},
5182: $env{'user.name'});
1.1064 raeburn 5183: my ($trole) = split('_',$rolehash{$$where.'_'.$$role},2);
1.1002 raeburn 5184: (undef,my $group_privs) = split(/\//,$trole);
5185: $group_privs = &unescape($group_privs);
5186: &group_roleprivs(\%allgroups,$$where,$group_privs,$$tend,$$tstart);
1.1064 raeburn 5187: my %course_roles = &get_my_roles($env{'user.name'},$env{'user.domain'},'userroles',['active'],['cc','co','in','ta','ep','ad','st','cr'],[$tdomain],1);
1.1104 raeburn 5188: &get_groups_roles($tdomain,$trest,
5189: \%course_roles,\@rolecodes,
5190: \%groups_roles);
1.1002 raeburn 5191: } else {
1.1064 raeburn 5192: push(@rolecodes,$$role);
1.1002 raeburn 5193: &standard_roleprivs(\%allroles,$$role,$tdomain,$spec,$trest,$$where);
5194: }
1.1064 raeburn 5195: my ($author,$adv)= &set_userprivs(\%userroles,\%allroles,\%allgroups,\%groups_roles);
5196: &appenv(\%userroles,\@rolecodes);
1.1002 raeburn 5197: &log($env{'user.domain'},$env{'user.name'},$env{'user.home'},"Role ".$role);
5198: }
5199: }
1.1034 raeburn 5200: $$tstatus = 'is';
1.1002 raeburn 5201: }
1.994 raeburn 5202: }
5203: if ($$tend) {
1.1104 raeburn 5204: if ($$tend<$update) {
1.994 raeburn 5205: $$tstatus='expired';
5206: } elsif ($$tend<$now) {
5207: $$tstatus='will_not';
5208: }
5209: }
5210: }
5211: }
5212: }
5213:
1.1104 raeburn 5214: sub get_groups_roles {
5215: my ($cdom,$rest,$cdom_courseroles,$rolecodes,$groups_roles) = @_;
5216: return unless((ref($cdom_courseroles) eq 'HASH') &&
5217: (ref($rolecodes) eq 'ARRAY') &&
5218: (ref($groups_roles) eq 'HASH'));
5219: if (keys(%{$cdom_courseroles}) > 0) {
5220: my ($cnum) = ($rest =~ /^($match_courseid)/);
5221: if ($cdom ne '' && $cnum ne '') {
5222: foreach my $key (keys(%{$cdom_courseroles})) {
5223: if ($key =~ /^\Q$cnum\E:\Q$cdom\E:([^:]+):?([^:]*)/) {
5224: my $crsrole = $1;
5225: my $crssec = $2;
5226: if ($crsrole =~ /^cr/) {
5227: unless (grep(/^cr$/,@{$rolecodes})) {
5228: push(@{$rolecodes},'cr');
5229: }
5230: } else {
5231: unless(grep(/^\Q$crsrole\E$/,@{$rolecodes})) {
5232: push(@{$rolecodes},$crsrole);
5233: }
5234: }
5235: my $rolekey = "$crsrole./$cdom/$cnum";
5236: if ($crssec ne '') {
5237: $rolekey .= "/$crssec";
5238: }
5239: $rolekey .= './';
5240: $groups_roles->{$rolekey} = $rolecodes;
5241: }
5242: }
5243: }
5244: }
5245: return;
5246: }
5247:
5248: sub delete_env_groupprivs {
5249: my ($where,$courseroles,$possroles) = @_;
5250: return unless((ref($courseroles) eq 'HASH') && (ref($possroles) eq 'ARRAY'));
5251: my ($dummy,$udom,$uname,$group) = split(/\//,$where);
5252: unless (ref($courseroles->{$udom}) eq 'HASH') {
5253: %{$courseroles->{$udom}} =
5254: &get_my_roles('','','userroles',['active'],
5255: $possroles,[$udom],1);
5256: }
5257: if (ref($courseroles->{$udom}) eq 'HASH') {
5258: foreach my $item (keys(%{$courseroles->{$udom}})) {
5259: my ($cnum,$cdom,$crsrole,$crssec) = split(/:/,$item);
5260: my $area = '/'.$cdom.'/'.$cnum;
5261: my $privkey = "user.priv.$crsrole.$area";
5262: if ($crssec ne '') {
5263: $privkey .= '/'.$crssec;
5264: }
5265: $privkey .= ".$area/$group";
5266: &Apache::lonnet::delenv($privkey,undef,[$crsrole]);
5267: }
5268: }
5269: return;
5270: }
5271:
1.994 raeburn 5272: sub check_adhoc_privs {
1.1104 raeburn 5273: my ($cdom,$cnum,$update,$refresh,$now,$checkrole,$caller) = @_;
1.994 raeburn 5274: my $cckey = 'user.role.'.$checkrole.'./'.$cdom.'/'.$cnum;
1.1185 raeburn 5275: my $setprivs;
1.994 raeburn 5276: if ($env{$cckey}) {
5277: my ($role,$where,$trolecode,$tstart,$tend,$tremark,$tstatus,$tpstart,$tpend);
1.1104 raeburn 5278: &role_status($cckey,$update,$refresh,$now,\$role,\$where,\$trolecode,\$tstatus,\$tstart,\$tend);
1.994 raeburn 5279: unless (($tstatus eq 'is') || ($tstatus eq 'will_not')) {
1.1088 raeburn 5280: &set_adhoc_privileges($cdom,$cnum,$checkrole,$caller);
1.1185 raeburn 5281: $setprivs = 1;
1.994 raeburn 5282: }
5283: } else {
1.1088 raeburn 5284: &set_adhoc_privileges($cdom,$cnum,$checkrole,$caller);
1.1185 raeburn 5285: $setprivs = 1;
1.994 raeburn 5286: }
1.1185 raeburn 5287: return $setprivs;
1.994 raeburn 5288: }
5289:
5290: sub set_adhoc_privileges {
5291: # role can be cc or ca
1.1088 raeburn 5292: my ($dcdom,$pickedcourse,$role,$caller) = @_;
1.994 raeburn 5293: my $area = '/'.$dcdom.'/'.$pickedcourse;
5294: my $spec = $role.'.'.$area;
5295: my %userroles = &set_arearole($role,$area,'','',$env{'user.domain'},
5296: $env{'user.name'});
5297: my %ccrole = ();
5298: &standard_roleprivs(\%ccrole,$role,$dcdom,$spec,$pickedcourse,$area);
5299: my ($author,$adv)= &set_userprivs(\%userroles,\%ccrole);
5300: &appenv(\%userroles,[$role,'cm']);
5301: &log($env{'user.domain'},$env{'user.name'},$env{'user.home'},"Role ".$role);
1.1088 raeburn 5302: unless ($caller eq 'constructaccess' && $env{'request.course.id'}) {
5303: &appenv( {'request.role' => $spec,
5304: 'request.role.domain' => $dcdom,
5305: 'request.course.sec' => ''
5306: }
5307: );
5308: my $tadv=0;
5309: if (&allowed('adv') eq 'F') { $tadv=1; }
5310: &appenv({'request.role.adv' => $tadv});
5311: }
1.994 raeburn 5312: }
5313:
1.12 www 5314: # --------------------------------------------------------------- get interface
5315:
5316: sub get {
1.131 albertel 5317: my ($namespace,$storearr,$udomain,$uname)=@_;
1.12 www 5318: my $items='';
1.800 albertel 5319: foreach my $item (@$storearr) {
5320: $items.=&escape($item).'&';
1.191 harris41 5321: }
1.12 www 5322: $items=~s/\&$//;
1.620 albertel 5323: if (!$udomain) { $udomain=$env{'user.domain'}; }
5324: if (!$uname) { $uname=$env{'user.name'}; }
1.131 albertel 5325: my $uhome=&homeserver($uname,$udomain);
5326:
1.133 albertel 5327: my $rep=&reply("get:$udomain:$uname:$namespace:$items",$uhome);
1.15 www 5328: my @pairs=split(/\&/,$rep);
1.273 albertel 5329: if ( $#pairs==0 && $pairs[0] =~ /^(con_lost|error|no_such_host)/i) {
5330: return @pairs;
5331: }
1.15 www 5332: my %returnhash=();
1.42 www 5333: my $i=0;
1.800 albertel 5334: foreach my $item (@$storearr) {
5335: $returnhash{$item}=&thaw_unescape($pairs[$i]);
1.42 www 5336: $i++;
1.191 harris41 5337: }
1.15 www 5338: return %returnhash;
1.27 www 5339: }
5340:
5341: # --------------------------------------------------------------- del interface
5342:
5343: sub del {
1.133 albertel 5344: my ($namespace,$storearr,$udomain,$uname)=@_;
1.27 www 5345: my $items='';
1.800 albertel 5346: foreach my $item (@$storearr) {
5347: $items.=&escape($item).'&';
1.191 harris41 5348: }
1.984 neumanie 5349:
1.27 www 5350: $items=~s/\&$//;
1.620 albertel 5351: if (!$udomain) { $udomain=$env{'user.domain'}; }
5352: if (!$uname) { $uname=$env{'user.name'}; }
1.133 albertel 5353: my $uhome=&homeserver($uname,$udomain);
5354: return &reply("del:$udomain:$uname:$namespace:$items",$uhome);
1.15 www 5355: }
5356:
5357: # -------------------------------------------------------------- dump interface
5358:
1.1180 droeschl 5359: sub unserialize {
5360: my ($rep, $escapedkeys) = @_;
5361:
5362: return {} if $rep =~ /^error/;
5363:
5364: my %returnhash=();
5365: foreach my $item (split /\&/, $rep) {
5366: my ($key, $value) = split(/=/, $item, 2);
5367: $key = unescape($key) unless $escapedkeys;
5368: next if $key =~ /^error: 2 /;
5369: $returnhash{$key} = Apache::lonnet::thaw_unescape($value);
5370: }
5371: #return %returnhash;
5372: return \%returnhash;
5373: }
5374:
5375: # see Lond::dump_with_regexp
5376: # if $escapedkeys hash keys won't get unescaped.
1.15 www 5377: sub dump {
1.1180 droeschl 5378: my ($namespace,$udomain,$uname,$regexp,$range,$escapedkeys)=@_;
1.755 albertel 5379: if (!$udomain) { $udomain=$env{'user.domain'}; }
5380: if (!$uname) { $uname=$env{'user.name'}; }
5381: my $uhome=&homeserver($uname,$udomain);
1.1167 droeschl 5382:
1.1180 droeschl 5383: my $reply;
5384: if (grep { $_ eq $uhome } current_machine_ids()) {
5385: # user is hosted on this machine
5386: $reply = LONCAPA::Lond::dump_with_regexp(join(":", ($udomain,
5387: $uname, $namespace, $regexp, $range)), $loncaparevs{$uhome});
5388: return %{unserialize($reply, $escapedkeys)};
5389: }
1.755 albertel 5390: if ($regexp) {
5391: $regexp=&escape($regexp);
5392: } else {
5393: $regexp='.';
5394: }
1.1166 raeburn 5395: my $rep=&reply("dump:$udomain:$uname:$namespace:$regexp:$range",$uhome);
1.755 albertel 5396: my @pairs=split(/\&/,$rep);
5397: my %returnhash=();
1.1098 foxr 5398: if (!($rep =~ /^error/ )) {
5399: foreach my $item (@pairs) {
5400: my ($key,$value)=split(/=/,$item,2);
1.1180 droeschl 5401: $key = unescape($key) unless $escapedkeys;
5402: #$key = &unescape($key);
1.1098 foxr 5403: next if ($key =~ /^error: 2 /);
5404: $returnhash{$key}=&thaw_unescape($value);
5405: }
1.755 albertel 5406: }
5407: return %returnhash;
1.407 www 5408: }
5409:
1.1098 foxr 5410:
1.717 albertel 5411: # --------------------------------------------------------- dumpstore interface
5412:
5413: sub dumpstore {
5414: my ($namespace,$udomain,$uname,$regexp,$range)=@_;
1.1180 droeschl 5415: # same as dump but keys must be escaped. They may contain colon separated
5416: # lists of values that may themself contain colons (e.g. symbs).
5417: return &dump($namespace, $udomain, $uname, $regexp, $range, 1);
1.717 albertel 5418: }
5419:
1.407 www 5420: # -------------------------------------------------------------- keys interface
5421:
5422: sub getkeys {
5423: my ($namespace,$udomain,$uname)=@_;
1.620 albertel 5424: if (!$udomain) { $udomain=$env{'user.domain'}; }
5425: if (!$uname) { $uname=$env{'user.name'}; }
1.407 www 5426: my $uhome=&homeserver($uname,$udomain);
5427: my $rep=reply("keys:$udomain:$uname:$namespace",$uhome);
5428: my @keyarray=();
1.800 albertel 5429: foreach my $key (split(/\&/,$rep)) {
1.812 raeburn 5430: next if ($key =~ /^error: 2 /);
1.800 albertel 5431: push(@keyarray,&unescape($key));
1.407 www 5432: }
5433: return @keyarray;
1.318 matthew 5434: }
5435:
1.319 matthew 5436: # --------------------------------------------------------------- currentdump
5437: sub currentdump {
1.328 matthew 5438: my ($courseid,$sdom,$sname)=@_;
1.620 albertel 5439: $courseid = $env{'request.course.id'} if (! defined($courseid));
5440: $sdom = $env{'user.domain'} if (! defined($sdom));
5441: $sname = $env{'user.name'} if (! defined($sname));
1.326 matthew 5442: my $uhome = &homeserver($sname,$sdom);
1.1180 droeschl 5443: my $rep;
5444:
5445: if (grep { $_ eq $uhome } current_machine_ids()) {
5446: $rep = LONCAPA::Lond::dump_profile_database(join(":", ($sdom, $sname,
5447: $courseid)));
5448: } else {
5449: $rep = reply('currentdump:'.$sdom.':'.$sname.':'.$courseid,$uhome);
5450: }
5451:
1.318 matthew 5452: return if ($rep =~ /^(error:|no_such_host)/);
1.319 matthew 5453: #
1.318 matthew 5454: my %returnhash=();
1.319 matthew 5455: #
5456: if ($rep eq "unknown_cmd") {
5457: # an old lond will not know currentdump
5458: # Do a dump and make it look like a currentdump
1.822 albertel 5459: my @tmp = &dumpstore($courseid,$sdom,$sname,'.');
1.319 matthew 5460: return if ($tmp[0] =~ /^(error:|no_such_host)/);
5461: my %hash = @tmp;
5462: @tmp=();
1.424 matthew 5463: %returnhash = %{&convert_dump_to_currentdump(\%hash)};
1.319 matthew 5464: } else {
5465: my @pairs=split(/\&/,$rep);
1.800 albertel 5466: foreach my $pair (@pairs) {
5467: my ($key,$value)=split(/=/,$pair,2);
1.319 matthew 5468: my ($symb,$param) = split(/:/,$key);
5469: $returnhash{&unescape($symb)}->{&unescape($param)} =
1.557 albertel 5470: &thaw_unescape($value);
1.319 matthew 5471: }
1.191 harris41 5472: }
1.12 www 5473: return %returnhash;
1.424 matthew 5474: }
5475:
5476: sub convert_dump_to_currentdump{
5477: my %hash = %{shift()};
5478: my %returnhash;
5479: # Code ripped from lond, essentially. The only difference
5480: # here is the unescaping done by lonnet::dump(). Conceivably
5481: # we might run in to problems with parameter names =~ /^v\./
5482: while (my ($key,$value) = each(%hash)) {
5483: my ($v,$symb,$param) = split(/:/,$key);
1.822 albertel 5484: $symb = &unescape($symb);
5485: $param = &unescape($param);
1.424 matthew 5486: next if ($v eq 'version' || $symb eq 'keys');
5487: next if (exists($returnhash{$symb}) &&
5488: exists($returnhash{$symb}->{$param}) &&
5489: $returnhash{$symb}->{'v.'.$param} > $v);
5490: $returnhash{$symb}->{$param}=$value;
5491: $returnhash{$symb}->{'v.'.$param}=$v;
5492: }
5493: #
5494: # Remove all of the keys in the hashes which keep track of
5495: # the version of the parameter.
5496: while (my ($symb,$param_hash) = each(%returnhash)) {
5497: # use a foreach because we are going to delete from the hash.
5498: foreach my $key (keys(%$param_hash)) {
5499: delete($param_hash->{$key}) if ($key =~ /^v\./);
5500: }
5501: }
5502: return \%returnhash;
1.12 www 5503: }
5504:
1.627 albertel 5505: # ------------------------------------------------------ critical inc interface
5506:
5507: sub cinc {
5508: return &inc(@_,'critical');
5509: }
5510:
1.449 matthew 5511: # --------------------------------------------------------------- inc interface
5512:
5513: sub inc {
1.627 albertel 5514: my ($namespace,$store,$udomain,$uname,$critical) = @_;
1.620 albertel 5515: if (!$udomain) { $udomain=$env{'user.domain'}; }
5516: if (!$uname) { $uname=$env{'user.name'}; }
1.449 matthew 5517: my $uhome=&homeserver($uname,$udomain);
5518: my $items='';
5519: if (! ref($store)) {
5520: # got a single value, so use that instead
5521: $items = &escape($store).'=&';
5522: } elsif (ref($store) eq 'SCALAR') {
5523: $items = &escape($$store).'=&';
5524: } elsif (ref($store) eq 'ARRAY') {
5525: $items = join('=&',map {&escape($_);} @{$store});
5526: } elsif (ref($store) eq 'HASH') {
5527: while (my($key,$value) = each(%{$store})) {
5528: $items.= &escape($key).'='.&escape($value).'&';
5529: }
5530: }
5531: $items=~s/\&$//;
1.627 albertel 5532: if ($critical) {
5533: return &critical("inc:$udomain:$uname:$namespace:$items",$uhome);
5534: } else {
5535: return &reply("inc:$udomain:$uname:$namespace:$items",$uhome);
5536: }
1.449 matthew 5537: }
5538:
1.12 www 5539: # --------------------------------------------------------------- put interface
5540:
5541: sub put {
1.134 albertel 5542: my ($namespace,$storehash,$udomain,$uname)=@_;
1.620 albertel 5543: if (!$udomain) { $udomain=$env{'user.domain'}; }
5544: if (!$uname) { $uname=$env{'user.name'}; }
1.134 albertel 5545: my $uhome=&homeserver($uname,$udomain);
1.12 www 5546: my $items='';
1.800 albertel 5547: foreach my $item (keys(%$storehash)) {
5548: $items.=&escape($item).'='.&freeze_escape($$storehash{$item}).'&';
1.191 harris41 5549: }
1.12 www 5550: $items=~s/\&$//;
1.134 albertel 5551: return &reply("put:$udomain:$uname:$namespace:$items",$uhome);
1.47 www 5552: }
5553:
1.631 albertel 5554: # ------------------------------------------------------------ newput interface
5555:
5556: sub newput {
5557: my ($namespace,$storehash,$udomain,$uname)=@_;
5558: if (!$udomain) { $udomain=$env{'user.domain'}; }
5559: if (!$uname) { $uname=$env{'user.name'}; }
5560: my $uhome=&homeserver($uname,$udomain);
5561: my $items='';
5562: foreach my $key (keys(%$storehash)) {
5563: $items.=&escape($key).'='.&freeze_escape($$storehash{$key}).'&';
5564: }
5565: $items=~s/\&$//;
5566: return &reply("newput:$udomain:$uname:$namespace:$items",$uhome);
5567: }
5568:
5569: # --------------------------------------------------------- putstore interface
5570:
1.524 raeburn 5571: sub putstore {
1.715 albertel 5572: my ($namespace,$symb,$version,$storehash,$udomain,$uname)=@_;
1.620 albertel 5573: if (!$udomain) { $udomain=$env{'user.domain'}; }
5574: if (!$uname) { $uname=$env{'user.name'}; }
1.524 raeburn 5575: my $uhome=&homeserver($uname,$udomain);
5576: my $items='';
1.715 albertel 5577: foreach my $key (keys(%$storehash)) {
5578: $items.= &escape($key).'='.&freeze_escape($storehash->{$key}).'&';
1.524 raeburn 5579: }
1.715 albertel 5580: $items=~s/\&$//;
1.716 albertel 5581: my $esc_symb=&escape($symb);
5582: my $esc_v=&escape($version);
1.715 albertel 5583: my $reply =
1.716 albertel 5584: &reply("putstore:$udomain:$uname:$namespace:$esc_symb:$esc_v:$items",
1.715 albertel 5585: $uhome);
5586: if ($reply eq 'unknown_cmd') {
1.716 albertel 5587: # gfall back to way things use to be done
1.715 albertel 5588: return &old_putstore($namespace,$symb,$version,$storehash,$udomain,
5589: $uname);
1.524 raeburn 5590: }
1.715 albertel 5591: return $reply;
5592: }
5593:
5594: sub old_putstore {
1.716 albertel 5595: my ($namespace,$symb,$version,$storehash,$udomain,$uname)=@_;
5596: if (!$udomain) { $udomain=$env{'user.domain'}; }
5597: if (!$uname) { $uname=$env{'user.name'}; }
5598: my $uhome=&homeserver($uname,$udomain);
5599: my %newstorehash;
1.800 albertel 5600: foreach my $item (keys(%$storehash)) {
5601: my $key = $version.':'.&escape($symb).':'.$item;
5602: $newstorehash{$key} = $storehash->{$item};
1.716 albertel 5603: }
5604: my $items='';
5605: my %allitems = ();
1.800 albertel 5606: foreach my $item (keys(%newstorehash)) {
5607: if ($item =~ m/^([^\:]+):([^\:]+):([^\:]+)$/) {
1.716 albertel 5608: my $key = $1.':keys:'.$2;
5609: $allitems{$key} .= $3.':';
5610: }
1.800 albertel 5611: $items.=$item.'='.&freeze_escape($newstorehash{$item}).'&';
1.716 albertel 5612: }
1.800 albertel 5613: foreach my $item (keys(%allitems)) {
5614: $allitems{$item} =~ s/\:$//;
5615: $items.= $item.'='.$allitems{$item}.'&';
1.716 albertel 5616: }
5617: $items=~s/\&$//;
5618: return &reply("put:$udomain:$uname:$namespace:$items",$uhome);
1.524 raeburn 5619: }
5620:
1.47 www 5621: # ------------------------------------------------------ critical put interface
5622:
5623: sub cput {
1.134 albertel 5624: my ($namespace,$storehash,$udomain,$uname)=@_;
1.620 albertel 5625: if (!$udomain) { $udomain=$env{'user.domain'}; }
5626: if (!$uname) { $uname=$env{'user.name'}; }
1.134 albertel 5627: my $uhome=&homeserver($uname,$udomain);
1.47 www 5628: my $items='';
1.800 albertel 5629: foreach my $item (keys(%$storehash)) {
5630: $items.=&escape($item).'='.&freeze_escape($$storehash{$item}).'&';
1.191 harris41 5631: }
1.47 www 5632: $items=~s/\&$//;
1.134 albertel 5633: return &critical("put:$udomain:$uname:$namespace:$items",$uhome);
1.12 www 5634: }
5635:
5636: # -------------------------------------------------------------- eget interface
5637:
5638: sub eget {
1.133 albertel 5639: my ($namespace,$storearr,$udomain,$uname)=@_;
1.12 www 5640: my $items='';
1.800 albertel 5641: foreach my $item (@$storearr) {
5642: $items.=&escape($item).'&';
1.191 harris41 5643: }
1.12 www 5644: $items=~s/\&$//;
1.620 albertel 5645: if (!$udomain) { $udomain=$env{'user.domain'}; }
5646: if (!$uname) { $uname=$env{'user.name'}; }
1.133 albertel 5647: my $uhome=&homeserver($uname,$udomain);
5648: my $rep=&reply("eget:$udomain:$uname:$namespace:$items",$uhome);
1.12 www 5649: my @pairs=split(/\&/,$rep);
5650: my %returnhash=();
1.42 www 5651: my $i=0;
1.800 albertel 5652: foreach my $item (@$storearr) {
5653: $returnhash{$item}=&thaw_unescape($pairs[$i]);
1.42 www 5654: $i++;
1.191 harris41 5655: }
1.12 www 5656: return %returnhash;
5657: }
5658:
1.667 albertel 5659: # ------------------------------------------------------------ tmpput interface
5660: sub tmpput {
1.802 raeburn 5661: my ($storehash,$server,$context)=@_;
1.667 albertel 5662: my $items='';
1.800 albertel 5663: foreach my $item (keys(%$storehash)) {
5664: $items.=&escape($item).'='.&freeze_escape($$storehash{$item}).'&';
1.667 albertel 5665: }
5666: $items=~s/\&$//;
1.802 raeburn 5667: if (defined($context)) {
5668: $items .= ':'.&escape($context);
5669: }
1.667 albertel 5670: return &reply("tmpput:$items",$server);
5671: }
5672:
5673: # ------------------------------------------------------------ tmpget interface
5674: sub tmpget {
1.688 albertel 5675: my ($token,$server)=@_;
5676: if (!defined($server)) { $server = $perlvar{'lonHostID'}; }
5677: my $rep=&reply("tmpget:$token",$server);
1.667 albertel 5678: my %returnhash;
5679: foreach my $item (split(/\&/,$rep)) {
5680: my ($key,$value)=split(/=/,$item);
1.951 raeburn 5681: next if ($key =~ /^error: 2 /);
1.667 albertel 5682: $returnhash{&unescape($key)}=&thaw_unescape($value);
5683: }
5684: return %returnhash;
5685: }
5686:
1.1113 raeburn 5687: # ------------------------------------------------------------ tmpdel interface
1.688 albertel 5688: sub tmpdel {
5689: my ($token,$server)=@_;
5690: if (!defined($server)) { $server = $perlvar{'lonHostID'}; }
5691: return &reply("tmpdel:$token",$server);
5692: }
5693:
1.1198 ! raeburn 5694: # ------------------------------------------------------------ get_timebased_id
! 5695:
! 5696: sub get_timebased_id {
! 5697: my ($prefix,$keyid,$namespace,$cdom,$cnum,$idtype,$who,$locktries,
! 5698: $maxtries) = @_;
! 5699: my ($newid,$error,$dellock);
! 5700: unless (($prefix =~ /^\w+$/) && ($keyid =~ /^\w+$/) && ($namespace ne '')) {
! 5701: return ('','ok','invalid call to get suffix');
! 5702: }
! 5703:
! 5704: # set defaults for any optional args for which values were not supplied
! 5705: if ($who eq '') {
! 5706: $who = $env{'user.name'}.':'.$env{'user.domain'};
! 5707: }
! 5708: if (!$locktries) {
! 5709: $locktries = 3;
! 5710: }
! 5711: if (!$maxtries) {
! 5712: $maxtries = 10;
! 5713: }
! 5714:
! 5715: if (($cdom eq '') || ($cnum eq '')) {
! 5716: if ($env{'request.course.id'}) {
! 5717: $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
! 5718: $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
! 5719: }
! 5720: if (($cdom eq '') || ($cnum eq '')) {
! 5721: return ('','ok','call to get suffix not in course context');
! 5722: }
! 5723: }
! 5724:
! 5725: # construct locking item
! 5726: my $lockhash = {
! 5727: $prefix."\0".'locked_'.$keyid => $who,
! 5728: };
! 5729: my $tries = 0;
! 5730:
! 5731: # attempt to get lock on nohist_$namespace file
! 5732: my $gotlock = &Apache::lonnet::newput('nohist_'.$namespace,$lockhash,$cdom,$cnum);
! 5733: while (($gotlock ne 'ok') && $tries <$locktries) {
! 5734: $tries ++;
! 5735: sleep 1;
! 5736: $gotlock = &Apache::lonnet::newput('nohist_'.$namespace,$lockhash,$cdom,$cnum);
! 5737: }
! 5738:
! 5739: # attempt to get unique identifier, based on current timestamp
! 5740: if ($gotlock eq 'ok') {
! 5741: my %inuse = &Apache::lonnet::dump('nohist_'.$namespace,$cdom,$cnum,$prefix);
! 5742: my $id = time;
! 5743: $newid = $id;
! 5744: my $idtries = 0;
! 5745: while (exists($inuse{$prefix."\0".$newid}) && $idtries < $maxtries) {
! 5746: if ($idtype eq 'concat') {
! 5747: $newid = $id.$idtries;
! 5748: } else {
! 5749: $newid ++;
! 5750: }
! 5751: $idtries ++;
! 5752: }
! 5753: if (!exists($inuse{$prefix."\0".$newid})) {
! 5754: my %new_item = (
! 5755: $prefix."\0".$newid => $who,
! 5756: );
! 5757: my $putresult = &Apache::lonnet::put('nohist_'.$namespace,\%new_item,
! 5758: $cdom,$cnum);
! 5759: if ($putresult ne 'ok') {
! 5760: undef($newid);
! 5761: $error = 'error saving new item: '.$putresult;
! 5762: }
! 5763: } else {
! 5764: $error = ('error: no unique suffix available for the new item ');
! 5765: }
! 5766: # remove lock
! 5767: my @del_lock = ($prefix."\0".'locked_'.$keyid);
! 5768: $dellock = &Apache::lonnet::del('nohist_'.$namespace,\@del_lock,$cdom,$cnum);
! 5769: } else {
! 5770: $error = "error: could not obtain lockfile\n";
! 5771: $dellock = 'ok';
! 5772: }
! 5773: return ($newid,$dellock,$error);
! 5774: }
! 5775:
1.765 albertel 5776: # -------------------------------------------------- portfolio access checking
5777:
5778: sub portfolio_access {
1.766 albertel 5779: my ($requrl) = @_;
1.765 albertel 5780: my (undef,$udom,$unum,$file_name,$group) = &parse_portfolio_url($requrl);
5781: my $result = &get_portfolio_access($udom,$unum,$file_name,$group);
1.814 raeburn 5782: if ($result) {
5783: my %setters;
5784: if ($env{'user.name'} eq 'public' && $env{'user.domain'} eq 'public') {
5785: my ($startblock,$endblock) =
5786: &Apache::loncommon::blockcheck(\%setters,'port',$unum,$udom);
5787: if ($startblock && $endblock) {
5788: return 'B';
5789: }
5790: } else {
5791: my ($startblock,$endblock) =
5792: &Apache::loncommon::blockcheck(\%setters,'port');
5793: if ($startblock && $endblock) {
5794: return 'B';
5795: }
5796: }
5797: }
1.765 albertel 5798: if ($result eq 'ok') {
1.766 albertel 5799: return 'F';
1.765 albertel 5800: } elsif ($result =~ /^[^:]+:guest_/) {
1.766 albertel 5801: return 'A';
1.765 albertel 5802: }
1.766 albertel 5803: return '';
1.765 albertel 5804: }
5805:
5806: sub get_portfolio_access {
1.767 albertel 5807: my ($udom,$unum,$file_name,$group,$access_hash) = @_;
5808:
5809: if (!ref($access_hash)) {
5810: my $current_perms = &get_portfile_permissions($udom,$unum);
5811: my %access_controls = &get_access_controls($current_perms,$group,
5812: $file_name);
5813: $access_hash = $access_controls{$file_name};
5814: }
5815:
1.765 albertel 5816: my ($public,$guest,@domains,@users,@courses,@groups);
5817: my $now = time;
5818: if (ref($access_hash) eq 'HASH') {
5819: foreach my $key (keys(%{$access_hash})) {
5820: my ($num,$scope,$end,$start) = ($key =~ /^([^:]+):([a-z]+)_(\d*)_?(\d*)$/);
5821: if ($start > $now) {
5822: next;
5823: }
5824: if ($end && $end<$now) {
5825: next;
5826: }
5827: if ($scope eq 'public') {
5828: $public = $key;
5829: last;
5830: } elsif ($scope eq 'guest') {
5831: $guest = $key;
5832: } elsif ($scope eq 'domains') {
5833: push(@domains,$key);
5834: } elsif ($scope eq 'users') {
5835: push(@users,$key);
5836: } elsif ($scope eq 'course') {
5837: push(@courses,$key);
5838: } elsif ($scope eq 'group') {
5839: push(@groups,$key);
5840: }
5841: }
5842: if ($public) {
5843: return 'ok';
5844: }
5845: if ($env{'user.name'} eq 'public' && $env{'user.domain'} eq 'public') {
5846: if ($guest) {
5847: return $guest;
5848: }
5849: } else {
5850: if (@domains > 0) {
5851: foreach my $domkey (@domains) {
5852: if (ref($access_hash->{$domkey}{'dom'}) eq 'ARRAY') {
5853: if (grep(/^\Q$env{'user.domain'}\E$/,@{$access_hash->{$domkey}{'dom'}})) {
5854: return 'ok';
5855: }
5856: }
5857: }
5858: }
5859: if (@users > 0) {
5860: foreach my $userkey (@users) {
1.865 raeburn 5861: if (ref($access_hash->{$userkey}{'users'}) eq 'ARRAY') {
5862: foreach my $item (@{$access_hash->{$userkey}{'users'}}) {
5863: if (ref($item) eq 'HASH') {
5864: if (($item->{'uname'} eq $env{'user.name'}) &&
5865: ($item->{'udom'} eq $env{'user.domain'})) {
5866: return 'ok';
5867: }
5868: }
5869: }
5870: }
1.765 albertel 5871: }
5872: }
5873: my %roleshash;
5874: my @courses_and_groups = @courses;
5875: push(@courses_and_groups,@groups);
5876: if (@courses_and_groups > 0) {
5877: my (%allgroups,%allroles);
5878: my ($start,$end,$role,$sec,$group);
5879: foreach my $envkey (%env) {
1.1060 raeburn 5880: if ($envkey =~ m-^user\.role\.(gr|cc|co|in|ta|ep|ad|st)\./($match_domain)/($match_courseid)/?([^/]*)$-) {
1.765 albertel 5881: my $cid = $2.'_'.$3;
5882: if ($1 eq 'gr') {
5883: $group = $4;
5884: $allgroups{$cid}{$group} = $env{$envkey};
5885: } else {
5886: if ($4 eq '') {
5887: $sec = 'none';
5888: } else {
5889: $sec = $4;
5890: }
5891: $allroles{$cid}{$1}{$sec} = $env{$envkey};
5892: }
1.811 albertel 5893: } elsif ($envkey =~ m-^user\.role\./cr/($match_domain/$match_username/\w*)./($match_domain)/($match_courseid)/?([^/]*)$-) {
1.765 albertel 5894: my $cid = $2.'_'.$3;
5895: if ($4 eq '') {
5896: $sec = 'none';
5897: } else {
5898: $sec = $4;
5899: }
5900: $allroles{$cid}{$1}{$sec} = $env{$envkey};
5901: }
5902: }
5903: if (keys(%allroles) == 0) {
5904: return;
5905: }
5906: foreach my $key (@courses_and_groups) {
5907: my %content = %{$$access_hash{$key}};
5908: my $cnum = $content{'number'};
5909: my $cdom = $content{'domain'};
5910: my $cid = $cdom.'_'.$cnum;
5911: if (!exists($allroles{$cid})) {
5912: next;
5913: }
5914: foreach my $role_id (keys(%{$content{'roles'}})) {
5915: my @sections = @{$content{'roles'}{$role_id}{'section'}};
5916: my @groups = @{$content{'roles'}{$role_id}{'group'}};
5917: my @status = @{$content{'roles'}{$role_id}{'access'}};
5918: my @roles = @{$content{'roles'}{$role_id}{'role'}};
5919: foreach my $role (keys(%{$allroles{$cid}})) {
5920: if ((grep/^all$/,@roles) || (grep/^\Q$role\E$/,@roles)) {
5921: foreach my $sec (keys(%{$allroles{$cid}{$role}})) {
5922: if (&course_group_datechecker($allroles{$cid}{$role}{$sec},$now,\@status) eq 'ok') {
5923: if (grep/^all$/,@sections) {
5924: return 'ok';
5925: } else {
5926: if (grep/^$sec$/,@sections) {
5927: return 'ok';
5928: }
5929: }
5930: }
5931: }
5932: if (keys(%{$allgroups{$cid}}) == 0) {
5933: if (grep/^none$/,@groups) {
5934: return 'ok';
5935: }
5936: } else {
5937: if (grep/^all$/,@groups) {
5938: return 'ok';
5939: }
5940: foreach my $group (keys(%{$allgroups{$cid}})) {
5941: if (grep/^$group$/,@groups) {
5942: return 'ok';
5943: }
5944: }
5945: }
5946: }
5947: }
5948: }
5949: }
5950: }
5951: if ($guest) {
5952: return $guest;
5953: }
5954: }
5955: }
5956: return;
5957: }
5958:
5959: sub course_group_datechecker {
5960: my ($dates,$now,$status) = @_;
5961: my ($start,$end) = split(/\./,$dates);
5962: if (!$start && !$end) {
5963: return 'ok';
5964: }
5965: if (grep/^active$/,@{$status}) {
5966: if (((!$start) || ($start && $start <= $now)) && ((!$end) || ($end && $end >= $now))) {
5967: return 'ok';
5968: }
5969: }
5970: if (grep/^previous$/,@{$status}) {
5971: if ($end > $now ) {
5972: return 'ok';
5973: }
5974: }
5975: if (grep/^future$/,@{$status}) {
5976: if ($start > $now) {
5977: return 'ok';
5978: }
5979: }
5980: return;
5981: }
5982:
5983: sub parse_portfolio_url {
5984: my ($url) = @_;
5985:
5986: my ($type,$udom,$unum,$group,$file_name);
5987:
1.823 albertel 5988: if ($url =~ m-^/*(?:uploaded|editupload)/($match_domain)/($match_username)/portfolio(/.+)$-) {
1.765 albertel 5989: $type = 1;
5990: $udom = $1;
5991: $unum = $2;
5992: $file_name = $3;
1.823 albertel 5993: } elsif ($url =~ m-^/*(?:uploaded|editupload)/($match_domain)/($match_courseid)/groups/([^/]+)/portfolio/(.+)$-) {
1.765 albertel 5994: $type = 2;
5995: $udom = $1;
5996: $unum = $2;
5997: $group = $3;
5998: $file_name = $3.'/'.$4;
5999: }
6000: if (wantarray) {
6001: return ($type,$udom,$unum,$file_name,$group);
6002: }
6003: return $type;
6004: }
6005:
6006: sub is_portfolio_url {
6007: my ($url) = @_;
6008: return scalar(&parse_portfolio_url($url));
6009: }
6010:
1.798 raeburn 6011: sub is_portfolio_file {
6012: my ($file) = @_;
1.820 raeburn 6013: if (($file =~ /^portfolio/) || ($file =~ /^groups\/\w+\/portfolio/)) {
1.798 raeburn 6014: return 1;
6015: }
6016: return;
6017: }
6018:
1.976 raeburn 6019: sub usertools_access {
1.1084 raeburn 6020: my ($uname,$udom,$tool,$action,$context,$userenvref,$domdefref,$is_advref)=@_;
1.985 raeburn 6021: my ($access,%tools);
6022: if ($context eq '') {
6023: $context = 'tools';
6024: }
6025: if ($context eq 'requestcourses') {
6026: %tools = (
6027: official => 1,
6028: unofficial => 1,
1.1006 raeburn 6029: community => 1,
1.985 raeburn 6030: );
1.1183 raeburn 6031: } elsif ($context eq 'requestauthor') {
6032: %tools = (
6033: requestauthor => 1,
6034: );
1.985 raeburn 6035: } else {
6036: %tools = (
6037: aboutme => 1,
6038: blog => 1,
1.1177 raeburn 6039: webdav => 1,
1.985 raeburn 6040: portfolio => 1,
6041: );
6042: }
1.976 raeburn 6043: return if (!defined($tools{$tool}));
6044:
6045: if ((!defined($udom)) || (!defined($uname))) {
6046: $udom = $env{'user.domain'};
6047: $uname = $env{'user.name'};
6048: }
6049:
1.978 raeburn 6050: if (($udom eq $env{'user.domain'}) && ($uname eq $env{'user.name'})) {
6051: if ($action ne 'reload') {
1.985 raeburn 6052: if ($context eq 'requestcourses') {
6053: return $env{'environment.canrequest.'.$tool};
1.1183 raeburn 6054: } elsif ($context eq 'requestauthor') {
6055: return $env{'environment.canrequest.author'};
1.985 raeburn 6056: } else {
6057: return $env{'environment.availabletools.'.$tool};
6058: }
6059: }
1.976 raeburn 6060: }
6061:
1.1183 raeburn 6062: my ($toolstatus,$inststatus,$envkey);
6063: if ($context eq 'requestauthor') {
6064: $envkey = $context;
6065: } else {
6066: $envkey = $context.'.'.$tool;
6067: }
1.976 raeburn 6068:
1.985 raeburn 6069: if (($udom eq $env{'user.domain'}) && ($uname eq $env{'user.name'}) &&
6070: ($action ne 'reload')) {
1.1183 raeburn 6071: $toolstatus = $env{'environment.'.$envkey};
1.976 raeburn 6072: $inststatus = $env{'environment.inststatus'};
6073: } else {
1.1084 raeburn 6074: if (ref($userenvref) eq 'HASH') {
1.1183 raeburn 6075: $toolstatus = $userenvref->{$envkey};
1.1084 raeburn 6076: $inststatus = $userenvref->{'inststatus'};
6077: } else {
1.1183 raeburn 6078: my %userenv = &userenvironment($udom,$uname,$envkey,'inststatus');
6079: $toolstatus = $userenv{$envkey};
1.1084 raeburn 6080: $inststatus = $userenv{'inststatus'};
6081: }
1.976 raeburn 6082: }
6083:
6084: if ($toolstatus ne '') {
6085: if ($toolstatus) {
6086: $access = 1;
6087: } else {
6088: $access = 0;
6089: }
6090: return $access;
6091: }
6092:
1.1084 raeburn 6093: my ($is_adv,%domdef);
6094: if (ref($is_advref) eq 'HASH') {
6095: $is_adv = $is_advref->{'is_adv'};
6096: } else {
6097: $is_adv = &is_advanced_user($udom,$uname);
6098: }
6099: if (ref($domdefref) eq 'HASH') {
6100: %domdef = %{$domdefref};
6101: } else {
6102: %domdef = &get_domain_defaults($udom);
6103: }
1.976 raeburn 6104: if (ref($domdef{$tool}) eq 'HASH') {
6105: if ($is_adv) {
6106: if ($domdef{$tool}{'_LC_adv'} ne '') {
6107: if ($domdef{$tool}{'_LC_adv'}) {
6108: $access = 1;
6109: } else {
6110: $access = 0;
6111: }
6112: return $access;
6113: }
6114: }
6115: if ($inststatus ne '') {
6116: my ($hasaccess,$hasnoaccess);
6117: foreach my $affiliation (split(/:/,$inststatus)) {
6118: if ($domdef{$tool}{$affiliation} ne '') {
6119: if ($domdef{$tool}{$affiliation}) {
6120: $hasaccess = 1;
6121: } else {
6122: $hasnoaccess = 1;
6123: }
6124: }
6125: }
6126: if ($hasaccess || $hasnoaccess) {
6127: if ($hasaccess) {
6128: $access = 1;
6129: } elsif ($hasnoaccess) {
6130: $access = 0;
6131: }
6132: return $access;
6133: }
6134: } else {
6135: if ($domdef{$tool}{'default'} ne '') {
6136: if ($domdef{$tool}{'default'}) {
6137: $access = 1;
6138: } elsif ($domdef{$tool}{'default'} == 0) {
6139: $access = 0;
6140: }
6141: return $access;
6142: }
6143: }
6144: } else {
1.1177 raeburn 6145: if (($context eq 'tools') && ($tool ne 'webdav')) {
1.985 raeburn 6146: $access = 1;
6147: } else {
6148: $access = 0;
6149: }
1.976 raeburn 6150: return $access;
6151: }
6152: }
6153:
1.1050 raeburn 6154: sub is_course_owner {
6155: my ($cdom,$cnum,$udom,$uname) = @_;
6156: if (($udom eq '') || ($uname eq '')) {
6157: $udom = $env{'user.domain'};
6158: $uname = $env{'user.name'};
6159: }
6160: unless (($udom eq '') || ($uname eq '')) {
6161: if (exists($env{'course.'.$cdom.'_'.$cnum.'.internal.courseowner'})) {
6162: if ($env{'course.'.$cdom.'_'.$cnum.'.internal.courseowner'} eq $uname.':'.$udom) {
6163: return 1;
6164: } else {
6165: my %courseinfo = &Apache::lonnet::coursedescription($cdom.'/'.$cnum);
6166: if ($courseinfo{'internal.courseowner'} eq $uname.':'.$udom) {
6167: return 1;
6168: }
6169: }
6170: }
6171: }
6172: return;
6173: }
6174:
1.976 raeburn 6175: sub is_advanced_user {
6176: my ($udom,$uname) = @_;
1.1085 raeburn 6177: if ($udom ne '' && $uname ne '') {
6178: if (($udom eq $env{'user.domain'}) && ($uname eq $env{'user.name'})) {
1.1128 raeburn 6179: if (wantarray) {
6180: return ($env{'user.adv'},$env{'user.author'});
6181: } else {
6182: return $env{'user.adv'};
6183: }
1.1085 raeburn 6184: }
6185: }
1.976 raeburn 6186: my %roleshash = &get_my_roles($uname,$udom,'userroles',undef,undef,undef,1);
6187: my %allroles;
1.1128 raeburn 6188: my ($is_adv,$is_author);
1.976 raeburn 6189: foreach my $role (keys(%roleshash)) {
6190: my ($trest,$tdomain,$trole,$sec) = split(/:/,$role);
6191: my $area = '/'.$tdomain.'/'.$trest;
6192: if ($sec ne '') {
6193: $area .= '/'.$sec;
6194: }
6195: if (($area ne '') && ($trole ne '')) {
6196: my $spec=$trole.'.'.$area;
6197: if ($trole =~ /^cr\//) {
6198: &custom_roleprivs(\%allroles,$trole,$tdomain,$trest,$spec,$area);
6199: } elsif ($trole ne 'gr') {
6200: &standard_roleprivs(\%allroles,$trole,$tdomain,$spec,$trest,$area);
6201: }
1.1128 raeburn 6202: if ($trole eq 'au') {
6203: $is_author = 1;
6204: }
1.976 raeburn 6205: }
6206: }
6207: foreach my $role (keys(%allroles)) {
6208: last if ($is_adv);
6209: foreach my $item (split(/:/,$allroles{$role})) {
6210: if ($item ne '') {
6211: my ($privilege,$restrictions)=split(/&/,$item);
6212: if ($privilege eq 'adv') {
6213: $is_adv = 1;
6214: last;
6215: }
6216: }
6217: }
6218: }
1.1128 raeburn 6219: if (wantarray) {
6220: return ($is_adv,$is_author);
6221: }
1.976 raeburn 6222: return $is_adv;
6223: }
1.798 raeburn 6224:
1.1035 raeburn 6225: sub check_can_request {
1.1036 raeburn 6226: my ($dom,$can_request,$request_domains) = @_;
1.1035 raeburn 6227: my $canreq = 0;
6228: my ($types,$typename) = &Apache::loncommon::course_types();
6229: my @options = ('approval','validate','autolimit');
6230: my $optregex = join('|',@options);
6231: if ((ref($can_request) eq 'HASH') && (ref($types) eq 'ARRAY')) {
6232: foreach my $type (@{$types}) {
6233: if (&usertools_access($env{'user.name'},
6234: $env{'user.domain'},
6235: $type,undef,'requestcourses')) {
6236: $canreq ++;
1.1036 raeburn 6237: if (ref($request_domains) eq 'HASH') {
6238: push(@{$request_domains->{$type}},$env{'user.domain'});
6239: }
1.1035 raeburn 6240: if ($dom eq $env{'user.domain'}) {
6241: $can_request->{$type} = 1;
6242: }
6243: }
6244: if ($env{'environment.reqcrsotherdom.'.$type} ne '') {
6245: my @curr = split(',',$env{'environment.reqcrsotherdom.'.$type});
6246: if (@curr > 0) {
1.1036 raeburn 6247: foreach my $item (@curr) {
6248: if (ref($request_domains) eq 'HASH') {
6249: my ($otherdom) = ($item =~ /^($match_domain):($optregex)(=?\d*)$/);
6250: if ($otherdom ne '') {
6251: if (ref($request_domains->{$type}) eq 'ARRAY') {
6252: unless (grep(/^\Q$otherdom\E$/,@{$request_domains->{$type}})) {
6253: push(@{$request_domains->{$type}},$otherdom);
6254: }
6255: } else {
6256: push(@{$request_domains->{$type}},$otherdom);
6257: }
6258: }
6259: }
6260: }
6261: unless($dom eq $env{'user.domain'}) {
6262: $canreq ++;
1.1035 raeburn 6263: if (grep(/^\Q$dom\E:($optregex)(=?\d*)$/,@curr)) {
6264: $can_request->{$type} = 1;
6265: }
6266: }
6267: }
6268: }
6269: }
6270: }
6271: return $canreq;
6272: }
6273:
1.341 www 6274: # ---------------------------------------------- Custom access rule evaluation
6275:
6276: sub customaccess {
6277: my ($priv,$uri)=@_;
1.807 albertel 6278: my ($urole,$urealm)=split(/\./,$env{'request.role'},2);
1.819 www 6279: my (undef,$udom,$ucrs,$usec)=split(/\//,$urealm);
1.807 albertel 6280: $udom = &LONCAPA::clean_domain($udom);
6281: $ucrs = &LONCAPA::clean_username($ucrs);
1.341 www 6282: my $access=0;
1.800 albertel 6283: foreach my $right (split(/\s*\,\s*/,&metadata($uri,'rule_rights'))) {
1.893 albertel 6284: my ($effect,$realm,$role,$type)=split(/\:/,$right);
6285: if ($type eq 'user') {
6286: foreach my $scope (split(/\s*\,\s*/,$realm)) {
1.896 albertel 6287: my ($tdom,$tuname)=split(m{/},$scope);
1.893 albertel 6288: if ($tdom) {
6289: if ($tdom ne $env{'user.domain'}) { next; }
6290: }
1.896 albertel 6291: if ($tuname) {
6292: if ($tuname ne $env{'user.name'}) { next; }
1.893 albertel 6293: }
6294: $access=($effect eq 'allow');
6295: last;
6296: }
6297: } else {
6298: if ($role) {
6299: if ($role ne $urole) { next; }
6300: }
6301: foreach my $scope (split(/\s*\,\s*/,$realm)) {
6302: my ($tdom,$tcrs,$tsec)=split(/\_/,$scope);
6303: if ($tdom) {
6304: if ($tdom ne $udom) { next; }
6305: }
6306: if ($tcrs) {
6307: if ($tcrs ne $ucrs) { next; }
6308: }
6309: if ($tsec) {
6310: if ($tsec ne $usec) { next; }
6311: }
6312: $access=($effect eq 'allow');
6313: last;
6314: }
6315: if ($realm eq '' && $role eq '') {
6316: $access=($effect eq 'allow');
6317: }
1.402 bowersj2 6318: }
1.341 www 6319: }
6320: return $access;
6321: }
6322:
1.103 harris41 6323: # ------------------------------------------------- Check for a user privilege
1.12 www 6324:
6325: sub allowed {
1.810 raeburn 6326: my ($priv,$uri,$symb,$role)=@_;
1.705 albertel 6327: my $ver_orguri=$uri;
1.439 www 6328: $uri=&deversion($uri);
1.152 www 6329: my $orguri=$uri;
1.52 www 6330: $uri=&declutter($uri);
1.809 raeburn 6331:
1.810 raeburn 6332: if ($priv eq 'evb') {
6333: # Evade communication block restrictions for specified role in a course
6334: if ($env{'user.priv.'.$role} =~/evb\&([^\:]*)/) {
6335: return $1;
6336: } else {
6337: return;
6338: }
6339: }
6340:
1.620 albertel 6341: if (defined($env{'allowed.'.$priv})) { return $env{'allowed.'.$priv}; }
1.54 www 6342: # Free bre access to adm and meta resources
1.775 albertel 6343: if (((($uri=~/^adm\//) && ($uri !~ m{/(?:smppg|bulletinboard)$}))
1.769 albertel 6344: || (($uri=~/\.meta$/) && ($uri!~m|^uploaded/|) ))
6345: && ($priv eq 'bre')) {
1.14 www 6346: return 'F';
1.159 www 6347: }
6348:
1.545 banghart 6349: # Free bre access to user's own portfolio contents
1.714 raeburn 6350: my ($space,$domain,$name,@dir)=split('/',$uri);
1.647 raeburn 6351: if (($space=~/^(uploaded|editupload)$/) && ($env{'user.name'} eq $name) &&
1.714 raeburn 6352: ($env{'user.domain'} eq $domain) && ('portfolio' eq $dir[0])) {
1.814 raeburn 6353: my %setters;
6354: my ($startblock,$endblock) =
6355: &Apache::loncommon::blockcheck(\%setters,'port');
6356: if ($startblock && $endblock) {
6357: return 'B';
6358: } else {
6359: return 'F';
6360: }
1.545 banghart 6361: }
6362:
1.762 raeburn 6363: # bre access to group portfolio for rgf priv in group, or mdg or vcg in course.
1.714 raeburn 6364: if (($space=~/^(uploaded|editupload)$/) && ($dir[0] eq 'groups')
6365: && ($dir[2] eq 'portfolio') && ($priv eq 'bre')) {
6366: if (exists($env{'request.course.id'})) {
6367: my $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
6368: my $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
6369: if (($domain eq $cdom) && ($name eq $cnum)) {
6370: my $courseprivid=$env{'request.course.id'};
6371: $courseprivid=~s/\_/\//;
6372: if ($env{'user.priv.'.$env{'request.role'}.'./'.$courseprivid
6373: .'/'.$dir[1]} =~/rgf\&([^\:]*)/) {
6374: return $1;
1.762 raeburn 6375: } else {
6376: if ($env{'request.course.sec'}) {
6377: $courseprivid.='/'.$env{'request.course.sec'};
6378: }
6379: if ($env{'user.priv.'.$env{'request.role'}.'./'.
6380: $courseprivid} =~/(mdg|vcg)\&([^\:]*)/) {
6381: return $2;
6382: }
1.714 raeburn 6383: }
6384: }
6385: }
6386: }
6387:
1.159 www 6388: # Free bre to public access
6389:
6390: if ($priv eq 'bre') {
1.238 www 6391: my $copyright=&metadata($uri,'copyright');
1.620 albertel 6392: if (($copyright eq 'public') && (!$env{'request.course.id'})) {
1.301 www 6393: return 'F';
6394: }
1.238 www 6395: if ($copyright eq 'priv') {
6396: $uri=~/([^\/]+)\/([^\/]+)\//;
1.620 albertel 6397: unless (($env{'user.name'} eq $2) && ($env{'user.domain'} eq $1)) {
1.238 www 6398: return '';
6399: }
6400: }
6401: if ($copyright eq 'domain') {
6402: $uri=~/([^\/]+)\/([^\/]+)\//;
1.620 albertel 6403: unless (($env{'user.domain'} eq $1) ||
6404: ($env{'course.'.$env{'request.course.id'}.'.domain'} eq $1)) {
1.238 www 6405: return '';
6406: }
1.262 matthew 6407: }
1.620 albertel 6408: if ($env{'request.role'}=~ /li\.\//) {
1.262 matthew 6409: # Library role, so allow browsing of resources in this domain.
6410: return 'F';
1.238 www 6411: }
1.341 www 6412: if ($copyright eq 'custom') {
6413: unless (&customaccess($priv,$uri)) { return ''; }
6414: }
1.14 www 6415: }
1.264 matthew 6416: # Domain coordinator is trying to create a course
1.620 albertel 6417: if (($priv eq 'ccc') && ($env{'request.role'} =~ /^dc\./)) {
1.264 matthew 6418: # uri is the requested domain in this case.
6419: # comparison to 'request.role.domain' shows if the user has selected
1.678 raeburn 6420: # a role of dc for the domain in question.
1.620 albertel 6421: return 'F' if ($uri eq $env{'request.role.domain'});
1.264 matthew 6422: }
1.29 www 6423:
1.52 www 6424: my $thisallowed='';
6425: my $statecond=0;
6426: my $courseprivid='';
6427:
1.1039 raeburn 6428: my $ownaccess;
1.1043 raeburn 6429: # Community Coordinator or Assistant Co-author browsing resource space.
1.1039 raeburn 6430: if (($priv eq 'bro') && ($env{'user.author'})) {
6431: if ($uri eq '') {
6432: $ownaccess = 1;
6433: } else {
6434: if (($env{'user.domain'} ne '') && ($env{'user.name'} ne '')) {
6435: my $udom = $env{'user.domain'};
6436: my $uname = $env{'user.name'};
6437: if ($uri =~ m{^\Q$udom\E/?$}) {
6438: $ownaccess = 1;
1.1040 raeburn 6439: } elsif ($uri =~ m{^\Q$udom\E/\Q$uname\E/?}) {
1.1039 raeburn 6440: unless ($uri =~ m{\.\./}) {
6441: $ownaccess = 1;
6442: }
6443: } elsif (($udom ne 'public') && ($uname ne 'public')) {
6444: my $now = time;
6445: if ($uri =~ m{^([^/]+)/?$}) {
6446: my $adom = $1;
6447: foreach my $key (keys(%env)) {
1.1042 raeburn 6448: if ($key =~ m{^user\.role\.(ca|aa)/\Q$adom\E}) {
1.1039 raeburn 6449: my ($start,$end) = split('.',$env{$key});
6450: if (($now >= $start) && (!$end || $end < $now)) {
6451: $ownaccess = 1;
6452: last;
6453: }
6454: }
6455: }
6456: } elsif ($uri =~ m{^([^/]+)/([^/]+)/?}) {
6457: my $adom = $1;
6458: my $aname = $2;
1.1042 raeburn 6459: foreach my $role ('ca','aa') {
6460: if ($env{"user.role.$role./$adom/$aname"}) {
6461: my ($start,$end) =
6462: split('.',$env{"user.role.$role./$adom/$aname"});
6463: if (($now >= $start) && (!$end || $end < $now)) {
6464: $ownaccess = 1;
6465: last;
6466: }
1.1039 raeburn 6467: }
6468: }
6469: }
6470: }
6471: }
6472: }
6473: }
6474:
1.52 www 6475: # Course
6476:
1.620 albertel 6477: if ($env{'user.priv.'.$env{'request.role'}.'./'}=~/\Q$priv\E\&([^\:]*)/) {
1.1043 raeburn 6478: unless (($priv eq 'bro') && (!$ownaccess)) {
1.1039 raeburn 6479: $thisallowed.=$1;
6480: }
1.52 www 6481: }
1.29 www 6482:
1.52 www 6483: # Domain
6484:
1.620 albertel 6485: if ($env{'user.priv.'.$env{'request.role'}.'./'.(split(/\//,$uri))[0].'/'}
1.479 albertel 6486: =~/\Q$priv\E\&([^\:]*)/) {
1.1043 raeburn 6487: unless (($priv eq 'bro') && (!$ownaccess)) {
1.1039 raeburn 6488: $thisallowed.=$1;
6489: }
1.12 www 6490: }
1.52 www 6491:
1.1141 raeburn 6492: # User who is not author or co-author might still be able to edit
6493: # resource of an author in the domain (e.g., if Domain Coordinator).
6494: if (($priv eq 'eco') && ($thisallowed eq '') && ($env{'request.course.id'}) &&
6495: (&allowed('mdc',$env{'request.course.id'}))) {
6496: if ($env{"user.priv.cm./$uri/"}=~/\Q$priv\E\&([^\:]*)/) {
6497: $thisallowed.=$1;
6498: }
6499: }
6500:
1.52 www 6501: # Course: uri itself is a course
1.66 www 6502: my $courseuri=$uri;
6503: $courseuri=~s/\_(\d)/\/$1/;
1.83 www 6504: $courseuri=~s/^([^\/])/\/$1/;
1.81 www 6505:
1.620 albertel 6506: if ($env{'user.priv.'.$env{'request.role'}.'.'.$courseuri}
1.479 albertel 6507: =~/\Q$priv\E\&([^\:]*)/) {
1.1043 raeburn 6508: unless (($priv eq 'bro') && (!$ownaccess)) {
1.1039 raeburn 6509: $thisallowed.=$1;
6510: }
1.12 www 6511: }
1.29 www 6512:
1.665 albertel 6513: # URI is an uploaded document for this course, default permissions don't matter
1.611 albertel 6514: # not allowing 'edit' access (editupload) to uploaded course docs
1.492 albertel 6515: if (($priv eq 'bre') && ($uri=~m|^uploaded/|)) {
1.665 albertel 6516: $thisallowed='';
1.671 raeburn 6517: my ($match)=&is_on_map($uri);
6518: if ($match) {
6519: if ($env{'user.priv.'.$env{'request.role'}.'./'}
6520: =~/\Q$priv\E\&([^\:]*)/) {
1.1162 raeburn 6521: my @blockers = &has_comm_blocking($priv,$symb,$uri);
6522: if (@blockers > 0) {
6523: $thisallowed = 'B';
6524: } else {
6525: $thisallowed.=$1;
6526: }
1.671 raeburn 6527: }
6528: } else {
1.705 albertel 6529: my $refuri = $env{'httpref.'.$orguri} || $env{'httpref.'.$ver_orguri};
1.671 raeburn 6530: if ($refuri) {
6531: if ($refuri =~ m|^/adm/|) {
1.669 raeburn 6532: $thisallowed='F';
1.671 raeburn 6533: } else {
6534: $refuri=&declutter($refuri);
6535: my ($match) = &is_on_map($refuri);
6536: if ($match) {
1.1162 raeburn 6537: my @blockers = &has_comm_blocking($priv,$symb,$refuri);
6538: if (@blockers > 0) {
6539: $thisallowed = 'B';
6540: } else {
6541: $thisallowed='F';
6542: }
1.671 raeburn 6543: }
1.669 raeburn 6544: }
1.671 raeburn 6545: }
6546: }
1.314 www 6547: }
1.492 albertel 6548:
1.766 albertel 6549: if ($priv eq 'bre'
6550: && $thisallowed ne 'F'
6551: && $thisallowed ne '2'
6552: && &is_portfolio_url($uri)) {
6553: $thisallowed = &portfolio_access($uri);
6554: }
6555:
1.52 www 6556: # Full access at system, domain or course-wide level? Exit.
1.29 www 6557: if ($thisallowed=~/F/) {
6558: return 'F';
6559: }
6560:
1.52 www 6561: # If this is generating or modifying users, exit with special codes
1.29 www 6562:
1.643 www 6563: if (':csu:cdc:ccc:cin:cta:cep:ccr:cst:cad:cli:cau:cdg:cca:caa:'=~/\:\Q$priv\E\:/) {
6564: if (($priv eq 'cca') || ($priv eq 'caa')) {
1.642 albertel 6565: my ($audom,$auname)=split('/',$uri);
1.643 www 6566: # no author name given, so this just checks on the general right to make a co-author in this domain
6567: unless ($auname) { return $thisallowed; }
6568: # an author name is given, so we are about to actually make a co-author for a certain account
1.642 albertel 6569: if (($auname ne $env{'user.name'} && $env{'request.role'} !~ /^dc\./) ||
6570: (($audom ne $env{'user.domain'} && $env{'request.role'} !~ /^dc\./) &&
6571: ($audom ne $env{'request.role.domain'}))) { return ''; }
6572: }
1.52 www 6573: return $thisallowed;
6574: }
6575: #
1.103 harris41 6576: # Gathered so far: system, domain and course wide privileges
1.52 www 6577: #
6578: # Course: See if uri or referer is an individual resource that is part of
6579: # the course
6580:
1.620 albertel 6581: if ($env{'request.course.id'}) {
1.232 www 6582:
1.620 albertel 6583: $courseprivid=$env{'request.course.id'};
6584: if ($env{'request.course.sec'}) {
6585: $courseprivid.='/'.$env{'request.course.sec'};
1.52 www 6586: }
6587: $courseprivid=~s/\_/\//;
6588: my $checkreferer=1;
1.232 www 6589: my ($match,$cond)=&is_on_map($uri);
6590: if ($match) {
6591: $statecond=$cond;
1.620 albertel 6592: if ($env{'user.priv.'.$env{'request.role'}.'./'.$courseprivid}
1.479 albertel 6593: =~/\Q$priv\E\&([^\:]*)/) {
1.1162 raeburn 6594: my $value = $1;
6595: if ($priv eq 'bre') {
6596: my @blockers = &has_comm_blocking($priv,$symb,$uri);
6597: if (@blockers > 0) {
6598: $thisallowed = 'B';
6599: } else {
6600: $thisallowed.=$value;
6601: }
6602: } else {
6603: $thisallowed.=$value;
6604: }
1.52 www 6605: $checkreferer=0;
6606: }
1.29 www 6607: }
1.83 www 6608:
1.148 www 6609: if ($checkreferer) {
1.620 albertel 6610: my $refuri=$env{'httpref.'.$orguri};
1.148 www 6611: unless ($refuri) {
1.800 albertel 6612: foreach my $key (keys(%env)) {
6613: if ($key=~/^httpref\..*\*/) {
6614: my $pattern=$key;
1.156 www 6615: $pattern=~s/^httpref\.\/res\///;
1.148 www 6616: $pattern=~s/\*/\[\^\/\]\+/g;
6617: $pattern=~s/\//\\\//g;
1.152 www 6618: if ($orguri=~/$pattern/) {
1.800 albertel 6619: $refuri=$env{$key};
1.148 www 6620: }
6621: }
1.191 harris41 6622: }
1.148 www 6623: }
1.232 www 6624:
1.148 www 6625: if ($refuri) {
1.152 www 6626: $refuri=&declutter($refuri);
1.232 www 6627: my ($match,$cond)=&is_on_map($refuri);
6628: if ($match) {
6629: my $refstatecond=$cond;
1.620 albertel 6630: if ($env{'user.priv.'.$env{'request.role'}.'./'.$courseprivid}
1.479 albertel 6631: =~/\Q$priv\E\&([^\:]*)/) {
1.1162 raeburn 6632: my $value = $1;
6633: if ($priv eq 'bre') {
6634: my @blockers = &has_comm_blocking($priv,$symb,$refuri);
6635: if (@blockers > 0) {
6636: $thisallowed = 'B';
6637: } else {
6638: $thisallowed.=$value;
6639: }
6640: } else {
6641: $thisallowed.=$value;
6642: }
1.53 www 6643: $uri=$refuri;
6644: $statecond=$refstatecond;
1.52 www 6645: }
6646: }
1.148 www 6647: }
1.29 www 6648: }
1.52 www 6649: }
1.29 www 6650:
1.52 www 6651: #
1.103 harris41 6652: # Gathered now: all privileges that could apply, and condition number
1.52 www 6653: #
6654: #
6655: # Full or no access?
6656: #
1.29 www 6657:
1.52 www 6658: if ($thisallowed=~/F/) {
6659: return 'F';
6660: }
1.29 www 6661:
1.52 www 6662: unless ($thisallowed) {
6663: return '';
6664: }
1.29 www 6665:
1.52 www 6666: # Restrictions exist, deal with them
6667: #
6668: # C:according to course preferences
6669: # R:according to resource settings
6670: # L:unless locked
6671: # X:according to user session state
6672: #
6673:
6674: # Possibly locked functionality, check all courses
1.54 www 6675: # Locks might take effect only after 10 minutes cache expiration for other
6676: # courses, and 2 minutes for current course
1.52 www 6677:
6678: my $envkey;
6679: if ($thisallowed=~/L/) {
1.1000 raeburn 6680: foreach $envkey (keys(%env)) {
1.54 www 6681: if ($envkey=~/^user\.role\.(st|ta)\.([^\.]*)/) {
6682: my $courseid=$2;
6683: my $roleid=$1.'.'.$2;
1.92 www 6684: $courseid=~s/^\///;
1.54 www 6685: my $expiretime=600;
1.620 albertel 6686: if ($env{'request.role'} eq $roleid) {
1.54 www 6687: $expiretime=120;
6688: }
6689: my ($cdom,$cnum,$csec)=split(/\//,$courseid);
6690: my $prefix='course.'.$cdom.'_'.$cnum.'.';
1.620 albertel 6691: if ((time-$env{$prefix.'last_cache'})>$expiretime) {
1.731 albertel 6692: &coursedescription($courseid,{'freshen_cache' => 1});
1.54 www 6693: }
1.620 albertel 6694: if (($env{$prefix.'res.'.$uri.'.lock.sections'}=~/\,\Q$csec\E\,/)
6695: || ($env{$prefix.'res.'.$uri.'.lock.sections'} eq 'all')) {
6696: if ($env{$prefix.'res.'.$uri.'.lock.expire'}>time) {
6697: &log($env{'user.domain'},$env{'user.name'},
6698: $env{'user.home'},
1.57 www 6699: 'Locked by res: '.$priv.' for '.$uri.' due to '.
1.52 www 6700: $cdom.'/'.$cnum.'/'.$csec.' expire '.
1.620 albertel 6701: $env{$prefix.'priv.'.$priv.'.lock.expire'});
1.52 www 6702: return '';
6703: }
6704: }
1.620 albertel 6705: if (($env{$prefix.'priv.'.$priv.'.lock.sections'}=~/\,\Q$csec\E\,/)
6706: || ($env{$prefix.'priv.'.$priv.'.lock.sections'} eq 'all')) {
6707: if ($env{'priv.'.$priv.'.lock.expire'}>time) {
6708: &log($env{'user.domain'},$env{'user.name'},
6709: $env{'user.home'},
1.57 www 6710: 'Locked by priv: '.$priv.' for '.$uri.' due to '.
1.52 www 6711: $cdom.'/'.$cnum.'/'.$csec.' expire '.
1.620 albertel 6712: $env{$prefix.'priv.'.$priv.'.lock.expire'});
1.52 www 6713: return '';
6714: }
6715: }
6716: }
1.29 www 6717: }
1.52 www 6718: }
6719:
6720: #
6721: # Rest of the restrictions depend on selected course
6722: #
6723:
1.620 albertel 6724: unless ($env{'request.course.id'}) {
1.766 albertel 6725: if ($thisallowed eq 'A') {
6726: return 'A';
1.814 raeburn 6727: } elsif ($thisallowed eq 'B') {
6728: return 'B';
1.766 albertel 6729: } else {
6730: return '1';
6731: }
1.52 www 6732: }
1.29 www 6733:
1.52 www 6734: #
6735: # Now user is definitely in a course
6736: #
1.53 www 6737:
6738:
6739: # Course preferences
6740:
6741: if ($thisallowed=~/C/) {
1.620 albertel 6742: my $rolecode=(split(/\./,$env{'request.role'}))[0];
6743: my $unamedom=$env{'user.name'}.':'.$env{'user.domain'};
6744: if ($env{'course.'.$env{'request.course.id'}.'.'.$priv.'.roles.denied'}
1.479 albertel 6745: =~/\Q$rolecode\E/) {
1.1103 raeburn 6746: if (($priv ne 'pch') && ($priv ne 'plc')) {
1.689 albertel 6747: &logthis($env{'user.domain'}.':'.$env{'user.name'}.':'.$env{'user.home'}.':'.
6748: 'Denied by role: '.$priv.' for '.$uri.' as '.$rolecode.' in '.
6749: $env{'request.course.id'});
6750: }
1.237 www 6751: return '';
6752: }
6753:
1.620 albertel 6754: if ($env{'course.'.$env{'request.course.id'}.'.'.$priv.'.users.denied'}
1.479 albertel 6755: =~/\Q$unamedom\E/) {
1.1103 raeburn 6756: if (($priv ne 'pch') && ($priv ne 'plc')) {
1.689 albertel 6757: &logthis($env{'user.domain'}.':'.$env{'user.name'}.':'.$env{'user.home'}.
6758: 'Denied by user: '.$priv.' for '.$uri.' as '.$unamedom.' in '.
6759: $env{'request.course.id'});
6760: }
1.54 www 6761: return '';
6762: }
1.53 www 6763: }
6764:
6765: # Resource preferences
6766:
6767: if ($thisallowed=~/R/) {
1.620 albertel 6768: my $rolecode=(split(/\./,$env{'request.role'}))[0];
1.479 albertel 6769: if (&metadata($uri,'roledeny')=~/\Q$rolecode\E/) {
1.1103 raeburn 6770: if (($priv ne 'pch') && ($priv ne 'plc')) {
1.689 albertel 6771: &logthis($env{'user.domain'}.':'.$env{'user.name'}.':'.$env{'user.home'}.':'.
6772: 'Denied by role: '.$priv.' for '.$uri.' as '.$rolecode);
6773: }
6774: return '';
1.54 www 6775: }
1.53 www 6776: }
1.30 www 6777:
1.246 www 6778: # Restricted by state or randomout?
1.30 www 6779:
1.52 www 6780: if ($thisallowed=~/X/) {
1.620 albertel 6781: if ($env{'acc.randomout'}) {
1.579 albertel 6782: if (!$symb) { $symb=&symbread($uri,1); }
1.620 albertel 6783: if (($symb) && ($env{'acc.randomout'}=~/\&\Q$symb\E\&/)) {
1.248 www 6784: return '';
6785: }
1.247 www 6786: }
6787: if (&condval($statecond)) {
1.52 www 6788: return '2';
6789: } else {
6790: return '';
6791: }
6792: }
1.30 www 6793:
1.766 albertel 6794: if ($thisallowed eq 'A') {
6795: return 'A';
1.814 raeburn 6796: } elsif ($thisallowed eq 'B') {
6797: return 'B';
1.766 albertel 6798: }
1.52 www 6799: return 'F';
1.232 www 6800: }
1.1162 raeburn 6801:
1.1192 raeburn 6802: # ------------------------------------------- Check construction space access
6803:
6804: sub constructaccess {
6805: my ($url,$setpriv)=@_;
6806:
6807: # We do not allow editing of previous versions of files
6808: if ($url=~/\.(\d+)\.(\w+)$/) { return ''; }
6809:
6810: # Get username and domain from URL
6811: my ($ownername,$ownerdomain,$ownerhome);
6812:
6813: ($ownerdomain,$ownername) =
6814: ($url=~ m{^(?:\Q$perlvar{'lonDocRoot'}\E|)/priv/($match_domain)/($match_username)/});
6815:
6816: # The URL does not really point to any authorspace, forget it
6817: unless (($ownername) && ($ownerdomain)) { return ''; }
6818:
6819: # Now we need to see if the user has access to the authorspace of
6820: # $ownername at $ownerdomain
6821:
6822: if (($ownername eq $env{'user.name'}) && ($ownerdomain eq $env{'user.domain'})) {
6823: # Real author for this?
6824: $ownerhome = $env{'user.home'};
6825: if (exists($env{'user.priv.au./'.$ownerdomain.'/./'})) {
6826: return ($ownername,$ownerdomain,$ownerhome);
6827: }
6828: } else {
6829: # Co-author for this?
6830: if (exists($env{'user.priv.ca./'.$ownerdomain.'/'.$ownername.'./'}) ||
6831: exists($env{'user.priv.aa./'.$ownerdomain.'/'.$ownername.'./'}) ) {
6832: $ownerhome = &homeserver($ownername,$ownerdomain);
6833: return ($ownername,$ownerdomain,$ownerhome);
6834: }
6835: }
6836:
6837: # We don't have any access right now. If we are not possibly going to do anything about this,
6838: # we might as well leave
6839: unless ($setpriv) { return ''; }
6840:
6841: # Backdoor access?
6842: my $allowed=&allowed('eco',$ownerdomain);
6843: # Nope
6844: unless ($allowed) { return ''; }
6845: # Looks like we may have access, but could be locked by the owner of the construction space
6846: if ($allowed eq 'U') {
6847: my %blocked=&get('environment',['domcoord.author'],
6848: $ownerdomain,$ownername);
6849: # Is blocked by owner
6850: if ($blocked{'domcoord.author'} eq 'blocked') { return ''; }
6851: }
6852: if (($allowed eq 'F') || ($allowed eq 'U')) {
6853: # Grant temporary access
6854: my $then=$env{'user.login.time'};
6855: my $update==$env{'user.update.time'};
6856: if (!$update) { $update = $then; }
6857: my $refresh=$env{'user.refresh.time'};
6858: if (!$refresh) { $refresh = $update; }
6859: my $now = time;
6860: &check_adhoc_privs($ownerdomain,$ownername,$update,$refresh,
6861: $now,'ca','constructaccess');
6862: $ownerhome = &homeserver($ownername,$ownerdomain);
6863: return($ownername,$ownerdomain,$ownerhome);
6864: }
6865: # No business here
6866: return '';
6867: }
6868:
1.1162 raeburn 6869: sub get_comm_blocks {
6870: my ($cdom,$cnum) = @_;
6871: if ($cdom eq '' || $cnum eq '') {
6872: return unless ($env{'request.course.id'});
6873: $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
6874: $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
6875: }
6876: my %commblocks;
6877: my $hashid=$cdom.'_'.$cnum;
6878: my ($blocksref,$cached)=&is_cached_new('comm_block',$hashid);
6879: if ((defined($cached)) && (ref($blocksref) eq 'HASH')) {
6880: %commblocks = %{$blocksref};
6881: } else {
6882: %commblocks = &Apache::lonnet::dump('comm_block',$cdom,$cnum);
6883: my $cachetime = 600;
6884: &do_cache_new('comm_block',$hashid,\%commblocks,$cachetime);
6885: }
6886: return %commblocks;
6887: }
6888:
6889: sub has_comm_blocking {
6890: my ($priv,$symb,$uri,$blocks) = @_;
6891: return unless ($env{'request.course.id'});
6892: return unless ($priv eq 'bre');
6893: return if ($env{'user.priv.'.$env{'request.role'}} =~/evb\&([^\:]*)/);
6894: my %commblocks;
6895: if (ref($blocks) eq 'HASH') {
6896: %commblocks = %{$blocks};
6897: } else {
6898: %commblocks = &get_comm_blocks();
6899: }
6900: return unless (keys(%commblocks) > 0);
6901: if (!$symb) { $symb=&symbread($uri,1); }
6902: my ($map,$resid,undef)=&decode_symb($symb);
6903: my %tocheck = (
6904: maps => $map,
6905: resources => $symb,
6906: );
6907: my @blockers;
6908: my $now = time;
1.1163 raeburn 6909: my $navmap = Apache::lonnavmaps::navmap->new();
1.1162 raeburn 6910: foreach my $block (keys(%commblocks)) {
6911: if ($block =~ /^(\d+)____(\d+)$/) {
6912: my ($start,$end) = ($1,$2);
6913: if ($start <= $now && $end >= $now) {
6914: if (ref($commblocks{$block}{'blocks'}) eq 'HASH') {
6915: if (ref($commblocks{$block}{'blocks'}{'docs'}) eq 'HASH') {
6916: if (ref($commblocks{$block}{'blocks'}{'docs'}{'maps'}) eq 'HASH') {
6917: if ($commblocks{$block}{'blocks'}{'docs'}{'maps'}{$map}) {
6918: unless (grep(/^\Q$block\E$/,@blockers)) {
6919: push(@blockers,$block);
6920: }
6921: }
6922: }
6923: if (ref($commblocks{$block}{'blocks'}{'docs'}{'resources'}) eq 'HASH') {
6924: if ($commblocks{$block}{'blocks'}{'docs'}{'resources'}{$symb}) {
6925: unless (grep(/^\Q$block\E$/,@blockers)) {
6926: push(@blockers,$block);
6927: }
6928: }
6929: }
6930: }
6931: }
6932: }
6933: } elsif ($block =~ /^firstaccess____(.+)$/) {
6934: my $item = $1;
1.1163 raeburn 6935: my @to_test;
1.1162 raeburn 6936: if (ref($commblocks{$block}{'blocks'}) eq 'HASH') {
6937: if (ref($commblocks{$block}{'blocks'}{'docs'}) eq 'HASH') {
6938: my $check_interval;
6939: if (&check_docs_block($commblocks{$block}{'blocks'}{'docs'},\%tocheck)) {
6940: my @interval;
6941: my $type = 'map';
6942: if ($item eq 'course') {
6943: $type = 'course';
6944: @interval=&EXT("resource.0.interval");
6945: } else {
6946: if ($item =~ /___\d+___/) {
6947: $type = 'resource';
6948: @interval=&EXT("resource.0.interval",$item);
1.1163 raeburn 6949: if (ref($navmap)) {
6950: my $res = $navmap->getBySymb($item);
6951: push(@to_test,$res);
6952: }
1.1162 raeburn 6953: } else {
6954: my $mapsymb = &symbread($item,1);
6955: if ($mapsymb) {
6956: if (ref($navmap)) {
6957: my $mapres = $navmap->getBySymb($mapsymb);
1.1163 raeburn 6958: @to_test = $mapres->retrieveResources($mapres,undef,0,1);
6959: foreach my $res (@to_test) {
1.1162 raeburn 6960: my $symb = $res->symb();
6961: next if ($symb eq $mapsymb);
6962: if ($symb ne '') {
6963: @interval=&EXT("resource.0.interval",$symb);
6964: last;
6965: }
6966: }
6967: }
6968: }
6969: }
6970: }
6971: if ($interval[0] =~ /\d+/) {
6972: my $first_access;
6973: if ($type eq 'resource') {
6974: $first_access=&get_first_access($interval[1],$item);
6975: } elsif ($type eq 'map') {
6976: $first_access=&get_first_access($interval[1],undef,$item);
6977: } else {
6978: $first_access=&get_first_access($interval[1]);
6979: }
6980: if ($first_access) {
6981: my $timesup = $first_access+$interval[0];
6982: if ($timesup > $now) {
1.1163 raeburn 6983: foreach my $res (@to_test) {
6984: if ($res->is_problem()) {
6985: if ($res->completable()) {
6986: unless (grep(/^\Q$block\E$/,@blockers)) {
6987: push(@blockers,$block);
6988: }
6989: last;
6990: }
6991: }
1.1162 raeburn 6992: }
6993: }
6994: }
6995: }
6996: }
6997: }
6998: }
6999: }
7000: }
7001: return @blockers;
7002: }
7003:
7004: sub check_docs_block {
7005: my ($docsblock,$tocheck) =@_;
7006: if ((ref($docsblock) ne 'HASH') || (ref($tocheck) ne 'HASH')) {
7007: return;
7008: }
7009: if (ref($docsblock->{'maps'}) eq 'HASH') {
7010: if ($tocheck->{'maps'}) {
7011: if ($docsblock->{'maps'}{$tocheck->{'maps'}}) {
7012: return 1;
7013: }
7014: }
7015: }
7016: if (ref($docsblock->{'resources'}) eq 'HASH') {
7017: if ($tocheck->{'resources'}) {
7018: if ($docsblock->{'resources'}{$tocheck->{'resources'}}) {
7019: return 1;
7020: }
7021: }
7022: }
7023: return;
7024: }
7025:
1.1133 foxr 7026: #
7027: # Removes the versino from a URI and
7028: # splits it in to its filename and path to the filename.
7029: # Seems like File::Basename could have done this more clearly.
7030: # Parameters:
7031: # $uri - input URI
7032: # Returns:
7033: # Two element list consisting of
7034: # $pathname - the URI up to and excluding the trailing /
7035: # $filename - The part of the URI following the last /
7036: # NOTE:
7037: # Another realization of this is simply:
7038: # use File::Basename;
7039: # ...
7040: # $uri = shift;
7041: # $filename = basename($uri);
7042: # $path = dirname($uri);
7043: # return ($filename, $path);
7044: #
7045: # The implementation below is probably faster however.
7046: #
1.710 albertel 7047: sub split_uri_for_cond {
7048: my $uri=&deversion(&declutter(shift));
7049: my @uriparts=split(/\//,$uri);
7050: my $filename=pop(@uriparts);
7051: my $pathname=join('/',@uriparts);
7052: return ($pathname,$filename);
7053: }
1.232 www 7054: # --------------------------------------------------- Is a resource on the map?
7055:
7056: sub is_on_map {
1.710 albertel 7057: my ($pathname,$filename) = &split_uri_for_cond(shift);
1.289 bowersj2 7058: #Trying to find the conditional for the file
1.620 albertel 7059: my $match=($env{'acc.res.'.$env{'request.course.id'}.'.'.$pathname}=~
1.289 bowersj2 7060: /\&\Q$filename\E\:([\d\|]+)\&/);
1.232 www 7061: if ($match) {
1.289 bowersj2 7062: return (1,$1);
7063: } else {
1.434 www 7064: return (0,0);
1.289 bowersj2 7065: }
1.12 www 7066: }
7067:
1.427 www 7068: # --------------------------------------------------------- Get symb from alias
7069:
7070: sub get_symb_from_alias {
7071: my $symb=shift;
7072: my ($map,$resid,$url)=&decode_symb($symb);
7073: # Already is a symb
7074: if ($url) { return $symb; }
7075: # Must be an alias
7076: my $aliassymb='';
7077: my %bighash;
1.620 albertel 7078: if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.427 www 7079: &GDBM_READER(),0640)) {
7080: my $rid=$bighash{'mapalias_'.$symb};
7081: if ($rid) {
7082: my ($mapid,$resid)=split(/\./,$rid);
1.429 albertel 7083: $aliassymb=&encode_symb($bighash{'map_id_'.$mapid},
7084: $resid,$bighash{'src_'.$rid});
1.427 www 7085: }
7086: untie %bighash;
7087: }
7088: return $aliassymb;
7089: }
7090:
1.12 www 7091: # ----------------------------------------------------------------- Define Role
7092:
7093: sub definerole {
7094: if (allowed('mcr','/')) {
7095: my ($rolename,$sysrole,$domrole,$courole)=@_;
1.800 albertel 7096: foreach my $role (split(':',$sysrole)) {
7097: my ($crole,$cqual)=split(/\&/,$role);
1.479 albertel 7098: if ($pr{'cr:s'}!~/\Q$crole\E/) { return "refused:s:$crole"; }
7099: if ($pr{'cr:s'}=~/\Q$crole\E\&/) {
7100: if ($pr{'cr:s'}!~/\Q$crole\E\&\w*\Q$cqual\E/) {
1.21 www 7101: return "refused:s:$crole&$cqual";
7102: }
7103: }
1.191 harris41 7104: }
1.800 albertel 7105: foreach my $role (split(':',$domrole)) {
7106: my ($crole,$cqual)=split(/\&/,$role);
1.479 albertel 7107: if ($pr{'cr:d'}!~/\Q$crole\E/) { return "refused:d:$crole"; }
7108: if ($pr{'cr:d'}=~/\Q$crole\E\&/) {
7109: if ($pr{'cr:d'}!~/\Q$crole\W\&\w*\Q$cqual\E/) {
1.21 www 7110: return "refused:d:$crole&$cqual";
7111: }
7112: }
1.191 harris41 7113: }
1.800 albertel 7114: foreach my $role (split(':',$courole)) {
7115: my ($crole,$cqual)=split(/\&/,$role);
1.479 albertel 7116: if ($pr{'cr:c'}!~/\Q$crole\E/) { return "refused:c:$crole"; }
7117: if ($pr{'cr:c'}=~/\Q$crole\E\&/) {
7118: if ($pr{'cr:c'}!~/\Q$crole\E\&\w*\Q$cqual\E/) {
1.21 www 7119: return "refused:c:$crole&$cqual";
7120: }
7121: }
1.191 harris41 7122: }
1.620 albertel 7123: my $command="encrypt:rolesput:$env{'user.domain'}:$env{'user.name'}:".
7124: "$env{'user.domain'}:$env{'user.name'}:".
1.21 www 7125: "rolesdef_$rolename=".
7126: escape($sysrole.'_'.$domrole.'_'.$courole);
1.620 albertel 7127: return reply($command,$env{'user.home'});
1.12 www 7128: } else {
7129: return 'refused';
7130: }
1.105 harris41 7131: }
7132:
7133: # ---------------- Make a metadata query against the network of library servers
7134:
7135: sub metadata_query {
1.244 matthew 7136: my ($query,$custom,$customshow,$server_array)=@_;
1.120 harris41 7137: my %rhash;
1.845 albertel 7138: my %libserv = &all_library();
1.244 matthew 7139: my @server_list = (defined($server_array) ? @$server_array
7140: : keys(%libserv) );
7141: for my $server (@server_list) {
1.118 harris41 7142: unless ($custom or $customshow) {
7143: my $reply=&reply("querysend:".&escape($query),$server);
7144: $rhash{$server}=$reply;
7145: }
7146: else {
7147: my $reply=&reply("querysend:".&escape($query).':'.
7148: &escape($custom).':'.&escape($customshow),
7149: $server);
7150: $rhash{$server}=$reply;
7151: }
1.112 harris41 7152: }
1.118 harris41 7153: return \%rhash;
1.240 www 7154: }
7155:
7156: # ----------------------------------------- Send log queries and wait for reply
7157:
7158: sub log_query {
7159: my ($uname,$udom,$query,%filters)=@_;
7160: my $uhome=&homeserver($uname,$udom);
7161: if ($uhome eq 'no_host') { return 'error: no_host'; }
1.838 albertel 7162: my $uhost=&hostname($uhome);
1.800 albertel 7163: my $command=&escape(join(':',map{$_.'='.$filters{$_}} keys(%filters)));
1.240 www 7164: my $queryid=&reply("querysend:".$query.':'.$udom.':'.$uname.':'.$command,
7165: $uhome);
1.479 albertel 7166: unless ($queryid=~/^\Q$uhost\E\_/) { return 'error: '.$queryid; }
1.242 www 7167: return get_query_reply($queryid);
7168: }
7169:
1.818 raeburn 7170: # -------------------------- Update MySQL table for portfolio file
7171:
7172: sub update_portfolio_table {
1.821 raeburn 7173: my ($uname,$udom,$file_name,$query,$group,$action) = @_;
1.970 raeburn 7174: if ($group ne '') {
7175: $file_name =~s /^\Q$group\E//;
7176: }
1.818 raeburn 7177: my $homeserver = &homeserver($uname,$udom);
7178: my $queryid=
1.821 raeburn 7179: &reply("querysend:".$query.':'.&escape($uname.':'.$udom.':'.$group).
7180: ':'.&escape($file_name).':'.$action,$homeserver);
1.818 raeburn 7181: my $reply = &get_query_reply($queryid);
7182: return $reply;
7183: }
7184:
1.899 raeburn 7185: # -------------------------- Update MySQL allusers table
7186:
7187: sub update_allusers_table {
7188: my ($uname,$udom,$names) = @_;
7189: my $homeserver = &homeserver($uname,$udom);
7190: my $queryid=
7191: &reply('querysend:allusers:'.&escape($uname).':'.&escape($udom).':'.
7192: 'lastname='.&escape($names->{'lastname'}).'%%'.
7193: 'firstname='.&escape($names->{'firstname'}).'%%'.
7194: 'middlename='.&escape($names->{'middlename'}).'%%'.
7195: 'generation='.&escape($names->{'generation'}).'%%'.
7196: 'permanentemail='.&escape($names->{'permanentemail'}).'%%'.
7197: 'id='.&escape($names->{'id'}),$homeserver);
1.1075 raeburn 7198: return;
1.899 raeburn 7199: }
7200:
1.508 raeburn 7201: # ------- Request retrieval of institutional classlists for course(s)
1.506 raeburn 7202:
7203: sub fetch_enrollment_query {
1.511 raeburn 7204: my ($context,$affiliatesref,$replyref,$dom,$cnum) = @_;
1.508 raeburn 7205: my $homeserver;
1.547 raeburn 7206: my $maxtries = 1;
1.508 raeburn 7207: if ($context eq 'automated') {
7208: $homeserver = $perlvar{'lonHostID'};
1.547 raeburn 7209: $maxtries = 10; # will wait for up to 2000s for retrieval of classlist data before timeout
1.508 raeburn 7210: } else {
7211: $homeserver = &homeserver($cnum,$dom);
7212: }
1.838 albertel 7213: my $host=&hostname($homeserver);
1.506 raeburn 7214: my $cmd = '';
1.1000 raeburn 7215: foreach my $affiliate (keys(%{$affiliatesref})) {
1.800 albertel 7216: $cmd .= $affiliate.'='.join(",",@{$$affiliatesref{$affiliate}}).'%%';
1.506 raeburn 7217: }
7218: $cmd =~ s/%%$//;
7219: $cmd = &escape($cmd);
7220: my $query = 'fetchenrollment';
1.620 albertel 7221: my $queryid=&reply("querysend:".$query.':'.$dom.':'.$env{'user.name'}.':'.$cmd,$homeserver);
1.526 raeburn 7222: unless ($queryid=~/^\Q$host\E\_/) {
7223: &logthis('fetch_enrollment_query: invalid queryid: '.$queryid.' for host: '.$host.' and homeserver: '.$homeserver.' context: '.$context.' '.$cnum);
7224: return 'error: '.$queryid;
7225: }
1.506 raeburn 7226: my $reply = &get_query_reply($queryid);
1.547 raeburn 7227: my $tries = 1;
7228: while (($reply=~/^timeout/) && ($tries < $maxtries)) {
7229: $reply = &get_query_reply($queryid);
7230: $tries ++;
7231: }
1.526 raeburn 7232: if ( ($reply =~/^timeout/) || ($reply =~/^error/) ) {
1.620 albertel 7233: &logthis('fetch_enrollment_query error: '.$reply.' for '.$dom.' '.$env{'user.name'}.' for '.$queryid.' context: '.$context.' '.$cnum.' maxtries: '.$maxtries.' tries: '.$tries);
1.526 raeburn 7234: } else {
1.901 albertel 7235: my @responses = split(/:/,$reply);
1.515 raeburn 7236: if ($homeserver eq $perlvar{'lonHostID'}) {
1.800 albertel 7237: foreach my $line (@responses) {
7238: my ($key,$value) = split(/=/,$line,2);
1.515 raeburn 7239: $$replyref{$key} = $value;
7240: }
7241: } else {
1.1117 foxr 7242: my $pathname = LONCAPA::tempdir();
1.800 albertel 7243: foreach my $line (@responses) {
7244: my ($key,$value) = split(/=/,$line);
1.506 raeburn 7245: $$replyref{$key} = $value;
7246: if ($value > 0) {
1.800 albertel 7247: foreach my $item (@{$$affiliatesref{$key}}) {
7248: my $filename = $dom.'_'.$key.'_'.$item.'_classlist.xml';
1.506 raeburn 7249: my $destname = $pathname.'/'.$filename;
7250: my $xml_classlist = &reply("autoretrieve:".$filename,$homeserver);
1.526 raeburn 7251: if ($xml_classlist =~ /^error/) {
7252: &logthis('fetch_enrollment_query - autoretrieve error: '.$xml_classlist.' for '.$filename.' from server: '.$homeserver.' '.$context.' '.$cnum);
7253: } else {
1.506 raeburn 7254: if ( open(FILE,">$destname") ) {
7255: print FILE &unescape($xml_classlist);
7256: close(FILE);
1.526 raeburn 7257: } else {
7258: &logthis('fetch_enrollment_query - error opening classlist file '.$destname.' '.$context.' '.$cnum);
1.506 raeburn 7259: }
7260: }
7261: }
7262: }
7263: }
7264: }
7265: return 'ok';
7266: }
7267: return 'error';
7268: }
7269:
1.242 www 7270: sub get_query_reply {
7271: my $queryid=shift;
1.1117 foxr 7272: my $replyfile=LONCAPA::tempdir().$queryid;
1.240 www 7273: my $reply='';
7274: for (1..100) {
7275: sleep 2;
7276: if (-e $replyfile.'.end') {
1.448 albertel 7277: if (open(my $fh,$replyfile)) {
1.904 albertel 7278: $reply = join('',<$fh>);
7279: close($fh);
1.240 www 7280: } else { return 'error: reply_file_error'; }
1.242 www 7281: return &unescape($reply);
7282: }
1.240 www 7283: }
1.242 www 7284: return 'timeout:'.$queryid;
1.240 www 7285: }
7286:
7287: sub courselog_query {
1.241 www 7288: #
7289: # possible filters:
7290: # url: url or symb
7291: # username
7292: # domain
7293: # action: view, submit, grade
7294: # start: timestamp
7295: # end: timestamp
7296: #
1.240 www 7297: my (%filters)=@_;
1.620 albertel 7298: unless ($env{'request.course.id'}) { return 'no_course'; }
1.241 www 7299: if ($filters{'url'}) {
7300: $filters{'url'}=&symbclean(&declutter($filters{'url'}));
7301: $filters{'url'}=~s/\.(\w+)$/(\\.\\d+)*\\.$1/;
7302: $filters{'url'}=~s/\.(\w+)\_\_\_/(\\.\\d+)*\\.$1/;
7303: }
1.620 albertel 7304: my $cname=$env{'course.'.$env{'request.course.id'}.'.num'};
7305: my $cdom=$env{'course.'.$env{'request.course.id'}.'.domain'};
1.240 www 7306: return &log_query($cname,$cdom,'courselog',%filters);
7307: }
7308:
7309: sub userlog_query {
1.858 raeburn 7310: #
7311: # possible filters:
7312: # action: log check role
7313: # start: timestamp
7314: # end: timestamp
7315: #
1.240 www 7316: my ($uname,$udom,%filters)=@_;
7317: return &log_query($uname,$udom,'userlog',%filters);
1.12 www 7318: }
7319:
1.506 raeburn 7320: #--------- Call auto-enrollment subs in localenroll.pm for homeserver for course
7321:
7322: sub auto_run {
1.508 raeburn 7323: my ($cnum,$cdom) = @_;
1.876 raeburn 7324: my $response = 0;
7325: my $settings;
7326: my %domconfig = &get_dom('configuration',['autoenroll'],$cdom);
7327: if (ref($domconfig{'autoenroll'}) eq 'HASH') {
7328: $settings = $domconfig{'autoenroll'};
7329: if ($settings->{'run'} eq '1') {
7330: $response = 1;
7331: }
7332: } else {
1.934 raeburn 7333: my $homeserver;
7334: if (&is_course($cdom,$cnum)) {
7335: $homeserver = &homeserver($cnum,$cdom);
7336: } else {
7337: $homeserver = &domain($cdom,'primary');
7338: }
7339: if ($homeserver ne 'no_host') {
7340: $response = &reply('autorun:'.$cdom,$homeserver);
7341: }
1.876 raeburn 7342: }
1.506 raeburn 7343: return $response;
7344: }
1.776 albertel 7345:
1.506 raeburn 7346: sub auto_get_sections {
1.508 raeburn 7347: my ($cnum,$cdom,$inst_coursecode) = @_;
1.1007 raeburn 7348: my $homeserver;
7349: if (($cdom =~ /^$match_domain$/) && ($cnum =~ /^$match_courseid$/)) {
7350: $homeserver = &homeserver($cnum,$cdom);
7351: }
7352: if (!defined($homeserver)) {
7353: if ($cdom =~ /^$match_domain$/) {
7354: $homeserver = &domain($cdom,'primary');
7355: }
7356: }
7357: my @secs;
7358: if (defined($homeserver)) {
7359: my $response=&unescape(&reply('autogetsections:'.$inst_coursecode.':'.$cdom,$homeserver));
7360: unless ($response eq 'refused') {
7361: @secs = split(/:/,$response);
7362: }
1.506 raeburn 7363: }
7364: return @secs;
7365: }
1.776 albertel 7366:
1.506 raeburn 7367: sub auto_new_course {
1.1099 raeburn 7368: my ($cnum,$cdom,$inst_course_id,$owner,$coowners) = @_;
1.508 raeburn 7369: my $homeserver = &homeserver($cnum,$cdom);
1.1099 raeburn 7370: my $response=&unescape(&reply('autonewcourse:'.$inst_course_id.':'.&escape($owner).':'.$cdom.':'.&escape($coowners),$homeserver));
1.506 raeburn 7371: return $response;
7372: }
1.776 albertel 7373:
1.506 raeburn 7374: sub auto_validate_courseID {
1.508 raeburn 7375: my ($cnum,$cdom,$inst_course_id) = @_;
7376: my $homeserver = &homeserver($cnum,$cdom);
1.511 raeburn 7377: my $response=&unescape(&reply('autovalidatecourse:'.$inst_course_id.':'.$cdom,$homeserver));
1.506 raeburn 7378: return $response;
7379: }
1.776 albertel 7380:
1.1007 raeburn 7381: sub auto_validate_instcode {
1.1020 raeburn 7382: my ($cnum,$cdom,$instcode,$owner) = @_;
1.1007 raeburn 7383: my ($homeserver,$response);
7384: if (($cdom =~ /^$match_domain$/) && ($cnum =~ /^$match_courseid$/)) {
7385: $homeserver = &homeserver($cnum,$cdom);
7386: }
7387: if (!defined($homeserver)) {
7388: if ($cdom =~ /^$match_domain$/) {
7389: $homeserver = &domain($cdom,'primary');
7390: }
7391: }
1.1065 raeburn 7392: $response=&unescape(&reply('autovalidateinstcode:'.$cdom.':'.
7393: &escape($instcode).':'.&escape($owner),$homeserver));
1.1027 raeburn 7394: my ($outcome,$description) = map { &unescape($_); } split('&',$response,2);
7395: return ($outcome,$description);
1.1007 raeburn 7396: }
7397:
1.506 raeburn 7398: sub auto_create_password {
1.873 raeburn 7399: my ($cnum,$cdom,$authparam,$udom) = @_;
7400: my ($homeserver,$response);
1.506 raeburn 7401: my $create_passwd = 0;
7402: my $authchk = '';
1.873 raeburn 7403: if ($udom =~ /^$match_domain$/) {
7404: $homeserver = &domain($udom,'primary');
7405: }
7406: if ($homeserver eq '') {
7407: if (($cdom =~ /^$match_domain$/) && ($cnum =~ /^$match_courseid$/)) {
7408: $homeserver = &homeserver($cnum,$cdom);
7409: }
7410: }
7411: if ($homeserver eq '') {
7412: $authchk = 'nodomain';
1.506 raeburn 7413: } else {
1.873 raeburn 7414: $response=&unescape(&reply('autocreatepassword:'.$authparam.':'.$cdom,$homeserver));
7415: if ($response eq 'refused') {
7416: $authchk = 'refused';
7417: } else {
1.901 albertel 7418: ($authparam,$create_passwd,$authchk) = split(/:/,$response);
1.873 raeburn 7419: }
1.506 raeburn 7420: }
7421: return ($authparam,$create_passwd,$authchk);
7422: }
7423:
1.706 raeburn 7424: sub auto_photo_permission {
7425: my ($cnum,$cdom,$students) = @_;
7426: my $homeserver = &homeserver($cnum,$cdom);
1.707 albertel 7427: my ($outcome,$perm_reqd,$conditions) =
7428: split(/:/,&unescape(&reply('autophotopermission:'.$cdom,$homeserver)),3);
1.709 albertel 7429: if ($outcome =~ /^(con_lost|unknown_cmd|no_such_host)$/) {
7430: return (undef,undef);
7431: }
1.706 raeburn 7432: return ($outcome,$perm_reqd,$conditions);
7433: }
7434:
7435: sub auto_checkphotos {
7436: my ($uname,$udom,$pid) = @_;
7437: my $homeserver = &homeserver($uname,$udom);
7438: my ($result,$resulttype);
7439: my $outcome = &unescape(&reply('autophotocheck:'.&escape($udom).':'.
1.707 albertel 7440: &escape($uname).':'.&escape($pid),
7441: $homeserver));
1.709 albertel 7442: if ($outcome =~ /^(con_lost|unknown_cmd|no_such_host)$/) {
7443: return (undef,undef);
7444: }
1.706 raeburn 7445: if ($outcome) {
7446: ($result,$resulttype) = split(/:/,$outcome);
7447: }
7448: return ($result,$resulttype);
7449: }
7450:
7451: sub auto_photochoice {
7452: my ($cnum,$cdom) = @_;
7453: my $homeserver = &homeserver($cnum,$cdom);
7454: my ($update,$comment) = split(/:/,&unescape(&reply('autophotochoice:'.
1.707 albertel 7455: &escape($cdom),
7456: $homeserver)));
1.709 albertel 7457: if ($update =~ /^(con_lost|unknown_cmd|no_such_host)$/) {
7458: return (undef,undef);
7459: }
1.706 raeburn 7460: return ($update,$comment);
7461: }
7462:
7463: sub auto_photoupdate {
7464: my ($affiliatesref,$dom,$cnum,$photo) = @_;
7465: my $homeserver = &homeserver($cnum,$dom);
1.838 albertel 7466: my $host=&hostname($homeserver);
1.706 raeburn 7467: my $cmd = '';
7468: my $maxtries = 1;
1.800 albertel 7469: foreach my $affiliate (keys(%{$affiliatesref})) {
7470: $cmd .= $affiliate.'='.join(",",@{$$affiliatesref{$affiliate}}).'%%';
1.706 raeburn 7471: }
7472: $cmd =~ s/%%$//;
7473: $cmd = &escape($cmd);
7474: my $query = 'institutionalphotos';
7475: my $queryid=&reply("querysend:".$query.':'.$dom.':'.$cnum.':'.$cmd,$homeserver);
7476: unless ($queryid=~/^\Q$host\E\_/) {
7477: &logthis('institutionalphotos: invalid queryid: '.$queryid.' for host: '.$host.' and homeserver: '.$homeserver.' and course: '.$cnum);
7478: return 'error: '.$queryid;
7479: }
7480: my $reply = &get_query_reply($queryid);
7481: my $tries = 1;
7482: while (($reply=~/^timeout/) && ($tries < $maxtries)) {
7483: $reply = &get_query_reply($queryid);
7484: $tries ++;
7485: }
7486: if ( ($reply =~/^timeout/) || ($reply =~/^error/) ) {
7487: &logthis('institutionalphotos error: '.$reply.' for '.$dom.' '.$env{'user.name'}.' for '.$queryid.' course: '.$cnum.' maxtries: '.$maxtries.' tries: '.$tries);
7488: } else {
7489: my @responses = split(/:/,$reply);
7490: my $outcome = shift(@responses);
7491: foreach my $item (@responses) {
7492: my ($key,$value) = split(/=/,$item);
7493: $$photo{$key} = $value;
7494: }
7495: return $outcome;
7496: }
7497: return 'error';
7498: }
7499:
1.521 raeburn 7500: sub auto_instcode_format {
1.793 albertel 7501: my ($caller,$codedom,$instcodes,$codes,$codetitles,$cat_titles,
7502: $cat_order) = @_;
1.521 raeburn 7503: my $courses = '';
1.772 raeburn 7504: my @homeservers;
1.521 raeburn 7505: if ($caller eq 'global') {
1.841 albertel 7506: my %servers = &get_servers($codedom,'library');
7507: foreach my $tryserver (keys(%servers)) {
7508: if (!grep(/^\Q$tryserver\E$/,@homeservers)) {
7509: push(@homeservers,$tryserver);
7510: }
1.584 raeburn 7511: }
1.1022 raeburn 7512: } elsif ($caller eq 'requests') {
7513: if ($codedom =~ /^$match_domain$/) {
7514: my $chome = &domain($codedom,'primary');
7515: unless ($chome eq 'no_host') {
7516: push(@homeservers,$chome);
7517: }
7518: }
1.521 raeburn 7519: } else {
1.772 raeburn 7520: push(@homeservers,&homeserver($caller,$codedom));
1.521 raeburn 7521: }
1.793 albertel 7522: foreach my $code (keys(%{$instcodes})) {
7523: $courses .= &escape($code).'='.&escape($$instcodes{$code}).'&';
1.521 raeburn 7524: }
7525: chop($courses);
1.772 raeburn 7526: my $ok_response = 0;
7527: my $response;
7528: while (@homeservers > 0 && $ok_response == 0) {
7529: my $server = shift(@homeservers);
7530: $response=&reply('autoinstcodeformat:'.$codedom.':'.$courses,$server);
7531: if ($response !~ /(con_lost|error|no_such_host|refused)/) {
7532: my ($codes_str,$codetitles_str,$cat_titles_str,$cat_order_str) =
1.901 albertel 7533: split(/:/,$response);
1.772 raeburn 7534: %{$codes} = (%{$codes},&str2hash($codes_str));
7535: push(@{$codetitles},&str2array($codetitles_str));
7536: %{$cat_titles} = (%{$cat_titles},&str2hash($cat_titles_str));
7537: %{$cat_order} = (%{$cat_order},&str2hash($cat_order_str));
7538: $ok_response = 1;
7539: }
7540: }
7541: if ($ok_response) {
1.521 raeburn 7542: return 'ok';
1.772 raeburn 7543: } else {
7544: return $response;
1.521 raeburn 7545: }
7546: }
7547:
1.792 raeburn 7548: sub auto_instcode_defaults {
7549: my ($domain,$returnhash,$code_order) = @_;
7550: my @homeservers;
1.841 albertel 7551:
7552: my %servers = &get_servers($domain,'library');
7553: foreach my $tryserver (keys(%servers)) {
7554: if (!grep(/^\Q$tryserver\E$/,@homeservers)) {
7555: push(@homeservers,$tryserver);
7556: }
1.792 raeburn 7557: }
1.841 albertel 7558:
1.792 raeburn 7559: my $response;
1.841 albertel 7560: foreach my $server (@homeservers) {
1.792 raeburn 7561: $response=&reply('autoinstcodedefaults:'.$domain,$server);
1.841 albertel 7562: next if ($response =~ /(con_lost|error|no_such_host|refused)/);
7563:
7564: foreach my $pair (split(/\&/,$response)) {
7565: my ($name,$value)=split(/\=/,$pair);
7566: if ($name eq 'code_order') {
7567: @{$code_order} = split(/\&/,&unescape($value));
7568: } else {
7569: $returnhash->{&unescape($name)}=&unescape($value);
7570: }
7571: }
7572: return 'ok';
1.792 raeburn 7573: }
1.841 albertel 7574:
7575: return $response;
1.1003 raeburn 7576: }
7577:
7578: sub auto_possible_instcodes {
1.1007 raeburn 7579: my ($domain,$codetitles,$cat_titles,$cat_orders,$code_order) = @_;
7580: unless ((ref($codetitles) eq 'ARRAY') && (ref($cat_titles) eq 'HASH') &&
7581: (ref($cat_orders) eq 'HASH') && (ref($code_order) eq 'ARRAY')) {
7582: return;
7583: }
1.1003 raeburn 7584: my (@homeservers,$uhome);
7585: if (defined(&domain($domain,'primary'))) {
7586: $uhome=&domain($domain,'primary');
7587: push(@homeservers,&domain($domain,'primary'));
7588: } else {
7589: my %servers = &get_servers($domain,'library');
7590: foreach my $tryserver (keys(%servers)) {
7591: if (!grep(/^\Q$tryserver\E$/,@homeservers)) {
7592: push(@homeservers,$tryserver);
7593: }
7594: }
7595: }
7596: my $response;
7597: foreach my $server (@homeservers) {
7598: $response=&reply('autopossibleinstcodes:'.$domain,$server);
7599: next if ($response =~ /(con_lost|error|no_such_host|refused)/);
1.1007 raeburn 7600: my ($codetitlestr,$codeorderstr,$cat_title,$cat_order) =
7601: split(':',$response);
7602: @{$codetitles} = map { &unescape($_); } (split('&',$codetitlestr));
7603: @{$code_order} = map { &unescape($_); } (split('&',$codeorderstr));
1.1003 raeburn 7604: foreach my $item (split('&',$cat_title)) {
1.1005 raeburn 7605: my ($name,$value)=split('=',$item);
7606: $cat_titles->{&unescape($name)}=&thaw_unescape($value);
1.1003 raeburn 7607: }
7608: foreach my $item (split('&',$cat_order)) {
1.1005 raeburn 7609: my ($name,$value)=split('=',$item);
7610: $cat_orders->{&unescape($name)}=&thaw_unescape($value);
1.1003 raeburn 7611: }
7612: return 'ok';
7613: }
7614: return $response;
7615: }
1.792 raeburn 7616:
1.1010 raeburn 7617: sub auto_courserequest_checks {
7618: my ($dom) = @_;
1.1020 raeburn 7619: my ($homeserver,%validations);
7620: if ($dom =~ /^$match_domain$/) {
7621: $homeserver = &domain($dom,'primary');
7622: }
7623: unless ($homeserver eq 'no_host') {
7624: my $response=&reply('autocrsreqchecks:'.$dom,$homeserver);
7625: unless ($response =~ /(con_lost|error|no_such_host|refused)/) {
7626: my @items = split(/&/,$response);
7627: foreach my $item (@items) {
7628: my ($key,$value) = split('=',$item);
7629: $validations{&unescape($key)} = &thaw_unescape($value);
7630: }
7631: }
7632: }
1.1010 raeburn 7633: return %validations;
7634: }
7635:
1.1020 raeburn 7636: sub auto_courserequest_validation {
7637: my ($dom,$owner,$crstype,$inststatuslist,$instcode,$instseclist) = @_;
7638: my ($homeserver,$response);
7639: if ($dom =~ /^$match_domain$/) {
7640: $homeserver = &domain($dom,'primary');
7641: }
7642: unless ($homeserver eq 'no_host') {
1.1021 raeburn 7643:
1.1020 raeburn 7644: $response=&unescape(&reply('autocrsreqvalidation:'.$dom.':'.&escape($owner).
1.1021 raeburn 7645: ':'.&escape($crstype).':'.&escape($inststatuslist).
1.1020 raeburn 7646: ':'.&escape($instcode).':'.&escape($instseclist),
7647: $homeserver));
7648: }
7649: return $response;
7650: }
7651:
1.777 albertel 7652: sub auto_validate_class_sec {
1.918 raeburn 7653: my ($cdom,$cnum,$owners,$inst_class) = @_;
1.773 raeburn 7654: my $homeserver = &homeserver($cnum,$cdom);
1.918 raeburn 7655: my $ownerlist;
7656: if (ref($owners) eq 'ARRAY') {
7657: $ownerlist = join(',',@{$owners});
7658: } else {
7659: $ownerlist = $owners;
7660: }
1.773 raeburn 7661: my $response=&reply('autovalidateclass_sec:'.$inst_class.':'.
1.918 raeburn 7662: &escape($ownerlist).':'.$cdom,$homeserver);
1.773 raeburn 7663: return $response;
7664: }
7665:
1.679 raeburn 7666: # ------------------------------------------------------- Course Group routines
7667:
7668: sub get_coursegroups {
1.809 raeburn 7669: my ($cdom,$cnum,$group,$namespace) = @_;
7670: return(&dump($namespace,$cdom,$cnum,$group));
1.805 raeburn 7671: }
7672:
1.679 raeburn 7673: sub modify_coursegroup {
7674: my ($cdom,$cnum,$groupsettings) = @_;
7675: return(&put('coursegroups',$groupsettings,$cdom,$cnum));
7676: }
7677:
1.809 raeburn 7678: sub toggle_coursegroup_status {
7679: my ($cdom,$cnum,$group,$action) = @_;
7680: my ($from_namespace,$to_namespace);
7681: if ($action eq 'delete') {
7682: $from_namespace = 'coursegroups';
7683: $to_namespace = 'deleted_groups';
7684: } else {
7685: $from_namespace = 'deleted_groups';
7686: $to_namespace = 'coursegroups';
7687: }
7688: my %curr_group = &get_coursegroups($cdom,$cnum,$group,$from_namespace);
1.805 raeburn 7689: if (my $tmp = &error(%curr_group)) {
7690: &Apache::lonnet::logthis('Error retrieving group: '.$tmp.' in '.$cnum.':'.$cdom);
7691: return ('read error',$tmp);
7692: } else {
7693: my %savedsettings = %curr_group;
1.809 raeburn 7694: my $result = &put($to_namespace,\%savedsettings,$cdom,$cnum);
1.805 raeburn 7695: my $deloutcome;
7696: if ($result eq 'ok') {
1.809 raeburn 7697: $deloutcome = &del($from_namespace,[$group],$cdom,$cnum);
1.805 raeburn 7698: } else {
7699: return ('write error',$result);
7700: }
7701: if ($deloutcome eq 'ok') {
7702: return 'ok';
7703: } else {
7704: return ('delete error',$deloutcome);
7705: }
7706: }
7707: }
7708:
1.679 raeburn 7709: sub modify_group_roles {
1.957 raeburn 7710: my ($cdom,$cnum,$group_id,$user,$end,$start,$userprivs,$selfenroll,$context) = @_;
1.679 raeburn 7711: my $url = '/'.$cdom.'/'.$cnum.'/'.$group_id;
7712: my $role = 'gr/'.&escape($userprivs);
7713: my ($uname,$udom) = split(/:/,$user);
1.957 raeburn 7714: my $result = &assignrole($udom,$uname,$url,$role,$end,$start,'',$selfenroll,$context);
1.684 raeburn 7715: if ($result eq 'ok') {
7716: &devalidate_getgroups_cache($udom,$uname,$cdom,$cnum);
7717: }
1.679 raeburn 7718: return $result;
7719: }
7720:
7721: sub modify_coursegroup_membership {
7722: my ($cdom,$cnum,$membership) = @_;
7723: my $result = &put('groupmembership',$membership,$cdom,$cnum);
7724: return $result;
7725: }
7726:
1.682 raeburn 7727: sub get_active_groups {
7728: my ($udom,$uname,$cdom,$cnum) = @_;
7729: my $now = time;
7730: my %groups = ();
7731: foreach my $key (keys(%env)) {
1.811 albertel 7732: if ($key =~ m-user\.role\.gr\./($match_domain)/($match_courseid)/(\w+)$-) {
1.682 raeburn 7733: my ($start,$end) = split(/\./,$env{$key});
7734: if (($end!=0) && ($end<$now)) { next; }
7735: if (($start!=0) && ($start>$now)) { next; }
7736: if ($1 eq $cdom && $2 eq $cnum) {
7737: $groups{$3} = $env{$key} ;
7738: }
7739: }
7740: }
7741: return %groups;
7742: }
7743:
1.683 raeburn 7744: sub get_group_membership {
7745: my ($cdom,$cnum,$group) = @_;
7746: return(&dump('groupmembership',$cdom,$cnum,$group));
7747: }
7748:
7749: sub get_users_groups {
7750: my ($udom,$uname,$courseid) = @_;
1.733 raeburn 7751: my @usersgroups;
1.683 raeburn 7752: my $cachetime=1800;
7753:
7754: my $hashid="$udom:$uname:$courseid";
1.733 raeburn 7755: my ($grouplist,$cached)=&is_cached_new('getgroups',$hashid);
7756: if (defined($cached)) {
1.734 albertel 7757: @usersgroups = split(/:/,$grouplist);
1.733 raeburn 7758: } else {
7759: $grouplist = '';
1.816 raeburn 7760: my $courseurl = &courseid_to_courseurl($courseid);
1.1166 raeburn 7761: my %roleshash = &dump('roles',$udom,$uname,$courseurl);
1.817 raeburn 7762: my $access_end = $env{'course.'.$courseid.
7763: '.default_enrollment_end_date'};
7764: my $now = time;
7765: foreach my $key (keys(%roleshash)) {
7766: if ($key =~ /^\Q$courseurl\E\/(\w+)\_gr$/) {
7767: my $group = $1;
7768: if ($roleshash{$key} =~ /_(\d+)_(\d+)$/) {
7769: my $start = $2;
7770: my $end = $1;
7771: if ($start == -1) { next; } # deleted from group
7772: if (($start!=0) && ($start>$now)) { next; }
7773: if (($end!=0) && ($end<$now)) {
7774: if ($access_end && $access_end < $now) {
7775: if ($access_end - $end < 86400) {
7776: push(@usersgroups,$group);
1.733 raeburn 7777: }
7778: }
1.817 raeburn 7779: next;
1.733 raeburn 7780: }
1.817 raeburn 7781: push(@usersgroups,$group);
1.683 raeburn 7782: }
7783: }
7784: }
1.817 raeburn 7785: @usersgroups = &sort_course_groups($courseid,@usersgroups);
7786: $grouplist = join(':',@usersgroups);
7787: &do_cache_new('getgroups',$hashid,$grouplist,$cachetime);
1.683 raeburn 7788: }
1.733 raeburn 7789: return @usersgroups;
1.683 raeburn 7790: }
7791:
7792: sub devalidate_getgroups_cache {
7793: my ($udom,$uname,$cdom,$cnum)=@_;
7794: my $courseid = $cdom.'_'.$cnum;
1.807 albertel 7795:
1.683 raeburn 7796: my $hashid="$udom:$uname:$courseid";
7797: &devalidate_cache_new('getgroups',$hashid);
7798: }
7799:
1.12 www 7800: # ------------------------------------------------------------------ Plain Text
7801:
7802: sub plaintext {
1.988 raeburn 7803: my ($short,$type,$cid,$forcedefault) = @_;
1.1046 raeburn 7804: if ($short =~ m{^cr/}) {
1.758 albertel 7805: return (split('/',$short))[-1];
7806: }
1.742 raeburn 7807: if (!defined($cid)) {
7808: $cid = $env{'request.course.id'};
7809: }
7810: my %rolenames = (
1.1008 raeburn 7811: Course => 'std',
7812: Community => 'alt1',
1.742 raeburn 7813: );
1.1037 raeburn 7814: if ($cid ne '') {
7815: if ($env{'course.'.$cid.'.'.$short.'.plaintext'} ne '') {
7816: unless ($forcedefault) {
7817: my $roletext = $env{'course.'.$cid.'.'.$short.'.plaintext'};
7818: &Apache::lonlocal::mt_escape(\$roletext);
7819: return &Apache::lonlocal::mt($roletext);
7820: }
7821: }
7822: }
7823: if ((defined($type)) && (defined($rolenames{$type})) &&
7824: (defined($rolenames{$type})) &&
7825: (defined($prp{$short}{$rolenames{$type}}))) {
1.742 raeburn 7826: return &Apache::lonlocal::mt($prp{$short}{$rolenames{$type}});
1.1037 raeburn 7827: } elsif ($cid ne '') {
7828: my $crstype = $env{'course.'.$cid.'.type'};
7829: if (($crstype ne '') && (defined($rolenames{$crstype})) &&
7830: (defined($prp{$short}{$rolenames{$crstype}}))) {
7831: return &Apache::lonlocal::mt($prp{$short}{$rolenames{$crstype}});
7832: }
1.742 raeburn 7833: }
1.1037 raeburn 7834: return &Apache::lonlocal::mt($prp{$short}{'std'});
1.12 www 7835: }
7836:
7837: # ----------------------------------------------------------------- Assign Role
7838:
7839: sub assignrole {
1.957 raeburn 7840: my ($udom,$uname,$url,$role,$end,$start,$deleteflag,$selfenroll,
7841: $context)=@_;
1.21 www 7842: my $mrole;
7843: if ($role =~ /^cr\//) {
1.393 www 7844: my $cwosec=$url;
1.811 albertel 7845: $cwosec=~s/^\/($match_domain)\/($match_courseid)\/.*/$1\/$2/;
1.393 www 7846: unless (&allowed('ccr',$cwosec)) {
1.1026 raeburn 7847: my $refused = 1;
7848: if ($context eq 'requestcourses') {
7849: if (($env{'user.name'} ne '') && ($env{'user.domain'} ne '')) {
7850: if ($role =~ m{^cr/($match_domain)/($match_username)/([^/]+)$}) {
7851: if (($1 eq $env{'user.domain'}) && ($2 eq $env{'user.name'})) {
7852: my ($cdom,$cnum) = ($cwosec =~ m{^/?($match_domain)/($match_courseid)$});
7853: my %crsenv = &userenvironment($cdom,$cnum,('internal.courseowner'));
7854: if ($crsenv{'internal.courseowner'} eq
7855: $env{'user.name'}.':'.$env{'user.domain'}) {
7856: $refused = '';
7857: }
7858: }
7859: }
7860: }
7861: }
7862: if ($refused) {
7863: &logthis('Refused custom assignrole: '.
7864: $udom.' '.$uname.' '.$url.' '.$role.' '.$end.' '.$start.
7865: ' by '.$env{'user.name'}.' at '.$env{'user.domain'});
7866: return 'refused';
7867: }
1.104 www 7868: }
1.21 www 7869: $mrole='cr';
1.678 raeburn 7870: } elsif ($role =~ /^gr\//) {
7871: my $cwogrp=$url;
1.811 albertel 7872: $cwogrp=~s{^/($match_domain)/($match_courseid)/.*}{$1/$2};
1.678 raeburn 7873: unless (&allowed('mdg',$cwogrp)) {
7874: &logthis('Refused group assignrole: '.
7875: $udom.' '.$uname.' '.$url.' '.$role.' '.$end.' '.$start.' by '.
7876: $env{'user.name'}.' at '.$env{'user.domain'});
7877: return 'refused';
7878: }
7879: $mrole='gr';
1.21 www 7880: } else {
1.82 www 7881: my $cwosec=$url;
1.811 albertel 7882: $cwosec=~s/^\/($match_domain)\/($match_courseid)\/.*/$1\/$2/;
1.932 raeburn 7883: if (!(&allowed('c'.$role,$cwosec)) && !(&allowed('c'.$role,$udom))) {
7884: my $refused;
7885: if (($env{'request.course.sec'} ne '') && ($role eq 'st')) {
7886: if (!(&allowed('c'.$role,$url))) {
7887: $refused = 1;
7888: }
7889: } else {
7890: $refused = 1;
7891: }
1.947 raeburn 7892: if ($refused) {
1.1045 raeburn 7893: my ($cdom,$cnum) = ($cwosec =~ m{^/?($match_domain)/($match_courseid)$});
7894: if (!$selfenroll && $context eq 'course') {
7895: my %crsenv;
7896: if ($role eq 'cc' || $role eq 'co') {
7897: %crsenv = &userenvironment($cdom,$cnum,('internal.courseowner'));
7898: if (($role eq 'cc') && ($cnum !~ /^$match_community$/)) {
7899: if ($env{'request.role'} eq 'cc./'.$cdom.'/'.$cnum) {
7900: if ($crsenv{'internal.courseowner'} eq
7901: $env{'user.name'}.':'.$env{'user.domain'}) {
7902: $refused = '';
7903: }
7904: }
7905: } elsif (($role eq 'co') && ($cnum =~ /^$match_community$/)) {
7906: if ($env{'request.role'} eq 'co./'.$cdom.'/'.$cnum) {
7907: if ($crsenv{'internal.courseowner'} eq
7908: $env{'user.name'}.':'.$env{'user.domain'}) {
7909: $refused = '';
7910: }
7911: }
7912: }
7913: }
7914: } elsif (($selfenroll == 1) && ($role eq 'st') && ($udom eq $env{'user.domain'}) && ($uname eq $env{'user.name'})) {
1.947 raeburn 7915: $refused = '';
1.1017 raeburn 7916: } elsif ($context eq 'requestcourses') {
1.1041 raeburn 7917: my @possroles = ('st','ta','ep','in','cc','co');
1.1026 raeburn 7918: if ((grep(/^\Q$role\E$/,@possroles)) && ($env{'user.name'} ne '' && $env{'user.domain'} ne '')) {
1.1041 raeburn 7919: my $wrongcc;
7920: if ($cnum =~ /^$match_community$/) {
7921: $wrongcc = 1 if ($role eq 'cc');
7922: } else {
7923: $wrongcc = 1 if ($role eq 'co');
7924: }
7925: unless ($wrongcc) {
7926: my %crsenv = &userenvironment($cdom,$cnum,('internal.courseowner'));
7927: if ($crsenv{'internal.courseowner'} eq
7928: $env{'user.name'}.':'.$env{'user.domain'}) {
7929: $refused = '';
7930: }
1.1017 raeburn 7931: }
7932: }
1.1183 raeburn 7933: } elsif ($context eq 'requestauthor') {
7934: if (($udom eq $env{'user.domain'}) && ($uname eq $env{'user.name'}) &&
7935: ($url eq '/'.$udom.'/') && ($role eq 'au')) {
7936: if ($env{'environment.requestauthor'} eq 'automatic') {
7937: $refused = '';
7938: } else {
7939: my %domdefaults = &get_domain_defaults($udom);
7940: if (ref($domdefaults{'requestauthor'}) eq 'HASH') {
7941: my $checkbystatus;
7942: if ($env{'user.adv'}) {
7943: my $disposition = $domdefaults{'requestauthor'}{'_LC_adv'};
7944: if ($disposition eq 'automatic') {
7945: $refused = '';
7946: } elsif ($disposition eq '') {
7947: $checkbystatus = 1;
7948: }
7949: } else {
7950: $checkbystatus = 1;
7951: }
7952: if ($checkbystatus) {
7953: if ($env{'environment.inststatus'}) {
7954: my @inststatuses = split(/,/,$env{'environment.inststatus'});
7955: foreach my $type (@inststatuses) {
7956: if (($type ne '') &&
7957: ($domdefaults{'requestauthor'}{$type} eq 'automatic')) {
7958: $refused = '';
7959: }
7960: }
7961: } elsif ($domdefaults{'requestauthor'}{'default'} eq 'automatic') {
7962: $refused = '';
7963: }
7964: }
7965: }
7966: }
7967: }
1.1017 raeburn 7968: }
7969: if ($refused) {
1.947 raeburn 7970: &logthis('Refused assignrole: '.$udom.' '.$uname.' '.$url.
7971: ' '.$role.' '.$end.' '.$start.' by '.
7972: $env{'user.name'}.' at '.$env{'user.domain'});
7973: return 'refused';
7974: }
1.932 raeburn 7975: }
1.1131 raeburn 7976: } elsif ($role eq 'au') {
7977: if ($url ne '/'.$udom.'/') {
7978: &logthis('Attempt by '.$env{'user.name'}.':'.$env{'user.domain'}.
7979: ' to assign author role for '.$uname.':'.$udom.
7980: ' in domain: '.$url.' refused (wrong domain).');
7981: return 'refused';
7982: }
1.104 www 7983: }
1.21 www 7984: $mrole=$role;
7985: }
1.620 albertel 7986: my $command="encrypt:rolesput:$env{'user.domain'}:$env{'user.name'}:".
1.21 www 7987: "$udom:$uname:$url".'_'."$mrole=$role";
1.81 www 7988: if ($end) { $command.='_'.$end; }
1.21 www 7989: if ($start) {
7990: if ($end) {
1.81 www 7991: $command.='_'.$start;
1.21 www 7992: } else {
1.81 www 7993: $command.='_0_'.$start;
1.21 www 7994: }
7995: }
1.739 raeburn 7996: my $origstart = $start;
7997: my $origend = $end;
1.957 raeburn 7998: my $delflag;
1.357 www 7999: # actually delete
8000: if ($deleteflag) {
1.373 www 8001: if ((&allowed('dro',$udom)) || (&allowed('dro',$url))) {
1.357 www 8002: # modify command to delete the role
1.620 albertel 8003: $command="encrypt:rolesdel:$env{'user.domain'}:$env{'user.name'}:".
1.357 www 8004: "$udom:$uname:$url".'_'."$mrole";
1.620 albertel 8005: &logthis("$env{'user.name'} at $env{'user.domain'} deletes $mrole in $url for $uname at $udom");
1.357 www 8006: # set start and finish to negative values for userrolelog
8007: $start=-1;
8008: $end=-1;
1.957 raeburn 8009: $delflag = 1;
1.357 www 8010: }
8011: }
8012: # send command
1.349 www 8013: my $answer=&reply($command,&homeserver($uname,$udom));
1.357 www 8014: # log new user role if status is ok
1.349 www 8015: if ($answer eq 'ok') {
1.663 raeburn 8016: &userrolelog($role,$uname,$udom,$url,$start,$end);
1.739 raeburn 8017: # for course roles, perform group memberships changes triggered by role change.
8018: unless ($role =~ /^gr/) {
8019: &Apache::longroup::group_changes($udom,$uname,$url,$role,$origend,
1.957 raeburn 8020: $origstart,$selfenroll,$context);
1.739 raeburn 8021: }
1.1184 raeburn 8022: if (($role eq 'cc') || ($role eq 'in') ||
8023: ($role eq 'ep') || ($role eq 'ad') ||
8024: ($role eq 'ta') || ($role eq 'st') ||
8025: ($role=~/^cr/) || ($role eq 'gr') ||
8026: ($role eq 'co')) {
8027: &courserolelog($role,$uname,$udom,$url,$origstart,$origend,$delflag,
8028: $selfenroll,$context);
8029: } elsif (($role eq 'li') || ($role eq 'dg') || ($role eq 'sc') ||
8030: ($role eq 'au') || ($role eq 'dc')) {
8031: &domainrolelog($role,$uname,$udom,$url,$origstart,$origend,$delflag,
8032: $context);
8033: } elsif (($role eq 'ca') || ($role eq 'aa')) {
8034: &coauthorrolelog($role,$uname,$udom,$url,$origstart,$origend,$delflag,
8035: $context);
8036: }
1.1053 raeburn 8037: if ($role eq 'cc') {
8038: &autoupdate_coowners($url,$end,$start,$uname,$udom);
8039: }
1.349 www 8040: }
8041: return $answer;
1.169 harris41 8042: }
8043:
1.1053 raeburn 8044: sub autoupdate_coowners {
8045: my ($url,$end,$start,$uname,$udom) = @_;
8046: my ($cdom,$cnum) = ($url =~ m{^/($match_domain)/($match_courseid)});
8047: if (($cdom ne '') && ($cnum ne '')) {
8048: my $now = time;
8049: my %domdesign = &Apache::loncommon::get_domainconf($cdom);
8050: if ($domdesign{$cdom.'.autoassign.co-owners'}) {
8051: my %coursehash = &coursedescription($cdom.'_'.$cnum);
8052: my $instcode = $coursehash{'internal.coursecode'};
8053: if ($instcode ne '') {
1.1056 raeburn 8054: if (($start && $start <= $now) && ($end == 0) || ($end > $now)) {
8055: unless ($coursehash{'internal.courseowner'} eq $uname.':'.$udom) {
1.1053 raeburn 8056: my ($delcoowners,@newcoowners,$putresult,$delresult,$coowners);
1.1056 raeburn 8057: my ($result,$desc) = &auto_validate_instcode($cnum,$cdom,$instcode,$uname.':'.$udom);
8058: if ($result eq 'valid') {
8059: if ($coursehash{'internal.co-owners'}) {
1.1053 raeburn 8060: foreach my $coowner (split(',',$coursehash{'internal.co-owners'})) {
8061: push(@newcoowners,$coowner);
8062: }
8063: unless (grep(/^\Q$uname\E:\Q$udom\E$/,@newcoowners)) {
8064: push(@newcoowners,$uname.':'.$udom);
8065: }
8066: @newcoowners = sort(@newcoowners);
8067: } else {
8068: push(@newcoowners,$uname.':'.$udom);
8069: }
8070: } else {
8071: if ($coursehash{'internal.co-owners'}) {
8072: foreach my $coowner (split(',',$coursehash{'internal.co-owners'})) {
8073: unless ($coowner eq $uname.':'.$udom) {
8074: push(@newcoowners,$coowner);
8075: }
8076: }
8077: unless (@newcoowners > 0) {
8078: $delcoowners = 1;
8079: $coowners = '';
8080: }
8081: }
8082: }
8083: if (@newcoowners || $delcoowners) {
8084: &store_coowners($cdom,$cnum,$coursehash{'home'},
8085: $delcoowners,@newcoowners);
8086: }
8087: }
8088: }
8089: }
8090: }
8091: }
8092: }
8093:
8094: sub store_coowners {
8095: my ($cdom,$cnum,$chome,$delcoowners,@newcoowners) = @_;
8096: my $cid = $cdom.'_'.$cnum;
8097: my ($coowners,$delresult,$putresult);
8098: if (@newcoowners) {
8099: $coowners = join(',',@newcoowners);
8100: my %coownershash = (
8101: 'internal.co-owners' => $coowners,
8102: );
8103: $putresult = &put('environment',\%coownershash,$cdom,$cnum);
8104: if ($putresult eq 'ok') {
8105: if ($env{'course.'.$cid.'.num'} eq $cnum) {
8106: &appenv({'course.'.$cid.'.internal.co-owners' => $coowners});
8107: }
8108: }
8109: }
8110: if ($delcoowners) {
8111: $delresult = &Apache::lonnet::del('environment',['internal.co-owners'],$cdom,$cnum);
8112: if ($delresult eq 'ok') {
8113: if ($env{'course.'.$cid.'.internal.co-owners'}) {
8114: &Apache::lonnet::delenv('course.'.$cid.'.internal.co-owners');
8115: }
8116: }
8117: }
8118: if (($putresult eq 'ok') || ($delresult eq 'ok')) {
8119: my %crsinfo =
8120: &Apache::lonnet::courseiddump($cdom,'.',1,'.','.',$cnum,undef,undef,'.');
8121: if (ref($crsinfo{$cid}) eq 'HASH') {
8122: $crsinfo{$cid}{'co-owners'} = \@newcoowners;
8123: my $cidput = &Apache::lonnet::courseidput($cdom,\%crsinfo,$chome,'notime');
8124: }
8125: }
8126: }
8127:
1.169 harris41 8128: # -------------------------------------------------- Modify user authentication
1.197 www 8129: # Overrides without validation
8130:
1.169 harris41 8131: sub modifyuserauth {
8132: my ($udom,$uname,$umode,$upass)=@_;
8133: my $uhome=&homeserver($uname,$udom);
1.197 www 8134: unless (&allowed('mau',$udom)) { return 'refused'; }
8135: &logthis('Call to modify user authentication '.$udom.', '.$uname.', '.
1.620 albertel 8136: $umode.' by '.$env{'user.name'}.' at '.$env{'user.domain'}.
8137: ' in domain '.$env{'request.role.domain'});
1.169 harris41 8138: my $reply=&reply('encrypt:changeuserauth:'.$udom.':'.$uname.':'.$umode.':'.
8139: &escape($upass),$uhome);
1.620 albertel 8140: &log($env{'user.domain'},$env{'user.name'},$env{'user.home'},
1.197 www 8141: 'Authentication changed for '.$udom.', '.$uname.', '.$umode.
8142: '(Remote '.$ENV{'REMOTE_ADDR'}.'): '.$reply);
8143: &log($udom,,$uname,$uhome,
1.620 albertel 8144: 'Authentication changed by '.$env{'user.domain'}.', '.
8145: $env{'user.name'}.', '.$umode.
1.197 www 8146: '(Remote '.$ENV{'REMOTE_ADDR'}.'): '.$reply);
1.169 harris41 8147: unless ($reply eq 'ok') {
1.197 www 8148: &logthis('Authentication mode error: '.$reply);
1.169 harris41 8149: return 'error: '.$reply;
8150: }
1.170 harris41 8151: return 'ok';
1.80 www 8152: }
8153:
1.81 www 8154: # --------------------------------------------------------------- Modify a user
1.80 www 8155:
1.81 www 8156: sub modifyuser {
1.206 matthew 8157: my ($udom, $uname, $uid,
8158: $umode, $upass, $first,
8159: $middle, $last, $gene,
1.1058 raeburn 8160: $forceid, $desiredhome, $email, $inststatus, $candelete)=@_;
1.807 albertel 8161: $udom= &LONCAPA::clean_domain($udom);
8162: $uname=&LONCAPA::clean_username($uname);
1.1059 raeburn 8163: my $showcandelete = 'none';
8164: if (ref($candelete) eq 'ARRAY') {
8165: if (@{$candelete} > 0) {
8166: $showcandelete = join(', ',@{$candelete});
8167: }
8168: }
1.81 www 8169: &logthis('Call to modify user '.$udom.', '.$uname.', '.$uid.', '.
1.80 www 8170: $umode.', '.$first.', '.$middle.', '.
1.1059 raeburn 8171: $last.', '.$gene.'(forceid: '.$forceid.'; candelete: '.$showcandelete.')'.
1.206 matthew 8172: (defined($desiredhome) ? ' desiredhome = '.$desiredhome :
8173: ' desiredhome not specified').
1.620 albertel 8174: ' by '.$env{'user.name'}.' at '.$env{'user.domain'}.
8175: ' in domain '.$env{'request.role.domain'});
1.230 stredwic 8176: my $uhome=&homeserver($uname,$udom,'true');
1.1075 raeburn 8177: my $newuser;
8178: if ($uhome eq 'no_host') {
8179: $newuser = 1;
8180: }
1.80 www 8181: # ----------------------------------------------------------------- Create User
1.406 albertel 8182: if (($uhome eq 'no_host') &&
8183: (($umode && $upass) || ($umode eq 'localauth'))) {
1.80 www 8184: my $unhome='';
1.844 albertel 8185: if (defined($desiredhome) && &host_domain($desiredhome) eq $udom) {
1.209 matthew 8186: $unhome = $desiredhome;
1.620 albertel 8187: } elsif($env{'course.'.$env{'request.course.id'}.'.domain'} eq $udom) {
8188: $unhome=$env{'course.'.$env{'request.course.id'}.'.home'};
1.209 matthew 8189: } else { # load balancing routine for determining $unhome
1.81 www 8190: my $loadm=10000000;
1.841 albertel 8191: my %servers = &get_servers($udom,'library');
8192: foreach my $tryserver (keys(%servers)) {
8193: my $answer=reply('load',$tryserver);
8194: if (($answer=~/\d+/) && ($answer<$loadm)) {
8195: $loadm=$answer;
8196: $unhome=$tryserver;
8197: }
1.80 www 8198: }
8199: }
8200: if (($unhome eq '') || ($unhome eq 'no_host')) {
1.206 matthew 8201: return 'error: unable to find a home server for '.$uname.
8202: ' in domain '.$udom;
1.80 www 8203: }
8204: my $reply=&reply('encrypt:makeuser:'.$udom.':'.$uname.':'.$umode.':'.
8205: &escape($upass),$unhome);
8206: unless ($reply eq 'ok') {
8207: return 'error: '.$reply;
8208: }
1.230 stredwic 8209: $uhome=&homeserver($uname,$udom,'true');
1.80 www 8210: if (($uhome eq '') || ($uhome eq 'no_host') || ($uhome ne $unhome)) {
1.386 matthew 8211: return 'error: unable verify users home machine.';
1.80 www 8212: }
1.209 matthew 8213: } # End of creation of new user
1.80 www 8214: # ---------------------------------------------------------------------- Add ID
8215: if ($uid) {
8216: $uid=~tr/A-Z/a-z/;
8217: my %uidhash=&idrget($udom,$uname);
1.196 www 8218: if (($uidhash{$uname}) && ($uidhash{$uname}!~/error\:/)
8219: && (!$forceid)) {
1.80 www 8220: unless ($uid eq $uidhash{$uname}) {
1.386 matthew 8221: return 'error: user id "'.$uid.'" does not match '.
8222: 'current user id "'.$uidhash{$uname}.'".';
1.80 www 8223: }
8224: } else {
8225: &idput($udom,($uname => $uid));
8226: }
8227: }
8228: # -------------------------------------------------------------- Add names, etc
1.313 matthew 8229: my @tmp=&get('environment',
1.899 raeburn 8230: ['firstname','middlename','lastname','generation','id',
1.963 raeburn 8231: 'permanentemail','inststatus'],
1.134 albertel 8232: $udom,$uname);
1.1075 raeburn 8233: my (%names,%oldnames);
1.313 matthew 8234: if ($tmp[0] =~ m/^error:.*/) {
8235: %names=();
8236: } else {
8237: %names = @tmp;
1.1075 raeburn 8238: %oldnames = %names;
1.313 matthew 8239: }
1.388 www 8240: #
1.1058 raeburn 8241: # If name, email and/or uid are blank (e.g., because an uploaded file
8242: # of users did not contain them), do not overwrite existing values
8243: # unless field is in $candelete array ref.
8244: #
8245:
8246: my @fields = ('firstname','middlename','lastname','generation',
8247: 'permanentemail','id');
8248: my %newvalues;
8249: if (ref($candelete) eq 'ARRAY') {
8250: foreach my $field (@fields) {
8251: if (grep(/^\Q$field\E$/,@{$candelete})) {
8252: if ($field eq 'firstname') {
8253: $names{$field} = $first;
8254: } elsif ($field eq 'middlename') {
8255: $names{$field} = $middle;
8256: } elsif ($field eq 'lastname') {
8257: $names{$field} = $last;
8258: } elsif ($field eq 'generation') {
8259: $names{$field} = $gene;
8260: } elsif ($field eq 'permanentemail') {
8261: $names{$field} = $email;
8262: } elsif ($field eq 'id') {
8263: $names{$field} = $uid;
8264: }
8265: }
8266: }
8267: }
1.388 www 8268: if ($first) { $names{'firstname'} = $first; }
1.385 matthew 8269: if (defined($middle)) { $names{'middlename'} = $middle; }
1.388 www 8270: if ($last) { $names{'lastname'} = $last; }
1.385 matthew 8271: if (defined($gene)) { $names{'generation'} = $gene; }
1.592 www 8272: if ($email) {
8273: $email=~s/[^\w\@\.\-\,]//gs;
1.963 raeburn 8274: if ($email=~/\@/) { $names{'permanentemail'} = $email; }
1.592 www 8275: }
1.899 raeburn 8276: if ($uid) { $names{'id'} = $uid; }
1.989 raeburn 8277: if (defined($inststatus)) {
8278: $names{'inststatus'} = '';
8279: my ($usertypes,$typesorder) = &retrieve_inst_usertypes($udom);
8280: if (ref($usertypes) eq 'HASH') {
8281: my @okstatuses;
8282: foreach my $item (split(/:/,$inststatus)) {
8283: if (defined($usertypes->{$item})) {
8284: push(@okstatuses,$item);
8285: }
8286: }
8287: if (@okstatuses) {
8288: $names{'inststatus'} = join(':', map { &escape($_); } @okstatuses);
8289: }
8290: }
8291: }
1.1075 raeburn 8292: my $logmsg = $udom.', '.$uname.', '.$uid.', '.
1.963 raeburn 8293: $umode.', '.$first.', '.$middle.', '.
1.1075 raeburn 8294: $last.', '.$gene.', '.$email.', '.$inststatus;
1.963 raeburn 8295: if ($env{'user.name'} ne '' && $env{'user.domain'}) {
8296: $logmsg .= ' by '.$env{'user.name'}.' at '.$env{'user.domain'};
8297: } else {
8298: $logmsg .= ' during self creation';
8299: }
1.1075 raeburn 8300: my $changed;
8301: if ($newuser) {
8302: $changed = 1;
8303: } else {
8304: foreach my $field (@fields) {
8305: if ($names{$field} ne $oldnames{$field}) {
8306: $changed = 1;
8307: last;
8308: }
8309: }
8310: }
8311: unless ($changed) {
8312: $logmsg = 'No changes in user information needed for: '.$logmsg;
8313: &logthis($logmsg);
8314: return 'ok';
8315: }
8316: my $reply = &put('environment', \%names, $udom,$uname);
8317: if ($reply ne 'ok') {
8318: return 'error: '.$reply;
8319: }
1.1087 raeburn 8320: if ($names{'permanentemail'} ne $oldnames{'permanentemail'}) {
8321: &Apache::lonnet::devalidate_cache_new('emailscache',$uname.':'.$udom);
8322: }
1.1075 raeburn 8323: my $sqlresult = &update_allusers_table($uname,$udom,\%names);
8324: &devalidate_cache_new('namescache',$uname.':'.$udom);
8325: $logmsg = 'Success modifying user '.$logmsg;
1.963 raeburn 8326: &logthis($logmsg);
1.134 albertel 8327: return 'ok';
1.80 www 8328: }
8329:
1.81 www 8330: # -------------------------------------------------------------- Modify student
1.80 www 8331:
1.81 www 8332: sub modifystudent {
8333: my ($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene,$usec,
1.957 raeburn 8334: $end,$start,$forceid,$desiredhome,$email,$type,$locktype,$cid,
1.990 raeburn 8335: $selfenroll,$context,$inststatus)=@_;
1.455 albertel 8336: if (!$cid) {
1.620 albertel 8337: unless ($cid=$env{'request.course.id'}) {
1.455 albertel 8338: return 'not_in_class';
8339: }
1.80 www 8340: }
8341: # --------------------------------------------------------------- Make the user
1.81 www 8342: my $reply=&modifyuser
1.209 matthew 8343: ($udom,$uname,$uid,$umode,$upass,$first,$middle,$last,$gene,$forceid,
1.990 raeburn 8344: $desiredhome,$email,$inststatus);
1.80 www 8345: unless ($reply eq 'ok') { return $reply; }
1.297 matthew 8346: # This will cause &modify_student_enrollment to get the uid from the
8347: # students environment
8348: $uid = undef if (!$forceid);
1.455 albertel 8349: $reply = &modify_student_enrollment($udom,$uname,$uid,$first,$middle,$last,
1.957 raeburn 8350: $gene,$usec,$end,$start,$type,$locktype,$cid,$selfenroll,$context);
1.297 matthew 8351: return $reply;
8352: }
8353:
8354: sub modify_student_enrollment {
1.957 raeburn 8355: my ($udom,$uname,$uid,$first,$middle,$last,$gene,$usec,$end,$start,$type,$locktype,$cid,$selfenroll,$context) = @_;
1.455 albertel 8356: my ($cdom,$cnum,$chome);
8357: if (!$cid) {
1.620 albertel 8358: unless ($cid=$env{'request.course.id'}) {
1.455 albertel 8359: return 'not_in_class';
8360: }
1.620 albertel 8361: $cdom=$env{'course.'.$cid.'.domain'};
8362: $cnum=$env{'course.'.$cid.'.num'};
1.455 albertel 8363: } else {
8364: ($cdom,$cnum)=split(/_/,$cid);
8365: }
1.620 albertel 8366: $chome=$env{'course.'.$cid.'.home'};
1.455 albertel 8367: if (!$chome) {
1.457 raeburn 8368: $chome=&homeserver($cnum,$cdom);
1.297 matthew 8369: }
1.455 albertel 8370: if (!$chome) { return 'unknown_course'; }
1.297 matthew 8371: # Make sure the user exists
1.81 www 8372: my $uhome=&homeserver($uname,$udom);
8373: if (($uhome eq '') || ($uhome eq 'no_host')) {
8374: return 'error: no such user';
8375: }
1.297 matthew 8376: # Get student data if we were not given enough information
8377: if (!defined($first) || $first eq '' ||
8378: !defined($last) || $last eq '' ||
8379: !defined($uid) || $uid eq '' ||
8380: !defined($middle) || $middle eq '' ||
8381: !defined($gene) || $gene eq '') {
1.294 matthew 8382: # They did not supply us with enough data to enroll the student, so
8383: # we need to pick up more information.
1.297 matthew 8384: my %tmp = &get('environment',
1.294 matthew 8385: ['firstname','middlename','lastname', 'generation','id']
1.297 matthew 8386: ,$udom,$uname);
8387:
1.800 albertel 8388: #foreach my $key (keys(%tmp)) {
8389: # &logthis("key $key = ".$tmp{$key});
1.455 albertel 8390: #}
1.294 matthew 8391: $first = $tmp{'firstname'} if (!defined($first) || $first eq '');
8392: $middle = $tmp{'middlename'} if (!defined($middle) || $middle eq '');
8393: $last = $tmp{'lastname'} if (!defined($last) || $last eq '');
1.297 matthew 8394: $gene = $tmp{'generation'} if (!defined($gene) || $gene eq '');
1.294 matthew 8395: $uid = $tmp{'id'} if (!defined($uid) || $uid eq '');
8396: }
1.556 albertel 8397: my $fullname = &format_name($first,$middle,$last,$gene,'lastname');
1.1148 raeburn 8398: my $user = "$uname:$udom";
8399: my %old_entry = &Apache::lonnet::get('classlist',[$user],$cdom,$cnum);
1.487 albertel 8400: my $reply=cput('classlist',
1.1148 raeburn 8401: {$user =>
1.515 raeburn 8402: join(':',$end,$start,$uid,$usec,$fullname,$type,$locktype) },
1.487 albertel 8403: $cdom,$cnum);
1.1148 raeburn 8404: if (($reply eq 'ok') || ($reply eq 'delayed')) {
8405: &devalidate_getsection_cache($udom,$uname,$cid);
8406: } else {
1.81 www 8407: return 'error: '.$reply;
8408: }
1.297 matthew 8409: # Add student role to user
1.83 www 8410: my $uurl='/'.$cid;
1.81 www 8411: $uurl=~s/\_/\//g;
8412: if ($usec) {
8413: $uurl.='/'.$usec;
8414: }
1.1148 raeburn 8415: my $result = &assignrole($udom,$uname,$uurl,'st',$end,$start,undef,
8416: $selfenroll,$context);
8417: if ($result ne 'ok') {
8418: if ($old_entry{$user} ne '') {
8419: $reply = &cput('classlist',\%old_entry,$cdom,$cnum);
8420: } else {
8421: $reply = &del('classlist',[$user],$cdom,$cnum);
8422: }
8423: }
8424: return $result;
1.21 www 8425: }
8426:
1.556 albertel 8427: sub format_name {
8428: my ($firstname,$middlename,$lastname,$generation,$first)=@_;
8429: my $name;
8430: if ($first ne 'lastname') {
8431: $name=$firstname.' '.$middlename.' '.$lastname.' '.$generation;
8432: } else {
8433: if ($lastname=~/\S/) {
8434: $name.= $lastname.' '.$generation.', '.$firstname.' '.$middlename;
8435: $name=~s/\s+,/,/;
8436: } else {
8437: $name.= $firstname.' '.$middlename.' '.$generation;
8438: }
8439: }
8440: $name=~s/^\s+//;
8441: $name=~s/\s+$//;
8442: $name=~s/\s+/ /g;
8443: return $name;
8444: }
8445:
1.84 www 8446: # ------------------------------------------------- Write to course preferences
8447:
8448: sub writecoursepref {
8449: my ($courseid,%prefs)=@_;
8450: $courseid=~s/^\///;
8451: $courseid=~s/\_/\//g;
8452: my ($cdomain,$cnum)=split(/\//,$courseid);
8453: my $chome=homeserver($cnum,$cdomain);
8454: if (($chome eq '') || ($chome eq 'no_host')) {
8455: return 'error: no such course';
8456: }
8457: my $cstring='';
1.800 albertel 8458: foreach my $pref (keys(%prefs)) {
8459: $cstring.=&escape($pref).'='.&escape($prefs{$pref}).'&';
1.191 harris41 8460: }
1.84 www 8461: $cstring=~s/\&$//;
8462: return reply('put:'.$cdomain.':'.$cnum.':environment:'.$cstring,$chome);
8463: }
8464:
8465: # ---------------------------------------------------------- Make/modify course
8466:
8467: sub createcourse {
1.741 raeburn 8468: my ($udom,$description,$url,$course_server,$nonstandard,$inst_code,
1.1017 raeburn 8469: $course_owner,$crstype,$cnum,$context,$category)=@_;
1.84 www 8470: $url=&declutter($url);
8471: my $cid='';
1.1028 raeburn 8472: if ($context eq 'requestcourses') {
8473: my $can_create = 0;
8474: my ($ownername,$ownerdom) = split(':',$course_owner);
8475: if ($udom eq $ownerdom) {
8476: if (&usertools_access($ownername,$ownerdom,$category,undef,
8477: $context)) {
8478: $can_create = 1;
8479: }
8480: } else {
8481: my %userenv = &userenvironment($ownerdom,$ownername,'reqcrsotherdom.'.
8482: $category);
8483: if ($userenv{'reqcrsotherdom.'.$category} ne '') {
8484: my @curr = split(',',$userenv{'reqcrsotherdom.'.$category});
8485: if (@curr > 0) {
8486: my @options = qw(approval validate autolimit);
8487: my $optregex = join('|',@options);
8488: if (grep(/^\Q$udom\E:($optregex)(=?\d*)$/,@curr)) {
8489: $can_create = 1;
8490: }
8491: }
8492: }
8493: }
8494: if ($can_create) {
8495: unless ($ownername eq $env{'user.name'} && $ownerdom eq $env{'user.domain'}) {
8496: unless (&allowed('ccc',$udom)) {
8497: return 'refused';
8498: }
1.1017 raeburn 8499: }
8500: } else {
8501: return 'refused';
8502: }
1.1028 raeburn 8503: } elsif (!&allowed('ccc',$udom)) {
8504: return 'refused';
1.84 www 8505: }
1.1011 raeburn 8506: # --------------------------------------------------------------- Get Unique ID
8507: my $uname;
8508: if ($cnum =~ /^$match_courseid$/) {
8509: my $chome=&homeserver($cnum,$udom,'true');
8510: if (($chome eq '') || ($chome eq 'no_host')) {
8511: $uname = $cnum;
8512: } else {
1.1038 raeburn 8513: $uname = &generate_coursenum($udom,$crstype);
1.1011 raeburn 8514: }
8515: } else {
1.1038 raeburn 8516: $uname = &generate_coursenum($udom,$crstype);
1.1011 raeburn 8517: }
8518: return $uname if ($uname =~ /^error/);
8519: # -------------------------------------------------- Check supplied server name
1.1052 raeburn 8520: if (!defined($course_server)) {
8521: if (defined(&domain($udom,'primary'))) {
8522: $course_server = &domain($udom,'primary');
8523: } else {
8524: $course_server = $env{'user.home'};
8525: }
8526: }
8527: my %host_servers =
8528: &Apache::lonnet::get_servers($udom,'library');
8529: unless ($host_servers{$course_server}) {
8530: return 'error: invalid home server for course: '.$course_server;
1.264 matthew 8531: }
1.84 www 8532: # ------------------------------------------------------------- Make the course
8533: my $reply=&reply('encrypt:makeuser:'.$udom.':'.$uname.':none::',
1.264 matthew 8534: $course_server);
1.84 www 8535: unless ($reply eq 'ok') { return 'error: '.$reply; }
1.1011 raeburn 8536: my $uhome=&homeserver($uname,$udom,'true');
1.84 www 8537: if (($uhome eq '') || ($uhome eq 'no_host')) {
8538: return 'error: no such course';
8539: }
1.271 www 8540: # ----------------------------------------------------------------- Course made
1.516 raeburn 8541: # log existence
1.1029 raeburn 8542: my $now = time;
1.918 raeburn 8543: my $newcourse = {
8544: $udom.'_'.$uname => {
1.921 raeburn 8545: description => $description,
8546: inst_code => $inst_code,
8547: owner => $course_owner,
8548: type => $crstype,
1.1029 raeburn 8549: creator => $env{'user.name'}.':'.
8550: $env{'user.domain'},
8551: created => $now,
8552: context => $context,
1.918 raeburn 8553: },
8554: };
1.921 raeburn 8555: &courseidput($udom,$newcourse,$uhome,'notime');
1.358 www 8556: # set toplevel url
1.271 www 8557: my $topurl=$url;
8558: unless ($nonstandard) {
8559: # ------------------------------------------ For standard courses, make top url
8560: my $mapurl=&clutter($url);
1.278 www 8561: if ($mapurl eq '/res/') { $mapurl=''; }
1.620 albertel 8562: $env{'form.initmap'}=(<<ENDINITMAP);
1.271 www 8563: <map>
8564: <resource id="1" type="start"></resource>
8565: <resource id="2" src="$mapurl"></resource>
8566: <resource id="3" type="finish"></resource>
8567: <link index="1" from="1" to="2"></link>
8568: <link index="2" from="2" to="3"></link>
8569: </map>
8570: ENDINITMAP
8571: $topurl=&declutter(
1.638 albertel 8572: &finishuserfileupload($uname,$udom,'initmap','default.sequence')
1.271 www 8573: );
8574: }
8575: # ----------------------------------------------------------- Write preferences
1.84 www 8576: &writecoursepref($udom.'_'.$uname,
1.1056 raeburn 8577: ('description' => $description,
8578: 'url' => $topurl,
8579: 'internal.creator' => $env{'user.name'}.':'.
8580: $env{'user.domain'},
8581: 'internal.created' => $now,
8582: 'internal.creationcontext' => $context)
8583: );
1.84 www 8584: return '/'.$udom.'/'.$uname;
8585: }
8586:
1.1011 raeburn 8587: # ------------------------------------------------------------------- Create ID
8588: sub generate_coursenum {
1.1038 raeburn 8589: my ($udom,$crstype) = @_;
1.1011 raeburn 8590: my $domdesc = &domain($udom);
8591: return 'error: invalid domain' if ($domdesc eq '');
1.1038 raeburn 8592: my $first;
8593: if ($crstype eq 'Community') {
8594: $first = '0';
8595: } else {
8596: $first = int(1+rand(9));
8597: }
8598: my $uname=$first.
1.1011 raeburn 8599: ('a'..'z','A'..'Z','0'..'9')[int(rand(62))].
8600: substr($$.time,0,5).unpack("H8",pack("I32",time)).
8601: unpack("H2",pack("I32",int(rand(255)))).$perlvar{'lonHostID'};
8602: # ----------------------------------------------- Make sure that does not exist
8603: my $uhome=&homeserver($uname,$udom,'true');
8604: unless (($uhome eq '') || ($uhome eq 'no_host')) {
1.1038 raeburn 8605: if ($crstype eq 'Community') {
8606: $first = '0';
8607: } else {
8608: $first = int(1+rand(9));
8609: }
8610: $uname=$first.
1.1011 raeburn 8611: ('a'..'z','A'..'Z','0'..'9')[int(rand(62))].
8612: substr($$.time,0,5).unpack("H8",pack("I32",time)).
8613: unpack("H2",pack("I32",int(rand(255)))).$perlvar{'lonHostID'};
8614: $uhome=&homeserver($uname,$udom,'true');
8615: unless (($uhome eq '') || ($uhome eq 'no_host')) {
8616: return 'error: unable to generate unique course-ID';
8617: }
8618: }
8619: return $uname;
8620: }
8621:
1.813 albertel 8622: sub is_course {
1.1167 droeschl 8623: my ($cdom, $cnum) = scalar(@_) == 1 ?
8624: ($_[0] =~ /^($match_domain)_($match_courseid)$/) : @_;
8625:
8626: return unless $cdom and $cnum;
8627:
8628: my %courses = &courseiddump($cdom, '.', 1, '.', '.', $cnum, undef, undef,
8629: '.');
8630:
8631: return unless exists($courses{$cdom.'_'.$cnum});
8632: return wantarray ? ($cdom, $cnum) : $cdom.'_'.$cnum;
1.813 albertel 8633: }
8634:
1.1015 raeburn 8635: sub store_userdata {
8636: my ($storehash,$datakey,$namespace,$udom,$uname) = @_;
1.1013 raeburn 8637: my $result;
1.1016 raeburn 8638: if ($datakey ne '') {
1.1013 raeburn 8639: if (ref($storehash) eq 'HASH') {
1.1017 raeburn 8640: if ($udom eq '' || $uname eq '') {
8641: $udom = $env{'user.domain'};
8642: $uname = $env{'user.name'};
8643: }
8644: my $uhome=&homeserver($uname,$udom);
1.1013 raeburn 8645: if (($uhome eq '') || ($uhome eq 'no_host')) {
8646: $result = 'error: no_host';
8647: } else {
8648: $storehash->{'ip'} = $ENV{'REMOTE_ADDR'};
8649: $storehash->{'host'} = $perlvar{'lonHostID'};
8650:
8651: my $namevalue='';
8652: foreach my $key (keys(%{$storehash})) {
8653: $namevalue.=&escape($key).'='.&freeze_escape($$storehash{$key}).'&';
8654: }
8655: $namevalue=~s/\&$//;
1.1105 raeburn 8656: $result = &reply("store:$udom:$uname:$namespace:$datakey:".
8657: $namevalue,$uhome);
1.1013 raeburn 8658: }
8659: } else {
8660: $result = 'error: data to store was not a hash reference';
8661: }
8662: } else {
8663: $result= 'error: invalid requestkey';
8664: }
8665: return $result;
8666: }
8667:
1.21 www 8668: # ---------------------------------------------------------- Assign Custom Role
8669:
8670: sub assigncustomrole {
1.957 raeburn 8671: my ($udom,$uname,$url,$rdom,$rnam,$rolename,$end,$start,$deleteflag,$selfenroll,$context)=@_;
1.21 www 8672: return &assignrole($udom,$uname,$url,'cr/'.$rdom.'/'.$rnam.'/'.$rolename,
1.957 raeburn 8673: $end,$start,$deleteflag,$selfenroll,$context);
1.21 www 8674: }
8675:
8676: # ----------------------------------------------------------------- Revoke Role
8677:
8678: sub revokerole {
1.957 raeburn 8679: my ($udom,$uname,$url,$role,$deleteflag,$selfenroll,$context)=@_;
1.21 www 8680: my $now=time;
1.965 raeburn 8681: return &assignrole($udom,$uname,$url,$role,$now,undef,$deleteflag,$selfenroll,$context);
1.21 www 8682: }
8683:
8684: # ---------------------------------------------------------- Revoke Custom Role
8685:
8686: sub revokecustomrole {
1.957 raeburn 8687: my ($udom,$uname,$url,$rdom,$rnam,$rolename,$deleteflag,$selfenroll,$context)=@_;
1.21 www 8688: my $now=time;
1.357 www 8689: return &assigncustomrole($udom,$uname,$url,$rdom,$rnam,$rolename,$now,
1.957 raeburn 8690: $deleteflag,$selfenroll,$context);
1.17 www 8691: }
8692:
1.533 banghart 8693: # ------------------------------------------------------------ Disk usage
1.535 albertel 8694: sub diskusage {
1.955 raeburn 8695: my ($udom,$uname,$directorypath,$getpropath)=@_;
8696: $directorypath =~ s/\/$//;
8697: my $listing=&reply('du2:'.&escape($directorypath).':'
8698: .&escape($getpropath).':'.&escape($uname).':'
8699: .&escape($udom),homeserver($uname,$udom));
8700: if ($listing eq 'unknown_cmd') {
8701: if ($getpropath) {
8702: $directorypath = &propath($udom,$uname).'/'.$directorypath;
8703: }
8704: $listing = &reply('du:'.$directorypath,homeserver($uname,$udom));
8705: }
1.514 albertel 8706: return $listing;
1.512 banghart 8707: }
8708:
1.566 banghart 8709: sub is_locked {
1.1096 raeburn 8710: my ($file_name, $domain, $user, $which) = @_;
1.566 banghart 8711: my @check;
8712: my $is_locked;
1.1093 raeburn 8713: push (@check,$file_name);
1.613 albertel 8714: my %locked = &get('file_permissions',\@check,
1.620 albertel 8715: $env{'user.domain'},$env{'user.name'});
1.615 albertel 8716: my ($tmp)=keys(%locked);
8717: if ($tmp=~/^error:/) { undef(%locked); }
1.745 raeburn 8718:
1.566 banghart 8719: if (ref($locked{$file_name}) eq 'ARRAY') {
1.745 raeburn 8720: $is_locked = 'false';
8721: foreach my $entry (@{$locked{$file_name}}) {
1.1096 raeburn 8722: if (ref($entry) eq 'ARRAY') {
1.746 raeburn 8723: $is_locked = 'true';
1.1096 raeburn 8724: if (ref($which) eq 'ARRAY') {
8725: push(@{$which},$entry);
8726: } else {
8727: last;
8728: }
1.745 raeburn 8729: }
8730: }
1.566 banghart 8731: } else {
8732: $is_locked = 'false';
8733: }
1.1093 raeburn 8734: return $is_locked;
1.566 banghart 8735: }
8736:
1.759 albertel 8737: sub declutter_portfile {
8738: my ($file) = @_;
1.833 albertel 8739: $file =~ s{^(/portfolio/|portfolio/)}{/};
1.759 albertel 8740: return $file;
8741: }
8742:
1.559 banghart 8743: # ------------------------------------------------------------- Mark as Read Only
8744:
8745: sub mark_as_readonly {
8746: my ($domain,$user,$files,$what) = @_;
1.613 albertel 8747: my %current_permissions = &dump('file_permissions',$domain,$user);
1.615 albertel 8748: my ($tmp)=keys(%current_permissions);
8749: if ($tmp=~/^error:/) { undef(%current_permissions); }
1.560 banghart 8750: foreach my $file (@{$files}) {
1.759 albertel 8751: $file = &declutter_portfile($file);
1.561 banghart 8752: push(@{$current_permissions{$file}},$what);
1.559 banghart 8753: }
1.613 albertel 8754: &put('file_permissions',\%current_permissions,$domain,$user);
1.559 banghart 8755: return;
8756: }
8757:
1.572 banghart 8758: # ------------------------------------------------------------Save Selected Files
8759:
8760: sub save_selected_files {
8761: my ($user, $path, @files) = @_;
8762: my $filename = $user."savedfiles";
1.573 banghart 8763: my @other_files = &files_not_in_path($user, $path);
1.871 albertel 8764: open (OUT, '>'.$tmpdir.$filename);
1.573 banghart 8765: foreach my $file (@files) {
1.620 albertel 8766: print (OUT $env{'form.currentpath'}.$file."\n");
1.573 banghart 8767: }
8768: foreach my $file (@other_files) {
1.574 banghart 8769: print (OUT $file."\n");
1.572 banghart 8770: }
1.574 banghart 8771: close (OUT);
1.572 banghart 8772: return 'ok';
8773: }
8774:
1.574 banghart 8775: sub clear_selected_files {
8776: my ($user) = @_;
8777: my $filename = $user."savedfiles";
1.1117 foxr 8778: open (OUT, '>'.LONCAPA::tempdir().$filename);
1.574 banghart 8779: print (OUT undef);
8780: close (OUT);
8781: return ("ok");
8782: }
8783:
1.572 banghart 8784: sub files_in_path {
8785: my ($user, $path) = @_;
8786: my $filename = $user."savedfiles";
8787: my %return_files;
1.1117 foxr 8788: open (IN, '<'.LONCAPA::tempdir().$filename);
1.573 banghart 8789: while (my $line_in = <IN>) {
1.574 banghart 8790: chomp ($line_in);
8791: my @paths_and_file = split (m!/!, $line_in);
8792: my $file_part = pop (@paths_and_file);
8793: my $path_part = join ('/', @paths_and_file);
1.573 banghart 8794: $path_part.='/';
8795: my $path_and_file = $path_part.$file_part;
8796: if ($path_part eq $path) {
8797: $return_files{$file_part}= 'selected';
8798: }
8799: }
1.574 banghart 8800: close (IN);
8801: return (\%return_files);
1.572 banghart 8802: }
8803:
8804: # called in portfolio select mode, to show files selected NOT in current directory
8805: sub files_not_in_path {
8806: my ($user, $path) = @_;
8807: my $filename = $user."savedfiles";
8808: my @return_files;
8809: my $path_part;
1.1117 foxr 8810: open(IN, '<'.LONCAPA::.$filename);
1.800 albertel 8811: while (my $line = <IN>) {
1.572 banghart 8812: #ok, I know it's clunky, but I want it to work
1.800 albertel 8813: my @paths_and_file = split(m|/|, $line);
8814: my $file_part = pop(@paths_and_file);
8815: chomp($file_part);
8816: my $path_part = join('/', @paths_and_file);
1.572 banghart 8817: $path_part .= '/';
8818: my $path_and_file = $path_part.$file_part;
8819: if ($path_part ne $path) {
1.800 albertel 8820: push(@return_files, ($path_and_file));
1.572 banghart 8821: }
8822: }
1.800 albertel 8823: close(OUT);
1.574 banghart 8824: return (@return_files);
1.572 banghart 8825: }
8826:
1.745 raeburn 8827: #----------------------------------------------Get portfolio file permissions
1.629 banghart 8828:
1.745 raeburn 8829: sub get_portfile_permissions {
8830: my ($domain,$user) = @_;
1.613 albertel 8831: my %current_permissions = &dump('file_permissions',$domain,$user);
1.615 albertel 8832: my ($tmp)=keys(%current_permissions);
8833: if ($tmp=~/^error:/) { undef(%current_permissions); }
1.745 raeburn 8834: return \%current_permissions;
8835: }
8836:
8837: #---------------------------------------------Get portfolio file access controls
8838:
1.749 raeburn 8839: sub get_access_controls {
1.745 raeburn 8840: my ($current_permissions,$group,$file) = @_;
1.769 albertel 8841: my %access;
8842: my $real_file = $file;
8843: $file =~ s/\.meta$//;
1.745 raeburn 8844: if (defined($file)) {
1.749 raeburn 8845: if (ref($$current_permissions{$file."\0".'accesscontrol'}) eq 'HASH') {
8846: foreach my $control (keys(%{$$current_permissions{$file."\0".'accesscontrol'}})) {
1.769 albertel 8847: $access{$real_file}{$control} = $$current_permissions{$file."\0".$control};
1.749 raeburn 8848: }
8849: }
1.745 raeburn 8850: } else {
1.749 raeburn 8851: foreach my $key (keys(%{$current_permissions})) {
8852: if ($key =~ /\0accesscontrol$/) {
8853: if (defined($group)) {
8854: if ($key !~ m-^\Q$group\E/-) {
8855: next;
8856: }
8857: }
8858: my ($fullpath) = split(/\0/,$key);
8859: if (ref($$current_permissions{$key}) eq 'HASH') {
8860: foreach my $control (keys(%{$$current_permissions{$key}})) {
8861: $access{$fullpath}{$control}=$$current_permissions{$fullpath."\0".$control};
8862: }
8863: }
8864: }
8865: }
8866: }
8867: return %access;
8868: }
8869:
8870: sub modify_access_controls {
8871: my ($file_name,$changes,$domain,$user)=@_;
8872: my ($outcome,$deloutcome);
8873: my %store_permissions;
8874: my %new_values;
8875: my %new_control;
8876: my %translation;
8877: my @deletions = ();
8878: my $now = time;
8879: if (exists($$changes{'activate'})) {
8880: if (ref($$changes{'activate'}) eq 'HASH') {
8881: my @newitems = sort(keys(%{$$changes{'activate'}}));
8882: my $numnew = scalar(@newitems);
8883: for (my $i=0; $i<$numnew; $i++) {
8884: my $newkey = $newitems[$i];
8885: my $newid = &Apache::loncommon::get_cgi_id();
1.797 raeburn 8886: if ($newkey =~ /^\d+:/) {
8887: $newkey =~ s/^(\d+)/$newid/;
8888: $translation{$1} = $newid;
8889: } elsif ($newkey =~ /^\d+_\d+_\d+:/) {
8890: $newkey =~ s/^(\d+_\d+_\d+)/$newid/;
8891: $translation{$1} = $newid;
8892: }
1.749 raeburn 8893: $new_values{$file_name."\0".$newkey} =
8894: $$changes{'activate'}{$newitems[$i]};
8895: $new_control{$newkey} = $now;
8896: }
8897: }
8898: }
8899: my %todelete;
8900: my %changed_items;
8901: foreach my $action ('delete','update') {
8902: if (exists($$changes{$action})) {
8903: if (ref($$changes{$action}) eq 'HASH') {
8904: foreach my $key (keys(%{$$changes{$action}})) {
8905: my ($itemnum) = ($key =~ /^([^:]+):/);
8906: if ($action eq 'delete') {
8907: $todelete{$itemnum} = 1;
8908: } else {
8909: $changed_items{$itemnum} = $key;
8910: }
8911: }
1.745 raeburn 8912: }
8913: }
1.749 raeburn 8914: }
8915: # get lock on access controls for file.
8916: my $lockhash = {
8917: $file_name."\0".'locked_access_records' => $env{'user.name'}.
8918: ':'.$env{'user.domain'},
8919: };
8920: my $tries = 0;
8921: my $gotlock = &newput('file_permissions',$lockhash,$domain,$user);
8922:
8923: while (($gotlock ne 'ok') && $tries <3) {
8924: $tries ++;
8925: sleep 1;
8926: $gotlock = &newput('file_permissions',$lockhash,$domain,$user);
8927: }
8928: if ($gotlock eq 'ok') {
8929: my %curr_permissions = &dump('file_permissions',$domain,$user,$file_name);
8930: my ($tmp)=keys(%curr_permissions);
8931: if ($tmp=~/^error:/) { undef(%curr_permissions); }
8932: if (exists($curr_permissions{$file_name."\0".'accesscontrol'})) {
8933: my $curr_controls = $curr_permissions{$file_name."\0".'accesscontrol'};
8934: if (ref($curr_controls) eq 'HASH') {
8935: foreach my $control_item (keys(%{$curr_controls})) {
8936: my ($itemnum) = ($control_item =~ /^([^:]+):/);
8937: if (defined($todelete{$itemnum})) {
8938: push(@deletions,$file_name."\0".$control_item);
8939: } else {
8940: if (defined($changed_items{$itemnum})) {
8941: $new_control{$changed_items{$itemnum}} = $now;
8942: push(@deletions,$file_name."\0".$control_item);
8943: $new_values{$file_name."\0".$changed_items{$itemnum}} = $$changes{'update'}{$changed_items{$itemnum}};
8944: } else {
8945: $new_control{$control_item} = $$curr_controls{$control_item};
8946: }
8947: }
1.745 raeburn 8948: }
8949: }
8950: }
1.970 raeburn 8951: my ($group);
8952: if (&is_course($domain,$user)) {
8953: ($group,my $file) = split(/\//,$file_name,2);
8954: }
1.749 raeburn 8955: $deloutcome = &del('file_permissions',\@deletions,$domain,$user);
8956: $new_values{$file_name."\0".'accesscontrol'} = \%new_control;
8957: $outcome = &put('file_permissions',\%new_values,$domain,$user);
8958: # remove lock
8959: my @del_lock = ($file_name."\0".'locked_access_records');
8960: my $dellockoutcome = &del('file_permissions',\@del_lock,$domain,$user);
1.818 raeburn 8961: my $sqlresult =
1.970 raeburn 8962: &update_portfolio_table($user,$domain,$file_name,'portfolio_access',
1.818 raeburn 8963: $group);
1.749 raeburn 8964: } else {
8965: $outcome = "error: could not obtain lockfile\n";
1.745 raeburn 8966: }
1.749 raeburn 8967: return ($outcome,$deloutcome,\%new_values,\%translation);
1.745 raeburn 8968: }
8969:
1.827 raeburn 8970: sub make_public_indefinitely {
8971: my ($requrl) = @_;
8972: my $now = time;
8973: my $action = 'activate';
8974: my $aclnum = 0;
8975: if (&is_portfolio_url($requrl)) {
8976: my (undef,$udom,$unum,$file_name,$group) =
8977: &parse_portfolio_url($requrl);
8978: my $current_perms = &get_portfile_permissions($udom,$unum);
8979: my %access_controls = &get_access_controls($current_perms,
8980: $group,$file_name);
8981: foreach my $key (keys(%{$access_controls{$file_name}})) {
8982: my ($num,$scope,$end,$start) =
8983: ($key =~ /^([^:]+):([a-z]+)_(\d*)_?(\d*)$/);
8984: if ($scope eq 'public') {
8985: if ($start <= $now && $end == 0) {
8986: $action = 'none';
8987: } else {
8988: $action = 'update';
8989: $aclnum = $num;
8990: }
8991: last;
8992: }
8993: }
8994: if ($action eq 'none') {
8995: return 'ok';
8996: } else {
8997: my %changes;
8998: my $newend = 0;
8999: my $newstart = $now;
9000: my $newkey = $aclnum.':public_'.$newend.'_'.$newstart;
9001: $changes{$action}{$newkey} = {
9002: type => 'public',
9003: time => {
9004: start => $newstart,
9005: end => $newend,
9006: },
9007: };
9008: my ($outcome,$deloutcome,$new_values,$translation) =
9009: &modify_access_controls($file_name,\%changes,$udom,$unum);
9010: return $outcome;
9011: }
9012: } else {
9013: return 'invalid';
9014: }
9015: }
9016:
1.745 raeburn 9017: #------------------------------------------------------Get Marked as Read Only
9018:
9019: sub get_marked_as_readonly {
9020: my ($domain,$user,$what,$group) = @_;
9021: my $current_permissions = &get_portfile_permissions($domain,$user);
1.563 banghart 9022: my @readonly_files;
1.629 banghart 9023: my $cmp1=$what;
9024: if (ref($what)) { $cmp1=join('',@{$what}) };
1.745 raeburn 9025: while (my ($file_name,$value) = each(%{$current_permissions})) {
9026: if (defined($group)) {
9027: if ($file_name !~ m-^\Q$group\E/-) {
9028: next;
9029: }
9030: }
1.561 banghart 9031: if (ref($value) eq "ARRAY"){
9032: foreach my $stored_what (@{$value}) {
1.629 banghart 9033: my $cmp2=$stored_what;
1.759 albertel 9034: if (ref($stored_what) eq 'ARRAY') {
1.746 raeburn 9035: $cmp2=join('',@{$stored_what});
1.745 raeburn 9036: }
1.629 banghart 9037: if ($cmp1 eq $cmp2) {
1.561 banghart 9038: push(@readonly_files, $file_name);
1.745 raeburn 9039: last;
1.563 banghart 9040: } elsif (!defined($what)) {
9041: push(@readonly_files, $file_name);
1.745 raeburn 9042: last;
1.561 banghart 9043: }
9044: }
1.745 raeburn 9045: }
1.561 banghart 9046: }
9047: return @readonly_files;
9048: }
1.577 banghart 9049: #-----------------------------------------------------------Get Marked as Read Only Hash
1.561 banghart 9050:
1.577 banghart 9051: sub get_marked_as_readonly_hash {
1.745 raeburn 9052: my ($current_permissions,$group,$what) = @_;
1.577 banghart 9053: my %readonly_files;
1.745 raeburn 9054: while (my ($file_name,$value) = each(%{$current_permissions})) {
9055: if (defined($group)) {
9056: if ($file_name !~ m-^\Q$group\E/-) {
9057: next;
9058: }
9059: }
1.577 banghart 9060: if (ref($value) eq "ARRAY"){
9061: foreach my $stored_what (@{$value}) {
1.745 raeburn 9062: if (ref($stored_what) eq 'ARRAY') {
1.750 banghart 9063: foreach my $lock_descriptor(@{$stored_what}) {
9064: if ($lock_descriptor eq 'graded') {
9065: $readonly_files{$file_name} = 'graded';
9066: } elsif ($lock_descriptor eq 'handback') {
9067: $readonly_files{$file_name} = 'handback';
9068: } else {
9069: if (!exists($readonly_files{$file_name})) {
9070: $readonly_files{$file_name} = 'locked';
9071: }
9072: }
1.745 raeburn 9073: }
1.750 banghart 9074: }
1.577 banghart 9075: }
9076: }
9077: }
9078: return %readonly_files;
9079: }
1.559 banghart 9080: # ------------------------------------------------------------ Unmark as Read Only
9081:
9082: sub unmark_as_readonly {
1.629 banghart 9083: # unmarks $file_name (if $file_name is defined), or all files locked by $what
9084: # for portfolio submissions, $what contains [$symb,$crsid]
1.745 raeburn 9085: my ($domain,$user,$what,$file_name,$group) = @_;
1.759 albertel 9086: $file_name = &declutter_portfile($file_name);
1.634 albertel 9087: my $symb_crs = $what;
9088: if (ref($what)) { $symb_crs=join('',@$what); }
1.745 raeburn 9089: my %current_permissions = &dump('file_permissions',$domain,$user,$group);
1.615 albertel 9090: my ($tmp)=keys(%current_permissions);
9091: if ($tmp=~/^error:/) { undef(%current_permissions); }
1.745 raeburn 9092: my @readonly_files = &get_marked_as_readonly($domain,$user,$what,$group);
1.650 albertel 9093: foreach my $file (@readonly_files) {
1.759 albertel 9094: my $clean_file = &declutter_portfile($file);
9095: if (defined($file_name) && ($file_name ne $clean_file)) { next; }
1.650 albertel 9096: my $current_locks = $current_permissions{$file};
1.563 banghart 9097: my @new_locks;
9098: my @del_keys;
9099: if (ref($current_locks) eq "ARRAY"){
9100: foreach my $locker (@{$current_locks}) {
1.632 albertel 9101: my $compare=$locker;
1.749 raeburn 9102: if (ref($locker) eq 'ARRAY') {
1.745 raeburn 9103: $compare=join('',@{$locker});
1.746 raeburn 9104: if ($compare ne $symb_crs) {
9105: push(@new_locks, $locker);
9106: }
1.563 banghart 9107: }
9108: }
1.650 albertel 9109: if (scalar(@new_locks) > 0) {
1.563 banghart 9110: $current_permissions{$file} = \@new_locks;
9111: } else {
9112: push(@del_keys, $file);
1.613 albertel 9113: &del('file_permissions',\@del_keys, $domain, $user);
1.650 albertel 9114: delete($current_permissions{$file});
1.563 banghart 9115: }
9116: }
1.561 banghart 9117: }
1.613 albertel 9118: &put('file_permissions',\%current_permissions,$domain,$user);
1.559 banghart 9119: return;
9120: }
1.512 banghart 9121:
1.17 www 9122: # ------------------------------------------------------------ Directory lister
9123:
9124: sub dirlist {
1.955 raeburn 9125: my ($uri,$userdomain,$username,$getpropath,$getuserdir,$alternateRoot)=@_;
1.18 www 9126: $uri=~s/^\///;
9127: $uri=~s/\/$//;
1.253 stredwic 9128: my ($udom, $uname);
1.955 raeburn 9129: if ($getuserdir) {
1.253 stredwic 9130: $udom = $userdomain;
9131: $uname = $username;
1.955 raeburn 9132: } else {
9133: (undef,$udom,$uname)=split(/\//,$uri);
9134: if(defined($userdomain)) {
9135: $udom = $userdomain;
9136: }
9137: if(defined($username)) {
9138: $uname = $username;
9139: }
1.253 stredwic 9140: }
1.955 raeburn 9141: my ($dirRoot,$listing,@listing_results);
1.253 stredwic 9142:
1.955 raeburn 9143: $dirRoot = $perlvar{'lonDocRoot'};
9144: if (defined($getpropath)) {
9145: $dirRoot = &propath($udom,$uname);
1.253 stredwic 9146: $dirRoot =~ s/\/$//;
1.955 raeburn 9147: } elsif (defined($getuserdir)) {
9148: my $subdir=$uname.'__';
9149: $subdir =~ s/(.)(.)(.).*/$1\/$2\/$3/;
9150: $dirRoot = $Apache::lonnet::perlvar{'lonUsersDir'}
9151: ."/$udom/$subdir/$uname";
9152: } elsif (defined($alternateRoot)) {
9153: $dirRoot = $alternateRoot;
1.751 banghart 9154: }
1.253 stredwic 9155:
9156: if($udom) {
9157: if($uname) {
1.1135 raeburn 9158: my $uhome = &homeserver($uname,$udom);
1.1136 raeburn 9159: if ($uhome eq 'no_host') {
9160: return ([],'no_host');
9161: }
1.955 raeburn 9162: $listing = &reply('ls3:'.&escape('/'.$uri).':'.$getpropath.':'
1.956 raeburn 9163: .$getuserdir.':'.&escape($dirRoot)
1.1135 raeburn 9164: .':'.&escape($uname).':'.&escape($udom),$uhome);
1.955 raeburn 9165: if ($listing eq 'unknown_cmd') {
1.1135 raeburn 9166: $listing = &reply('ls2:'.$dirRoot.'/'.$uri,$uhome);
1.955 raeburn 9167: } else {
9168: @listing_results = map { &unescape($_); } split(/:/,$listing);
9169: }
1.605 matthew 9170: if ($listing eq 'unknown_cmd') {
1.1135 raeburn 9171: $listing = &reply('ls:'.$dirRoot.'/'.$uri,$uhome);
1.605 matthew 9172: @listing_results = split(/:/,$listing);
9173: } else {
9174: @listing_results = map { &unescape($_); } split(/:/,$listing);
9175: }
1.1135 raeburn 9176: if (($listing eq 'no_such_host') || ($listing eq 'con_lost') ||
1.1136 raeburn 9177: ($listing eq 'rejected') || ($listing eq 'refused') ||
9178: ($listing eq 'no_such_dir') || ($listing eq 'empty')) {
9179: return ([],$listing);
9180: } else {
9181: return (\@listing_results);
1.1135 raeburn 9182: }
1.955 raeburn 9183: } elsif(!$alternateRoot) {
1.1136 raeburn 9184: my (%allusers,%listerror);
1.841 albertel 9185: my %servers = &get_servers($udom,'library');
1.955 raeburn 9186: foreach my $tryserver (keys(%servers)) {
9187: $listing = &reply('ls3:'.&escape("/res/$udom").':::::'.
9188: &escape($udom),$tryserver);
9189: if ($listing eq 'unknown_cmd') {
9190: $listing = &reply('ls2:'.$perlvar{'lonDocRoot'}.'/res/'.
9191: $udom, $tryserver);
9192: } else {
9193: @listing_results = map { &unescape($_); } split(/:/,$listing);
9194: }
1.841 albertel 9195: if ($listing eq 'unknown_cmd') {
9196: $listing = &reply('ls:'.$perlvar{'lonDocRoot'}.'/res/'.
9197: $udom, $tryserver);
9198: @listing_results = split(/:/,$listing);
9199: } else {
9200: @listing_results =
9201: map { &unescape($_); } split(/:/,$listing);
9202: }
1.1136 raeburn 9203: if (($listing eq 'no_such_host') || ($listing eq 'con_lost') ||
9204: ($listing eq 'rejected') || ($listing eq 'refused') ||
9205: ($listing eq 'no_such_dir') || ($listing eq 'empty')) {
9206: $listerror{$tryserver} = $listing;
9207: } else {
1.841 albertel 9208: foreach my $line (@listing_results) {
9209: my ($entry) = split(/&/,$line,2);
9210: $allusers{$entry} = 1;
9211: }
9212: }
1.253 stredwic 9213: }
1.1136 raeburn 9214: my @alluserslist=();
1.800 albertel 9215: foreach my $user (sort(keys(%allusers))) {
1.1136 raeburn 9216: push(@alluserslist,$user.'&user');
1.253 stredwic 9217: }
1.1136 raeburn 9218: return (\@alluserslist);
1.253 stredwic 9219: } else {
1.1136 raeburn 9220: return ([],'missing username');
1.253 stredwic 9221: }
1.955 raeburn 9222: } elsif(!defined($getpropath)) {
1.1136 raeburn 9223: my $path = $perlvar{'lonDocRoot'}.'/res/';
9224: my @all_domains = map { $path.$_.'/&domain'; } (sort(&all_domains()));
9225: return (\@all_domains);
1.955 raeburn 9226: } else {
1.1136 raeburn 9227: return ([],'missing domain');
1.275 stredwic 9228: }
9229: }
9230:
9231: # --------------------------------------------- GetFileTimestamp
9232: # This function utilizes dirlist and returns the date stamp for
9233: # when it was last modified. It will also return an error of -1
9234: # if an error occurs
9235:
9236: sub GetFileTimestamp {
1.955 raeburn 9237: my ($studentDomain,$studentName,$filename,$getuserdir)=@_;
1.807 albertel 9238: $studentDomain = &LONCAPA::clean_domain($studentDomain);
9239: $studentName = &LONCAPA::clean_username($studentName);
1.1136 raeburn 9240: my ($fileref,$error) = &dirlist($filename,$studentDomain,$studentName,
9241: undef,$getuserdir);
9242: if (($error eq 'empty') || ($error eq 'no_such_dir')) {
9243: return -1;
9244: }
9245: if (ref($fileref) eq 'ARRAY') {
9246: my @stats = split('&',$fileref->[0]);
1.375 matthew 9247: # @stats contains first the filename, then the stat output
9248: return $stats[10]; # so this is 10 instead of 9.
1.275 stredwic 9249: } else {
9250: return -1;
1.253 stredwic 9251: }
1.26 www 9252: }
9253:
1.712 albertel 9254: sub stat_file {
9255: my ($uri) = @_;
1.787 albertel 9256: $uri = &clutter_with_no_wrapper($uri);
1.722 albertel 9257:
1.955 raeburn 9258: my ($udom,$uname,$file);
1.712 albertel 9259: if ($uri =~ m-^/(uploaded|editupload)/-) {
9260: ($udom,$uname,$file) =
1.811 albertel 9261: ($uri =~ m-/(?:uploaded|editupload)/?($match_domain)/?($match_name)/?(.*)-);
1.712 albertel 9262: $file = 'userfiles/'.$file;
9263: }
9264: if ($uri =~ m-^/res/-) {
9265: ($udom,$uname) =
1.807 albertel 9266: ($uri =~ m-/(?:res)/?($match_domain)/?($match_username)/-);
1.712 albertel 9267: $file = $uri;
9268: }
9269:
9270: if (!$udom || !$uname || !$file) {
9271: # unable to handle the uri
9272: return ();
9273: }
1.956 raeburn 9274: my $getpropath;
9275: if ($file =~ /^userfiles\//) {
9276: $getpropath = 1;
9277: }
1.1136 raeburn 9278: my ($listref,$error) = &dirlist($file,$udom,$uname,$getpropath);
9279: if (($error eq 'empty') || ($error eq 'no_such_dir')) {
9280: return ();
9281: } else {
9282: if (ref($listref) eq 'ARRAY') {
9283: my @stats = split('&',$listref->[0]);
9284: shift(@stats); #filename is first
9285: return @stats;
9286: }
1.712 albertel 9287: }
9288: return ();
9289: }
9290:
1.26 www 9291: # -------------------------------------------------------- Value of a Condition
9292:
1.713 albertel 9293: # gets the value of a specific preevaluated condition
9294: # stored in the string $env{user.state.<cid>}
9295: # or looks up a condition reference in the bighash and if if hasn't
9296: # already been evaluated recurses into docondval to get the value of
9297: # the condition, then memoizing it to
9298: # $env{user.state.<cid>.<condition>}
1.40 www 9299: sub directcondval {
9300: my $number=shift;
1.620 albertel 9301: if (!defined($env{'user.state.'.$env{'request.course.id'}})) {
1.555 albertel 9302: &Apache::lonuserstate::evalstate();
9303: }
1.713 albertel 9304: if (exists($env{'user.state.'.$env{'request.course.id'}.".$number"})) {
9305: return $env{'user.state.'.$env{'request.course.id'}.".$number"};
9306: } elsif ($number =~ /^_/) {
9307: my $sub_condition;
9308: if (tie(my %bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
9309: &GDBM_READER(),0640)) {
9310: $sub_condition=$bighash{'conditions'.$number};
9311: untie(%bighash);
9312: }
9313: my $value = &docondval($sub_condition);
1.949 raeburn 9314: &appenv({'user.state.'.$env{'request.course.id'}.".$number" => $value});
1.713 albertel 9315: return $value;
9316: }
1.620 albertel 9317: if ($env{'user.state.'.$env{'request.course.id'}}) {
9318: return substr($env{'user.state.'.$env{'request.course.id'}},$number,1);
1.40 www 9319: } else {
9320: return 2;
9321: }
9322: }
9323:
1.713 albertel 9324: # get the collection of conditions for this resource
1.26 www 9325: sub condval {
9326: my $condidx=shift;
1.54 www 9327: my $allpathcond='';
1.713 albertel 9328: foreach my $cond (split(/\|/,$condidx)) {
9329: if (defined($env{'acc.cond.'.$env{'request.course.id'}.'.'.$cond})) {
9330: $allpathcond.=
9331: '('.$env{'acc.cond.'.$env{'request.course.id'}.'.'.$cond}.')|';
9332: }
1.191 harris41 9333: }
1.54 www 9334: $allpathcond=~s/\|$//;
1.713 albertel 9335: return &docondval($allpathcond);
9336: }
9337:
9338: #evaluates an expression of conditions
9339: sub docondval {
9340: my ($allpathcond) = @_;
9341: my $result=0;
9342: if ($env{'request.course.id'}
9343: && defined($allpathcond)) {
9344: my $operand='|';
9345: my @stack;
9346: foreach my $chunk ($allpathcond=~/(\d+|_\d+\.\d+|\(|\)|\&|\|)/g) {
9347: if ($chunk eq '(') {
9348: push @stack,($operand,$result);
9349: } elsif ($chunk eq ')') {
9350: my $before=pop @stack;
9351: if (pop @stack eq '&') {
9352: $result=$result>$before?$before:$result;
9353: } else {
9354: $result=$result>$before?$result:$before;
9355: }
9356: } elsif (($chunk eq '&') || ($chunk eq '|')) {
9357: $operand=$chunk;
9358: } else {
9359: my $new=directcondval($chunk);
9360: if ($operand eq '&') {
9361: $result=$result>$new?$new:$result;
9362: } else {
9363: $result=$result>$new?$result:$new;
9364: }
9365: }
9366: }
1.26 www 9367: }
9368: return $result;
1.421 albertel 9369: }
9370:
9371: # ---------------------------------------------------- Devalidate courseresdata
9372:
9373: sub devalidatecourseresdata {
9374: my ($coursenum,$coursedomain)=@_;
9375: my $hashid=$coursenum.':'.$coursedomain;
1.599 albertel 9376: &devalidate_cache_new('courseres',$hashid);
1.28 www 9377: }
9378:
1.763 www 9379:
1.200 www 9380: # --------------------------------------------------- Course Resourcedata Query
1.878 foxr 9381: #
9382: # Parameters:
9383: # $coursenum - Number of the course.
9384: # $coursedomain - Domain at which the course was created.
9385: # Returns:
9386: # A hash of the course parameters along (I think) with timestamps
9387: # and version info.
1.877 foxr 9388:
1.624 albertel 9389: sub get_courseresdata {
9390: my ($coursenum,$coursedomain)=@_;
1.200 www 9391: my $coursehom=&homeserver($coursenum,$coursedomain);
9392: my $hashid=$coursenum.':'.$coursedomain;
1.599 albertel 9393: my ($result,$cached)=&is_cached_new('courseres',$hashid);
1.624 albertel 9394: my %dumpreply;
1.417 albertel 9395: unless (defined($cached)) {
1.624 albertel 9396: %dumpreply=&dump('resourcedata',$coursedomain,$coursenum);
1.417 albertel 9397: $result=\%dumpreply;
1.251 albertel 9398: my ($tmp) = keys(%dumpreply);
9399: if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
1.599 albertel 9400: &do_cache_new('courseres',$hashid,$result,600);
1.306 albertel 9401: } elsif ($tmp =~ /^(con_lost|no_such_host)/) {
9402: return $tmp;
1.416 albertel 9403: } elsif ($tmp =~ /^(error)/) {
1.417 albertel 9404: $result=undef;
1.599 albertel 9405: &do_cache_new('courseres',$hashid,$result,600);
1.250 albertel 9406: }
9407: }
1.624 albertel 9408: return $result;
9409: }
9410:
1.633 albertel 9411: sub devalidateuserresdata {
9412: my ($uname,$udom)=@_;
9413: my $hashid="$udom:$uname";
9414: &devalidate_cache_new('userres',$hashid);
9415: }
9416:
1.624 albertel 9417: sub get_userresdata {
9418: my ($uname,$udom)=@_;
9419: #most student don\'t have any data set, check if there is some data
9420: if (&EXT_cache_status($udom,$uname)) { return undef; }
9421:
9422: my $hashid="$udom:$uname";
9423: my ($result,$cached)=&is_cached_new('userres',$hashid);
9424: if (!defined($cached)) {
9425: my %resourcedata=&dump('resourcedata',$udom,$uname);
9426: $result=\%resourcedata;
9427: &do_cache_new('userres',$hashid,$result,600);
9428: }
9429: my ($tmp)=keys(%$result);
9430: if (($tmp!~/^error\:/) && ($tmp!~/^con_lost/)) {
9431: return $result;
9432: }
9433: #error 2 occurs when the .db doesn't exist
9434: if ($tmp!~/error: 2 /) {
1.672 albertel 9435: &logthis("<font color=\"blue\">WARNING:".
1.624 albertel 9436: " Trying to get resource data for ".
9437: $uname." at ".$udom.": ".
9438: $tmp."</font>");
9439: } elsif ($tmp=~/error: 2 /) {
1.633 albertel 9440: #&EXT_cache_set($udom,$uname);
9441: &do_cache_new('userres',$hashid,undef,600);
1.636 albertel 9442: undef($tmp); # not really an error so don't send it back
1.624 albertel 9443: }
9444: return $tmp;
9445: }
1.879 foxr 9446: #----------------------------------------------- resdata - return resource data
9447: # Purpose:
9448: # Return resource data for either users or for a course.
9449: # Parameters:
9450: # $name - Course/user name.
9451: # $domain - Name of the domain the user/course is registered on.
9452: # $type - Type of thing $name is (must be 'course' or 'user'
9453: # @which - Array of names of resources desired.
9454: # Returns:
9455: # The value of the first reasource in @which that is found in the
9456: # resource hash.
9457: # Exceptional Conditions:
9458: # If the $type passed in is not valid (not the string 'course' or
9459: # 'user', an undefined reference is returned.
9460: # If none of the resources are found, an undef is returned
1.624 albertel 9461: sub resdata {
9462: my ($name,$domain,$type,@which)=@_;
9463: my $result;
9464: if ($type eq 'course') {
9465: $result=&get_courseresdata($name,$domain);
9466: } elsif ($type eq 'user') {
9467: $result=&get_userresdata($name,$domain);
9468: }
9469: if (!ref($result)) { return $result; }
1.251 albertel 9470: foreach my $item (@which) {
1.927 albertel 9471: if (defined($result->{$item->[0]})) {
9472: return [$result->{$item->[0]},$item->[1]];
1.251 albertel 9473: }
1.250 albertel 9474: }
1.291 albertel 9475: return undef;
1.200 www 9476: }
9477:
1.379 matthew 9478: #
9479: # EXT resource caching routines
9480: #
9481:
9482: sub clear_EXT_cache_status {
1.383 albertel 9483: &delenv('cache.EXT.');
1.379 matthew 9484: }
9485:
9486: sub EXT_cache_status {
9487: my ($target_domain,$target_user) = @_;
1.383 albertel 9488: my $cachename = 'cache.EXT.'.$target_user.'.'.$target_domain;
1.620 albertel 9489: if (exists($env{$cachename}) && ($env{$cachename}+600) > time) {
1.379 matthew 9490: # We know already the user has no data
9491: return 1;
9492: } else {
9493: return 0;
9494: }
9495: }
9496:
9497: sub EXT_cache_set {
9498: my ($target_domain,$target_user) = @_;
1.383 albertel 9499: my $cachename = 'cache.EXT.'.$target_user.'.'.$target_domain;
1.949 raeburn 9500: #&appenv({$cachename => time});
1.379 matthew 9501: }
9502:
1.28 www 9503: # --------------------------------------------------------- Value of a Variable
1.58 www 9504: sub EXT {
1.715 albertel 9505:
1.395 albertel 9506: my ($varname,$symbparm,$udom,$uname,$usection,$recurse)=@_;
1.68 www 9507: unless ($varname) { return ''; }
1.218 albertel 9508: #get real user name/domain, courseid and symb
9509: my $courseid;
1.359 albertel 9510: my $publicuser;
1.427 www 9511: if ($symbparm) {
9512: $symbparm=&get_symb_from_alias($symbparm);
9513: }
1.218 albertel 9514: if (!($uname && $udom)) {
1.790 albertel 9515: (my $cursymb,$courseid,$udom,$uname,$publicuser)= &whichuser($symbparm);
1.218 albertel 9516: if (!$symbparm) { $symbparm=$cursymb; }
9517: } else {
1.620 albertel 9518: $courseid=$env{'request.course.id'};
1.218 albertel 9519: }
1.48 www 9520: my ($realm,$space,$qualifier,@therest)=split(/\./,$varname);
9521: my $rest;
1.320 albertel 9522: if (defined($therest[0])) {
1.48 www 9523: $rest=join('.',@therest);
9524: } else {
9525: $rest='';
9526: }
1.320 albertel 9527:
1.57 www 9528: my $qualifierrest=$qualifier;
9529: if ($rest) { $qualifierrest.='.'.$rest; }
9530: my $spacequalifierrest=$space;
9531: if ($qualifierrest) { $spacequalifierrest.='.'.$qualifierrest; }
1.28 www 9532: if ($realm eq 'user') {
1.48 www 9533: # --------------------------------------------------------------- user.resource
9534: if ($space eq 'resource') {
1.651 albertel 9535: if ( (defined($Apache::lonhomework::parsing_a_problem)
9536: || defined($Apache::lonhomework::parsing_a_task))
9537: &&
1.744 albertel 9538: ($symbparm eq &symbread()) ) {
9539: # if we are in the middle of processing the resource the
9540: # get the value we are planning on committing
9541: if (defined($Apache::lonhomework::results{$qualifierrest})) {
9542: return $Apache::lonhomework::results{$qualifierrest};
9543: } else {
9544: return $Apache::lonhomework::history{$qualifierrest};
9545: }
1.335 albertel 9546: } else {
1.359 albertel 9547: my %restored;
1.620 albertel 9548: if ($publicuser || $env{'request.state'} eq 'construct') {
1.359 albertel 9549: %restored=&tmprestore($symbparm,$courseid,$udom,$uname);
9550: } else {
9551: %restored=&restore($symbparm,$courseid,$udom,$uname);
9552: }
1.335 albertel 9553: return $restored{$qualifierrest};
9554: }
1.48 www 9555: # ----------------------------------------------------------------- user.access
9556: } elsif ($space eq 'access') {
1.218 albertel 9557: # FIXME - not supporting calls for a specific user
1.48 www 9558: return &allowed($qualifier,$rest);
9559: # ------------------------------------------ user.preferences, user.environment
9560: } elsif (($space eq 'preferences') || ($space eq 'environment')) {
1.620 albertel 9561: if (($uname eq $env{'user.name'}) &&
9562: ($udom eq $env{'user.domain'})) {
9563: return $env{join('.',('environment',$qualifierrest))};
1.218 albertel 9564: } else {
1.359 albertel 9565: my %returnhash;
9566: if (!$publicuser) {
9567: %returnhash=&userenvironment($udom,$uname,
9568: $qualifierrest);
9569: }
1.218 albertel 9570: return $returnhash{$qualifierrest};
9571: }
1.48 www 9572: # ----------------------------------------------------------------- user.course
9573: } elsif ($space eq 'course') {
1.218 albertel 9574: # FIXME - not supporting calls for a specific user
1.620 albertel 9575: return $env{join('.',('request.course',$qualifier))};
1.48 www 9576: # ------------------------------------------------------------------- user.role
9577: } elsif ($space eq 'role') {
1.218 albertel 9578: # FIXME - not supporting calls for a specific user
1.620 albertel 9579: my ($role,$where)=split(/\./,$env{'request.role'});
1.48 www 9580: if ($qualifier eq 'value') {
9581: return $role;
9582: } elsif ($qualifier eq 'extent') {
9583: return $where;
9584: }
9585: # ----------------------------------------------------------------- user.domain
9586: } elsif ($space eq 'domain') {
1.218 albertel 9587: return $udom;
1.48 www 9588: # ------------------------------------------------------------------- user.name
9589: } elsif ($space eq 'name') {
1.218 albertel 9590: return $uname;
1.48 www 9591: # ---------------------------------------------------- Any other user namespace
1.29 www 9592: } else {
1.359 albertel 9593: my %reply;
9594: if (!$publicuser) {
9595: %reply=&get($space,[$qualifierrest],$udom,$uname);
9596: }
9597: return $reply{$qualifierrest};
1.48 www 9598: }
1.236 www 9599: } elsif ($realm eq 'query') {
9600: # ---------------------------------------------- pull stuff out of query string
1.384 albertel 9601: &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
9602: [$spacequalifierrest]);
1.620 albertel 9603: return $env{'form.'.$spacequalifierrest};
1.236 www 9604: } elsif ($realm eq 'request') {
1.48 www 9605: # ------------------------------------------------------------- request.browser
9606: if ($space eq 'browser') {
1.1145 bisitz 9607: return $env{'browser.'.$qualifier};
1.57 www 9608: # ------------------------------------------------------------ request.filename
9609: } else {
1.620 albertel 9610: return $env{'request.'.$spacequalifierrest};
1.29 www 9611: }
1.28 www 9612: } elsif ($realm eq 'course') {
1.48 www 9613: # ---------------------------------------------------------- course.description
1.620 albertel 9614: return $env{'course.'.$courseid.'.'.$spacequalifierrest};
1.57 www 9615: } elsif ($realm eq 'resource') {
1.165 www 9616:
1.620 albertel 9617: if (defined($courseid) && $courseid eq $env{'request.course.id'}) {
1.539 albertel 9618: if (!$symbparm) { $symbparm=&symbread(); }
9619: }
1.693 albertel 9620:
9621: if ($space eq 'title') {
9622: if (!$symbparm) { $symbparm = $env{'request.filename'}; }
9623: return &gettitle($symbparm);
9624: }
9625:
9626: if ($space eq 'map') {
9627: my ($map) = &decode_symb($symbparm);
9628: return &symbread($map);
9629: }
1.905 albertel 9630: if ($space eq 'filename') {
9631: if ($symbparm) {
9632: return &clutter((&decode_symb($symbparm))[2]);
9633: }
9634: return &hreflocation('',$env{'request.filename'});
9635: }
1.693 albertel 9636:
9637: my ($section, $group, @groups);
1.593 albertel 9638: my ($courselevelm,$courselevel);
1.539 albertel 9639: if ($symbparm && defined($courseid) &&
1.620 albertel 9640: $courseid eq $env{'request.course.id'}) {
1.165 www 9641:
1.218 albertel 9642: #print '<br>'.$space.' - '.$qualifier.' - '.$spacequalifierrest;
1.165 www 9643:
1.60 www 9644: # ----------------------------------------------------- Cascading lookup scheme
1.218 albertel 9645: my $symbp=$symbparm;
1.735 albertel 9646: my $mapp=&deversion((&decode_symb($symbp))[0]);
1.218 albertel 9647:
9648: my $symbparm=$symbp.'.'.$spacequalifierrest;
9649: my $mapparm=$mapp.'___(all).'.$spacequalifierrest;
9650:
1.620 albertel 9651: if (($env{'user.name'} eq $uname) &&
9652: ($env{'user.domain'} eq $udom)) {
9653: $section=$env{'request.course.sec'};
1.733 raeburn 9654: @groups = split(/:/,$env{'request.course.groups'});
9655: @groups=&sort_course_groups($courseid,@groups);
1.218 albertel 9656: } else {
1.539 albertel 9657: if (! defined($usection)) {
1.551 albertel 9658: $section=&getsection($udom,$uname,$courseid);
1.539 albertel 9659: } else {
9660: $section = $usection;
9661: }
1.733 raeburn 9662: @groups = &get_users_groups($udom,$uname,$courseid);
1.218 albertel 9663: }
9664:
9665: my $seclevel=$courseid.'.['.$section.'].'.$spacequalifierrest;
9666: my $seclevelr=$courseid.'.['.$section.'].'.$symbparm;
9667: my $seclevelm=$courseid.'.['.$section.'].'.$mapparm;
9668:
1.593 albertel 9669: $courselevel=$courseid.'.'.$spacequalifierrest;
1.218 albertel 9670: my $courselevelr=$courseid.'.'.$symbparm;
1.593 albertel 9671: $courselevelm=$courseid.'.'.$mapparm;
1.69 www 9672:
1.60 www 9673: # ----------------------------------------------------------- first, check user
1.624 albertel 9674:
9675: my $userreply=&resdata($uname,$udom,'user',
1.927 albertel 9676: ([$courselevelr,'resource'],
9677: [$courselevelm,'map' ],
9678: [$courselevel, 'course' ]));
1.931 albertel 9679: if (defined($userreply)) { return &get_reply($userreply); }
1.95 www 9680:
1.594 albertel 9681: # ------------------------------------------------ second, check some of course
1.684 raeburn 9682: my $coursereply;
1.691 raeburn 9683: if (@groups > 0) {
9684: $coursereply = &check_group_parms($courseid,\@groups,$symbparm,
9685: $mapparm,$spacequalifierrest);
1.927 albertel 9686: if (defined($coursereply)) { return &get_reply($coursereply); }
1.684 raeburn 9687: }
1.96 www 9688:
1.684 raeburn 9689: $coursereply=&resdata($env{'course.'.$courseid.'.num'},
1.927 albertel 9690: $env{'course.'.$courseid.'.domain'},
9691: 'course',
9692: ([$seclevelr, 'resource'],
9693: [$seclevelm, 'map' ],
9694: [$seclevel, 'course' ],
9695: [$courselevelr,'resource']));
9696: if (defined($coursereply)) { return &get_reply($coursereply); }
1.200 www 9697:
1.60 www 9698: # ------------------------------------------------------ third, check map parms
1.218 albertel 9699: my %parmhash=();
9700: my $thisparm='';
9701: if (tie(%parmhash,'GDBM_File',
1.620 albertel 9702: $env{'request.course.fn'}.'_parms.db',
1.256 albertel 9703: &GDBM_READER(),0640)) {
1.218 albertel 9704: $thisparm=$parmhash{$symbparm};
9705: untie(%parmhash);
9706: }
1.927 albertel 9707: if ($thisparm) { return &get_reply([$thisparm,'resource']); }
1.218 albertel 9708: }
1.594 albertel 9709: # ------------------------------------------ fourth, look in resource metadata
1.71 www 9710:
1.218 albertel 9711: $spacequalifierrest=~s/\./\_/;
1.282 albertel 9712: my $filename;
9713: if (!$symbparm) { $symbparm=&symbread(); }
9714: if ($symbparm) {
1.409 www 9715: $filename=(&decode_symb($symbparm))[2];
1.282 albertel 9716: } else {
1.620 albertel 9717: $filename=$env{'request.filename'};
1.282 albertel 9718: }
9719: my $metadata=&metadata($filename,$spacequalifierrest);
1.927 albertel 9720: if (defined($metadata)) { return &get_reply([$metadata,'resource']); }
1.282 albertel 9721: $metadata=&metadata($filename,'parameter_'.$spacequalifierrest);
1.927 albertel 9722: if (defined($metadata)) { return &get_reply([$metadata,'resource']); }
1.142 www 9723:
1.927 albertel 9724: # ---------------------------------------------- fourth, look in rest of course
1.593 albertel 9725: if ($symbparm && defined($courseid) &&
1.620 albertel 9726: $courseid eq $env{'request.course.id'}) {
1.624 albertel 9727: my $coursereply=&resdata($env{'course.'.$courseid.'.num'},
9728: $env{'course.'.$courseid.'.domain'},
9729: 'course',
1.927 albertel 9730: ([$courselevelm,'map' ],
9731: [$courselevel, 'course']));
9732: if (defined($coursereply)) { return &get_reply($coursereply); }
1.593 albertel 9733: }
1.145 www 9734: # ------------------------------------------------------------------ Cascade up
1.218 albertel 9735: unless ($space eq '0') {
1.336 albertel 9736: my @parts=split(/_/,$space);
9737: my $id=pop(@parts);
9738: my $part=join('_',@parts);
9739: if ($part eq '') { $part='0'; }
1.927 albertel 9740: my @partgeneral=&EXT('resource.'.$part.'.'.$qualifierrest,
1.395 albertel 9741: $symbparm,$udom,$uname,$section,1);
1.938 raeburn 9742: if (defined($partgeneral[0])) { return &get_reply(\@partgeneral); }
1.218 albertel 9743: }
1.395 albertel 9744: if ($recurse) { return undef; }
9745: my $pack_def=&packages_tab_default($filename,$varname);
1.927 albertel 9746: if (defined($pack_def)) { return &get_reply([$pack_def,'resource']); }
1.48 www 9747: # ---------------------------------------------------- Any other user namespace
9748: } elsif ($realm eq 'environment') {
9749: # ----------------------------------------------------------------- environment
1.620 albertel 9750: if (($uname eq $env{'user.name'})&&($udom eq $env{'user.domain'})) {
9751: return $env{'environment.'.$spacequalifierrest};
1.219 albertel 9752: } else {
1.770 albertel 9753: if ($uname eq 'anonymous' && $udom eq '') {
9754: return '';
9755: }
1.219 albertel 9756: my %returnhash=&userenvironment($udom,$uname,
9757: $spacequalifierrest);
9758: return $returnhash{$spacequalifierrest};
9759: }
1.28 www 9760: } elsif ($realm eq 'system') {
1.48 www 9761: # ----------------------------------------------------------------- system.time
9762: if ($space eq 'time') {
9763: return time;
9764: }
1.696 albertel 9765: } elsif ($realm eq 'server') {
9766: # ----------------------------------------------------------------- system.time
9767: if ($space eq 'name') {
9768: return $ENV{'SERVER_NAME'};
9769: }
1.28 www 9770: }
1.48 www 9771: return '';
1.61 www 9772: }
9773:
1.927 albertel 9774: sub get_reply {
9775: my ($reply_value) = @_;
1.940 raeburn 9776: if (ref($reply_value) eq 'ARRAY') {
9777: if (wantarray) {
9778: return @$reply_value;
9779: }
9780: return $reply_value->[0];
9781: } else {
9782: return $reply_value;
1.927 albertel 9783: }
9784: }
9785:
1.691 raeburn 9786: sub check_group_parms {
9787: my ($courseid,$groups,$symbparm,$mapparm,$what) = @_;
9788: my @groupitems = ();
9789: my $resultitem;
1.927 albertel 9790: my @levels = ([$symbparm,'resource'],[$mapparm,'map'],[$what,'course']);
1.691 raeburn 9791: foreach my $group (@{$groups}) {
9792: foreach my $level (@levels) {
1.927 albertel 9793: my $item = $courseid.'.['.$group.'].'.$level->[0];
9794: push(@groupitems,[$item,$level->[1]]);
1.691 raeburn 9795: }
9796: }
9797: my $coursereply = &resdata($env{'course.'.$courseid.'.num'},
9798: $env{'course.'.$courseid.'.domain'},
9799: 'course',@groupitems);
9800: return $coursereply;
9801: }
9802:
9803: sub sort_course_groups { # Sort groups based on defined rankings. Default is sort().
1.733 raeburn 9804: my ($courseid,@groups) = @_;
9805: @groups = sort(@groups);
1.691 raeburn 9806: return @groups;
9807: }
9808:
1.395 albertel 9809: sub packages_tab_default {
9810: my ($uri,$varname)=@_;
9811: my (undef,$part,$name)=split(/\./,$varname);
1.738 albertel 9812:
9813: my (@extension,@specifics,$do_default);
9814: foreach my $package (split(/,/,&metadata($uri,'packages'))) {
1.395 albertel 9815: my ($pack_type,$pack_part)=split(/_/,$package,2);
1.738 albertel 9816: if ($pack_type eq 'default') {
9817: $do_default=1;
9818: } elsif ($pack_type eq 'extension') {
9819: push(@extension,[$package,$pack_type,$pack_part]);
1.885 albertel 9820: } elsif ($pack_part eq $part || $pack_type eq 'part') {
1.848 albertel 9821: # only look at packages defaults for packages that this id is
1.738 albertel 9822: push(@specifics,[$package,$pack_type,$pack_part]);
9823: }
9824: }
9825: # first look for a package that matches the requested part id
9826: foreach my $package (@specifics) {
9827: my (undef,$pack_type,$pack_part)=@{$package};
9828: next if ($pack_part ne $part);
9829: if (defined($packagetab{"$pack_type&$name&default"})) {
9830: return $packagetab{"$pack_type&$name&default"};
9831: }
9832: }
9833: # look for any possible matching non extension_ package
9834: foreach my $package (@specifics) {
9835: my (undef,$pack_type,$pack_part)=@{$package};
1.468 albertel 9836: if (defined($packagetab{"$pack_type&$name&default"})) {
9837: return $packagetab{"$pack_type&$name&default"};
9838: }
1.585 albertel 9839: if ($pack_type eq 'part') { $pack_part='0'; }
1.468 albertel 9840: if (defined($packagetab{$pack_type."_".$pack_part."&$name&default"})) {
9841: return $packagetab{$pack_type."_".$pack_part."&$name&default"};
1.395 albertel 9842: }
9843: }
1.738 albertel 9844: # look for any posible extension_ match
9845: foreach my $package (@extension) {
9846: my ($package,$pack_type)=@{$package};
9847: if (defined($packagetab{"$pack_type&$name&default"})) {
9848: return $packagetab{"$pack_type&$name&default"};
9849: }
9850: if (defined($packagetab{$package."&$name&default"})) {
9851: return $packagetab{$package."&$name&default"};
9852: }
9853: }
9854: # look for a global default setting
9855: if ($do_default && defined($packagetab{"default&$name&default"})) {
9856: return $packagetab{"default&$name&default"};
9857: }
1.395 albertel 9858: return undef;
9859: }
9860:
1.334 albertel 9861: sub add_prefix_and_part {
9862: my ($prefix,$part)=@_;
9863: my $keyroot;
9864: if (defined($prefix) && $prefix !~ /^__/) {
9865: # prefix that has a part already
9866: $keyroot=$prefix;
9867: } elsif (defined($prefix)) {
9868: # prefix that is missing a part
9869: if (defined($part)) { $keyroot='_'.$part.substr($prefix,1); }
9870: } else {
9871: # no prefix at all
9872: if (defined($part)) { $keyroot='_'.$part; }
9873: }
9874: return $keyroot;
9875: }
9876:
1.71 www 9877: # ---------------------------------------------------------------- Get metadata
9878:
1.599 albertel 9879: my %metaentry;
1.1070 www 9880: my %importedpartids;
1.71 www 9881: sub metadata {
1.176 www 9882: my ($uri,$what,$liburi,$prefix,$depthcount)=@_;
1.71 www 9883: $uri=&declutter($uri);
1.288 albertel 9884: # if it is a non metadata possible uri return quickly
1.529 albertel 9885: if (($uri eq '') ||
9886: (($uri =~ m|^/*adm/|) &&
1.698 albertel 9887: ($uri !~ m|^adm/includes|) && ($uri !~ m|/bulletinboard$|)) ||
1.1108 raeburn 9888: ($uri =~ m|/$|) || ($uri =~ m|/.meta$|) || ($uri =~ m{^/*uploaded/.+\.sequence$})) {
1.924 albertel 9889: return undef;
9890: }
1.1140 www 9891: if (($uri =~ /^priv/ || $uri=~/home\/httpd\/html\/priv/)
1.924 albertel 9892: && &Apache::lonxml::get_state('target') =~ /^(|meta)$/) {
1.468 albertel 9893: return undef;
1.288 albertel 9894: }
1.73 www 9895: my $filename=$uri;
9896: $uri=~s/\.meta$//;
1.172 www 9897: #
9898: # Is the metadata already cached?
1.177 www 9899: # Look at timestamp of caching
1.172 www 9900: # Everything is cached by the main uri, libraries are never directly cached
9901: #
1.428 albertel 9902: if (!defined($liburi)) {
1.599 albertel 9903: my ($result,$cached)=&is_cached_new('meta',$uri);
1.428 albertel 9904: if (defined($cached)) { return $result->{':'.$what}; }
9905: }
9906: {
1.1069 www 9907: # Imported parts would go here
1.1070 www 9908: my %importedids=();
9909: my @origfileimportpartids=();
1.1069 www 9910: my $importedparts=0;
1.172 www 9911: #
9912: # Is this a recursive call for a library?
9913: #
1.599 albertel 9914: # if (! exists($metacache{$uri})) {
9915: # $metacache{$uri}={};
9916: # }
1.924 albertel 9917: my $cachetime = 60*60;
1.171 www 9918: if ($liburi) {
9919: $liburi=&declutter($liburi);
9920: $filename=$liburi;
1.401 bowersj2 9921: } else {
1.599 albertel 9922: &devalidate_cache_new('meta',$uri);
9923: undef(%metaentry);
1.401 bowersj2 9924: }
1.140 www 9925: my %metathesekeys=();
1.73 www 9926: unless ($filename=~/\.meta$/) { $filename.='.meta'; }
1.489 albertel 9927: my $metastring;
1.1140 www 9928: if ($uri =~ /^priv/ || $uri=~/home\/httpd\/html\/priv/) {
1.929 albertel 9929: my $which = &hreflocation('','/'.($liburi || $uri));
1.924 albertel 9930: $metastring =
1.929 albertel 9931: &Apache::lonnet::ssi_body($which,
1.924 albertel 9932: ('grade_target' => 'meta'));
9933: $cachetime = 1; # only want this cached in the child not long term
1.1108 raeburn 9934: } elsif (($uri !~ m -^(editupload)/-) &&
9935: ($uri !~ m{^/*uploaded/$match_domain/$match_courseid/docs/})) {
1.543 albertel 9936: my $file=&filelocation('',&clutter($filename));
1.599 albertel 9937: #push(@{$metaentry{$uri.'.file'}},$file);
1.543 albertel 9938: $metastring=&getfile($file);
1.489 albertel 9939: }
1.208 albertel 9940: my $parser=HTML::LCParser->new(\$metastring);
1.71 www 9941: my $token;
1.140 www 9942: undef %metathesekeys;
1.71 www 9943: while ($token=$parser->get_token) {
1.339 albertel 9944: if ($token->[0] eq 'S') {
9945: if (defined($token->[2]->{'package'})) {
1.172 www 9946: #
9947: # This is a package - get package info
9948: #
1.339 albertel 9949: my $package=$token->[2]->{'package'};
9950: my $keyroot=&add_prefix_and_part($prefix,$token->[2]->{'part'});
9951: if (defined($token->[2]->{'id'})) {
9952: $keyroot.='_'.$token->[2]->{'id'};
9953: }
1.599 albertel 9954: if ($metaentry{':packages'}) {
9955: $metaentry{':packages'}.=','.$package.$keyroot;
1.339 albertel 9956: } else {
1.599 albertel 9957: $metaentry{':packages'}=$package.$keyroot;
1.339 albertel 9958: }
1.736 albertel 9959: foreach my $pack_entry (keys(%packagetab)) {
1.432 albertel 9960: my $part=$keyroot;
9961: $part=~s/^\_//;
1.736 albertel 9962: if ($pack_entry=~/^\Q$package\E\&/ ||
9963: $pack_entry=~/^\Q$package\E_0\&/) {
9964: my ($pack,$name,$subp)=split(/\&/,$pack_entry);
1.395 albertel 9965: # ignore package.tab specified default values
9966: # here &package_tab_default() will fetch those
9967: if ($subp eq 'default') { next; }
1.736 albertel 9968: my $value=$packagetab{$pack_entry};
1.432 albertel 9969: my $unikey;
9970: if ($pack =~ /_0$/) {
9971: $unikey='parameter_0_'.$name;
9972: $part=0;
9973: } else {
9974: $unikey='parameter'.$keyroot.'_'.$name;
9975: }
1.339 albertel 9976: if ($subp eq 'display') {
9977: $value.=' [Part: '.$part.']';
9978: }
1.599 albertel 9979: $metaentry{':'.$unikey.'.part'}=$part;
1.395 albertel 9980: $metathesekeys{$unikey}=1;
1.599 albertel 9981: unless (defined($metaentry{':'.$unikey.'.'.$subp})) {
9982: $metaentry{':'.$unikey.'.'.$subp}=$value;
1.339 albertel 9983: }
1.599 albertel 9984: if (defined($metaentry{':'.$unikey.'.default'})) {
9985: $metaentry{':'.$unikey}=
9986: $metaentry{':'.$unikey.'.default'};
1.356 albertel 9987: }
1.339 albertel 9988: }
9989: }
9990: } else {
1.172 www 9991: #
9992: # This is not a package - some other kind of start tag
1.339 albertel 9993: #
9994: my $entry=$token->[1];
1.1068 www 9995: my $unikey='';
1.175 www 9996:
1.339 albertel 9997: if ($entry eq 'import') {
1.175 www 9998: #
9999: # Importing a library here
1.339 albertel 10000: #
1.1067 www 10001: my $location=$parser->get_text('/import');
10002: my $dir=$filename;
10003: $dir=~s|[^/]*$||;
10004: $location=&filelocation($dir,$location);
1.1069 www 10005:
1.1068 www 10006: my $importmode=$token->[2]->{'importmode'};
10007: if ($importmode eq 'problem') {
1.1069 www 10008: # Import as problem/response
1.1068 www 10009: $unikey=&add_prefix_and_part($prefix,$token->[2]->{'part'});
10010: } elsif ($importmode eq 'part') {
10011: # Import as part(s)
1.1069 www 10012: $importedparts=1;
10013: # We need to get the original file and the imported file to get the part order correct
10014: # Good news: we do not need to worry about nested libraries, since parts cannot be nested
10015: # Load and inspect original file
1.1070 www 10016: if ($#origfileimportpartids<0) {
10017: undef(%importedpartids);
10018: my $origfilelocation=$perlvar{'lonDocRoot'}.&clutter($uri);
10019: my $origfile=&getfile($origfilelocation);
10020: @origfileimportpartids=($origfile=~/<(part|import)[^>]*id\s*=\s*[\"\']([^\"\']+)[\"\'][^>]*>/gs);
10021: }
10022:
1.1069 www 10023: # Load and inspect imported file
10024: my $impfile=&getfile($location);
10025: my @impfilepartids=($impfile=~/<part[^>]*id\s*=\s*[\"\']([^\"\']+)[\"\'][^>]*>/gs);
10026: if ($#impfilepartids>=0) {
10027: # This problem had parts
1.1070 www 10028: $importedpartids{$token->[2]->{'id'}}=join(',',@impfilepartids);
1.1069 www 10029: } else {
10030: # Importing by turning a single problem into a problem part
10031: # It gets the import-tags ID as part-ID
10032: $unikey=&add_prefix_and_part($prefix,$token->[2]->{'id'});
1.1070 www 10033: $importedpartids{$token->[2]->{'id'}}=$token->[2]->{'id'};
1.1069 www 10034: }
1.1068 www 10035: } else {
10036: # Normal import
10037: $unikey=&add_prefix_and_part($prefix,$token->[2]->{'part'});
10038: if (defined($token->[2]->{'id'})) {
10039: $unikey.='_'.$token->[2]->{'id'};
10040: }
1.1067 www 10041: }
10042:
1.339 albertel 10043: if ($depthcount<20) {
1.736 albertel 10044: my $metadata =
10045: &metadata($uri,'keys', $location,$unikey,
10046: $depthcount+1);
10047: foreach my $meta (split(',',$metadata)) {
10048: $metaentry{':'.$meta}=$metaentry{':'.$meta};
10049: $metathesekeys{$meta}=1;
1.339 albertel 10050: }
1.1068 www 10051:
10052: }
1.1067 www 10053: } else {
10054: #
10055: # Not importing, some other kind of non-package, non-library start tag
10056: #
10057: $unikey=$entry.&add_prefix_and_part($prefix,$token->[2]->{'part'});
10058: if (defined($token->[2]->{'id'})) {
10059: $unikey.='_'.$token->[2]->{'id'};
10060: }
1.339 albertel 10061: if (defined($token->[2]->{'name'})) {
10062: $unikey.='_'.$token->[2]->{'name'};
10063: }
10064: $metathesekeys{$unikey}=1;
1.736 albertel 10065: foreach my $param (@{$token->[3]}) {
10066: $metaentry{':'.$unikey.'.'.$param} =
10067: $token->[2]->{$param};
1.339 albertel 10068: }
10069: my $internaltext=&HTML::Entities::decode($parser->get_text('/'.$entry));
1.599 albertel 10070: my $default=$metaentry{':'.$unikey.'.default'};
1.339 albertel 10071: if ( $internaltext =~ /^\s*$/ && $default !~ /^\s*$/) {
10072: # only ws inside the tag, and not in default, so use default
10073: # as value
1.599 albertel 10074: $metaentry{':'.$unikey}=$default;
1.908 albertel 10075: } elsif ( $internaltext =~ /\S/ ) {
10076: # something interesting inside the tag
10077: $metaentry{':'.$unikey}=$internaltext;
1.339 albertel 10078: } else {
1.908 albertel 10079: # no interesting values, don't set a default
1.339 albertel 10080: }
1.172 www 10081: # end of not-a-package not-a-library import
1.339 albertel 10082: }
1.172 www 10083: # end of not-a-package start tag
1.339 albertel 10084: }
1.172 www 10085: # the next is the end of "start tag"
1.339 albertel 10086: }
10087: }
1.483 albertel 10088: my ($extension) = ($uri =~ /\.(\w+)$/);
1.883 albertel 10089: $extension = lc($extension);
10090: if ($extension eq 'htm') { $extension='html'; }
10091:
1.737 albertel 10092: foreach my $key (keys(%packagetab)) {
1.483 albertel 10093: #no specific packages #how's our extension
10094: if ($key!~/^extension_\Q$extension\E&/) { next; }
1.488 albertel 10095: &metadata_create_package_def($uri,$key,'extension_'.$extension,
1.483 albertel 10096: \%metathesekeys);
10097: }
1.883 albertel 10098:
10099: if (!exists($metaentry{':packages'})
10100: || $packagetab{"import_defaults&extension_$extension"}) {
1.737 albertel 10101: foreach my $key (keys(%packagetab)) {
1.483 albertel 10102: #no specific packages well let's get default then
10103: if ($key!~/^default&/) { next; }
1.488 albertel 10104: &metadata_create_package_def($uri,$key,'default',
1.483 albertel 10105: \%metathesekeys);
10106: }
10107: }
1.338 www 10108: # are there custom rights to evaluate
1.599 albertel 10109: if ($metaentry{':copyright'} eq 'custom') {
1.339 albertel 10110:
1.338 www 10111: #
10112: # Importing a rights file here
1.339 albertel 10113: #
10114: unless ($depthcount) {
1.599 albertel 10115: my $location=$metaentry{':customdistributionfile'};
1.339 albertel 10116: my $dir=$filename;
10117: $dir=~s|[^/]*$||;
10118: $location=&filelocation($dir,$location);
1.736 albertel 10119: my $rights_metadata =
10120: &metadata($uri,'keys',$location,'_rights',
10121: $depthcount+1);
10122: foreach my $rights (split(',',$rights_metadata)) {
10123: #$metaentry{':'.$rights}=$metacache{$uri}->{':'.$rights};
10124: $metathesekeys{$rights}=1;
1.339 albertel 10125: }
10126: }
10127: }
1.737 albertel 10128: # uniqifiy package listing
10129: my %seen;
10130: my @uniq_packages =
10131: grep { ! $seen{$_} ++ } (split(',',$metaentry{':packages'}));
10132: $metaentry{':packages'} = join(',',@uniq_packages);
10133:
1.1070 www 10134: if ($importedparts) {
10135: # We had imported parts and need to rebuild partorder
10136: $metaentry{':partorder'}='';
10137: $metathesekeys{'partorder'}=1;
10138: for (my $index=0;$index<$#origfileimportpartids;$index+=2) {
10139: if ($origfileimportpartids[$index] eq 'part') {
10140: # original part, part of the problem
10141: $metaentry{':partorder'}.=','.$origfileimportpartids[$index+1];
10142: } else {
10143: # we have imported parts at this position
10144: $metaentry{':partorder'}.=','.$importedpartids{$origfileimportpartids[$index+1]};
10145: }
10146: }
10147: $metaentry{':partorder'}=~s/^\,//;
10148: }
10149:
1.737 albertel 10150: $metaentry{':keys'} = join(',',keys(%metathesekeys));
1.599 albertel 10151: &metadata_generate_part0(\%metathesekeys,\%metaentry,$uri);
10152: $metaentry{':allpossiblekeys'}=join(',',keys %metathesekeys);
1.924 albertel 10153: &do_cache_new('meta',$uri,\%metaentry,$cachetime);
1.177 www 10154: # this is the end of "was not already recently cached
1.71 www 10155: }
1.599 albertel 10156: return $metaentry{':'.$what};
1.261 albertel 10157: }
10158:
1.488 albertel 10159: sub metadata_create_package_def {
1.483 albertel 10160: my ($uri,$key,$package,$metathesekeys)=@_;
10161: my ($pack,$name,$subp)=split(/\&/,$key);
10162: if ($subp eq 'default') { next; }
10163:
1.599 albertel 10164: if (defined($metaentry{':packages'})) {
10165: $metaentry{':packages'}.=','.$package;
1.483 albertel 10166: } else {
1.599 albertel 10167: $metaentry{':packages'}=$package;
1.483 albertel 10168: }
10169: my $value=$packagetab{$key};
10170: my $unikey;
10171: $unikey='parameter_0_'.$name;
1.599 albertel 10172: $metaentry{':'.$unikey.'.part'}=0;
1.483 albertel 10173: $$metathesekeys{$unikey}=1;
1.599 albertel 10174: unless (defined($metaentry{':'.$unikey.'.'.$subp})) {
10175: $metaentry{':'.$unikey.'.'.$subp}=$value;
1.483 albertel 10176: }
1.599 albertel 10177: if (defined($metaentry{':'.$unikey.'.default'})) {
10178: $metaentry{':'.$unikey}=
10179: $metaentry{':'.$unikey.'.default'};
1.483 albertel 10180: }
10181: }
10182:
1.261 albertel 10183: sub metadata_generate_part0 {
10184: my ($metadata,$metacache,$uri) = @_;
10185: my %allnames;
1.737 albertel 10186: foreach my $metakey (keys(%$metadata)) {
1.261 albertel 10187: if ($metakey=~/^parameter\_(.*)/) {
1.428 albertel 10188: my $part=$$metacache{':'.$metakey.'.part'};
10189: my $name=$$metacache{':'.$metakey.'.name'};
1.356 albertel 10190: if (! exists($$metadata{'parameter_0_'.$name.'.name'})) {
1.261 albertel 10191: $allnames{$name}=$part;
10192: }
10193: }
10194: }
10195: foreach my $name (keys(%allnames)) {
10196: $$metadata{"parameter_0_$name"}=1;
1.428 albertel 10197: my $key=":parameter_0_$name";
1.261 albertel 10198: $$metacache{"$key.part"}='0';
10199: $$metacache{"$key.name"}=$name;
1.428 albertel 10200: $$metacache{"$key.type"}=$$metacache{':parameter_'.
1.261 albertel 10201: $allnames{$name}.'_'.$name.
10202: '.type'};
1.428 albertel 10203: my $olddis=$$metacache{':parameter_'.$allnames{$name}.'_'.$name.
1.261 albertel 10204: '.display'};
1.644 www 10205: my $expr='[Part: '.$allnames{$name}.']';
1.479 albertel 10206: $olddis=~s/\Q$expr\E/\[Part: 0\]/;
1.261 albertel 10207: $$metacache{"$key.display"}=$olddis;
10208: }
1.71 www 10209: }
10210:
1.764 albertel 10211: # ------------------------------------------------------ Devalidate title cache
10212:
10213: sub devalidate_title_cache {
10214: my ($url)=@_;
10215: if (!$env{'request.course.id'}) { return; }
10216: my $symb=&symbread($url);
10217: if (!$symb) { return; }
10218: my $key=$env{'request.course.id'}."\0".$symb;
10219: &devalidate_cache_new('title',$key);
10220: }
10221:
1.1014 droeschl 10222: # ------------------------------------------------- Get the title of a course
10223:
10224: sub current_course_title {
10225: return $env{ 'course.' . $env{'request.course.id'} . '.description' };
10226: }
1.301 www 10227: # ------------------------------------------------- Get the title of a resource
10228:
10229: sub gettitle {
10230: my $urlsymb=shift;
10231: my $symb=&symbread($urlsymb);
1.534 albertel 10232: if ($symb) {
1.620 albertel 10233: my $key=$env{'request.course.id'}."\0".$symb;
1.599 albertel 10234: my ($result,$cached)=&is_cached_new('title',$key);
1.575 albertel 10235: if (defined($cached)) {
10236: return $result;
10237: }
1.534 albertel 10238: my ($map,$resid,$url)=&decode_symb($symb);
10239: my $title='';
1.907 albertel 10240: if (!$map && $resid == 0 && $url =~/default\.sequence$/) {
10241: $title = $env{'course.'.$env{'request.course.id'}.'.description'};
10242: } else {
10243: if (tie(my %bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
10244: &GDBM_READER(),0640)) {
10245: my $mapid=$bighash{'map_pc_'.&clutter($map)};
10246: $title=$bighash{'title_'.$mapid.'.'.$resid};
10247: untie(%bighash);
10248: }
1.534 albertel 10249: }
10250: $title=~s/\&colon\;/\:/gs;
10251: if ($title) {
1.1159 www 10252: # Remember both $symb and $title for dynamic metadata
10253: $accesshash{$symb.'___crstitle'}=$title;
1.1161 www 10254: $accesshash{&declutter($map).'___'.&declutter($url).'___usage'}=time;
1.1159 www 10255: # Cache this title and then return it
1.599 albertel 10256: return &do_cache_new('title',$key,$title,600);
1.534 albertel 10257: }
10258: $urlsymb=$url;
10259: }
10260: my $title=&metadata($urlsymb,'title');
10261: if (!$title) { $title=(split('/',$urlsymb))[-1]; }
10262: return $title;
1.301 www 10263: }
1.613 albertel 10264:
1.614 albertel 10265: sub get_slot {
10266: my ($which,$cnum,$cdom)=@_;
10267: if (!$cnum || !$cdom) {
1.790 albertel 10268: (undef,my $courseid)=&whichuser();
1.620 albertel 10269: $cdom=$env{'course.'.$courseid.'.domain'};
10270: $cnum=$env{'course.'.$courseid.'.num'};
1.614 albertel 10271: }
1.703 albertel 10272: my $key=join("\0",'slots',$cdom,$cnum,$which);
10273: my %slotinfo;
10274: if (exists($remembered{$key})) {
10275: $slotinfo{$which} = $remembered{$key};
10276: } else {
10277: %slotinfo=&get('slots',[$which],$cdom,$cnum);
10278: &Apache::lonhomework::showhash(%slotinfo);
10279: my ($tmp)=keys(%slotinfo);
10280: if ($tmp=~/^error:/) { return (); }
10281: $remembered{$key} = $slotinfo{$which};
10282: }
1.616 albertel 10283: if (ref($slotinfo{$which}) eq 'HASH') {
10284: return %{$slotinfo{$which}};
10285: }
10286: return $slotinfo{$which};
1.614 albertel 10287: }
1.1150 raeburn 10288:
10289: sub get_reservable_slots {
10290: my ($cnum,$cdom,$uname,$udom) = @_;
10291: my $now = time;
10292: my $reservable_info;
10293: my $key=join("\0",'reservableslots',$cdom,$cnum,$uname,$udom);
10294: if (exists($remembered{$key})) {
10295: $reservable_info = $remembered{$key};
10296: } else {
10297: my %resv;
10298: ($resv{'now_order'},$resv{'now'},$resv{'future_order'},$resv{'future'}) =
10299: &Apache::loncommon::get_future_slots($cnum,$cdom,$now);
10300: $reservable_info = \%resv;
10301: $remembered{$key} = $reservable_info;
10302: }
10303: return $reservable_info;
10304: }
10305:
10306: sub get_course_slots {
10307: my ($cnum,$cdom) = @_;
10308: my $hashid=$cnum.':'.$cdom;
10309: my ($result,$cached) = &Apache::lonnet::is_cached_new('allslots',$hashid);
10310: if (defined($cached)) {
10311: if (ref($result) eq 'HASH') {
10312: return %{$result};
10313: }
10314: } else {
10315: my %slots=&Apache::lonnet::dump('slots',$cdom,$cnum);
10316: my ($tmp) = keys(%slots);
10317: if ($tmp !~ /^(con_lost|error|no_such_host)/i) {
10318: &Apache::lonnet::do_cache_new('allslots',$hashid,\%slots,600);
10319: return %slots;
10320: }
10321: }
10322: return;
10323: }
10324:
10325: sub devalidate_slots_cache {
10326: my ($cnum,$cdom)=@_;
10327: my $hashid=$cnum.':'.$cdom;
10328: &devalidate_cache_new('allslots',$hashid);
10329: }
10330:
1.1181 raeburn 10331: sub get_coursechange {
10332: my ($cdom,$cnum) = @_;
10333: if ($cdom eq '' || $cnum eq '') {
10334: return unless ($env{'request.course.id'});
10335: $cnum = $env{'course.'.$env{'request.course.id'}.'.num'};
10336: $cdom = $env{'course.'.$env{'request.course.id'}.'.domain'};
10337: }
10338: my $hashid=$cdom.'_'.$cnum;
10339: my ($change,$cached)=&is_cached_new('crschange',$hashid);
10340: if ((defined($cached)) && ($change ne '')) {
10341: return $change;
10342: } else {
10343: my %crshash;
10344: %crshash = &get('environment',['internal.contentchange'],$cdom,$cnum);
10345: if ($crshash{'internal.contentchange'} eq '') {
10346: $change = $env{'course.'.$cdom.'_'.$cnum.'.internal.created'};
10347: if ($change eq '') {
10348: %crshash = &get('environment',['internal.created'],$cdom,$cnum);
10349: $change = $crshash{'internal.created'};
10350: }
10351: } else {
10352: $change = $crshash{'internal.contentchange'};
10353: }
10354: my $cachetime = 600;
10355: &do_cache_new('crschange',$hashid,$change,$cachetime);
10356: }
10357: return $change;
10358: }
10359:
10360: sub devalidate_coursechange_cache {
10361: my ($cnum,$cdom)=@_;
10362: my $hashid=$cnum.':'.$cdom;
10363: &devalidate_cache_new('crschange',$hashid);
10364: }
10365:
1.31 www 10366: # ------------------------------------------------- Update symbolic store links
10367:
10368: sub symblist {
10369: my ($mapname,%newhash)=@_;
1.438 www 10370: $mapname=&deversion(&declutter($mapname));
1.31 www 10371: my %hash;
1.620 albertel 10372: if (($env{'request.course.fn'}) && (%newhash)) {
10373: if (tie(%hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db',
1.256 albertel 10374: &GDBM_WRCREAT(),0640)) {
1.1000 raeburn 10375: foreach my $url (keys(%newhash)) {
1.711 albertel 10376: next if ($url eq 'last_known'
10377: && $env{'form.no_update_last_known'});
10378: $hash{declutter($url)}=&encode_symb($mapname,
10379: $newhash{$url}->[1],
10380: $newhash{$url}->[0]);
1.191 harris41 10381: }
1.31 www 10382: if (untie(%hash)) {
10383: return 'ok';
10384: }
10385: }
10386: }
10387: return 'error';
1.212 www 10388: }
10389:
10390: # --------------------------------------------------------------- Verify a symb
10391:
10392: sub symbverify {
1.1190 raeburn 10393: my ($symb,$thisurl,$encstate)=@_;
1.510 www 10394: my $thisfn=$thisurl;
1.439 www 10395: $thisfn=&declutter($thisfn);
1.215 www 10396: # direct jump to resource in page or to a sequence - will construct own symbs
10397: if ($thisfn=~/\.(page|sequence)$/) { return 1; }
10398: # check URL part
1.409 www 10399: my ($map,$resid,$url)=&decode_symb($symb);
1.439 www 10400:
1.431 www 10401: unless ($url eq $thisfn) { return 0; }
1.213 www 10402:
1.216 www 10403: $symb=&symbclean($symb);
1.510 www 10404: $thisurl=&deversion($thisurl);
1.439 www 10405: $thisfn=&deversion($thisfn);
1.213 www 10406:
10407: my %bighash;
10408: my $okay=0;
1.431 www 10409:
1.620 albertel 10410: if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.256 albertel 10411: &GDBM_READER(),0640)) {
1.1032 raeburn 10412: if (($thisurl =~ m{^/adm/wrapper/ext/}) || ($thisurl =~ m{^ext/})) {
10413: $thisurl =~ s/\?.+$//;
10414: }
1.510 www 10415: my $ids=$bighash{'ids_'.&clutter($thisurl)};
1.1102 raeburn 10416: unless ($ids) {
10417: my $idkey = 'ids_'.($thisurl =~ m{^/}? '' : '/').$thisurl;
10418: $ids=$bighash{$idkey};
1.216 www 10419: }
10420: if ($ids) {
10421: # ------------------------------------------------------------------- Has ID(s)
1.800 albertel 10422: foreach my $id (split(/\,/,$ids)) {
10423: my ($mapid,$resid)=split(/\./,$id);
1.1032 raeburn 10424: if ($thisfn =~ m{^/adm/wrapper/ext/}) {
10425: $symb =~ s/\?.+$//;
10426: }
1.216 www 10427: if (
10428: &symbclean(&declutter($bighash{'map_id_'.$mapid}).'___'.$resid.'___'.$thisfn)
1.1190 raeburn 10429: eq $symb) {
10430: if (ref($encstate)) {
10431: $$encstate = $bighash{'encrypted_'.$id};
10432: }
1.620 albertel 10433: if (($env{'request.role.adv'}) ||
1.1101 raeburn 10434: ($bighash{'encrypted_'.$id} eq $env{'request.enc'}) ||
10435: ($thisurl eq '/adm/navmaps')) {
1.1190 raeburn 10436: $okay=1;
1.582 albertel 10437: }
10438: }
1.216 www 10439: }
10440: }
1.213 www 10441: untie(%bighash);
10442: }
10443: return $okay;
1.31 www 10444: }
10445:
1.210 www 10446: # --------------------------------------------------------------- Clean-up symb
10447:
10448: sub symbclean {
10449: my $symb=shift;
1.568 albertel 10450: if ($symb=~m|^/enc/|) { $symb=&Apache::lonenc::unencrypted($symb); }
1.210 www 10451: # remove version from map
10452: $symb=~s/\.(\d+)\.(\w+)\_\_\_/\.$2\_\_\_/;
1.215 www 10453:
1.210 www 10454: # remove version from URL
10455: $symb=~s/\.(\d+)\.(\w+)$/\.$2/;
1.213 www 10456:
1.507 www 10457: # remove wrapper
10458:
1.510 www 10459: $symb=~s/(\_\_\_\d+\_\_\_)adm\/wrapper\/(res\/)*/$1/;
1.694 albertel 10460: $symb=~s/(\_\_\_\d+\_\_\_)adm\/coursedocs\/showdoc\/(res\/)*/$1/;
1.210 www 10461: return $symb;
1.409 www 10462: }
10463:
10464: # ---------------------------------------------- Split symb to find map and url
1.429 albertel 10465:
10466: sub encode_symb {
10467: my ($map,$resid,$url)=@_;
10468: return &symbclean(&declutter($map).'___'.$resid.'___'.&declutter($url));
10469: }
1.409 www 10470:
10471: sub decode_symb {
1.568 albertel 10472: my $symb=shift;
10473: if ($symb=~m|^/enc/|) { $symb=&Apache::lonenc::unencrypted($symb); }
10474: my ($map,$resid,$url)=split(/___/,$symb);
1.413 www 10475: return (&fixversion($map),$resid,&fixversion($url));
10476: }
10477:
10478: sub fixversion {
10479: my $fn=shift;
1.609 banghart 10480: if ($fn=~/^(adm|uploaded|editupload|public)/) { return $fn; }
1.435 www 10481: my %bighash;
10482: my $uri=&clutter($fn);
1.620 albertel 10483: my $key=$env{'request.course.id'}.'_'.$uri;
1.440 www 10484: # is this cached?
1.599 albertel 10485: my ($result,$cached)=&is_cached_new('courseresversion',$key);
1.440 www 10486: if (defined($cached)) { return $result; }
10487: # unfortunately not cached, or expired
1.620 albertel 10488: if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.440 www 10489: &GDBM_READER(),0640)) {
10490: if ($bighash{'version_'.$uri}) {
10491: my $version=$bighash{'version_'.$uri};
1.444 www 10492: unless (($version eq 'mostrecent') ||
10493: ($version==&getversion($uri))) {
1.440 www 10494: $uri=~s/\.(\w+)$/\.$version\.$1/;
10495: }
10496: }
10497: untie %bighash;
1.413 www 10498: }
1.599 albertel 10499: return &do_cache_new('courseresversion',$key,&declutter($uri),600);
1.438 www 10500: }
10501:
10502: sub deversion {
10503: my $url=shift;
10504: $url=~s/\.\d+\.(\w+)$/\.$1/;
10505: return $url;
1.210 www 10506: }
10507:
1.31 www 10508: # ------------------------------------------------------ Return symb list entry
10509:
10510: sub symbread {
1.249 www 10511: my ($thisfn,$donotrecurse)=@_;
1.542 albertel 10512: my $cache_str='request.symbread.cached.'.$thisfn;
1.1179 raeburn 10513: if (defined($env{$cache_str})) {
10514: if (($thisfn) || ($env{$cache_str} ne '')) {
10515: return $env{$cache_str};
10516: }
10517: }
1.242 www 10518: # no filename provided? try from environment
1.44 www 10519: unless ($thisfn) {
1.620 albertel 10520: if ($env{'request.symb'}) {
10521: return $env{$cache_str}=&symbclean($env{'request.symb'});
1.539 albertel 10522: }
1.620 albertel 10523: $thisfn=$env{'request.filename'};
1.44 www 10524: }
1.569 albertel 10525: if ($thisfn=~m|^/enc/|) { $thisfn=&Apache::lonenc::unencrypted($thisfn); }
1.242 www 10526: # is that filename actually a symb? Verify, clean, and return
10527: if ($thisfn=~/\_\_\_\d+\_\_\_(.*)$/) {
1.539 albertel 10528: if (&symbverify($thisfn,$1)) {
1.620 albertel 10529: return $env{$cache_str}=&symbclean($thisfn);
1.539 albertel 10530: }
1.242 www 10531: }
1.44 www 10532: $thisfn=declutter($thisfn);
1.31 www 10533: my %hash;
1.37 www 10534: my %bighash;
10535: my $syval='';
1.620 albertel 10536: if (($env{'request.course.fn'}) && ($thisfn)) {
1.481 raeburn 10537: my $targetfn = $thisfn;
1.609 banghart 10538: if ( ($thisfn =~ m/^(uploaded|editupload)\//) && ($thisfn !~ m/\.(page|sequence)$/) ) {
1.481 raeburn 10539: $targetfn = 'adm/wrapper/'.$thisfn;
10540: }
1.687 albertel 10541: if ($targetfn =~ m|^adm/wrapper/(ext/.*)|) {
10542: $targetfn=$1;
10543: }
1.620 albertel 10544: if (tie(%hash,'GDBM_File',$env{'request.course.fn'}.'_symb.db',
1.256 albertel 10545: &GDBM_READER(),0640)) {
1.481 raeburn 10546: $syval=$hash{$targetfn};
1.37 www 10547: untie(%hash);
10548: }
10549: # ---------------------------------------------------------- There was an entry
10550: if ($syval) {
1.601 albertel 10551: #unless ($syval=~/\_\d+$/) {
1.620 albertel 10552: #unless ($env{'form.request.prefix'}=~/\.(\d+)\_$/) {
1.949 raeburn 10553: #&appenv({'request.ambiguous' => $thisfn});
1.620 albertel 10554: #return $env{$cache_str}='';
1.601 albertel 10555: #}
10556: #$syval.=$1;
10557: #}
1.37 www 10558: } else {
10559: # ------------------------------------------------------- Was not in symb table
1.620 albertel 10560: if (tie(%bighash,'GDBM_File',$env{'request.course.fn'}.'.db',
1.256 albertel 10561: &GDBM_READER(),0640)) {
1.37 www 10562: # ---------------------------------------------- Get ID(s) for current resource
1.280 www 10563: my $ids=$bighash{'ids_'.&clutter($thisfn)};
1.65 www 10564: unless ($ids) {
10565: $ids=$bighash{'ids_/'.$thisfn};
1.242 www 10566: }
10567: unless ($ids) {
10568: # alias?
10569: $ids=$bighash{'mapalias_'.$thisfn};
1.65 www 10570: }
1.37 www 10571: if ($ids) {
10572: # ------------------------------------------------------------------- Has ID(s)
10573: my @possibilities=split(/\,/,$ids);
1.39 www 10574: if ($#possibilities==0) {
10575: # ----------------------------------------------- There is only one possibility
1.37 www 10576: my ($mapid,$resid)=split(/\./,$ids);
1.626 albertel 10577: $syval=&encode_symb($bighash{'map_id_'.$mapid},
10578: $resid,$thisfn);
1.249 www 10579: } elsif (!$donotrecurse) {
1.39 www 10580: # ------------------------------------------ There is more than one possibility
10581: my $realpossible=0;
1.800 albertel 10582: foreach my $id (@possibilities) {
10583: my $file=$bighash{'src_'.$id};
1.39 www 10584: if (&allowed('bre',$file)) {
1.800 albertel 10585: my ($mapid,$resid)=split(/\./,$id);
1.39 www 10586: if ($bighash{'map_type_'.$mapid} ne 'page') {
10587: $realpossible++;
1.626 albertel 10588: $syval=&encode_symb($bighash{'map_id_'.$mapid},
10589: $resid,$thisfn);
1.39 www 10590: }
10591: }
1.191 harris41 10592: }
1.39 www 10593: if ($realpossible!=1) { $syval=''; }
1.249 www 10594: } else {
10595: $syval='';
1.37 www 10596: }
10597: }
10598: untie(%bighash)
1.481 raeburn 10599: }
1.31 www 10600: }
1.62 www 10601: if ($syval) {
1.620 albertel 10602: return $env{$cache_str}=$syval;
1.62 www 10603: }
1.31 www 10604: }
1.949 raeburn 10605: &appenv({'request.ambiguous' => $thisfn});
1.620 albertel 10606: return $env{$cache_str}='';
1.31 www 10607: }
10608:
10609: # ---------------------------------------------------------- Return random seed
10610:
1.32 www 10611: sub numval {
10612: my $txt=shift;
10613: $txt=~tr/A-J/0-9/;
10614: $txt=~tr/a-j/0-9/;
10615: $txt=~tr/K-T/0-9/;
10616: $txt=~tr/k-t/0-9/;
10617: $txt=~tr/U-Z/0-5/;
10618: $txt=~tr/u-z/0-5/;
10619: $txt=~s/\D//g;
1.564 albertel 10620: if ($_64bit) { if ($txt > 2**32) { return -1; } }
1.32 www 10621: return int($txt);
1.368 albertel 10622: }
10623:
1.484 albertel 10624: sub numval2 {
10625: my $txt=shift;
10626: $txt=~tr/A-J/0-9/;
10627: $txt=~tr/a-j/0-9/;
10628: $txt=~tr/K-T/0-9/;
10629: $txt=~tr/k-t/0-9/;
10630: $txt=~tr/U-Z/0-5/;
10631: $txt=~tr/u-z/0-5/;
10632: $txt=~s/\D//g;
10633: my @txts=split(/(\d\d\d\d\d\d\d\d\d)/,$txt);
10634: my $total;
10635: foreach my $val (@txts) { $total+=$val; }
1.564 albertel 10636: if ($_64bit) { if ($total > 2**32) { return -1; } }
1.484 albertel 10637: return int($total);
10638: }
10639:
1.575 albertel 10640: sub numval3 {
10641: use integer;
10642: my $txt=shift;
10643: $txt=~tr/A-J/0-9/;
10644: $txt=~tr/a-j/0-9/;
10645: $txt=~tr/K-T/0-9/;
10646: $txt=~tr/k-t/0-9/;
10647: $txt=~tr/U-Z/0-5/;
10648: $txt=~tr/u-z/0-5/;
10649: $txt=~s/\D//g;
10650: my @txts=split(/(\d\d\d\d\d\d\d\d\d)/,$txt);
10651: my $total;
10652: foreach my $val (@txts) { $total+=$val; }
10653: if ($_64bit) { $total=(($total<<32)>>32); }
10654: return $total;
10655: }
10656:
1.675 albertel 10657: sub digest {
10658: my ($data)=@_;
10659: my $digest=&Digest::MD5::md5($data);
10660: my ($a,$b,$c,$d)=unpack("iiii",$digest);
10661: my ($e,$f);
10662: {
10663: use integer;
10664: $e=($a+$b);
10665: $f=($c+$d);
10666: if ($_64bit) {
10667: $e=(($e<<32)>>32);
10668: $f=(($f<<32)>>32);
10669: }
10670: }
10671: if (wantarray) {
10672: return ($e,$f);
10673: } else {
10674: my $g;
10675: {
10676: use integer;
10677: $g=($e+$f);
10678: if ($_64bit) {
10679: $g=(($g<<32)>>32);
10680: }
10681: }
10682: return $g;
10683: }
10684: }
10685:
1.368 albertel 10686: sub latest_rnd_algorithm_id {
1.675 albertel 10687: return '64bit5';
1.366 albertel 10688: }
1.32 www 10689:
1.503 albertel 10690: sub get_rand_alg {
10691: my ($courseid)=@_;
1.790 albertel 10692: if (!$courseid) { $courseid=(&whichuser())[1]; }
1.503 albertel 10693: if ($courseid) {
1.620 albertel 10694: return $env{"course.$courseid.rndseed"};
1.503 albertel 10695: }
10696: return &latest_rnd_algorithm_id();
10697: }
10698:
1.562 albertel 10699: sub validCODE {
10700: my ($CODE)=@_;
10701: if (defined($CODE) && $CODE ne '' && $CODE =~ /^\w+$/) { return 1; }
10702: return 0;
10703: }
10704:
1.491 albertel 10705: sub getCODE {
1.620 albertel 10706: if (&validCODE($env{'form.CODE'})) { return $env{'form.CODE'}; }
1.618 albertel 10707: if ( (defined($Apache::lonhomework::parsing_a_problem) ||
10708: defined($Apache::lonhomework::parsing_a_task) ) &&
10709: &validCODE($Apache::lonhomework::history{'resource.CODE'})) {
1.491 albertel 10710: return $Apache::lonhomework::history{'resource.CODE'};
10711: }
10712: return undef;
10713: }
1.1133 foxr 10714: #
10715: # Determines the random seed for a specific context:
10716: #
10717: # parameters:
10718: # symb - in course context the symb for the seed.
10719: # course_id - The course id of the form domain_coursenum.
10720: # domain - Domain for the user.
10721: # course - Course for the user.
10722: # cenv - environment of the course.
10723: #
10724: # NOTE:
10725: # All parameters are picked out of the environment if missing
10726: # or not defined.
10727: # If a symb cannot be determined the current time is used instead.
10728: #
10729: # For a given well defined symb, courside, domain, username,
10730: # and course environment, the seed is reproducible.
10731: #
1.31 www 10732: sub rndseed {
1.1133 foxr 10733: my ($symb,$courseid,$domain,$username, $cenv)=@_;
1.790 albertel 10734: my ($wsymb,$wcourseid,$wdomain,$wusername)=&whichuser();
1.896 albertel 10735: if (!defined($symb)) {
1.366 albertel 10736: unless ($symb=$wsymb) { return time; }
10737: }
1.1146 foxr 10738: if (!defined $courseid) {
10739: $courseid=$wcourseid;
10740: }
10741: if (!defined $domain) { $domain=$wdomain; }
10742: if (!defined $username) { $username=$wusername }
1.1133 foxr 10743:
10744: my $which;
10745: if (defined($cenv->{'rndseed'})) {
10746: $which = $cenv->{'rndseed'};
10747: } else {
10748: $which =&get_rand_alg($courseid);
10749: }
1.491 albertel 10750: if (defined(&getCODE())) {
1.1133 foxr 10751:
1.675 albertel 10752: if ($which eq '64bit5') {
10753: return &rndseed_CODE_64bit5($symb,$courseid,$domain,$username);
10754: } elsif ($which eq '64bit4') {
1.575 albertel 10755: return &rndseed_CODE_64bit4($symb,$courseid,$domain,$username);
10756: } else {
10757: return &rndseed_CODE_64bit($symb,$courseid,$domain,$username);
10758: }
1.675 albertel 10759: } elsif ($which eq '64bit5') {
10760: return &rndseed_64bit5($symb,$courseid,$domain,$username);
1.575 albertel 10761: } elsif ($which eq '64bit4') {
10762: return &rndseed_64bit4($symb,$courseid,$domain,$username);
1.501 albertel 10763: } elsif ($which eq '64bit3') {
10764: return &rndseed_64bit3($symb,$courseid,$domain,$username);
1.443 albertel 10765: } elsif ($which eq '64bit2') {
10766: return &rndseed_64bit2($symb,$courseid,$domain,$username);
1.366 albertel 10767: } elsif ($which eq '64bit') {
10768: return &rndseed_64bit($symb,$courseid,$domain,$username);
10769: }
10770: return &rndseed_32bit($symb,$courseid,$domain,$username);
10771: }
10772:
10773: sub rndseed_32bit {
10774: my ($symb,$courseid,$domain,$username)=@_;
10775: {
10776: use integer;
10777: my $symbchck=unpack("%32C*",$symb) << 27;
10778: my $symbseed=numval($symb) << 22;
10779: my $namechck=unpack("%32C*",$username) << 17;
10780: my $nameseed=numval($username) << 12;
10781: my $domainseed=unpack("%32C*",$domain) << 7;
10782: my $courseseed=unpack("%32C*",$courseid);
10783: my $num=$symbseed+$nameseed+$domainseed+$courseseed+$namechck+$symbchck;
1.790 albertel 10784: #&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
10785: #&logthis("rndseed :$num:$symb");
1.564 albertel 10786: if ($_64bit) { $num=(($num<<32)>>32); }
1.366 albertel 10787: return $num;
10788: }
10789: }
10790:
10791: sub rndseed_64bit {
10792: my ($symb,$courseid,$domain,$username)=@_;
10793: {
10794: use integer;
10795: my $symbchck=unpack("%32S*",$symb) << 21;
10796: my $symbseed=numval($symb) << 10;
10797: my $namechck=unpack("%32S*",$username);
10798:
10799: my $nameseed=numval($username) << 21;
10800: my $domainseed=unpack("%32S*",$domain) << 10;
10801: my $courseseed=unpack("%32S*",$courseid);
10802:
10803: my $num1=$symbchck+$symbseed+$namechck;
10804: my $num2=$nameseed+$domainseed+$courseseed;
1.790 albertel 10805: #&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
10806: #&logthis("rndseed :$num:$symb");
1.564 albertel 10807: if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
1.366 albertel 10808: return "$num1,$num2";
1.155 albertel 10809: }
1.366 albertel 10810: }
10811:
1.443 albertel 10812: sub rndseed_64bit2 {
10813: my ($symb,$courseid,$domain,$username)=@_;
10814: {
10815: use integer;
10816: # strings need to be an even # of cahracters long, it it is odd the
10817: # last characters gets thrown away
10818: my $symbchck=unpack("%32S*",$symb.' ') << 21;
10819: my $symbseed=numval($symb) << 10;
10820: my $namechck=unpack("%32S*",$username.' ');
10821:
10822: my $nameseed=numval($username) << 21;
1.501 albertel 10823: my $domainseed=unpack("%32S*",$domain.' ') << 10;
10824: my $courseseed=unpack("%32S*",$courseid.' ');
10825:
10826: my $num1=$symbchck+$symbseed+$namechck;
10827: my $num2=$nameseed+$domainseed+$courseseed;
1.790 albertel 10828: #&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
10829: #&logthis("rndseed :$num:$symb");
1.803 albertel 10830: if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
1.501 albertel 10831: return "$num1,$num2";
10832: }
10833: }
10834:
10835: sub rndseed_64bit3 {
10836: my ($symb,$courseid,$domain,$username)=@_;
10837: {
10838: use integer;
10839: # strings need to be an even # of cahracters long, it it is odd the
10840: # last characters gets thrown away
10841: my $symbchck=unpack("%32S*",$symb.' ') << 21;
10842: my $symbseed=numval2($symb) << 10;
10843: my $namechck=unpack("%32S*",$username.' ');
10844:
10845: my $nameseed=numval2($username) << 21;
1.443 albertel 10846: my $domainseed=unpack("%32S*",$domain.' ') << 10;
10847: my $courseseed=unpack("%32S*",$courseid.' ');
10848:
10849: my $num1=$symbchck+$symbseed+$namechck;
10850: my $num2=$nameseed+$domainseed+$courseseed;
1.790 albertel 10851: #&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
10852: #&logthis("rndseed :$num1:$num2:$_64bit");
1.564 albertel 10853: if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
1.1110 www 10854:
1.503 albertel 10855: return "$num1:$num2";
1.443 albertel 10856: }
10857: }
10858:
1.575 albertel 10859: sub rndseed_64bit4 {
10860: my ($symb,$courseid,$domain,$username)=@_;
10861: {
10862: use integer;
10863: # strings need to be an even # of cahracters long, it it is odd the
10864: # last characters gets thrown away
10865: my $symbchck=unpack("%32S*",$symb.' ') << 21;
10866: my $symbseed=numval3($symb) << 10;
10867: my $namechck=unpack("%32S*",$username.' ');
10868:
10869: my $nameseed=numval3($username) << 21;
10870: my $domainseed=unpack("%32S*",$domain.' ') << 10;
10871: my $courseseed=unpack("%32S*",$courseid.' ');
10872:
10873: my $num1=$symbchck+$symbseed+$namechck;
10874: my $num2=$nameseed+$domainseed+$courseseed;
1.790 albertel 10875: #&logthis("$symbseed:$nameseed;$domainseed|$courseseed;$namechck:$symbchck");
10876: #&logthis("rndseed :$num1:$num2:$_64bit");
1.575 albertel 10877: if ($_64bit) { $num1=(($num1<<32)>>32); $num2=(($num2<<32)>>32); }
1.1110 www 10878:
1.575 albertel 10879: return "$num1:$num2";
10880: }
10881: }
10882:
1.675 albertel 10883: sub rndseed_64bit5 {
10884: my ($symb,$courseid,$domain,$username)=@_;
10885: my ($num1,$num2)=&digest("$symb,$courseid,$domain,$username");
10886: return "$num1:$num2";
10887: }
10888:
1.366 albertel 10889: sub rndseed_CODE_64bit {
10890: my ($symb,$courseid,$domain,$username)=@_;
1.155 albertel 10891: {
1.366 albertel 10892: use integer;
1.443 albertel 10893: my $symbchck=unpack("%32S*",$symb.' ') << 16;
1.484 albertel 10894: my $symbseed=numval2($symb);
1.491 albertel 10895: my $CODEchck=unpack("%32S*",&getCODE().' ') << 16;
10896: my $CODEseed=numval(&getCODE());
1.443 albertel 10897: my $courseseed=unpack("%32S*",$courseid.' ');
1.484 albertel 10898: my $num1=$symbseed+$CODEchck;
10899: my $num2=$CODEseed+$courseseed+$symbchck;
1.790 albertel 10900: #&logthis("$symbseed:$CODEchck|$CODEseed:$courseseed:$symbchck");
10901: #&logthis("rndseed :$num1:$num2:$symb");
1.564 albertel 10902: if ($_64bit) { $num1=(($num1<<32)>>32); }
10903: if ($_64bit) { $num2=(($num2<<32)>>32); }
1.503 albertel 10904: return "$num1:$num2";
1.366 albertel 10905: }
10906: }
10907:
1.575 albertel 10908: sub rndseed_CODE_64bit4 {
10909: my ($symb,$courseid,$domain,$username)=@_;
10910: {
10911: use integer;
10912: my $symbchck=unpack("%32S*",$symb.' ') << 16;
10913: my $symbseed=numval3($symb);
10914: my $CODEchck=unpack("%32S*",&getCODE().' ') << 16;
10915: my $CODEseed=numval3(&getCODE());
10916: my $courseseed=unpack("%32S*",$courseid.' ');
10917: my $num1=$symbseed+$CODEchck;
10918: my $num2=$CODEseed+$courseseed+$symbchck;
1.790 albertel 10919: #&logthis("$symbseed:$CODEchck|$CODEseed:$courseseed:$symbchck");
10920: #&logthis("rndseed :$num1:$num2:$symb");
1.575 albertel 10921: if ($_64bit) { $num1=(($num1<<32)>>32); }
10922: if ($_64bit) { $num2=(($num2<<32)>>32); }
10923: return "$num1:$num2";
10924: }
10925: }
10926:
1.675 albertel 10927: sub rndseed_CODE_64bit5 {
10928: my ($symb,$courseid,$domain,$username)=@_;
10929: my $code = &getCODE();
10930: my ($num1,$num2)=&digest("$symb,$courseid,$code");
10931: return "$num1:$num2";
10932: }
10933:
1.366 albertel 10934: sub setup_random_from_rndseed {
10935: my ($rndseed)=@_;
1.503 albertel 10936: if ($rndseed =~/([,:])/) {
10937: my ($num1,$num2)=split(/[,:]/,$rndseed);
1.366 albertel 10938: &Math::Random::random_set_seed(abs($num1),abs($num2));
10939: } else {
10940: &Math::Random::random_set_seed_from_phrase($rndseed);
1.98 albertel 10941: }
1.36 albertel 10942: }
10943:
1.474 albertel 10944: sub latest_receipt_algorithm_id {
1.835 albertel 10945: return 'receipt3';
1.474 albertel 10946: }
10947:
1.480 www 10948: sub recunique {
10949: my $fucourseid=shift;
10950: my $unique;
1.835 albertel 10951: if ($env{"course.$fucourseid.receiptalg"} eq 'receipt2' ||
10952: $env{"course.$fucourseid.receiptalg"} eq 'receipt3' ) {
1.620 albertel 10953: $unique=$env{"course.$fucourseid.internal.encseed"};
1.480 www 10954: } else {
10955: $unique=$perlvar{'lonReceipt'};
10956: }
10957: return unpack("%32C*",$unique);
10958: }
10959:
10960: sub recprefix {
10961: my $fucourseid=shift;
10962: my $prefix;
1.835 albertel 10963: if ($env{"course.$fucourseid.receiptalg"} eq 'receipt2'||
10964: $env{"course.$fucourseid.receiptalg"} eq 'receipt3' ) {
1.620 albertel 10965: $prefix=$env{"course.$fucourseid.internal.encpref"};
1.480 www 10966: } else {
10967: $prefix=$perlvar{'lonHostID'};
10968: }
10969: return unpack("%32C*",$prefix);
10970: }
10971:
1.76 www 10972: sub ireceipt {
1.474 albertel 10973: my ($funame,$fudom,$fucourseid,$fusymb,$part)=@_;
1.835 albertel 10974:
10975: my $return =&recprefix($fucourseid).'-';
10976:
10977: if ($env{"course.$fucourseid.receiptalg"} eq 'receipt3' ||
10978: $env{'request.state'} eq 'construct') {
10979: $return .= (&digest("$funame,$fudom,$fucourseid,$fusymb,$part")%10000);
10980: return $return;
10981: }
10982:
1.76 www 10983: my $cuname=unpack("%32C*",$funame);
10984: my $cudom=unpack("%32C*",$fudom);
10985: my $cucourseid=unpack("%32C*",$fucourseid);
10986: my $cusymb=unpack("%32C*",$fusymb);
1.480 www 10987: my $cunique=&recunique($fucourseid);
1.474 albertel 10988: my $cpart=unpack("%32S*",$part);
1.835 albertel 10989: if ($env{"course.$fucourseid.receiptalg"} eq 'receipt2') {
10990:
1.790 albertel 10991: #&logthis("doing receipt2 using parts $cpart, uname $cuname and udom $cudom gets ".($cpart%$cuname)." and ".($cpart%$cudom));
1.474 albertel 10992:
10993: $return.= ($cunique%$cuname+
10994: $cunique%$cudom+
10995: $cusymb%$cuname+
10996: $cusymb%$cudom+
10997: $cucourseid%$cuname+
10998: $cucourseid%$cudom+
10999: $cpart%$cuname+
11000: $cpart%$cudom);
11001: } else {
11002: $return.= ($cunique%$cuname+
11003: $cunique%$cudom+
11004: $cusymb%$cuname+
11005: $cusymb%$cudom+
11006: $cucourseid%$cuname+
11007: $cucourseid%$cudom);
11008: }
11009: return $return;
1.76 www 11010: }
11011:
11012: sub receipt {
1.474 albertel 11013: my ($part)=@_;
1.790 albertel 11014: my ($symb,$courseid,$domain,$name) = &whichuser();
1.474 albertel 11015: return &ireceipt($name,$domain,$courseid,$symb,$part);
1.76 www 11016: }
1.260 ng 11017:
1.790 albertel 11018: sub whichuser {
11019: my ($passedsymb)=@_;
11020: my ($symb,$courseid,$domain,$name,$publicuser);
11021: if (defined($env{'form.grade_symb'})) {
11022: my ($tmp_courseid)=&get_env_multiple('form.grade_courseid');
11023: my $allowed=&allowed('vgr',$tmp_courseid);
11024: if (!$allowed &&
11025: exists($env{'request.course.sec'}) &&
11026: $env{'request.course.sec'} !~ /^\s*$/) {
11027: $allowed=&allowed('vgr',$tmp_courseid.
11028: '/'.$env{'request.course.sec'});
11029: }
11030: if ($allowed) {
11031: ($symb)=&get_env_multiple('form.grade_symb');
11032: $courseid=$tmp_courseid;
11033: ($domain)=&get_env_multiple('form.grade_domain');
11034: ($name)=&get_env_multiple('form.grade_username');
11035: return ($symb,$courseid,$domain,$name,$publicuser);
11036: }
11037: }
11038: if (!$passedsymb) {
11039: $symb=&symbread();
11040: } else {
11041: $symb=$passedsymb;
11042: }
11043: $courseid=$env{'request.course.id'};
11044: $domain=$env{'user.domain'};
11045: $name=$env{'user.name'};
11046: if ($name eq 'public' && $domain eq 'public') {
11047: if (!defined($env{'form.username'})) {
11048: $env{'form.username'}.=time.rand(10000000);
11049: }
11050: $name.=$env{'form.username'};
11051: }
11052: return ($symb,$courseid,$domain,$name,$publicuser);
11053:
11054: }
11055:
1.36 albertel 11056: # ------------------------------------------------------------ Serves up a file
1.472 albertel 11057: # returns either the contents of the file or
11058: # -1 if the file doesn't exist
1.481 raeburn 11059: #
11060: # if the target is a file that was uploaded via DOCS,
11061: # a check will be made to see if a current copy exists on the local server,
11062: # if it does this will be served, otherwise a copy will be retrieved from
11063: # the home server for the course and stored in /home/httpd/html/userfiles on
11064: # the local server.
1.472 albertel 11065:
1.36 albertel 11066: sub getfile {
1.538 albertel 11067: my ($file) = @_;
1.609 banghart 11068: if ($file =~ m -^/*(uploaded|editupload)/-) { $file=&filelocation("",$file); }
1.538 albertel 11069: &repcopy($file);
11070: return &readfile($file);
11071: }
11072:
11073: sub repcopy_userfile {
11074: my ($file)=@_;
1.1142 raeburn 11075: my $londocroot = $perlvar{'lonDocRoot'};
11076: if ($file =~ m{^/*(uploaded|editupload)/}) { $file=&filelocation("",$file); }
1.1164 raeburn 11077: if ($file =~ m{^\Q/home/httpd/lonUsers/\E}) { return 'ok'; }
1.538 albertel 11078: my ($cdom,$cnum,$filename) =
1.811 albertel 11079: ($file=~m|^\Q$perlvar{'lonDocRoot'}\E/+userfiles/+($match_domain)/+($match_name)/+(.*)|);
1.538 albertel 11080: my $uri="/uploaded/$cdom/$cnum/$filename";
11081: if (-e "$file") {
1.828 www 11082: # we already have a local copy, check it out
1.538 albertel 11083: my @fileinfo = stat($file);
1.828 www 11084: my $rtncode;
11085: my $info;
1.538 albertel 11086: my $lwpresp = &getuploaded('HEAD',$uri,$cdom,$cnum,\$info,\$rtncode);
1.482 albertel 11087: if ($lwpresp ne 'ok') {
1.828 www 11088: # there is no such file anymore, even though we had a local copy
1.482 albertel 11089: if ($rtncode eq '404') {
1.538 albertel 11090: unlink($file);
1.482 albertel 11091: }
11092: return -1;
11093: }
11094: if ($info < $fileinfo[9]) {
1.828 www 11095: # nice, the file we have is up-to-date, just say okay
1.607 raeburn 11096: return 'ok';
1.828 www 11097: } else {
11098: # the file is outdated, get rid of it
11099: unlink($file);
1.482 albertel 11100: }
1.828 www 11101: }
11102: # one way or the other, at this point, we don't have the file
11103: # construct the correct path for the file
11104: my @parts = ($cdom,$cnum);
11105: if ($filename =~ m|^(.+)/[^/]+$|) {
11106: push @parts, split(/\//,$1);
11107: }
11108: my $path = $perlvar{'lonDocRoot'}.'/userfiles';
11109: foreach my $part (@parts) {
11110: $path .= '/'.$part;
11111: if (!-e $path) {
11112: mkdir($path,0770);
1.482 albertel 11113: }
11114: }
1.828 www 11115: # now the path exists for sure
11116: # get a user agent
11117: my $ua=new LWP::UserAgent;
11118: my $transferfile=$file.'.in.transfer';
11119: # FIXME: this should flock
11120: if (-e $transferfile) { return 'ok'; }
11121: my $request;
11122: $uri=~s/^\///;
1.980 raeburn 11123: my $homeserver = &homeserver($cnum,$cdom);
11124: my $protocol = $protocol{$homeserver};
11125: $protocol = 'http' if ($protocol ne 'https');
11126: $request=new HTTP::Request('GET',$protocol.'://'.&hostname($homeserver).'/raw/'.$uri);
1.828 www 11127: my $response=$ua->request($request,$transferfile);
11128: # did it work?
11129: if ($response->is_error()) {
11130: unlink($transferfile);
11131: &logthis("Userfile repcopy failed for $uri");
11132: return -1;
11133: }
11134: # worked, rename the transfer file
11135: rename($transferfile,$file);
1.607 raeburn 11136: return 'ok';
1.481 raeburn 11137: }
11138:
1.517 albertel 11139: sub tokenwrapper {
11140: my $uri=shift;
1.980 raeburn 11141: $uri=~s|^https?\://([^/]+)||;
1.552 albertel 11142: $uri=~s|^/||;
1.620 albertel 11143: $env{'user.environment'}=~/\/([^\/]+)\.id/;
1.517 albertel 11144: my $token=$1;
1.552 albertel 11145: my (undef,$udom,$uname,$file)=split('/',$uri,4);
11146: if ($udom && $uname && $file) {
11147: $file=~s|(\?\.*)*$||;
1.949 raeburn 11148: &appenv({"userfile.$udom/$uname/$file" => $env{'request.course.id'}});
1.980 raeburn 11149: my $homeserver = &homeserver($uname,$udom);
11150: my $protocol = $protocol{$homeserver};
11151: $protocol = 'http' if ($protocol ne 'https');
11152: return $protocol.'://'.&hostname($homeserver).'/'.$uri.
1.517 albertel 11153: (($uri=~/\?/)?'&':'?').'token='.$token.
11154: '&tokenissued='.$perlvar{'lonHostID'};
11155: } else {
11156: return '/adm/notfound.html';
11157: }
11158: }
11159:
1.828 www 11160: # call with reqtype HEAD: get last modification time
11161: # call with reqtype GET: get the file contents
11162: # Do not call this with reqtype GET for large files! It loads everything into memory
11163: #
1.481 raeburn 11164: sub getuploaded {
11165: my ($reqtype,$uri,$cdom,$cnum,$info,$rtncode) = @_;
11166: $uri=~s/^\///;
1.980 raeburn 11167: my $homeserver = &homeserver($cnum,$cdom);
11168: my $protocol = $protocol{$homeserver};
11169: $protocol = 'http' if ($protocol ne 'https');
11170: $uri = $protocol.'://'.&hostname($homeserver).'/raw/'.$uri;
1.481 raeburn 11171: my $ua=new LWP::UserAgent;
11172: my $request=new HTTP::Request($reqtype,$uri);
11173: my $response=$ua->request($request);
11174: $$rtncode = $response->code;
1.482 albertel 11175: if (! $response->is_success()) {
11176: return 'failed';
11177: }
11178: if ($reqtype eq 'HEAD') {
1.486 www 11179: $$info = &HTTP::Date::str2time( $response->header('Last-modified') );
1.482 albertel 11180: } elsif ($reqtype eq 'GET') {
11181: $$info = $response->content;
1.472 albertel 11182: }
1.482 albertel 11183: return 'ok';
1.36 albertel 11184: }
11185:
1.481 raeburn 11186: sub readfile {
11187: my $file = shift;
11188: if ( (! -e $file ) || ($file eq '') ) { return -1; };
11189: my $fh;
11190: open($fh,"<$file");
11191: my $a='';
1.800 albertel 11192: while (my $line = <$fh>) { $a .= $line; }
1.481 raeburn 11193: return $a;
11194: }
11195:
1.36 albertel 11196: sub filelocation {
1.590 banghart 11197: my ($dir,$file) = @_;
11198: my $location;
11199: $file=~ s/^\s*(\S+)\s*$/$1/; ## strip off leading and trailing spaces
1.700 albertel 11200:
11201: if ($file =~ m-^/adm/-) {
11202: $file=~s-^/adm/wrapper/-/-;
11203: $file=~s-^/adm/coursedocs/showdoc/-/-;
11204: }
1.882 albertel 11205:
1.1139 www 11206: if ($file =~ m-^\Q$Apache::lonnet::perlvar{'lonTabDir'}\E/-) {
1.956 raeburn 11207: $location = $file;
1.609 banghart 11208: } elsif ($file=~/^\/*(uploaded|editupload)/) { # is an uploaded file
1.590 banghart 11209: my ($udom,$uname,$filename)=
1.811 albertel 11210: ($file=~m -^/+(?:uploaded|editupload)/+($match_domain)/+($match_name)/+(.*)$-);
1.590 banghart 11211: my $home=&homeserver($uname,$udom);
11212: my $is_me=0;
11213: my @ids=¤t_machine_ids();
11214: foreach my $id (@ids) { if ($id eq $home) { $is_me=1; } }
11215: if ($is_me) {
1.1117 foxr 11216: $location=propath($udom,$uname).'/userfiles/'.$filename;
1.590 banghart 11217: } else {
11218: $location=$Apache::lonnet::perlvar{'lonDocRoot'}.'/userfiles/'.
11219: $udom.'/'.$uname.'/'.$filename;
11220: }
1.882 albertel 11221: } elsif ($file =~ m-^/adm/-) {
11222: $location = $perlvar{'lonDocRoot'}.'/'.$file;
1.590 banghart 11223: } else {
11224: $file=~s/^\Q$perlvar{'lonDocRoot'}\E//;
1.1139 www 11225: $file=~s:^/(res|priv)/:/:;
11226: my $space=$1;
1.590 banghart 11227: if ( !( $file =~ m:^/:) ) {
11228: $location = $dir. '/'.$file;
11229: } else {
1.1142 raeburn 11230: $location = $perlvar{'lonDocRoot'}.'/'.$space.$file;
1.590 banghart 11231: }
1.59 albertel 11232: }
1.590 banghart 11233: $location=~s://+:/:g; # remove duplicate /
1.930 albertel 11234: while ($location=~m{/\.\./}) {
11235: if ($location =~ m{/[^/]+/\.\./}) {
11236: $location=~ s{/[^/]+/\.\./}{/}g;
11237: } else {
11238: $location=~ s{/\.\./}{/}g;
11239: }
11240: } #remove dir/..
1.590 banghart 11241: while ($location=~m:/\./:) {$location=~ s:/\./:/:g;} #remove /./
11242: return $location;
1.46 www 11243: }
1.36 albertel 11244:
1.46 www 11245: sub hreflocation {
11246: my ($dir,$file)=@_;
1.980 raeburn 11247: unless (($file=~m-^https?\://-i) || ($file=~m-^/-)) {
1.666 albertel 11248: $file=filelocation($dir,$file);
1.700 albertel 11249: } elsif ($file=~m-^/adm/-) {
11250: $file=~s-^/adm/wrapper/-/-;
11251: $file=~s-^/adm/coursedocs/showdoc/-/-;
1.666 albertel 11252: }
11253: if ($file=~m-^\Q$perlvar{'lonDocRoot'}\E-) {
11254: $file=~s-^\Q$perlvar{'lonDocRoot'}\E--;
11255: } elsif ($file=~m-^\Q$perlvar{'lonUsersDir'}\E-) {
1.1143 raeburn 11256: $file=~s{^/home/httpd/lonUsers/($match_domain)/./././($match_name)/userfiles/}
11257: {/uploaded/$1/$2/}x;
1.46 www 11258: }
1.913 albertel 11259: if ($file=~ m{^/userfiles/}) {
11260: $file =~ s{^/userfiles/}{/uploaded/};
11261: }
1.462 albertel 11262: return $file;
1.465 albertel 11263: }
11264:
1.1139 www 11265:
11266:
11267:
11268:
1.465 albertel 11269: sub current_machine_domains {
1.853 albertel 11270: return &machine_domains(&hostname($perlvar{'lonHostID'}));
11271: }
11272:
11273: sub machine_domains {
11274: my ($hostname) = @_;
1.465 albertel 11275: my @domains;
1.838 albertel 11276: my %hostname = &all_hostnames();
1.465 albertel 11277: while( my($id, $name) = each(%hostname)) {
1.467 matthew 11278: # &logthis("-$id-$name-$hostname-");
1.465 albertel 11279: if ($hostname eq $name) {
1.844 albertel 11280: push(@domains,&host_domain($id));
1.465 albertel 11281: }
11282: }
11283: return @domains;
11284: }
11285:
11286: sub current_machine_ids {
1.853 albertel 11287: return &machine_ids(&hostname($perlvar{'lonHostID'}));
11288: }
11289:
11290: sub machine_ids {
11291: my ($hostname) = @_;
11292: $hostname ||= &hostname($perlvar{'lonHostID'});
1.465 albertel 11293: my @ids;
1.888 albertel 11294: my %name_to_host = &all_names();
1.889 albertel 11295: if (ref($name_to_host{$hostname}) eq 'ARRAY') {
11296: return @{ $name_to_host{$hostname} };
11297: }
11298: return;
1.31 www 11299: }
11300:
1.824 raeburn 11301: sub additional_machine_domains {
11302: my @domains;
11303: open(my $fh,"<$perlvar{'lonTabDir'}/expected_domains.tab");
11304: while( my $line = <$fh>) {
11305: $line =~ s/\s//g;
11306: push(@domains,$line);
11307: }
11308: return @domains;
11309: }
11310:
11311: sub default_login_domain {
11312: my $domain = $perlvar{'lonDefDomain'};
11313: my $testdomain=(split(/\./,$ENV{'HTTP_HOST'}))[0];
11314: foreach my $posdom (¤t_machine_domains(),
11315: &additional_machine_domains()) {
11316: if (lc($posdom) eq lc($testdomain)) {
11317: $domain=$posdom;
11318: last;
11319: }
11320: }
11321: return $domain;
11322: }
11323:
1.31 www 11324: # ------------------------------------------------------------- Declutters URLs
11325:
11326: sub declutter {
11327: my $thisfn=shift;
1.569 albertel 11328: if ($thisfn=~m|^/enc/|) { $thisfn=&Apache::lonenc::unencrypted($thisfn); }
1.479 albertel 11329: $thisfn=~s/^\Q$perlvar{'lonDocRoot'}\E//;
1.31 www 11330: $thisfn=~s/^\///;
1.697 albertel 11331: $thisfn=~s|^adm/wrapper/||;
11332: $thisfn=~s|^adm/coursedocs/showdoc/||;
1.31 www 11333: $thisfn=~s/^res\///;
1.1172 bisitz 11334: $thisfn=~s/^priv\///;
1.1032 raeburn 11335: unless (($thisfn =~ /^ext/) || ($thisfn =~ /\.(page|sequence)___\d+___ext/)) {
11336: $thisfn=~s/\?.+$//;
11337: }
1.268 www 11338: return $thisfn;
11339: }
11340:
11341: # ------------------------------------------------------------- Clutter up URLs
11342:
11343: sub clutter {
11344: my $thisfn='/'.&declutter(shift);
1.887 albertel 11345: if ($thisfn !~ m{^/(uploaded|editupload|adm|userfiles|ext|raw|priv|public)/}
1.884 albertel 11346: || $thisfn =~ m{^/adm/(includes|pages)} ) {
1.270 www 11347: $thisfn='/res'.$thisfn;
11348: }
1.1031 raeburn 11349: if ($thisfn !~m|^/adm|) {
11350: if ($thisfn =~ m|^/ext/|) {
1.694 albertel 11351: $thisfn='/adm/wrapper'.$thisfn;
1.695 albertel 11352: } else {
11353: my ($ext) = ($thisfn =~ /\.(\w+)$/);
11354: my $embstyle=&Apache::loncommon::fileembstyle($ext);
1.698 albertel 11355: if ($embstyle eq 'ssi'
11356: || ($embstyle eq 'hdn')
11357: || ($embstyle eq 'rat')
11358: || ($embstyle eq 'prv')
11359: || ($embstyle eq 'ign')) {
11360: #do nothing with these
11361: } elsif (($embstyle eq 'img')
1.695 albertel 11362: || ($embstyle eq 'emb')
11363: || ($embstyle eq 'wrp')) {
11364: $thisfn='/adm/wrapper'.$thisfn;
1.698 albertel 11365: } elsif ($embstyle eq 'unk'
11366: && $thisfn!~/\.(sequence|page)$/) {
1.695 albertel 11367: $thisfn='/adm/coursedocs/showdoc'.$thisfn;
1.698 albertel 11368: } else {
1.718 www 11369: # &logthis("Got a blank emb style");
1.695 albertel 11370: }
1.694 albertel 11371: }
11372: }
1.31 www 11373: return $thisfn;
1.12 www 11374: }
11375:
1.787 albertel 11376: sub clutter_with_no_wrapper {
11377: my $uri = &clutter(shift);
11378: if ($uri =~ m-^/adm/-) {
11379: $uri =~ s-^/adm/wrapper/-/-;
11380: $uri =~ s-^/adm/coursedocs/showdoc/-/-;
11381: }
11382: return $uri;
11383: }
11384:
1.557 albertel 11385: sub freeze_escape {
11386: my ($value)=@_;
11387: if (ref($value)) {
11388: $value=&nfreeze($value);
11389: return '__FROZEN__'.&escape($value);
11390: }
11391: return &escape($value);
11392: }
11393:
1.11 www 11394:
1.557 albertel 11395: sub thaw_unescape {
11396: my ($value)=@_;
11397: if ($value =~ /^__FROZEN__/) {
11398: substr($value,0,10,undef);
11399: $value=&unescape($value);
11400: return &thaw($value);
11401: }
11402: return &unescape($value);
11403: }
11404:
1.436 albertel 11405: sub correct_line_ends {
11406: my ($result)=@_;
11407: $$result =~s/\r\n/\n/mg;
11408: $$result =~s/\r/\n/mg;
1.415 albertel 11409: }
1.1 albertel 11410: # ================================================================ Main Program
11411:
1.184 www 11412: sub goodbye {
1.204 albertel 11413: &logthis("Starting Shut down");
1.443 albertel 11414: #not converted to using infrastruture and probably shouldn't be
1.870 albertel 11415: &logthis(sprintf("%-20s is %s",'%badServerCache',length(&nfreeze(\%badServerCache))));
1.443 albertel 11416: #converted
1.599 albertel 11417: # &logthis(sprintf("%-20s is %s",'%metacache',scalar(%metacache)));
1.870 albertel 11418: &logthis(sprintf("%-20s is %s",'%homecache',length(&nfreeze(\%homecache))));
11419: # &logthis(sprintf("%-20s is %s",'%titlecache',length(&nfreeze(\%titlecache))));
11420: # &logthis(sprintf("%-20s is %s",'%courseresdatacache',length(&nfreeze(\%courseresdatacache))));
1.425 albertel 11421: #1.1 only
1.870 albertel 11422: # &logthis(sprintf("%-20s is %s",'%userresdatacache',length(&nfreeze(\%userresdatacache))));
11423: # &logthis(sprintf("%-20s is %s",'%getsectioncache',length(&nfreeze(\%getsectioncache))));
11424: # &logthis(sprintf("%-20s is %s",'%courseresversioncache',length(&nfreeze(\%courseresversioncache))));
11425: # &logthis(sprintf("%-20s is %s",'%resversioncache',length(&nfreeze(\%resversioncache))));
11426: &logthis(sprintf("%-20s is %s",'%remembered',length(&nfreeze(\%remembered))));
1.599 albertel 11427: &logthis(sprintf("%-20s is %s",'kicks',$kicks));
11428: &logthis(sprintf("%-20s is %s",'hits',$hits));
1.184 www 11429: &flushcourselogs();
11430: &logthis("Shutting down");
11431: }
11432:
1.852 albertel 11433: sub get_dns {
1.869 albertel 11434: my ($url,$func,$ignore_cache) = @_;
11435: if (!$ignore_cache) {
11436: my ($content,$cached)=
11437: &Apache::lonnet::is_cached_new('dns',$url);
11438: if ($cached) {
11439: &$func($content);
11440: return;
11441: }
11442: }
11443:
11444: my %alldns;
1.852 albertel 11445: open(my $config,"<$perlvar{'lonTabDir'}/hosts.tab");
11446: foreach my $dns (<$config>) {
11447: next if ($dns !~ /^\^(\S*)/x);
1.979 raeburn 11448: my $line = $1;
11449: my ($host,$protocol) = split(/:/,$line);
11450: if ($protocol ne 'https') {
11451: $protocol = 'http';
11452: }
11453: $alldns{$host} = $protocol;
1.869 albertel 11454: }
11455: while (%alldns) {
11456: my ($dns) = keys(%alldns);
1.852 albertel 11457: my $ua=new LWP::UserAgent;
1.1134 raeburn 11458: $ua->timeout(30);
1.979 raeburn 11459: my $request=new HTTP::Request('GET',"$alldns{$dns}://$dns$url");
1.852 albertel 11460: my $response=$ua->request($request);
1.979 raeburn 11461: delete($alldns{$dns});
1.852 albertel 11462: next if ($response->is_error());
11463: my @content = split("\n",$response->content);
1.869 albertel 11464: &Apache::lonnet::do_cache_new('dns',$url,\@content,30*24*60*60);
1.852 albertel 11465: &$func(\@content);
1.869 albertel 11466: return;
1.852 albertel 11467: }
11468: close($config);
1.871 albertel 11469: my $which = (split('/',$url))[3];
11470: &logthis("unable to contact DNS defaulting to on disk file dns_$which.tab\n");
11471: open($config,"<$perlvar{'lonTabDir'}/dns_$which.tab");
1.869 albertel 11472: my @content = <$config>;
11473: &$func(\@content);
11474: return;
1.852 albertel 11475: }
1.327 albertel 11476: # ------------------------------------------------------------ Read domain file
11477: {
1.852 albertel 11478: my $loaded;
1.846 albertel 11479: my %domain;
11480:
1.852 albertel 11481: sub parse_domain_tab {
11482: my ($lines) = @_;
11483: foreach my $line (@$lines) {
11484: next if ($line =~ /^(\#|\s*$ )/x);
1.403 www 11485:
1.846 albertel 11486: chomp($line);
1.852 albertel 11487: my ($name,@elements) = split(/:/,$line,9);
1.846 albertel 11488: my %this_domain;
11489: foreach my $field ('description', 'auth_def', 'auth_arg_def',
11490: 'lang_def', 'city', 'longi', 'lati',
11491: 'primary') {
11492: $this_domain{$field} = shift(@elements);
11493: }
11494: $domain{$name} = \%this_domain;
1.852 albertel 11495: }
11496: }
1.864 albertel 11497:
11498: sub reset_domain_info {
11499: undef($loaded);
11500: undef(%domain);
11501: }
11502:
1.852 albertel 11503: sub load_domain_tab {
1.869 albertel 11504: my ($ignore_cache) = @_;
11505: &get_dns('/adm/dns/domain',\&parse_domain_tab,$ignore_cache);
1.852 albertel 11506: my $fh;
11507: if (open($fh,"<".$perlvar{'lonTabDir'}.'/domain.tab')) {
11508: my @lines = <$fh>;
11509: &parse_domain_tab(\@lines);
1.448 albertel 11510: }
1.852 albertel 11511: close($fh);
11512: $loaded = 1;
1.327 albertel 11513: }
1.846 albertel 11514:
11515: sub domain {
1.852 albertel 11516: &load_domain_tab() if (!$loaded);
11517:
1.846 albertel 11518: my ($name,$what) = @_;
11519: return if ( !exists($domain{$name}) );
11520:
11521: if (!$what) {
11522: return $domain{$name}{'description'};
11523: }
11524: return $domain{$name}{$what};
11525: }
1.974 raeburn 11526:
11527: sub domain_info {
11528: &load_domain_tab() if (!$loaded);
11529: return %domain;
11530: }
11531:
1.327 albertel 11532: }
11533:
11534:
1.1 albertel 11535: # ------------------------------------------------------------- Read hosts file
11536: {
1.838 albertel 11537: my %hostname;
1.844 albertel 11538: my %hostdom;
1.845 albertel 11539: my %libserv;
1.852 albertel 11540: my $loaded;
1.888 albertel 11541: my %name_to_host;
1.1074 raeburn 11542: my %internetdom;
1.1107 raeburn 11543: my %LC_dns_serv;
1.852 albertel 11544:
11545: sub parse_hosts_tab {
11546: my ($file) = @_;
11547: foreach my $configline (@$file) {
11548: next if ($configline =~ /^(\#|\s*$ )/x);
1.1107 raeburn 11549: chomp($configline);
11550: if ($configline =~ /^\^/) {
11551: if ($configline =~ /^\^([\w.\-]+)/) {
11552: $LC_dns_serv{$1} = 1;
11553: }
11554: next;
11555: }
1.1074 raeburn 11556: my ($id,$domain,$role,$name,$protocol,$intdom)=split(/:/,$configline);
1.852 albertel 11557: $name=~s/\s//g;
11558: if ($id && $domain && $role && $name) {
11559: $hostname{$id}=$name;
1.888 albertel 11560: push(@{$name_to_host{$name}}, $id);
1.852 albertel 11561: $hostdom{$id}=$domain;
11562: if ($role eq 'library') { $libserv{$id}=$name; }
1.969 raeburn 11563: if (defined($protocol)) {
11564: if ($protocol eq 'https') {
11565: $protocol{$id} = $protocol;
11566: } else {
11567: $protocol{$id} = 'http';
11568: }
1.968 raeburn 11569: } else {
1.969 raeburn 11570: $protocol{$id} = 'http';
1.968 raeburn 11571: }
1.1074 raeburn 11572: if (defined($intdom)) {
11573: $internetdom{$id} = $intdom;
11574: }
1.852 albertel 11575: }
11576: }
11577: }
1.864 albertel 11578:
11579: sub reset_hosts_info {
1.897 albertel 11580: &purge_remembered();
1.864 albertel 11581: &reset_domain_info();
11582: &reset_hosts_ip_info();
1.892 albertel 11583: undef(%name_to_host);
1.864 albertel 11584: undef(%hostname);
11585: undef(%hostdom);
11586: undef(%libserv);
11587: undef($loaded);
11588: }
1.1 albertel 11589:
1.852 albertel 11590: sub load_hosts_tab {
1.869 albertel 11591: my ($ignore_cache) = @_;
11592: &get_dns('/adm/dns/hosts',\&parse_hosts_tab,$ignore_cache);
1.852 albertel 11593: open(my $config,"<$perlvar{'lonTabDir'}/hosts.tab");
11594: my @config = <$config>;
11595: &parse_hosts_tab(\@config);
11596: close($config);
11597: $loaded=1;
1.1 albertel 11598: }
1.852 albertel 11599:
1.838 albertel 11600: sub hostname {
1.852 albertel 11601: &load_hosts_tab() if (!$loaded);
11602:
1.838 albertel 11603: my ($lonid) = @_;
11604: return $hostname{$lonid};
11605: }
1.845 albertel 11606:
1.838 albertel 11607: sub all_hostnames {
1.852 albertel 11608: &load_hosts_tab() if (!$loaded);
11609:
1.838 albertel 11610: return %hostname;
11611: }
1.845 albertel 11612:
1.888 albertel 11613: sub all_names {
11614: &load_hosts_tab() if (!$loaded);
11615:
11616: return %name_to_host;
11617: }
11618:
1.974 raeburn 11619: sub all_host_domain {
11620: &load_hosts_tab() if (!$loaded);
11621: return %hostdom;
11622: }
11623:
1.845 albertel 11624: sub is_library {
1.852 albertel 11625: &load_hosts_tab() if (!$loaded);
11626:
1.845 albertel 11627: return exists($libserv{$_[0]});
11628: }
11629:
11630: sub all_library {
1.852 albertel 11631: &load_hosts_tab() if (!$loaded);
11632:
1.845 albertel 11633: return %libserv;
11634: }
11635:
1.1062 droeschl 11636: sub unique_library {
11637: #2x reverse removes all hostnames that appear more than once
11638: my %unique = reverse &all_library();
11639: return reverse %unique;
11640: }
11641:
1.841 albertel 11642: sub get_servers {
1.852 albertel 11643: &load_hosts_tab() if (!$loaded);
11644:
1.841 albertel 11645: my ($domain,$type) = @_;
11646: my %possible_hosts = ($type eq 'library') ? %libserv
11647: : %hostname;
11648: my %result;
1.842 albertel 11649: if (ref($domain) eq 'ARRAY') {
11650: while ( my ($host,$hostname) = each(%possible_hosts)) {
1.843 albertel 11651: if (grep(/^\Q$hostdom{$host}\E$/,@$domain)) {
1.842 albertel 11652: $result{$host} = $hostname;
11653: }
11654: }
11655: } else {
11656: while ( my ($host,$hostname) = each(%possible_hosts)) {
11657: if ($hostdom{$host} eq $domain) {
11658: $result{$host} = $hostname;
11659: }
1.841 albertel 11660: }
11661: }
11662: return %result;
11663: }
1.845 albertel 11664:
1.1062 droeschl 11665: sub get_unique_servers {
11666: my %unique = reverse &get_servers(@_);
11667: return reverse %unique;
11668: }
11669:
1.844 albertel 11670: sub host_domain {
1.852 albertel 11671: &load_hosts_tab() if (!$loaded);
11672:
1.844 albertel 11673: my ($lonid) = @_;
11674: return $hostdom{$lonid};
11675: }
11676:
1.841 albertel 11677: sub all_domains {
1.852 albertel 11678: &load_hosts_tab() if (!$loaded);
11679:
1.841 albertel 11680: my %seen;
11681: my @uniq = grep(!$seen{$_}++, values(%hostdom));
11682: return @uniq;
11683: }
1.1074 raeburn 11684:
11685: sub internet_dom {
11686: &load_hosts_tab() if (!$loaded);
11687:
11688: my ($lonid) = @_;
11689: return $internetdom{$lonid};
11690: }
1.1107 raeburn 11691:
11692: sub is_LC_dns {
11693: &load_hosts_tab() if (!$loaded);
11694:
11695: my ($hostname) = @_;
11696: return exists($LC_dns_serv{$hostname});
11697: }
11698:
1.1 albertel 11699: }
11700:
1.847 albertel 11701: {
11702: my %iphost;
1.856 albertel 11703: my %name_to_ip;
11704: my %lonid_to_ip;
1.869 albertel 11705:
1.847 albertel 11706: sub get_hosts_from_ip {
11707: my ($ip) = @_;
11708: my %iphosts = &get_iphost();
11709: if (ref($iphosts{$ip})) {
11710: return @{$iphosts{$ip}};
11711: }
11712: return;
1.839 albertel 11713: }
1.864 albertel 11714:
11715: sub reset_hosts_ip_info {
11716: undef(%iphost);
11717: undef(%name_to_ip);
11718: undef(%lonid_to_ip);
11719: }
1.856 albertel 11720:
11721: sub get_host_ip {
11722: my ($lonid) = @_;
11723: if (exists($lonid_to_ip{$lonid})) {
11724: return $lonid_to_ip{$lonid};
11725: }
11726: my $name=&hostname($lonid);
11727: my $ip = gethostbyname($name);
11728: return if (!$ip || length($ip) ne 4);
11729: $ip=inet_ntoa($ip);
11730: $name_to_ip{$name} = $ip;
11731: $lonid_to_ip{$lonid} = $ip;
11732: return $ip;
11733: }
1.847 albertel 11734:
11735: sub get_iphost {
1.869 albertel 11736: my ($ignore_cache) = @_;
1.894 albertel 11737:
1.869 albertel 11738: if (!$ignore_cache) {
11739: if (%iphost) {
11740: return %iphost;
11741: }
11742: my ($ip_info,$cached)=
11743: &Apache::lonnet::is_cached_new('iphost','iphost');
11744: if ($cached) {
11745: %iphost = %{$ip_info->[0]};
11746: %name_to_ip = %{$ip_info->[1]};
11747: %lonid_to_ip = %{$ip_info->[2]};
11748: return %iphost;
11749: }
11750: }
1.894 albertel 11751:
11752: # get yesterday's info for fallback
11753: my %old_name_to_ip;
11754: my ($ip_info,$cached)=
11755: &Apache::lonnet::is_cached_new('iphost','iphost');
11756: if ($cached) {
11757: %old_name_to_ip = %{$ip_info->[1]};
11758: }
11759:
1.888 albertel 11760: my %name_to_host = &all_names();
11761: foreach my $name (keys(%name_to_host)) {
1.847 albertel 11762: my $ip;
11763: if (!exists($name_to_ip{$name})) {
11764: $ip = gethostbyname($name);
11765: if (!$ip || length($ip) ne 4) {
1.894 albertel 11766: if (defined($old_name_to_ip{$name})) {
11767: $ip = $old_name_to_ip{$name};
11768: &logthis("Can't find $name defaulting to old $ip");
11769: } else {
11770: &logthis("Name $name no IP found");
11771: next;
11772: }
11773: } else {
11774: $ip=inet_ntoa($ip);
1.847 albertel 11775: }
11776: $name_to_ip{$name} = $ip;
11777: } else {
11778: $ip = $name_to_ip{$name};
1.653 albertel 11779: }
1.888 albertel 11780: foreach my $id (@{ $name_to_host{$name} }) {
11781: $lonid_to_ip{$id} = $ip;
11782: }
11783: push(@{$iphost{$ip}},@{$name_to_host{$name}});
1.598 albertel 11784: }
1.869 albertel 11785: &Apache::lonnet::do_cache_new('iphost','iphost',
11786: [\%iphost,\%name_to_ip,\%lonid_to_ip],
1.894 albertel 11787: 48*60*60);
1.869 albertel 11788:
1.847 albertel 11789: return %iphost;
1.598 albertel 11790: }
11791:
1.992 raeburn 11792: #
11793: # Given a DNS returns the loncapa host name for that DNS
11794: #
11795: sub host_from_dns {
11796: my ($dns) = @_;
11797: my @hosts;
11798: my $ip;
11799:
1.993 raeburn 11800: if (exists($name_to_ip{$dns})) {
1.992 raeburn 11801: $ip = $name_to_ip{$dns};
11802: }
11803: if (!$ip) {
11804: $ip = gethostbyname($dns); # Initial translation to IP is in net order.
11805: if (length($ip) == 4) {
11806: $ip = &IO::Socket::inet_ntoa($ip);
11807: }
11808: }
11809: if ($ip) {
11810: @hosts = get_hosts_from_ip($ip);
11811: return $hosts[0];
11812: }
11813: return undef;
1.986 foxr 11814: }
1.992 raeburn 11815:
1.1074 raeburn 11816: sub get_internet_names {
11817: my ($lonid) = @_;
11818: return if ($lonid eq '');
11819: my ($idnref,$cached)=
11820: &Apache::lonnet::is_cached_new('internetnames',$lonid);
11821: if ($cached) {
11822: return $idnref;
11823: }
11824: my $ip = &get_host_ip($lonid);
11825: my @hosts = &get_hosts_from_ip($ip);
11826: my %iphost = &get_iphost();
11827: my (@idns,%seen);
11828: foreach my $id (@hosts) {
11829: my $dom = &host_domain($id);
11830: my $prim_id = &domain($dom,'primary');
11831: my $prim_ip = &get_host_ip($prim_id);
11832: next if ($seen{$prim_ip});
11833: if (ref($iphost{$prim_ip}) eq 'ARRAY') {
11834: foreach my $id (@{$iphost{$prim_ip}}) {
11835: my $intdom = &internet_dom($id);
11836: unless (grep(/^\Q$intdom\E$/,@idns)) {
11837: push(@idns,$intdom);
11838: }
11839: }
11840: }
11841: $seen{$prim_ip} = 1;
11842: }
11843: return &Apache::lonnet::do_cache_new('internetnames',$lonid,\@idns,12*60*60);
11844: }
11845:
1.986 foxr 11846: }
11847:
1.1079 raeburn 11848: sub all_loncaparevs {
11849: return qw(1.1 1.2 1.3 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 2.10);
11850: }
11851:
1.862 albertel 11852: BEGIN {
11853:
11854: # ----------------------------------- Read loncapa.conf and loncapa_apache.conf
11855: unless ($readit) {
11856: {
11857: my $configvars = LONCAPA::Configuration::read_conf('loncapa.conf');
11858: %perlvar = (%perlvar,%{$configvars});
11859: }
11860:
11861:
1.1 albertel 11862: # ------------------------------------------------------ Read spare server file
11863: {
1.448 albertel 11864: open(my $config,"<$perlvar{'lonTabDir'}/spare.tab");
1.1 albertel 11865:
11866: while (my $configline=<$config>) {
11867: chomp($configline);
1.284 matthew 11868: if ($configline) {
1.784 albertel 11869: my ($host,$type) = split(':',$configline,2);
1.785 albertel 11870: if (!defined($type) || $type eq '') { $type = 'default' };
1.784 albertel 11871: push(@{ $spareid{$type} }, $host);
1.1 albertel 11872: }
11873: }
1.448 albertel 11874: close($config);
1.1 albertel 11875: }
1.11 www 11876: # ------------------------------------------------------------ Read permissions
11877: {
1.448 albertel 11878: open(my $config,"<$perlvar{'lonTabDir'}/roles.tab");
1.11 www 11879:
11880: while (my $configline=<$config>) {
1.448 albertel 11881: chomp($configline);
11882: if ($configline) {
11883: my ($role,$perm)=split(/ /,$configline);
11884: if ($perm ne '') { $pr{$role}=$perm; }
11885: }
1.11 www 11886: }
1.448 albertel 11887: close($config);
1.11 www 11888: }
11889:
11890: # -------------------------------------------- Read plain texts for permissions
11891: {
1.448 albertel 11892: open(my $config,"<$perlvar{'lonTabDir'}/rolesplain.tab");
1.11 www 11893:
11894: while (my $configline=<$config>) {
1.448 albertel 11895: chomp($configline);
11896: if ($configline) {
1.742 raeburn 11897: my ($short,@plain)=split(/:/,$configline);
11898: %{$prp{$short}} = ();
11899: if (@plain > 0) {
11900: $prp{$short}{'std'} = $plain[0];
11901: for (my $i=1; $i<@plain; $i++) {
11902: $prp{$short}{'alt'.$i} = $plain[$i];
11903: }
11904: }
1.448 albertel 11905: }
1.135 www 11906: }
1.448 albertel 11907: close($config);
1.135 www 11908: }
11909:
11910: # ---------------------------------------------------------- Read package table
11911: {
1.448 albertel 11912: open(my $config,"<$perlvar{'lonTabDir'}/packages.tab");
1.135 www 11913:
11914: while (my $configline=<$config>) {
1.483 albertel 11915: if ($configline !~ /\S/ || $configline=~/^#/) { next; }
1.448 albertel 11916: chomp($configline);
11917: my ($short,$plain)=split(/:/,$configline);
11918: my ($pack,$name)=split(/\&/,$short);
11919: if ($plain ne '') {
11920: $packagetab{$pack.'&'.$name.'&name'}=$name;
11921: $packagetab{$short}=$plain;
11922: }
1.11 www 11923: }
1.448 albertel 11924: close($config);
1.329 matthew 11925: }
11926:
1.1073 raeburn 11927: # ---------------------------------------------------------- Read loncaparev table
11928: {
11929: if (-e "$perlvar{'lonTabDir'}/loncaparevs.tab") {
11930: if (open(my $config,"<$perlvar{'lonTabDir'}/loncaparevs.tab")) {
11931: while (my $configline=<$config>) {
11932: chomp($configline);
11933: my ($hostid,$loncaparev)=split(/:/,$configline);
11934: $loncaparevs{$hostid}=$loncaparev;
11935: }
11936: close($config);
11937: }
11938: }
11939: }
11940:
1.1074 raeburn 11941: # ---------------------------------------------------------- Read serverhostID table
11942: {
11943: if (-e "$perlvar{'lonTabDir'}/serverhomeIDs.tab") {
11944: if (open(my $config,"<$perlvar{'lonTabDir'}/serverhomeIDs.tab")) {
11945: while (my $configline=<$config>) {
11946: chomp($configline);
11947: my ($name,$id)=split(/:/,$configline);
11948: $serverhomeIDs{$name}=$id;
11949: }
11950: close($config);
11951: }
11952: }
11953: }
11954:
1.1079 raeburn 11955: {
11956: my $file = $Apache::lonnet::perlvar{'lonTabDir'}.'/releaseslist.xml';
11957: if (-e $file) {
11958: my $parser = HTML::LCParser->new($file);
11959: while (my $token = $parser->get_token()) {
11960: if ($token->[0] eq 'S') {
11961: my $item = $token->[1];
11962: my $name = $token->[2]{'name'};
11963: my $value = $token->[2]{'value'};
11964: if ($item ne '' && $name ne '' && $value ne '') {
11965: my $release = $parser->get_text();
11966: $release =~ s/(^\s*|\s*$ )//gx;
11967: $needsrelease{$item.':'.$name.':'.$value} = $release;
11968: }
11969: }
11970: }
11971: }
1.1073 raeburn 11972: }
11973:
1.1138 raeburn 11974: # ---------------------------------------------------------- Read managers table
11975: {
11976: if (-e "$perlvar{'lonTabDir'}/managers.tab") {
11977: if (open(my $config,"<$perlvar{'lonTabDir'}/managers.tab")) {
11978: while (my $configline=<$config>) {
11979: chomp($configline);
11980: next if ($configline =~ /^\#/);
11981: if (($configline =~ /^[\w\-]+$/) || ($configline =~ /^[\w\-]+\:[\w\-]+$/)) {
11982: $managerstab{$configline} = 1;
11983: }
11984: }
11985: close($config);
11986: }
11987: }
11988: }
11989:
1.329 matthew 11990: # ------------- set up temporary directory
11991: {
1.1117 foxr 11992: $tmpdir = LONCAPA::tempdir();
1.329 matthew 11993:
1.11 www 11994: }
11995:
1.794 albertel 11996: $memcache=new Cache::Memcached({'servers' => ['127.0.0.1:11211'],
11997: 'compress_threshold'=> 20_000,
11998: });
1.185 www 11999:
1.281 www 12000: $processmarker='_'.time.'_'.$perlvar{'lonHostID'};
1.186 www 12001: $dumpcount=0;
1.958 www 12002: $locknum=0;
1.22 www 12003:
1.163 harris41 12004: &logtouch();
1.672 albertel 12005: &logthis('<font color="yellow">INFO: Read configuration</font>');
1.195 www 12006: $readit=1;
1.564 albertel 12007: {
12008: use integer;
12009: my $test=(2**32)+1;
1.568 albertel 12010: if ($test != 0) { $_64bit=1; } else { $_64bit=0; }
1.564 albertel 12011: &logthis(" Detected 64bit platform ($_64bit)");
12012: }
1.195 www 12013: }
1.1 albertel 12014: }
1.179 www 12015:
1.1 albertel 12016: 1;
1.191 harris41 12017: __END__
12018:
1.243 albertel 12019: =pod
12020:
1.191 harris41 12021: =head1 NAME
12022:
1.243 albertel 12023: Apache::lonnet - Subroutines to ask questions about things in the network.
1.191 harris41 12024:
12025: =head1 SYNOPSIS
12026:
1.243 albertel 12027: Invoked by other LON-CAPA modules, when they need to talk to or about objects in the network.
1.191 harris41 12028:
12029: &Apache::lonnet::SUBROUTINENAME(ARGUMENTS);
12030:
1.243 albertel 12031: Common parameters:
12032:
12033: =over 4
12034:
12035: =item *
12036:
12037: $uname : an internal username (if $cname expecting a course Id specifically)
12038:
12039: =item *
12040:
12041: $udom : a domain (if $cdom expecting a course's domain specifically)
12042:
12043: =item *
12044:
12045: $symb : a resource instance identifier
12046:
12047: =item *
12048:
12049: $namespace : the name of a .db file that contains the data needed or
12050: being set.
12051:
12052: =back
12053:
1.394 bowersj2 12054: =head1 OVERVIEW
1.191 harris41 12055:
1.394 bowersj2 12056: lonnet provides subroutines which interact with the
12057: lonc/lond (TCP) network layer of LON-CAPA. They can be used to ask
12058: about classes, users, and resources.
1.243 albertel 12059:
12060: For many of these objects you can also use this to store data about
12061: them or modify them in various ways.
1.191 harris41 12062:
1.394 bowersj2 12063: =head2 Symbs
1.191 harris41 12064:
1.394 bowersj2 12065: To identify a specific instance of a resource, LON-CAPA uses symbols
12066: or "symbs"X<symb>. These identifiers are built from the URL of the
12067: map, the resource number of the resource in the map, and the URL of
12068: the resource itself. The latter is somewhat redundant, but might help
12069: if maps change.
12070:
12071: An example is
12072:
12073: msu/korte/parts/part1.sequence___19___msu/korte/tests/part12.problem
12074:
12075: The respective map entry is
12076:
12077: <resource id="19" src="/res/msu/korte/tests/part12.problem"
12078: title="Problem 2">
12079: </resource>
12080:
12081: Symbs are used by the random number generator, as well as to store and
12082: restore data specific to a certain instance of for example a problem.
12083:
12084: =head2 Storing And Retrieving Data
12085:
12086: X<store()>X<cstore()>X<restore()>Three of the most important functions
12087: in C<lonnet.pm> are C<&Apache::lonnet::cstore()>,
12088: C<&Apache::lonnet:restore()>, and C<&Apache::lonnet::store()>, which
12089: is is the non-critical message twin of cstore. These functions are for
12090: handlers to store a perl hash to a user's permanent data space in an
12091: easy manner, and to retrieve it again on another call. It is expected
12092: that a handler would use this once at the beginning to retrieve data,
12093: and then again once at the end to send only the new data back.
12094:
12095: The data is stored in the user's data directory on the user's
12096: homeserver under the ID of the course.
12097:
12098: The hash that is returned by restore will have all of the previous
12099: value for all of the elements of the hash.
12100:
12101: Example:
12102:
12103: #creating a hash
12104: my %hash;
12105: $hash{'foo'}='bar';
12106:
12107: #storing it
12108: &Apache::lonnet::cstore(\%hash);
12109:
12110: #changing a value
12111: $hash{'foo'}='notbar';
12112:
12113: #adding a new value
12114: $hash{'bar'}='foo';
12115: &Apache::lonnet::cstore(\%hash);
12116:
12117: #retrieving the hash
12118: my %history=&Apache::lonnet::restore();
12119:
12120: #print the hash
12121: foreach my $key (sort(keys(%history))) {
12122: print("\%history{$key} = $history{$key}");
12123: }
12124:
12125: Will print out:
1.191 harris41 12126:
1.394 bowersj2 12127: %history{1:foo} = bar
12128: %history{1:keys} = foo:timestamp
12129: %history{1:timestamp} = 990455579
12130: %history{2:bar} = foo
12131: %history{2:foo} = notbar
12132: %history{2:keys} = foo:bar:timestamp
12133: %history{2:timestamp} = 990455580
12134: %history{bar} = foo
12135: %history{foo} = notbar
12136: %history{timestamp} = 990455580
12137: %history{version} = 2
12138:
12139: Note that the special hash entries C<keys>, C<version> and
12140: C<timestamp> were added to the hash. C<version> will be equal to the
12141: total number of versions of the data that have been stored. The
12142: C<timestamp> attribute will be the UNIX time the hash was
12143: stored. C<keys> is available in every historical section to list which
12144: keys were added or changed at a specific historical revision of a
12145: hash.
12146:
12147: B<Warning>: do not store the hash that restore returns directly. This
12148: will cause a mess since it will restore the historical keys as if the
12149: were new keys. I.E. 1:foo will become 1:1:foo etc.
1.191 harris41 12150:
1.394 bowersj2 12151: Calling convention:
1.191 harris41 12152:
1.394 bowersj2 12153: my %record=&Apache::lonnet::restore($symb,$courseid,$domain,$uname,$home);
12154: &Apache::lonnet::cstore(\%newrecord,$symb,$courseid,$domain,$uname,$home);
1.191 harris41 12155:
1.394 bowersj2 12156: For more detailed information, see lonnet specific documentation.
1.191 harris41 12157:
1.394 bowersj2 12158: =head1 RETURN MESSAGES
1.191 harris41 12159:
1.394 bowersj2 12160: =over 4
1.191 harris41 12161:
1.394 bowersj2 12162: =item * B<con_lost>: unable to contact remote host
1.191 harris41 12163:
1.394 bowersj2 12164: =item * B<con_delayed>: unable to contact remote host, message will be delivered
12165: when the connection is brought back up
1.191 harris41 12166:
1.394 bowersj2 12167: =item * B<con_failed>: unable to contact remote host and unable to save message
12168: for later delivery
1.191 harris41 12169:
1.967 bisitz 12170: =item * B<error:>: an error a occurred, a description of the error follows the :
1.191 harris41 12171:
1.394 bowersj2 12172: =item * B<no_such_host>: unable to fund a host associated with the user/domain
1.243 albertel 12173: that was requested
1.191 harris41 12174:
1.243 albertel 12175: =back
1.191 harris41 12176:
1.243 albertel 12177: =head1 PUBLIC SUBROUTINES
1.191 harris41 12178:
1.243 albertel 12179: =head2 Session Environment Functions
1.191 harris41 12180:
1.243 albertel 12181: =over 4
1.191 harris41 12182:
1.394 bowersj2 12183: =item *
12184: X<appenv()>
1.949 raeburn 12185: B<appenv($hashref,$rolesarrayref)>: the value of %{$hashref} is written to
1.394 bowersj2 12186: the user envirnoment file, and will be restored for each access this
1.620 albertel 12187: user makes during this session, also modifies the %env for the current
1.949 raeburn 12188: process. Optional rolesarrayref - if defined contains a reference to an array
12189: of roles which are exempt from the restriction on modifying user.role entries
12190: in the user's environment.db and in %env.
1.191 harris41 12191:
12192: =item *
1.394 bowersj2 12193: X<delenv()>
1.987 raeburn 12194: B<delenv($delthis,$regexp)>: removes all items from the session
12195: environment file that begin with $delthis. If the
12196: optional second arg - $regexp - is true, $delthis is treated as a
12197: regular expression, otherwise \Q$delthis\E is used.
12198: The values are also deleted from the current processes %env.
1.191 harris41 12199:
1.795 albertel 12200: =item * get_env_multiple($name)
12201:
12202: gets $name from the %env hash, it seemlessly handles the cases where multiple
12203: values may be defined and end up as an array ref.
12204:
12205: returns an array of values
12206:
1.243 albertel 12207: =back
12208:
12209: =head2 User Information
1.191 harris41 12210:
1.243 albertel 12211: =over 4
1.191 harris41 12212:
12213: =item *
1.394 bowersj2 12214: X<queryauthenticate()>
12215: B<queryauthenticate($uname,$udom)>: try to determine user's current
1.191 harris41 12216: authentication scheme
12217:
12218: =item *
1.394 bowersj2 12219: X<authenticate()>
1.1073 raeburn 12220: B<authenticate($uname,$upass,$udom,$checkdefauth,$clientcancheckhost)>: try to
1.394 bowersj2 12221: authenticate user from domain's lib servers (first use the current
12222: one). C<$upass> should be the users password.
1.1073 raeburn 12223: $checkdefauth is optional (value is 1 if a check should be made to
12224: authenticate user using default authentication method, and allow
12225: account creation if username does not have account in the domain).
12226: $clientcancheckhost is optional (value is 1 if checking whether the
12227: server can host will occur on the client side in lonauth.pm).
1.191 harris41 12228:
12229: =item *
1.394 bowersj2 12230: X<homeserver()>
12231: B<homeserver($uname,$udom)>: find the server which has
12232: the user's directory and files (there must be only one), this caches
12233: the answer, and also caches if there is a borken connection.
1.191 harris41 12234:
12235: =item *
1.394 bowersj2 12236: X<idget()>
12237: B<idget($udom,@ids)>: find the usernames behind a list of IDs
12238: (IDs are a unique resource in a domain, there must be only 1 ID per
12239: username, and only 1 username per ID in a specific domain) (returns
12240: hash: id=>name,id=>name)
1.191 harris41 12241:
12242: =item *
1.394 bowersj2 12243: X<idrget()>
12244: B<idrget($udom,@unames)>: find the IDs behind a list of
12245: usernames (returns hash: name=>id,name=>id)
1.191 harris41 12246:
12247: =item *
1.394 bowersj2 12248: X<idput()>
12249: B<idput($udom,%ids)>: store away a list of names and associated IDs
1.191 harris41 12250:
12251: =item *
1.394 bowersj2 12252: X<rolesinit()>
1.1169 droeschl 12253: B<rolesinit($udom,$username)>: get user privileges.
12254: returns user role, first access and timer interval hashes
1.243 albertel 12255:
12256: =item *
1.1171 droeschl 12257: X<privileged()>
12258: B<privileged($username,$domain)>: returns a true if user has a
12259: privileged and active role (i.e. su or dc), false otherwise.
12260:
12261: =item *
1.551 albertel 12262: X<getsection()>
12263: B<getsection($udom,$uname,$cname)>: finds the section of student in the
1.243 albertel 12264: course $cname, return section name/number or '' for "not in course"
12265: and '-1' for "no section"
12266:
12267: =item *
1.394 bowersj2 12268: X<userenvironment()>
12269: B<userenvironment($udom,$uname,@what)>: gets the values of the keys
1.243 albertel 12270: passed in @what from the requested user's environment, returns a hash
12271:
1.858 raeburn 12272: =item *
12273: X<userlog_query()>
1.859 albertel 12274: B<userlog_query($uname,$udom,%filters)>: retrieves data from a user's
12275: activity.log file. %filters defines filters applied when parsing the
12276: log file. These can be start or end timestamps, or the type of action
12277: - log to look for Login or Logout events, check for Checkin or
12278: Checkout, role for role selection. The response is in the form
12279: timestamp1:hostid1:event1×tamp2:hostid2:event2 where events are
12280: escaped strings of the action recorded in the activity.log file.
1.858 raeburn 12281:
1.243 albertel 12282: =back
12283:
12284: =head2 User Roles
12285:
12286: =over 4
12287:
12288: =item *
12289:
1.810 raeburn 12290: allowed($priv,$uri,$symb,$role) : check for a user privilege; returns codes for allowed actions
1.243 albertel 12291: F: full access
12292: U,I,K: authentication modes (cxx only)
12293: '': forbidden
12294: 1: user needs to choose course
12295: 2: browse allowed
1.766 albertel 12296: A: passphrase authentication needed
1.243 albertel 12297:
12298: =item *
12299:
1.1192 raeburn 12300: constructaccess($url,$setpriv) : check for access to construction space URL
12301:
12302: See if the owner domain and name in the URL match those in the
12303: expected environment. If so, return three element list
12304: ($ownername,$ownerdomain,$ownerhome).
12305:
12306: Otherwise return the null string.
12307:
12308: If second argument 'setpriv' is true, it assigns the privileges,
12309: and returns the same three element list, unless the owner has
12310: blocked "ad hoc" Domain Coordinator access to the Author Space,
12311: in which case the null string is returned.
12312:
12313: =item *
12314:
1.243 albertel 12315: definerole($rolename,$sysrole,$domrole,$courole) : define role; define a custom
12316: role rolename set privileges in format of lonTabs/roles.tab for system, domain,
12317: and course level
12318:
12319: =item *
12320:
1.988 raeburn 12321: plaintext($short,$type,$cid,$forcedefault) : return value in %prp hash
12322: (rolesplain.tab); plain text explanation of a user role term.
1.1008 raeburn 12323: $type is Course (default) or Community.
1.988 raeburn 12324: If $forcedefault evaluates to true, text returned will be default
12325: text for $type. Otherwise, if this is a course, the text returned
12326: will be a custom name for the role (if defined in the course's
12327: environment). If no custom name is defined the default is returned.
12328:
1.832 raeburn 12329: =item *
12330:
1.935 raeburn 12331: get_my_roles($uname,$udom,$context,$types,$roles,$roledoms,$withsec) :
1.858 raeburn 12332: All arguments are optional. Returns a hash of a roles, either for
12333: co-author/assistant author roles for a user's Construction Space
1.906 albertel 12334: (default), or if $context is 'userroles', roles for the user himself,
1.933 raeburn 12335: In the hash, keys are set to colon-separated $uname,$udom,$role, and
12336: (optionally) if $withsec is true, a fourth colon-separated item - $section.
12337: For each key, value is set to colon-separated start and end times for
12338: the role. If no username and domain are specified, will default to
1.934 raeburn 12339: current user/domain. Types, roles, and roledoms are references to arrays
1.858 raeburn 12340: of role statuses (active, future or previous), roles
12341: (e.g., cc,in, st etc.) and domains of the roles which can be used
12342: to restrict the list of roles reported. If no array ref is
12343: provided for types, will default to return only active roles.
1.834 albertel 12344:
1.1195 raeburn 12345: =item *
12346:
12347: in_course($udom,$uname,$cdom,$cnum,$type,$hideprivileged) : determine if
1.1196 raeburn 12348: user: $uname:$udom has a role in the course: $cdom_$cnum.
12349:
12350: Additional optional arguments are: $type (if role checking is to be restricted
12351: to certain user status types -- previous (expired roles), active (currently
1.1195 raeburn 12352: available roles) or future (roles available in the future), and
12353: $hideprivileged -- if true will not report course roles for users who
12354: have active Domain Coordinator or Super User roles.
12355:
1.243 albertel 12356: =back
12357:
12358: =head2 User Modification
12359:
12360: =over 4
12361:
12362: =item *
12363:
1.957 raeburn 12364: assignrole($udom,$uname,$url,$role,$end,$start,$deleteflag,$selfenroll,$context) : assign role; give a role to a
1.243 albertel 12365: user for the level given by URL. Optional start and end dates (leave empty
12366: string or zero for "no date")
1.191 harris41 12367:
12368: =item *
12369:
1.243 albertel 12370: changepass($uname,$udom,$currentpass,$newpass,$server) : attempts to
12371: change a users, password, possible return values are: ok,
12372: pwchange_failure, non_authorized, auth_mode_error, unknown_user,
12373: refused
1.191 harris41 12374:
12375: =item *
12376:
1.243 albertel 12377: modifyuserauth($udom,$uname,$umode,$upass) : modify user authentication
1.191 harris41 12378:
12379: =item *
12380:
1.1058 raeburn 12381: modifyuser($udom,$uname,$uid,$umode,$upass,$first,$middle,$last, $gene,
12382: $forceid,$desiredhome,$email,$inststatus,$candelete) :
12383:
12384: will update user information (firstname,middlename,lastname,generation,
12385: permanentemail), and if forceid is true, student/employee ID also.
12386: A user's institutional affiliation(s) can also be updated.
12387: User information fields will not be overwritten with empty entries
12388: unless the field is included in the $candelete array reference.
12389: This array is included when a single user is modified via "Manage Users",
12390: or when Autoupdate.pl is run by cron in a domain.
1.191 harris41 12391:
12392: =item *
12393:
1.286 matthew 12394: modifystudent
12395:
1.957 raeburn 12396: modify a student's enrollment and identification information.
1.286 matthew 12397: The course id is resolved based on the current users environment.
12398: This means the envoking user must be a course coordinator or otherwise
12399: associated with a course.
12400:
1.297 matthew 12401: This call is essentially a wrapper for lonnet::modifyuser and
12402: lonnet::modify_student_enrollment
1.286 matthew 12403:
12404: Inputs:
12405:
12406: =over 4
12407:
1.957 raeburn 12408: =item B<$udom> Student's loncapa domain
1.286 matthew 12409:
1.957 raeburn 12410: =item B<$uname> Student's loncapa login name
1.286 matthew 12411:
1.964 bisitz 12412: =item B<$uid> Student/Employee ID
1.286 matthew 12413:
1.957 raeburn 12414: =item B<$umode> Student's authentication mode
1.286 matthew 12415:
1.957 raeburn 12416: =item B<$upass> Student's password
1.286 matthew 12417:
1.957 raeburn 12418: =item B<$first> Student's first name
1.286 matthew 12419:
1.957 raeburn 12420: =item B<$middle> Student's middle name
1.286 matthew 12421:
1.957 raeburn 12422: =item B<$last> Student's last name
1.286 matthew 12423:
1.957 raeburn 12424: =item B<$gene> Student's generation
1.286 matthew 12425:
1.957 raeburn 12426: =item B<$usec> Student's section in course
1.286 matthew 12427:
12428: =item B<$end> Unix time of the roles expiration
12429:
12430: =item B<$start> Unix time of the roles start date
12431:
12432: =item B<$forceid> If defined, allow $uid to be changed
12433:
12434: =item B<$desiredhome> server to use as home server for student
12435:
1.957 raeburn 12436: =item B<$email> Student's permanent e-mail address
12437:
12438: =item B<$type> Type of enrollment (auto or manual)
12439:
1.963 raeburn 12440: =item B<$locktype> boolean - enrollment type locked to prevent Autoenroll.pl changing manual to auto
12441:
12442: =item B<$cid> courseID - needed if a course role is assigned by a user whose current role is DC
1.957 raeburn 12443:
1.963 raeburn 12444: =item B<$selfenroll> boolean - 1 if user role change occurred via self-enrollment
1.957 raeburn 12445:
1.963 raeburn 12446: =item B<$context> role change context (shown in User Management Logs display in a course)
1.957 raeburn 12447:
1.963 raeburn 12448: =item B<$inststatus> institutional status of user - : separated string of escaped status types
1.957 raeburn 12449:
1.286 matthew 12450: =back
1.297 matthew 12451:
12452: =item *
12453:
12454: modify_student_enrollment
12455:
12456: Change a students enrollment status in a class. The environment variable
12457: 'role.request.course' must be defined for this function to proceed.
12458:
12459: Inputs:
12460:
12461: =over 4
12462:
12463: =item $udom, students domain
12464:
12465: =item $uname, students name
12466:
12467: =item $uid, students user id
12468:
12469: =item $first, students first name
12470:
12471: =item $middle
12472:
12473: =item $last
12474:
12475: =item $gene
12476:
12477: =item $usec
12478:
12479: =item $end
12480:
12481: =item $start
12482:
1.957 raeburn 12483: =item $type
12484:
12485: =item $locktype
12486:
12487: =item $cid
12488:
12489: =item $selfenroll
12490:
12491: =item $context
12492:
1.297 matthew 12493: =back
12494:
1.191 harris41 12495:
12496: =item *
12497:
1.243 albertel 12498: assigncustomrole($udom,$uname,$url,$rdom,$rnam,$rolename,$end,$start) : assign
12499: custom role; give a custom role to a user for the level given by URL. Specify
12500: name and domain of role author, and role name
1.191 harris41 12501:
12502: =item *
12503:
1.243 albertel 12504: revokerole($udom,$uname,$url,$role) : revoke a role for url
1.191 harris41 12505:
12506: =item *
12507:
1.243 albertel 12508: revokecustomrole($udom,$uname,$url,$role) : revoke a custom role
12509:
12510: =back
12511:
12512: =head2 Course Infomation
12513:
12514: =over 4
1.191 harris41 12515:
12516: =item *
12517:
1.1118 foxr 12518: coursedescription($courseid,$options) : returns a hash of information about the
1.631 albertel 12519: specified course id, including all environment settings for the
12520: course, the description of the course will be in the hash under the
12521: key 'description'
1.191 harris41 12522:
1.1118 foxr 12523: $options is an optional parameter that if supplied is a hash reference that controls
12524: what how this function works. It has the following key/values:
12525:
12526: =over 4
12527:
12528: =item freshen_cache
12529:
12530: If defined, and the environment cache for the course is valid, it is
12531: returned in the returned hash.
12532:
12533: =item one_time
12534:
12535: If defined, the last cache time is set to _now_
12536:
12537: =item user
12538:
12539: If defined, the supplied username is used instead of the current user.
12540:
12541:
12542: =back
12543:
1.191 harris41 12544: =item *
12545:
1.624 albertel 12546: resdata($name,$domain,$type,@which) : request for current parameter
12547: setting for a specific $type, where $type is either 'course' or 'user',
12548: @what should be a list of parameters to ask about. This routine caches
12549: answers for 5 minutes.
1.243 albertel 12550:
1.877 foxr 12551: =item *
12552:
12553: get_courseresdata($courseid, $domain) : dump the entire course resource
12554: data base, returning a hash that is keyed by the resource name and has
12555: values that are the resource value. I believe that the timestamps and
12556: versions are also returned.
12557:
1.243 albertel 12558: =back
12559:
12560: =head2 Course Modification
12561:
12562: =over 4
1.191 harris41 12563:
12564: =item *
12565:
1.243 albertel 12566: writecoursepref($courseid,%prefs) : write preferences (environment
12567: database) for a course
1.191 harris41 12568:
12569: =item *
12570:
1.1011 raeburn 12571: createcourse($udom,$description,$url,$course_server,$nonstandard,$inst_code,$course_owner,$crstype,$cnum) : make course
12572:
12573: =item *
12574:
1.1038 raeburn 12575: generate_coursenum($udom,$crstype) : get a unique (unused) course number in domain $udom for course type $crstype (Course or Community).
1.243 albertel 12576:
1.1167 droeschl 12577: =item *
12578:
12579: is_course($courseid), is_course($cdom, $cnum)
12580:
12581: Accepts either a combined $courseid (in the form of domain_courseid) or the
12582: two component version $cdom, $cnum. It checks if the specified course exists.
12583:
12584: Returns:
12585: undef if the course doesn't exist, otherwise
12586: in scalar context the combined courseid.
12587: in list context the two components of the course identifier, domain and
12588: courseid.
12589:
1.243 albertel 12590: =back
12591:
12592: =head2 Resource Subroutines
12593:
12594: =over 4
1.191 harris41 12595:
12596: =item *
12597:
1.243 albertel 12598: subscribe($fname) : subscribe to a resource, returns URL if possible (probably should use repcopy instead)
1.191 harris41 12599:
12600: =item *
12601:
1.243 albertel 12602: repcopy($filename) : subscribes to the requested file, and attempts to
12603: replicate from the owning library server, Might return
1.607 raeburn 12604: 'unavailable', 'not_found', 'forbidden', 'ok', or
12605: 'bad_request', also attempts to grab the metadata for the
1.243 albertel 12606: resource. Expects the local filesystem pathname
12607: (/home/httpd/html/res/....)
12608:
12609: =back
12610:
12611: =head2 Resource Information
12612:
12613: =over 4
1.191 harris41 12614:
12615: =item *
12616:
1.243 albertel 12617: EXT($varname,$symb,$udom,$uname) : evaluates and returns the value of
12618: a vairety of different possible values, $varname should be a request
12619: string, and the other parameters can be used to specify who and what
12620: one is asking about.
12621:
12622: Possible values for $varname are environment.lastname (or other item
12623: from the envirnment hash), user.name (or someother aspect about the
12624: user), resource.0.maxtries (or some other part and parameter of a
12625: resource)
1.204 albertel 12626:
12627: =item *
12628:
1.243 albertel 12629: directcondval($number) : get current value of a condition; reads from a state
12630: string
1.204 albertel 12631:
12632: =item *
12633:
1.243 albertel 12634: condval($condidx) : value of condition index based on state
1.204 albertel 12635:
12636: =item *
12637:
1.243 albertel 12638: metadata($uri,$what,$liburi,$prefix,$depthcount) : request a
12639: resource's metadata, $what should be either a specific key, or either
12640: 'keys' (to get a list of possible keys) or 'packages' to get a list of
12641: packages that this resource currently uses, the last 3 arguments are only used internally for recursive metadata.
12642:
12643: this function automatically caches all requests
1.191 harris41 12644:
12645: =item *
12646:
1.243 albertel 12647: metadata_query($query,$custom,$customshow) : make a metadata query against the
12648: network of library servers; returns file handle of where SQL and regex results
12649: will be stored for query
1.191 harris41 12650:
12651: =item *
12652:
1.243 albertel 12653: symbread($filename) : return symbolic list entry (filename argument optional);
12654: returns the data handle
1.191 harris41 12655:
12656: =item *
12657:
1.1190 raeburn 12658: symbverify($symb,$thisfn,$encstate) : verifies that $symb actually exists
12659: and is a possible symb for the URL in $thisfn, and if is an encrypted
1.582 albertel 12660: resource that the user accessed using /enc/ returns a 1 on success, 0
1.1190 raeburn 12661: on failure, user must be in a course, as it assumes the existence of
12662: the course initial hash, and uses $env('request.course.id'}. The third
12663: arg is an optional reference to a scalar. If this arg is passed in the
12664: call to symbverify, it will be set to 1 if the symb has been set to be
12665: encrypted; otherwise it will be null.
1.191 harris41 12666:
12667: =item *
12668:
1.243 albertel 12669: symbclean($symb) : removes versions numbers from a symb, returns the
12670: cleaned symb
1.191 harris41 12671:
12672: =item *
12673:
1.243 albertel 12674: is_on_map($uri) : checks if the $uri is somewhere on the current
12675: course map, user must be in a course for it to work.
1.191 harris41 12676:
12677: =item *
12678:
1.243 albertel 12679: numval($salt) : return random seed value (addend for rndseed)
1.191 harris41 12680:
12681: =item *
12682:
1.243 albertel 12683: rndseed($symb,$courseid,$udom,$uname) : create a random sum; returns
12684: a random seed, all arguments are optional, if they aren't sent it uses the
12685: environment to derive them. Note: if symb isn't sent and it can't get one
12686: from &symbread it will use the current time as its return value
1.191 harris41 12687:
12688: =item *
12689:
1.243 albertel 12690: ireceipt($funame,$fudom,$fucourseid,$fusymb) : return unique,
12691: unfakeable, receipt
1.191 harris41 12692:
12693: =item *
12694:
1.620 albertel 12695: receipt() : API to ireceipt working off of env values; given out to users
1.191 harris41 12696:
12697: =item *
12698:
1.243 albertel 12699: countacc($url) : count the number of accesses to a given URL
1.191 harris41 12700:
12701: =item *
12702:
1.243 albertel 12703: 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 12704:
12705: =item *
12706:
1.243 albertel 12707: 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 12708:
12709: =item *
12710:
1.243 albertel 12711: expirespread($uname,$udom,$stype,$usymb) : set expire date for spreadsheet
1.191 harris41 12712:
12713: =item *
12714:
1.243 albertel 12715: devalidate($symb) : devalidate temporary spreadsheet calculations,
12716: forcing spreadsheet to reevaluate the resource scores next time.
12717:
1.1195 raeburn 12718: =item *
12719:
1.1196 raeburn 12720: can_edit_resource($file,$cnum,$cdom,$resurl,$symb,$group) : determine if current user can edit a particular resource,
12721: when viewing in course context.
1.1195 raeburn 12722:
1.1196 raeburn 12723: input: six args -- filename (decluttered), course number, course domain,
12724: url, symb (if registered) and group (if this is a
12725: group item -- e.g., bulletin board, group page etc.).
1.1195 raeburn 12726:
1.1196 raeburn 12727: output: array of five scalars --
1.1195 raeburn 12728: $cfile -- url for file editing if editable on current server
12729: $home -- homeserver of resource (i.e., for author if published,
12730: or course if uploaded.).
12731: $switchserver -- 1 if server switch will be needed.
1.1196 raeburn 12732: $forceedit -- 1 if icon/link should be to go to edit mode
12733: $forceview -- 1 if icon/link should be to go to view mode
1.1195 raeburn 12734:
12735: =item *
12736:
12737: is_course_upload($file,$cnum,$cdom)
12738:
12739: Used in course context to determine if current file was uploaded to
12740: the course (i.e., would be found in /userfiles/docs on the course's
12741: homeserver.
12742:
12743: input: 3 args -- filename (decluttered), course number and course domain.
12744: output: boolean -- 1 if file was uploaded.
12745:
1.243 albertel 12746: =back
12747:
12748: =head2 Storing/Retreiving Data
12749:
12750: =over 4
1.191 harris41 12751:
12752: =item *
12753:
1.243 albertel 12754: store($storehash,$symb,$namespace,$udom,$uname) : stores hash permanently
12755: for this url; hashref needs to be given and should be a \%hashname; the
12756: remaining args aren't required and if they aren't passed or are '' they will
1.620 albertel 12757: be derived from the env
1.191 harris41 12758:
12759: =item *
12760:
1.243 albertel 12761: cstore($storehash,$symb,$namespace,$udom,$uname) : same as store but
12762: uses critical subroutine
1.191 harris41 12763:
12764: =item *
12765:
1.243 albertel 12766: restore($symb,$namespace,$udom,$uname) : returns hash for this symb;
12767: all args are optional
1.191 harris41 12768:
12769: =item *
12770:
1.717 albertel 12771: dumpstore($namespace,$udom,$uname,$regexp,$range) :
12772: dumps the complete (or key matching regexp) namespace into a hash
12773: ($udom, $uname, $regexp, $range are optional) for a namespace that is
12774: normally &store()ed into
12775:
12776: $range should be either an integer '100' (give me the first 100
12777: matching records)
12778: or be two integers sperated by a - with no spaces
12779: '30-50' (give me the 30th through the 50th matching
12780: records)
12781:
12782:
12783: =item *
12784:
12785: putstore($namespace,$symb,$version,$storehash,$udomain,$uname) :
12786: replaces a &store() version of data with a replacement set of data
12787: for a particular resource in a namespace passed in the $storehash hash
12788: reference
12789:
12790: =item *
12791:
1.243 albertel 12792: tmpstore($storehash,$symb,$namespace,$udom,$uname) : storage that
12793: works very similar to store/cstore, but all data is stored in a
12794: temporary location and can be reset using tmpreset, $storehash should
12795: be a hash reference, returns nothing on success
1.191 harris41 12796:
12797: =item *
12798:
1.243 albertel 12799: tmprestore($symb,$namespace,$udom,$uname) : storage that works very
12800: similar to restore, but all data is stored in a temporary location and
12801: can be reset using tmpreset. Returns a hash of values on success,
12802: error string otherwise.
1.191 harris41 12803:
12804: =item *
12805:
1.243 albertel 12806: tmpreset($symb,$namespace,$udom,$uname) : temporary storage reset,
12807: deltes all keys for $symb form the temporary storage hash.
1.191 harris41 12808:
12809: =item *
12810:
1.243 albertel 12811: get($namespace,$storearr,$udom,$uname) : returns hash with keys from array
12812: reference filled in from namesp ($udom and $uname are optional)
1.191 harris41 12813:
12814: =item *
12815:
1.243 albertel 12816: del($namespace,$storearr,$udom,$uname) : deletes keys out of array from
12817: namesp ($udom and $uname are optional)
1.191 harris41 12818:
12819: =item *
12820:
1.702 albertel 12821: dump($namespace,$udom,$uname,$regexp,$range) :
1.243 albertel 12822: dumps the complete (or key matching regexp) namespace into a hash
1.702 albertel 12823: ($udom, $uname, $regexp, $range are optional)
1.449 matthew 12824:
1.702 albertel 12825: $range should be either an integer '100' (give me the first 100
12826: matching records)
12827: or be two integers sperated by a - with no spaces
12828: '30-50' (give me the 30th through the 50th matching
12829: records)
1.449 matthew 12830: =item *
12831:
12832: inc($namespace,$store,$udom,$uname) : increments $store in $namespace.
12833: $store can be a scalar, an array reference, or if the amount to be
12834: incremented is > 1, a hash reference.
12835:
12836: ($udom and $uname are optional)
1.191 harris41 12837:
12838: =item *
12839:
1.243 albertel 12840: put($namespace,$storehash,$udom,$uname) : stores hash in namesp
12841: ($udom and $uname are optional)
1.191 harris41 12842:
12843: =item *
12844:
1.243 albertel 12845: cput($namespace,$storehash,$udom,$uname) : critical put
12846: ($udom and $uname are optional)
1.191 harris41 12847:
12848: =item *
12849:
1.748 albertel 12850: newput($namespace,$storehash,$udom,$uname) :
12851:
12852: Attempts to store the items in the $storehash, but only if they don't
12853: currently exist, if this succeeds you can be certain that you have
12854: successfully created a new key value pair in the $namespace db.
12855:
12856:
12857: Args:
12858: $namespace: name of database to store values to
12859: $storehash: hashref to store to the db
12860: $udom: (optional) domain of user containing the db
12861: $uname: (optional) name of user caontaining the db
12862:
12863: Returns:
12864: 'ok' -> succeeded in storing all keys of $storehash
12865: 'key_exists: <key>' -> failed to anything out of $storehash, as at
12866: least <key> already existed in the db (other
12867: requested keys may also already exist)
1.967 bisitz 12868: 'error: <msg>' -> unable to tie the DB or other error occurred
1.748 albertel 12869: 'con_lost' -> unable to contact request server
12870: 'refused' -> action was not allowed by remote machine
12871:
12872:
12873: =item *
12874:
1.243 albertel 12875: eget($namespace,$storearr,$udom,$uname) : returns hash with keys from array
12876: reference filled in from namesp (encrypts the return communication)
12877: ($udom and $uname are optional)
1.191 harris41 12878:
12879: =item *
12880:
1.243 albertel 12881: log($udom,$name,$home,$message) : write to permanent log for user; use
12882: critical subroutine
12883:
1.806 raeburn 12884: =item *
12885:
1.860 raeburn 12886: get_dom($namespace,$storearr,$udom,$uhome) : returns hash with keys from
12887: array reference filled in from namespace found in domain level on either
12888: specified domain server ($uhome) or primary domain server ($udom and $uhome are optional).
1.806 raeburn 12889:
12890: =item *
12891:
1.860 raeburn 12892: put_dom($namespace,$storehash,$udom,$uhome) : stores hash in namespace at
12893: domain level either on specified domain server ($uhome) or primary domain
12894: server ($udom and $uhome are optional)
1.806 raeburn 12895:
1.943 raeburn 12896: =item *
12897:
12898: get_domain_defaults($target_domain) : returns hash with defaults for
12899: authentication and language in the domain. Keys are: auth_def, auth_arg_def,
12900: lang_def; corresponsing values are authentication type (internal, krb4, krb5,
12901: or localauth), initial password or a kerberos realm, language (e.g., en-us).
12902: Values are retrieved from cache (if current), or from domain's configuration.db
12903: (if available), or lastly from values in lonTabs/dns_domain,tab,
12904: or lonTabs/domain.tab.
12905:
12906: %domdefaults = &get_auth_defaults($target_domain);
12907:
1.243 albertel 12908: =back
12909:
12910: =head2 Network Status Functions
12911:
12912: =over 4
1.191 harris41 12913:
12914: =item *
12915:
1.1137 raeburn 12916: dirlist() : return directory list based on URI (first arg).
12917:
12918: Inputs: 1 required, 5 optional.
12919:
12920: =over
12921:
12922: =item
12923: $uri - path to file in filesystem (starts: /res or /userfiles/). Required.
12924:
12925: =item
12926: $userdomain - domain of user/course to be listed. Extracted from $uri if absent.
12927:
12928: =item
12929: $username - username of user/course to be listed. Extracted from $uri if absent.
12930:
12931: =item
12932: $getpropath - boolean: 1 if prepend path using &propath().
12933:
12934: =item
12935: $getuserdir - boolean: 1 if prepend path for "userfiles".
12936:
12937: =item
12938: $alternateRoot - path to prepend in place of path from $uri.
12939:
12940: =back
12941:
12942: Returns: Array of up to two items.
12943:
12944: =over
12945:
12946: a reference to an array of files/subdirectories
12947:
12948: =over
12949:
12950: Each element in the array of files/subdirectories is a & separated list of
12951: item name and the result of running stat on the item. If dirlist was requested
12952: for a file instead of a directory, the item name will be ''. For a directory
12953: listing, if the item is a metadata file, the element will end &N&M
12954: (where N amd M are either 0 or 1, corresponding to obsolete set (1), or
12955: default copyright set (1).
12956:
12957: =back
12958:
12959: a scalar containing error condition (if encountered).
12960:
12961: =over
12962:
12963: =item
12964: no_host (no homeserver identified for $username:$domain).
12965:
12966: =item
12967: no_such_host (server contacted for listing not identified as valid host).
12968:
12969: =item
12970: con_lost (connection to remote server failed).
12971:
12972: =item
12973: refused (invalid $username:$domain received on lond side).
12974:
12975: =item
12976: no_such_dir (directory at specified path on lond side does not exist).
12977:
12978: =item
12979: empty (directory at specified path on lond side is empty).
12980:
12981: =over
12982:
12983: This is currently not encountered because the &ls3, &ls2,
12984: &ls (_handler) routines on the lond side do not filter out
12985: . and .. from a directory listing.
12986:
12987: =back
12988:
12989: =back
12990:
12991: =back
1.191 harris41 12992:
12993: =item *
12994:
1.243 albertel 12995: spareserver() : find server with least workload from spare.tab
12996:
1.986 foxr 12997:
12998: =item *
12999:
13000: host_from_dns($dns) : Returns the loncapa hostname corresponding to a DNS name or undef
13001: if there is no corresponding loncapa host.
13002:
1.243 albertel 13003: =back
13004:
1.986 foxr 13005:
1.243 albertel 13006: =head2 Apache Request
13007:
13008: =over 4
1.191 harris41 13009:
13010: =item *
13011:
1.243 albertel 13012: ssi($url,%hash) : server side include, does a complete request cycle on url to
13013: localhost, posts hash
13014:
13015: =back
13016:
13017: =head2 Data to String to Data
13018:
13019: =over 4
1.191 harris41 13020:
13021: =item *
13022:
1.243 albertel 13023: hash2str(%hash) : convert a hash into a string complete with escaping and '='
13024: and '&' separators, supports elements that are arrayrefs and hashrefs
1.191 harris41 13025:
13026: =item *
13027:
1.243 albertel 13028: hashref2str($hashref) : convert a hashref into a string complete with
13029: escaping and '=' and '&' separators, supports elements that are
13030: arrayrefs and hashrefs
1.191 harris41 13031:
13032: =item *
13033:
1.243 albertel 13034: arrayref2str($arrayref) : convert an arrayref into a string complete
13035: with escaping and '&' separators, supports elements that are arrayrefs
13036: and hashrefs
1.191 harris41 13037:
13038: =item *
13039:
1.243 albertel 13040: str2hash($string) : convert string to hash using unescaping and
13041: splitting on '=' and '&', supports elements that are arrayrefs and
13042: hashrefs
1.191 harris41 13043:
13044: =item *
13045:
1.243 albertel 13046: str2array($string) : convert string to hash using unescaping and
13047: splitting on '&', supports elements that are arrayrefs and hashrefs
13048:
13049: =back
13050:
13051: =head2 Logging Routines
13052:
13053:
13054: These routines allow one to make log messages in the lonnet.log and
13055: lonnet.perm logfiles.
1.191 harris41 13056:
1.1119 foxr 13057: =over 4
13058:
1.191 harris41 13059: =item *
13060:
1.243 albertel 13061: logtouch() : make sure the logfile, lonnet.log, exists
1.191 harris41 13062:
13063: =item *
13064:
1.243 albertel 13065: logthis() : append message to the normal lonnet.log file, it gets
13066: preiodically rolled over and deleted.
1.191 harris41 13067:
13068: =item *
13069:
1.243 albertel 13070: logperm() : append a permanent message to lonnet.perm.log, this log
13071: file never gets deleted by any automated portion of the system, only
13072: messages of critical importance should go in here.
13073:
1.1119 foxr 13074:
1.243 albertel 13075: =back
13076:
13077: =head2 General File Helper Routines
13078:
13079: =over 4
1.191 harris41 13080:
13081: =item *
13082:
1.481 raeburn 13083: getfile($file,$caller) : two cases - requests for files in /res or in /uploaded.
13084: (a) files in /uploaded
13085: (i) If a local copy of the file exists -
13086: compares modification date of local copy with last-modified date for
13087: definitive version stored on home server for course. If local copy is
13088: stale, requests a new version from the home server and stores it.
13089: If the original has been removed from the home server, then local copy
13090: is unlinked.
13091: (ii) If local copy does not exist -
13092: requests the file from the home server and stores it.
13093:
13094: If $caller is 'uploadrep':
13095: This indicates a call from lonuploadrep.pm (PerlHeaderParserHandler phase)
13096: for request for files originally uploaded via DOCS.
13097: - returns 'ok' if fresh local copy now available, -1 otherwise.
13098:
13099: Otherwise:
13100: This indicates a call from the content generation phase of the request.
13101: - returns the entire contents of the file or -1.
13102:
13103: (b) files in /res
13104: - returns the entire contents of a file or -1;
13105: it properly subscribes to and replicates the file if neccessary.
1.191 harris41 13106:
1.712 albertel 13107:
13108: =item *
13109:
13110: stat_file($url) : $url is expected to be a /res/ or /uploaded/ style file
13111: reference
13112:
13113: returns either a stat() list of data about the file or an empty list
13114: if the file doesn't exist or couldn't find out about it (connection
13115: problems or user unknown)
13116:
1.191 harris41 13117: =item *
13118:
1.243 albertel 13119: filelocation($dir,$file) : returns file system location of a file
13120: based on URI; meant to be "fairly clean" absolute reference, $dir is a
13121: directory that relative $file lookups are to looked in ($dir of /a/dir
13122: and a file of ../bob will become /a/bob)
1.191 harris41 13123:
13124: =item *
13125:
13126: hreflocation($dir,$file) : returns file system location or a URL; same as
13127: filelocation except for hrefs
13128:
13129: =item *
13130:
13131: declutter() : declutters URLs (remove docroot, beginning slashes, 'res' etc)
13132:
1.243 albertel 13133: =back
13134:
1.608 albertel 13135: =head2 Usererfile file routines (/uploaded*)
13136:
13137: =over 4
13138:
13139: =item *
13140:
13141: userfileupload(): main rotine for putting a file in a user or course's
13142: filespace, arguments are,
13143:
1.620 albertel 13144: formname - required - this is the name of the element in $env where the
1.608 albertel 13145: filename, and the contents of the file to create/modifed exist
1.620 albertel 13146: the filename is in $env{'form.'.$formname.'.filename'} and the
13147: contents of the file is located in $env{'form.'.$formname}
1.1090 raeburn 13148: context - if coursedoc, store the file in the course of the active role
13149: of the current user;
13150: if 'existingfile': store in 'overwrites' in /home/httpd/perl/tmp
13151: if 'canceloverwrite': delete file in tmp/overwrites directory
1.608 albertel 13152: subdir - required - subdirectory to put the file in under ../userfiles/
13153: if undefined, it will be placed in "unknown"
13154:
13155: (This routine calls clean_filename() to remove any dangerous
13156: characters from the filename, and then calls finuserfileupload() to
13157: complete the transaction)
13158:
13159: returns either the url of the uploaded file (/uploaded/....) if successful
13160: and /adm/notfound.html if unsuccessful
13161:
13162: =item *
13163:
13164: clean_filename(): routine for cleaing a filename up for storage in
13165: userfile space, argument is:
13166:
13167: filename - proposed filename
13168:
13169: returns: the new clean filename
13170:
13171: =item *
13172:
1.1090 raeburn 13173: finishuserfileupload(): routine that creates and sends the file to
1.608 albertel 13174: userspace, probably shouldn't be called directly
13175:
13176: docuname: username or courseid of destination for the file
13177: docudom: domain of user/course of destination for the file
13178: formname: same as for userfileupload()
1.1090 raeburn 13179: fname: filename (including subdirectories) for the file
13180: parser: if 'parse', will parse (html) file to extract references to objects, links etc.
13181: allfiles: reference to hash used to store objects found by parser
13182: codebase: reference to hash used for codebases of java objects found by parser
13183: thumbwidth: width (pixels) of thumbnail to be created for uploaded image
13184: thumbheight: height (pixels) of thumbnail to be created for uploaded image
13185: resizewidth: width to be used to resize image using resizeImage from ImageMagick
13186: resizeheight: height to be used to resize image using resizeImage from ImageMagick
13187: context: if 'overwrite', will move the uploaded file from its temporary location to
13188: userfiles to facilitate overwriting a previously uploaded file with same name.
1.1095 raeburn 13189: mimetype: reference to scalar to accommodate mime type determined
13190: from File::MMagic if $parser = parse.
1.608 albertel 13191:
13192: returns either the url of the uploaded file (/uploaded/....) if successful
1.1090 raeburn 13193: and /adm/notfound.html if unsuccessful (or an error message if context
13194: was 'overwrite').
13195:
1.608 albertel 13196:
13197: =item *
13198:
13199: renameuserfile(): renames an existing userfile to a new name
13200:
13201: Args:
13202: docuname: username or courseid of destination for the file
13203: docudom: domain of user/course of destination for the file
13204: old: current file name (including any subdirs under userfiles)
13205: new: desired file name (including any subdirs under userfiles)
13206:
13207: =item *
13208:
13209: mkdiruserfile(): creates a directory is a userfiles dir
13210:
13211: Args:
13212: docuname: username or courseid of destination for the file
13213: docudom: domain of user/course of destination for the file
13214: dir: dir to create (including any subdirs under userfiles)
13215:
13216: =item *
13217:
13218: removeuserfile(): removes a file that exists in userfiles
13219:
13220: Args:
13221: docuname: username or courseid of destination for the file
13222: docudom: domain of user/course of destination for the file
13223: fname: filname to delete (including any subdirs under userfiles)
13224:
13225: =item *
13226:
13227: removeuploadedurl(): convience function for removeuserfile()
13228:
13229: Args:
13230: url: a full /uploaded/... url to delete
13231:
1.747 albertel 13232: =item *
13233:
13234: get_portfile_permissions():
13235: Args:
13236: domain: domain of user or course contain the portfolio files
13237: user: name of user or num of course contain the portfolio files
13238: Returns:
13239: hashref of a dump of the proper file_permissions.db
13240:
13241:
13242: =item *
13243:
13244: get_access_controls():
13245:
13246: Args:
13247: current_permissions: the hash ref returned from get_portfile_permissions()
13248: group: (optional) the group you want the files associated with
13249: file: (optional) the file you want access info on
13250:
13251: Returns:
1.749 raeburn 13252: a hash (keys are file names) of hashes containing
13253: keys are: path to file/file_name\0uniqueID:scope_end_start (see below)
13254: values are XML containing access control settings (see below)
1.747 albertel 13255:
13256: Internal notes:
13257:
1.749 raeburn 13258: access controls are stored in file_permissions.db as key=value pairs.
13259: key -> path to file/file_name\0uniqueID:scope_end_start
13260: where scope -> public,guest,course,group,domains or users.
13261: end -> UNIX time for end of access (0 -> no end date)
13262: start -> UNIX time for start of access
13263:
13264: value -> XML description of access control
13265: <scope type=""> (type =1 of: public,guest,course,group,domains,users">
13266: <start></start>
13267: <end></end>
13268:
13269: <password></password> for scope type = guest
13270:
13271: <domain></domain> for scope type = course or group
13272: <number></number>
13273: <roles id="">
13274: <role></role>
13275: <access></access>
13276: <section></section>
13277: <group></group>
13278: </roles>
13279:
13280: <dom></dom> for scope type = domains
13281:
13282: <users> for scope type = users
13283: <user>
13284: <uname></uname>
13285: <udom></udom>
13286: </user>
13287: </users>
13288: </scope>
13289:
13290: Access data is also aggregated for each file in an additional key=value pair:
13291: key -> path to file/file_name\0accesscontrol
13292: value -> reference to hash
13293: hash contains key = value pairs
13294: where key = uniqueID:scope_end_start
13295: value = UNIX time record was last updated
13296:
13297: Used to improve speed of look-ups of access controls for each file.
13298:
13299: Locks on files (resulting from submission of portfolio file to a homework problem stored in array of arrays.
13300:
1.1198 ! raeburn 13301: =item *
! 13302:
1.749 raeburn 13303: modify_access_controls():
13304:
13305: Modifies access controls for a portfolio file
13306: Args
13307: 1. file name
13308: 2. reference to hash of required changes,
13309: 3. domain
13310: 4. username
13311: where domain,username are the domain of the portfolio owner
13312: (either a user or a course)
13313:
13314: Returns:
13315: 1. result of additions or updates ('ok' or 'error', with error message).
13316: 2. result of deletions ('ok' or 'error', with error message).
13317: 3. reference to hash of any new or updated access controls.
13318: 4. reference to hash used to map incoming IDs to uniqueIDs assigned to control.
13319: key = integer (inbound ID)
1.1198 ! raeburn 13320: value = uniqueID
! 13321:
! 13322: =item *
! 13323:
! 13324: get_timebased_id():
! 13325:
! 13326: Attempts to get a unique timestamp-based suffix for use with items added to a
! 13327: course via the Course Editor (e.g., folders, composite pages,
! 13328: group bulletin boards).
! 13329:
! 13330: Args: (first three required; six others optional)
! 13331:
! 13332: 1. prefix (alphanumeric): of keys in hash, e.g., suppsequence, docspage,
! 13333: docssequence, or name of group
! 13334:
! 13335: 2. keyid (alphanumeric): name of temporary locking key in hash,
! 13336: e.g., num, boardids
! 13337:
! 13338: 3. namespace: name of gdbm file used to store suffixes already assigned;
! 13339: file will be named nohist_namespace.db
! 13340:
! 13341: 4. cdom: domain of course; default is current course domain from %env
! 13342:
! 13343: 5. cnum: course number; default is current course number from %env
! 13344:
! 13345: 6. idtype: set to concat if an additional digit is to be appended to the
! 13346: unix timestamp to form the suffix, if the plain timestamp is already
! 13347: in use. Default is to not do this, but simply increment the unix
! 13348: timestamp by 1 until a unique key is obtained.
! 13349:
! 13350: 7. who: holder of locking key; defaults to user:domain for user.
! 13351:
! 13352: 8. locktries: number of attempts to obtain a lock (sleep of 1s before
! 13353: retrying); default is 3.
! 13354:
! 13355: 9. maxtries: number of attempts to obtain a unique suffix; default is 20.
! 13356:
! 13357: Returns:
! 13358:
! 13359: 1. suffix obtained (numeric)
! 13360:
! 13361: 2. result of deleting locking key (ok if deleted, or lock never obtained)
! 13362:
! 13363: 3. error: contains (localized) error message if an error occurred.
! 13364:
1.747 albertel 13365:
1.608 albertel 13366: =back
13367:
1.243 albertel 13368: =head2 HTTP Helper Routines
13369:
13370: =over 4
13371:
1.191 harris41 13372: =item *
13373:
13374: escape() : unpack non-word characters into CGI-compatible hex codes
13375:
13376: =item *
13377:
13378: unescape() : pack CGI-compatible hex codes into actual non-word ASCII character
13379:
1.243 albertel 13380: =back
13381:
13382: =head1 PRIVATE SUBROUTINES
13383:
13384: =head2 Underlying communication routines (Shouldn't call)
13385:
13386: =over 4
13387:
13388: =item *
13389:
13390: subreply() : tries to pass a message to lonc, returns con_lost if incapable
13391:
13392: =item *
13393:
13394: reply() : uses subreply to send a message to remote machine, logs all failures
13395:
13396: =item *
13397:
13398: critical() : passes a critical message to another server; if cannot
13399: get through then place message in connection buffer directory and
13400: returns con_delayed, if incapable of saving message, returns
13401: con_failed
13402:
13403: =item *
13404:
13405: reconlonc() : tries to reconnect lonc client processes.
13406:
13407: =back
13408:
13409: =head2 Resource Access Logging
13410:
13411: =over 4
13412:
13413: =item *
13414:
13415: flushcourselogs() : flush (save) buffer logs and access logs
13416:
13417: =item *
13418:
13419: courselog($what) : save message for course in hash
13420:
13421: =item *
13422:
13423: courseacclog($what) : save message for course using &courselog(). Perform
13424: special processing for specific resource types (problems, exams, quizzes, etc).
13425:
1.191 harris41 13426: =item *
13427:
13428: goodbye() : flush course logs and log shutting down; it is called in srm.conf
13429: as a PerlChildExitHandler
1.243 albertel 13430:
13431: =back
13432:
13433: =head2 Other
13434:
13435: =over 4
13436:
13437: =item *
13438:
13439: symblist($mapname,%newhash) : update symbolic storage links
1.191 harris41 13440:
13441: =back
13442:
13443: =cut
1.877 foxr 13444:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>