Annotation of rat/lonuserstate.pm, revision 1.76

1.1       www         1: # The LearningOnline Network with CAPA
                      2: # Construct and maintain state and binary representation of course for user
                      3: #
1.76    ! albertel    4: # $Id: lonuserstate.pm,v 1.75 2004/04/23 19:39:25 www Exp $
1.25      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.26      harris41   28: ###
1.1       www        29: 
                     30: package Apache::lonuserstate;
                     31: 
1.26      harris41   32: # ------------------------------------------------- modules used by this module
1.1       www        33: use strict;
                     34: use Apache::Constants qw(:common :http);
                     35: use Apache::File;
                     36: use HTML::TokeParser;
                     37: use Apache::lonnet();
1.26      harris41   38: use Apache::loncommon();
1.1       www        39: use GDBM_File;
1.12      www        40: use Apache::lonmsg;
1.15      www        41: use Safe;
1.21      www        42: use Safe::Hole;
1.15      www        43: use Opcode;
1.73      www        44: use Apache::lonenc;
1.15      www        45: 
1.1       www        46: # ---------------------------------------------------- Globals for this package
                     47: 
                     48: my $pc;      # Package counter
                     49: my %hash;    # The big tied hash
1.19      www        50: my %parmhash;# The hash with the parameters
1.1       www        51: my @cond;    # Array with all of the conditions
                     52: my $errtext; # variable with all errors
1.21      www        53: my $retfurl; # variable with the very first URL in the course
1.29      www        54: my %randompick; # randomly picked resources
1.51      www        55: my %randompickseed; # optional seed for randomly picking resources
1.73      www        56: my %encurl; # URLs in this folder are supposed to be encrypted
                     57: my %hiddenurl; # this URL (or complete folder) is supposed to be hidden
1.61      www        58: 
                     59: # ----------------------------------- Remove version from URL and store in hash
                     60: 
                     61: sub versiontrack {
                     62:     my $uri=shift;
                     63:     if ($uri=~/\.(\d+)\.\w+$/) {
                     64: 	my $version=$1;
                     65: 	$uri=~s/\.\d+\.(\w+)$/\.$1/;
1.62      www        66:         unless ($hash{'version_'.$uri}) {
                     67: 	    $hash{'version_'.$uri}=$version;
                     68: 	}
1.61      www        69:     }
                     70:     return $uri;
                     71: }
                     72: 
                     73: # -------------------------------------------------------------- Put in version
                     74: 
                     75: sub putinversion {
                     76:     my $uri=shift;
                     77:     if ($hash{'version_'.$uri}) {
                     78: 	my $version=$hash{'version_'.$uri};
1.65      www        79: 	if ($version eq 'mostrecent') { return $uri; }
1.66      www        80: 	if ($version eq &Apache::lonnet::getversion(
                     81: 			&Apache::lonnet::filelocation('',$uri))) 
                     82: 	             { return $uri; }
1.61      www        83: 	$uri=~s/\.(\w+)$/\.$version\.$1/;
                     84:     }
                     85:     return $uri;
                     86: }
                     87: 
                     88: # ----------------------------------------- Processing versions file for course
                     89: 
                     90: sub processversionfile {
1.64      www        91:     my %cenv=@_;
1.61      www        92:     my %versions=&Apache::lonnet::dump('resourceversions',
                     93: 				       $cenv{'domain'},
                     94: 				       $cenv{'num'});
                     95:     foreach (keys %versions) {
                     96: 	if ($_=~/^error\:/) { return; }
1.62      www        97: 	$hash{'version_'.$_}=$versions{$_};
1.61      www        98:     }
                     99: }
