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

1.72      bowersj2    1: 
1.2       www         2: # The LearningOnline Network with CAPA
                      3: # Navigate Maps Handler
1.1       www         4: #
1.123     bowersj2    5: # $Id: lonnavmaps.pm,v 1.122 2002/12/12 18:24:05 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
1.105     bowersj2   40: # Oct-Nov Jeremy Bowers
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);
1.18      albertel   46: use Apache::loncommon();
1.73      bowersj2   47: use POSIX qw (floor strftime);
1.2       www        48: 
1.1       www        49: sub handler {
1.99      bowersj2   50:     my $r = shift;
1.118     bowersj2   51:     real_handler($r);
                     52: }
                     53: 
                     54: sub real_handler {
                     55:     my $r = shift;
1.2       www        56: 
1.51      bowersj2   57:     &Apache::loncommon::get_unprocessed_cgi($ENV{QUERY_STRING});
                     58: 
                     59:     # Handle header-only request
                     60:     if ($r->header_only) {
                     61:         if ($ENV{'browser.mathml'}) {
                     62:             $r->content_type('text/xml');
                     63:         } else {
                     64:             $r->content_type('text/html');
                     65:         }
                     66:         $r->send_http_header;
                     67:         return OK;
                     68:     }
                     69: 
                     70:     # Send header, don't cache this page
                     71:     if ($ENV{'browser.mathml'}) {
                     72:         $r->content_type('text/xml');
                     73:     } else {
                     74:         $r->content_type('text/html');
                     75:     }
                     76:     &Apache::loncommon::no_cache($r);
                     77:     $r->send_http_header;
                     78: 
1.106     bowersj2   79:     # Create the nav map
1.51      bowersj2   80:     my $navmap = Apache::lonnavmaps::navmap->new(
                     81:                         $ENV{"request.course.fn"}.".db",
1.80      bowersj2   82:                         $ENV{"request.course.fn"}."_parms.db", 1, 1);
1.51      bowersj2   83: 
1.55      bowersj2   84: 
                     85:     if (!defined($navmap)) {
                     86:         my $requrl = $r->uri;
                     87:         $ENV{'user.error.msg'} = "$requrl:bre:0:0:Course not initialized";
                     88:         return HTTP_NOT_ACCEPTABLE;
                     89:     }
1.64      bowersj2   90: 
1.111     bowersj2   91:     $r->print("<html><head>\n");
1.118     bowersj2   92:     $r->print("<title>Navigate Course Contents</title></head>");
1.111     bowersj2   93: 
1.64      bowersj2   94:     # Header
1.111     bowersj2   95:     $r->print(&Apache::loncommon::bodytag('Navigate Course Contents','',
1.64      bowersj2   96:                                           ''));
                     97:     $r->print('<script>window.focus();</script>');
1.101     bowersj2   98: 
1.124   ! bowersj2   99:     $r->rflush();
        !           100: 
        !           101:     # Now that we've displayed some stuff to the user, init the navmap
        !           102:     $navmap->init();
        !           103: 
1.95      bowersj2  104:     $r->print('<table border="0" cellpadding="2" cellspacing="0">');
1.64      bowersj2  105:     my $date=localtime;
1.95      bowersj2  106:     $r->print('<tr><td align="right" valign="bottom">Key:&nbsp;&nbsp;</td>');
1.101     bowersj2  107: 
                    108:     # Print discussions and feedback header
1.65      bowersj2  109:     if ($navmap->{LAST_CHECK}) {
1.95      bowersj2  110:         $r->print('<td align="center" valign="bottom">&nbsp;&nbsp;'.
                    111:                   '<img src="/adm/lonMisc/chat.gif"> New discussion since '.
1.73      bowersj2  112:                   strftime("%A, %b %e at %I:%M %P", localtime($navmap->{LAST_CHECK})).
1.95      bowersj2  113:                   '</td><td align="center" valign="bottom">&nbsp;&nbsp;'.
                    114:                   '<img src="/adm/lonMisc/feedback.gif"> New message (click to open)<p>'.
                    115:                   '</td>'); 
                    116:     } else {
                    117:         $r->print('<td align="center" valign="bottom">&nbsp;&nbsp;'.
                    118:                   '<img src="/adm/lonMisc/chat.gif"> Discussions</td><td align="center" valign="bottom">'.
                    119:                   '&nbsp;&nbsp;<img src="/adm/lonMisc/feedback.gif"> New message (click to open)'.
                    120:                   '</td>'); 
                    121:     }
                    122:     $r->print('</tr></table>');
1.101     bowersj2  123: 
1.95      bowersj2  124:     my $condition = 0;
                    125:     if ($ENV{'form.condition'}) {
                    126:         $condition = 1;
                    127:     }
                    128: 
1.118     bowersj2  129:     # Determine where the "here" marker is and where the screen jumps to.
                    130:     my $SYMB = 1; my $URL = 2; my $NOTHING = 3; # symbolic constants
                    131:     my $hereType; # the type of marker, $SYMB, $URL, or $NOTHING
                    132:     my $here; # the actual URL or SYMB for the here marker
                    133:     my $jumpType; # The type of the thing we have a jump for, $SYMB or $URL
                    134:     my $jump; # the SYMB/URL of the resource we need to jump to
                    135: 
                    136:     if ( $ENV{'form.alreadyHere'} ) { # we came from a user's manipulation of the nav page
                    137:         # If this is a click on a folder or something, we want to preserve the "here"
                    138:         # from the querystring, and get the new "jump" marker
                    139:         $hereType = $ENV{'form.hereType'};
                    140:         $here = $ENV{'form.here'};
                    141:         $jumpType = $ENV{'form.jumpType'} || $NOTHING;
                    142:         $jump = $ENV{'form.jump'};
                    143:     } else { # the user is visiting the nav map from the remote
                    144:         # We're coming from the remote. We have either a url, a symb, or nothing,
                    145:         # and we need to figure out what.
                    146:         # Preference: Symb
                    147:         
                    148:         if ($ENV{'form.symb'}) {
                    149:             $hereType = $jumpType = $SYMB;
                    150:             $here = $jump = $ENV{'form.symb'};
                    151:         } elsif ($ENV{'form.postdata'}) {
                    152:             # couldn't find a symb, is there a URL?
                    153:             my $currenturl = $ENV{'form.postdata'};
                    154:             $currenturl=~s/^http\:\/\///;
                    155:             $currenturl=~s/^[^\/]+//;
                    156: 
                    157:             $hereType = $jumpType = $URL;
                    158:             $here = $jump = $currenturl;
                    159:         } else {
                    160:             # Nothing
                    161:             $hereType = $jumpType = $NOTHING;
                    162:         }
                    163:     }
1.110     bowersj2  164: 
1.118     bowersj2  165:     
1.110     bowersj2  166:     # alreadyHere allows us to only open the maps necessary to view
                    167:     # the current location once, while at the same time remembering
                    168:     # the current location. Without that check, the user would never
                    169:     # be able to close those maps; the user would close it, and the
                    170:     # currenturl scan would re-open it.
1.118     bowersj2  171:     my $queryAdd = "&alreadyHere=1";
1.110     bowersj2  172: 
1.95      bowersj2  173:     if ($condition) {
1.118     bowersj2  174:         $r->print("<a href=\"navmaps?condition=0&filter=&$queryAdd" .
                    175:                   "&hereType=$hereType&here=" . Apache::lonnet::escape($here) .
                    176:                   "\">Close All Folders</a>");
1.65      bowersj2  177:     } else {
1.118     bowersj2  178:         $r->print("<a href=\"navmaps?condition=1&filter=&$queryAdd" .
                    179:                   "&hereType=$hereType&here=" . Apache::lonnet::escape($here) . 
                    180:                   "\">Open All Folders</a>");
1.65      bowersj2  181:     }
1.55      bowersj2  182: 
1.95      bowersj2  183:     $r->print('<br>&nbsp;');
                    184:     $r->rflush();
                    185: 
1.55      bowersj2  186:     # Check that it's defined
                    187:     if (!($navmap->courseMapDefined())) {
                    188:         $r->print('<font size="+2" color="red">Coursemap undefined.</font>' .
                    189:                   '</body></html>');
                    190:         return OK;
                    191:     }
                    192: 
1.51      bowersj2  193:     # Grab a resource object so we have access to the constants; this
                    194:     # is technically not proper, but should be harmless
                    195:     my $res = $navmap->firstResource();
                    196: 
1.101     bowersj2  197:     # These are some data tables, which make it easy to change some of
                    198:     # of the specific visualization parameters if desired.
                    199: 
1.51      bowersj2  200:     # Defines a status->color mapping, null string means don't color
                    201:     my %colormap = 
1.54      bowersj2  202:     ( $res->NETWORK_FAILURE        => '',
1.59      bowersj2  203:       $res->CORRECT                => '',
1.112     bowersj2  204:       $res->EXCUSED                => '#3333FF',
1.59      bowersj2  205:       $res->PAST_DUE_ANSWER_LATER  => '',
                    206:       $res->PAST_DUE_NO_ANSWER     => '',
1.112     bowersj2  207:       $res->ANSWER_OPEN            => '#006600',
1.54      bowersj2  208:       $res->OPEN_LATER             => '',
1.59      bowersj2  209:       $res->TRIES_LEFT             => '',
                    210:       $res->INCORRECT              => '',
                    211:       $res->OPEN                   => '',
1.54      bowersj2  212:       $res->NOTHING_SET            => ''        );
1.59      bowersj2  213:     # And a special case in the nav map; what to do when the assignment
                    214:     # is not yet done and due in less then 24 hours
1.86      bowersj2  215:     my $hurryUpColor = "#FF0000";
1.59      bowersj2  216: 
1.115     bowersj2  217:     # Keep these mappings in sync with lonquickgrades, which uses the colors
                    218:     # instead of the icons.
1.59      bowersj2  219:     my %statusIconMap = 
1.66      bowersj2  220:         ( $res->NETWORK_FAILURE    => '',
                    221:           $res->NOTHING_SET        => '',
                    222:           $res->CORRECT            => 'navmap.correct.gif',
                    223:           $res->EXCUSED            => 'navmap.correct.gif',
                    224:           $res->PAST_DUE_NO_ANSWER => 'navmap.wrong.gif',
                    225:           $res->PAST_DUE_ANSWER_LATER => 'navmap.wrong.gif',
                    226:           $res->ANSWER_OPEN        => 'navmap.wrong.gif',
                    227:           $res->OPEN_LATER         => '',
                    228:           $res->TRIES_LEFT         => 'navmap.open.gif',
                    229:           $res->INCORRECT          => 'navmap.wrong.gif',
1.69      bowersj2  230:           $res->OPEN               => 'navmap.open.gif',
1.85      bowersj2  231:           $res->ATTEMPTED          => 'navmap.open.gif' );
1.69      bowersj2  232: 
                    233:     my %iconAltTags = 
                    234:         ( 'navmap.correct.gif' => 'Correct',
                    235:           'navmap.wrong.gif'   => 'Incorrect',
                    236:           'navmap.open.gif'    => 'Open' );
1.59      bowersj2  237: 
                    238:     my %condenseStatuses =
1.66      bowersj2  239:         ( $res->NETWORK_FAILURE    => 1,
                    240:           $res->NOTHING_SET        => 1,
                    241:           $res->CORRECT            => 1 );
1.51      bowersj2  242: 
                    243:     my %filterHash;
                    244:     # Figure out what we're not displaying
                    245:     foreach (split(/\,/, $ENV{"form.filter"})) {
                    246:         if ($_) {
                    247:             $filterHash{$_} = "1";
                    248:         }
                    249:     }
                    250: 
1.88      bowersj2  251:     # Is this a new-style course? If so, we want to suppress showing the top-level
                    252:     # maps in their own folders, in favor of "inlining" them.
                    253:     my $topResource = $navmap->getById("0.0");
1.63      bowersj2  254: 
1.51      bowersj2  255:     # Begin the HTML table
1.59      bowersj2  256:     # four cols: resource + indent, chat+feedback, icon, text string
1.85      bowersj2  257:     $r->print('<table cellspacing="0" cellpadding="3" border="0" bgcolor="#FFFFFF">' ."\n");
1.51      bowersj2  258: 
1.74      bowersj2  259:     # This needs to be updated to use symbs from the remote, 
                    260:     # instead of uris. The changes to this and the main rendering
                    261:     # loop should be obvious.
                    262:     # Here's a simple example of the iterator.
1.88      bowersj2  263:     # Preprocess the map: Look for current URL, force inlined maps to display
                    264: 
1.118     bowersj2  265:     my $mapIterator = $navmap->getIterator(undef, undef, undef, 1);
1.88      bowersj2  266:     my $found = 0;
                    267:     my $depth = 1;
1.118     bowersj2  268:     my $currentJumpIndex = 0; # keeps track of when the current resource is found,
1.91      bowersj2  269:                              # so we can back up a few and put the anchor above the
                    270:                              # current resource
1.118     bowersj2  271:     my $currentJumpDelta = 2; # change this to change how many resources are displayed
1.101     bowersj2  272:                              # before the current resource when using #current
1.88      bowersj2  273:     $mapIterator->next(); # discard the first BEGIN_MAP
                    274:     my $curRes = $mapIterator->next();
1.91      bowersj2  275:     my $counter = 0;
1.118     bowersj2  276:     my $foundJump = ($jumpType == $NOTHING); # look for jump point if we have one
                    277:     my $looped = 0; 
1.116     bowersj2  278: 
                    279:     # We only need to do this if we need to open the maps to show the
1.118     bowersj2  280:     # current position. This will change the counter so we can't count
                    281:     # for the jump marker with this loop.
1.116     bowersj2  282:     while ($depth > 0 && !$ENV{'form.alreadyHere'}) {
1.96      bowersj2  283:         if ($curRes == $mapIterator->BEGIN_MAP()) { $depth++; }
                    284:         if ($curRes == $mapIterator->END_MAP()) { $depth--; }
1.120     bowersj2  285: 
1.118     bowersj2  286:         if (ref($curRes) && !$ENV{'form.alreadyHere'} && 
                    287:             ($hereType == $SYMB && $curRes->symb() eq $here) ||
1.119     bowersj2  288:             (ref($curRes) && $hereType == $URL && $curRes->src() eq $here)) {
1.118     bowersj2  289:             my $mapStack = $mapIterator->getStack();
                    290:             
                    291:             # Ensure the parent maps are open
                    292:             for my $map (@{$mapStack}) {
                    293:                 if ($condition) {
                    294:                     undef $filterHash{$map->map_pc()};
                    295:                 } else {
                    296:                     $filterHash{$map->map_pc()} = 1;
                    297:                 }
                    298:             }
                    299:             $ENV{'form.alreadyHere'} = 1;
                    300:         }
                    301:         $looped = 1;
                    302: 
                    303:         $curRes = $mapIterator->next();
                    304:     }            
                    305:     
                    306:     $mapIterator = $navmap->getIterator(undef, undef, \%filterHash, 0);
                    307:     $depth = 1;
                    308:     $mapIterator->next();
                    309:     $curRes = $mapIterator->next();
1.88      bowersj2  310: 
1.118     bowersj2  311:     while ($depth > 0 && !$foundJump) {
                    312:         if ($curRes == $mapIterator->BEGIN_MAP()) { $depth++; }
                    313:         if ($curRes == $mapIterator->END_MAP()) { $depth--; }
1.91      bowersj2  314:         if (ref($curRes)) { $counter++; }
                    315: 
1.118     bowersj2  316:         if (ref($curRes) && 
                    317:             (($jumpType == $SYMB && $curRes->symb() eq $jump) ||
                    318:             ($jumpType == $URL && $curRes->src() eq $jump))) {
1.88      bowersj2  319:             # If this is the correct resource, be sure to 
                    320:             # show it by making sure the containing maps
                    321:             # are open.
1.91      bowersj2  322: 
1.101     bowersj2  323:             # This is why we have to use the main iterator instead of the
                    324:             # potentially faster DFS: The count has to be the same, so
                    325:             # the order has to be the same, which DFS won't give us.
1.118     bowersj2  326:             $currentJumpIndex = $counter;
                    327:             $foundJump = 1;
1.88      bowersj2  328:         }
1.118     bowersj2  329: 
1.88      bowersj2  330:         $curRes = $mapIterator->next();
1.74      bowersj2  331:     }
1.88      bowersj2  332:     
1.53      bowersj2  333:     undef $res; # so we don't accidentally use it later
1.72      bowersj2  334:     my $indentLevel = 0;
1.61      bowersj2  335:     my $indentString = "<img src=\"/adm/lonIcons/whitespace1.gif\" width=\"25\" height=\"1\" alt=\"\" border=\"0\" />";
1.51      bowersj2  336: 
                    337:     my $isNewBranch = 0;
1.59      bowersj2  338:     my $now = time();
                    339:     my $in24Hours = $now + 24 * 60 * 60;
1.78      bowersj2  340:     my $displayedHereMarker = 0;
1.118     bowersj2  341:     my $displayedJumpMarker = 0;
1.88      bowersj2  342:     
1.72      bowersj2  343:     # We know the first thing is a BEGIN_MAP (see "$self->{STARTED}"
                    344:     # code in iterator->next), so ignore the first one
1.89      bowersj2  345:     $mapIterator = $navmap->getIterator(undef, undef, \%filterHash,
1.74      bowersj2  346:                                            $condition);
1.72      bowersj2  347:     $mapIterator->next();
1.89      bowersj2  348:     $curRes = $mapIterator->next();
1.90      bowersj2  349:     $depth = 1;
1.88      bowersj2  350: 
                    351:     my @backgroundColors = ("#FFFFFF", "#F6F6F6");
                    352:     my $rowNum = 0;
1.51      bowersj2  353: 
1.91      bowersj2  354:     $counter = 0;
                    355: 
1.72      bowersj2  356:     while ($depth > 0) {
1.51      bowersj2  357:         if ($curRes == $mapIterator->BEGIN_MAP() ||
1.52      bowersj2  358:             $curRes == $mapIterator->BEGIN_BRANCH()) {
1.51      bowersj2  359:             $indentLevel++;
                    360:         }
                    361:         if ($curRes == $mapIterator->END_MAP() ||
1.52      bowersj2  362:             $curRes == $mapIterator->END_BRANCH()) {
1.51      bowersj2  363:             $indentLevel--;
                    364:         }
1.52      bowersj2  365:         if ($curRes == $mapIterator->BEGIN_BRANCH()) {
                    366:             $isNewBranch = 1;
1.72      bowersj2  367:         }
1.96      bowersj2  368:         if ($curRes == $mapIterator->BEGIN_MAP()) { $depth++; }
                    369:         if ($curRes == $mapIterator->END_MAP()) { $depth--; }
1.51      bowersj2  370: 
1.91      bowersj2  371:         if (ref($curRes)) { $counter++; }
                    372: 
1.101     bowersj2  373:         # Is this resource being ignored because it is in a random-out
                    374:         # map and it was not selected?
1.68      bowersj2  375:         if (ref($curRes) && !advancedUser() && $curRes->randomout()) {
                    376:             $curRes = $mapIterator->next();
1.101     bowersj2  377:             next; # if yes, then just ignore this resource
1.68      bowersj2  378:         }
                    379: 
1.116     bowersj2  380:         if (ref($curRes)) {
1.51      bowersj2  381: 
1.113     bowersj2  382:             my $deltalevel = $isNewBranch? 1 : 0; # reserves space for branch icon
                    383: 
1.116     bowersj2  384:             if ($indentLevel - $deltalevel < 0) {
1.113     bowersj2  385:                 # If this would be at a negative depth (top-level maps in
                    386:                 # new-style courses, we want to suppress their title display)
                    387:                 # then ignore it.
                    388:                 $curRes = $mapIterator->next();
                    389:                 next;
                    390:             }
                    391: 
1.66      bowersj2  392:             # Step one: Decide which parts to show
                    393:             my @parts = @{$curRes->parts()};
                    394:             my $multipart = scalar(@parts) > 1;
                    395:             my $condensed = 0;
                    396:                 
1.51      bowersj2  397:             if ($curRes->is_problem()) {
1.101     bowersj2  398: 
1.66      bowersj2  399:                 # Is it multipart?
                    400:                 if ($multipart) {
                    401:                     # If it's multipart, see if part 0 is "open"
                    402:                     # if it is, display all parts, if it isn't,
                    403:                     # just display first
                    404:                     if (!$curRes->opendate("0")) {
1.101     bowersj2  405:                         # no parts are open, display as one part
                    406:                         @parts = ("0");
1.68      bowersj2  407:                         $condensed = 1;
1.66      bowersj2  408:                     } else {
                    409:                         # Otherwise, only display part 0 if we want to 
                    410:                         # attach feedback or email information to it
                    411:                         if ($curRes->hasDiscussion() || $curRes->getFeedback()) {
                    412:                             shift @parts;
                    413:                         } else {
                    414:                             # Now, we decide whether to condense the
                    415:                             # parts due to similarity
                    416:                             my $status = $curRes->status($parts[1]);
                    417:                             my $due = $curRes->duedate($parts[1]);
                    418:                             my $open = $curRes->opendate($parts[1]);
                    419:                             my $statusAllSame = 1;
                    420:                             my $dueAllSame = 1;
                    421:                             my $openAllSame = 1;
                    422:                             for (my $i = 2; $i < scalar(@parts); $i++) {
                    423:                                 if ($curRes->status($parts[$i]) != $status){
                    424:                                     $statusAllSame = 0;
                    425:                                 }
                    426:                                 if ($curRes->duedate($parts[$i]) != $due ) {
                    427:                                     $dueAllSame = 0;
                    428:                                 }
                    429:                                 if ($curRes->opendate($parts[$i]) != $open) {
                    430:                                     $openAllSame = 0;
                    431:                                 }
                    432:                             }
                    433:                             
                    434:                             # $allSame is true if all the statuses were
                    435:                             # the same. Now, if they are all the same and
                    436:                             # match one of the statuses to condense, or they
                    437:                             # are all open with the same due date, or they are
                    438:                             # all OPEN_LATER with the same open date, display the
                    439:                             # status of the first non-zero part (to get the 'correct'
                    440:                             # status right, since 0 is never 'correct' or 'open').
                    441:                             if (($statusAllSame && defined($condenseStatuses{$status})) ||
                    442:                                 ($dueAllSame && $status == $curRes->OPEN && $statusAllSame)||
                    443:                                 ($openAllSame && $status == $curRes->OPEN_LATER && $statusAllSame) ){
                    444:                                 @parts = ($parts[1]);
                    445:                                 $condensed = 1;
                    446:                             }
                    447:                         }
                    448:                     }
                    449:                 }
1.59      bowersj2  450: 
1.51      bowersj2  451:             } else {
1.84      bowersj2  452:                 $parts[0] = "0"; # this is to get past foreach loop below
1.51      bowersj2  453:                  # you can consider a non-problem resource as a resource
1.101     bowersj2  454:                   # with only one part without loss, and it simplifies the looping
1.51      bowersj2  455:             }
                    456: 
1.83      bowersj2  457:             # Is it a multipart problem with a single part, now in 
1.101     bowersj2  458:             # @parts with "0" filtered out? If so, 'forget' it's a multi-part
1.83      bowersj2  459:             # problem and treat it like a single-part problem.
                    460:             if ( scalar(@parts) == 1 ) {
                    461:                 $multipart = 0;
                    462:             }
                    463: 
1.66      bowersj2  464:             # Display one part, in event of network error.
                    465:             # If this is a single part, we can at least show the correct
1.101     bowersj2  466:             # status, but if it's multipart, we're lost, since we can't
                    467:             # retreive the metadata to count the parts
1.66      bowersj2  468:             if ($curRes->{RESOURCE_ERROR}) {
                    469:                 @parts = ("0");
                    470:             }
                    471: 
1.101     bowersj2  472:             # Step Two: Print the actual data.
                    473: 
                    474:             # For each part we intend to display...
1.51      bowersj2  475:             foreach my $part (@parts) {
1.59      bowersj2  476: 
1.68      bowersj2  477:                 my $nonLinkedText = ""; # unlinked stuff after title
1.51      bowersj2  478:                 
                    479:                 my $stack = $mapIterator->getStack();
                    480:                 my $src = getLinkForResource($stack);
                    481: 
1.101     bowersj2  482:                 # Pass the correct symb on the querystring, so the
                    483:                 # remote will figure out where we are if we click a link
1.51      bowersj2  484:                 my $srcHasQuestion = $src =~ /\?/;
                    485:                 my $link = $src.
                    486:                     ($srcHasQuestion?'&':'?') .
                    487:                     'symb='.&Apache::lonnet::escape($curRes->symb()).
                    488:                     '"';
1.101     bowersj2  489: 
1.106     bowersj2  490:                 my $title = $curRes->compTitle();
1.122     www       491:                 if ($src=~/^\/uploaded\//) {
                    492: 		    $nonLinkedText=$title;
                    493:                     $title='';
                    494:                 }
1.51      bowersj2  495:                 my $partLabel = "";
1.52      bowersj2  496:                 my $newBranchText = "";
                    497: 
                    498:                 # If this is a new branch, label it so
                    499:                 if ($isNewBranch) {
1.59      bowersj2  500:                     $newBranchText = "<img src=\"/adm/lonIcons/branch.gif\" border=\"0\">";
1.52      bowersj2  501:                     $isNewBranch = 0;
                    502:                 }
1.51      bowersj2  503: 
                    504:                 # links to open and close the folders
                    505:                 my $linkopen = "<a href=\"$link\">";
                    506:                 my $linkclose = "</a>";
                    507: 
1.61      bowersj2  508:                 my $icon = "<img src=\"/adm/lonIcons/html.gif\" alt=\"\" border=\"0\" />";
1.51      bowersj2  509:                 if ($curRes->is_problem()) { 
1.66      bowersj2  510:                     if ($part eq "0" || $condensed) {
                    511:                         $icon = '<img src="/adm/lonIcons/problem.gif" alt="" border=\"0\" />'; 
                    512:                     } else {
                    513:                         $icon = $indentString;
                    514:                     }
1.51      bowersj2  515:                 }
                    516: 
                    517:                 # Display the correct icon, link to open or shut map
                    518:                 if ($curRes->is_map()) { 
                    519:                     my $mapId = $curRes->map_pc();
1.82      bowersj2  520:                     my $nowOpen = (!defined($filterHash{$mapId}));
                    521:                     if ($condition) {$nowOpen = !$nowOpen;}
1.51      bowersj2  522:                     $icon = $nowOpen ?
1.77      bowersj2  523:                         "navmap.folder.closed.gif" : "navmap.folder.open.gif";
1.66      bowersj2  524:                     $icon = "<img src=\"/adm/lonIcons/$icon\" alt=\"\" border=\"0\" />";
1.52      bowersj2  525:                     $linkopen = "<a href=\"/adm/navmaps?filter=";
1.66      bowersj2  526:                     $linkopen .= ($nowOpen xor $condition) ? 
1.51      bowersj2  527:                         addToFilter(\%filterHash, $mapId) :
                    528:                         removeFromFilter(\%filterHash, $mapId);
1.118     bowersj2  529:                     $linkopen .= "&condition=$condition&$queryAdd" . 
                    530:                         "&hereType=$hereType&here=" . 
                    531:                         Apache::lonnet::escape($here) . "&jumpType=$SYMB&" .
                    532:                         "jump=" . Apache::lonnet::escape($curRes->symb()) ."\">";
1.51      bowersj2  533:                     $linkclose = "</a>";
1.68      bowersj2  534: 
1.51      bowersj2  535:                 }
                    536:                 
                    537:                 my $colorizer = "";
1.86      bowersj2  538:                 my $color;
1.51      bowersj2  539:                 if ($curRes->is_problem()) {
1.115     bowersj2  540:                     $color = $colormap{$curRes->status};
1.74      bowersj2  541: 
1.115     bowersj2  542:                     if (dueInLessThen24Hours($curRes, $part) ||
                    543:                         lastTry($curRes, $part)) {
1.79      bowersj2  544:                         $color = $hurryUpColor;
                    545:                     }
1.115     bowersj2  546: 
1.51      bowersj2  547:                     if ($color ne "") {
                    548:                         $colorizer = "bgcolor=\"$color\"";
                    549:                     }
                    550:                 }
                    551: 
1.68      bowersj2  552:                 if ($curRes->randomout()) {
                    553:                     $nonLinkedText .= ' <i>(hidden)</i> ';
                    554:                 }
                    555: 
1.88      bowersj2  556:                 $rowNum++;
                    557:                 my $backgroundColor = $backgroundColors[$rowNum % scalar(@backgroundColors)];
                    558: 
1.91      bowersj2  559:                 # FIRST COL: The resource indentation, branch icon, name, and anchor
1.116     bowersj2  560:                 $r->print("  <tr bgcolor=\"$backgroundColor\"><td align=\"left\" valign=\"center\">\n");
1.51      bowersj2  561: 
1.101     bowersj2  562:                 # Print the anchor if necessary
1.118     bowersj2  563:                 if ($counter == $currentJumpIndex - $currentJumpDelta ) {
                    564:                     $r->print('<a name="curloc" />');
                    565:                     $displayedJumpMarker = 1;
1.91      bowersj2  566:                 }
                    567: 
1.51      bowersj2  568:                 # print indentation
1.116     bowersj2  569:                 for (my $i = 0; $i < $indentLevel - $deltalevel; $i++) {
1.51      bowersj2  570:                     $r->print($indentString);
                    571:                 }
                    572: 
1.61      bowersj2  573:                 $r->print("  ${newBranchText}${linkopen}$icon${linkclose}\n");
1.51      bowersj2  574: 
1.74      bowersj2  575:                 my $curMarkerBegin = "";
                    576:                 my $curMarkerEnd = "";
                    577: 
                    578:                 # Is this the current resource?
1.118     bowersj2  579:                 if (!$displayedHereMarker && 
                    580:                     (($hereType == $SYMB && $curRes->symb eq $here) ||
                    581:                     ($hereType == $URL && $curRes->src eq $here))) {
                    582:                     $curMarkerBegin = '<font color="red" size="+2">&gt; </font>';
1.74      bowersj2  583:                     $curMarkerEnd = '<font color="red" size="+2"> &lt;</font>';
1.78      bowersj2  584:                     $displayedHereMarker = 1;
1.74      bowersj2  585:                 }
                    586: 
1.69      bowersj2  587:                 if ($curRes->is_problem() && $part ne "0" && !$condensed) { 
1.66      bowersj2  588:                     $partLabel = " (Part $part)"; 
                    589:                     $title = "";
                    590:                 }
1.83      bowersj2  591:                 if ($multipart && $condensed) {
1.68      bowersj2  592:                     $nonLinkedText .= ' (' . $curRes->countParts() . ' parts)';
1.66      bowersj2  593:                 }
1.59      bowersj2  594: 
1.74      bowersj2  595:                 $r->print("  $curMarkerBegin<a href=\"$link\">$title$partLabel</a> $curMarkerEnd $nonLinkedText");
1.66      bowersj2  596: 
1.118     bowersj2  597:                 #if ($curRes->{RESOURCE_ERROR}) {
                    598:                 #    $r->print(&Apache::loncommon::help_open_topic ("Navmap_Host_Down",
                    599:                 #                              '<font size="-1">Host down</font>'));
                    600:                 #    }
1.66      bowersj2  601: 
1.113     bowersj2  602:                 $r->print("</td>\n");
                    603: 
1.101     bowersj2  604:                 # SECOND COL: Is there text, feedback, errors??
1.124   ! bowersj2  605:                 my $discussionHTML = ""; my $feedbackHTML = ""; my $errorHTML = "";
1.66      bowersj2  606: 
                    607:                 if ($curRes->hasDiscussion()) {
                    608:                     $discussionHTML = $linkopen .
                    609:                         '<img border="0" src="/adm/lonMisc/chat.gif" />' .
                    610:                         $linkclose;
                    611:                 }
                    612: 
                    613:                 if ($curRes->getFeedback()) {
                    614:                     my $feedback = $curRes->getFeedback();
                    615:                     foreach (split(/\,/, $feedback)) {
                    616:                         if ($_) {
                    617:                             $feedbackHTML .= '&nbsp;<a href="/adm/email?display='
                    618:                                 . &Apache::lonnet::escape($_) . '">'
                    619:                                 . '<img src="/adm/lonMisc/feedback.gif" '
                    620:                                 . 'border="0" /></a>';
                    621:                         }
                    622:                     }
                    623:                 }
                    624: 
1.124   ! bowersj2  625:                 if ($curRes->getErrors()) {
        !           626:                     my $errors = $curRes->getErrors();
        !           627:                     foreach (split(/,/, $errors)) {
        !           628:                         if ($_) {
        !           629:                             $errorHTML .= '&nbsp;<a href="/adm/email?display='
        !           630:                                 . &Apache::lonnet::escape($_) . '">'
        !           631:                                 . '<img src="/adm/lonMisc/bomb.gif" '
        !           632:                                 . 'border="0" /></a>';
        !           633:                         }
        !           634:                     }
        !           635:                 }
        !           636: 
        !           637:                 $r->print("<td width=\"75\" align=\"left\" valign=\"center\">$discussionHTML$feedbackHTML$errorHTML&nbsp;</td>");
1.66      bowersj2  638: 
                    639:                 # Is this the first displayed part of a multi-part problem
                    640:                 # that has not been condensed, so we should suppress these two
1.101     bowersj2  641:                 # columns so we don't display useless status info about part
                    642:                 # "0"?
1.66      bowersj2  643:                 my $firstDisplayed = !$condensed && $multipart && $part eq "0";
                    644: 
1.69      bowersj2  645:                 # THIRD COL: Problem status icon
1.66      bowersj2  646:                 if ($curRes->is_problem() &&
                    647:                     !$firstDisplayed) {
                    648:                     my $icon = $statusIconMap{$curRes->status($part)};
1.69      bowersj2  649:                     my $alt = $iconAltTags{$icon};
1.66      bowersj2  650:                     if ($icon) {
1.84      bowersj2  651:                         $r->print("<td width=\"30\" valign=\"center\" width=\"50\" align=\"right\">$linkopen<img width=\"25\" height=\"25\" src=\"/adm/lonIcons/$icon\" border=\"0\" alt=\"$alt\" />$linkclose</td>\n");
1.66      bowersj2  652:                     } else {
1.84      bowersj2  653:                         $r->print("<td width=\"30\">&nbsp;</td>\n");
1.66      bowersj2  654:                     }
                    655:                 } else { # not problem, no icon
1.84      bowersj2  656:                     $r->print("<td width=\"30\">&nbsp;</td>\n");
1.66      bowersj2  657:                 }
                    658: 
1.69      bowersj2  659:                 # FOURTH COL: Text description
1.86      bowersj2  660:                 $r->print("<td align=\"right\" valign=\"center\">\n");
1.51      bowersj2  661:                 
1.61      bowersj2  662:                 if ($curRes->kind() eq "res" &&
                    663:                     $curRes->is_problem() &&
1.66      bowersj2  664:                     !$firstDisplayed) {
1.86      bowersj2  665:                     $r->print ("<font color=\"$color\"><b>") if ($color);
1.53      bowersj2  666:                     $r->print (getDescription($curRes, $part));
1.86      bowersj2  667:                     $r->print ("</b></font>") if ($color);
1.51      bowersj2  668:                 }
1.68      bowersj2  669:                 if ($curRes->is_map() && advancedUser() && $curRes->randompick()) {
                    670:                     $r->print('(randomly select ' . $curRes->randompick() .')');
                    671:                 }
1.59      bowersj2  672: 
1.84      bowersj2  673:                 $r->print("&nbsp;</td></tr>\n");
1.113     bowersj2  674: 
                    675:                 if (!($counter % 20)) { $r->rflush(); }
                    676:                 if ($counter == 2) { $r->rflush(); }
1.51      bowersj2  677:             }
                    678:         }
                    679:         $curRes = $mapIterator->next();
                    680:     }
                    681: 
1.118     bowersj2  682:     $r->print("</table>");
                    683: 
                    684:     # Print out the part that jumps to #curloc if it exists
                    685:     if ($displayedJumpMarker) {
                    686:         $r->print('<script>location += "#curloc";</script>');
                    687:     }
                    688: 
                    689:     $r->print("</body></html>");
1.51      bowersj2  690: 
1.59      bowersj2  691:     $navmap->untieHashes();
                    692: 
1.51      bowersj2  693:     return OK;
                    694: }
                    695: 
                    696: # Convenience functions: Returns a string that adds or subtracts
                    697: # the second argument from the first hash, appropriate for the 
                    698: # query string that determines which folders to recurse on
                    699: sub addToFilter {
                    700:     my $hashIn = shift;
                    701:     my $addition = shift;
                    702:     my %hash = %$hashIn;
                    703:     $hash{$addition} = 1;
                    704: 
                    705:     return join (",", keys(%hash));
                    706: }
                    707: 
                    708: sub removeFromFilter {
                    709:     my $hashIn = shift;
                    710:     my $subtraction = shift;
                    711:     my %hash = %$hashIn;
                    712: 
                    713:     delete $hash{$subtraction};
                    714:     return join(",", keys(%hash));
                    715: }
                    716: 
                    717: # Convenience function: Given a stack returned from getStack on the iterator,
                    718: # return the correct src() value.
                    719: # Later, this should add an anchor when we start putting anchors in pages.
                    720: sub getLinkForResource {
                    721:     my $stack = shift;
                    722:     my $res;
                    723: 
                    724:     # Check to see if there are any pages in the stack
                    725:     foreach $res (@$stack) {
                    726:         if (defined($res) && $res->is_page()) {
                    727:             return $res->src();
                    728:         }
                    729:     }
                    730: 
                    731:     # Failing that, return the src of the last resource that is defined
                    732:     # (when we first recurse on a map, it puts an undefined resource
                    733:     # on the bottom because $self->{HERE} isn't defined yet, and we
                    734:     # want the src for the map anyhow)
                    735:     foreach (@$stack) {
                    736:         if (defined($_)) { $res = $_; }
                    737:     }
                    738: 
                    739:     return $res->src();
                    740: }
                    741: 
