Annotation of loncom/interface/lonnavmaps.pm, revision 1.74

1.72      bowersj2    1: 
1.2       www         2: # The LearningOnline Network with CAPA
                      3: # Navigate Maps Handler
1.1       www         4: #
1.72      bowersj2    5: # $Id: lonnavmaps.pm,v 1.71 2002/10/08 20:39:43 www Exp $
1.20      albertel    6: #
                      7: # Copyright Michigan State University Board of Trustees
                      8: #
                      9: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                     10: #
                     11: # LON-CAPA is free software; you can redistribute it and/or modify
                     12: # it under the terms of the GNU General Public License as published by
                     13: # the Free Software Foundation; either version 2 of the License, or
                     14: # (at your option) any later version.
                     15: #
                     16: # LON-CAPA is distributed in the hope that it will be useful,
                     17: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     18: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     19: # GNU General Public License for more details.
                     20: #
                     21: # You should have received a copy of the GNU General Public License
                     22: # along with LON-CAPA; if not, write to the Free Software
                     23: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     24: #
                     25: # /home/httpd/html/adm/gpl.txt
                     26: #
                     27: # http://www.lon-capa.org/
                     28: #
1.2       www        29: # (Page Handler
1.1       www        30: #
1.2       www        31: # (TeX Content Handler
1.1       www        32: #
1.2       www        33: # 05/29/00,05/30 Gerd Kortemeyer)
                     34: # 08/30,08/31,09/06,09/14,09/15,09/16,09/19,09/20,09/21,09/23,
                     35: # 10/02,10/10,10/14,10/16,10/18,10/19,10/31,11/6,11/14,11/16 Gerd Kortemeyer)
1.1       www        36: #
1.17      www        37: # 3/1/1,6/1,17/1,29/1,30/1,2/8,9/21,9/24,9/25 Gerd Kortemeyer
1.21      www        38: # YEAR=2002
                     39: # 1/1 Gerd Kortemeyer
                     40: #
1.2       www        41: 
1.1       www        42: package Apache::lonnavmaps;
                     43: 
                     44: use strict;
1.2       www        45: use Apache::Constants qw(:common :http);
                     46: use Apache::lonnet();
1.18      albertel   47: use Apache::loncommon();
1.2       www        48: use GDBM_File;
1.73      bowersj2   49: use POSIX qw (floor strftime);
1.2       www        50: 
                     51: # -------------------------------------------------------------- Module Globals
                     52: my %hash;
                     53: my @rows;
                     54: 
1.10      www        55: #
                     56: # These cache hashes need to be independent of user, resource and course
                     57: # (user and course can/should be in the keys)
                     58: #
                     59: 
                     60: my %courserdatas;
                     61: my %userrdatas;
                     62: 
                     63: #
                     64: # These global hashes are dependent on user, course and resource, 
                     65: # and need to be initialized every time when a sheet is calculated
                     66: #
                     67: my %courseopt;
                     68: my %useropt;
                     69: my %parmhash;
                     70: 
1.47      bowersj2   71: # This parameter keeps track of whether obtaining the user's information
                     72: # failed, which the colorizer in astatus can use
                     73: my $networkFailedFlag = 0;
                     74: 
1.2       www        75: # ------------------------------------------------------------------ Euclid gcd
                     76: 
                     77: sub euclid {
                     78:     my ($e,$f)=@_;
                     79:     my $a; my $b; my $r;
                     80:     if ($e>$f) { $b=$e; $r=$f; } else { $r=$e; $b=$f; }
                     81:     while ($r!=0) {
1.51      bowersj2   82:         $a=$b; $b=$r;
1.2       www        83:         $r=$a%$b;
                     84:     }
                     85:     return $b;
                     86: }
                     87: 
1.10      www        88: # --------------------------------------------------------------------- Parmval
                     89: 
                     90: # -------------------------------------------- Figure out a cascading parameter
                     91: #
                     92: # For this function to work
                     93: #
                     94: # * parmhash needs to be tied
                     95: # * courseopt and useropt need to be initialized for this user and course
                     96: #
                     97: 
                     98: sub parmval {
                     99:     my ($what,$symb)=@_;
                    100:     my $cid=$ENV{'request.course.id'};
                    101:     my $csec=$ENV{'request.course.sec'};
                    102:     my $uname=$ENV{'user.name'};
                    103:     my $udom=$ENV{'user.domain'};
                    104: 
                    105:     unless ($symb) { return ''; }
                    106:     my $result='';
                    107: 
                    108:     my ($mapname,$id,$fn)=split(/\_\_\_/,$symb);
                    109: 
                    110: # ----------------------------------------------------- Cascading lookup scheme
1.24      albertel  111:     my $rwhat=$what;
                    112:     $what=~s/^parameter\_//;
                    113:     $what=~s/\_/\./;
                    114: 
                    115:     my $symbparm=$symb.'.'.$what;
                    116:     my $mapparm=$mapname.'___(all).'.$what;
                    117:     my $usercourseprefix=$uname.'_'.$udom.'_'.$cid;
                    118: 
                    119:     my $seclevel= $usercourseprefix.'.['.$csec.'].'.$what;
                    120:     my $seclevelr=$usercourseprefix.'.['.$csec.'].'.$symbparm;
                    121:     my $seclevelm=$usercourseprefix.'.['.$csec.'].'.$mapparm;
                    122: 
                    123:     my $courselevel= $usercourseprefix.'.'.$what;
                    124:     my $courselevelr=$usercourseprefix.'.'.$symbparm;
                    125:     my $courselevelm=$usercourseprefix.'.'.$mapparm;
                    126: 
                    127: # ---------------------------------------------------------- first, check user
1.57      albertel  128:     if (defined($uname)) {
                    129:         if (defined($useropt{$courselevelr})) { return $useropt{$courselevelr}; }
                    130:         if (defined($useropt{$courselevelm})) { return $useropt{$courselevelm}; }
                    131:         if (defined($useropt{$courselevel})) { return $useropt{$courselevel}; }
1.24      albertel  132:     }
1.10      www       133: 
1.24      albertel  134: # ------------------------------------------------------- second, check course
1.57      albertel  135:     if (defined($csec)) {
                    136:         if (defined($courseopt{$seclevelr})) { return $courseopt{$seclevelr}; }
                    137:         if (defined($courseopt{$seclevelm})) { return $courseopt{$seclevelm}; }
                    138:         if (defined($courseopt{$seclevel})) { return $courseopt{$seclevel}; }
1.24      albertel  139:     }
1.10      www       140: 
1.57      albertel  141:     if (defined($courseopt{$courselevelr})) { return $courseopt{$courselevelr}; }
                    142:     if (defined($courseopt{$courselevelm})) { return $courseopt{$courselevelm}; }
                    143:     if (defined($courseopt{$courselevel})) { return $courseopt{$courselevel}; }
1.10      www       144: 
1.24      albertel  145: # ----------------------------------------------------- third, check map parms
1.10      www       146: 
1.24      albertel  147:     my $thisparm=$parmhash{$symbparm};
1.57      albertel  148:     if (defined($thisparm)) { return $thisparm; }
1.10      www       149: 
1.24      albertel  150: # ----------------------------------------------------- fourth , check default
1.10      www       151: 
1.25      albertel  152:     my $default=&Apache::lonnet::metadata($fn,$rwhat.'.default');
1.57      albertel  153:     if (defined($default)) { return $default}
1.25      albertel  154: 
                    155: # --------------------------------------------------- fifth , cascade up parts
                    156: 
                    157:     my ($space,@qualifier)=split(/\./,$rwhat);
                    158:     my $qualifier=join('.',@qualifier);
                    159:     unless ($space eq '0') {
1.51      bowersj2  160:         my ($part,$id)=split(/\_/,$space);
                    161:         if ($id) {
                    162:             my $partgeneral=&parmval($part.".$qualifier",$symb);
1.57      albertel  163:             if (defined($partgeneral)) { return $partgeneral; }
1.51      bowersj2  164:         } else {
                    165:             my $resourcegeneral=&parmval("0.$qualifier",$symb);
1.57      albertel  166:             if (defined($resourcegeneral)) { return $resourcegeneral; }
1.51      bowersj2  167:         }
1.25      albertel  168:     }
                    169:     return '';
1.10      www       170: }
                    171: 
                    172: 
                    173: 
1.9       www       174: # ------------------------------------------------------------- Find out status
1.25      albertel  175: # return codes
                    176: # tcode (timecode)
                    177: # 1: will open later
                    178: # 2: is open and not past due yet
                    179: # 3: is past due date
                    180: # 4: due in the next 24 hours
                    181: #
                    182: # code (curent solved status)
                    183: # 1: not attempted
                    184: # 2: attempted but wrong, or incorrect by instructor
                    185: # 3: solved or correct by instructor
1.29      albertel  186: # 4: partially correct (one or more parts correct)
                    187: # "excused" needs to be supported, but is not yet.
1.9       www       188: sub astatus {
                    189:     my $rid=shift;
1.29      albertel  190:     my $code=0;
1.9       www       191:     my $ctext='';
                    192:     $rid=~/(\d+)\.(\d+)/;
1.10      www       193:     my $symb=&Apache::lonnet::declutter($hash{'map_id_'.$1}).'___'.$2.'___'.
1.51      bowersj2  194:         &Apache::lonnet::declutter($hash{'src_'.$rid});
1.15      www       195:     my %duedate=();
                    196:     my %opendate=();
                    197:     my %answerdate=();
1.25      albertel  198:     # need to always check part 0's open/due/answer status
1.51      bowersj2  199:     foreach (sort(split(/\,/,&Apache::lonnet::metadata($hash{'src_'.$rid},'allpo\ssiblekeys')))) {
1.15      www       200:         if ($_=~/^parameter\_(.*)\_opendate$/) {
1.51      bowersj2  201:             my $part=$1;
1.15      www       202:             $duedate{$part}=&parmval($part.'.duedate',$symb);
                    203:             $opendate{$part}=&parmval($part.'.opendate',$symb);
                    204:             $answerdate{$part}=&parmval($part.'.answerdate',$symb);
1.49      www       205:             if (&parmval($part.'.opendate.type',$symb) eq 'date_interval') {
1.51      bowersj2  206:                 $opendate{$part}=$duedate{$part}-$opendate{$part};
1.49      www       207:             }
1.50      www       208:             if (&parmval($part.'.answerdate.type',$symb) eq 'date_interval') {
1.49      www       209:                 $answerdate{$part}=$duedate{$part}+$answerdate{$part};
                    210:             }
1.15      www       211:         }
1.25      albertel  212:     }
1.11      www       213:     my $now=time;
                    214:     my $tcode=0;
1.16      www       215: 
                    216:     my %returnhash=&Apache::lonnet::restore($symb);
                    217: 
1.25      albertel  218:     foreach (sort(keys(%opendate))) {
1.51      bowersj2  219:         my $duedate=$duedate{$_};
                    220:         my $opendate=$opendate{$_};
                    221:         my $answerdate=$answerdate{$_};
                    222:         my $preface='';
                    223:         unless ($_ eq '0') { $preface=' Part: '.$_.' '; }
                    224:         if ($opendate) {
                    225:             if ($now<$duedate || (!$duedate)) {
                    226:                 unless ($tcode==4) { $tcode=2; }
                    227:                 if ($duedate) {
                    228:                     $ctext.=$preface.'Due: '.localtime($duedate);
                    229:                 } else {
                    230:                     $ctext.=$preface.'No Due Date';
                    231:                 }
                    232:                 if ($now<$opendate) {
                    233:                     unless ($tcode) { $tcode=1; }
                    234:                     $ctext.=$preface.'Open: '.localtime($opendate);
                    235:                 }
                    236:                 if ($duedate && $duedate-$now<86400) {
                    237:                     $tcode=4;
                    238:                     $ctext.=$preface.'Due: '.localtime($duedate);
                    239:                 }
                    240:             } else {
                    241:                 unless (($tcode==4) || ($tcode eq 2)) { $tcode=3; }
                    242:                 if ($now<$answerdate) {
                    243:                     $ctext.='Answer: '.localtime($duedate);
                    244:                 }
                    245:             }
                    246:         } else {
                    247:             unless (($tcode==2) || ($tcode==4)) { $tcode=1; }
                    248:         }
                    249:         
                    250:         my $status=$returnhash{'resource.'.$_.'.solved'};
                    251:         
                    252:         if ($status eq 'correct_by_student') {
                    253:             if ($code==0||$code==3) { $code=3; } else { $code=4; }
                    254:             $ctext.=' solved';
                    255:         } elsif ($status eq 'correct_by_override') {
                    256:             if ($code==0||$code==3) { $code=3; } else { $code=4; }
                    257:             $ctext.=' override';
                    258:         } elsif ($status eq 'incorrect_attempted') {
                    259:             if ($code!=4 && $code!=3) { $code=2; }
                    260:             if ($code==3) { $code=4; }
                    261:             $ctext.=' ('.
                    262:                 ($returnhash{'resource.'.$_.'.tries'}?
                    263:                  $returnhash{'resource.'.$_.'.tries'}:'0');
                    264:             my $numtries = &parmval($_.'.maxtries',$symb);
                    265:             if ($numtries) { $ctext.='/'.$numtries.' tries'; }
                    266:             $ctext.=')';
                    267:         } elsif ($status eq 'incorrect_by_override') {
                    268:             if ($code!=4 && $code!=3) { $code=2; }
                    269:             if ($code==3) { $code=4; }
                    270:             $ctext.=' override';
                    271:         } elsif ($status eq 'excused') {
                    272:             if ($code==0||$code==3) { $code=3; } else { $code=4; }
                    273:             $ctext.=' excused';
                    274:         } else {
                    275:             if ($code==0) { $code=1; }
                    276:         }
1.25      albertel  277:     }
1.16      www       278: 
1.11      www       279:     return 'p'.$code.$tcode.'"'.$ctext.'"';
1.9       www       280: }
                    281: 
1.2       www       282: 
1.31      albertel  283: sub addresource {
1.32      albertel  284:     my ($resource,$sofar,$rid,$showtypes,$indent,$linkid)=@_;
1.31      albertel  285:     if ($showtypes eq 'problems') {
1.51      bowersj2  286:         if ($resource!~/\.(problem|exam|quiz|assess|survey|form)$/) {
                    287:             return;
                    288:         }
1.31      albertel  289:     }
                    290:     my $brepriv=&Apache::lonnet::allowed('bre',$resource);
                    291:     if ($hash{'src_'.$rid}) {
1.51      bowersj2  292:         if (($brepriv eq '2') || ($brepriv eq 'F')) {
                    293:             my $pprefix='';
                    294:             if ($resource=~/\.(problem|exam|quiz|assess|survey|form)$/) {
                    295:                 $pprefix=&astatus($rid);
                    296:             }
                    297:             $$sofar++;
                    298:             if ($indent) { $pprefix='i'.$indent.','.$pprefix; }
                    299:             if ($linkid) { $pprefix='l'.$linkid.','.$pprefix; }
                    300:             if (defined($rows[$$sofar])) {
                    301:                 $rows[$$sofar].='&'.$pprefix.$rid;
                    302:             } else {
                    303:                 $rows[$$sofar]=$pprefix.$rid;
                    304:             }
                    305:         }
1.31      albertel  306:     }
                    307: }
                    308: 
                    309: sub followlinks () {
1.32      albertel  310:     my ($rid,$sofar,$beenhere,$further,$showtypes,$indent,$linkid)=@_;
1.31      albertel  311:     my $mincond=1;
                    312:     my $next='';
                    313:     foreach (split(/\,/,$hash{'to_'.$rid})) {
1.51      bowersj2  314:         my $thiscond=
                    315:             &Apache::lonnet::directcondval($hash{'condid_'.$hash{'undercond_'.$_}});
                    316:         if ($thiscond>=$mincond) {
                    317:             if ($next) {
                    318:                 $next.=','.$_.':'.$thiscond;
                    319:             } else {
                    320:                 $next=$_.':'.$thiscond;
                    321:             }
                    322:             if ($thiscond>$mincond) { $mincond=$thiscond; }
                    323:         }
1.31      albertel  324:     }
1.32      albertel  325:     my $col=0;
                    326:     &Apache::lonxml::debug("following links -$next-");
1.31      albertel  327:     foreach (split(/\,/,$next)) {
1.51      bowersj2  328:         my ($nextlinkid,$condval)=split(/\:/,$_);
                    329:         if ($condval>=$mincond) {
                    330:             my $now=&tracetable($sofar,$hash{'goesto_'.$nextlinkid},
                    331:                                 $beenhere,$showtypes,$indent,$linkid);
                    332:             if ($now>$further) {                
                    333:                 if ($col>0) {
                    334:                     my $string;
                    335:                     for(my $i=0;$i<$col;$i++) { $string.='&'; }
                    336:                     for(my $i=$further+1;$now-1>$i;$i++) {
                    337:                         $rows[$i]=$string.$rows[$i];
                    338:                     }
                    339:                 }
                    340:                 $further=$now;
                    341:             }
                    342:         }
                    343:         $col++;
1.31      albertel  344:     }
                    345:     return $further;
                    346: }
                    347: # ------------------------------------------------------------ Build page table
                    348: 
                    349: sub tracetable {
1.32      albertel  350:     my ($sofar,$rid,$beenhere,$showtypes,$indent,$linkid)=@_;
                    351:     my $newshowtypes=$showtypes;
1.31      albertel  352:     my $further=$sofar;
1.44      www       353: # $Apache::lonxml::debug=1;
1.32      albertel  354:     &Apache::lonxml::debug("$rid ; $linkid ; $sofar ; $beenhere ; ".$hash{'src_'.$rid});
                    355:     if ($beenhere=~/\&$rid\&/) { return $further; }
                    356:     $beenhere.=$rid.'&';
1.31      albertel  357: 
                    358:     if (defined($hash{'is_map_'.$rid})) {
1.51      bowersj2  359:         $sofar++;
                    360:         my $tprefix='';
                    361:         if ($hash{'map_type_'.$hash{'map_pc_'.$hash{'src_'.$rid}}}
                    362:             eq 'sequence') {
                    363:             $tprefix='h';
                    364:         } elsif ($hash{'map_type_'.$hash{'map_pc_'.$hash{'src_'.$rid}}}
                    365:                  eq 'page') {
                    366:             $tprefix='j';
                    367:             if ($indent) { $tprefix='i'.$indent.','.$tprefix; }
                    368:             if ($linkid) { $tprefix='l'.$linkid.','.$tprefix; }
                    369:             $newshowtypes='problems';
                    370:             $indent++;
                    371:             #if in a .page continue to link the encompising .page
                    372:             if (!$linkid) { $linkid=$rid; }
                    373:         }
                    374:         if (defined($rows[$sofar])) {
                    375:             $rows[$sofar].='&'.$tprefix.$rid;
                    376:         } else {
                    377:             $rows[$sofar]=$tprefix.$rid;
                    378:         }
                    379:         if ((defined($hash{'map_start_'.$hash{'src_'.$rid}})) &&
                    380:             (defined($hash{'map_finish_'.$hash{'src_'.$rid}}))) {
                    381:             my $frid=$hash{'map_finish_'.$hash{'src_'.$rid}};
                    382:             $sofar=&tracetable($sofar,$hash{'map_start_'.$hash{'src_'.$rid}},
                    383:                                '&'.$frid.'&',$newshowtypes,$indent,$linkid);
                    384:             &addresource($hash{'src_'.$frid},\$sofar,$frid,$newshowtypes,
                    385:                          $indent,$linkid);
                    386:             if ($tprefix =~ /j$/) { $indent--; $linkid=''; }
                    387:         }
1.31      albertel  388:     } else {
1.51      bowersj2  389:         &addresource($hash{'src_'.$rid},\$sofar,$rid,$showtypes,
                    390:                      $indent,$linkid);
1.31      albertel  391:     }
                    392: 
                    393:     if (defined($hash{'to_'.$rid})) {
1.51      bowersj2  394:         $further=&followlinks($rid,$sofar,$beenhere,$further,$showtypes,
                    395:                               $indent,$linkid);
1.2       www       396:     }
1.31      albertel  397: 
1.2       www       398:     return $further;
                    399: }
                    400: 
                    401: # ================================================================ Main Handler