1.45      www       100: 
1.1       www       101: # --------------------------------------------------------- Loads map from disk
                    102: 
                    103: sub loadmap { 
                    104:     my $uri=shift;
                    105:     if ($hash{'map_pc_'.$uri}) { return OK; }
                    106: 
                    107:     $pc++;
                    108:     my $lpc=$pc;
                    109:     $hash{'map_pc_'.$uri}=$lpc;
                    110:     $hash{'map_id_'.$lpc}=$uri;
                    111: 
1.37      www       112: # Determine and check filename
1.62      www       113:     my $fn=&Apache::lonnet::filelocation('',&putinversion($uri));
1.37      www       114: 
                    115:     my $ispage=($fn=~/\.page$/);
1.1       www       116: 
1.10      www       117:     unless (($fn=~/\.sequence$/) ||
1.1       www       118:             ($fn=~/\.page$/)) { 
                    119:        $errtext.="Invalid map: $fn\n";
                    120:        return OK; 
                    121:     }
                    122: 
1.37      www       123:     my $instr=&Apache::lonnet::getfile($fn);
                    124: 
1.57      albertel  125:     unless ($instr eq -1) {
1.22      www       126: 
1.37      www       127: # Successfully got file, parse it
1.1       www       128: 
                    129:         my $parser = HTML::TokeParser->new(\$instr);
                    130:         my $token;
                    131: 
                    132:         my $linkpc=0;
                    133: 
                    134:         $fn=~/\.(\w+)$/;
                    135: 
                    136:         $hash{'map_type_'.$lpc}=$1;
                    137: 
                    138:         while ($token = $parser->get_token) {
                    139: 	    if ($token->[0] eq 'S') {
                    140:                 if ($token->[1] eq 'resource') {
                    141: # -------------------------------------------------------------------- Resource
                    142: 
                    143:                     my $rid=$lpc.'.'.$token->[2]->{'id'};
                    144: 
                    145:                     $hash{'kind_'.$rid}='res';
                    146:                     $hash{'title_'.$rid}=$token->[2]->{'title'};
1.61      www       147:                     my $turi=&versiontrack($token->[2]->{'src'});
                    148:                     if ($token->[2]->{'version'}) {
1.62      www       149: 			unless ($hash{'version_'.$turi}) {
                    150: 			    $hash{'version_'.$turi}=$1;
                    151: 			}
1.61      www       152: 		    }
1.60      albertel  153: 		    &Apache::lonnet::do_cache(\%Apache::lonnet::titlecache,
1.63      albertel  154: 		       &Apache::lonnet::encode_symb($uri,$token->[2]->{'id'},
                    155: 						    $turi),
                    156: 					      $token->[2]->{'title'},'title');
1.22      www       157:                     unless ($ispage) {
                    158:                         $turi=~/\.(\w+)$/;
1.26      harris41  159:                         my $embstyle=&Apache::loncommon::fileembstyle($1);
1.40      www       160:                         if ($token->[2]->{'external'} eq 'true') { # external
1.22      www       161:                             $turi=~s/^http\:\/\//\/adm\/wrapper\/ext\//;
1.40      www       162:                         } elsif ($turi=~/^\/*uploaded\//) { # uploaded
1.76    ! albertel  163: 			    if (($embstyle eq 'img') || ($embstyle eq 'emb')) {
        !           164:                                 $turi='/adm/wrapper'.$turi;
1.41      www       165:                             } elsif ($turi!~/\.(sequence|page)$/) {
1.42      www       166: 				$turi='/adm/coursedocs/showdoc'.$turi;
1.40      www       167:                             }
1.70      www       168:                         } elsif ($turi=~/\S/) { # normal non-empty internal resource
1.68      www       169: 			    my $mapdir=$uri;
                    170: 			    $mapdir=~s/[^\/]+$//;
                    171: 			    $turi=&Apache::lonnet::hreflocation($mapdir,$turi);
                    172: 			    if (($embstyle eq 'img') || ($embstyle eq 'emb')) {
                    173: 				$turi='/adm/wrapper'.$turi;
                    174: 			    }
1.22      www       175:                         }
                    176: 		    }
1.71      www       177: # Store reverse lookup, remove query string
                    178: 		    my $idsuri=$turi;
                    179: 		    $idsuri=~s/\?.+$//;
                    180:                     if (defined($hash{'ids_'.$idsuri})) {
                    181:                         $hash{'ids_'.$idsuri}.=','.$rid;
1.1       www       182:                     } else {
1.71      www       183:                         $hash{'ids_'.$idsuri}=''.$rid;
1.1       www       184:                     }
1.53      www       185:                
                    186:                     if
                    187: 	        ($turi=~/\/(syllabus|aboutme|navmaps|smppg|bulletinboard)$/) {
                    188: 			$turi.='?register=1';
                    189: 		    }
                    190: 
                    191:                     $hash{'src_'.$rid}=$turi;
1.1       www       192: 
1.22      www       193:                     if ($token->[2]->{'external'} eq 'true') {
1.1       www       194:                         $hash{'ext_'.$rid}='true:';
                    195:                     } else {
                    196:                         $hash{'ext_'.$rid}='false:';
                    197:                     }
                    198:                     if ($token->[2]->{'type'}) {
                    199: 			$hash{'type_'.$rid}=$token->[2]->{'type'};
1.2       www       200:                         if ($token->[2]->{'type'} eq 'start') {
                    201: 			    $hash{'map_start_'.$uri}="$rid";
                    202:                         }
                    203:                         if ($token->[2]->{'type'} eq 'finish') {
                    204: 			    $hash{'map_finish_'.$uri}="$rid";
                    205:                         }
1.1       www       206:                     }  else {
                    207:                         $hash{'type_'.$rid}='normal';
                    208:                     }
                    209: 
1.10      www       210:                     if (($turi=~/\.sequence$/) ||
1.1       www       211:                         ($turi=~/\.page$/)) {
1.2       www       212:                         $hash{'is_map_'.$rid}=1;
1.1       www       213:                         &loadmap($turi);
                    214:                     } 
                    215:                     
                    216:                 } elsif ($token->[1] eq 'condition') {
                    217: # ------------------------------------------------------------------- Condition
                    218: 
                    219:                     my $rid=$lpc.'.'.$token->[2]->{'id'};
                    220: 
                    221:                     $hash{'kind_'.$rid}='cond';
1.2       www       222:                     $cond[$#cond+1]=$token->[2]->{'value'};
                    223:                     $hash{'condid_'.$rid}=$#cond;
1.1       www       224:                     if ($token->[2]->{'type'}) {
1.2       www       225:                         $cond[$#cond].=':'.$token->[2]->{'type'};
1.1       www       226:                     }  else {
1.2       www       227:                         $cond[$#cond].=':normal';
1.1       www       228:                     }
                    229: 
                    230:                 } elsif ($token->[1] eq 'link') {
                    231: # ----------------------------------------------------------------------- Links
                    232: 
                    233:                     $linkpc++;
                    234:                     my $linkid=$lpc.'.'.$linkpc;
                    235: 
                    236:                     my $goesto=$lpc.'.'.$token->[2]->{'to'};
                    237:                     my $comesfrom=$lpc.'.'.$token->[2]->{'from'};
                    238:                     my $undercond=0;
                    239: 
                    240:                     if ($token->[2]->{'condition'}) {
                    241: 			$undercond=$lpc.'.'.$token->[2]->{'condition'};
                    242:                     }
                    243: 
                    244:                     $hash{'goesto_'.$linkid}=$goesto;
                    245:                     $hash{'comesfrom_'.$linkid}=$comesfrom;
                    246:                     $hash{'undercond_'.$linkid}=$undercond;
                    247: 
                    248:                     if (defined($hash{'to_'.$comesfrom})) {
                    249:                         $hash{'to_'.$comesfrom}.=','.$linkid;
                    250:                     } else {
                    251:                         $hash{'to_'.$comesfrom}=''.$linkid;
                    252:                     }
                    253:                     if (defined($hash{'from_'.$goesto})) {
                    254:                         $hash{'from_'.$goesto}.=','.$linkid;
                    255:                     } else {
                    256:                         $hash{'from_'.$goesto}=''.$linkid;
                    257:                     }
1.18      www       258:                 } elsif ($token->[1] eq 'param') {
                    259: # ------------------------------------------------------------------- Parameter
                    260: 
                    261:                     my $referid=$lpc.'.'.$token->[2]->{'to'};
1.63      albertel  262: 		    my $name=$token->[2]->{'name'};
                    263: 		    my $part;
                    264: 		    if ($name=~/^parameter_(.*)_/) {
                    265: 			$part=$1;
                    266: 		    } else {
                    267: 			$part=0;
                    268: 		    }
                    269: 		    $name=~s/^.*_([^_]*)$/$1/;
1.18      www       270:                     my $newparam=
                    271: 			&Apache::lonnet::escape($token->[2]->{'type'}).':'.
1.63      albertel  272: 			&Apache::lonnet::escape($part.'.'.$name).'='.
1.18      www       273: 			&Apache::lonnet::escape($token->[2]->{'value'});
                    274:                     if (defined($hash{'param_'.$referid})) {
                    275:                         $hash{'param_'.$referid}.='&'.$newparam;
                    276:                     } else {
                    277:                         $hash{'param_'.$referid}=''.$newparam;
                    278:                     }
1.75      www       279:                     if ($token->[2]->{'name'}=~/^parameter_(0_)*mapalias$/) {
1.28      www       280: 			$hash{'mapalias_'.$token->[2]->{'value'}}=$referid;
                    281:                     }
1.75      www       282:                     if ($token->[2]->{'name'}=~/^parameter_(0_)*randompick$/) {
1.29      www       283: 			$randompick{$referid}=$token->[2]->{'value'};
                    284:                     }
1.75      www       285:                     if ($token->[2]->{'name'}=~/^parameter_(0_)*randompickseed$/) {
1.51      www       286: 			$randompick{$referid}=$token->[2]->{'value'};
                    287:                     }
1.75      www       288:                     if ($token->[2]->{'name'}=~/^parameter_(0_)*encrypturl$/) {
1.74      www       289: 			if ($token->[2]->{'value'}=~/^yes$/i) {
                    290: 			    $encurl{$referid}=1;
                    291: 			}
1.73      www       292:                     }
1.75      www       293:                     if ($token->[2]->{'name'}=~/^parameter_(0_)*hiddenresource$/) {
1.74      www       294: 			if ($token->[2]->{'value'}=~/^yes$/i) {
                    295: 			    $hiddenurl{$referid}=1;
                    296: 			}
1.73      www       297:                     }
1.1       www       298:                 } 
                    299: 
                    300:             }
                    301:         }
                    302: 
                    303:     } else {
                    304:         $errtext.='Map not loaded: The file does not exist. ';
                    305:     }
                    306: }
                    307: 
1.3       www       308: # --------------------------------------------------------- Simplify expression
                    309: 
                    310: sub simplify {
                    311:    my $expression=shift;
                    312: # (8)=8
                    313:    $expression=~s/\((\d+)\)/$1/g;
                    314: # 8&8=8
1.7       www       315:    $expression=~s/(\D)(\d+)\&\2(\D)/$1$2$3/g;
1.3       www       316: # 8|8=8
1.7       www       317:    $expression=~s/(\D)(\d+)\|\2(\D)/$1$2$3/g;
1.3       www       318: # (5&3)&4=5&3&4
1.7       www       319:    $expression=~s/\((\d+)((?:\&\d+)+)\)\&(\d+\D)/$1$2\&$3/g;
1.3       www       320: # (((5&3)|(4&6)))=((5&3)|(4&6))
                    321:    $expression=~
                    322:        s/\((\(\(\d+(?:\&\d+)*\)(?:\|\(\d+(?:\&\d+)*\))+\))\)/$1/g;
                    323: # ((5&3)|(4&6))|(1&2)=(5&3)|(4&6)|(1&2)
                    324:    $expression=~
                    325:        s/\((\(\d+(?:\&\d+)*\))((?:\|\(\d+(?:\&\d+)*\))+)\)\|(\(\d+(?:\&\d+)*\))/\($1$2\|$3\)/g;
                    326:    return $expression;
                    327: }
                    328: 
1.2       www       329: # -------------------------------------------------------- Build condition hash
                    330: 
                    331: sub traceroute {
1.3       www       332:     my ($sofar,$rid,$beenhere)=@_;
                    333:     $sofar=simplify($sofar);
1.2       www       334:     unless ($beenhere=~/\&$rid\&/) {
                    335:        $beenhere.=$rid.'&';  
1.48      www       336:        if (($retfurl eq '') && ($hash{'src_'.$rid})
                    337:         && ($hash{'src_'.$rid}!~/\.sequence$/)) {
1.29      www       338:            my ($mapid,$resid)=split(/\./,$rid);
1.35      www       339:            $retfurl=$hash{'src_'.$rid}.
                    340:            (($hash{'src_'.$rid}=~/\?/)?'&':'?').'symb='.
1.29      www       341:            &Apache::lonnet::symbclean(
                    342:                            &Apache::lonnet::declutter($hash{'map_id_'.$mapid}).
                    343:                            '___'.$resid.'___'.
                    344:                            &Apache::lonnet::declutter($hash{'src_'.$rid}));
1.21      www       345:        }
1.2       www       346:        if (defined($hash{'conditions_'.$rid})) {
1.3       www       347: 	   $hash{'conditions_'.$rid}=simplify(
                    348:            '('.$hash{'conditions_'.$rid}.')|('.$sofar.')');
1.2       www       349:        } else {
                    350:            $hash{'conditions_'.$rid}=$sofar;
                    351:        }
                    352:        if (defined($hash{'is_map_'.$rid})) {
1.3       www       353:            if (defined($hash{'map_start_'.$hash{'src_'.$rid}})) {
                    354: 	       &traceroute($sofar,$hash{'map_start_'.$hash{'src_'.$rid}},'&');
                    355:                if (defined($hash{'map_finish_'.$hash{'src_'.$rid}})) {
                    356: 		   $sofar=
                    357:                   $hash{'conditions_'.$hash{'map_finish_'.$hash{'src_'.$rid}}};
                    358:                }
1.2       www       359:            }
                    360:        }
                    361:        if (defined($hash{'to_'.$rid})) {
1.26      harris41  362:           foreach (split(/\,/,$hash{'to_'.$rid})) {
1.2       www       363: 		my $further=$sofar;
                    364:                 if ($hash{'undercond_'.$_}) {
                    365: 		   if (defined($hash{'condid_'.$hash{'undercond_'.$_}})) {
1.3       www       366:   		       $further=simplify('('.$further.')&('.
                    367:                               $hash{'condid_'.$hash{'undercond_'.$_}}.')');
1.2       www       368: 		   } else {
                    369:                        $errtext.='Undefined condition ID: '
                    370:                                  .$hash{'undercond_'.$_}.'. ';
                    371:                    }
                    372:                 }
                    373:                 &traceroute($further,$hash{'goesto_'.$_},$beenhere);
1.26      harris41  374:           }
1.2       www       375:        }
                    376:     }
                    377: }
1.1       www       378: 
1.19      www       379: # ------------------------------ Cascading conditions, quick access, parameters
1.4       www       380: 
                    381: sub accinit {
                    382:     my ($uri,$short,$fn)=@_;
                    383:     my %acchash=();
                    384:     my %captured=();
                    385:     my $condcounter=0;
1.5       www       386:     $acchash{'acc.cond.'.$short.'.0'}=0;
1.26      harris41  387:     foreach (keys %hash) {
1.4       www       388:        if ($_=~/^conditions/) {
                    389: 	  my $expr=$hash{$_};
1.26      harris41  390:          foreach ($expr=~m/(\(\(\d+(?:\&\d+)+\)(?:\|\(\d+(?:\&\d+)+\))+\))/g) {
1.4       www       391:              my $sub=$_;
                    392:              my $orig=$_;
1.13      www       393:       $sub=~/\(\((\d+\&(:?\d+\&)*)(?:\d+\&*)+\)(?:\|\(\1(?:\d+\&*)+\))+\)/;
1.4       www       394:              my $factor=$1;
1.7       www       395:              $sub=~s/$factor//g;
                    396:              $sub=~s/^\(/\($factor\(/;
1.4       www       397: 	     $sub.=')';
                    398:              $sub=simplify($sub);
                    399:              $orig=~s/(\W)/\\$1/g;
1.7       www       400:  	     $expr=~s/$orig/$sub/;
1.26      harris41  401: 	  }
1.4       www       402:           $hash{$_}=$expr;
                    403:           unless (defined($captured{$expr})) {
                    404: 	      $condcounter++;
                    405:               $captured{$expr}=$condcounter;
1.5       www       406:               $acchash{'acc.cond.'.$short.'.'.$condcounter}=$expr;
1.4       www       407:           } 
1.19      www       408:        } elsif ($_=~/^param_(\d+)\.(\d+)/) {
                    409:           my $prefix=&Apache::lonnet::declutter($hash{'map_id_'.$1}).
                    410:       '___'.$2.'___'.&Apache::lonnet::declutter($hash{'src_'.$1.'.'.$2});
1.26      harris41  411:           foreach (split(/\&/,$hash{$_})) {
1.19      www       412: 	     my ($typename,$value)=split(/\=/,$_);
                    413:              my ($type,$name)=split(/\:/,$typename);
                    414:              $parmhash{$prefix.'.'.&Apache::lonnet::unescape($name)}=
                    415:                                    &Apache::lonnet::unescape($value);
                    416: 	     $parmhash{$prefix.'.'.&Apache::lonnet::unescape($name).'.type'}=
                    417:                                    &Apache::lonnet::unescape($type);
1.26      harris41  418:           }
1.19      www       419:        }
1.26      harris41  420:     }
                    421:     foreach (keys %hash) {
1.4       www       422: 	if ($_=~/^ids/) {
1.26      harris41  423: 	  foreach (split(/\,/,$hash{$_})) {
1.13      www       424: 	    my $resid=$_;
1.4       www       425:             my $uri=$hash{'src_'.$resid};
1.22      www       426:             $uri=~s/^\/adm\/wrapper//;
1.55      www       427:             $uri=&Apache::lonnet::declutter($uri);
1.4       www       428:             my @uriparts=split(/\//,$uri);
                    429:             my $urifile=$uriparts[$#uriparts];
                    430:             $#uriparts--;
                    431:             my $uripath=join('/',@uriparts);
1.23      www       432:            if ($uripath) {
1.13      www       433:             my $uricond='0';
1.4       www       434:             if (defined($hash{'conditions_'.$resid})) {
1.13      www       435:  		$uricond=$captured{$hash{'conditions_'.$resid}};
1.4       www       436:             }
1.5       www       437:             if (defined($acchash{'acc.res.'.$short.'.'.$uripath})) {
1.13      www       438:                 if ($acchash{'acc.res.'.$short.'.'.$uripath}=~
1.56      albertel  439:                    /(\&\Q$urifile\E\:[^\&]*)/) {
1.13      www       440: 		    my $replace=$1;
1.27      www       441:                     my $regexp=$replace;
                    442:                     $regexp=~s/\|/\\\|/g;
1.13      www       443:                     $acchash{'acc.res.'.$short.'.'.$uripath}
1.27      www       444:                      =~s/$regexp/$replace\|$uricond/;
1.13      www       445:                 } else {
                    446: 		   $acchash{'acc.res.'.$short.'.'.$uripath}.=
                    447:                      $urifile.':'.$uricond.'&';
                    448: 	        }
1.4       www       449:             } else {
1.13      www       450:                 $acchash{'acc.res.'.$short.'.'.$uripath}=
                    451:                  '&'.$urifile.':'.$uricond.'&';
1.23      www       452:             }
                    453:            } 
1.26      harris41  454:          }
1.13      www       455:       }
1.26      harris41  456:     }
1.24      www       457:     $acchash{'acc.res.'.$short.'.'}='&:0&';
1.8       www       458:     my $courseuri=$uri;
                    459:     $courseuri=~s/^\/res\///;
1.19      www       460:     &Apache::lonnet::delenv('(acc\.|httpref\.)');
1.4       www       461:     &Apache::lonnet::appenv(%acchash,
1.9       www       462:                             "request.course.id"  => $short,
1.8       www       463:                             "request.course.fn"  => $fn,
                    464:                             "request.course.uri" => $courseuri); 
1.4       www       465: }
                    466: 
1.73      www       467: # ---------------- Selectively delete from randompick maps and hidden url parms
1.29      www       468: 
1.73      www       469: sub hiddenurls {
1.31      www       470:     my $randomoutentry='';
1.29      www       471:     foreach my $rid (keys %randompick) {
                    472:         my $rndpick=$randompick{$rid};
                    473:         my $mpc=$hash{'map_pc_'.$hash{'src_'.$rid}};
                    474: # ------------------------------------------- put existing resources into array
                    475:         my @currentrids=();
1.50      albertel  476:         foreach (sort(keys(%hash))) {
1.29      www       477: 	    if ($_=~/^src_($mpc\.\d+)/) {
                    478: 		if ($hash{'src_'.$1}) { push @currentrids, $1; }
                    479:             }
                    480:         }
1.50      albertel  481: 	# rids are number.number and we want to numercially sort on 
                    482:         # the second number
                    483: 	@currentrids=sort {
                    484: 	    my (undef,$aid)=split(/\./,$a);
                    485: 	    my (undef,$bid)=split(/\./,$b);
                    486: 	    $aid <=> $bid;
                    487: 	} @currentrids;
1.29      www       488:         next if ($#currentrids<$rndpick);
                    489: # -------------------------------- randomly eliminate the ones that should stay
1.50      albertel  490: 	my (undef,$id)=split(/\./,$rid);
1.51      www       491:         if ($randompickseed{$rid}) { $id=$randompickseed{$rid}; }
1.50      albertel  492: 	my $rndseed=&Apache::lonnet::rndseed($id); # use id instead of symb
1.58      albertel  493: 	&Apache::lonnet::setup_random_from_rndseed($rndseed);
1.50      albertel  494: 	my @whichids=&Math::Random::random_permuted_index($#currentrids+1);
                    495:         for (my $i=1;$i<=$rndpick;$i++) { $currentrids[$whichids[$i]]=''; }
                    496: 	#&Apache::lonnet::logthis("$id,$rndseed,".join(':',@whichids));
1.29      www       497: # -------------------------------------------------------- delete the leftovers
                    498:         for (my $k=0; $k<=$#currentrids; $k++) {
                    499:             if ($currentrids[$k]) {
                    500: 		$hash{'randomout_'.$currentrids[$k]}=1;
1.32      www       501:                 my ($mapid,$resid)=split(/\./,$currentrids[$k]);
                    502:                 $randomoutentry.='&'.
                    503:                  &Apache::lonnet::symbclean(
                    504: 		    &Apache::lonnet::declutter($hash{'map_id_'.$mapid}).
                    505:                     '___'.$resid.'___'.
                    506: 		    &Apache::lonnet::declutter($hash{'src_'.$currentrids[$k]})
                    507:                  ).'&';
1.29      www       508:             }
                    509:         }
1.31      www       510:     }
1.73      www       511: # ------------------------------ take care of explicitly hidden urls or folders
                    512:     foreach my $rid (keys %hiddenurl) {
                    513: 	$hash{'randomout_'.$rid}=1;
                    514: 	my ($mapid,$resid)=split(/\./,$rid);
                    515: 	$randomoutentry.='&'.
                    516: 	    &Apache::lonnet::symbclean(
                    517: 		         &Apache::lonnet::declutter($hash{'map_id_'.$mapid}).
                    518: 				       '___'.$resid.'___'.
                    519: 		    &Apache::lonnet::declutter($hash{'src_'.$rid})
                    520: 				       ).'&';
                    521:     }
                    522: # --------------------------------------- append randomout entry to environment
1.31      www       523:     if ($randomoutentry) {
                    524: 	&Apache::lonnet::appenv('acc.randomout' => $randomoutentry);
1.29      www       525:     }
                    526: }
                    527: 
1.1       www       528: # ---------------------------------------------------- Read map and all submaps
                    529: 
                    530: sub readmap {
1.9       www       531:    my $short=shift;
                    532:    $short=~s/^\///;
                    533:    my %cenv=&Apache::lonnet::coursedescription($short);
                    534:    my $fn=$cenv{'fn'};
                    535:    my $uri;
                    536:    $short=~s/\//\_/g;
                    537:    unless ($uri=$cenv{'url'}) { 
                    538:       &Apache::lonnet::logthis("<font color=blue>WARNING: ".
                    539:                        "Could not load course $short.</font>"); 
                    540:       return 'No course data available.';
                    541:    }
1.3       www       542:    @cond=('true:normal');
1.11      www       543:    unlink($fn.'.db');
                    544:    unlink($fn.'_symb.db');
                    545:    unlink($fn.'.state');
1.19      www       546:    unlink($fn.'parms.db');
1.29      www       547:    undef %randompick;
1.73      www       548:    undef %hiddenurl;
                    549:    undef %encurl;
1.21      www       550:    $retfurl='';
1.36      albertel  551:    if ((tie(%hash,'GDBM_File',"$fn.db",&GDBM_WRCREAT(),0640)) &&
                    552:        (tie(%parmhash,'GDBM_File',$fn.'_parms.db',&GDBM_WRCREAT(),0640))) {
1.4       www       553:     %hash=();
1.19      www       554:     %parmhash=();
1.4       www       555:     $errtext='';
                    556:     $pc=0;
1.62      www       557:     &processversionfile(%cenv);
1.38      www       558:     my $furi=&Apache::lonnet::clutter($uri);
1.61      www       559:     $hash{'src_0.0'}=&versiontrack($furi);
1.30      www       560:     $hash{'title_0.0'}=&Apache::lonnet::metadata($uri,'title');
                    561:     $hash{'ids_'.$furi}='0.0';
                    562:     $hash{'is_map_0.0'}=1;
1.4       www       563:     loadmap($uri);
                    564:     if (defined($hash{'map_start_'.$uri})) {
                    565:         &traceroute('0',$hash{'map_start_'.$uri},'&');
                    566:         &accinit($uri,$short,$fn);
1.73      www       567:         &hiddenurls();
1.45      www       568:     }
1.62      www       569: # ------------------------------------------------------- Put versions into src
1.61      www       570:     foreach (keys %hash) {
                    571: 	if ($_=~/^src\_/) {
                    572: 	    $hash{$_}=&putinversion($hash{$_});
                    573: 	}
                    574:     }
1.74      www       575: # ---------------------------------------------------------------- Encrypt URLs
                    576:     foreach (keys %encurl) {
                    577: 	$hash{'src_'.$_}=&Apache::lonenc::encrypted($hash{'src_'.$_});
                    578:     }
                    579: # ----------------------------------------------- Close hashes to finally store
                    580: # --------------------------------- Routine must pass this point, no early outs
1.19      www       581:     unless ((untie(%hash)) && (untie(%parmhash))) {
1.4       www       582:       &Apache::lonnet::logthis("<font color=blue>WARNING: ".
                    583:                        "Could not untie coursemap $fn for $uri.</font>"); 
1.1       www       584:     }
1.74      www       585: # ---------------------------------------------------- Store away initial state
1.4       www       586:     {
                    587:      my $cfh;
                    588:      if ($cfh=Apache::File->new(">$fn.state")) {
                    589:         print $cfh join("\n",@cond);
                    590:      } else {
1.6       www       591:       &Apache::lonnet::logthis("<font color=blue>WARNING: ".
1.4       www       592:                        "Could not write statemap $fn for $uri.</font>"); 
                    593:      }
                    594:     }  
                    595:    } else {
1.6       www       596:       &Apache::lonnet::logthis("<font color=blue>WARNING: ".
1.4       www       597:                        "Could not tie coursemap $fn for $uri.</font>"); 
                    598:    }
1.12      www       599:    &Apache::lonmsg::author_res_msg($ENV{'request.course.uri'},$errtext);
1.46      www       600: # ------------------------------------------------- Check for critical messages
                    601: 
                    602:     my @what=&Apache::lonnet::dump('critical',$ENV{'user.domain'},
                    603:                                               $ENV{'user.name'});
                    604:     if ($what[0]) {
                    605: 	if (($what[0] ne 'con_lost') && ($what[0]!~/^error\:/)) {
                    606: 	    $retfurl='/adm/email?critical=display';
                    607:         }
                    608:     }
1.21      www       609:    return ($retfurl,$errtext);
1.1       www       610: }
1.15      www       611: 
                    612: # ------------------------------------------------------- Evaluate state string
                    613: 
                    614: sub evalstate {
1.21      www       615: 
1.15      www       616:     my $fn=$ENV{'request.course.fn'}.'.state';
                    617:     my $state='2';
                    618:     if (-e $fn) {
                    619:        my @conditions=();
                    620:        {
                    621:         my $fh=Apache::File->new($fn);
                    622:         @conditions=<$fh>;
                    623:        }  
1.21      www       624:        my $safeeval = new Safe;
                    625:        my $safehole = new Safe::Hole;
1.15      www       626:        $safeeval->permit("entereval");
                    627:        $safeeval->permit(":base_math");
                    628:        $safeeval->deny(":base_io");
1.21      www       629:        $safehole->wrap(\&Apache::lonnet::EXT,$safeeval,'&EXT');
1.26      harris41  630:        foreach (@conditions) {
1.15      www       631: 	   my $line=$_;
                    632:            chomp($line);
                    633: 	   my ($condition,$weight)=split(/\:/,$_);
                    634:            if ($safeeval->reval($condition)) {
                    635: 	       if ($weight eq 'force') {
                    636: 		   $state.='3';
                    637:                } else {
                    638:                    $state.='2';
                    639:                }
                    640:            } else {
                    641:                if ($weight eq 'stop') {
                    642: 		   $state.='0';
                    643:                } else {
                    644:                    $state.='1';
                    645:                }
                    646:            }
1.26      harris41  647:        }
1.15      www       648:     }
                    649:     &Apache::lonnet::appenv('user.state.'.$ENV{'request.course.id'} => $state);
                    650:     return $state;
                    651: }
                    652: 
1.1       www       653: 1;
                    654: __END__
                    655: 
1.26      harris41  656: =head1 NAME
                    657: 
                    658: Apache::lonuserstate - Construct and maintain state and binary representation
                    659: of course for user
                    660: 
                    661: =head1 SYNOPSIS
                    662: 
                    663: Invoked by lonroles.pm.
                    664: 
                    665: &Apache::lonuserstate::readmap($cdom.'/'.$cnum);
                    666: 
                    667: =head1 INTRODUCTION
                    668: 
                    669: This module constructs and maintains state and binary representation
                    670: of course for user.
                    671: 
                    672: This is part of the LearningOnline Network with CAPA project
                    673: described at http://www.lon-capa.org.
                    674: 
                    675: =head1 HANDLER SUBROUTINE
                    676: 
                    677: There is no handler subroutine.
                    678: 
                    679: =head1 OTHER SUBROUTINES
                    680: 
                    681: =over 4
                    682: 
                    683: =item *
                    684: 
                    685: loadmap() : Loads map from disk
                    686: 
                    687: =item *
                    688: 
                    689: simplify() : Simplify expression
                    690: 
                    691: =item *
                    692: 
                    693: traceroute() : Build condition hash
                    694: 
                    695: =item *
                    696: 
                    697: accinit() : Cascading conditions, quick access, parameters
1.1       www       698: 
1.26      harris41  699: =item *
1.1       www       700: 
1.26      harris41  701: readmap() : Read map and all submaps
1.1       www       702: 
1.26      harris41  703: =item *
1.1       www       704: 
1.26      harris41  705: evalstate() : Evaluate state string
1.1       www       706: 
1.26      harris41  707: =back
1.1       www       708: 
1.26      harris41  709: =cut

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