1.53      bowersj2  742: # Convenience function: This seperates the logic of how to create
                    743: # the problem text strings ("Due: DATE", "Open: DATE", "Not yet assigned",
                    744: # etc.) into a seperate function. It takes a resource object as the
                    745: # first parameter, and the part number of the resource as the second.
                    746: # It's basically a big switch statement on the status of the resource.
                    747: 
                    748: sub getDescription {
                    749:     my $res = shift;
                    750:     my $part = shift;
1.69      bowersj2  751:     my $status = $res->status($part);
1.53      bowersj2  752: 
                    753:     if ($status == $res->NETWORK_FAILURE) { return ""; }
                    754:     if ($status == $res->NOTHING_SET) {
                    755:         return "Not currently assigned.";
                    756:     }
                    757:     if ($status == $res->OPEN_LATER) {
1.73      bowersj2  758:         return "Open " . timeToHumanString($res->opendate($part));
1.53      bowersj2  759:     }
                    760:     if ($status == $res->OPEN) {
1.79      bowersj2  761:         if ($res->duedate($part)) {
1.73      bowersj2  762:             return "Due " . timeToHumanString($res->duedate($part));
1.66      bowersj2  763:         } else {
                    764:             return "Open, no due date";
                    765:         }
1.53      bowersj2  766:     }
1.54      bowersj2  767:     if ($status == $res->PAST_DUE_ANSWER_LATER) {
1.73      bowersj2  768:         return "Answer open " . timeToHumanString($res->answerdate($part));
1.54      bowersj2  769:     }
                    770:     if ($status == $res->PAST_DUE_NO_ANSWER) {
1.73      bowersj2  771:         return "Was due " . timeToHumanString($res->duedate($part));
1.53      bowersj2  772:     }
                    773:     if ($status == $res->ANSWER_OPEN) {
                    774:         return "Answer available";
                    775:     }
1.59      bowersj2  776:     if ($status == $res->EXCUSED) {
1.66      bowersj2  777:         return "Excused by instructor";
1.59      bowersj2  778:     }
1.69      bowersj2  779:     if ($status == $res->ATTEMPTED) {
                    780:         return "Not yet graded.";
                    781:     }
1.59      bowersj2  782:     if ($status == $res->TRIES_LEFT) {
1.79      bowersj2  783:         my $tries = $res->tries($part);
                    784:         my $maxtries = $res->maxtries($part);
                    785:         my $triesString = "";
                    786:         if ($tries && $maxtries) {
                    787:             $triesString = "<font size=\"-1\"><i>($tries of $maxtries tries used)</i></font>";
                    788:             if ($maxtries > 1 && $maxtries - $tries == 1) {
                    789:                 $triesString = "<b>$triesString</b>";
                    790:             }
                    791:         }
1.66      bowersj2  792:         if ($res->duedate()) {
1.73      bowersj2  793:             return "Due " . timeToHumanString($res->duedate($part)) .
1.66      bowersj2  794:                 " $triesString";
                    795:         } else {
                    796:             return "No due date $triesString";
                    797:         }
1.59      bowersj2  798:     }
1.53      bowersj2  799: }
                    800: 