1.1       www       402: 
                    403: sub handler {
1.28      albertel  404:     my $r=shift;
1.2       www       405: 
1.51      bowersj2  406:     &Apache::loncommon::get_unprocessed_cgi($ENV{QUERY_STRING});
                    407: 
                    408:     if ($ENV{'form.jtest'} ne "1")
                    409:     {
                    410:         return new_handle($r);
                    411:     }
1.2       www       412: 
                    413: # ------------------------------------------- Set document type for header only
                    414: 
1.28      albertel  415:     if ($r->header_only) {
1.51      bowersj2  416:         if ($ENV{'browser.mathml'}) {
                    417:             $r->content_type('text/xml');
                    418:         } else {
                    419:             $r->content_type('text/html');
                    420:         }
                    421:         $r->send_http_header;
                    422:         return OK;
1.28      albertel  423:     }
                    424:     my $requrl=$r->uri;
                    425:     my $hashtied;
1.2       www       426: # ----------------------------------------------------------------- Tie db file
1.28      albertel  427:     my $fn;
                    428:     if ($ENV{'request.course.fn'}) {
1.51      bowersj2  429:         $fn=$ENV{'request.course.fn'};
                    430:         if (-e "$fn.db") {
                    431:             if ((tie(%hash,'GDBM_File',"$fn.db",&GDBM_READER(),0640)) &&
                    432:                 (tie(%parmhash,'GDBM_File',
                    433:                      $ENV{'request.course.fn'}.'_parms.db',
                    434:                      &GDBM_READER(),0640))) {
                    435:                 $hashtied=1;
                    436:             }
                    437:         }
1.28      albertel  438:     }
                    439:     if (!$hashtied) {
1.51      bowersj2  440:         $ENV{'user.error.msg'}="$requrl:bre:0:0:Course not initialized";
                    441:         return HTTP_NOT_ACCEPTABLE; 
1.28      albertel  442:     }
                    443: 
1.2       www       444: # ------------------------------------------------------------------- Hash tied
1.28      albertel  445: 
                    446:     if ($ENV{'browser.mathml'}) {
1.51      bowersj2  447:         $r->content_type('text/xml');
1.28      albertel  448:     } else {
1.51      bowersj2  449:         $r->content_type('text/html');
1.28      albertel  450:     }
                    451:     &Apache::loncommon::no_cache($r);
                    452:     $r->send_http_header;
                    453: 
1.42      www       454:     my $firstres=$hash{'map_start_'.
                    455:            &Apache::lonnet::clutter($ENV{'request.course.uri'})};
                    456:     my $lastres=$hash{'map_finish_'.
                    457:            &Apache::lonnet::clutter($ENV{'request.course.uri'})};
1.28      albertel  458:     if (!(($firstres) && ($lastres))) {
1.51      bowersj2  459:         $r->print('<html><body>Coursemap undefined.</body></html>');
1.28      albertel  460:     } else {
                    461: 
1.2       www       462: # ----------------------------------------------------------------- Render page
1.10      www       463: # -------------------------------------------------------------- Set parameters
                    464: 
                    465: 
                    466: # ---------------------------- initialize coursedata and userdata for this user
1.51      bowersj2  467:         undef %courseopt;
                    468:         undef %useropt;
1.10      www       469: 
1.51      bowersj2  470:         my $uname=$ENV{'user.name'};
                    471:         my $udom=$ENV{'user.domain'};
                    472:         my $uhome=$ENV{'user.home'};
                    473:         my $cid=$ENV{'request.course.id'};
                    474:         my $chome=$ENV{'course.'.$cid.'.home'};
                    475:         my ($cdom,$cnum)=split(/\_/,$cid);
                    476: 
                    477:         my $userprefix=$uname.'_'.$udom.'_';
                    478:         
                    479:         unless ($uhome eq 'no_host') { 
1.48      bowersj2  480: # ------------------------------------------------- Get coursedata (if present)
1.51      bowersj2  481:             unless ((time-$courserdatas{$cid.'.last_cache'})<240) {
                    482:                 my $reply=&Apache::lonnet::reply('dump:'.$cdom.':'.$cnum.
                    483:                                                  ':resourcedata',$chome);
                    484:                 if ($reply!~/^error\:/) {
                    485:                     $courserdatas{$cid}=$reply;
                    486:                     $courserdatas{$cid.'.last_cache'}=time;
                    487:                 }
                    488:                 # check to see if network failed
                    489:                 elsif ( $reply=~/no.such.host/i || $reply=~/con.*lost/i )
                    490:                 {
                    491:                     $networkFailedFlag = 1;
                    492:                 }
                    493:             }
                    494:             foreach (split(/\&/,$courserdatas{$cid})) {
                    495:                 my ($name,$value)=split(/\=/,$_);
                    496:                 $courseopt{$userprefix.&Apache::lonnet::unescape($name)}=
                    497:                     &Apache::lonnet::unescape($value);
                    498:             }
1.10      www       499: # --------------------------------------------------- Get userdata (if present)
1.51      bowersj2  500:             unless ((time-$userrdatas{$uname.'___'.$udom.'.last_cache'})<240) {
                    501:                 my $reply=&Apache::lonnet::reply('dump:'.$udom.':'.$uname.':resourcedata',$uhome);
                    502:                 if ($reply!~/^error\:/) {
                    503:                     $userrdatas{$uname.'___'.$udom}=$reply;
                    504:                     $userrdatas{$uname.'___'.$udom.'.last_cache'}=time;
                    505:                 }
                    506:             }
                    507:             foreach (split(/\&/,$userrdatas{$uname.'___'.$udom})) {
                    508:                 my ($name,$value)=split(/\=/,$_);
                    509:                 $useropt{$userprefix.&Apache::lonnet::unescape($name)}=
                    510:                     &Apache::lonnet::unescape($value);
                    511:             }
                    512:         }
1.28      albertel  513: 
1.51      bowersj2  514:         @rows=();
1.28      albertel  515: 
1.51      bowersj2  516:         &tracetable(0,$firstres,'&','',0);
1.2       www       517: 
                    518: # ------------------------------------------------------------------ Page parms
                    519: 
1.51      bowersj2  520:         my $j;
                    521:         my $i;
                    522:         my $lcm=1;
                    523:         my $contents=0;
1.2       www       524: 
                    525: # ---------------------------------------------- Go through table to get layout
                    526: 
1.51      bowersj2  527:         for ($i=0;$i<=$#rows;$i++) {
                    528:             if ($rows[$i]) {
                    529:                 &Apache::lonxml::debug("Row $i is:".$rows[$i]);
                    530:                 $contents++;
                    531:                 my @colcont=split(/\&/,$rows[$i]);
                    532:                 $lcm*=($#colcont+1)/euclid($lcm,($#colcont+1));
                    533:             } 
                    534:         }
1.5       www       535: 
1.2       www       536: 
1.51      bowersj2  537:         unless ($contents) {
                    538:             $r->print('<html><body>Empty Map.</body></html>');
                    539:         } else {
1.10      www       540: 
1.2       www       541: # ------------------------------------------------------------------ Build page
                    542: 
1.51      bowersj2  543:             my $currenturl=$ENV{'form.postdata'};
                    544:             $currenturl=~s/^http\:\/\///;
                    545:             $currenturl=~s/^[^\/]+//;
1.13      www       546: 
1.2       www       547: # ---------------------------------------------------------------- Send headers
                    548: 
1.51      bowersj2  549:             my $date=localtime;
                    550:             my $now=time;
1.21      www       551: # ----------------------------------------- Get email status and discussiontime
                    552: 
1.51      bowersj2  553:             my %emailstatus=&Apache::lonnet::dump('email_status');
                    554:             my $logouttime=$emailstatus{'logout'};
                    555:             my $courseleave=$emailstatus{'logout_'.$ENV{'request.course.id'}};
                    556:             my $lastcheck=($courseleave>$logouttime?$courseleave:$logouttime);
                    557: 
                    558:             my %discussiontimes=&Apache::lonnet::dump('discussiontimes',
                    559:                                                           $cdom,$cnum);
                    560: 
                    561:             my %feedback=();
                    562:             my %error=();
                    563:             foreach my $msgid (split(/\&/,&Apache::lonnet::reply('keys:'.
                    564:                                                                  $ENV{'user.domain'}.':'.
                    565:                                                                  $ENV{'user.name'}.':nohist_email',
                    566:                                                                  $ENV{'user.home'}))) {
                    567:                 $msgid=&Apache::lonnet::unescape($msgid);
                    568:                 my $plain=&Apache::lonnet::unescape(&Apache::lonnet::unescape($msgid));
                    569:                 if ($plain=~/(Error|Feedback) \[([^\]]+)\]/) {
                    570:                     my ($what,$url)=($1,$2);
                    571:                     my %status=
                    572:                         &Apache::lonnet::get('email_status',[$msgid]);
                    573:                     if ($status{$msgid}=~/^error\:/) { 
                    574:                         $status{$msgid}=''; 
                    575:                     }
                    576:                         
                    577:                     if (($status{$msgid} eq 'new') || 
                    578:                         (!$status{$msgid})) { 
                    579:                         if ($what eq 'Error') {
                    580:                             $error{$url}.=','.$msgid; 
                    581:                         } else {
                    582:                             $feedback{$url}.=','.$msgid;
                    583:                         }
                    584:                     }
                    585:                 }
                    586:             }
1.22      www       587: # ----------------------------------------------------------- Start Page Output
1.43      www       588:             my $bodytagadd='';
1.51      bowersj2  589:             $r->print(
1.43      www       590:                    '<html><head><title>Navigate Course Map</title></head>');
1.51      bowersj2  591:             if (($currenturl=~/^\/res/) &&
                    592:                 ($currenturl!~/^\/res\/adm/)) {
                    593:                 $bodytagadd='onLoad="window.location.hash='."'curloc'".'"';
                    594:             }
                    595:             $r->print(&Apache::loncommon::bodytag('Navigate Course Map','',
1.43      www       596:                                                   $bodytagadd));
1.51      bowersj2  597:             $r->print('<script>window.focus();</script>');
                    598:             my $desc=$ENV{'course.'.$ENV{'request.course.id'}.'.description'};
                    599:             if (defined($desc)) { $r->print("<h2>$desc</h2>\n"); }
                    600:             $r->print("<h3>$date</h3>\n");
                    601:             $r->rflush();
                    602:             $r->print('<img src="/adm/lonMisc/chat.gif"> New discussion since '.
                    603:                       localtime($lastcheck).
                    604:                       '<br><img src="/adm/lonMisc/feedback.gif"> New message (click to open)<p>'); 
                    605:             if (($currenturl=~/^\/res/) &&
                    606:                 ($currenturl!~/^\/res\/adm/)) {
                    607:                 $r->print('<a href="#curloc">Current Location</a><p>');
                    608:             }
                    609: 
                    610:             # Handle a network error
                    611: 
                    612:             if ($networkFailedFlag)
                    613:             {
                    614:                 $r->print('<H2>LON-CAPA network failure.</H2>'."\n");
                    615:                 $r->print("<p>LON-CAPA's network is having difficulties, some problem" .
                    616:                           " information, such as due dates, will not be available.");
                    617:             }
1.13      www       618: # ----------------------------------------------------- The little content list
1.51      bowersj2  619:             for ($i=0;$i<=$#rows;$i++) {
                    620:                 if ($rows[$i]) {
                    621:                     my @colcont=split(/\&/,$rows[$i]);
                    622:                     my $avespan=$lcm/($#colcont+1);
                    623:                     for ($j=0;$j<=$#colcont;$j++) {
                    624:                         my $rid=$colcont[$j];
                    625:                         if ($rid=~/^h(.+)/) {
                    626:                             $rid=$1;
                    627:                             $r->print('&nbsp;&nbsp;&nbsp;<a href="#'.
                    628:                                       $rid.'">'.$hash{'title_'.$rid}.
                    629:                                       '</a><br>');
                    630:                         }
                    631:                     }
                    632:                 }
                    633:             }
1.2       www       634: # ----------------------------------------------------------------- Start table
1.51      bowersj2  635:             $r->print('<hr><table cols="'.$lcm.'" border="0">');
                    636:             for ($i=0;$i<=$#rows;$i++) {
                    637:                 if ($rows[$i]) {
                    638:                     $r->print("\n<tr>");
                    639:                     my @colcont=split(/\&/,$rows[$i]);
                    640:                     my $avespan=$lcm/($#colcont+1);
                    641: 
                    642:                     # for each item I wish to print on this row...
                    643:                     for ($j=0;$j<=$#colcont;$j++) {
                    644:                         my $indent;my $indentstr;
                    645:                         my $linkid;
                    646:                         my $rid=$colcont[$j];
1.36      www       647:                         $rid=~/(\d+)\.(\d+)$/;
1.51      bowersj2  648:                         my $src=
                    649:                            &Apache::lonnet::declutter($hash{'src_'.$1.'.'.$2});
                    650:                         my $symb=
                    651:           &Apache::lonnet::declutter($hash{'map_id_'.$1}).'___'.$2.'___'.$src;
                    652:                         my $add='<td>';
                    653:                         my $adde='</td>';
                    654:                         my $hwk='<font color="#223322">';
                    655:                         my $hwke='</font>';
                    656:                         if ($rid=~/^l(\d+\.\d+),(.+)/) { $linkid=$1; $rid=$2; }
                    657:                         if ($rid=~/^i(\d+),(.+)/) { $indent=$1; $rid=$2; }
                    658:                         if ($rid=~/^h(.+)/) {
                    659:                             $rid=$1;
                    660:                             $add='<th bgcolor="#AAFF55"><a name="'.$rid.'">';
                    661:                             $adde='</th>';
1.36      www       662:                             if (($ENV{'user.adv'}) && 
1.51      bowersj2  663:                                 ($parmhash{$symb.'.0.parameter_randompick'})) {
1.36      www       664:                                $adde=' (randomly select '.
1.51      bowersj2  665:                                    $parmhash{$symb.'.0.parameter_randompick'}.
1.36      www       666:                                    ')</th>';
                    667:                             }
1.51      bowersj2  668:                         }
                    669:                         if ($rid=~/^j(.+)/) { $rid=$1; }
                    670:                         if ($rid=~/^p(\d)(\d)\"([\w\: \(\)\/\,]*)\"(.+)/) {
                    671:                             # sub astatus describes what code/tcode mean
                    672:                             my $code=$1;
                    673:                             my $tcode=$2;
                    674:                             my $ctext=$3;
                    675:                             $rid=$4;
                    676:                             
                    677:                             # will open later
                    678:                             if ($tcode eq '1') { 
                    679:                                 $add='<td bgcolor="#AAAAAA">';
                    680:                             }
                    681: 
                    682:                             # solved/correct
                    683:                             if ($code eq '3') {
                    684:                                 $add='<td bgcolor="#AAFFAA">';
                    685:                             } elsif ($code eq '4') { # partially correct
                    686:                                 $add='<td bgcolor="#E0FFAA">';
                    687:                             } else {
                    688:                                 # not attempted
                    689:                                 
                    690:                                 # we end up here on network failure, so pick a neutral
                    691:                                 # color if the network failed instead of bright red.
                    692:                                 if ( $networkFailedFlag )
                    693:                                 {
                    694:                                     $add = '<td bgcolor="#AAAAAA">';
                    695:                                 }
                    696:                                 else
                    697:                                 {
                    698:                                     $add='<td bgcolor="#FFAAAA">';
                    699:                                 }
                    700: 
                    701:                                 if ($tcode eq '2') { # open, not past due
                    702:                                     $add='<td bgcolor="#FFFFAA">';
                    703:                                 }
                    704: 
                    705:                                 if ($tcode eq '4') { # due in next 24 hours
                    706:                                     $add='<td bgcolor="#FFFF33">';
                    707:                                     $adde='</td>';
                    708:                                 }
                    709:                             }
                    710:                             $hwk='<font color="#888811"><b>';
                    711:                             $hwke='</b></font>';
                    712:                             if ($code eq '1') {
                    713:                                 $hwke='</b> ('.$ctext.')</font>';
                    714:                             }
                    715:                             if ($code eq '2' || $code eq '4') {
                    716:                                 $hwk='<font color="#992222"><b>';
                    717:                                 $hwke='</b> ('.$ctext.')</font>';
                    718:                             }
                    719:                             if ($code eq '3') {
                    720:                                 $hwk='<font color="#229922"><b>';
                    721:                                 $hwke='</b> ('.$ctext.')</font>';
                    722:                             }
                    723:                             if ($networkFailedFlag) 
                    724:                             {
                    725:                                 $hwke='</b> (status unavailable)</font>';
                    726:                             }
                    727:                         }
                    728:                         if ($rid && $hash{'src_'.$rid} eq $currenturl) {
                    729:                             $add=$add.'<a name="curloc"></a>'.
                    730:                                 '<font color=red size=+2><b>&gt; </b></font>';
                    731:                             $adde=
                    732:                                 '<font color=red size=+2><b> &lt;</b></font>'.$adde;
                    733:                         }
                    734:                         if ($discussiontimes{$symb}>$lastcheck) {
                    735:                             $adde=
                    736:                                 '<img border=0 src="/adm/lonMisc/chat.gif">'.
                    737:                                     $adde;
                    738:                         }
                    739:                         if ($error{$src}) {
                    740:                             foreach (split(/\,/,$error{$src})) {
                    741:                                 if ($_) {
                    742:                                     $adde=
                    743:                                         '&nbsp;<a href="/adm/email?display='.
                    744:                                             &Apache::lonnet::escape($_).
                    745:                                                 '"><img src="/adm/lonMisc/bomb.gif" border=0></a>'
                    746:                                                     .$adde;
                    747:                                 }
                    748:                             }
                    749:                         }
                    750:                         if ($feedback{$src}) {
                    751:                             foreach (split(/\,/,$feedback{$src})) {
                    752:                                 if ($_) {
                    753:                                     $adde=
                    754:                                         '&nbsp;<a href="/adm/email?display='.
                    755:                                             &Apache::lonnet::escape($_).
                    756:                                                 '"><img src="/adm/lonMisc/feedback.gif" border=0></a>'
                    757:                                                     .$adde;
                    758:                                 }
                    759:                             }
                    760:                         }
                    761:                         if ($indent) {
                    762:                             my $is="&nbsp;&nbsp;";
                    763:                             for(my $i=-1;$i<$indent;$i++) { $indentstr.=$is; }
                    764:                         }
                    765:                         if (!$linkid) { $linkid=$rid; }
1.38      www       766:                         if ($hash{'randomout_'.$rid}) {
                    767:                             $adde=' <i>(hidden)</i>'.$adde;
                    768:                         }
1.51      bowersj2  769:                         $r->print($add.$indentstr);
                    770:                         if ($rid) {
                    771:                             $r->print('<a href="'.$hash{'src_'.$linkid}.
1.39      www       772:                                       (($hash{'src_'.$linkid}=~/\?/)?'&':'?').
                    773:                                       'symb='.&Apache::lonnet::escape($symb)
1.35      www       774:                                        .'">'.
1.51      bowersj2  775:                                       $hwk.$hash{'title_'.$rid}.$hwke.'</a>');
                    776:                         }
                    777:                         $r->print($adde);
                    778:                     }
                    779:                     $r->print('</tr>');
                    780:                 }
                    781:             }
                    782:             $r->print("\n</table>");
                    783:             $r->print('</body></html>');
1.2       www       784: # -------------------------------------------------------------------- End page
1.51      bowersj2  785:         }                  
1.2       www       786: # ------------------------------------------------------------- End render page
1.28      albertel  787:     }
1.2       www       788: # ------------------------------------------------------------------ Untie hash
1.28      albertel  789:     unless (untie(%hash)) {
1.51      bowersj2  790:         &Apache::lonnet::logthis("<font color=blue>WARNING: ".
                    791:                                  "Could not untie coursemap $fn (browse).</font>"); 
1.28      albertel  792:     }
                    793:     unless (untie(%parmhash)) {
1.51      bowersj2  794:         &Apache::lonnet::logthis("<font color=blue>WARNING: ".
                    795:                                  "Could not untie parmhash (browse).</font>"); 
1.28      albertel  796:     }
                    797:     return OK;
1.2       www       798: }
1.1       www       799: 
1.51      bowersj2  800: sub new_handle {
                    801:     my $r = shift;
                    802: 
                    803:     # Handle header-only request
                    804:     if ($r->header_only) {
                    805:         if ($ENV{'browser.mathml'}) {
                    806:             $r->content_type('text/xml');
                    807:         } else {
                    808:             $r->content_type('text/html');
                    809:         }
                    810:         $r->send_http_header;
                    811:         return OK;
                    812:     }
                    813: 
                    814:     # Send header, don't cache this page
                    815:     if ($ENV{'browser.mathml'}) {
                    816:         $r->content_type('text/xml');
                    817:     } else {
                    818:         $r->content_type('text/html');
                    819:     }
                    820:     &Apache::loncommon::no_cache($r);
                    821:     $r->send_http_header;
                    822: 
                    823:     # Initialize the nav map
                    824:     my $navmap = Apache::lonnavmaps::navmap->new(
                    825:                         $ENV{"request.course.fn"}.".db",
                    826:                         $ENV{"request.course.fn"}."_parms.db", 1);
                    827: 
1.55      bowersj2  828: 
                    829:     if (!defined($navmap)) {
                    830:         my $requrl = $r->uri;
                    831:         $ENV{'user.error.msg'} = "$requrl:bre:0:0:Course not initialized";
                    832:         return HTTP_NOT_ACCEPTABLE;
                    833:     }
1.64      bowersj2  834: 
                    835:     # Header
                    836:     $r->print(&Apache::loncommon::bodytag('Navigate Course Map','',
                    837:                                           ''));
                    838:     $r->print('<script>window.focus();</script>');
                    839:     my $desc=$ENV{'course.'.$ENV{'request.course.id'}.'.description'};
                    840:     if (defined($desc)) { $r->print("<h2>$desc</h2>\n"); }
                    841:     my $date=localtime;
                    842:     $r->print("<h3>$date</h3>\n");
                    843:     $r->rflush();
1.65      bowersj2  844:     if ($navmap->{LAST_CHECK}) {
1.66      bowersj2  845:         $r->print('<img src="/adm/lonMisc/chat.gif"> New discussion since '.
1.73      bowersj2  846:                   strftime("%A, %b %e at %I:%M %P", localtime($navmap->{LAST_CHECK})).
1.66      bowersj2  847:                   '<br><img src="/adm/lonMisc/feedback.gif"> New message (click to open)<p>'); 
1.65      bowersj2  848:     } else {
1.66      bowersj2  849:         $r->print('<img src="/adm/lonMisc/chat.gif"> Discussions'.
                    850:                   '<br><img src="/adm/lonMisc/feedback.gif"> New message (click to open)<p>'); 
1.65      bowersj2  851:     }
1.64      bowersj2  852:     #if (($currenturl=~/^\/res/) &&
                    853:     #    ($currenturl!~/^\/res\/adm/)) {
                    854:     #    $r->print('<a href="#curloc">Current Location</a><p>');
                    855:     #}
1.55      bowersj2  856: 
                    857:     # Check that it's defined
                    858:     if (!($navmap->courseMapDefined())) {
                    859:         $r->print('<font size="+2" color="red">Coursemap undefined.</font>' .
                    860:                   '</body></html>');
                    861:         return OK;
                    862:     }
                    863: 
1.51      bowersj2  864:     # Grab a resource object so we have access to the constants; this
                    865:     # is technically not proper, but should be harmless
                    866:     my $res = $navmap->firstResource();
                    867: 
                    868:     # Defines a status->color mapping, null string means don't color
                    869:     my %colormap = 
1.54      bowersj2  870:     ( $res->NETWORK_FAILURE        => '',
1.59      bowersj2  871:       $res->CORRECT                => '',
1.54      bowersj2  872:       $res->EXCUSED                => '#BBBBFF',
1.59      bowersj2  873:       $res->PAST_DUE_ANSWER_LATER  => '',
                    874:       $res->PAST_DUE_NO_ANSWER     => '',
                    875:       $res->ANSWER_OPEN            => '#CCFFCC',
1.54      bowersj2  876:       $res->OPEN_LATER             => '',
1.59      bowersj2  877:       $res->TRIES_LEFT             => '',
                    878:       $res->INCORRECT              => '',
                    879:       $res->OPEN                   => '',
1.54      bowersj2  880:       $res->NOTHING_SET            => ''        );
1.59      bowersj2  881:     # And a special case in the nav map; what to do when the assignment
                    882:     # is not yet done and due in less then 24 hours
                    883:     my $hurryUpColor = "#FFCCCC";
                    884: 
                    885:     my %statusIconMap = 
1.66      bowersj2  886:         ( $res->NETWORK_FAILURE    => '',
                    887:           $res->NOTHING_SET        => '',
                    888:           $res->CORRECT            => 'navmap.correct.gif',
                    889:           $res->EXCUSED            => 'navmap.correct.gif',
                    890:           $res->PAST_DUE_NO_ANSWER => 'navmap.wrong.gif',
                    891:           $res->PAST_DUE_ANSWER_LATER => 'navmap.wrong.gif',
                    892:           $res->ANSWER_OPEN        => 'navmap.wrong.gif',
                    893:           $res->OPEN_LATER         => '',
                    894:           $res->TRIES_LEFT         => 'navmap.open.gif',
                    895:           $res->INCORRECT          => 'navmap.wrong.gif',
1.69      bowersj2  896:           $res->OPEN               => 'navmap.open.gif',
                    897:           $res->ATTEMPTED          => '' );
                    898: 
                    899:     my %iconAltTags = 
                    900:         ( 'navmap.correct.gif' => 'Correct',
                    901:           'navmap.wrong.gif'   => 'Incorrect',
                    902:           'navmap.open.gif'    => 'Open' );
1.59      bowersj2  903: 
                    904:     my %condenseStatuses =
1.66      bowersj2  905:         ( $res->NETWORK_FAILURE    => 1,
                    906:           $res->NOTHING_SET        => 1,
                    907:           $res->CORRECT            => 1 );
1.51      bowersj2  908: 
                    909:     my %filterHash;
                    910:     # Figure out what we're not displaying
                    911:     foreach (split(/\,/, $ENV{"form.filter"})) {
                    912:         if ($_) {
                    913:             $filterHash{$_} = "1";
                    914:         }
                    915:     }
                    916: 
1.63      bowersj2  917:     my $currenturl = $ENV{'form.postdata'};
                    918:     $currenturl=~s/^http\:\/\///;
                    919:     $currenturl=~s/^[^\/]+//;
                    920:     my $queryAdd = "postdata=" . &Apache::lonnet::escape($currenturl);
                    921: 
1.66      bowersj2  922:     $r->print('<a href="navmaps?condition=1&filter=">Show All Resources</a><br /><br />');
1.63      bowersj2  923: 
1.51      bowersj2  924:     # Begin the HTML table
1.59      bowersj2  925:     # four cols: resource + indent, chat+feedback, icon, text string
1.51      bowersj2  926:     $r->print('<table cellspacing="3" cellpadding="0" bgcolor="#FFFFFF">' ."\n");
                    927: 
1.66      bowersj2  928:     my $condition = 0;
                    929:     if ($ENV{'form.condition'}) {
1.68      bowersj2  930:         $condition = 1;
1.66      bowersj2  931:     }
                    932: 
1.74    ! bowersj2  933:     # This needs to be updated to use symbs from the remote, 
        !           934:     # instead of uris. The changes to this and the main rendering
        !           935:     # loop should be obvious.
        !           936:     # Here's a simple example of the iterator.
        !           937:     # If there is a current resource
        !           938:     if ($currenturl) {
        !           939:         # Give me every resource...
        !           940:         my $mapIterator = $navmap->getIterator(undef, undef, {}, 1);
        !           941:         my $found != 0;
        !           942:         my $depth = 1;
        !           943:         $mapIterator->next(); # discard the first BEGIN_MAP
        !           944:         my $curRes = $mapIterator->next();
        !           945:         
        !           946:         while ($depth > 0 && !$found) {
        !           947:             if (ref($curRes) && $curRes->src() eq $currenturl) {
        !           948:                 # If this is the correct resource, be sure to 
        !           949:                 # show it by making sure the containing maps
        !           950:                 # are open.
        !           951: 
        !           952:                 my $mapStack = $mapIterator->getStack();
        !           953:                 for my $map (@{$mapStack}) {
        !           954:                     if ($condition) {
        !           955:                         undef $filterHash{$map->map_pc()};
        !           956:                     } else {
        !           957:                         $filterHash{$map->map_pc()} = 1;
        !           958:                     }
        !           959:                 }
        !           960:                 $found = 1;
        !           961:             }
        !           962:             $curRes = $mapIterator->next();
        !           963:         }
        !           964:     }
        !           965: 
1.53      bowersj2  966:     undef $res; # so we don't accidentally use it later
1.72      bowersj2  967:     my $indentLevel = 0;
1.61      bowersj2  968:     my $indentString = "<img src=\"/adm/lonIcons/whitespace1.gif\" width=\"25\" height=\"1\" alt=\"\" border=\"0\" />";
1.51      bowersj2  969: 
                    970:     my $isNewBranch = 0;
1.59      bowersj2  971:     my $now = time();
                    972:     my $in24Hours = $now + 24 * 60 * 60;
1.72      bowersj2  973:     my $depth = 1;
                    974: 
                    975:     # We know the first thing is a BEGIN_MAP (see "$self->{STARTED}"
                    976:     # code in iterator->next), so ignore the first one
1.74    ! bowersj2  977:     my $mapIterator = $navmap->getIterator(undef, undef, \%filterHash,
        !           978:                                            $condition);
1.72      bowersj2  979:     $mapIterator->next();
                    980:     my $curRes = $mapIterator->next();
1.51      bowersj2  981: 
1.72      bowersj2  982:     while ($depth > 0) {
1.51      bowersj2  983:         if ($curRes == $mapIterator->BEGIN_MAP() ||
1.52      bowersj2  984:             $curRes == $mapIterator->BEGIN_BRANCH()) {
1.51      bowersj2  985:             $indentLevel++;
                    986:         }
                    987:         if ($curRes == $mapIterator->END_MAP() ||
1.52      bowersj2  988:             $curRes == $mapIterator->END_BRANCH()) {
1.51      bowersj2  989:             $indentLevel--;
                    990:         }
1.52      bowersj2  991:         if ($curRes == $mapIterator->BEGIN_BRANCH()) {
                    992:             $isNewBranch = 1;
1.72      bowersj2  993:         }
                    994:         if ($curRes == $mapIterator->BEGIN_MAP()) {
                    995:             $depth++;
                    996:         }
                    997:         if ($curRes == $mapIterator->END_MAP()) {
                    998:             $depth--;
1.51      bowersj2  999:         }
                   1000: 
1.68      bowersj2 1001:         # Is this resource being blotted out?
                   1002:         if (ref($curRes) && !advancedUser() && $curRes->randomout()) {
                   1003:             $curRes = $mapIterator->next();
                   1004:             next; # and totally ignore this resource
                   1005:         }
                   1006: 
1.51      bowersj2 1007:         if (ref($curRes) && $curRes->src()) {
                   1008: 
1.66      bowersj2 1009:             # Step one: Decide which parts to show
                   1010:             my @parts = @{$curRes->parts()};
                   1011:             my $multipart = scalar(@parts) > 1;
                   1012:             my $condensed = 0;
                   1013:                 
1.51      bowersj2 1014:             if ($curRes->is_problem()) {
1.66      bowersj2 1015:                 # Is it multipart?
1.59      bowersj2 1016: 
1.66      bowersj2 1017:                 if ($multipart) {
                   1018:                     # If it's multipart, see if part 0 is "open"
                   1019:                     # if it is, display all parts, if it isn't,
                   1020:                     # just display first
                   1021:                     if (!$curRes->opendate("0")) {
                   1022:                         @parts = ("0"); # just display the zero-th part
1.68      bowersj2 1023:                         $condensed = 1;
1.66      bowersj2 1024:                     } else {
                   1025:                         # Otherwise, only display part 0 if we want to 
                   1026:                         # attach feedback or email information to it
                   1027:                         if ($curRes->hasDiscussion() || $curRes->getFeedback()) {
                   1028:                             shift @parts;
                   1029:                         } else {
                   1030:                             # If there's discussion or feedback, that counts
                   1031:                             # as a difference, so display the parts.
                   1032:                             
                   1033:                             # Now, we decide whether to condense the
                   1034:                             # parts due to similarity
                   1035:                             my $status = $curRes->status($parts[1]);
                   1036:                             my $due = $curRes->duedate($parts[1]);
                   1037:                             my $open = $curRes->opendate($parts[1]);
                   1038:                             my $statusAllSame = 1;
                   1039:                             my $dueAllSame = 1;
                   1040:                             my $openAllSame = 1;
                   1041:                             for (my $i = 2; $i < scalar(@parts); $i++) {
                   1042:                                 if ($curRes->status($parts[$i]) != $status){
                   1043:                                     $statusAllSame = 0;
                   1044:                                 }
                   1045:                                 if ($curRes->duedate($parts[$i]) != $due ) {
                   1046:                                     $dueAllSame = 0;
                   1047:                                 }
                   1048:                                 if ($curRes->opendate($parts[$i]) != $open) {
                   1049:                                     $openAllSame = 0;
                   1050:                                 }
                   1051:                             }
                   1052:                             
                   1053:                             # $allSame is true if all the statuses were
                   1054:                             # the same. Now, if they are all the same and
                   1055:                             # match one of the statuses to condense, or they
                   1056:                             # are all open with the same due date, or they are
                   1057:                             # all OPEN_LATER with the same open date, display the
                   1058:                             # status of the first non-zero part (to get the 'correct'
                   1059:                             # status right, since 0 is never 'correct' or 'open').
                   1060:                             if (($statusAllSame && defined($condenseStatuses{$status})) ||
                   1061:                                 ($dueAllSame && $status == $curRes->OPEN && $statusAllSame)||
                   1062:                                 ($openAllSame && $status == $curRes->OPEN_LATER && $statusAllSame) ){
                   1063:                                 @parts = ($parts[1]);
                   1064:                                 $condensed = 1;
                   1065:                             }
                   1066:                         }
                   1067:                     }
                   1068:                 }
1.59      bowersj2 1069: 
1.51      bowersj2 1070:             } else {
                   1071:                 @parts[0] = "0"; # this is to get past foreach loop below
                   1072:                  # you can consider a non-problem resource as a resource
                   1073:                  # with only one part without loss
                   1074:             }
                   1075: 
1.66      bowersj2 1076:             # Display one part, in event of network error.
                   1077:             # If this is a single part, we can at least show the correct
                   1078:             # status, but if it's multipart, we're lost.
                   1079:             if ($curRes->{RESOURCE_ERROR}) {
                   1080:                 @parts = ("0");
                   1081:             }
                   1082: 
                   1083:             # Step two: Show the parts
1.51      bowersj2 1084:             foreach my $part (@parts) {
1.59      bowersj2 1085: 
1.66      bowersj2 1086:                 my $deltalevel = 0; # for inserting the branch icon
1.68      bowersj2 1087:                 my $nonLinkedText = ""; # unlinked stuff after title
1.51      bowersj2 1088:                 
                   1089:                 # For each thing we're displaying...
                   1090: 
                   1091:                 my $stack = $mapIterator->getStack();
                   1092:                 my $src = getLinkForResource($stack);
                   1093: 
                   1094:                 my $srcHasQuestion = $src =~ /\?/;
                   1095:                 my $link = $src.
                   1096:                     ($srcHasQuestion?'&':'?') .
                   1097:                     'symb='.&Apache::lonnet::escape($curRes->symb()).
                   1098:                     '"';
                   1099:                 my $title = $curRes->title();
                   1100:                 my $partLabel = "";
1.52      bowersj2 1101:                 my $newBranchText = "";
                   1102: 
                   1103:                 # If this is a new branch, label it so
                   1104:                 # (temporary, this should be an icon w/ alt text)
                   1105:                 if ($isNewBranch) {
1.59      bowersj2 1106:                     $newBranchText = "<img src=\"/adm/lonIcons/branch.gif\" border=\"0\">";
1.52      bowersj2 1107:                     $isNewBranch = 0;
1.66      bowersj2 1108:                     $deltalevel = 1;
1.52      bowersj2 1109:                 }
1.51      bowersj2 1110: 
                   1111:                 # links to open and close the folders
                   1112:                 my $linkopen = "<a href=\"$link\">";
                   1113:                 my $linkclose = "</a>";
                   1114: 
1.61      bowersj2 1115:                 my $icon = "<img src=\"/adm/lonIcons/html.gif\" alt=\"\" border=\"0\" />";
1.51      bowersj2 1116:                 if ($curRes->is_problem()) { 
1.66      bowersj2 1117:                     if ($part eq "0" || $condensed) {
                   1118:                         $icon = '<img src="/adm/lonIcons/problem.gif" alt="" border=\"0\" />'; 
                   1119:                     } else {
                   1120:                         $icon = $indentString;
                   1121:                     }
1.51      bowersj2 1122:                 }
                   1123: 
                   1124:                 # Display the correct icon, link to open or shut map
                   1125:                 if ($curRes->is_map()) { 
                   1126:                     my $mapId = $curRes->map_pc();
                   1127:                     my $nowOpen = !defined($filterHash{$mapId});
                   1128:                     $icon = $nowOpen ?
1.63      bowersj2 1129:                         "folder_closed.gif" : "folder_opened.gif";
1.66      bowersj2 1130:                     $icon = "<img src=\"/adm/lonIcons/$icon\" alt=\"\" border=\"0\" />";
1.52      bowersj2 1131:                     $linkopen = "<a href=\"/adm/navmaps?filter=";
1.66      bowersj2 1132:                     $linkopen .= ($nowOpen xor $condition) ? 
1.51      bowersj2 1133:                         addToFilter(\%filterHash, $mapId) :
                   1134:                         removeFromFilter(\%filterHash, $mapId);
1.66      bowersj2 1135:                     $linkopen .= "&condition=$condition&$queryAdd\">";
1.51      bowersj2 1136:                     $linkclose = "</a>";
1.68      bowersj2 1137: 
1.51      bowersj2 1138:                 }
                   1139:                 
                   1140:                 my $colorizer = "";
                   1141:                 if ($curRes->is_problem()) {
                   1142:                     my $status = $curRes->status($part);
                   1143:                     my $color = $colormap{$status};
1.74    ! bowersj2 1144: 
        !          1145:                     # Special case in the navmaps: If in less then
        !          1146:                     # 24 hours, give it a bit of urgency
        !          1147:                     if ($status == $curRes->OPEN() &&
        !          1148:                         $curRes->duedate() < time()+(24*60*60)) {
        !          1149:                         $color = $hurryUpColor;
        !          1150:                     }
1.51      bowersj2 1151:                     if ($color ne "") {
                   1152:                         $colorizer = "bgcolor=\"$color\"";
                   1153:                     }
                   1154:                 }
                   1155: 
1.68      bowersj2 1156:                 if ($curRes->randomout()) {
                   1157:                     $nonLinkedText .= ' <i>(hidden)</i> ';
                   1158:                 }
                   1159: 
1.66      bowersj2 1160:                 # FIRST COL: The resource indentation, branch icon, and name
                   1161:                 $r->print("  <tr><td align=\"left\" valign=\"bottom\">\n");
1.51      bowersj2 1162: 
                   1163:                 # print indentation
1.59      bowersj2 1164:                 for (my $i = 0; $i < $indentLevel - $deltalevel; $i++) {
1.51      bowersj2 1165:                     $r->print($indentString);
                   1166:                 }
                   1167: 
1.61      bowersj2 1168:                 $r->print("  ${newBranchText}${linkopen}$icon${linkclose}\n");
1.51      bowersj2 1169: 
1.74    ! bowersj2 1170:                 my $curMarkerBegin = "";
        !          1171:                 my $curMarkerEnd = "";
        !          1172: 
        !          1173:                 # Is this the current resource?
        !          1174:                 if ($curRes->src() eq $currenturl) {
        !          1175:                     $curMarkerBegin = '<a name="curloc" /><font color="red" size="+2">&gt; </font>';
        !          1176:                     $curMarkerEnd = '<font color="red" size="+2"> &lt;</font>';
        !          1177:                 }
        !          1178: 
1.69      bowersj2 1179:                 if ($curRes->is_problem() && $part ne "0" && !$condensed) { 
1.66      bowersj2 1180:                     $partLabel = " (Part $part)"; 
                   1181:                     $title = "";
                   1182:                 }
                   1183:                 if ($multipart && $condensed) {
1.68      bowersj2 1184:                     $nonLinkedText .= ' (' . $curRes->countParts() . ' parts)';
1.66      bowersj2 1185:                 }
1.59      bowersj2 1186: 
1.74    ! bowersj2 1187:                 $r->print("  $curMarkerBegin<a href=\"$link\">$title$partLabel</a> $curMarkerEnd $nonLinkedText");
1.66      bowersj2 1188: 
                   1189:                 if ($curRes->{RESOURCE_ERROR}) {
                   1190:                     $r->print(&Apache::loncommon::help_open_topic ("Navmap_Host_Down",
                   1191:                                                   '<font size="-1">Host down</font>'));
                   1192:                     }
                   1193: 
                   1194:                 my $discussionHTML = ""; my $feedbackHTML = "";
                   1195: 
                   1196:                 # SECOND COL: Is there text or feedback?
                   1197:                 if ($curRes->hasDiscussion()) {
                   1198:                     $discussionHTML = $linkopen .
                   1199:                         '<img border="0" src="/adm/lonMisc/chat.gif" />' .
                   1200:                         $linkclose;
                   1201:                 }
                   1202: 
                   1203:                 if ($curRes->getFeedback()) {
                   1204:                     my $feedback = $curRes->getFeedback();
                   1205:                     foreach (split(/\,/, $feedback)) {
                   1206:                         if ($_) {
                   1207:                             $feedbackHTML .= '&nbsp;<a href="/adm/email?display='
                   1208:                                 . &Apache::lonnet::escape($_) . '">'
                   1209:                                 . '<img src="/adm/lonMisc/feedback.gif" '
                   1210:                                 . 'border="0" /></a>';
                   1211:                         }
                   1212:                     }
                   1213:                 }
                   1214: 
                   1215:                 $r->print("<td align=\"left\" valign=\"bottom\">$discussionHTML$feedbackHTML</td>");
                   1216: 
                   1217:                 # Is this the first displayed part of a multi-part problem
                   1218:                 # that has not been condensed, so we should suppress these two
                   1219:                 # columns?
                   1220:                 my $firstDisplayed = !$condensed && $multipart && $part eq "0";
                   1221: 
1.69      bowersj2 1222:                 # THIRD COL: Problem status icon
1.66      bowersj2 1223:                 if ($curRes->is_problem() &&
                   1224:                     !$firstDisplayed) {
                   1225:                     my $icon = $statusIconMap{$curRes->status($part)};
1.69      bowersj2 1226:                     my $alt = $iconAltTags{$icon};
1.66      bowersj2 1227:                     if ($icon) {
1.69      bowersj2 1228:                         $r->print("<td valign=\"bottom\" width=\"50\" align=\"right\">$linkopen<img src=\"/adm/lonIcons/$icon\" border=\"0\" alt=\"$alt\" />$linkclose</td>\n");
1.66      bowersj2 1229:                     } else {
                   1230:                         $r->print("<td></td>\n");
                   1231:                     }
                   1232:                 } else { # not problem, no icon
                   1233:                     $r->print("<td></td>\n");
                   1234:                 }
                   1235: 
1.69      bowersj2 1236:                 # FOURTH COL: Text description
1.66      bowersj2 1237:                 $r->print("<td $colorizer align=\"right\" valign=\"bottom\">\n");
1.51      bowersj2 1238:                 
1.61      bowersj2 1239:                 if ($curRes->kind() eq "res" &&
                   1240:                     $curRes->is_problem() &&
1.66      bowersj2 1241:                     !$firstDisplayed) {
1.53      bowersj2 1242:                     $r->print (getDescription($curRes, $part));
1.51      bowersj2 1243:                 }
1.68      bowersj2 1244:                 if ($curRes->is_map() && advancedUser() && $curRes->randompick()) {
                   1245:                     $r->print('(randomly select ' . $curRes->randompick() .')');
                   1246:                 }
1.59      bowersj2 1247: 
1.66      bowersj2 1248:                 $r->print("</td></tr>\n");
1.51      bowersj2 1249:             }
                   1250:         }
                   1251:         $curRes = $mapIterator->next();
                   1252:     }
                   1253: 
                   1254:     $r->print("</table></body></html>");
                   1255: 
1.59      bowersj2 1256:     $navmap->untieHashes();
                   1257: 
1.51      bowersj2 1258:     return OK;
                   1259: }
                   1260: 
                   1261: # Convenience functions: Returns a string that adds or subtracts
                   1262: # the second argument from the first hash, appropriate for the 
                   1263: # query string that determines which folders to recurse on
                   1264: sub addToFilter {
                   1265:     my $hashIn = shift;
                   1266:     my $addition = shift;
                   1267:     my %hash = %$hashIn;
                   1268:     $hash{$addition} = 1;
                   1269: 
                   1270:     return join (",", keys(%hash));
                   1271: }
                   1272: 
                   1273: sub removeFromFilter {
                   1274:     my $hashIn = shift;
                   1275:     my $subtraction = shift;
                   1276:     my %hash = %$hashIn;
                   1277: 
                   1278:     delete $hash{$subtraction};
                   1279:     return join(",", keys(%hash));
                   1280: }
                   1281: 
                   1282: # Convenience function: Given a stack returned from getStack on the iterator,
                   1283: # return the correct src() value.
                   1284: # Later, this should add an anchor when we start putting anchors in pages.
                   1285: sub getLinkForResource {
                   1286:     my $stack = shift;
                   1287:     my $res;
                   1288: 
                   1289:     # Check to see if there are any pages in the stack
                   1290:     foreach $res (@$stack) {
                   1291:         if (defined($res) && $res->is_page()) {
                   1292:             return $res->src();
                   1293:         }
                   1294:     }
                   1295: 
                   1296:     # Failing that, return the src of the last resource that is defined
                   1297:     # (when we first recurse on a map, it puts an undefined resource
                   1298:     # on the bottom because $self->{HERE} isn't defined yet, and we
                   1299:     # want the src for the map anyhow)
                   1300:     foreach (@$stack) {
                   1301:         if (defined($_)) { $res = $_; }
                   1302:     }
                   1303: 
                   1304:     return $res->src();
                   1305: }
                   1306: 
1.53      bowersj2 1307: # Convenience function: This seperates the logic of how to create
                   1308: # the problem text strings ("Due: DATE", "Open: DATE", "Not yet assigned",
                   1309: # etc.) into a seperate function. It takes a resource object as the
                   1310: # first parameter, and the part number of the resource as the second.
                   1311: # It's basically a big switch statement on the status of the resource.
                   1312: 
                   1313: sub getDescription {
                   1314:     my $res = shift;
                   1315:     my $part = shift;
1.69      bowersj2 1316:     my $status = $res->status($part);
1.53      bowersj2 1317: 
                   1318:     if ($status == $res->NETWORK_FAILURE) { return ""; }
                   1319:     if ($status == $res->NOTHING_SET) {
                   1320:         return "Not currently assigned.";
                   1321:     }
                   1322:     if ($status == $res->OPEN_LATER) {
1.73      bowersj2 1323:         return "Open " . timeToHumanString($res->opendate($part));
1.53      bowersj2 1324:     }
                   1325:     if ($status == $res->OPEN) {
1.66      bowersj2 1326:         if ($res->duedate()) {
1.73      bowersj2 1327:             return "Due " . timeToHumanString($res->duedate($part));
1.66      bowersj2 1328:         } else {
                   1329:             return "Open, no due date";
                   1330:         }
1.53      bowersj2 1331:     }
1.54      bowersj2 1332:     if ($status == $res->PAST_DUE_ANSWER_LATER) {
1.73      bowersj2 1333:         return "Answer open " . timeToHumanString($res->answerdate($part));
1.54      bowersj2 1334:     }
                   1335:     if ($status == $res->PAST_DUE_NO_ANSWER) {
1.73      bowersj2 1336:         return "Was due " . timeToHumanString($res->duedate($part));
1.53      bowersj2 1337:     }
                   1338:     if ($status == $res->ANSWER_OPEN) {
                   1339:         return "Answer available";
                   1340:     }
1.59      bowersj2 1341:     if ($status == $res->EXCUSED) {
1.66      bowersj2 1342:         return "Excused by instructor";
1.59      bowersj2 1343:     }
1.69      bowersj2 1344:     if ($status == $res->ATTEMPTED) {
                   1345:         return "Not yet graded.";
                   1346:     }
1.59      bowersj2 1347:     if ($status == $res->TRIES_LEFT) {
1.66      bowersj2 1348:         my $tries = $res->tries();
                   1349:         my $maxtries = $res->maxtries();
                   1350:         my $triesString = "($tries of $maxtries tries used)";
                   1351:         if ($res->duedate()) {
1.73      bowersj2 1352:             return "Due " . timeToHumanString($res->duedate($part)) .
1.66      bowersj2 1353:                 " $triesString";
                   1354:         } else {
                   1355:             return "No due date $triesString";
                   1356:         }
1.59      bowersj2 1357:     }
1.53      bowersj2 1358: }
                   1359: 
1.68      bowersj2 1360: sub advancedUser {
                   1361:     return $ENV{'user.adv'};
                   1362: }
                   1363: 
1.73      bowersj2 1364: 
                   1365: # timeToHumanString takes a time number and converts it to a
                   1366: # human-readable representation, meant to be used in the following
                   1367: # manner:
                   1368: # print "Due $timestring"
                   1369: # print "Open $timestring"
                   1370: # print "Answer available $timestring"
                   1371: # Very, very, very, VERY English-only... goodness help a localizer on
                   1372: # this func...
1.53      bowersj2 1373: sub timeToHumanString {
1.58      albertel 1374:     my ($time) = @_;
                   1375:     # zero, '0' and blank are bad times
1.73      bowersj2 1376:     if (!$time) {
                   1377:         return 'never';
                   1378:     }
                   1379: 
                   1380:     my $now = time();
                   1381: 
                   1382:     my @time = localtime($time);
                   1383:     my @now = localtime($now);
                   1384: 
                   1385:     # Positive = future
                   1386:     my $delta = $time - $now;
                   1387: 
                   1388:     my $minute = 60;
                   1389:     my $hour = 60 * $minute;
                   1390:     my $day = 24 * $hour;
                   1391:     my $week = 7 * $day;
                   1392:     my $inPast = 0;
                   1393: 
                   1394:     # Logic in comments:
                   1395:     # Is it now? (extremely unlikely)
                   1396:     if ( $delta == 0 ) {
                   1397:         return "this instant";
                   1398:     }
                   1399: 
                   1400:     if ($delta < 0) {
                   1401:         $inPast = 1;
                   1402:         $delta = -$delta;
                   1403:     }
                   1404: 
                   1405:     # Is it in the future?
                   1406:     if ( $delta > 0 ) {
                   1407:         # Is it less then a minute away?
                   1408:         my $tense = $inPast ? " ago" : "";
                   1409:         my $prefix = $inPast ? "" : "in ";
                   1410:         if ( $delta < $minute ) {
                   1411:             if ($delta == 1) { return "${prefix}1 second$tense"; }
                   1412:             return "$prefix$delta seconds$tense";
                   1413:         }
                   1414: 
                   1415:         # Is it less then an hour away?
                   1416:         if ( $delta < $hour ) {
                   1417:             # If so, use minutes
                   1418:             my $minutes = floor($delta / 60);
                   1419:             if ($minutes == 1) { return "${prefix}1 minute$tense"; }
                   1420:             return "$prefix$minutes minutes$tense";
                   1421:         }
                   1422:         
                   1423:         # Is it less then 24 hours away? If so,
                   1424:         # display hours + minutes
                   1425:         if ( $delta < $hour * 24) {
                   1426:             my $hours = floor($delta / $hour);
                   1427:             my $minutes = floor(($delta % $hour) / $minute);
                   1428:             my $hourString = "$hours hours";
                   1429:             my $minuteString = ", $minutes minutes";
                   1430:             if ($hours == 1) {
                   1431:                 $hourString = "1 hour";
                   1432:             }
                   1433:             if ($minutes == 1) {
                   1434:                 $minuteString = ", 1 minute";
                   1435:             }
                   1436:             if ($minutes == 0) {
                   1437:                 $minuteString = "";
                   1438:             }
                   1439:             return "$prefix$hourString$minuteString$tense";
                   1440:         }
                   1441: 
                   1442:         # Less then 5 days away, display day of the week and
                   1443:         # HH:MM
                   1444:         if ( $delta < $day * 5 ) {
                   1445:             my $timeStr = strftime("%A at %I:%M %P", localtime($time));
                   1446:             $timeStr =~ s/12:00 am/midnight/;
                   1447:             $timeStr =~ s/12:00 pm/noon/;
                   1448:             return ($inPast ? "last " : "next ") .
                   1449:                 $timeStr;
                   1450:         }
                   1451:         
                   1452:         # Is it this year?
                   1453:         if ( $time[5] == $now[5]) {
                   1454:             # Return on Month Day, HH:MM meridian
                   1455:             my $timeStr = strftime("on %A, %b %e at %I:%M %P", localtime($time));
                   1456:             $timeStr =~ s/12:00 am/midnight/;
                   1457:             $timeStr =~ s/12:00 pm/noon/;
                   1458:             return $timeStr;
                   1459:         }
                   1460: 
                   1461:         # Not this year, so show the year
                   1462:         my $timeStr = strftime("on %A, %b %e %G at %I:%M %P", localtime($time));
                   1463:         $timeStr =~ s/12:00 am/midnight/;
                   1464:         $timeStr =~ s/12:00 pm/noon/;
                   1465:         return $timeStr;
1.58      albertel 1466:     }
1.53      bowersj2 1467: }
                   1468: 
1.51      bowersj2 1469: 1;
                   1470: 
                   1471: package Apache::lonnavmaps::navmap;
                   1472: 
                   1473: =pod
                   1474: 
                   1475: lonnavmaps provides functions and objects for dealing with the compiled course hashes generated when a user enters the course, and also provides the Apache handler for the "Navigation Map" button.
                   1476: 
                   1477: =head1 navmap object: Encapsulating the compiled nav map
                   1478: 
                   1479: navmap is an object that encapsulates a compiled course map and provides a reasonable interface to it.
                   1480: 
                   1481: Most notably it provides a way to navigate the map sensibly and a flexible iterator that makes it easy to write various renderers based on nav maps.
                   1482: 
                   1483: You must obtain resource objects through the navmap object.
                   1484: 
                   1485: =head2 Methods
                   1486: 
                   1487: =over 4
                   1488: 
1.70      bowersj2 1489: =item * B<new>(navHashFile, parmHashFile, genCourseAndUserOptions, genMailDiscussStatus): Binds a new navmap object to the compiled nav map hash and parm hash given as filenames. genCourseAndUserOptions is a flag saying whether the course options and user options hash should be generated. This is for when you are using the parameters of the resources that require them; see documentation in resource object documentation. genMailDiscussStatus causes the nav map to retreive information about the email and discussion status of resources. Returns the navmap object if this is successful, or B<undef> if not. You must check for undef; errors will occur when you try to use the other methods otherwise.
1.51      bowersj2 1490: 
                   1491: =item * B<getIterator>(first, finish, filter, condition): See iterator documentation below.
                   1492: 
                   1493: =cut
                   1494: 
                   1495: use strict;
                   1496: use GDBM_File;
                   1497: 
                   1498: sub new {
                   1499:     # magic invocation to create a class instance
                   1500:     my $proto = shift;
                   1501:     my $class = ref($proto) || $proto;
                   1502:     my $self = {};
                   1503: 
                   1504:     $self->{NAV_HASH_FILE} = shift;
                   1505:     $self->{PARM_HASH_FILE} = shift;
                   1506:     $self->{GENERATE_COURSE_USER_OPT} = shift;
1.55      bowersj2 1507:     $self->{GENERATE_EMAIL_DISCUSS_STATUS} = shift;
1.51      bowersj2 1508: 
                   1509:     # Resource cache stores navmapresource's as we reference them. We generate
                   1510:     # them on-demand so we don't pay for creating resources unless we use them.
                   1511:     $self->{RESOURCE_CACHE} = {};
                   1512: 
                   1513:     # Network failure flag, if we accessed the course or user opt and
                   1514:     # failed
                   1515:     $self->{NETWORK_FAILURE} = 0;
                   1516: 
                   1517:     # tie the nav hash
                   1518:     my %navmaphash;
                   1519:     if (!(tie(%navmaphash, 'GDBM_File', $self->{NAV_HASH_FILE},
                   1520:               &GDBM_READER(), 0640))) {
                   1521:         return undef;
                   1522:     }
                   1523:     $self->{NAV_HASH} = \%navmaphash;
                   1524:     
                   1525:     my %parmhash;
                   1526:     if (!(tie(%parmhash, 'GDBM_File', $self->{PARM_HASH_FILE},
                   1527:               &GDBM_READER(), 0640)))
                   1528:     {
1.66      bowersj2 1529:         untie $self->{PARM_HASH};
1.51      bowersj2 1530:         return undef;
                   1531:     }
                   1532:     $self->{PARM_HASH} = \%parmhash;
                   1533:     $self->{HASH_TIED} = 1;
                   1534: 
                   1535:     # If the course opt hash and the user opt hash should be generated,
                   1536:     # generate them
                   1537:     if ($self->{GENERATE_COURSE_USER_OPT}) {
                   1538:         my $uname=$ENV{'user.name'};
                   1539:         my $udom=$ENV{'user.domain'};
                   1540:         my $uhome=$ENV{'user.home'};
                   1541:         my $cid=$ENV{'request.course.id'};
                   1542:         my $chome=$ENV{'course.'.$cid.'.home'};
                   1543:         my ($cdom,$cnum)=split(/\_/,$cid);
                   1544:         
                   1545:         my $userprefix=$uname.'_'.$udom.'_';
                   1546:         
                   1547:         my %courserdatas; my %useropt; my %courseopt;
                   1548:         unless ($uhome eq 'no_host') { 
                   1549: # ------------------------------------------------- Get coursedata (if present)
                   1550:             unless ((time-$courserdatas{$cid.'.last_cache'})<240) {
                   1551:                 my $reply=&Apache::lonnet::reply('dump:'.$cdom.':'.$cnum.
                   1552:                                                  ':resourcedata',$chome);
                   1553:                 if ($reply!~/^error\:/) {
                   1554:                     $courserdatas{$cid}=$reply;
                   1555:                     $courserdatas{$cid.'.last_cache'}=time;
                   1556:                 }
                   1557:                 # check to see if network failed
                   1558:                 elsif ( $reply=~/no.such.host/i || $reply=~/con.*lost/i )
                   1559:                 {
                   1560:                     $self->{NETWORK_FAILURE} = 1;
                   1561:                 }
                   1562:             }
                   1563:             foreach (split(/\&/,$courserdatas{$cid})) {
                   1564:                 my ($name,$value)=split(/\=/,$_);
                   1565:                 $courseopt{$userprefix.&Apache::lonnet::unescape($name)}=
                   1566:                     &Apache::lonnet::unescape($value);
                   1567:             }
                   1568: # --------------------------------------------------- Get userdata (if present)
                   1569:             unless ((time-$userrdatas{$uname.'___'.$udom.'.last_cache'})<240) {
                   1570:                 my $reply=&Apache::lonnet::reply('dump:'.$udom.':'.$uname.':resourcedata',$uhome);
                   1571:                 if ($reply!~/^error\:/) {
                   1572:                     $userrdatas{$uname.'___'.$udom}=$reply;
                   1573:                     $userrdatas{$uname.'___'.$udom.'.last_cache'}=time;
                   1574:                 }
                   1575:                 # check to see if network failed
                   1576:                 elsif ( $reply=~/no.such.host/i || $reply=~/con.*lost/i )
                   1577:                 {
                   1578:                     $self->{NETWORK_FAILURE} = 1;
                   1579:                 }
                   1580:             }
                   1581:             foreach (split(/\&/,$userrdatas{$uname.'___'.$udom})) {
                   1582:                 my ($name,$value)=split(/\=/,$_);
                   1583:                 $useropt{$userprefix.&Apache::lonnet::unescape($name)}=
                   1584:                     &Apache::lonnet::unescape($value);
                   1585:             }
1.55      bowersj2 1586:             $self->{COURSE_OPT} = \%courseopt;
                   1587:             $self->{USER_OPT} = \%useropt;
1.51      bowersj2 1588:         }
                   1589:     }   
                   1590: 
1.55      bowersj2 1591:     if ($self->{GENERATE_EMAIL_DISCUSS_STATUS}) {
                   1592:         my $cid=$ENV{'request.course.id'};
                   1593:         my ($cdom,$cnum)=split(/\_/,$cid);
                   1594:         
                   1595:         my %emailstatus = &Apache::lonnet::dump('email_status');
1.56      bowersj2 1596:         my $logoutTime = $emailstatus{'logout'};
                   1597:         my $courseLeaveTime = $emailstatus{'logout_'.$ENV{'request.course.id'}};
1.55      bowersj2 1598:         $self->{LAST_CHECK} = ($courseLeaveTime > $logoutTime ?
                   1599:                                $courseLeaveTime : $logoutTime);
1.56      bowersj2 1600:         my %discussiontime = &Apache::lonnet::dump('discussiontimes', 
1.55      bowersj2 1601:                                                    $cdom, $cnum);
                   1602:         my %feedback=();
                   1603:         my %error=();
                   1604:         my $keys = &Apache::lonnet::reply('keys:'.
                   1605:                                           $ENV{'user.domain'}.':'.
                   1606:                                           $ENV{'user.name'}.':nohist_email',
                   1607:                                           $ENV{'user.home'});
                   1608: 
                   1609:         foreach my $msgid (split(/\&/, $keys)) {
                   1610:             $msgid=&Apache::lonnet::unescape($msgid);
                   1611:             my $plain=&Apache::lonnet::unescape(&Apache::lonnet::unescape($msgid));
                   1612:             if ($plain=~/(Error|Feedback) \[([^\]]+)\]/) {
                   1613:                 my ($what,$url)=($1,$2);
                   1614:                 my %status=
                   1615:                     &Apache::lonnet::get('email_status',[$msgid]);
                   1616:                 if ($status{$msgid}=~/^error\:/) { 
                   1617:                     $status{$msgid}=''; 
                   1618:                 }
                   1619:                 
                   1620:                 if (($status{$msgid} eq 'new') || 
                   1621:                     (!$status{$msgid})) { 
                   1622:                     if ($what eq 'Error') {
                   1623:                         $error{$url}.=','.$msgid; 
                   1624:                     } else {
                   1625:                         $feedback{$url}.=','.$msgid;
                   1626:                     }
                   1627:                 }
                   1628:             }
                   1629:         }
                   1630:         
                   1631:         $self->{FEEDBACK} = \%feedback;
                   1632:         $self->{ERROR_MSG} = \%error; # what is this? JB
                   1633:         $self->{DISCUSSION_TIME} = \%discussiontime;
                   1634:         $self->{EMAIL_STATUS} = \%emailstatus;
                   1635:         
                   1636:     }    
                   1637:     
1.51      bowersj2 1638:     bless($self);
1.55      bowersj2 1639:         
                   1640:     return $self;
                   1641: }
1.51      bowersj2 1642: 
1.55      bowersj2 1643: # Checks to see if coursemap is defined, matching test in old lonnavmaps
                   1644: sub courseMapDefined {
                   1645:     my $self = shift;
                   1646:     my $uri = &Apache::lonnet::clutter($ENV{'request.course.uri'});
                   1647: 
1.56      bowersj2 1648:     my $firstres = $self->{NAV_HASH}->{"map_start_$uri"};
                   1649:     my $lastres = $self->{NAV_HASH}->{"map_finish_$uri"};
1.55      bowersj2 1650:     return $firstres && $lastres;
1.51      bowersj2 1651: }
                   1652: 
                   1653: sub getIterator {
                   1654:     my $self = shift;
                   1655:     my $iterator = Apache::lonnavmaps::iterator->new($self, shift, shift,
1.63      bowersj2 1656:                                                      shift, undef, shift);
1.51      bowersj2 1657:     return $iterator;
                   1658: }
                   1659: 
                   1660: # unties the hash when done
                   1661: sub untieHashes {
                   1662:     my $self = shift;
1.60      bowersj2 1663:     untie %{$self->{NAV_HASH}} if ($self->{HASH_TIED});
                   1664:     untie %{$self->{PARM_HASH}} if ($self->{HASH_TIED});
1.51      bowersj2 1665:     $self->{HASH_TIED} = 0;
                   1666: }
                   1667: 
                   1668: # when the object is destroyed, be sure to untie all the hashes we tied.
                   1669: sub DESTROY {
                   1670:     my $self = shift;
                   1671:     $self->untieHashes();
                   1672: }
                   1673: 
1.59      bowersj2 1674: # Private function: Does the given resource (as a symb string) have
                   1675: # current discussion? Returns 0 if chat/mail data not extracted.
                   1676: sub hasDiscussion {
                   1677:     my $self = shift;
                   1678:     my $symb = shift;
                   1679:     if (!defined($self->{DISCUSSION_TIME})) { return 0; }
                   1680: 
                   1681:     return $self->{DISCUSSION_TIME}->{$symb} >
1.66      bowersj2 1682:            $self->{LAST_CHECK};
1.59      bowersj2 1683: }
                   1684: 
                   1685: # Private function: Does the given resource (as a symb string) have
                   1686: # current feedback? Returns the string in the feedback hash, which
                   1687: # will be false if it does not exist.
                   1688: sub getFeedback { 
                   1689:     my $self = shift;
                   1690:     my $symb = shift;
                   1691: 
                   1692:     if (!defined($self->{FEEDBACK})) { return ""; }
                   1693:     
                   1694:     return $self->{FEEDBACK}->{$symb};
                   1695: }
                   1696: 
1.51      bowersj2 1697: =pod
                   1698: 
                   1699: =item * B<getById>(id): Based on the ID of the resource (1.1, 3.2, etc.), get a resource object for that resource. This method, or other methods that use it (as in the resource object) is the only proper way to obtain a resource object.
                   1700: 
                   1701: =cut
                   1702: 
                   1703: # The strategy here is to cache the resource objects, and only construct them
                   1704: # as we use them. The real point is to prevent reading any more from the tied
                   1705: # hash then we have to, which should hopefully alleviate speed problems.
                   1706: # Caching is just an incidental detail I throw in because it makes sense.
                   1707: 
                   1708: sub getById {
                   1709:     my $self = shift;
                   1710:     my $id = shift;
                   1711: 
                   1712:     if (defined ($self->{RESOURCE_CACHE}->{$id}))
                   1713:     {
                   1714:         return $self->{RESOURCE_CACHE}->{$id};
                   1715:     }
                   1716: 
                   1717:     # resource handles inserting itself into cache.
                   1718:     return Apache::lonnavmaps::resource->new($self, $id);
                   1719: }
                   1720: 
                   1721: =pod
                   1722: 
                   1723: =item * B<firstResource>(): Returns a resource object reference corresponding to the first resource in the navmap.
                   1724: 
                   1725: =cut
                   1726: 
                   1727: sub firstResource {
                   1728:     my $self = shift;
                   1729:     my $firstResource = $self->{NAV_HASH}->{'map_start_' .
                   1730:                      &Apache::lonnet::clutter($ENV{'request.course.uri'})};
                   1731:     return $self->getById($firstResource);
                   1732: }
                   1733: 
                   1734: =pod
                   1735: 
                   1736: =item * B<finishResource>(): Returns a resource object reference corresponding to the last resource in the navmap.
                   1737: 
                   1738: =cut
                   1739: 
                   1740: sub finishResource {
                   1741:     my $self = shift;
                   1742:     my $firstResource = $self->{NAV_HASH}->{'map_finish_' .
                   1743:                      &Apache::lonnet::clutter($ENV{'request.course.uri'})};
                   1744:     return $self->getById($firstResource);
                   1745: }
                   1746: 
                   1747: # -------------------------------------------- Figure out a cascading parameter
                   1748: #
                   1749: # For this function to work
                   1750: #
                   1751: # * parmhash needs to be tied
                   1752: # * courseopt and useropt need to be initialized for this user and course
                   1753: #
                   1754: 
                   1755: sub parmval {
                   1756:     my $self = shift;
                   1757:     my ($what,$symb)=@_;
                   1758:     my $cid=$ENV{'request.course.id'};
                   1759:     my $csec=$ENV{'request.course.sec'};
                   1760:     my $uname=$ENV{'user.name'};
                   1761:     my $udom=$ENV{'user.domain'};
                   1762: 
                   1763:     unless ($symb) { return ''; }
                   1764:     my $result='';
                   1765: 
                   1766:     my ($mapname,$id,$fn)=split(/\_\_\_/,$symb);
                   1767: 
                   1768: # ----------------------------------------------------- Cascading lookup scheme
                   1769:     my $rwhat=$what;
                   1770:     $what=~s/^parameter\_//;
                   1771:     $what=~s/\_/\./;
                   1772: 
                   1773:     my $symbparm=$symb.'.'.$what;
                   1774:     my $mapparm=$mapname.'___(all).'.$what;
                   1775:     my $usercourseprefix=$uname.'_'.$udom.'_'.$cid;
                   1776: 
                   1777:     my $seclevel= $usercourseprefix.'.['.$csec.'].'.$what;
                   1778:     my $seclevelr=$usercourseprefix.'.['.$csec.'].'.$symbparm;
                   1779:     my $seclevelm=$usercourseprefix.'.['.$csec.'].'.$mapparm;
                   1780: 
                   1781:     my $courselevel= $usercourseprefix.'.'.$what;
                   1782:     my $courselevelr=$usercourseprefix.'.'.$symbparm;
                   1783:     my $courselevelm=$usercourseprefix.'.'.$mapparm;
                   1784: 
                   1785:     my $useropt = $self->{USER_OPT};
                   1786:     my $courseopt = $self->{COURSE_OPT};
                   1787:     my $parmhash = $self->{PARM_HASH};
                   1788: 
                   1789: # ---------------------------------------------------------- first, check user
                   1790:     if ($uname and defined($useropt)) {
1.57      albertel 1791:         if (defined($$useropt{$courselevelr})) { return $$useropt{$courselevelr}; }
                   1792:         if (defined($$useropt{$courselevelm})) { return $$useropt{$courselevelm}; }
                   1793:         if (defined($$useropt{$courselevel})) { return $$useropt{$courselevel}; }
1.51      bowersj2 1794:     }
                   1795: 
                   1796: # ------------------------------------------------------- second, check course
                   1797:     if ($csec and defined($courseopt)) {
1.57      albertel 1798:         if (defined($$courseopt{$seclevelr})) { return $$courseopt{$seclevelr}; }
                   1799:         if (defined($$courseopt{$seclevelm})) { return $$courseopt{$seclevelm}; }
                   1800:         if (defined($$courseopt{$seclevel})) { return $$courseopt{$seclevel}; }
1.51      bowersj2 1801:     }
                   1802: 
                   1803:     if (defined($courseopt)) {
1.57      albertel 1804:         if (defined($$courseopt{$courselevelr})) { return $$courseopt{$courselevelr}; }
                   1805:         if (defined($$courseopt{$courselevelm})) { return $$courseopt{$courselevelm}; }
                   1806:         if (defined($$courseopt{$courselevel})) { return $$courseopt{$courselevel}; }
1.51      bowersj2 1807:     }
                   1808: 
                   1809: # ----------------------------------------------------- third, check map parms
                   1810: 
                   1811:     my $thisparm=$$parmhash{$symbparm};
1.57      albertel 1812:     if (defined($thisparm)) { return $thisparm; }
1.51      bowersj2 1813: 
                   1814: # ----------------------------------------------------- fourth , check default
                   1815: 
                   1816:     my $default=&Apache::lonnet::metadata($fn,$rwhat.'.default');
1.57      albertel 1817:     if (defined($default)) { return $default}
1.51      bowersj2 1818: 
                   1819: # --------------------------------------------------- fifth , cascade up parts
                   1820: 
                   1821:     my ($space,@qualifier)=split(/\./,$rwhat);
                   1822:     my $qualifier=join('.',@qualifier);
                   1823:     unless ($space eq '0') {
                   1824:         my ($part,$id)=split(/\_/,$space);
                   1825:         if ($id) {
                   1826:             my $partgeneral=$self->parmval($part.".$qualifier",$symb);
1.57      albertel 1827:             if (defined($partgeneral)) { return $partgeneral; }
1.51      bowersj2 1828:         } else {
                   1829:             my $resourcegeneral=$self->parmval("0.$qualifier",$symb);
1.57      albertel 1830:             if (defined($resourcegeneral)) { return $resourcegeneral; }
1.51      bowersj2 1831:         }
                   1832:     }
                   1833:     return '';
                   1834: }
                   1835: 
                   1836: 
                   1837: 1;
                   1838: 
                   1839: package Apache::lonnavmaps::iterator;
                   1840: 
                   1841: # This package must precede "navmap" because "navmap" uses it. In
                   1842: # order to keep the documentation order straight, the iterator is documented
                   1843: # after the navmap object.
                   1844: 
                   1845: =pod
                   1846: 
                   1847: =back
                   1848: 
                   1849: =head1 navmap Iterator
                   1850: 
                   1851: An I<iterator> encapsulates the logic required to traverse a data structure. navmap uses an iterator to traverse the course map according to the criteria you wish to use.
                   1852: 
                   1853: To obtain an iterator, call the B<getIterator>() function of a B<navmap> object. (Do not instantiate Apache::lonnavmaps::iterator directly.) This will return a reference to the iterator:
                   1854: 
                   1855: C<my $resourceIterator = $navmap-E<gt>getIterator();>
                   1856: 
                   1857: To get the next thing from the iterator, call B<next>:
                   1858: 
                   1859: C<my $nextThing = $resourceIterator-E<gt>next()>
                   1860: 
                   1861: getIterator behaves as follows:
                   1862: 
                   1863: =over 4
                   1864: 
1.70      bowersj2 1865: =item B<getIterator>(firstResource, finishResource, filterHash, condition): All parameters are optional. firstResource is a resource reference corresponding to where the iterator should start. It defaults to navmap->firstResource() for the corresponding nav map. finishResource corresponds to where you want the iterator to end, defaulting to navmap->finishResource(). filterHash is a hash used as a set containing strings representing the resource IDs, defaulting to empty. Condition is a 1 or 0 that sets what to do with the filter hash: If a 0, then only resource that exist IN the filterHash will be recursed on. If it is a 1, only resources NOT in the filterHash will be recursed on. Defaults to 0, which is to say, do not recurse unless explicitly asked to.
1.51      bowersj2 1866: 
1.70      bowersj2 1867: Thus, by default, all resources will be shown. Change the condition to a 1 without changing the hash, and only the top level of the map will be shown. Changing the condition to 1 and including some values in the hash will allow you to selectively examine parts of the navmap, while leaving it on 0 and adding things to the hash will allow you to selectively ignore parts of the nav map. See the handler code for examples: By default, the condition is 0 and all folders are closed unless explicitly opened. Clicking "Show All Resources" will use a condition of 1 and an empty filterHash, resulting in all resources being shown.
1.51      bowersj2 1868: 
                   1869: The iterator will return either a reference to a resource object, or a token representing something in the map, such as the beginning of a new branch. The possible tokens are:
                   1870: 
                   1871: =over 4
                   1872: 
1.70      bowersj2 1873: =item * BEGIN_MAP: A new map is being recursed into. This is returned I<after> the map resource itself is returned.
                   1874: 
                   1875: =item * END_MAP: The map is now done.
                   1876: 
                   1877: =item * BEGIN_BRANCH: A branch is now starting. The next resource returned will be the first in that branch.
                   1878: 
                   1879: =item * END_BRANCH: The branch is now done.
1.51      bowersj2 1880: 
                   1881: =back
                   1882: 
1.70      bowersj2 1883: The tokens are retreivable via methods on the iterator object, i.e., $iterator->END_MAP.
                   1884: 
                   1885: =back
1.51      bowersj2 1886: 
                   1887: =cut
                   1888: 
                   1889: # Here are the tokens for the iterator:
                   1890: 
                   1891: sub BEGIN_MAP { return 1; }    # begining of a new map
                   1892: sub END_MAP { return 2; }      # end of the map
                   1893: sub BEGIN_BRANCH { return 3; } # beginning of a branch
                   1894: sub END_BRANCH { return 4; }   # end of a branch
                   1895: 
                   1896: # Params: nav map, start resource, end resource, filter, condition, 
                   1897: # already seen hash ref
                   1898: 
                   1899: sub new {
                   1900:     # magic invocation to create a class instance
                   1901:     my $proto = shift;
                   1902:     my $class = ref($proto) || $proto;
                   1903:     my $self = {};
                   1904: 
                   1905:     $self->{NAV_MAP} = shift;
                   1906:     return undef unless ($self->{NAV_MAP});
                   1907: 
                   1908:     # Handle the parameters
                   1909:     $self->{FIRST_RESOURCE} = shift || $self->{NAV_MAP}->firstResource();
                   1910:     $self->{FINISH_RESOURCE} = shift || $self->{NAV_MAP}->finishResource();
                   1911: 
                   1912:     # If the given resources are just the ID of the resource, get the
                   1913:     # objects
                   1914:     if (!ref($self->{FIRST_RESOURCE})) { $self->{FIRST_RESOURCE} = 
                   1915:              $self->{NAV_MAP}->getById($self->{FIRST_RESOURCE}); }
                   1916:     if (!ref($self->{FINISH_RESOURCE})) { $self->{FINISH_RESOURCE} = 
                   1917:              $self->{NAV_MAP}->getById($self->{FINISH_RESOURCE}); }
                   1918: 
                   1919:     $self->{FILTER} = shift;
                   1920: 
                   1921:     # A hash, used as a set, of resource already seen
                   1922:     $self->{ALREADY_SEEN} = shift;
                   1923:     if (!defined($self->{ALREADY_SEEN})) { $self->{ALREADY_SEEN} = {} };
1.63      bowersj2 1924:     $self->{CONDITION} = shift;
1.51      bowersj2 1925: 
                   1926:     # Flag: Have we started yet? If not, the first action is to return BEGIN_MAP.
                   1927:     $self->{STARTED} = 0;
                   1928: 
                   1929:     # Should we continue calling the recursive iterator, if any?
                   1930:     $self->{RECURSIVE_ITERATOR_FLAG} = 0;
                   1931:     # The recursive iterator, if any
                   1932:     $self->{RECURSIVE_ITERATOR} = undef;
                   1933:     # Are we recursing on a map, or a branch?
                   1934:     $self->{RECURSIVE_MAP} = 1; # we'll manually unset this when recursing on branches
                   1935:     # And the count of how deep it is, so that this iterator can keep track of
                   1936:     # when to pick back up again.
                   1937:     $self->{RECURSIVE_DEPTH} = 0;
                   1938: 
                   1939:     # For keeping track of our branches, we maintain our own stack
                   1940:     $self->{BRANCH_STACK} = [];
                   1941:     # If the size shrinks, we exhausted a branch
                   1942:     $self->{BRANCH_STACK_SIZE} = 0;
                   1943:     $self->{BRANCH_DEPTH} = 0;
                   1944: 
                   1945:     # For returning two things in a forced sequence
                   1946:     $self->{FORCE_NEXT} = undef;
                   1947: 
                   1948:     # Start with the first resource
                   1949:     push @{$self->{BRANCH_STACK}}, $self->{FIRST_RESOURCE};
                   1950:     $self->{BRANCH_STACK_SIZE} = 1;
                   1951: 
                   1952:     bless($self);
                   1953:     return $self;
                   1954: }
                   1955: 
                   1956: # Note... this function is *touchy*. I strongly recommend tracing
                   1957: # through it with the debugger a few times on a non-trivial map before
                   1958: # modifying it. Order is *everything*.
                   1959: sub next {
                   1960:     my $self = shift;
                   1961:     
                   1962:     # Iterator logic goes here
                   1963: 
                   1964:     # Are we using a recursive iterator? If so, pull from that and
                   1965:     # watch the depth; we want to resume our level at the correct time.
                   1966:     if ($self->{RECURSIVE_ITERATOR_FLAG})
                   1967:     {
                   1968:         # grab the next from the recursive iterator
                   1969:         my $next = $self->{RECURSIVE_ITERATOR}->next();
                   1970:         
                   1971:         # is it a begin or end map? Update depth if so
                   1972:         if ($next == BEGIN_MAP() ) { $self->{RECURSIVE_DEPTH}++; }
                   1973:         if ($next == END_MAP() ) { $self->{RECURSIVE_DEPTH}--; }
                   1974: 
                   1975:         # Are we back at depth 0? If so, stop recursing.
                   1976:         if ($self->{RECURSIVE_DEPTH} == 0) {
                   1977:             $self->{RECURSIVE_ITERATOR_FLAG} = 0;
                   1978:         }
                   1979:         
                   1980:         return $next;
                   1981:     }
                   1982: 
1.68      bowersj2 1983:     # Is this return value pre-determined?
                   1984:     if (defined($self->{FORCE_NEXT})) {
                   1985:         my $tmp = $self->{FORCE_NEXT};
                   1986:         $self->{FORCE_NEXT} = undef;
                   1987:         return $tmp;
                   1988:     }
                   1989: 
1.51      bowersj2 1990:     # Is there a current resource to grab? If not, then return
                   1991:     # END_BRANCH and END_MAP in succession.
                   1992:     if (scalar(@{$self->{BRANCH_STACK}}) == 0) {
                   1993:         if ($self->{BRANCH_DEPTH} > 0) {
                   1994:             $self->{FORCE_NEXT} = $self->END_MAP();
1.52      bowersj2 1995:             $self->{BRANCH_DEPTH}--;
1.51      bowersj2 1996:             return $self->END_BRANCH();
                   1997:         } else {
                   1998:             return $self->END_MAP();
                   1999:         }
                   2000:     }
                   2001: 
                   2002:     # Have we not yet begun? If not, return BEGIN_MAP and 
                   2003:     # remember that we've started.
                   2004:     if ( !$self->{STARTED} ) {
                   2005:         $self->{STARTED} = 1;
                   2006:         return $self->BEGIN_MAP;
                   2007:     }
                   2008: 
                   2009:     # Did the branch stack shrink since last run? If so,
                   2010:     # we exhausted a branch last time, therefore, we're about
                   2011:     # to start a new one. (We know because we already checked to see
                   2012:     # if the stack was empty.)
                   2013:     if ( scalar (@{$self->{BRANCH_STACK}}) < $self->{BRANCH_STACK_SIZE}) {
1.52      bowersj2 2014:         $self->{BRANCH_STACK_SIZE} = scalar(@{$self->{BRANCH_STACK}});
                   2015:         $self->{BRANCH_DEPTH}++;
                   2016:         return $self->BEGIN_BRANCH();
1.51      bowersj2 2017:     }
                   2018: 
1.52      bowersj2 2019:     # Remember the size for comparision next time.
                   2020:     $self->{BRANCH_STACK_SIZE} = scalar(@{$self->{BRANCH_STACK}});
                   2021: 
                   2022:     # If the next resource we mean to return is going to need
                   2023:     # a lower branch level, terminate branches until we get 
                   2024:     # there.
                   2025: 
1.51      bowersj2 2026:     # Get the next resource in the branch
                   2027:     $self->{HERE} = pop @{$self->{BRANCH_STACK}};
1.52      bowersj2 2028: 
                   2029:     # Are we at the right depth? If not, close a branch and return
                   2030:     # the current resource onto the branch stack
                   2031:     if (defined($self->{HERE}->{DATA}->{ITERATOR_DEPTH})
                   2032:         && $self->{HERE}->{DATA}->{ITERATOR_DEPTH} <
                   2033:         $self->{BRANCH_DEPTH} ) {
                   2034:         $self->{BRANCH_DEPTH}--;
                   2035:         # return it so we can pick it up eventually
                   2036:         push @{$self->{BRANCH_STACK}}, $self->{HERE};
                   2037:         return $self->END_BRANCH();
                   2038:     }
                   2039: 
1.51      bowersj2 2040:     # We always return it after this point and never before
                   2041:     # (proof: look at just the return statements), so we
                   2042:     # remember that we've seen this.
                   2043:     $self->{ALREADY_SEEN}->{$self->{HERE}->{ID}} = 1;
                   2044:     
                   2045:     # Get the next possible resources
                   2046:     my $nextUnfiltered = $self->{HERE}->getNext();
                   2047:     my $next = [];
                   2048: 
                   2049:     # filter the next possibilities to remove things we've 
1.52      bowersj2 2050:     # already seen. Also, remember what branch depth they should
                   2051:     # be displayed at, since there's no other reliable way to tell.
1.51      bowersj2 2052:     foreach (@$nextUnfiltered) {
1.52      bowersj2 2053:         if (!defined($self->{ALREADY_SEEN}->{$_->{ID}})) {
                   2054:             push @$next, $_;
                   2055:             $_->{DATA}->{ITERATOR_DEPTH} = 
                   2056:                 $self->{BRANCH_DEPTH} + 1;
                   2057:         }
1.51      bowersj2 2058:     }
                   2059: 
                   2060:     # Handle branch cases:
                   2061:     # Nothing is available next: BRANCH_END
                   2062:     # 1 thing next: standard non-branch
                   2063:     # 2+ things next: have some branches
                   2064:     my $nextCount = scalar(@$next);
                   2065:     if ($nextCount == 0) {
1.52      bowersj2 2066:         # Return this and on the next run, close the branch up if we're 
                   2067:         # in a branch
                   2068:         if ($self->{BRANCH_DEPTH} > 0 ) {
                   2069:             $self->{FORCE_NEXT} = $self->END_BRANCH();
                   2070:             $self->{BRANCH_DEPTH}--;
                   2071:         }
1.51      bowersj2 2072:     }
                   2073:     
                   2074:     while (@$next) {
                   2075:         # copy the next possibilities over to the branch stack
                   2076:         # in the right order
1.52      bowersj2 2077:         push @{$self->{BRANCH_STACK}}, shift @$next;
1.51      bowersj2 2078:     }
                   2079: 
                   2080:     if ($nextCount >= 2) {
1.52      bowersj2 2081:         $self->{FORCE_NEXT} = $self->BEGIN_BRANCH();
                   2082:         $self->{BRANCH_DEPTH}++;
1.51      bowersj2 2083:         return $self->{HERE}; 
                   2084:     }
                   2085: 
                   2086:     # If this is a map and we want to recurse down it... (not filtered out)
1.70      bowersj2 2087:     if ($self->{HERE}->is_map() && 
1.63      bowersj2 2088:          (defined($self->{FILTER}->{$self->{HERE}->map_pc()}) xor $self->{CONDITION})) { 
1.51      bowersj2 2089:         $self->{RECURSIVE_ITERATOR_FLAG} = 1;
                   2090:         my $firstResource = $self->{HERE}->map_start();
                   2091:         my $finishResource = $self->{HERE}->map_finish();
                   2092: 
                   2093:         $self->{RECURSIVE_ITERATOR} =
                   2094:           Apache::lonnavmaps::iterator->new ($self->{NAV_MAP}, $firstResource, 
1.63      bowersj2 2095:                      $finishResource, $self->{FILTER}, $self->{ALREADY_SEEN},
1.66      bowersj2 2096:                                              $self->{CONDITION});
1.51      bowersj2 2097:     }
                   2098: 
                   2099:     return $self->{HERE};
                   2100: }
                   2101: 
                   2102: =pod
                   2103: 
                   2104: The other method available on the iterator is B<getStack>, which returns an array populated with the current 'stack' of maps, as references to the resource objects. Example: This is useful when making the navigation map, as we need to check whether we are under a page map to see if we need to link directly to the resource, or to the page. The first elements in the array will correspond to the top of the stack (most inclusive map).
                   2105: 
                   2106: =cut
                   2107: 
                   2108: sub getStack {
                   2109:     my $self=shift;
                   2110: 
                   2111:     my @stack;
                   2112: 
                   2113:     $self->populateStack(\@stack);
                   2114: 
                   2115:     return \@stack;
                   2116: }
                   2117: 
                   2118: # Private method: Calls the iterators recursively to populate the stack.
                   2119: sub populateStack {
                   2120:     my $self=shift;
                   2121:     my $stack = shift;
                   2122: 
                   2123:     push @$stack, $self->{HERE};
                   2124: 
                   2125:     if ($self->{RECURSIVE_ITERATOR_FLAG}) {
                   2126:         $self->{RECURSIVE_ITERATOR}->populateStack($stack);
                   2127:     }
                   2128: }
                   2129: 
1.1       www      2130: 1;
1.2       www      2131: 
1.51      bowersj2 2132: package Apache::lonnavmaps::resource;
                   2133: 
                   2134: use Apache::lonnet;
                   2135: 
                   2136: =pod
                   2137: 
                   2138: =head1 Object: resource
                   2139: 
                   2140: A resource object encapsulates a resource in a resource map, allowing easy manipulation of the resource, querying the properties of the resource (including user properties), and represents a reference that can be used as the canonical representation of the resource by lonnavmap clients like renderers.
                   2141: 
                   2142: A resource only makes sense in the context of a navmap, as some of the data is stored in the navmap object.
                   2143: 
                   2144: You will probably never need to instantiate this object directly. Use Apache::lonnavmap::navmap, and use the "start" method to obtain the starting resource.
                   2145: 
                   2146: =head2 Public Members
                   2147: 
                   2148: resource objects have a hash called DATA ($resourceRef->{DATA}) that you can store whatever you want in. This allows you to easily do two-pass algorithms without worrying about managing your own resource->data hash.
                   2149: 
                   2150: =head2 Methods
                   2151: 
                   2152: =over 4
                   2153: 
1.70      bowersj2 2154: =item * B<new>($navmapRef, $idString): The first arg is a reference to the parent navmap object. The second is the idString of the resource itself. Very rarely, if ever, called directly. Use the nav map->getByID() method.
                   2155: 
                   2156: =back
1.51      bowersj2 2157: 
                   2158: =cut
                   2159: 
                   2160: sub new {
                   2161:     # magic invocation to create a class instance
                   2162:     my $proto = shift;
                   2163:     my $class = ref($proto) || $proto;
                   2164:     my $self = {};
                   2165: 
                   2166:     $self->{NAV_MAP} = shift;
                   2167:     $self->{ID} = shift;
                   2168: 
                   2169:     # Store this new resource in the parent nav map's cache.
                   2170:     $self->{NAV_MAP}->{RESOURCE_CACHE}->{$self->{ID}} = $self;
1.66      bowersj2 2171:     $self->{RESOURCE_ERROR} = 0;
1.51      bowersj2 2172: 
                   2173:     # A hash that can be used by two-pass algorithms to store data
                   2174:     # about this resource in. Not used by the resource object
                   2175:     # directly.
                   2176:     $self->{DATA} = {};
                   2177:    
                   2178:     bless($self);
                   2179:     
                   2180:     return $self;
                   2181: }
                   2182: 
1.70      bowersj2 2183: # private function: simplify the NAV_HASH lookups we keep doing
                   2184: # pass the name, and to automatically append my ID, pass a true val on the
                   2185: # second param
                   2186: sub navHash {
                   2187:     my $self = shift;
                   2188:     my $param = shift;
                   2189:     my $id = shift;
                   2190:     return $self->{NAV_MAP}->{NAV_HASH}->{$param . ($id?$self->{ID}:"")};
                   2191: }
                   2192: 
1.51      bowersj2 2193: =pod
                   2194: 
1.70      bowersj2 2195: B<Metadata Retreival>
                   2196: 
                   2197: These are methods that help you retrieve metadata about the resource:
                   2198: 
                   2199: =over 4
                   2200: 
                   2201: =item * B<ext>: Returns true if the resource is external.
                   2202: 
                   2203: =item * B<goesto>: Returns the "goesto" value from the compiled nav map. (It is likely you want to use B<getNext> instead.)
                   2204: 
                   2205: =item * B<kind>: Returns the kind of the resource from the compiled nav map.
                   2206: 
                   2207: =item * B<randomout>: Returns true if this resource was chosen to NOT be shown to the user by the random map selection feature.
1.51      bowersj2 2208: 
1.70      bowersj2 2209: =item * B<randompick>: Returns true for a map if the randompick feature is being used on the map. (?)
                   2210: 
                   2211: =item * B<src>: Returns the source for the resource.
                   2212: 
                   2213: =item * B<symb>: Returns the symb for the resource.
                   2214: 
                   2215: =item * B<title>: Returns the title of the resource.
                   2216: 
                   2217: =item * B<to>: Returns the "to" value from the compiled nav map. (It is likely you want to use B<getNext> instead.)
1.51      bowersj2 2218: 
                   2219: =item * B<type>: Returns the type of the resource, "start", "normal", or "finish". 
                   2220: 
                   2221: =back
                   2222: 
                   2223: =cut
                   2224: 
                   2225: # These info functions can be used directly, as they don't return
                   2226: # resource information.
1.70      bowersj2 2227: sub ext { my $self=shift; return $self->navHash("ext_", 1) eq 'true:'; }
1.51      bowersj2 2228: sub goesto { my $self=shift; return $self->navHash("goesto_", 1); }
                   2229: sub kind { my $self=shift; return $self->navHash("kind_", 1); }
1.68      bowersj2 2230: sub randomout { my $self=shift; return $self->navHash("randomout_", 1); }
                   2231: sub randompick { 
                   2232:     my $self = shift;
                   2233:     return $self->{NAV_MAP}->{PARM_HASH}->{$self->symb .
                   2234:                                                '.0.parameter_randompick'};
                   2235: }
1.51      bowersj2 2236: sub src { 
                   2237:     my $self=shift;
                   2238:     return $self->navHash("src_", 1);
                   2239: }
                   2240: sub symb {
                   2241:     my $self=shift;
                   2242:     (my $first, my $second) = $self->{ID} =~ /(\d+).(\d+)/;
                   2243:     my $symbSrc = &Apache::lonnet::declutter($self->src());
                   2244:     return &Apache::lonnet::declutter(
                   2245:          $self->navHash('map_id_'.$first)) 
                   2246:         . '___' . $second . '___' . $symbSrc;
                   2247: }
1.70      bowersj2 2248: sub title { my $self=shift; return $self->navHash("title_", 1); }
                   2249: sub to { my $self=shift; return $self->navHash("to_", 1); }
                   2250: sub type { my $self=shift; return $self->navHash("type_", 1); }
                   2251: 
                   2252: =pod
                   2253: 
                   2254: B<Predicate Testing the Resource>
                   2255: 
                   2256: These methods are shortcuts to deciding if a given resource has a given property.
                   2257: 
                   2258: =over 4
                   2259: 
                   2260: =item * B<is_map>: Returns true if the resource is a map type.
                   2261: 
                   2262: =item * B<is_problem>: Returns true if the resource is a problem type, false otherwise. (Looks at the extension on the src field; might need more to work correctly.)
                   2263: 
                   2264: =item * B<is_page>: Returns true if the resource is a page.
                   2265: 
                   2266: =item * B<is_problem>: Returns true if the resource is a problem.
                   2267: 
                   2268: =item * B<is_sequence>: Returns true if the resource sequence.
                   2269: 
                   2270: =back
                   2271: 
                   2272: =cut
                   2273: 
                   2274: 
                   2275: sub is_html {
1.51      bowersj2 2276:     my $self=shift;
                   2277:     my $src = $self->src();
1.70      bowersj2 2278:     return ($src =~ /html$/);
1.51      bowersj2 2279: }
1.70      bowersj2 2280: sub is_map { my $self=shift; return defined($self->navHash("is_map_", 1)); }
                   2281: sub is_page {
1.51      bowersj2 2282:     my $self=shift;
                   2283:     my $src = $self->src();
1.70      bowersj2 2284:     return ($src =~ /page$/);
1.51      bowersj2 2285: }
1.70      bowersj2 2286: sub is_problem {
1.51      bowersj2 2287:     my $self=shift;
                   2288:     my $src = $self->src();
1.70      bowersj2 2289:     return ($src =~ /problem$/);
1.51      bowersj2 2290: }
1.70      bowersj2 2291: sub is_sequence {
1.51      bowersj2 2292:     my $self=shift;
                   2293:     my $src = $self->src();
1.70      bowersj2 2294:     return ($src =~ /sequence$/);
1.51      bowersj2 2295: }
                   2296: 
                   2297: 
                   2298: 
                   2299: 
1.70      bowersj2 2300: 
1.51      bowersj2 2301: # Move this into POD: In order to use these correctly, courseopt
                   2302: # and useropt need to be generated
                   2303: sub parmval {
                   2304:     my $self = shift;
                   2305:     my $what = shift;
                   2306:     my $part = shift || "0";
                   2307:     return $self->{NAV_MAP}->parmval($part.'.'.$what, $self->symb());
                   2308: }
                   2309: 
1.70      bowersj2 2310: =pod
                   2311: 
                   2312: B<Map Methods>
                   2313: 
                   2314: These methods are useful for getting information about the map properties of the resource, if the resource is a map (B<is_map>).
                   2315: 
                   2316: =over 4
                   2317: 
                   2318: =item * B<map_finish>: Returns a reference to a resource object corresponding to the finish resource of the map.
                   2319: 
                   2320: =item * B<map_pc>: Returns the pc value of the map, which is the first number that appears in the resource ID of the resources in the map, and is the number that appears around the middle of the symbs of the resources in that map.
                   2321: 
                   2322: =item * B<map_start>: Returns a reference to a resource object corresponding to the start resource of the map.
                   2323: 
                   2324: =item * B<map_type>: Returns a string with the type of the map in it.
                   2325: 
                   2326: =back
1.51      bowersj2 2327: 
1.70      bowersj2 2328: =cut
1.51      bowersj2 2329: 
                   2330: sub map_finish {
                   2331:     my $self = shift;
                   2332:     my $src = $self->src();
                   2333:     my $res = $self->navHash("map_finish_$src", 0);
                   2334:     $res = $self->{NAV_MAP}->getById($res);
                   2335:     return $res;
                   2336: }
1.70      bowersj2 2337: sub map_pc {
                   2338:     my $self = shift;
                   2339:     my $src = $self->src();
                   2340:     return $self->navHash("map_pc_$src", 0);
                   2341: }
1.51      bowersj2 2342: sub map_start {
                   2343:     my $self = shift;
                   2344:     my $src = $self->src();
                   2345:     my $res = $self->navHash("map_start_$src", 0);
                   2346:     $res = $self->{NAV_MAP}->getById($res);
                   2347:     return $res;
                   2348: }
                   2349: sub map_type {
                   2350:     my $self = shift;
                   2351:     my $pc = $self->map_pc();
                   2352:     return $self->navHash("map_type_$pc", 0);
                   2353: }
                   2354: 
                   2355: 
                   2356: 
                   2357: #####
                   2358: # Property queries
                   2359: #####
                   2360: 
                   2361: # These functions will be responsible for returning the CORRECT
                   2362: # VALUE for the parameter, no matter what. So while they may look
                   2363: # like direct calls to parmval, they can be more then that.
                   2364: # So, for instance, the duedate function should use the "duedatetype"
                   2365: # information, rather then the resource object user.
                   2366: 
                   2367: =pod
                   2368: 
                   2369: =head2 Resource Parameters
                   2370: 
1.70      bowersj2 2371: In order to use the resource parameters correctly, the nav map must have been instantiated with genCourseAndUserOptions set to true, so the courseopt and useropt is read correctly. Then, you can call these functions to get the relevant parameters for the resource. Each function defaults to part "0", but can be directed to another part by passing the part as the parameter.
1.51      bowersj2 2372: 
                   2373: These methods are responsible for getting the parameter correct, not merely reflecting the contents of the GDBM hashes. As we move towards dates relative to other dates, these methods should be updated to reflect that. (Then, anybody using these methods won't have to update their code.)
                   2374: 
                   2375: =over 4
                   2376: 
                   2377: =item * B<acc>: Get the Client IP/Name Access Control information.
                   2378: 
                   2379: =item * B<answerdate>: Get the answer-reveal date for the problem.
                   2380: 
                   2381: =item * B<duedate>: Get the due date for the problem.
                   2382: 
                   2383: =item * B<tries>: Get the number of tries the student has used on the problem.
                   2384: 
                   2385: =item * B<maxtries>: Get the number of max tries allowed.
                   2386: 
                   2387: =item * B<opendate>: Get the open date for the problem.
                   2388: 
                   2389: =item * B<sig>: Get the significant figures setting.
                   2390: 
                   2391: =item * B<tol>: Get the tolerance for the problem.
                   2392: 
1.70      bowersj2 2393: =item * B<tries>: Get the number of tries the user has already used on the problem.
                   2394: 
1.51      bowersj2 2395: =item * B<type>: Get the question type for the problem.
                   2396: 
                   2397: =item * B<weight>: Get the weight for the problem.
                   2398: 
                   2399: =back
                   2400: 
                   2401: =cut
                   2402: 
                   2403: sub acc {
                   2404:     (my $self, my $part) = @_;
                   2405:     return $self->parmval("acc", $part);
                   2406: }
                   2407: sub answerdate {
                   2408:     (my $self, my $part) = @_;
                   2409:     # Handle intervals
                   2410:     if ($self->parmval("answerdate.type", $part) eq 'date_interval') {
                   2411:         return $self->duedate($part) + 
                   2412:             $self->parmval("answerdate", $part);
                   2413:     }
                   2414:     return $self->parmval("answerdate", $part);
                   2415: }
                   2416: sub duedate {
                   2417:     (my $self, my $part) = @_;
                   2418:     return $self->parmval("duedate", $part);
                   2419: }
                   2420: sub maxtries {
                   2421:     (my $self, my $part) = @_;
                   2422:     return $self->parmval("maxtries", $part);
                   2423: }
                   2424: sub opendate {
                   2425:     (my $self, my $part) = @_;
                   2426:     if ($self->parmval("opendate.type", $part) eq 'date_interval') {
                   2427:         return $self->duedate($part) -
                   2428:             $self->parmval("opendate", $part);
                   2429:     }
                   2430:     return $self->parmval("opendate");
                   2431: }
                   2432: sub sig {
                   2433:     (my $self, my $part) = @_;
                   2434:     return $self->parmval("sig", $part);
                   2435: }
                   2436: sub tol {
                   2437:     (my $self, my $part) = @_;
                   2438:     return $self->parmval("tol", $part);
                   2439: }
                   2440: sub tries {
                   2441:     my $self = shift;
                   2442:     my $part = shift;
                   2443:     $part = '0' if (!defined($part));
                   2444: 
                   2445:     # Make sure return hash is loaded, should error check
                   2446:     $self->getReturnHash();
                   2447:     
                   2448:     my $tries = $self->{RETURN_HASH}->{'resource.'.$part.'.tries'};
                   2449:     if (!defined($tries)) {return '0';}
                   2450:     return $tries;
                   2451: }
1.70      bowersj2 2452: sub type {
                   2453:     (my $self, my $part) = @_;
                   2454:     return $self->parmval("type", $part);
                   2455: }
                   2456: sub weight {
                   2457:     (my $self, my $part) = @_;
                   2458:     return $self->parmval("weight", $part);
                   2459: }
1.51      bowersj2 2460: 
                   2461: # Multiple things need this
                   2462: sub getReturnHash {
                   2463:     my $self = shift;
                   2464:     
                   2465:     if (!defined($self->{RETURN_HASH})) {
                   2466:         my %tmpHash = &Apache::lonnet::restore($self->symb());
                   2467:         $self->{RETURN_HASH} = \%tmpHash;
                   2468:     }
                   2469: }       
                   2470: 
                   2471: ######
                   2472: # Status queries
                   2473: ######
                   2474: 
                   2475: # These methods query the status of problems.
                   2476: 
                   2477: # If we need to count parts, this function determines the number of
                   2478: # parts from the metadata. When called, it returns a reference to a list
                   2479: # of strings corresponding to the parts. (Thus, using it in a scalar context
                   2480: # tells you how many parts you have in the problem:
                   2481: # $partcount = scalar($resource->countParts());
                   2482: # Don't use $self->{PARTS} directly because you don't know if it's been
                   2483: # computed yet.
                   2484: 
                   2485: =pod
                   2486: 
                   2487: =head2 Resource misc
                   2488: 
                   2489: Misc. functions for the resource.
                   2490: 
                   2491: =over 4
                   2492: 
1.59      bowersj2 2493: =item * B<hasDiscussion>: Returns a false value if there has been discussion since the user last logged in, true if there has. Always returns false if the discussion data was not extracted when the nav map was constructed.
                   2494: 
                   2495: =item * B<getFeedback>: Gets the feedback for the resource and returns the raw feedback string for the resource, or the null string if there is no feedback or the email data was not extracted when the nav map was constructed. Usually used like this:
                   2496: 
                   2497:  for (split(/\,/, $res->getFeedback())) {
                   2498:     my $link = &Apache::lonnet::escape($_);
                   2499:     ...
                   2500: 
                   2501: and use the link as appropriate.
                   2502: 
                   2503: =cut
                   2504: 
                   2505: sub hasDiscussion {
                   2506:     my $self = shift;
                   2507:     return $self->{NAV_MAP}->hasDiscussion($self->symb());
                   2508: }
                   2509: 
                   2510: sub getFeedback {
                   2511:     my $self = shift;
                   2512:     return $self->{NAV_MAP}->getFeedback($self->symb());
                   2513: }
                   2514: 
                   2515: =pod
                   2516: 
1.70      bowersj2 2517: =item * B<parts>(): Returns a list reference containing sorted strings corresponding to each part of the problem. To count the number of parts, use the list in a scalar context, and subtract one if greater then two. (One part problems have a part 0. Multi-parts have a part 0, plus a part for each part. Filtering part 0 if you want it is up to you.)
1.51      bowersj2 2518: 
1.70      bowersj2 2519: =item * B<countParts>(): Returns the number of parts of the problem a student can answer. Thus, for single part problems, returns 1. For multipart, it returns the number of parts in the problem, not including psuedo-part 0. Thus, B<parts> may return an array with fewer parts in it then countParts might lead you to believe.
1.51      bowersj2 2520: 
                   2521: =back
                   2522: 
                   2523: =cut
                   2524: 
                   2525: sub parts {
                   2526:     my $self = shift;
                   2527: 
1.67      bowersj2 2528:     if ($self->ext) { return ['0']; }
                   2529: 
1.51      bowersj2 2530:     $self->extractParts();
                   2531:     return $self->{PARTS};
                   2532: }
                   2533: 
                   2534: sub countParts {
                   2535:     my $self = shift;
                   2536:     
                   2537:     my $parts = $self->parts();
1.66      bowersj2 2538: 
                   2539:     if ($self->{RESOURCE_ERROR}) {
                   2540:         return 0;
                   2541:     }
                   2542: 
                   2543:     if (scalar(@{$parts}) < 2) { return 1;}
1.51      bowersj2 2544: 
                   2545:     return scalar(@{$parts}) - 1;
                   2546: }
                   2547: 
                   2548: # Private function: Extracts the parts information and saves it
                   2549: sub extractParts { 
                   2550:     my $self = shift;
                   2551:     
                   2552:     return if ($self->{PARTS});
1.67      bowersj2 2553:     return if ($self->ext);
1.51      bowersj2 2554: 
                   2555:     $self->{PARTS} = [];
                   2556: 
                   2557:     # Retrieve part count
1.66      bowersj2 2558:     my $metadata = &Apache::lonnet::metadata($self->src(), 'allpossiblekeys');
                   2559:     if (!$metadata) {
                   2560:         $self->{RESOURCE_ERROR} = 1;
                   2561:         $self->{PARTS} = [];
                   2562:         return;
                   2563:     }
                   2564: 
                   2565:     foreach (split(/\,/,$metadata)) {
1.51      bowersj2 2566:         if ($_ =~ /^parameter\_(.*)\_opendate$/) {
                   2567:             push @{$self->{PARTS}}, $1;
                   2568:         }
                   2569:     }
1.66      bowersj2 2570: 
1.51      bowersj2 2571:     
                   2572:     # Is this possible to do in one line? - Jeremy
                   2573:     my @sortedParts = sort @{$self->{PARTS}};
                   2574:     $self->{PARTS} = \@sortedParts;
                   2575: 
                   2576:     return;
                   2577: }
                   2578: 
                   2579: =pod
                   2580: 
                   2581: =head2 Resource Status
                   2582: 
                   2583: Problem resources have status information, reflecting their various dates and completion statuses. You can obtain this information and import symbolic constants to represent the status.
                   2584: 
                   2585: There are two aspects to the status: the date-related information and the completion information.
                   2586: 
                   2587: Idiomatic usage of these two methods would probably look something like
                   2588: 
                   2589:  foreach ($resource->parts()) {
                   2590:     my $dateStatus = $resource->getDateStatus($_);
                   2591:     my $completionStatus = $resource->getCompletionStatus($_);
                   2592: 
1.70      bowersj2 2593:     or
                   2594: 
                   2595:     my $status = $resource->status($_);
                   2596: 
1.51      bowersj2 2597:     ... use it here ...
                   2598:  }
                   2599: 
                   2600: =over 4
                   2601: 
1.70      bowersj2 2602: =item * B<getDateStatus>($part): ($part defaults to 0). A convenience function that returns a symbolic constant telling you about the date status of the part. The possible return values are:
1.51      bowersj2 2603: 
                   2604: =back
                   2605: 
                   2606: B<Date Codes>
                   2607: 
                   2608: =over 4
                   2609: 
                   2610: =item * B<OPEN_LATER>: The problem will be opened later.
                   2611: 
                   2612: =item * B<OPEN>: Open and not yet due.
                   2613: 
1.59      bowersj2 2614: 
1.54      bowersj2 2615: =item * B<PAST_DUE_ANSWER_LATER>: The due date has passed, but the answer date has not yet arrived.
                   2616: 
                   2617: =item * B<PAST_DUE_NO_ANSWER>: The due date has passed and there is no answer opening date set.
1.51      bowersj2 2618: 
                   2619: =item * B<ANSWER_OPEN>: The answer date is here.
                   2620: 
                   2621: =item * B<NETWORK_FAILURE>: The information is unknown due to network failure.
                   2622: 
                   2623: =back
                   2624: 
                   2625: =cut
                   2626: 
                   2627: # Apparently the compiler optimizes these into constants automatically
1.54      bowersj2 2628: sub OPEN_LATER             { return 0; }
                   2629: sub OPEN                   { return 1; }
                   2630: sub PAST_DUE_NO_ANSWER     { return 2; }
                   2631: sub PAST_DUE_ANSWER_LATER  { return 3; }
                   2632: sub ANSWER_OPEN            { return 4; }
                   2633: sub NOTHING_SET            { return 5; } 
                   2634: sub NETWORK_FAILURE        { return 100; }
                   2635: 
                   2636: # getDateStatus gets the date status for a given problem part. 
                   2637: # Because answer date, due date, and open date are fully independent
                   2638: # (i.e., it is perfectly possible to *only* have an answer date), 
                   2639: # we have to completely cover the 3x3 maxtrix of (answer, due, open) x
                   2640: # (past, future, none given). This function handles this with a decision
                   2641: # tree. Read the comments to follow the decision tree.
1.51      bowersj2 2642: 
                   2643: sub getDateStatus {
                   2644:     my $self = shift;
                   2645:     my $part = shift;
                   2646:     $part = "0" if (!defined($part));
1.54      bowersj2 2647: 
                   2648:     # Always return network failure if there was one.
1.51      bowersj2 2649:     return $self->NETWORK_FAILURE if ($self->{NAV_MAP}->{NETWORK_FAILURE});
                   2650: 
                   2651:     my $now = time();
                   2652: 
1.53      bowersj2 2653:     my $open = $self->opendate($part);
                   2654:     my $due = $self->duedate($part);
                   2655:     my $answer = $self->answerdate($part);
                   2656: 
                   2657:     if (!$open && !$due && !$answer) {
                   2658:         # no data on the problem at all
                   2659:         # should this be the same as "open later"? think multipart.
                   2660:         return $self->NOTHING_SET;
                   2661:     }
1.59      bowersj2 2662:     if (!$open || $now < $open) {return $self->OPEN_LATER}
                   2663:     if (!$due || $now < $due) {return $self->OPEN}
                   2664:     if ($answer && $now < $answer) {return $self->PAST_DUE_ANSWER_LATER}
                   2665:     if ($answer) { return $self->ANSWER_OPEN; }
1.54      bowersj2 2666:     return PAST_DUE_NO_ANSWER;
1.51      bowersj2 2667: }
                   2668: 
                   2669: =pod
                   2670: 
                   2671: B<>
                   2672: 
                   2673: =over 4
                   2674: 
                   2675: =item * B<getCompletionStatus>($part): ($part defaults to 0.) A convenience function that returns a symbolic constant telling you about the completion status of the part, with the following possible results:
                   2676: 
                   2677: =back 
                   2678: 
                   2679: B<Completion Codes>
                   2680: 
                   2681: =over 4
                   2682: 
                   2683: =item * B<NOT_ATTEMPTED>: Has not been attempted at all.
                   2684: 
                   2685: =item * B<INCORRECT>: Attempted, but wrong by student.
                   2686: 
                   2687: =item * B<INCORRECT_BY_OVERRIDE>: Attempted, but wrong by instructor override.
                   2688: 
                   2689: =item * B<CORRECT>: Correct or correct by instructor.
                   2690: 
                   2691: =item * B<CORRECT_BY_OVERRIDE>: Correct by instructor override.
                   2692: 
                   2693: =item * B<EXCUSED>: Excused. Not yet implemented.
                   2694: 
                   2695: =item * B<NETWORK_FAILURE>: Information not available due to network failure.
                   2696: 
1.69      bowersj2 2697: =item * B<ATTEMPTED>: Attempted, and not yet graded.
                   2698: 
1.51      bowersj2 2699: =back
                   2700: 
                   2701: =cut
                   2702: 
1.53      bowersj2 2703: sub NOT_ATTEMPTED         { return 10; }
                   2704: sub INCORRECT             { return 11; }
                   2705: sub INCORRECT_BY_OVERRIDE { return 12; }
                   2706: sub CORRECT               { return 13; }
                   2707: sub CORRECT_BY_OVERRIDE   { return 14; }
                   2708: sub EXCUSED               { return 15; }
1.69      bowersj2 2709: sub ATTEMPTED             { return 16; }
1.51      bowersj2 2710: 
                   2711: sub getCompletionStatus {
                   2712:     my $self = shift;
                   2713:     my $part = shift;
                   2714:     $part = "0" if (!defined($part));
                   2715:     return $self->NETWORK_FAILURE if ($self->{NAV_MAP}->{NETWORK_FAILURE});
                   2716: 
                   2717:     # Make sure return hash exists
                   2718:     $self->getReturnHash();
                   2719:     
                   2720:     my $status = $self->{RETURN_HASH}->{'resource.'.$part.'.solved'};
                   2721: 
                   2722:     # Left as seperate if statements in case we ever do more with this
                   2723:     if ($status eq 'correct_by_student') {return $self->CORRECT;}
                   2724:     if ($status eq 'correct_by_override') {return $self->CORRECT_BY_OVERRIDE; }
                   2725:     if ($status eq 'incorrect_attempted') {return $self->INCORRECT; }
                   2726:     if ($status eq 'incorrect_by_override') {return $self->INCORRECT_BY_OVERRIDE; }
                   2727:     if ($status eq 'excused') {return $self->EXCUSED; }
1.69      bowersj2 2728:     if ($status eq 'ungraded_attempted') {return $self->ATTEMPTED; }
1.51      bowersj2 2729:     return $self->NOT_ATTEMPTED;
                   2730: }
                   2731: 
                   2732: =pod
                   2733: 
                   2734: B<Composite Status>
                   2735: 
                   2736: Along with directly returning the date or completion status, the resource object includes a convenience function B<status>() that will combine the two status tidbits into one composite status that can represent the status of the resource as a whole. The precise logic is documented in the comments of the status method. The following results may be returned, all available as methods on the resource object ($res->NETWORK_FAILURE()):
                   2737: 
                   2738: =over 4
                   2739: 
1.70      bowersj2 2740: =item * B<NETWORK_FAILURE>: The network has failed and the information is not available.
1.51      bowersj2 2741: 
1.70      bowersj2 2742: =item * B<NOTHING_SET>: No dates have been set for this problem (part) at all. (Because only certain parts of a multi-part problem may be assigned, this can not be collapsed into "open later", as we don't know a given part will EVER be opened. For single part, this is the same as "OPEN_LATER".)
1.53      bowersj2 2743: 
1.70      bowersj2 2744: =item * B<CORRECT>: For any reason at all, the part is considered correct.
1.51      bowersj2 2745: 
1.70      bowersj2 2746: =item * B<EXCUSED>: For any reason at all, the problem is excused.
1.51      bowersj2 2747: 
1.70      bowersj2 2748: =item * B<PAST_DUE_NO_ANSWER>: The problem is past due, not considered correct, and no answer date is set.
1.54      bowersj2 2749: 
1.70      bowersj2 2750: =item * B<PAST_DUE_ANSWER_LATER>: The problem is past due, not considered correct, and an answer date in the future is set.
1.51      bowersj2 2751: 
1.70      bowersj2 2752: =item * B<ANSWER_OPEN>: The problem is past due, not correct, and the answer is now available.
1.51      bowersj2 2753: 
1.70      bowersj2 2754: =item * B<OPEN_LATER>: The problem is not yet open.
1.51      bowersj2 2755: 
1.70      bowersj2 2756: =item * B<TRIES_LEFT>: The problem is open, has been tried, is not correct, but there are tries left.
1.51      bowersj2 2757: 
1.70      bowersj2 2758: =item * B<INCORRECT>: The problem is open, and all tries have been used without getting the correct answer.
1.51      bowersj2 2759: 
1.70      bowersj2 2760: =item * B<OPEN>: The item is open and not yet tried.
1.51      bowersj2 2761: 
1.70      bowersj2 2762: =item * B<ATTEMPTED>: The problem has been attempted.
1.69      bowersj2 2763: 
1.51      bowersj2 2764: =back
                   2765: 
                   2766: =cut
                   2767: 
                   2768: sub TRIES_LEFT { return 10; }
                   2769: 
                   2770: sub status {
                   2771:     my $self = shift;
                   2772:     my $part = shift;
                   2773:     if (!defined($part)) { $part = "0"; }
                   2774:     my $completionStatus = $self->getCompletionStatus($part);
                   2775:     my $dateStatus = $self->getDateStatus($part);
                   2776: 
                   2777:     # What we have is a two-dimensional matrix with 4 entries on one
                   2778:     # dimension and 5 entries on the other, which we want to colorize,
1.54      bowersj2 2779:     # plus network failure and "no date data at all".
1.51      bowersj2 2780: 
1.53      bowersj2 2781:     if ($completionStatus == NETWORK_FAILURE) { return NETWORK_FAILURE; }
1.51      bowersj2 2782: 
                   2783:     # There are a few whole rows we can dispose of:
1.53      bowersj2 2784:     if ($completionStatus == CORRECT ||
                   2785:         $completionStatus == CORRECT_BY_OVERRIDE ) {
1.69      bowersj2 2786:         return CORRECT; 
                   2787:     }
                   2788: 
                   2789:     if ($completionStatus == ATTEMPTED) {
                   2790:         return ATTEMPTED;
1.53      bowersj2 2791:     }
                   2792: 
                   2793:     # If it's EXCUSED, then return that no matter what
                   2794:     if ($completionStatus == EXCUSED) {
                   2795:         return EXCUSED; 
1.51      bowersj2 2796:     }
                   2797: 
1.53      bowersj2 2798:     if ($dateStatus == NOTHING_SET) {
                   2799:         return NOTHING_SET;
1.51      bowersj2 2800:     }
                   2801: 
1.69      bowersj2 2802:     # Now we're down to a 4 (incorrect, incorrect_override, not_attempted)
                   2803:     # by 4 matrix (date statuses).
1.51      bowersj2 2804: 
1.54      bowersj2 2805:     if ($dateStatus == PAST_DUE_ANSWER_LATER ||
1.59      bowersj2 2806:         $dateStatus == PAST_DUE_NO_ANSWER ) {
1.54      bowersj2 2807:         return $dateStatus; 
1.51      bowersj2 2808:     }
                   2809: 
1.53      bowersj2 2810:     if ($dateStatus == ANSWER_OPEN) {
                   2811:         return ANSWER_OPEN;
1.51      bowersj2 2812:     }
                   2813: 
                   2814:     # Now: (incorrect, incorrect_override, not_attempted) x 
                   2815:     # (open_later), (open)
                   2816:     
1.53      bowersj2 2817:     if ($dateStatus == OPEN_LATER) {
                   2818:         return OPEN_LATER;
1.51      bowersj2 2819:     }
                   2820: 
                   2821:     # If it's WRONG...
1.53      bowersj2 2822:     if ($completionStatus == INCORRECT || $completionStatus == INCORRECT_BY_OVERRIDE) {
1.51      bowersj2 2823:         # and there are TRIES LEFT:
                   2824:         if ($self->tries() < $self->maxtries()) {
1.53      bowersj2 2825:             return TRIES_LEFT;
1.51      bowersj2 2826:         }
1.53      bowersj2 2827:         return INCORRECT; # otherwise, return orange; student can't fix this
1.51      bowersj2 2828:     }
                   2829: 
                   2830:     # Otherwise, it's untried and open
1.53      bowersj2 2831:     return OPEN; 
1.51      bowersj2 2832: }
                   2833: 
                   2834: =pod
                   2835: 
                   2836: =head2 Resource/Nav Map Navigation
                   2837: 
                   2838: =over 4
                   2839: 
                   2840: =item * B<getNext>(): Gets the next resource in the navmap after this one.
                   2841: 
                   2842: =cut
                   2843: 
                   2844: # For the simple single-link case, to get from a resource to the next
                   2845: # resource, you need to look up the "to_" link in the nav hash, then
                   2846: # follow that with the "goesto_" link.
                   2847: 
                   2848: sub getNext {
                   2849:     my $self = shift;
                   2850:     my $alreadySeenHash = shift;
                   2851:     my @branches;
                   2852:     my $to = $self->to();
                   2853:     foreach my $branch ( split(/\,/, $to) ) {
                   2854:         my $choice = $self->{NAV_MAP}->getById($branch);
                   2855:         my $next = $choice->goesto();
                   2856:         $next = $self->{NAV_MAP}->getById($next);
                   2857: 
1.61      bowersj2 2858:         # Don't remember it if we've already seen it or if
1.66      bowersj2 2859:         # the student doesn't have browse priviledges
                   2860:         my $browsePriv = &Apache::lonnet::allowed('bre', $self->src);
1.51      bowersj2 2861:         if (!defined($alreadySeenHash) ||
1.61      bowersj2 2862:             !defined($alreadySeenHash->{$next->{ID}}) ||
1.66      bowersj2 2863:             ($browsePriv ne '2' && $browsePriv ne 'F')) {
1.51      bowersj2 2864:                 push @branches, $next;
                   2865:             }
                   2866:     }
                   2867:     return \@branches;
                   2868: }
                   2869: 
                   2870: =pod
1.2       www      2871: 
1.51      bowersj2 2872: =back
1.2       www      2873: 
1.51      bowersj2 2874: =cut
1.2       www      2875: 
1.51      bowersj2 2876: 1;
1.2       www      2877: 
1.51      bowersj2 2878: __END__
1.2       www      2879: 
                   2880: 

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