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