1.115     bowersj2  801: # Convenience function, so others can use it: Is the problem due in less then
                    802: # 24 hours, and still can be done?
                    803: 
                    804: sub dueInLessThen24Hours {
                    805:     my $res = shift;
                    806:     my $part = shift;
                    807:     my $status = $res->status($part);
                    808: 
                    809:     return ($status == $res->OPEN() || $status == $res->ATTEMPTED() ||
                    810:             $status == $res->TRIES_LEFT()) &&
                    811:            $res->duedate() && $res->duedate() < time()+(24*60*60) &&
                    812:            $res->duedate() > time();
                    813: }
                    814: 
                    815: # Convenience function, so others can use it: Is there only one try remaining for the
                    816: # part, with more then one try to begin with, not due yet and still can be done?
                    817: sub lastTry {
                    818:     my $res = shift;
                    819:     my $part = shift;
                    820: 
                    821:     my $tries = $res->tries($part);
                    822:     my $maxtries = $res->maxtries($part);
                    823:     return $tries && $maxtries && $maxtries > 1 &&
                    824:         $maxtries - $tries == 1 && $res->duedate() &&
                    825:         $res->duedate() > time();
                    826: }
                    827: 
1.101     bowersj2  828: # This puts a human-readable name on the ENV variable.
1.68      bowersj2  829: sub advancedUser {
                    830:     return $ENV{'user.adv'};
                    831: }
                    832: 
1.73      bowersj2  833: 
                    834: # timeToHumanString takes a time number and converts it to a
                    835: # human-readable representation, meant to be used in the following
                    836: # manner:
                    837: # print "Due $timestring"
                    838: # print "Open $timestring"
                    839: # print "Answer available $timestring"
                    840: # Very, very, very, VERY English-only... goodness help a localizer on
                    841: # this func...
1.53      bowersj2  842: sub timeToHumanString {
1.58      albertel  843:     my ($time) = @_;
                    844:     # zero, '0' and blank are bad times
1.73      bowersj2  845:     if (!$time) {
                    846:         return 'never';
                    847:     }
                    848: 
                    849:     my $now = time();
                    850: 
                    851:     my @time = localtime($time);
                    852:     my @now = localtime($now);
                    853: 
                    854:     # Positive = future
                    855:     my $delta = $time - $now;
                    856: 
                    857:     my $minute = 60;
                    858:     my $hour = 60 * $minute;
                    859:     my $day = 24 * $hour;
                    860:     my $week = 7 * $day;
                    861:     my $inPast = 0;
                    862: 
                    863:     # Logic in comments:
                    864:     # Is it now? (extremely unlikely)
                    865:     if ( $delta == 0 ) {
                    866:         return "this instant";
                    867:     }
                    868: 
                    869:     if ($delta < 0) {
                    870:         $inPast = 1;
                    871:         $delta = -$delta;
                    872:     }
                    873: 
                    874:     if ( $delta > 0 ) {
1.101     bowersj2  875: 
1.73      bowersj2  876:         my $tense = $inPast ? " ago" : "";
                    877:         my $prefix = $inPast ? "" : "in ";
1.101     bowersj2  878:         
                    879:         # Less then a minute
1.73      bowersj2  880:         if ( $delta < $minute ) {
                    881:             if ($delta == 1) { return "${prefix}1 second$tense"; }
                    882:             return "$prefix$delta seconds$tense";
                    883:         }
                    884: 
1.101     bowersj2  885:         # Less then an hour
1.73      bowersj2  886:         if ( $delta < $hour ) {
                    887:             # If so, use minutes
                    888:             my $minutes = floor($delta / 60);
                    889:             if ($minutes == 1) { return "${prefix}1 minute$tense"; }
                    890:             return "$prefix$minutes minutes$tense";
                    891:         }
                    892:         
                    893:         # Is it less then 24 hours away? If so,
                    894:         # display hours + minutes
                    895:         if ( $delta < $hour * 24) {
                    896:             my $hours = floor($delta / $hour);
                    897:             my $minutes = floor(($delta % $hour) / $minute);
                    898:             my $hourString = "$hours hours";
                    899:             my $minuteString = ", $minutes minutes";
                    900:             if ($hours == 1) {
                    901:                 $hourString = "1 hour";
                    902:             }
                    903:             if ($minutes == 1) {
                    904:                 $minuteString = ", 1 minute";
                    905:             }
                    906:             if ($minutes == 0) {
                    907:                 $minuteString = "";
                    908:             }
                    909:             return "$prefix$hourString$minuteString$tense";
                    910:         }
                    911: 
                    912:         # Less then 5 days away, display day of the week and
                    913:         # HH:MM
                    914:         if ( $delta < $day * 5 ) {
1.85      bowersj2  915:             my $timeStr = strftime("%A, %b %e at %I:%M %P", localtime($time));
1.73      bowersj2  916:             $timeStr =~ s/12:00 am/midnight/;
                    917:             $timeStr =~ s/12:00 pm/noon/;
                    918:             return ($inPast ? "last " : "next ") .
                    919:                 $timeStr;
                    920:         }
                    921:         
                    922:         # Is it this year?
                    923:         if ( $time[5] == $now[5]) {
                    924:             # Return on Month Day, HH:MM meridian
                    925:             my $timeStr = strftime("on %A, %b %e at %I:%M %P", localtime($time));
                    926:             $timeStr =~ s/12:00 am/midnight/;
                    927:             $timeStr =~ s/12:00 pm/noon/;
                    928:             return $timeStr;
                    929:         }
                    930: 
                    931:         # Not this year, so show the year
                    932:         my $timeStr = strftime("on %A, %b %e %G at %I:%M %P", localtime($time));
                    933:         $timeStr =~ s/12:00 am/midnight/;
                    934:         $timeStr =~ s/12:00 pm/noon/;
                    935:         return $timeStr;
1.58      albertel  936:     }
1.53      bowersj2  937: }
                    938: 
1.51      bowersj2  939: 1;
                    940: 
                    941: package Apache::lonnavmaps::navmap;
                    942: 
                    943: =pod
                    944: 
                    945: 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.
                    946: 
                    947: =head1 navmap object: Encapsulating the compiled nav map
                    948: 
                    949: navmap is an object that encapsulates a compiled course map and provides a reasonable interface to it.
                    950: 
                    951: 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.
                    952: 
                    953: You must obtain resource objects through the navmap object.
                    954: 
                    955: =head2 Methods
                    956: 
                    957: =over 4
                    958: 
1.70      bowersj2  959: =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  960: 
                    961: =item * B<getIterator>(first, finish, filter, condition): See iterator documentation below.
                    962: 
                    963: =cut
                    964: 
                    965: use strict;
                    966: use GDBM_File;
                    967: 
                    968: sub new {
                    969:     # magic invocation to create a class instance
                    970:     my $proto = shift;
                    971:     my $class = ref($proto) || $proto;
                    972:     my $self = {};
                    973: 
                    974:     $self->{NAV_HASH_FILE} = shift;
                    975:     $self->{PARM_HASH_FILE} = shift;
                    976:     $self->{GENERATE_COURSE_USER_OPT} = shift;
1.55      bowersj2  977:     $self->{GENERATE_EMAIL_DISCUSS_STATUS} = shift;
1.51      bowersj2  978: 
1.101     bowersj2  979:     # Resource cache stores navmap resources as we reference them. We generate
1.51      bowersj2  980:     # them on-demand so we don't pay for creating resources unless we use them.
                    981:     $self->{RESOURCE_CACHE} = {};
                    982: 
                    983:     # Network failure flag, if we accessed the course or user opt and
                    984:     # failed
                    985:     $self->{NETWORK_FAILURE} = 0;
                    986: 
                    987:     # tie the nav hash
                    988:     my %navmaphash;
                    989:     if (!(tie(%navmaphash, 'GDBM_File', $self->{NAV_HASH_FILE},
                    990:               &GDBM_READER(), 0640))) {
                    991:         return undef;
                    992:     }
                    993:     
                    994:     my %parmhash;
                    995:     if (!(tie(%parmhash, 'GDBM_File', $self->{PARM_HASH_FILE},
                    996:               &GDBM_READER(), 0640)))
                    997:     {
1.66      bowersj2  998:         untie $self->{PARM_HASH};
1.51      bowersj2  999:         return undef;
                   1000:     }
1.115     bowersj2 1001: 
1.123     bowersj2 1002:     $self->{NAV_HASH} = \%navmaphash;
                   1003:     $self->{PARM_HASH} = \%parmhash;
1.51      bowersj2 1004: 
1.92      bowersj2 1005:     bless($self);
1.115     bowersj2 1006:     $self->untieHashes();
1.92      bowersj2 1007:         
                   1008:     return $self;
                   1009: }
                   1010: 
                   1011: sub init {
1.93      bowersj2 1012:     my $self = shift;
1.92      bowersj2 1013: 
1.51      bowersj2 1014:     # If the course opt hash and the user opt hash should be generated,
                   1015:     # generate them
                   1016:     if ($self->{GENERATE_COURSE_USER_OPT}) {
                   1017:         my $uname=$ENV{'user.name'};
                   1018:         my $udom=$ENV{'user.domain'};
                   1019:         my $uhome=$ENV{'user.home'};
                   1020:         my $cid=$ENV{'request.course.id'};
                   1021:         my $chome=$ENV{'course.'.$cid.'.home'};
                   1022:         my ($cdom,$cnum)=split(/\_/,$cid);
                   1023:         
                   1024:         my $userprefix=$uname.'_'.$udom.'_';
                   1025:         
1.99      bowersj2 1026:         my %courserdatas; my %useropt; my %courseopt; my %userrdatas;
1.51      bowersj2 1027:         unless ($uhome eq 'no_host') { 
                   1028: # ------------------------------------------------- Get coursedata (if present)
                   1029:             unless ((time-$courserdatas{$cid.'.last_cache'})<240) {
                   1030:                 my $reply=&Apache::lonnet::reply('dump:'.$cdom.':'.$cnum.
                   1031:                                                  ':resourcedata',$chome);
                   1032:                 if ($reply!~/^error\:/) {
                   1033:                     $courserdatas{$cid}=$reply;
                   1034:                     $courserdatas{$cid.'.last_cache'}=time;
                   1035:                 }
                   1036:                 # check to see if network failed
                   1037:                 elsif ( $reply=~/no.such.host/i || $reply=~/con.*lost/i )
                   1038:                 {
                   1039:                     $self->{NETWORK_FAILURE} = 1;
                   1040:                 }
                   1041:             }
                   1042:             foreach (split(/\&/,$courserdatas{$cid})) {
                   1043:                 my ($name,$value)=split(/\=/,$_);
                   1044:                 $courseopt{$userprefix.&Apache::lonnet::unescape($name)}=
                   1045:                     &Apache::lonnet::unescape($value);
                   1046:             }
                   1047: # --------------------------------------------------- Get userdata (if present)
                   1048:             unless ((time-$userrdatas{$uname.'___'.$udom.'.last_cache'})<240) {
                   1049:                 my $reply=&Apache::lonnet::reply('dump:'.$udom.':'.$uname.':resourcedata',$uhome);
                   1050:                 if ($reply!~/^error\:/) {
                   1051:                     $userrdatas{$uname.'___'.$udom}=$reply;
                   1052:                     $userrdatas{$uname.'___'.$udom.'.last_cache'}=time;
                   1053:                 }
                   1054:                 # check to see if network failed
                   1055:                 elsif ( $reply=~/no.such.host/i || $reply=~/con.*lost/i )
                   1056:                 {
                   1057:                     $self->{NETWORK_FAILURE} = 1;
                   1058:                 }
                   1059:             }
                   1060:             foreach (split(/\&/,$userrdatas{$uname.'___'.$udom})) {
                   1061:                 my ($name,$value)=split(/\=/,$_);
                   1062:                 $useropt{$userprefix.&Apache::lonnet::unescape($name)}=
                   1063:                     &Apache::lonnet::unescape($value);
                   1064:             }
1.55      bowersj2 1065:             $self->{COURSE_OPT} = \%courseopt;
                   1066:             $self->{USER_OPT} = \%useropt;
1.51      bowersj2 1067:         }
                   1068:     }   
                   1069: 
1.55      bowersj2 1070:     if ($self->{GENERATE_EMAIL_DISCUSS_STATUS}) {
                   1071:         my $cid=$ENV{'request.course.id'};
                   1072:         my ($cdom,$cnum)=split(/\_/,$cid);
                   1073:         
                   1074:         my %emailstatus = &Apache::lonnet::dump('email_status');
1.56      bowersj2 1075:         my $logoutTime = $emailstatus{'logout'};
                   1076:         my $courseLeaveTime = $emailstatus{'logout_'.$ENV{'request.course.id'}};
1.124   ! bowersj2 1077:         $self->{LAST_CHECK} = ($courseLeaveTime < $logoutTime ?
1.55      bowersj2 1078:                                $courseLeaveTime : $logoutTime);
1.56      bowersj2 1079:         my %discussiontime = &Apache::lonnet::dump('discussiontimes', 
1.55      bowersj2 1080:                                                    $cdom, $cnum);
                   1081:         my %feedback=();
                   1082:         my %error=();
                   1083:         my $keys = &Apache::lonnet::reply('keys:'.
                   1084:                                           $ENV{'user.domain'}.':'.
                   1085:                                           $ENV{'user.name'}.':nohist_email',
                   1086:                                           $ENV{'user.home'});
                   1087: 
                   1088:         foreach my $msgid (split(/\&/, $keys)) {
                   1089:             $msgid=&Apache::lonnet::unescape($msgid);
                   1090:             my $plain=&Apache::lonnet::unescape(&Apache::lonnet::unescape($msgid));
                   1091:             if ($plain=~/(Error|Feedback) \[([^\]]+)\]/) {
                   1092:                 my ($what,$url)=($1,$2);
                   1093:                 my %status=
                   1094:                     &Apache::lonnet::get('email_status',[$msgid]);
                   1095:                 if ($status{$msgid}=~/^error\:/) { 
                   1096:                     $status{$msgid}=''; 
                   1097:                 }
                   1098:                 
                   1099:                 if (($status{$msgid} eq 'new') || 
                   1100:                     (!$status{$msgid})) { 
                   1101:                     if ($what eq 'Error') {
                   1102:                         $error{$url}.=','.$msgid; 
                   1103:                     } else {
                   1104:                         $feedback{$url}.=','.$msgid;
                   1105:                     }
                   1106:                 }
                   1107:             }
                   1108:         }
                   1109:         
                   1110:         $self->{FEEDBACK} = \%feedback;
                   1111:         $self->{ERROR_MSG} = \%error; # what is this? JB
                   1112:         $self->{DISCUSSION_TIME} = \%discussiontime;
                   1113:         $self->{EMAIL_STATUS} = \%emailstatus;
                   1114:         
                   1115:     }    
1.84      bowersj2 1116: 
                   1117:     $self->{PARM_CACHE} = {};
1.55      bowersj2 1118: }
1.51      bowersj2 1119: 
1.115     bowersj2 1120: # Internal function: Takes a key to look up in the nav hash and implements internal
                   1121: # memory caching of that key.
                   1122: sub navhash {
                   1123:     my $self = shift; my $key = shift;
                   1124:     return $self->{NAV_HASH}->{$key};
                   1125: }
                   1126: 
1.55      bowersj2 1127: # Checks to see if coursemap is defined, matching test in old lonnavmaps
                   1128: sub courseMapDefined {
                   1129:     my $self = shift;
                   1130:     my $uri = &Apache::lonnet::clutter($ENV{'request.course.uri'});
                   1131: 
1.115     bowersj2 1132:     my $firstres = $self->navhash("map_start_$uri");
                   1133:     my $lastres = $self->navhash("map_finish_$uri");
1.55      bowersj2 1134:     return $firstres && $lastres;
1.51      bowersj2 1135: }
                   1136: 
                   1137: sub getIterator {
                   1138:     my $self = shift;
1.98      bowersj2 1139:     my $iterator = Apache::lonnavmaps::iterator->new($self, shift, shift,
1.101     bowersj2 1140:                                                      shift, undef, shift);
1.51      bowersj2 1141:     return $iterator;
                   1142: }
                   1143: 
                   1144: # unties the hash when done
                   1145: sub untieHashes {
                   1146:     my $self = shift;
1.60      bowersj2 1147:     untie %{$self->{NAV_HASH}} if ($self->{HASH_TIED});
                   1148:     untie %{$self->{PARM_HASH}} if ($self->{HASH_TIED});
1.51      bowersj2 1149:     $self->{HASH_TIED} = 0;
                   1150: }
                   1151: 
                   1152: # when the object is destroyed, be sure to untie all the hashes we tied.
                   1153: sub DESTROY {
                   1154:     my $self = shift;
                   1155:     $self->untieHashes();
                   1156: }
                   1157: 
1.124   ! bowersj2 1158: # Does the given resource (as a symb string) have
1.59      bowersj2 1159: # current discussion? Returns 0 if chat/mail data not extracted.
                   1160: sub hasDiscussion {
                   1161:     my $self = shift;
                   1162:     my $symb = shift;
                   1163:     if (!defined($self->{DISCUSSION_TIME})) { return 0; }
                   1164: 
1.124   ! bowersj2 1165:     #return defined($self->{DISCUSSION_TIME}->{$symb});
1.59      bowersj2 1166:     return $self->{DISCUSSION_TIME}->{$symb} >
1.66      bowersj2 1167:            $self->{LAST_CHECK};
1.59      bowersj2 1168: }
                   1169: 
1.124   ! bowersj2 1170: # Does the given resource (as a symb string) have
1.59      bowersj2 1171: # current feedback? Returns the string in the feedback hash, which
                   1172: # will be false if it does not exist.
                   1173: sub getFeedback { 
                   1174:     my $self = shift;
                   1175:     my $symb = shift;
                   1176: 
                   1177:     if (!defined($self->{FEEDBACK})) { return ""; }
                   1178:     
                   1179:     return $self->{FEEDBACK}->{$symb};
                   1180: }
                   1181: 
1.124   ! bowersj2 1182: sub getErrors { 
        !          1183:     my $self = shift;
        !          1184:     my $src = shift;
        !          1185:     
        !          1186:     if (!defined($self->{ERROR_MSG})) { return ""; }
        !          1187:     return $self->{ERROR_MSG}->{$src};
        !          1188: }
        !          1189: 
1.51      bowersj2 1190: =pod
                   1191: 
                   1192: =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.
                   1193: 
                   1194: =cut
                   1195: 
                   1196: # The strategy here is to cache the resource objects, and only construct them
                   1197: # as we use them. The real point is to prevent reading any more from the tied
                   1198: # hash then we have to, which should hopefully alleviate speed problems.
                   1199: # Caching is just an incidental detail I throw in because it makes sense.
                   1200: 
                   1201: sub getById {
                   1202:     my $self = shift;
                   1203:     my $id = shift;
                   1204: 
                   1205:     if (defined ($self->{RESOURCE_CACHE}->{$id}))
                   1206:     {
                   1207:         return $self->{RESOURCE_CACHE}->{$id};
                   1208:     }
                   1209: 
                   1210:     # resource handles inserting itself into cache.
                   1211:     return Apache::lonnavmaps::resource->new($self, $id);
                   1212: }
                   1213: 
                   1214: =pod
                   1215: 
                   1216: =item * B<firstResource>(): Returns a resource object reference corresponding to the first resource in the navmap.
                   1217: 
                   1218: =cut
                   1219: 
                   1220: sub firstResource {
                   1221:     my $self = shift;
1.115     bowersj2 1222:     my $firstResource = $self->navhash('map_start_' .
                   1223:                      &Apache::lonnet::clutter($ENV{'request.course.uri'}));
1.51      bowersj2 1224:     return $self->getById($firstResource);
                   1225: }
                   1226: 
                   1227: =pod
                   1228: 
                   1229: =item * B<finishResource>(): Returns a resource object reference corresponding to the last resource in the navmap.
                   1230: 
                   1231: =cut
                   1232: 
                   1233: sub finishResource {
                   1234:     my $self = shift;
1.115     bowersj2 1235:     my $firstResource = $self->navhash('map_finish_' .
                   1236:                      &Apache::lonnet::clutter($ENV{'request.course.uri'}));
1.51      bowersj2 1237:     return $self->getById($firstResource);
                   1238: }
                   1239: 
1.101     bowersj2 1240: # Parmval reads the parm hash and cascades the lookups. parmval_real does
                   1241: # the actual lookup; parmval caches the results.
1.51      bowersj2 1242: sub parmval {
                   1243:     my $self = shift;
                   1244:     my ($what,$symb)=@_;
1.84      bowersj2 1245:     my $hashkey = $what."|||".$symb;
                   1246: 
                   1247:     if (defined($self->{PARM_CACHE}->{$hashkey})) {
                   1248:         return $self->{PARM_CACHE}->{$hashkey};
                   1249:     }
                   1250: 
                   1251:     my $result = $self->parmval_real($what, $symb);
                   1252:     $self->{PARM_CACHE}->{$hashkey} = $result;
                   1253:     return $result;
                   1254: }
                   1255: 
                   1256: sub parmval_real {
                   1257:     my $self = shift;
                   1258:     my ($what,$symb) = @_;
                   1259: 
1.51      bowersj2 1260:     my $cid=$ENV{'request.course.id'};
                   1261:     my $csec=$ENV{'request.course.sec'};
                   1262:     my $uname=$ENV{'user.name'};
                   1263:     my $udom=$ENV{'user.domain'};
                   1264: 
                   1265:     unless ($symb) { return ''; }
                   1266:     my $result='';
                   1267: 
                   1268:     my ($mapname,$id,$fn)=split(/\_\_\_/,$symb);
                   1269: 
                   1270: # ----------------------------------------------------- Cascading lookup scheme
                   1271:     my $rwhat=$what;
                   1272:     $what=~s/^parameter\_//;
                   1273:     $what=~s/\_/\./;
                   1274: 
                   1275:     my $symbparm=$symb.'.'.$what;
                   1276:     my $mapparm=$mapname.'___(all).'.$what;
                   1277:     my $usercourseprefix=$uname.'_'.$udom.'_'.$cid;
                   1278: 
                   1279:     my $seclevel= $usercourseprefix.'.['.$csec.'].'.$what;
                   1280:     my $seclevelr=$usercourseprefix.'.['.$csec.'].'.$symbparm;
                   1281:     my $seclevelm=$usercourseprefix.'.['.$csec.'].'.$mapparm;
                   1282: 
                   1283:     my $courselevel= $usercourseprefix.'.'.$what;
                   1284:     my $courselevelr=$usercourseprefix.'.'.$symbparm;
                   1285:     my $courselevelm=$usercourseprefix.'.'.$mapparm;
                   1286: 
                   1287:     my $useropt = $self->{USER_OPT};
                   1288:     my $courseopt = $self->{COURSE_OPT};
                   1289:     my $parmhash = $self->{PARM_HASH};
                   1290: 
                   1291: # ---------------------------------------------------------- first, check user
                   1292:     if ($uname and defined($useropt)) {
1.57      albertel 1293:         if (defined($$useropt{$courselevelr})) { return $$useropt{$courselevelr}; }
                   1294:         if (defined($$useropt{$courselevelm})) { return $$useropt{$courselevelm}; }
                   1295:         if (defined($$useropt{$courselevel})) { return $$useropt{$courselevel}; }
1.51      bowersj2 1296:     }
                   1297: 
                   1298: # ------------------------------------------------------- second, check course
                   1299:     if ($csec and defined($courseopt)) {
1.57      albertel 1300:         if (defined($$courseopt{$seclevelr})) { return $$courseopt{$seclevelr}; }
                   1301:         if (defined($$courseopt{$seclevelm})) { return $$courseopt{$seclevelm}; }
                   1302:         if (defined($$courseopt{$seclevel})) { return $$courseopt{$seclevel}; }
1.51      bowersj2 1303:     }
                   1304: 
                   1305:     if (defined($courseopt)) {
1.57      albertel 1306:         if (defined($$courseopt{$courselevelr})) { return $$courseopt{$courselevelr}; }
                   1307:         if (defined($$courseopt{$courselevelm})) { return $$courseopt{$courselevelm}; }
                   1308:         if (defined($$courseopt{$courselevel})) { return $$courseopt{$courselevel}; }
1.51      bowersj2 1309:     }
                   1310: 
                   1311: # ----------------------------------------------------- third, check map parms
                   1312: 
                   1313:     my $thisparm=$$parmhash{$symbparm};
1.57      albertel 1314:     if (defined($thisparm)) { return $thisparm; }
1.51      bowersj2 1315: 
                   1316: # ----------------------------------------------------- fourth , check default
                   1317: 
                   1318:     my $default=&Apache::lonnet::metadata($fn,$rwhat.'.default');
1.57      albertel 1319:     if (defined($default)) { return $default}
1.51      bowersj2 1320: 
                   1321: # --------------------------------------------------- fifth , cascade up parts
                   1322: 
                   1323:     my ($space,@qualifier)=split(/\./,$rwhat);
                   1324:     my $qualifier=join('.',@qualifier);
                   1325:     unless ($space eq '0') {
                   1326:         my ($part,$id)=split(/\_/,$space);
                   1327:         if ($id) {
                   1328:             my $partgeneral=$self->parmval($part.".$qualifier",$symb);
1.57      albertel 1329:             if (defined($partgeneral)) { return $partgeneral; }
1.51      bowersj2 1330:         } else {
                   1331:             my $resourcegeneral=$self->parmval("0.$qualifier",$symb);
1.57      albertel 1332:             if (defined($resourcegeneral)) { return $resourcegeneral; }
1.51      bowersj2 1333:         }
                   1334:     }
                   1335:     return '';
                   1336: }
                   1337: 
                   1338: 
                   1339: 1;
                   1340: 
                   1341: package Apache::lonnavmaps::iterator;
                   1342: 
                   1343: =pod
                   1344: 
                   1345: =back
                   1346: 
                   1347: =head1 navmap Iterator
                   1348: 
                   1349: 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.
                   1350: 
                   1351: 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:
                   1352: 
                   1353: C<my $resourceIterator = $navmap-E<gt>getIterator();>
                   1354: 
                   1355: To get the next thing from the iterator, call B<next>:
                   1356: 
                   1357: C<my $nextThing = $resourceIterator-E<gt>next()>
                   1358: 
                   1359: getIterator behaves as follows:
                   1360: 
                   1361: =over 4
                   1362: 
1.116     bowersj2 1363: =item * B<getIterator>(firstResource, finishResource, filterHash, condition, forceTop): 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. forceTop is a boolean value. If it is false (default), the iterator will only return the first level of map that is not just a single, 'redirecting' map. If true, the iterator will return all information, starting with the top-level map, regardless of content.
1.51      bowersj2 1364: 
1.101     bowersj2 1365: Thus, by default, only top-level resources will be shown. Change the condition to a 1 without changing the hash, and all resources will be shown. Changing the condition to 1 and including some values in the hash will allow you to selectively suppress parts of the navmap, while leaving it on 0 and adding things to the hash will allow you to selectively add parts of the nav map. See the handler code for examples.
1.51      bowersj2 1366: 
                   1367: 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:
                   1368: 
                   1369: =over 4
                   1370: 
1.70      bowersj2 1371: =item * BEGIN_MAP: A new map is being recursed into. This is returned I<after> the map resource itself is returned.
                   1372: 
                   1373: =item * END_MAP: The map is now done.
                   1374: 
                   1375: =item * BEGIN_BRANCH: A branch is now starting. The next resource returned will be the first in that branch.
                   1376: 
                   1377: =item * END_BRANCH: The branch is now done.
1.51      bowersj2 1378: 
                   1379: =back
                   1380: 
1.70      bowersj2 1381: The tokens are retreivable via methods on the iterator object, i.e., $iterator->END_MAP.
                   1382: 
1.116     bowersj2 1383: Maps can contain empty resources. The iterator will automatically skip over such resources, but will still treat the structure correctly. Thus, a complicated map with several branches, but consisting entirely of empty resources except for one beginning or ending resource, will cause a lot of BRANCH_STARTs and BRANCH_ENDs, but only one resource will be returned.
                   1384: 
1.70      bowersj2 1385: =back
1.51      bowersj2 1386: 
                   1387: =cut
                   1388: 
                   1389: # Here are the tokens for the iterator:
                   1390: 
                   1391: sub BEGIN_MAP { return 1; }    # begining of a new map
                   1392: sub END_MAP { return 2; }      # end of the map
                   1393: sub BEGIN_BRANCH { return 3; } # beginning of a branch
                   1394: sub END_BRANCH { return 4; }   # end of a branch
1.89      bowersj2 1395: sub FORWARD { return 1; }      # go forward
                   1396: sub BACKWARD { return 2; }
1.51      bowersj2 1397: 
1.96      bowersj2 1398: sub min {
                   1399:     (my $a, my $b) = @_;
                   1400:     if ($a < $b) { return $a; } else { return $b; }
                   1401: }
                   1402: 
1.107     bowersj2 1403: # In the CVS repository, documentation of this algorithm is included 
                   1404: # in /doc/lonnavdocs, as a PDF and .tex source. Markers like **1**
                   1405: # will reference the same location in the text as the part of the
                   1406: # algorithm is running through.
                   1407: 
1.94      bowersj2 1408: sub new {
                   1409:     # magic invocation to create a class instance
                   1410:     my $proto = shift;
                   1411:     my $class = ref($proto) || $proto;
                   1412:     my $self = {};
                   1413: 
                   1414:     $self->{NAV_MAP} = shift;
                   1415:     return undef unless ($self->{NAV_MAP});
                   1416: 
                   1417:     # Handle the parameters
                   1418:     $self->{FIRST_RESOURCE} = shift || $self->{NAV_MAP}->firstResource();
                   1419:     $self->{FINISH_RESOURCE} = shift || $self->{NAV_MAP}->finishResource();
                   1420: 
                   1421:     # If the given resources are just the ID of the resource, get the
                   1422:     # objects
                   1423:     if (!ref($self->{FIRST_RESOURCE})) { $self->{FIRST_RESOURCE} = 
                   1424:              $self->{NAV_MAP}->getById($self->{FIRST_RESOURCE}); }
                   1425:     if (!ref($self->{FINISH_RESOURCE})) { $self->{FINISH_RESOURCE} = 
                   1426:              $self->{NAV_MAP}->getById($self->{FINISH_RESOURCE}); }
                   1427: 
                   1428:     $self->{FILTER} = shift;
                   1429: 
                   1430:     # A hash, used as a set, of resource already seen
                   1431:     $self->{ALREADY_SEEN} = shift;
                   1432:     if (!defined($self->{ALREADY_SEEN})) { $self->{ALREADY_SEEN} = {} };
                   1433:     $self->{CONDITION} = shift;
                   1434: 
1.116     bowersj2 1435:     # Do we want to automatically follow "redirection" maps?
                   1436:     $self->{FORCE_TOP} = shift;
                   1437: 
1.94      bowersj2 1438:     # Now, we need to pre-process the map, by walking forward and backward
                   1439:     # over the parts of the map we're going to look at.
1.96      bowersj2 1440: 
1.97      bowersj2 1441:     # The processing steps are exactly the same, except for a few small 
                   1442:     # changes, so I bundle those up in the following list of two elements:
                   1443:     # (direction_to_iterate, VAL_name, next_resource_method_to_call,
                   1444:     # first_resource).
                   1445:     # This prevents writing nearly-identical code twice.
                   1446:     my @iterations = ( [FORWARD(), 'TOP_DOWN_VAL', 'getNext', 
                   1447:                         'FIRST_RESOURCE'],
                   1448:                        [BACKWARD(), 'BOT_UP_VAL', 'getPrevious', 
                   1449:                         'FINISH_RESOURCE'] );
                   1450: 
1.98      bowersj2 1451:     my $maxDepth = 0; # tracks max depth
                   1452: 
1.116     bowersj2 1453:     # If there is only one resource in this map, and it's a map, we
                   1454:     # want to remember that, so the user can ask for the first map
                   1455:     # that isn't just a redirector.
                   1456:     my $resource; my $resourceCount = 0;
                   1457: 
1.107     bowersj2 1458:     # **1**
                   1459: 
1.97      bowersj2 1460:     foreach my $pass (@iterations) {
                   1461:         my $direction = $pass->[0];
                   1462:         my $valName = $pass->[1];
                   1463:         my $nextResourceMethod = $pass->[2];
                   1464:         my $firstResourceName = $pass->[3];
                   1465: 
                   1466:         my $iterator = Apache::lonnavmaps::DFSiterator->new($self->{NAV_MAP}, 
                   1467:                                                             $self->{FIRST_RESOURCE},
                   1468:                                                             $self->{FINISH_RESOURCE},
                   1469:                                                             {}, undef, 0, $direction);
1.96      bowersj2 1470:     
1.97      bowersj2 1471:         # prime the recursion
                   1472:         $self->{$firstResourceName}->{DATA}->{$valName} = 0;
1.98      bowersj2 1473:         my $depth = 0;
1.97      bowersj2 1474:         $iterator->next();
                   1475:         my $curRes = $iterator->next();
1.98      bowersj2 1476:         while ($depth > -1) {
1.97      bowersj2 1477:             if ($curRes == $iterator->BEGIN_MAP()) { $depth++; }
                   1478:             if ($curRes == $iterator->END_MAP()) { $depth--; }
1.96      bowersj2 1479:         
1.97      bowersj2 1480:             if (ref($curRes)) {
1.116     bowersj2 1481:                 # If there's only one resource, this will save it
1.117     bowersj2 1482:                 # we have to filter empty resources from consideration here,
                   1483:                 # or even "empty", redirecting maps have two (start & finish)
                   1484:                 # or three (start, finish, plus redirector)
                   1485:                 if($direction == FORWARD && $curRes->src()) { 
                   1486:                     $resource = $curRes; $resourceCount++; 
                   1487:                 }
1.97      bowersj2 1488:                 my $resultingVal = $curRes->{DATA}->{$valName};
                   1489:                 my $nextResources = $curRes->$nextResourceMethod();
1.116     bowersj2 1490:                 my $nextCount = scalar(@{$nextResources});
1.104     bowersj2 1491: 
1.116     bowersj2 1492:                 if ($nextCount == 1) { # **3**
1.97      bowersj2 1493:                     my $current = $nextResources->[0]->{DATA}->{$valName} || 999999999;
                   1494:                     $nextResources->[0]->{DATA}->{$valName} = min($resultingVal, $current);
                   1495:                 }
                   1496:                 
1.116     bowersj2 1497:                 if ($nextCount > 1) { # **4**
1.97      bowersj2 1498:                     foreach my $res (@{$nextResources}) {
                   1499:                         my $current = $res->{DATA}->{$valName} || 999999999;
                   1500:                         $res->{DATA}->{$valName} = min($current, $resultingVal + 1);
                   1501:                     }
                   1502:                 }
                   1503:             }
1.96      bowersj2 1504:             
1.107     bowersj2 1505:             # Assign the final val (**2**)
1.97      bowersj2 1506:             if (ref($curRes) && $direction == BACKWARD()) {
1.98      bowersj2 1507:                 my $finalDepth = min($curRes->{DATA}->{TOP_DOWN_VAL},
                   1508:                                      $curRes->{DATA}->{BOT_UP_VAL});
                   1509:                 
                   1510:                 $curRes->{DATA}->{DISPLAY_DEPTH} = $finalDepth;
                   1511:                 if ($finalDepth > $maxDepth) {$maxDepth = $finalDepth;}
                   1512:                 }
1.97      bowersj2 1513:             $curRes = $iterator->next();
1.96      bowersj2 1514:         }
                   1515:     }
1.94      bowersj2 1516: 
1.116     bowersj2 1517:     # Check: Was this only one resource, a map?
                   1518:     if ($resourceCount == 1 && $resource->is_map() && !$self->{FORCE_TOP}) { 
                   1519:         my $firstResource = $resource->map_start();
                   1520:         my $finishResource = $resource->map_finish();
                   1521:         return 
                   1522:             Apache::lonnavmaps::iterator->new($self->{NAV_MAP}, $firstResource,
                   1523:                                               $finishResource, $self->{FILTER},
                   1524:                                               $self->{ALREADY_SEEN}, 
                   1525:                                               $self->{CONDITION}, 0);
                   1526:         
                   1527:     }
                   1528: 
1.98      bowersj2 1529:     # Set up some bookkeeping information.
                   1530:     $self->{CURRENT_DEPTH} = 0;
                   1531:     $self->{MAX_DEPTH} = $maxDepth;
                   1532:     $self->{STACK} = [];
                   1533:     $self->{RECURSIVE_ITERATOR_FLAG} = 0;
                   1534: 
                   1535:     for (my $i = 0; $i <= $self->{MAX_DEPTH}; $i++) {
                   1536:         push @{$self->{STACK}}, [];
                   1537:     }
                   1538: 
1.107     bowersj2 1539:     # Prime the recursion w/ the first resource **5**
1.98      bowersj2 1540:     push @{$self->{STACK}->[0]}, $self->{FIRST_RESOURCE};
                   1541:     $self->{ALREADY_SEEN}->{$self->{FIRST_RESOURCE}->{ID}} = 1;
                   1542: 
                   1543:     bless ($self);
                   1544: 
                   1545:     return $self;
                   1546: }
                   1547: 
                   1548: sub next {
                   1549:     my $self = shift;
                   1550: 
                   1551:     if ($self->{RECURSIVE_ITERATOR_FLAG}) {
                   1552:         # grab the next from the recursive iterator 
                   1553:         my $next = $self->{RECURSIVE_ITERATOR}->next();
                   1554: 
                   1555:         # is it a begin or end map? If so, update the depth
                   1556:         if ($next == BEGIN_MAP() ) { $self->{RECURSIVE_DEPTH}++; }
                   1557:         if ($next == END_MAP() ) { $self->{RECURSIVE_DEPTH}--; }
                   1558: 
                   1559:         # Are we back at depth 0? If so, stop recursing
                   1560:         if ($self->{RECURSIVE_DEPTH} == 0) {
                   1561:             $self->{RECURSIVE_ITERATOR_FLAG} = 0;
                   1562:         }
                   1563: 
                   1564:         return $next;
                   1565:     }
                   1566: 
                   1567:     if (defined($self->{FORCE_NEXT})) {
                   1568:         my $tmp = $self->{FORCE_NEXT};
                   1569:         $self->{FORCE_NEXT} = undef;
                   1570:         return $tmp;
                   1571:     }
                   1572: 
                   1573:     # Have we not yet begun? If not, return BEGIN_MAP and
                   1574:     # remember we've started.
                   1575:     if ( !$self->{STARTED} ) { 
                   1576:         $self->{STARTED} = 1;
                   1577:         return $self->BEGIN_MAP();
                   1578:     }
                   1579: 
                   1580:     # Here's the guts of the iterator.
                   1581:     
                   1582:     # Find the next resource, if any.
                   1583:     my $found = 0;
                   1584:     my $i = $self->{MAX_DEPTH};
                   1585:     my $newDepth;
                   1586:     my $here;
                   1587:     while ( $i >= 0 && !$found ) {
1.107     bowersj2 1588:         if ( scalar(@{$self->{STACK}->[$i]}) > 0 ) { # **6**
                   1589:             $here = pop @{$self->{STACK}->[$i]}; # **7**
1.98      bowersj2 1590:             $found = 1;
                   1591:             $newDepth = $i;
                   1592:         }
                   1593:         $i--;
                   1594:     }
                   1595: 
                   1596:     # If we still didn't find anything, we're done.
                   1597:     if ( !$found ) {
                   1598:         # We need to get back down to the correct branch depth
                   1599:         if ( $self->{CURRENT_DEPTH} > 0 ) {
                   1600:             $self->{CURRENT_DEPTH}--;
                   1601:             return END_BRANCH();
                   1602:         } else {
                   1603:             return END_MAP();
                   1604:         }
                   1605:     }
                   1606: 
1.104     bowersj2 1607:     # If this is not a resource, it must be an END_BRANCH marker we want
                   1608:     # to return directly.
1.107     bowersj2 1609:     if (!ref($here)) { # **8**
1.104     bowersj2 1610:         if ($here == END_BRANCH()) { # paranoia, in case of later extension
                   1611:             $self->{CURRENT_DEPTH}--;
                   1612:             return $here;
                   1613:         }
                   1614:     }
                   1615: 
                   1616:     # Otherwise, it is a resource and it's safe to store in $self->{HERE}
                   1617:     $self->{HERE} = $here;
                   1618: 
1.98      bowersj2 1619:     # Get to the right level
                   1620:     if ( $self->{CURRENT_DEPTH} > $newDepth ) {
                   1621:         push @{$self->{STACK}->[$newDepth]}, $here;
                   1622:         $self->{CURRENT_DEPTH}--;
                   1623:         return END_BRANCH();
                   1624:     }
                   1625:     if ( $self->{CURRENT_DEPTH} < $newDepth) {
                   1626:         push @{$self->{STACK}->[$newDepth]}, $here;
                   1627:         $self->{CURRENT_DEPTH}++;
                   1628:         return BEGIN_BRANCH();
                   1629:     }
                   1630: 
                   1631:     # If we made it here, we have the next resource, and we're at the
                   1632:     # right branch level. So let's examine the resource for where
                   1633:     # we can get to from here.
                   1634: 
                   1635:     # So we need to look at all the resources we can get to from here,
                   1636:     # categorize them if we haven't seen them, remember if we have a new
                   1637:     my $nextUnfiltered = $here->getNext();
1.104     bowersj2 1638:     my $maxDepthAdded = -1;
                   1639:     
1.98      bowersj2 1640:     for (@$nextUnfiltered) {
                   1641:         if (!defined($self->{ALREADY_SEEN}->{$_->{ID}})) {
1.104     bowersj2 1642:             my $depth = $_->{DATA}->{DISPLAY_DEPTH};
                   1643:             push @{$self->{STACK}->[$depth]}, $_;
1.98      bowersj2 1644:             $self->{ALREADY_SEEN}->{$_->{ID}} = 1;
1.104     bowersj2 1645:             if ($maxDepthAdded < $depth) { $maxDepthAdded = $depth; }
1.98      bowersj2 1646:         }
                   1647:     }
1.104     bowersj2 1648: 
                   1649:     # Is this the end of a branch? If so, all of the resources examined above
                   1650:     # led to lower levels then the one we are currently at, so we push a END_BRANCH
                   1651:     # marker onto the stack so we don't forget.
                   1652:     # Example: For the usual A(BC)(DE)F case, when the iterator goes down the
                   1653:     # BC branch and gets to C, it will see F as the only next resource, but it's
                   1654:     # one level lower. Thus, this is the end of the branch, since there are no
                   1655:     # more resources added to this level or above.
1.111     bowersj2 1656:     # We don't do this if the examined resource is the finish resource,
                   1657:     # because the condition given above is true, but the "END_MAP" will
                   1658:     # take care of things and we should already be at depth 0.
1.104     bowersj2 1659:     my $isEndOfBranch = $maxDepthAdded < $self->{CURRENT_DEPTH};
1.111     bowersj2 1660:     if ($isEndOfBranch && $here != $self->{FINISH_RESOURCE}) { # **9**
1.104     bowersj2 1661:         push @{$self->{STACK}->[$self->{CURRENT_DEPTH}]}, END_BRANCH();
                   1662:     }
                   1663: 
1.98      bowersj2 1664:     # That ends the main iterator logic. Now, do we want to recurse
                   1665:     # down this map (if this resource is a map)?
                   1666:     if ($self->{HERE}->is_map() &&
                   1667:         (defined($self->{FILTER}->{$self->{HERE}->map_pc()}) xor $self->{CONDITION})) {
                   1668:         $self->{RECURSIVE_ITERATOR_FLAG} = 1;
                   1669:         my $firstResource = $self->{HERE}->map_start();
                   1670:         my $finishResource = $self->{HERE}->map_finish();
                   1671: 
                   1672:         $self->{RECURSIVE_ITERATOR} = 
                   1673:             Apache::lonnavmaps::iterator->new($self->{NAV_MAP}, $firstResource,
                   1674:                                               $finishResource, $self->{FILTER},
                   1675:                                               $self->{ALREADY_SEEN}, $self->{CONDITION});
                   1676:     }
                   1677: 
1.116     bowersj2 1678:     # If this is a blank resource, don't actually return it.
1.117     bowersj2 1679:     # Should you ever find you need it, make sure to add an option to the code
                   1680:     #  that you can use; other things depend on this behavior.
1.116     bowersj2 1681:     if (!$self->{HERE}->src()) {
                   1682:         return $self->next();
                   1683:     }
                   1684: 
1.98      bowersj2 1685:     return $self->{HERE};
                   1686: 
                   1687: }
                   1688: 
                   1689: =pod
                   1690: 
                   1691: 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).
                   1692: 
                   1693: =cut
                   1694: 
                   1695: sub getStack {
                   1696:     my $self=shift;
                   1697: 
                   1698:     my @stack;
                   1699: 
                   1700:     $self->populateStack(\@stack);
                   1701: 
                   1702:     return \@stack;
                   1703: }
                   1704: 
                   1705: # Private method: Calls the iterators recursively to populate the stack.
                   1706: sub populateStack {
                   1707:     my $self=shift;
                   1708:     my $stack = shift;
                   1709: 
                   1710:     push @$stack, $self->{HERE} if ($self->{HERE});
                   1711: 
                   1712:     if ($self->{RECURSIVE_ITERATOR_FLAG}) {
                   1713:         $self->{RECURSIVE_ITERATOR}->populateStack($stack);
                   1714:     }
1.94      bowersj2 1715: }
                   1716: 
                   1717: 1;
                   1718: 
                   1719: package Apache::lonnavmaps::DFSiterator;
                   1720: 
1.100     bowersj2 1721: # Not documented in the perldoc: This is a simple iterator that just walks
                   1722: #  through the nav map and presents the resources in a depth-first search
                   1723: #  fashion, ignorant of conditionals, randomized resources, etc. It presents
                   1724: #  BEGIN_MAP and END_MAP, but does not understand branches at all. It is
                   1725: #  useful for pre-processing of some kind, and is in fact used by the main
                   1726: #  iterator that way, but that's about it.
                   1727: # One could imagine merging this into the init routine of the main iterator,
                   1728: #  but this might as well be left seperate, since it is possible some other
                   1729: #  use might be found for it. - Jeremy
1.94      bowersj2 1730: 
1.117     bowersj2 1731: # Unlike the main iterator, this DOES return all resources, even blank ones.
                   1732: #  The main iterator needs them to correctly preprocess the map.
                   1733: 
1.94      bowersj2 1734: sub BEGIN_MAP { return 1; }    # begining of a new map
                   1735: sub END_MAP { return 2; }      # end of the map
                   1736: sub FORWARD { return 1; }      # go forward
                   1737: sub BACKWARD { return 2; }
                   1738: 
1.100     bowersj2 1739: # Params: Nav map ref, first resource id/ref, finish resource id/ref,
                   1740: #         filter hash ref (or undef), already seen hash or undef, condition
                   1741: #         (as in main iterator), direction FORWARD or BACKWARD (undef->forward).
1.51      bowersj2 1742: sub new {
                   1743:     # magic invocation to create a class instance
                   1744:     my $proto = shift;
                   1745:     my $class = ref($proto) || $proto;
                   1746:     my $self = {};
                   1747: 
                   1748:     $self->{NAV_MAP} = shift;
                   1749:     return undef unless ($self->{NAV_MAP});
                   1750: 
                   1751:     $self->{FIRST_RESOURCE} = shift || $self->{NAV_MAP}->firstResource();
                   1752:     $self->{FINISH_RESOURCE} = shift || $self->{NAV_MAP}->finishResource();
                   1753: 
                   1754:     # If the given resources are just the ID of the resource, get the
                   1755:     # objects
                   1756:     if (!ref($self->{FIRST_RESOURCE})) { $self->{FIRST_RESOURCE} = 
                   1757:              $self->{NAV_MAP}->getById($self->{FIRST_RESOURCE}); }
                   1758:     if (!ref($self->{FINISH_RESOURCE})) { $self->{FINISH_RESOURCE} = 
                   1759:              $self->{NAV_MAP}->getById($self->{FINISH_RESOURCE}); }
                   1760: 
                   1761:     $self->{FILTER} = shift;
                   1762: 
                   1763:     # A hash, used as a set, of resource already seen
                   1764:     $self->{ALREADY_SEEN} = shift;
                   1765:     if (!defined($self->{ALREADY_SEEN})) { $self->{ALREADY_SEEN} = {} };
1.63      bowersj2 1766:     $self->{CONDITION} = shift;
1.89      bowersj2 1767:     $self->{DIRECTION} = shift || FORWARD();
1.51      bowersj2 1768: 
1.100     bowersj2 1769:     # Flag: Have we started yet?
1.51      bowersj2 1770:     $self->{STARTED} = 0;
                   1771: 
                   1772:     # Should we continue calling the recursive iterator, if any?
                   1773:     $self->{RECURSIVE_ITERATOR_FLAG} = 0;
                   1774:     # The recursive iterator, if any
                   1775:     $self->{RECURSIVE_ITERATOR} = undef;
                   1776:     # Are we recursing on a map, or a branch?
                   1777:     $self->{RECURSIVE_MAP} = 1; # we'll manually unset this when recursing on branches
                   1778:     # And the count of how deep it is, so that this iterator can keep track of
                   1779:     # when to pick back up again.
                   1780:     $self->{RECURSIVE_DEPTH} = 0;
                   1781: 
                   1782:     # For keeping track of our branches, we maintain our own stack
1.100     bowersj2 1783:     $self->{STACK} = [];
1.51      bowersj2 1784: 
                   1785:     # Start with the first resource
1.89      bowersj2 1786:     if ($self->{DIRECTION} == FORWARD) {
1.100     bowersj2 1787:         push @{$self->{STACK}}, $self->{FIRST_RESOURCE};
1.89      bowersj2 1788:     } else {
1.100     bowersj2 1789:         push @{$self->{STACK}}, $self->{FINISH_RESOURCE};
1.89      bowersj2 1790:     }
1.51      bowersj2 1791: 
                   1792:     bless($self);
                   1793:     return $self;
                   1794: }
                   1795: 
                   1796: sub next {
                   1797:     my $self = shift;
                   1798:     
                   1799:     # Are we using a recursive iterator? If so, pull from that and
                   1800:     # watch the depth; we want to resume our level at the correct time.
1.98      bowersj2 1801:     if ($self->{RECURSIVE_ITERATOR_FLAG}) {
1.51      bowersj2 1802:         # grab the next from the recursive iterator
                   1803:         my $next = $self->{RECURSIVE_ITERATOR}->next();
                   1804:         
                   1805:         # is it a begin or end map? Update depth if so
                   1806:         if ($next == BEGIN_MAP() ) { $self->{RECURSIVE_DEPTH}++; }
                   1807:         if ($next == END_MAP() ) { $self->{RECURSIVE_DEPTH}--; }
                   1808: 
                   1809:         # Are we back at depth 0? If so, stop recursing.
                   1810:         if ($self->{RECURSIVE_DEPTH} == 0) {
                   1811:             $self->{RECURSIVE_ITERATOR_FLAG} = 0;
                   1812:         }
                   1813:         
                   1814:         return $next;
                   1815:     }
                   1816: 
                   1817:     # Is there a current resource to grab? If not, then return
1.100     bowersj2 1818:     # END_MAP, which will end the iterator.
                   1819:     if (scalar(@{$self->{STACK}}) == 0) {
                   1820:         return $self->END_MAP();
1.51      bowersj2 1821:     }
                   1822: 
                   1823:     # Have we not yet begun? If not, return BEGIN_MAP and 
                   1824:     # remember that we've started.
                   1825:     if ( !$self->{STARTED} ) {
                   1826:         $self->{STARTED} = 1;
                   1827:         return $self->BEGIN_MAP;
                   1828:     }
                   1829: 
                   1830:     # Get the next resource in the branch
1.100     bowersj2 1831:     $self->{HERE} = pop @{$self->{STACK}};
1.52      bowersj2 1832: 
1.100     bowersj2 1833:     # remember that we've seen this, so we don't return it again later
1.51      bowersj2 1834:     $self->{ALREADY_SEEN}->{$self->{HERE}->{ID}} = 1;
                   1835:     
                   1836:     # Get the next possible resources
1.90      bowersj2 1837:     my $nextUnfiltered;
1.89      bowersj2 1838:     if ($self->{DIRECTION} == FORWARD()) {
1.90      bowersj2 1839:         $nextUnfiltered = $self->{HERE}->getNext();
1.89      bowersj2 1840:     } else {
1.90      bowersj2 1841:         $nextUnfiltered = $self->{HERE}->getPrevious();
1.89      bowersj2 1842:     }
1.51      bowersj2 1843:     my $next = [];
                   1844: 
                   1845:     # filter the next possibilities to remove things we've 
1.100     bowersj2 1846:     # already seen.
1.51      bowersj2 1847:     foreach (@$nextUnfiltered) {
1.52      bowersj2 1848:         if (!defined($self->{ALREADY_SEEN}->{$_->{ID}})) {
                   1849:             push @$next, $_;
                   1850:         }
1.51      bowersj2 1851:     }
                   1852: 
                   1853:     while (@$next) {
1.100     bowersj2 1854:         # copy the next possibilities over to the stack
                   1855:         push @{$self->{STACK}}, shift @$next;
1.51      bowersj2 1856:     }
                   1857: 
                   1858:     # If this is a map and we want to recurse down it... (not filtered out)
1.70      bowersj2 1859:     if ($self->{HERE}->is_map() && 
1.63      bowersj2 1860:          (defined($self->{FILTER}->{$self->{HERE}->map_pc()}) xor $self->{CONDITION})) { 
1.51      bowersj2 1861:         $self->{RECURSIVE_ITERATOR_FLAG} = 1;
                   1862:         my $firstResource = $self->{HERE}->map_start();
                   1863:         my $finishResource = $self->{HERE}->map_finish();
                   1864: 
                   1865:         $self->{RECURSIVE_ITERATOR} =
1.94      bowersj2 1866:           Apache::lonnavmaps::DFSiterator->new ($self->{NAV_MAP}, $firstResource, 
1.63      bowersj2 1867:                      $finishResource, $self->{FILTER}, $self->{ALREADY_SEEN},
1.91      bowersj2 1868:                                              $self->{CONDITION}, $self->{DIRECTION});
1.51      bowersj2 1869:     }
                   1870: 
                   1871:     return $self->{HERE};
                   1872: }
                   1873: 
1.1       www      1874: 1;
1.2       www      1875: 
1.51      bowersj2 1876: package Apache::lonnavmaps::resource;
                   1877: 
                   1878: use Apache::lonnet;
                   1879: 
                   1880: =pod
                   1881: 
                   1882: =head1 Object: resource
                   1883: 
                   1884: 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.
                   1885: 
                   1886: A resource only makes sense in the context of a navmap, as some of the data is stored in the navmap object.
                   1887: 
                   1888: You will probably never need to instantiate this object directly. Use Apache::lonnavmap::navmap, and use the "start" method to obtain the starting resource.
                   1889: 
                   1890: =head2 Public Members
                   1891: 
                   1892: 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.
                   1893: 
                   1894: =head2 Methods
                   1895: 
                   1896: =over 4
                   1897: 
1.70      bowersj2 1898: =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.
                   1899: 
                   1900: =back
1.51      bowersj2 1901: 
                   1902: =cut
                   1903: 
                   1904: sub new {
                   1905:     # magic invocation to create a class instance
                   1906:     my $proto = shift;
                   1907:     my $class = ref($proto) || $proto;
                   1908:     my $self = {};
                   1909: 
                   1910:     $self->{NAV_MAP} = shift;
                   1911:     $self->{ID} = shift;
                   1912: 
                   1913:     # Store this new resource in the parent nav map's cache.
                   1914:     $self->{NAV_MAP}->{RESOURCE_CACHE}->{$self->{ID}} = $self;
1.66      bowersj2 1915:     $self->{RESOURCE_ERROR} = 0;
1.51      bowersj2 1916: 
                   1917:     # A hash that can be used by two-pass algorithms to store data
                   1918:     # about this resource in. Not used by the resource object
                   1919:     # directly.
                   1920:     $self->{DATA} = {};
                   1921:    
                   1922:     bless($self);
                   1923:     
                   1924:     return $self;
                   1925: }
                   1926: 
1.70      bowersj2 1927: # private function: simplify the NAV_HASH lookups we keep doing
                   1928: # pass the name, and to automatically append my ID, pass a true val on the
                   1929: # second param
                   1930: sub navHash {
                   1931:     my $self = shift;
                   1932:     my $param = shift;
                   1933:     my $id = shift;
1.115     bowersj2 1934:     return $self->{NAV_MAP}->navhash($param . ($id?$self->{ID}:""));
1.70      bowersj2 1935: }
                   1936: 
1.51      bowersj2 1937: =pod
                   1938: 
1.70      bowersj2 1939: B<Metadata Retreival>
                   1940: 
1.101     bowersj2 1941: These are methods that help you retrieve metadata about the resource: Method names are based on the fields in the compiled course representation.
1.70      bowersj2 1942: 
                   1943: =over 4
                   1944: 
1.106     bowersj2 1945: =item * B<compTitle>: Returns a "composite title", that is equal to $res->title() if the resource has a title, and is otherwise the last part of the URL (e.g., "problem.problem").
                   1946: 
1.70      bowersj2 1947: =item * B<ext>: Returns true if the resource is external.
                   1948: 
                   1949: =item * B<goesto>: Returns the "goesto" value from the compiled nav map. (It is likely you want to use B<getNext> instead.)
                   1950: 
                   1951: =item * B<kind>: Returns the kind of the resource from the compiled nav map.
                   1952: 
1.101     bowersj2 1953: =item * B<randomout>: Returns true if this resource was chosen to NOT be shown to the user by the random map selection feature. In other words, this is usually false.
1.51      bowersj2 1954: 
1.70      bowersj2 1955: =item * B<randompick>: Returns true for a map if the randompick feature is being used on the map. (?)
                   1956: 
                   1957: =item * B<src>: Returns the source for the resource.
                   1958: 
                   1959: =item * B<symb>: Returns the symb for the resource.
                   1960: 
                   1961: =item * B<title>: Returns the title of the resource.
                   1962: 
                   1963: =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 1964: 
                   1965: =back
                   1966: 
                   1967: =cut
                   1968: 
                   1969: # These info functions can be used directly, as they don't return
                   1970: # resource information.
1.85      bowersj2 1971: sub comesfrom { my $self=shift; return $self->navHash("comesfrom_", 1); }
1.70      bowersj2 1972: sub ext { my $self=shift; return $self->navHash("ext_", 1) eq 'true:'; }
1.85      bowersj2 1973: sub from { my $self=shift; return $self->navHash("from_", 1); }
1.51      bowersj2 1974: sub goesto { my $self=shift; return $self->navHash("goesto_", 1); }
                   1975: sub kind { my $self=shift; return $self->navHash("kind_", 1); }
1.68      bowersj2 1976: sub randomout { my $self=shift; return $self->navHash("randomout_", 1); }
                   1977: sub randompick { 
                   1978:     my $self = shift;
                   1979:     return $self->{NAV_MAP}->{PARM_HASH}->{$self->symb .
                   1980:                                                '.0.parameter_randompick'};
                   1981: }
1.51      bowersj2 1982: sub src { 
                   1983:     my $self=shift;
                   1984:     return $self->navHash("src_", 1);
                   1985: }
                   1986: sub symb {
                   1987:     my $self=shift;
                   1988:     (my $first, my $second) = $self->{ID} =~ /(\d+).(\d+)/;
                   1989:     my $symbSrc = &Apache::lonnet::declutter($self->src());
                   1990:     return &Apache::lonnet::declutter(
                   1991:          $self->navHash('map_id_'.$first)) 
                   1992:         . '___' . $second . '___' . $symbSrc;
                   1993: }
1.70      bowersj2 1994: sub title { my $self=shift; return $self->navHash("title_", 1); }
                   1995: sub to { my $self=shift; return $self->navHash("to_", 1); }
1.106     bowersj2 1996: sub compTitle {
                   1997:     my $self = shift;
                   1998:     my $title = $self->title();
                   1999:     if (!$title) {
                   2000:         $title = $self->src();
                   2001:         $title = substr($title, rindex($title, '/') + 1);
                   2002:     }
                   2003:     return $title;
                   2004: }
1.70      bowersj2 2005: =pod
                   2006: 
                   2007: B<Predicate Testing the Resource>
                   2008: 
                   2009: These methods are shortcuts to deciding if a given resource has a given property.
                   2010: 
                   2011: =over 4
                   2012: 
                   2013: =item * B<is_map>: Returns true if the resource is a map type.
                   2014: 
                   2015: =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.)
                   2016: 
                   2017: =item * B<is_page>: Returns true if the resource is a page.
                   2018: 
                   2019: =item * B<is_problem>: Returns true if the resource is a problem.
                   2020: 
1.101     bowersj2 2021: =item * B<is_sequence>: Returns true if the resource is a sequence.
1.70      bowersj2 2022: 
                   2023: =back
                   2024: 
                   2025: =cut
                   2026: 
                   2027: 
                   2028: sub is_html {
1.51      bowersj2 2029:     my $self=shift;
                   2030:     my $src = $self->src();
1.70      bowersj2 2031:     return ($src =~ /html$/);
1.51      bowersj2 2032: }
1.70      bowersj2 2033: sub is_map { my $self=shift; return defined($self->navHash("is_map_", 1)); }
                   2034: sub is_page {
1.51      bowersj2 2035:     my $self=shift;
                   2036:     my $src = $self->src();
1.70      bowersj2 2037:     return ($src =~ /page$/);
1.51      bowersj2 2038: }
1.70      bowersj2 2039: sub is_problem {
1.51      bowersj2 2040:     my $self=shift;
                   2041:     my $src = $self->src();
1.70      bowersj2 2042:     return ($src =~ /problem$/);
1.51      bowersj2 2043: }
1.70      bowersj2 2044: sub is_sequence {
1.51      bowersj2 2045:     my $self=shift;
                   2046:     my $src = $self->src();
1.70      bowersj2 2047:     return ($src =~ /sequence$/);
1.51      bowersj2 2048: }
                   2049: 
1.101     bowersj2 2050: # Private method: Shells out to the parmval in the nav map, handler parts.
1.51      bowersj2 2051: sub parmval {
                   2052:     my $self = shift;
                   2053:     my $what = shift;
                   2054:     my $part = shift || "0";
                   2055:     return $self->{NAV_MAP}->parmval($part.'.'.$what, $self->symb());
                   2056: }
                   2057: 
1.70      bowersj2 2058: =pod
                   2059: 
                   2060: B<Map Methods>
                   2061: 
                   2062: These methods are useful for getting information about the map properties of the resource, if the resource is a map (B<is_map>).
                   2063: 
                   2064: =over 4
                   2065: 
                   2066: =item * B<map_finish>: Returns a reference to a resource object corresponding to the finish resource of the map.
                   2067: 
                   2068: =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.
                   2069: 
                   2070: =item * B<map_start>: Returns a reference to a resource object corresponding to the start resource of the map.
                   2071: 
                   2072: =item * B<map_type>: Returns a string with the type of the map in it.
                   2073: 
                   2074: =back
1.51      bowersj2 2075: 
1.70      bowersj2 2076: =cut
1.51      bowersj2 2077: 
                   2078: sub map_finish {
                   2079:     my $self = shift;
                   2080:     my $src = $self->src();
                   2081:     my $res = $self->navHash("map_finish_$src", 0);
                   2082:     $res = $self->{NAV_MAP}->getById($res);
                   2083:     return $res;
                   2084: }
1.70      bowersj2 2085: sub map_pc {
                   2086:     my $self = shift;
                   2087:     my $src = $self->src();
                   2088:     return $self->navHash("map_pc_$src", 0);
                   2089: }
1.51      bowersj2 2090: sub map_start {
                   2091:     my $self = shift;
                   2092:     my $src = $self->src();
                   2093:     my $res = $self->navHash("map_start_$src", 0);
                   2094:     $res = $self->{NAV_MAP}->getById($res);
                   2095:     return $res;
                   2096: }
                   2097: sub map_type {
                   2098:     my $self = shift;
                   2099:     my $pc = $self->map_pc();
                   2100:     return $self->navHash("map_type_$pc", 0);
                   2101: }
                   2102: 
                   2103: 
                   2104: 
                   2105: #####
                   2106: # Property queries
                   2107: #####
                   2108: 
                   2109: # These functions will be responsible for returning the CORRECT
                   2110: # VALUE for the parameter, no matter what. So while they may look
                   2111: # like direct calls to parmval, they can be more then that.
                   2112: # So, for instance, the duedate function should use the "duedatetype"
                   2113: # information, rather then the resource object user.
                   2114: 
                   2115: =pod
                   2116: 
                   2117: =head2 Resource Parameters
                   2118: 
1.70      bowersj2 2119: 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 2120: 
                   2121: 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.)
                   2122: 
                   2123: =over 4
                   2124: 
                   2125: =item * B<acc>: Get the Client IP/Name Access Control information.
                   2126: 
                   2127: =item * B<answerdate>: Get the answer-reveal date for the problem.
                   2128: 
                   2129: =item * B<duedate>: Get the due date for the problem.
                   2130: 
                   2131: =item * B<tries>: Get the number of tries the student has used on the problem.
                   2132: 
                   2133: =item * B<maxtries>: Get the number of max tries allowed.
                   2134: 
                   2135: =item * B<opendate>: Get the open date for the problem.
                   2136: 
                   2137: =item * B<sig>: Get the significant figures setting.
                   2138: 
                   2139: =item * B<tol>: Get the tolerance for the problem.
                   2140: 
1.70      bowersj2 2141: =item * B<tries>: Get the number of tries the user has already used on the problem.
                   2142: 
1.51      bowersj2 2143: =item * B<type>: Get the question type for the problem.
                   2144: 
                   2145: =item * B<weight>: Get the weight for the problem.
                   2146: 
                   2147: =back
                   2148: 
                   2149: =cut
                   2150: 
                   2151: sub acc {
                   2152:     (my $self, my $part) = @_;
                   2153:     return $self->parmval("acc", $part);
                   2154: }
                   2155: sub answerdate {
                   2156:     (my $self, my $part) = @_;
                   2157:     # Handle intervals
                   2158:     if ($self->parmval("answerdate.type", $part) eq 'date_interval') {
                   2159:         return $self->duedate($part) + 
                   2160:             $self->parmval("answerdate", $part);
                   2161:     }
                   2162:     return $self->parmval("answerdate", $part);
1.106     bowersj2 2163: }
1.108     bowersj2 2164: sub awarded { my $self = shift; return $self->queryRestoreHash('awarded', shift); }
1.51      bowersj2 2165: sub duedate {
                   2166:     (my $self, my $part) = @_;
                   2167:     return $self->parmval("duedate", $part);
                   2168: }
                   2169: sub maxtries {
                   2170:     (my $self, my $part) = @_;
                   2171:     return $self->parmval("maxtries", $part);
                   2172: }
                   2173: sub opendate {
                   2174:     (my $self, my $part) = @_;
                   2175:     if ($self->parmval("opendate.type", $part) eq 'date_interval') {
                   2176:         return $self->duedate($part) -
                   2177:             $self->parmval("opendate", $part);
                   2178:     }
                   2179:     return $self->parmval("opendate");
                   2180: }
                   2181: sub sig {
                   2182:     (my $self, my $part) = @_;
                   2183:     return $self->parmval("sig", $part);
                   2184: }
                   2185: sub tol {
                   2186:     (my $self, my $part) = @_;
                   2187:     return $self->parmval("tol", $part);
                   2188: }
1.108     bowersj2 2189: sub tries { 
                   2190:     my $self = shift; 
                   2191:     my $tries = $self->queryRestoreHash('tries', shift);
                   2192:     if (!defined($tries)) { return '0';}
1.51      bowersj2 2193:     return $tries;
                   2194: }
1.70      bowersj2 2195: sub type {
                   2196:     (my $self, my $part) = @_;
                   2197:     return $self->parmval("type", $part);
                   2198: }
1.109     bowersj2 2199: sub weight { 
                   2200:     my $self = shift; my $part = shift;
1.70      bowersj2 2201:     return $self->parmval("weight", $part);
                   2202: }
1.51      bowersj2 2203: 
                   2204: # Multiple things need this
                   2205: sub getReturnHash {
                   2206:     my $self = shift;
                   2207:     
                   2208:     if (!defined($self->{RETURN_HASH})) {
1.84      bowersj2 2209:         my %tmpHash  = &Apache::lonnet::restore($self->symb());
1.51      bowersj2 2210:         $self->{RETURN_HASH} = \%tmpHash;
                   2211:     }
                   2212: }       
                   2213: 
                   2214: ######
                   2215: # Status queries
                   2216: ######
                   2217: 
                   2218: # These methods query the status of problems.
                   2219: 
                   2220: # If we need to count parts, this function determines the number of
                   2221: # parts from the metadata. When called, it returns a reference to a list
                   2222: # of strings corresponding to the parts. (Thus, using it in a scalar context
                   2223: # tells you how many parts you have in the problem:
                   2224: # $partcount = scalar($resource->countParts());
                   2225: # Don't use $self->{PARTS} directly because you don't know if it's been
                   2226: # computed yet.
                   2227: 
                   2228: =pod
                   2229: 
                   2230: =head2 Resource misc
                   2231: 
                   2232: Misc. functions for the resource.
                   2233: 
                   2234: =over 4
                   2235: 
1.59      bowersj2 2236: =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.
                   2237: 
                   2238: =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:
                   2239: 
                   2240:  for (split(/\,/, $res->getFeedback())) {
                   2241:     my $link = &Apache::lonnet::escape($_);
                   2242:     ...
                   2243: 
                   2244: and use the link as appropriate.
                   2245: 
                   2246: =cut
                   2247: 
                   2248: sub hasDiscussion {
                   2249:     my $self = shift;
                   2250:     return $self->{NAV_MAP}->hasDiscussion($self->symb());
                   2251: }
                   2252: 
                   2253: sub getFeedback {
                   2254:     my $self = shift;
1.124   ! bowersj2 2255:     my $source = $self->src();
        !          2256:     if ($source !~ /^\/res\//) { $source = substr $source, 5; }
        !          2257:     return $self->{NAV_MAP}->getFeedback($source);
        !          2258: }
        !          2259: 
        !          2260: sub getErrors {
        !          2261:     my $self = shift;
        !          2262:     my $source = $self->src();
        !          2263:     if ($source =~ /^\/res\//) { $source = substr $source, 5; }
        !          2264:     return $self->{NAV_MAP}->getErrors($source);
1.59      bowersj2 2265: }
                   2266: 
                   2267: =pod
                   2268: 
1.70      bowersj2 2269: =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 2270: 
1.70      bowersj2 2271: =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 2272: 
                   2273: =back
                   2274: 
                   2275: =cut
                   2276: 
                   2277: sub parts {
                   2278:     my $self = shift;
                   2279: 
1.67      bowersj2 2280:     if ($self->ext) { return ['0']; }
                   2281: 
1.51      bowersj2 2282:     $self->extractParts();
                   2283:     return $self->{PARTS};
                   2284: }
                   2285: 
                   2286: sub countParts {
                   2287:     my $self = shift;
                   2288:     
                   2289:     my $parts = $self->parts();
1.66      bowersj2 2290: 
                   2291:     if ($self->{RESOURCE_ERROR}) {
                   2292:         return 0;
                   2293:     }
                   2294: 
                   2295:     if (scalar(@{$parts}) < 2) { return 1;}
1.51      bowersj2 2296: 
                   2297:     return scalar(@{$parts}) - 1;
                   2298: }
                   2299: 
                   2300: # Private function: Extracts the parts information and saves it
                   2301: sub extractParts { 
                   2302:     my $self = shift;
                   2303:     
                   2304:     return if ($self->{PARTS});
1.67      bowersj2 2305:     return if ($self->ext);
1.51      bowersj2 2306: 
                   2307:     $self->{PARTS} = [];
                   2308: 
1.82      bowersj2 2309:     # Retrieve part count, if this is a problem
                   2310:     if ($self->is_problem()) {
                   2311:         my $metadata = &Apache::lonnet::metadata($self->src(), 'allpossiblekeys');
                   2312:         if (!$metadata) {
                   2313:             $self->{RESOURCE_ERROR} = 1;
                   2314:             $self->{PARTS} = [];
                   2315:             return;
                   2316:         }
                   2317:         
                   2318:         foreach (split(/\,/,$metadata)) {
                   2319:             if ($_ =~ /^parameter\_(.*)\_opendate$/) {
                   2320:                 push @{$self->{PARTS}}, $1;
                   2321:             }
1.51      bowersj2 2322:         }
1.82      bowersj2 2323:         
                   2324:         
                   2325:         # Is this possible to do in one line? - Jeremy
                   2326:         my @sortedParts = sort @{$self->{PARTS}};
                   2327:         $self->{PARTS} = \@sortedParts;
1.51      bowersj2 2328:     }
                   2329: 
                   2330:     return;
                   2331: }
                   2332: 
                   2333: =pod
                   2334: 
                   2335: =head2 Resource Status
                   2336: 
1.101     bowersj2 2337: Problem resources have status information, reflecting their various dates and completion statuses. 
1.51      bowersj2 2338: 
                   2339: There are two aspects to the status: the date-related information and the completion information.
                   2340: 
                   2341: Idiomatic usage of these two methods would probably look something like
                   2342: 
                   2343:  foreach ($resource->parts()) {
                   2344:     my $dateStatus = $resource->getDateStatus($_);
                   2345:     my $completionStatus = $resource->getCompletionStatus($_);
                   2346: 
1.70      bowersj2 2347:     or
                   2348: 
                   2349:     my $status = $resource->status($_);
                   2350: 
1.51      bowersj2 2351:     ... use it here ...
                   2352:  }
                   2353: 
1.101     bowersj2 2354: Which you use depends on exactly what you are looking for. The status() function has been optimized for the nav maps display and may not precisely match what you need elsewhere.
                   2355: 
                   2356: The symbolic constants shown below can be accessed through the resource object: $res->OPEN.
                   2357: 
1.51      bowersj2 2358: =over 4
                   2359: 
1.70      bowersj2 2360: =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 2361: 
                   2362: =back
                   2363: 
                   2364: B<Date Codes>
                   2365: 
                   2366: =over 4
                   2367: 
                   2368: =item * B<OPEN_LATER>: The problem will be opened later.
                   2369: 
                   2370: =item * B<OPEN>: Open and not yet due.
                   2371: 
1.59      bowersj2 2372: 
1.54      bowersj2 2373: =item * B<PAST_DUE_ANSWER_LATER>: The due date has passed, but the answer date has not yet arrived.
                   2374: 
                   2375: =item * B<PAST_DUE_NO_ANSWER>: The due date has passed and there is no answer opening date set.
1.51      bowersj2 2376: 
                   2377: =item * B<ANSWER_OPEN>: The answer date is here.
                   2378: 
                   2379: =item * B<NETWORK_FAILURE>: The information is unknown due to network failure.
                   2380: 
                   2381: =back
                   2382: 
                   2383: =cut
                   2384: 
                   2385: # Apparently the compiler optimizes these into constants automatically
1.54      bowersj2 2386: sub OPEN_LATER             { return 0; }
                   2387: sub OPEN                   { return 1; }
                   2388: sub PAST_DUE_NO_ANSWER     { return 2; }
                   2389: sub PAST_DUE_ANSWER_LATER  { return 3; }
                   2390: sub ANSWER_OPEN            { return 4; }
                   2391: sub NOTHING_SET            { return 5; } 
                   2392: sub NETWORK_FAILURE        { return 100; }
                   2393: 
                   2394: # getDateStatus gets the date status for a given problem part. 
                   2395: # Because answer date, due date, and open date are fully independent
                   2396: # (i.e., it is perfectly possible to *only* have an answer date), 
                   2397: # we have to completely cover the 3x3 maxtrix of (answer, due, open) x
                   2398: # (past, future, none given). This function handles this with a decision
                   2399: # tree. Read the comments to follow the decision tree.
1.51      bowersj2 2400: 
                   2401: sub getDateStatus {
                   2402:     my $self = shift;
                   2403:     my $part = shift;
                   2404:     $part = "0" if (!defined($part));
1.54      bowersj2 2405: 
                   2406:     # Always return network failure if there was one.
1.51      bowersj2 2407:     return $self->NETWORK_FAILURE if ($self->{NAV_MAP}->{NETWORK_FAILURE});
                   2408: 
                   2409:     my $now = time();
                   2410: 
1.53      bowersj2 2411:     my $open = $self->opendate($part);
                   2412:     my $due = $self->duedate($part);
                   2413:     my $answer = $self->answerdate($part);
                   2414: 
                   2415:     if (!$open && !$due && !$answer) {
                   2416:         # no data on the problem at all
                   2417:         # should this be the same as "open later"? think multipart.
                   2418:         return $self->NOTHING_SET;
                   2419:     }
1.59      bowersj2 2420:     if (!$open || $now < $open) {return $self->OPEN_LATER}
                   2421:     if (!$due || $now < $due) {return $self->OPEN}
                   2422:     if ($answer && $now < $answer) {return $self->PAST_DUE_ANSWER_LATER}
                   2423:     if ($answer) { return $self->ANSWER_OPEN; }
1.54      bowersj2 2424:     return PAST_DUE_NO_ANSWER;
1.51      bowersj2 2425: }
                   2426: 
                   2427: =pod
                   2428: 
                   2429: B<>
                   2430: 
                   2431: =over 4
                   2432: 
                   2433: =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:
                   2434: 
                   2435: =back 
                   2436: 
                   2437: B<Completion Codes>
                   2438: 
                   2439: =over 4
                   2440: 
                   2441: =item * B<NOT_ATTEMPTED>: Has not been attempted at all.
                   2442: 
                   2443: =item * B<INCORRECT>: Attempted, but wrong by student.
                   2444: 
                   2445: =item * B<INCORRECT_BY_OVERRIDE>: Attempted, but wrong by instructor override.
                   2446: 
                   2447: =item * B<CORRECT>: Correct or correct by instructor.
                   2448: 
                   2449: =item * B<CORRECT_BY_OVERRIDE>: Correct by instructor override.
                   2450: 
                   2451: =item * B<EXCUSED>: Excused. Not yet implemented.
                   2452: 
                   2453: =item * B<NETWORK_FAILURE>: Information not available due to network failure.
                   2454: 
1.69      bowersj2 2455: =item * B<ATTEMPTED>: Attempted, and not yet graded.
                   2456: 
1.51      bowersj2 2457: =back
                   2458: 
                   2459: =cut
                   2460: 
1.53      bowersj2 2461: sub NOT_ATTEMPTED         { return 10; }
                   2462: sub INCORRECT             { return 11; }
                   2463: sub INCORRECT_BY_OVERRIDE { return 12; }
                   2464: sub CORRECT               { return 13; }
                   2465: sub CORRECT_BY_OVERRIDE   { return 14; }
                   2466: sub EXCUSED               { return 15; }
1.69      bowersj2 2467: sub ATTEMPTED             { return 16; }
1.51      bowersj2 2468: 
                   2469: sub getCompletionStatus {
                   2470:     my $self = shift;
                   2471:     return $self->NETWORK_FAILURE if ($self->{NAV_MAP}->{NETWORK_FAILURE});
                   2472: 
1.108     bowersj2 2473:     my $status = $self->queryRestoreHash('solved', shift);
1.51      bowersj2 2474: 
                   2475:     # Left as seperate if statements in case we ever do more with this
                   2476:     if ($status eq 'correct_by_student') {return $self->CORRECT;}
                   2477:     if ($status eq 'correct_by_override') {return $self->CORRECT_BY_OVERRIDE; }
                   2478:     if ($status eq 'incorrect_attempted') {return $self->INCORRECT; }
                   2479:     if ($status eq 'incorrect_by_override') {return $self->INCORRECT_BY_OVERRIDE; }
                   2480:     if ($status eq 'excused') {return $self->EXCUSED; }
1.69      bowersj2 2481:     if ($status eq 'ungraded_attempted') {return $self->ATTEMPTED; }
1.51      bowersj2 2482:     return $self->NOT_ATTEMPTED;
1.108     bowersj2 2483: }
                   2484: 
                   2485: sub queryRestoreHash {
                   2486:     my $self = shift;
                   2487:     my $hashentry = shift;
                   2488:     my $part = shift;
                   2489:     $part = "0" if (!defined($part));
                   2490:     return $self->NETWORK_FAILURE if ($self->{NAV_MAP}->{NETWORK_FAILURE});
                   2491: 
                   2492:     $self->getReturnHash();
                   2493: 
                   2494:     return $self->{RETURN_HASH}->{'resource.'.$part.'.'.$hashentry};
1.51      bowersj2 2495: }
                   2496: 
                   2497: =pod
                   2498: 
                   2499: B<Composite Status>
                   2500: 
1.101     bowersj2 2501: 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):
1.51      bowersj2 2502: 
                   2503: =over 4
                   2504: 
1.70      bowersj2 2505: =item * B<NETWORK_FAILURE>: The network has failed and the information is not available.
1.51      bowersj2 2506: 
1.70      bowersj2 2507: =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 2508: 
1.70      bowersj2 2509: =item * B<CORRECT>: For any reason at all, the part is considered correct.
1.51      bowersj2 2510: 
1.70      bowersj2 2511: =item * B<EXCUSED>: For any reason at all, the problem is excused.
1.51      bowersj2 2512: 
1.70      bowersj2 2513: =item * B<PAST_DUE_NO_ANSWER>: The problem is past due, not considered correct, and no answer date is set.
1.54      bowersj2 2514: 
1.70      bowersj2 2515: =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 2516: 
1.70      bowersj2 2517: =item * B<ANSWER_OPEN>: The problem is past due, not correct, and the answer is now available.
1.51      bowersj2 2518: 
1.70      bowersj2 2519: =item * B<OPEN_LATER>: The problem is not yet open.
1.51      bowersj2 2520: 
1.70      bowersj2 2521: =item * B<TRIES_LEFT>: The problem is open, has been tried, is not correct, but there are tries left.
1.51      bowersj2 2522: 
1.70      bowersj2 2523: =item * B<INCORRECT>: The problem is open, and all tries have been used without getting the correct answer.
1.51      bowersj2 2524: 
1.70      bowersj2 2525: =item * B<OPEN>: The item is open and not yet tried.
1.51      bowersj2 2526: 
1.70      bowersj2 2527: =item * B<ATTEMPTED>: The problem has been attempted.
1.69      bowersj2 2528: 
1.51      bowersj2 2529: =back
                   2530: 
                   2531: =cut
                   2532: 
                   2533: sub TRIES_LEFT { return 10; }
                   2534: 
                   2535: sub status {
                   2536:     my $self = shift;
                   2537:     my $part = shift;
                   2538:     if (!defined($part)) { $part = "0"; }
                   2539:     my $completionStatus = $self->getCompletionStatus($part);
                   2540:     my $dateStatus = $self->getDateStatus($part);
                   2541: 
                   2542:     # What we have is a two-dimensional matrix with 4 entries on one
                   2543:     # dimension and 5 entries on the other, which we want to colorize,
1.54      bowersj2 2544:     # plus network failure and "no date data at all".
1.51      bowersj2 2545: 
1.53      bowersj2 2546:     if ($completionStatus == NETWORK_FAILURE) { return NETWORK_FAILURE; }
1.51      bowersj2 2547: 
                   2548:     # There are a few whole rows we can dispose of:
1.53      bowersj2 2549:     if ($completionStatus == CORRECT ||
                   2550:         $completionStatus == CORRECT_BY_OVERRIDE ) {
1.69      bowersj2 2551:         return CORRECT; 
                   2552:     }
                   2553: 
                   2554:     if ($completionStatus == ATTEMPTED) {
                   2555:         return ATTEMPTED;
1.53      bowersj2 2556:     }
                   2557: 
                   2558:     # If it's EXCUSED, then return that no matter what
                   2559:     if ($completionStatus == EXCUSED) {
                   2560:         return EXCUSED; 
1.51      bowersj2 2561:     }
                   2562: 
1.53      bowersj2 2563:     if ($dateStatus == NOTHING_SET) {
                   2564:         return NOTHING_SET;
1.51      bowersj2 2565:     }
                   2566: 
1.69      bowersj2 2567:     # Now we're down to a 4 (incorrect, incorrect_override, not_attempted)
                   2568:     # by 4 matrix (date statuses).
1.51      bowersj2 2569: 
1.54      bowersj2 2570:     if ($dateStatus == PAST_DUE_ANSWER_LATER ||
1.59      bowersj2 2571:         $dateStatus == PAST_DUE_NO_ANSWER ) {
1.54      bowersj2 2572:         return $dateStatus; 
1.51      bowersj2 2573:     }
                   2574: 
1.53      bowersj2 2575:     if ($dateStatus == ANSWER_OPEN) {
                   2576:         return ANSWER_OPEN;
1.51      bowersj2 2577:     }
                   2578: 
                   2579:     # Now: (incorrect, incorrect_override, not_attempted) x 
                   2580:     # (open_later), (open)
                   2581:     
1.53      bowersj2 2582:     if ($dateStatus == OPEN_LATER) {
                   2583:         return OPEN_LATER;
1.51      bowersj2 2584:     }
                   2585: 
                   2586:     # If it's WRONG...
1.53      bowersj2 2587:     if ($completionStatus == INCORRECT || $completionStatus == INCORRECT_BY_OVERRIDE) {
1.51      bowersj2 2588:         # and there are TRIES LEFT:
1.79      bowersj2 2589:         if ($self->tries($part) < $self->maxtries($part) || !$self->maxtries($part)) {
1.53      bowersj2 2590:             return TRIES_LEFT;
1.51      bowersj2 2591:         }
1.53      bowersj2 2592:         return INCORRECT; # otherwise, return orange; student can't fix this
1.51      bowersj2 2593:     }
                   2594: 
                   2595:     # Otherwise, it's untried and open
1.53      bowersj2 2596:     return OPEN; 
1.51      bowersj2 2597: }
                   2598: 
                   2599: =pod
                   2600: 
                   2601: =head2 Resource/Nav Map Navigation
                   2602: 
                   2603: =over 4
                   2604: 
1.101     bowersj2 2605: =item * B<getNext>(): Retreive an array of the possible next resources after this one. Always returns an array, even in the one- or zero-element case. 
1.85      bowersj2 2606: 
1.101     bowersj2 2607: =item * B<getPrevious>(): Retreive an array of the possible previous resources from this one. Always returns an array, even in the one- or zero-element case. 
1.51      bowersj2 2608: 
                   2609: =cut
                   2610: 
                   2611: sub getNext {
                   2612:     my $self = shift;
                   2613:     my @branches;
                   2614:     my $to = $self->to();
1.85      bowersj2 2615:     foreach my $branch ( split(/,/, $to) ) {
1.51      bowersj2 2616:         my $choice = $self->{NAV_MAP}->getById($branch);
                   2617:         my $next = $choice->goesto();
                   2618:         $next = $self->{NAV_MAP}->getById($next);
                   2619: 
1.101     bowersj2 2620:         # Don't remember it if the student doesn't have browse priviledges
                   2621:         # future note: this may properly belong in the client of the resource
1.114     bowersj2 2622:         my $browsePriv = $self->{BROWSE_PRIV};
                   2623:         if (!defined($browsePriv)) {
                   2624:             $browsePriv = &Apache::lonnet::allowed('bre', $self->src);
                   2625:             $self->{BROWSE_PRIV} = $browsePriv;
                   2626:         }
1.102     bowersj2 2627:         if (!($browsePriv ne '2' && $browsePriv ne 'F')) {
1.101     bowersj2 2628:             push @branches, $next;
                   2629:         }
1.85      bowersj2 2630:     }
                   2631:     return \@branches;
                   2632: }
                   2633: 
                   2634: sub getPrevious {
                   2635:     my $self = shift;
                   2636:     my @branches;
                   2637:     my $from = $self->from();
                   2638:     foreach my $branch ( split /,/, $from) {
                   2639:         my $choice = $self->{NAV_MAP}->getById($branch);
                   2640:         my $prev = $choice->comesfrom();
                   2641:         $prev = $self->{NAV_MAP}->getById($prev);
                   2642: 
1.101     bowersj2 2643:         # Don't remember it if the student doesn't have browse priviledges
                   2644:         # future note: this may properly belong in the client of the resource
1.114     bowersj2 2645:         my $browsePriv = $self->{BROWSE_PRIV};
                   2646:         if (!defined($browsePriv)) {
                   2647:             $browsePriv = &Apache::lonnet::allowed('bre', $self->src);
                   2648:             $self->{BROWSE_PRIV} = $browsePriv;
                   2649:         }
1.103     bowersj2 2650:         if (!($browsePriv ne '2' && $browsePriv ne 'F')) {
1.87      www      2651:             push @branches, $prev;
1.85      bowersj2 2652:         }
1.51      bowersj2 2653:     }
                   2654:     return \@branches;
                   2655: }
                   2656: 
                   2657: =pod
1.2       www      2658: 
1.51      bowersj2 2659: =back
1.2       www      2660: 
1.51      bowersj2 2661: =cut
1.2       www      2662: 
1.51      bowersj2 2663: 1;
1.2       www      2664: 
1.51      bowersj2 2665: __END__
1.2       www      2666: 
                   2667: 

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