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

1.2       www         1: # The LearningOnline Network with CAPA
                      2: # Navigate Maps Handler
1.1       www         3: #
1.295   ! albertel    4: # $Id: lonnavmaps.pm,v 1.294 2004/09/20 15:23:13 albertel Exp $
1.20      albertel    5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.245     www        28: ###
1.2       www        29: 
1.1       www        30: package Apache::lonnavmaps;
                     31: 
                     32: use strict;
1.2       www        33: use Apache::Constants qw(:common :http);
1.18      albertel   34: use Apache::loncommon();
1.150     www        35: use Apache::lonmenu();
1.229     www        36: use Apache::lonlocal;
1.73      bowersj2   37: use POSIX qw (floor strftime);
1.192     bowersj2   38: use Data::Dumper; # for debugging, not always used
1.2       www        39: 
1.133     bowersj2   40: # symbolic constants
                     41: sub SYMB { return 1; }
                     42: sub URL { return 2; }
                     43: sub NOTHING { return 3; }
                     44: 
                     45: # Some data
                     46: 
1.140     bowersj2   47: my $resObj = "Apache::lonnavmaps::resource";
                     48: 
1.135     bowersj2   49: # Keep these mappings in sync with lonquickgrades, which uses the colors
                     50: # instead of the icons.
                     51: my %statusIconMap = 
1.224     bowersj2   52:     (
                     53:      $resObj->CLOSED       => '',
                     54:      $resObj->OPEN         => 'navmap.open.gif',
                     55:      $resObj->CORRECT      => 'navmap.correct.gif',
                     56:      $resObj->INCORRECT    => 'navmap.wrong.gif',
                     57:      $resObj->ATTEMPTED    => 'navmap.ellipsis.gif',
                     58:      $resObj->ERROR        => ''
                     59:      );
1.135     bowersj2   60: 
                     61: my %iconAltTags = 
                     62:     ( 'navmap.correct.gif' => 'Correct',
                     63:       'navmap.wrong.gif'   => 'Incorrect',
                     64:       'navmap.open.gif'    => 'Open' );
1.133     bowersj2   65: 
1.136     bowersj2   66: # Defines a status->color mapping, null string means don't color
                     67: my %colormap = 
1.140     bowersj2   68:     ( $resObj->NETWORK_FAILURE        => '',
                     69:       $resObj->CORRECT                => '',
                     70:       $resObj->EXCUSED                => '#3333FF',
                     71:       $resObj->PAST_DUE_ANSWER_LATER  => '',
                     72:       $resObj->PAST_DUE_NO_ANSWER     => '',
                     73:       $resObj->ANSWER_OPEN            => '#006600',
                     74:       $resObj->OPEN_LATER             => '',
                     75:       $resObj->TRIES_LEFT             => '',
                     76:       $resObj->INCORRECT              => '',
                     77:       $resObj->OPEN                   => '',
1.207     bowersj2   78:       $resObj->NOTHING_SET            => '',
                     79:       $resObj->ATTEMPTED              => '',
                     80:       $resObj->ANSWER_SUBMITTED       => ''
                     81:       );
1.136     bowersj2   82: # And a special case in the nav map; what to do when the assignment
                     83: # is not yet done and due in less then 24 hours
                     84: my $hurryUpColor = "#FF0000";
1.130     www        85: 
1.268     albertel   86: sub launch_win {
1.281     albertel   87:     my ($mode,$script,$toplinkitems)=@_;
1.268     albertel   88:     my $result;
                     89:     if ($script ne 'no') {
                     90: 	$result.='<script type="text/javascript">';
                     91:     }
                     92:     $result.='function launch_navmapwin() {
                     93:                  newWindow=open(\'/adm/navmaps?launchExternal\',\'loncapanav\',\'width=400,height=600,scrollbars=1\');
                     94:                }';
                     95:     if ($mode eq 'now') {
                     96: 	$result.="\nlaunch_navmapwin();\n";
                     97:     }
                     98:     if ($script ne 'no') {
                     99: 	$result.='</script>';
                    100:     }
                    101:     if ($mode eq 'link') {
1.281     albertel  102: 	&add_linkitem($toplinkitems,'launchnav','launch_navmapwin()',
                    103: 		      "Launch navigation window");
1.268     albertel  104:     }
                    105:     return $result;
                    106: }
                    107: 
1.269     albertel  108: sub close {
                    109:     if ($ENV{'environment.remotenavmap'} ne 'on') { return ''; }
                    110:     return(<<ENDCLOSE);
                    111: <script type="text/javascript">
                    112: window.status='Accessing Nav Control';
                    113: menu=window.open("/adm/rat/empty.html","loncapanav",
                    114:                  "height=600,width=400,scrollbars=1");
                    115: window.status='Closing Nav Control';
                    116: menu.close();
                    117: window.status='Done.';
                    118: </script>
                    119: ENDCLOSE
                    120: }
1.268     albertel  121: 
1.278     albertel  122: sub nav_control_js {
                    123:     my $nav=($ENV{'environment.remotenavmap'} eq 'on');
                    124:     return (<<NAVCONTROL);
                    125:     var w_loncapanav_flag="$nav";
                    126: 
                    127: 
                    128: function gonav(url) {
                    129:    if (w_loncapanav_flag != 1) {
1.292     albertel  130:       gopost(url,'');
1.278     albertel  131:    }  else {
                    132:       navwindow=window.open(url,
                    133:                   "loncapanav","height=600,width=400,scrollbars=1"); 
                    134:    }
                    135: }
                    136: NAVCONTROL
                    137: }
                    138: 
1.270     albertel  139: sub update {
                    140:     if ($ENV{'environment.remotenavmap'} ne 'on') { return ''; }
                    141:     if (!$ENV{'request.course.id'}) { return ''; }
                    142:     if ($ENV{'REQUEST_URI'}=~m|^/adm/navmaps|) { return ''; }
                    143:     return(<<ENDUPDATE);
                    144: <form name="navform"></form>
                    145: <script type="text/javascript">
                    146: this.document.navform.action='/adm/navmaps#curloc';
                    147: this.document.navform.target='loncapanav';
                    148: this.document.navform.submit();
                    149: </script>
                    150: ENDUPDATE
                    151: }
1.268     albertel  152: 
1.1       www       153: sub handler {
1.99      bowersj2  154:     my $r = shift;
1.118     bowersj2  155:     real_handler($r);
                    156: }
                    157: 
                    158: sub real_handler {
                    159:     my $r = shift;
1.2       www       160: 
1.51      bowersj2  161:     # Handle header-only request
                    162:     if ($r->header_only) {
                    163:         if ($ENV{'browser.mathml'}) {
1.232     www       164:             &Apache::loncommon::content_type($r,'text/xml');
1.51      bowersj2  165:         } else {
1.232     www       166:             &Apache::loncommon::content_type($r,'text/html');
1.51      bowersj2  167:         }
                    168:         $r->send_http_header;
                    169:         return OK;
                    170:     }
                    171: 
                    172:     # Send header, don't cache this page
                    173:     if ($ENV{'browser.mathml'}) {
1.232     www       174:         &Apache::loncommon::content_type($r,'text/xml');
1.51      bowersj2  175:     } else {
1.232     www       176:         &Apache::loncommon::content_type($r,'text/html');
1.51      bowersj2  177:     }
                    178:     &Apache::loncommon::no_cache($r);
                    179:     $r->send_http_header;
                    180: 
1.281     albertel  181:     my %toplinkitems=();
                    182: 
1.268     albertel  183:     if ($ENV{QUERY_STRING} eq 'collapseExternal') {
                    184: 	&Apache::lonnet::put('environment',{'remotenavmap' => 'off'});
                    185: 	&Apache::lonnet::appenv('environment.remotenavmap' => 'off');
1.275     albertel  186: 	my $menu=&Apache::lonmenu::reopenmenu();
                    187: 	my $navstatus=&Apache::lonmenu::get_nav_status();
                    188: 	if ($menu) {
                    189: 	    $menu=(<<MENU)
                    190:              swmenu=$menu
                    191:              swmenu.clearTimeout(swmenu.menucltim);
                    192: 	     $navstatus
                    193: MENU
1.280     albertel  194:         } else {
                    195: 	    my $nothing = &Apache::lonhtmlcommon::javascript_nothing();
                    196: 	    my $mainwindow='window.open('.$nothing.',"loncapaclient","",false);';
                    197: 	    $menu=(<<MENU)
                    198:              swmenu=$mainwindow
                    199: 	     $navstatus
                    200: MENU
1.275     albertel  201: 	}
1.268     albertel  202: 	$r->print(<<"ENDSUBM");
                    203: 	<html>
                    204:         <head>
                    205: 	  <script type="text/javascript">
                    206:  	    function submitthis() {
1.275     albertel  207: 		    $menu
1.268     albertel  208: 		    self.close();
                    209: 	    }
1.275     albertel  210: 	
1.268     albertel  211:   	  </script>
                    212:         </head>
                    213: 	<body bgcolor="#FFFFFF" onLoad="submitthis()"></body>
                    214:         </html>
                    215: ENDSUBM
                    216:         return;
                    217:     }
                    218:     if ($ENV{QUERY_STRING} eq 'launchExternal') {
                    219: 	&Apache::lonnet::put('environment',{'remotenavmap' => 'on'});
                    220: 	&Apache::lonnet::appenv('environment.remotenavmap' => 'on');
                    221:     }
                    222: 
1.106     bowersj2  223:     # Create the nav map
1.221     bowersj2  224:     my $navmap = Apache::lonnavmaps::navmap->new();
1.51      bowersj2  225: 
1.55      bowersj2  226:     if (!defined($navmap)) {
                    227:         my $requrl = $r->uri;
                    228:         $ENV{'user.error.msg'} = "$requrl:bre:0:0:Course not initialized";
                    229:         return HTTP_NOT_ACCEPTABLE;
                    230:     }
1.64      bowersj2  231: 
1.111     bowersj2  232:     $r->print("<html><head>\n");
1.229     www       233:     $r->print("<title>".&mt('Navigate Course Contents')."</title>");
1.150     www       234: # ------------------------------------------------------------ Get query string
1.276     albertel  235:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['register','sort','showOnlyHomework']);
1.158     bowersj2  236:     
1.150     www       237: # ----------------------------------------------------- Force menu registration
                    238:     my $addentries='';
1.268     albertel  239:     my $more_unload;
1.278     albertel  240:     my $body_only='';
1.268     albertel  241:     if ($ENV{'environment.remotenavmap'} eq 'on') {
                    242: 	$r->print('<script type="text/javascript">
                    243:                       function collapse() {
                    244:                          this.document.location="/adm/navmaps?collapseExternal";
                    245:                       }
                    246:                    </script>');
                    247: # FIXME need to be smarter to only catch window close events
                    248: #	$more_unload="collapse()"
1.278     albertel  249: 	$body_only=1;
1.268     albertel  250:     }
1.150     www       251:     if ($ENV{'form.register'}) {
1.268     albertel  252: 	$addentries=' onLoad="'.&Apache::lonmenu::loadevents().
                    253: 	    '" onUnload="'.&Apache::lonmenu::unloadevents().';'.
                    254: 	    $more_unload.'"';
                    255: 	$r->print(&Apache::lonmenu::registerurl(1));
                    256:     } else {
                    257: 	$addentries=' onUnload="'.$more_unload.'"';
1.150     www       258:     }
1.111     bowersj2  259: 
1.64      bowersj2  260:     # Header
1.150     www       261:     $r->print('</head>'.
                    262:               &Apache::loncommon::bodytag('Navigate Course Contents','',
1.278     albertel  263: 					  $addentries,$body_only,'',
                    264: 					  $ENV{'form.register'}));
1.283     raeburn   265:     $r->print('<script>window.focus();</script>');
1.265     albertel  266:      
1.124     bowersj2  267:     $r->rflush();
                    268: 
1.55      bowersj2  269:     # Check that it's defined
                    270:     if (!($navmap->courseMapDefined())) {
1.283     raeburn   271: 	$r->print(&Apache::loncommon::help_open_menu('','Navigation Screen','Navigation_Screen','',undef,'RAT'));
1.55      bowersj2  272:         $r->print('<font size="+2" color="red">Coursemap undefined.</font>' .
                    273:                   '</body></html>');
                    274:         return OK;
                    275:     }
                    276: 
1.178     bowersj2  277:     # See if there's only one map in the top-level, if we don't
                    278:     # already have a filter... if so, automatically display it
1.222     bowersj2  279:     # (older code; should use retrieveResources)
1.179     bowersj2  280:     if ($ENV{QUERY_STRING} !~ /filter/) {
1.178     bowersj2  281:         my $iterator = $navmap->getIterator(undef, undef, undef, 0);
1.222     bowersj2  282:         my $curRes;
1.178     bowersj2  283:         my $sequenceCount = 0;
                    284:         my $sequenceId;
1.222     bowersj2  285:         while ($curRes = $iterator->next()) {
1.178     bowersj2  286:             if (ref($curRes) && $curRes->is_sequence()) {
                    287:                 $sequenceCount++;
                    288:                 $sequenceId = $curRes->map_pc();
1.179     bowersj2  289:             }
1.178     bowersj2  290:         }
                    291:         
                    292:         if ($sequenceCount == 1) {
                    293:             # The automatic iterator creation in the render call 
                    294:             # will pick this up. We know the condition because
                    295:             # the defined($ENV{'form.filter'}) also ensures this
                    296:             # is a fresh call.
                    297:             $ENV{'form.filter'} = "$sequenceId";
1.155     bowersj2  298:         }
                    299:     }
                    300: 
1.268     albertel  301:     if ($ENV{QUERY_STRING} eq 'launchExternal') {
                    302: 	$r->print('
                    303:           <form name="returnwin" action="/adm/flip?postdata=return%3a" 
                    304:                 method="post" target="loncapaclient">
                    305:           </form>');
                    306: 	$r->print('
                    307:           <script type="text/javascript">
                    308:               this.document.returnwin.submit();
                    309:           </script>');
                    310:     }
                    311: 
                    312:     if ($ENV{'environment.remotenavmap'} ne 'on') {
1.281     albertel  313: 	$r->print(&launch_win('link','yes',\%toplinkitems));
1.268     albertel  314:     } 
                    315:     if ($ENV{'environment.remotenavmap'} eq 'on') {
1.281     albertel  316: 	&add_linkitem(\%toplinkitems,'closenav','collapse()',
                    317: 		      "Close navigation window");
1.268     albertel  318:     } 
                    319: 
1.191     bowersj2  320:     my $jumpToFirstHomework = 0;
1.184     bowersj2  321:     # Check to see if the student is jumping to next open, do-able problem
1.281     albertel  322:     if ($ENV{QUERY_STRING} =~ /^jumpToFirstHomework/) {
1.191     bowersj2  323:         $jumpToFirstHomework = 1;
1.184     bowersj2  324:         # Find the next homework problem that they can do.
                    325:         my $iterator = $navmap->getIterator(undef, undef, undef, 1);
1.222     bowersj2  326:         my $curRes;
1.184     bowersj2  327:         my $foundDoableProblem = 0;
                    328:         my $problemRes;
                    329:         
1.222     bowersj2  330:         while (($curRes = $iterator->next()) && !$foundDoableProblem) {
1.184     bowersj2  331:             if (ref($curRes) && $curRes->is_problem()) {
                    332:                 my $status = $curRes->status();
1.191     bowersj2  333:                 if ($curRes->completable()) {
1.184     bowersj2  334:                     $problemRes = $curRes;
                    335:                     $foundDoableProblem = 1;
                    336: 
                    337:                     # Pop open all previous maps
                    338:                     my $stack = $iterator->getStack();
                    339:                     pop @$stack; # last resource in the stack is the problem
                    340:                                  # itself, which we don't need in the map stack
                    341:                     my @mapPcs = map {$_->map_pc()} @$stack;
                    342:                     $ENV{'form.filter'} = join(',', @mapPcs);
                    343: 
                    344:                     # Mark as both "here" and "jump"
                    345:                     $ENV{'form.postsymb'} = $curRes->symb();
                    346:                 }
                    347:             }
                    348:         }
                    349: 
                    350:         # If we found no problems, print a note to that effect.
                    351:         if (!$foundDoableProblem) {
                    352:             $r->print("<font size='+2'>All homework assignments have been completed.</font><br /><br />");
                    353:         }
                    354:     } else {
1.281     albertel  355: 	&add_linkitem(\%toplinkitems,'firsthomework',
                    356: 		      'location.href="navmaps?jumpToFirstHomework"',
1.287     albertel  357: 		      "Show Me My First Homework Problem");
1.184     bowersj2  358:     }
                    359: 
1.191     bowersj2  360:     my $suppressEmptySequences = 0;
                    361:     my $filterFunc = undef;
1.201     bowersj2  362:     my $resource_no_folder_link = 0;
                    363: 
1.191     bowersj2  364:     # Display only due homework.
                    365:     my $showOnlyHomework = 0;
1.276     albertel  366:     if ($ENV{'form.showOnlyHomework'} eq "1") {
1.191     bowersj2  367:         $showOnlyHomework = 1;
                    368:         $suppressEmptySequences = 1;
                    369:         $filterFunc = sub { my $res = shift; 
1.201     bowersj2  370:                             return $res->completable() || $res->is_map();
1.191     bowersj2  371:                         };
1.281     albertel  372: 	&add_linkitem(\%toplinkitems,'everything',
                    373: 		     'location.href="locatnavmaps?sort='.$ENV{'form.sort'}.'"',
                    374: 		      "Show Everything");
1.229     www       375:         $r->print("<p><font size='+2'>".&mt("Uncompleted Homework")."</font></p>");
1.191     bowersj2  376:         $ENV{'form.filter'} = '';
                    377:         $ENV{'form.condition'} = 1;
1.201     bowersj2  378: 	$resource_no_folder_link = 1;
1.191     bowersj2  379:     } else {
1.281     albertel  380: 	&add_linkitem(\%toplinkitems,'uncompleted',
                    381: 		      'location.href="navmaps?sort='.$ENV{'form.sort'}.
                    382: 		          '&showOnlyHomework=1"',
                    383: 		      "Show Only Uncompleted Homework");
1.191     bowersj2  384:     }
                    385: 
1.276     albertel  386:     my %selected=($ENV{'form.sort'} => 'selected=on');
                    387:     my $sort_html=("<form>
1.270     albertel  388:                  <nobr>
1.276     albertel  389:                     <input type=\"hidden\" name=\"showOnlyHomework\" value=\"".$ENV{'form.showOnlyHomework'}."\" />
                    390:                     <input type=\"submit\" value=\"".&mt('Sort by:')."\" />
1.270     albertel  391:                     <select name=\"sort\">
1.276     albertel  392:                        <option value=\"default\" $selected{'default'}>".&mt('Default')."</option>
                    393:                        <option value=\"title\"   $selected{'title'}  >".&mt('Title')."</option>
                    394:                        <option value=\"duedate\" $selected{'duedate'}>".&mt('Duedate')."</option>
1.270     albertel  395:                     </select>
                    396:                  </nobr>
                    397:                </form>");
1.133     bowersj2  398:     # renderer call
1.285     albertel  399:     my $renderArgs = { 'cols' => [0,1,2,3],
1.270     albertel  400: 		       'sort' => $ENV{'form.sort'},
1.191     bowersj2  401:                        'url' => '/adm/navmaps',
                    402:                        'navmap' => $navmap,
                    403:                        'suppressNavmap' => 1,
                    404:                        'suppressEmptySequences' => $suppressEmptySequences,
                    405:                        'filterFunc' => $filterFunc,
1.201     bowersj2  406: 		       'resource_no_folder_link' => $resource_no_folder_link,
1.276     albertel  407: 		       'sort_html'=> $sort_html,
1.281     albertel  408:                        'r' => $r,
                    409:                        'caller' => 'navmapsdisplay',
                    410:                        'linkitems' => \%toplinkitems};
1.191     bowersj2  411:     my $render = render($renderArgs);
                    412:     $navmap->untieHashes();
1.133     bowersj2  413: 
1.191     bowersj2  414:     # If no resources were printed, print a reassuring message so the
                    415:     # user knows there was no error.
                    416:     if ($renderArgs->{'counter'} == 0) {
                    417:         if ($showOnlyHomework) {
1.229     www       418:             $r->print("<p><font size='+1'>".&mt("All homework is currently completed").".</font></p>");
1.191     bowersj2  419:         } else { # both jumpToFirstHomework and normal use the same: course must be empty
                    420:             $r->print("<p><font size='+1'>This course is empty.</font></p>");
                    421:         }
                    422:     }
1.51      bowersj2  423: 
1.128     bowersj2  424:     $r->print("</body></html>");
1.134     bowersj2  425:     $r->rflush();
1.59      bowersj2  426: 
1.51      bowersj2  427:     return OK;
                    428: }
                    429: 
                    430: # Convenience functions: Returns a string that adds or subtracts
                    431: # the second argument from the first hash, appropriate for the 
                    432: # query string that determines which folders to recurse on
                    433: sub addToFilter {
                    434:     my $hashIn = shift;
                    435:     my $addition = shift;
                    436:     my %hash = %$hashIn;
                    437:     $hash{$addition} = 1;
                    438: 
                    439:     return join (",", keys(%hash));
                    440: }
                    441: 
                    442: sub removeFromFilter {
                    443:     my $hashIn = shift;
                    444:     my $subtraction = shift;
                    445:     my %hash = %$hashIn;
                    446: 
                    447:     delete $hash{$subtraction};
                    448:     return join(",", keys(%hash));
                    449: }
                    450: 
                    451: # Convenience function: Given a stack returned from getStack on the iterator,
                    452: # return the correct src() value.
                    453: # Later, this should add an anchor when we start putting anchors in pages.
                    454: sub getLinkForResource {
                    455:     my $stack = shift;
                    456:     my $res;
                    457: 
                    458:     # Check to see if there are any pages in the stack
                    459:     foreach $res (@$stack) {
1.248     www       460:         if (defined($res)) {
                    461: 	    if ($res->is_page()) {
                    462: 		return $res->src();
                    463: 	    }
                    464:             # in case folder was skipped over as "only sequence"
                    465: 	    my ($map,$id,$src)=&Apache::lonnet::decode_symb($res->symb());
                    466: 	    if ($map=~/\.page$/) {
1.249     www       467: 		return &Apache::lonnet::clutter($map).'#'.
                    468: 		    &Apache::lonnet::escape(&Apache::lonnet::declutter($src));
1.248     www       469: 	    }
1.51      bowersj2  470:         }
                    471:     }
                    472: 
                    473:     # Failing that, return the src of the last resource that is defined
                    474:     # (when we first recurse on a map, it puts an undefined resource
                    475:     # on the bottom because $self->{HERE} isn't defined yet, and we
                    476:     # want the src for the map anyhow)
                    477:     foreach (@$stack) {
                    478:         if (defined($_)) { $res = $_; }
                    479:     }
                    480: 
                    481:     return $res->src();
                    482: }
                    483: 
1.251     www       484: # Convenience function: This separates the logic of how to create
1.53      bowersj2  485: # the problem text strings ("Due: DATE", "Open: DATE", "Not yet assigned",
1.251     www       486: # etc.) into a separate function. It takes a resource object as the
1.53      bowersj2  487: # first parameter, and the part number of the resource as the second.
                    488: # It's basically a big switch statement on the status of the resource.
                    489: 
                    490: sub getDescription {
                    491:     my $res = shift;
                    492:     my $part = shift;
1.69      bowersj2  493:     my $status = $res->status($part);
1.53      bowersj2  494: 
1.182     bowersj2  495:     if ($status == $res->NETWORK_FAILURE) { 
1.229     www       496:         return &mt("Having technical difficulties; please check status later"); 
1.182     bowersj2  497:     }
1.53      bowersj2  498:     if ($status == $res->NOTHING_SET) {
1.229     www       499:         return &mt("Not currently assigned.");
1.53      bowersj2  500:     }
                    501:     if ($status == $res->OPEN_LATER) {
1.73      bowersj2  502:         return "Open " . timeToHumanString($res->opendate($part));
1.53      bowersj2  503:     }
                    504:     if ($status == $res->OPEN) {
1.79      bowersj2  505:         if ($res->duedate($part)) {
1.229     www       506:             return &mt("Due")."  " .timeToHumanString($res->duedate($part));
1.66      bowersj2  507:         } else {
1.229     www       508:             return &mt("Open, no due date");
1.66      bowersj2  509:         }
1.53      bowersj2  510:     }
1.54      bowersj2  511:     if ($status == $res->PAST_DUE_ANSWER_LATER) {
1.229     www       512:         return &mt("Answer open")." " . timeToHumanString($res->answerdate($part));
1.54      bowersj2  513:     }
                    514:     if ($status == $res->PAST_DUE_NO_ANSWER) {
1.229     www       515:         return &mt("Was due")." " . timeToHumanString($res->duedate($part));
1.53      bowersj2  516:     }
                    517:     if ($status == $res->ANSWER_OPEN) {
1.229     www       518:         return &mt("Answer available");
1.53      bowersj2  519:     }
1.59      bowersj2  520:     if ($status == $res->EXCUSED) {
1.229     www       521:         return &mt("Excused by instructor");
1.59      bowersj2  522:     }
1.69      bowersj2  523:     if ($status == $res->ATTEMPTED) {
1.229     www       524:         return &mt("Answer submitted, not yet graded");
1.69      bowersj2  525:     }
1.59      bowersj2  526:     if ($status == $res->TRIES_LEFT) {
1.79      bowersj2  527:         my $tries = $res->tries($part);
                    528:         my $maxtries = $res->maxtries($part);
                    529:         my $triesString = "";
                    530:         if ($tries && $maxtries) {
                    531:             $triesString = "<font size=\"-1\"><i>($tries of $maxtries tries used)</i></font>";
                    532:             if ($maxtries > 1 && $maxtries - $tries == 1) {
                    533:                 $triesString = "<b>$triesString</b>";
                    534:             }
                    535:         }
1.244     albertel  536:         if ($res->duedate($part)) {
1.229     www       537:             return &mt("Due")." " . timeToHumanString($res->duedate($part)) .
1.66      bowersj2  538:                 " $triesString";
                    539:         } else {
1.229     www       540:             return &mt("No due date")." $triesString";
1.66      bowersj2  541:         }
1.59      bowersj2  542:     }
1.185     bowersj2  543:     if ($status == $res->ANSWER_SUBMITTED) {
1.229     www       544:         return &mt('Answer submitted');
1.185     bowersj2  545:     }
1.53      bowersj2  546: }
                    547: 
1.115     bowersj2  548: # Convenience function, so others can use it: Is the problem due in less then
                    549: # 24 hours, and still can be done?
                    550: 
1.252     matthew   551: sub dueInLessThan24Hours {
1.115     bowersj2  552:     my $res = shift;
                    553:     my $part = shift;
                    554:     my $status = $res->status($part);
                    555: 
1.207     bowersj2  556:     return ($status == $res->OPEN() ||
1.115     bowersj2  557:             $status == $res->TRIES_LEFT()) &&
1.244     albertel  558: 	    $res->duedate($part) && $res->duedate($part) < time()+(24*60*60) &&
                    559: 	    $res->duedate($part) > time();
1.115     bowersj2  560: }
                    561: 
                    562: # Convenience function, so others can use it: Is there only one try remaining for the
                    563: # part, with more then one try to begin with, not due yet and still can be done?
                    564: sub lastTry {
                    565:     my $res = shift;
                    566:     my $part = shift;
                    567: 
                    568:     my $tries = $res->tries($part);
                    569:     my $maxtries = $res->maxtries($part);
                    570:     return $tries && $maxtries && $maxtries > 1 &&
1.244     albertel  571:         $maxtries - $tries == 1 && $res->duedate($part) &&
                    572:         $res->duedate($part) > time();
1.115     bowersj2  573: }
                    574: 
1.101     bowersj2  575: # This puts a human-readable name on the ENV variable.
1.177     www       576: 
1.68      bowersj2  577: sub advancedUser {
1.177     www       578:     return $ENV{'request.role.adv'};
1.68      bowersj2  579: }
                    580: 
1.73      bowersj2  581: 
                    582: # timeToHumanString takes a time number and converts it to a
                    583: # human-readable representation, meant to be used in the following
                    584: # manner:
                    585: # print "Due $timestring"
                    586: # print "Open $timestring"
                    587: # print "Answer available $timestring"
                    588: # Very, very, very, VERY English-only... goodness help a localizer on
                    589: # this func...
1.53      bowersj2  590: sub timeToHumanString {
1.58      albertel  591:     my ($time) = @_;
                    592:     # zero, '0' and blank are bad times
1.73      bowersj2  593:     if (!$time) {
1.229     www       594:         return &mt('never');
1.73      bowersj2  595:     }
1.231     www       596:     unless (&Apache::lonlocal::current_language()=~/^en/) {
1.237     www       597: 	return &Apache::lonlocal::locallocaltime($time);
1.229     www       598:     } 
1.73      bowersj2  599:     my $now = time();
                    600: 
                    601:     my @time = localtime($time);
                    602:     my @now = localtime($now);
                    603: 
                    604:     # Positive = future
                    605:     my $delta = $time - $now;
                    606: 
                    607:     my $minute = 60;
                    608:     my $hour = 60 * $minute;
                    609:     my $day = 24 * $hour;
                    610:     my $week = 7 * $day;
                    611:     my $inPast = 0;
                    612: 
                    613:     # Logic in comments:
                    614:     # Is it now? (extremely unlikely)
                    615:     if ( $delta == 0 ) {
                    616:         return "this instant";
                    617:     }
                    618: 
                    619:     if ($delta < 0) {
                    620:         $inPast = 1;
                    621:         $delta = -$delta;
                    622:     }
                    623: 
                    624:     if ( $delta > 0 ) {
1.101     bowersj2  625: 
1.73      bowersj2  626:         my $tense = $inPast ? " ago" : "";
                    627:         my $prefix = $inPast ? "" : "in ";
1.101     bowersj2  628:         
                    629:         # Less then a minute
1.73      bowersj2  630:         if ( $delta < $minute ) {
                    631:             if ($delta == 1) { return "${prefix}1 second$tense"; }
                    632:             return "$prefix$delta seconds$tense";
                    633:         }
                    634: 
1.101     bowersj2  635:         # Less then an hour
1.73      bowersj2  636:         if ( $delta < $hour ) {
                    637:             # If so, use minutes
                    638:             my $minutes = floor($delta / 60);
                    639:             if ($minutes == 1) { return "${prefix}1 minute$tense"; }
                    640:             return "$prefix$minutes minutes$tense";
                    641:         }
                    642:         
                    643:         # Is it less then 24 hours away? If so,
                    644:         # display hours + minutes
                    645:         if ( $delta < $hour * 24) {
                    646:             my $hours = floor($delta / $hour);
                    647:             my $minutes = floor(($delta % $hour) / $minute);
                    648:             my $hourString = "$hours hours";
                    649:             my $minuteString = ", $minutes minutes";
                    650:             if ($hours == 1) {
                    651:                 $hourString = "1 hour";
                    652:             }
                    653:             if ($minutes == 1) {
                    654:                 $minuteString = ", 1 minute";
                    655:             }
                    656:             if ($minutes == 0) {
                    657:                 $minuteString = "";
                    658:             }
                    659:             return "$prefix$hourString$minuteString$tense";
                    660:         }
                    661: 
                    662:         # Less then 5 days away, display day of the week and
                    663:         # HH:MM
                    664:         if ( $delta < $day * 5 ) {
1.85      bowersj2  665:             my $timeStr = strftime("%A, %b %e at %I:%M %P", localtime($time));
1.238     albertel  666:             $timeStr =~ s/12:00 am/00:00/;
1.73      bowersj2  667:             $timeStr =~ s/12:00 pm/noon/;
                    668:             return ($inPast ? "last " : "next ") .
                    669:                 $timeStr;
                    670:         }
                    671:         
                    672:         # Is it this year?
                    673:         if ( $time[5] == $now[5]) {
                    674:             # Return on Month Day, HH:MM meridian
                    675:             my $timeStr = strftime("on %A, %b %e at %I:%M %P", localtime($time));
1.238     albertel  676:             $timeStr =~ s/12:00 am/00:00/;
1.73      bowersj2  677:             $timeStr =~ s/12:00 pm/noon/;
                    678:             return $timeStr;
                    679:         }
                    680: 
                    681:         # Not this year, so show the year
1.279     albertel  682:         my $timeStr = strftime("on %A, %b %e %Y at %I:%M %P", localtime($time));
1.238     albertel  683:         $timeStr =~ s/12:00 am/00:00/;
1.73      bowersj2  684:         $timeStr =~ s/12:00 pm/noon/;
                    685:         return $timeStr;
1.58      albertel  686:     }
1.53      bowersj2  687: }
                    688: 
1.51      bowersj2  689: 
1.133     bowersj2  690: =pod
                    691: 
1.174     albertel  692: =head1 NAME
                    693: 
1.217     bowersj2  694: Apache::lonnavmap - Subroutines to handle and render the navigation
                    695:     maps
1.174     albertel  696: 
                    697: =head1 SYNOPSIS
                    698: 
                    699: The main handler generates the navigational listing for the course,
                    700: the other objects export this information in a usable fashion for
1.205     bowersj2  701: other modules.
1.133     bowersj2  702: 
1.216     bowersj2  703: =head1 OVERVIEW
                    704: 
1.217     bowersj2  705: X<lonnavmaps, overview> When a user enters a course, LON-CAPA examines the
1.218     bowersj2  706: course structure and caches it in what is often referred to as the
                    707: "big hash" X<big hash>. You can see it if you are logged into
                    708: LON-CAPA, in a course, by going to /adm/test. (You may need to
                    709: tweak the /home/httpd/lonTabs/htpasswd file to view it.) The
                    710: content of the hash will be under the heading "Big Hash".
1.216     bowersj2  711: 
                    712: Big Hash contains, among other things, how resources are related
                    713: to each other (next/previous), what resources are maps, which 
                    714: resources are being chosen to not show to the student (for random
                    715: selection), and a lot of other things that can take a lot of time
                    716: to compute due to the amount of data that needs to be collected and
                    717: processed.
                    718: 
                    719: Apache::lonnavmaps provides an object model for manipulating this
                    720: information in a higher-level fashion then directly manipulating 
                    721: the hash. It also provides access to several auxilary functions 
                    722: that aren't necessarily stored in the Big Hash, but are a per-
                    723: resource sort of value, like whether there is any feedback on 
                    724: a given resource.
                    725: 
                    726: Apache::lonnavmaps also abstracts away branching, and someday, 
                    727: conditions, for the times where you don't really care about those
                    728: things.
                    729: 
                    730: Apache::lonnavmaps also provides fairly powerful routines for
                    731: rendering navmaps, and last but not least, provides the navmaps
                    732: view for when the user clicks the NAV button.
                    733: 
                    734: B<Note>: Apache::lonnavmaps I<only> works for the "currently
                    735: logged in user"; if you want things like "due dates for another
                    736: student" lonnavmaps can not directly retrieve information like
                    737: that. You need the EXT function. This module can still help,
                    738: because many things, such as the course structure, are constant
                    739: between users, and Apache::lonnavmaps can help by providing
                    740: symbs for the EXT call.
                    741: 
                    742: The rest of this file will cover the provided rendering routines, 
                    743: which can often be used without fiddling with the navmap object at
                    744: all, then documents the Apache::lonnavmaps::navmap object, which
                    745: is the key to accessing the Big Hash information, covers the use
                    746: of the Iterator (which provides the logic for traversing the 
                    747: somewhat-complicated Big Hash data structure), documents the
                    748: Apache::lonnavmaps::Resource objects that are returned by 
                    749: 
1.205     bowersj2  750: =head1 Subroutine: render
1.133     bowersj2  751: 
1.174     albertel  752: The navmap renderer package provides a sophisticated rendering of the
                    753: standard navigation maps interface into HTML. The provided nav map
                    754: handler is actually just a glorified call to this.
1.133     bowersj2  755: 
1.216     bowersj2  756: Because of the large number of parameters this function accepts,
1.174     albertel  757: instead of passing it arguments as is normal, pass it in an anonymous
1.216     bowersj2  758: hash with the desired options.
1.174     albertel  759: 
                    760: The package provides a function called 'render', called as
1.205     bowersj2  761: Apache::lonnavmaps::render({}).
1.51      bowersj2  762: 
1.133     bowersj2  763: =head2 Overview of Columns
1.51      bowersj2  764: 
1.174     albertel  765: The renderer will build an HTML table for the navmap and return
                    766: it. The table is consists of several columns, and a row for each
                    767: resource (or possibly each part). You tell the renderer how many
                    768: columns to create and what to place in each column, optionally using
1.205     bowersj2  769: one or more of the prepared columns, and the renderer will assemble
1.174     albertel  770: the table.
                    771: 
                    772: Any additional generally useful column types should be placed in the
                    773: renderer code here, so anybody can use it anywhere else. Any code
                    774: specific to the current application (such as the addition of <input>
                    775: elements in a column) should be placed in the code of the thing using
                    776: the renderer.
                    777: 
                    778: At the core of the renderer is the array reference COLS (see Example
                    779: section below for how to pass this correctly). The COLS array will
                    780: consist of entries of one of two types of things: Either an integer
                    781: representing one of the pre-packaged column types, or a sub reference
                    782: that takes a resource reference, a part number, and a reference to the
                    783: argument hash passed to the renderer, and returns a string that will
                    784: be inserted into the HTML representation as it.
                    785: 
1.216     bowersj2  786: All other parameters are ways of either changing how the columns
                    787: are printing, or which rows are shown.
                    788: 
1.174     albertel  789: The pre-packaged column names are refered to by constants in the
1.205     bowersj2  790: Apache::lonnavmaps namespace. The following currently exist:
1.51      bowersj2  791: 
1.174     albertel  792: =over 4
1.51      bowersj2  793: 
1.216     bowersj2  794: =item * B<Apache::lonnavmaps::resource>:
1.51      bowersj2  795: 
1.174     albertel  796: The general info about the resource: Link, icon for the type, etc. The
1.216     bowersj2  797: first column in the standard nav map display. This column provides the
                    798: indentation effect seen in the B<NAV> screen. This column also accepts
1.205     bowersj2  799: the following parameters in the renderer hash:
1.51      bowersj2  800: 
1.133     bowersj2  801: =over 4
1.51      bowersj2  802: 
1.216     bowersj2  803: =item * B<resource_nolink>: default false
1.51      bowersj2  804: 
1.216     bowersj2  805: If true, the resource will not be linked. By default, all non-folder
                    806: resources are linked.
1.174     albertel  807: 
1.216     bowersj2  808: =item * B<resource_part_count>: default true
1.51      bowersj2  809: 
1.216     bowersj2  810: If true, the resource will show a part count B<if> the full
                    811: part list is not displayed. (See "condense_parts" later.) If false,
                    812: the resource will never show a part count.
1.133     bowersj2  813: 
1.174     albertel  814: =item * B<resource_no_folder_link>:
1.133     bowersj2  815: 
1.174     albertel  816: If true, the resource's folder will not be clickable to open or close
                    817: it. Default is false. True implies printCloseAll is false, since you
                    818: can't close or open folders when this is on anyhow.
1.144     bowersj2  819: 
1.133     bowersj2  820: =back
1.51      bowersj2  821: 
1.225     bowersj2  822: =item * B<Apache::lonnavmaps::communication_status>:
1.174     albertel  823: 
                    824: Whether there is discussion on the resource, email for the user, or
                    825: (lumped in here) perl errors in the execution of the problem. This is
                    826: the second column in the main nav map.
                    827: 
1.225     bowersj2  828: =item * B<Apache::lonnavmaps::quick_status>:
1.51      bowersj2  829: 
1.216     bowersj2  830: An icon for the status of a problem, with five possible states:
                    831: Correct, incorrect, open, awaiting grading (for a problem where the
                    832: computer's grade is suppressed, or the computer can't grade, like
                    833: essay problem), or none (not open yet, not a problem). The
1.174     albertel  834: third column of the standard navmap.
1.51      bowersj2  835: 
1.225     bowersj2  836: =item * B<Apache::lonnavmaps::long_status>:
1.174     albertel  837: 
                    838: A text readout of the details of the current status of the problem,
                    839: such as "Due in 22 hours". The fourth column of the standard navmap.
1.51      bowersj2  840: 
1.225     bowersj2  841: =item * B<Apache::lonnavmaps::part_status_summary>:
                    842: 
                    843: A text readout summarizing the status of the problem. If it is a
                    844: single part problem, will display "Correct", "Incorrect", 
                    845: "Not yet open", "Open", "Attempted", or "Error". If there are
                    846: multiple parts, this will output a string that in HTML will show a
                    847: status of how many parts are in each status, in color coding, trying
                    848: to match the colors of the icons within reason.
                    849: 
                    850: Note this only makes sense if you are I<not> showing parts. If 
                    851: C<showParts> is true (see below), this column will not output
                    852: anything. 
                    853: 
1.133     bowersj2  854: =back
1.51      bowersj2  855: 
1.133     bowersj2  856: If you add any others please be sure to document them here.
1.51      bowersj2  857: 
1.174     albertel  858: An example of a column renderer that will show the ID number of a
                    859: resource, along with the part name if any:
1.51      bowersj2  860: 
1.133     bowersj2  861:  sub { 
                    862:   my ($resource, $part, $params) = @_;   
                    863:   if ($part) { return '<td>' . $resource->{ID} . ' ' . $part . '</td>'; }
                    864:   return '<td>' . $resource->{ID} . '</td>';
                    865:  }
1.51      bowersj2  866: 
1.174     albertel  867: Note these functions are responsible for the TD tags, which allow them
                    868: to override vertical and horizontal alignment, etc.
1.130     www       869: 
1.133     bowersj2  870: =head2 Parameters
1.115     bowersj2  871: 
1.217     bowersj2  872: Minimally, you should be
1.174     albertel  873: able to get away with just using 'cols' (to specify the columns
                    874: shown), 'url' (necessary for the folders to link to the current screen
                    875: correctly), and possibly 'queryString' if your app calls for it. In
                    876: that case, maintaining the state of the folders will be done
                    877: automatically.
1.140     bowersj2  878: 
1.133     bowersj2  879: =over 4
1.51      bowersj2  880: 
1.216     bowersj2  881: =item * B<iterator>: default: constructs one from %ENV
1.174     albertel  882: 
                    883: A reference to a fresh ::iterator to use from the navmaps. The
                    884: rendering will reflect the options passed to the iterator, so you can
                    885: use that to just render a certain part of the course, if you like. If
                    886: one is not passed, the renderer will attempt to construct one from
                    887: ENV{'form.filter'} and ENV{'form.condition'} information, plus the
                    888: 'iterator_map' parameter if any.
                    889: 
1.216     bowersj2  890: =item * B<iterator_map>: default: not used
1.174     albertel  891: 
                    892: If you are letting the renderer do the iterator handling, you can
                    893: instruct the renderer to render only a particular map by passing it
                    894: the source of the map you want to process, like
                    895: '/res/103/jerf/navmap.course.sequence'.
                    896: 
1.216     bowersj2  897: =item * B<navmap>: default: constructs one from %ENV
1.174     albertel  898: 
                    899: A reference to a navmap, used only if an iterator is not passed in. If
                    900: this is necessary to make an iterator but it is not passed in, a new
                    901: one will be constructed based on ENV info. This is useful to do basic
                    902: error checking before passing it off to render.
                    903: 
1.216     bowersj2  904: =item * B<r>: default: must be passed in
1.174     albertel  905: 
                    906: The standard Apache response object. This must be passed to the
                    907: renderer or the course hash will be locked.
                    908: 
1.216     bowersj2  909: =item * B<cols>: default: empty (useless)
1.174     albertel  910: 
                    911: An array reference
                    912: 
1.216     bowersj2  913: =item * B<showParts>:default true
1.174     albertel  914: 
1.216     bowersj2  915: A flag. If true, a line for the resource itself, and a line
1.174     albertel  916: for each part will be displayed. If not, only one line for each
                    917: resource will be displayed.
                    918: 
1.216     bowersj2  919: =item * B<condenseParts>: default true
1.174     albertel  920: 
1.216     bowersj2  921: A flag. If true, if all parts of the problem have the same
1.174     albertel  922: status and that status is Nothing Set, Correct, or Network Failure,
                    923: then only one line will be displayed for that resource anyhow. If no,
                    924: all parts will always be displayed. If showParts is 0, this is
                    925: ignored.
                    926: 
1.216     bowersj2  927: =item * B<jumpCount>: default: determined from %ENV
1.174     albertel  928: 
1.216     bowersj2  929: A string identifying the URL to place the anchor 'curloc' at.
                    930: It is the responsibility of the renderer user to
1.174     albertel  931: ensure that the #curloc is in the URL. By default, determined through
                    932: the use of the ENV{} 'jump' information, and should normally "just
                    933: work" correctly.
1.144     bowersj2  934: 
1.216     bowersj2  935: =item * B<here>: default: empty string
1.140     bowersj2  936: 
1.216     bowersj2  937: A Symb identifying where to place the 'here' marker. The empty
                    938: string means no marker.
1.92      bowersj2  939: 
1.216     bowersj2  940: =item * B<indentString>: default: 25 pixel whitespace image
1.164     bowersj2  941: 
1.216     bowersj2  942: A string identifying the indentation string to use. 
1.92      bowersj2  943: 
1.216     bowersj2  944: =item * B<queryString>: default: empty
1.51      bowersj2  945: 
1.174     albertel  946: A string which will be prepended to the query string used when the
1.216     bowersj2  947: folders are opened or closed. You can use this to pass
                    948: application-specific values.
1.55      bowersj2  949: 
1.216     bowersj2  950: =item * B<url>: default: none
1.84      bowersj2  951: 
1.174     albertel  952: The url the folders will link to, which should be the current
1.216     bowersj2  953: page. Required if the resource info column is shown, and you 
                    954: are allowing the user to open and close folders.
1.115     bowersj2  955: 
1.216     bowersj2  956: =item * B<currentJumpIndex>: default: no jumping
1.55      bowersj2  957: 
1.174     albertel  958: Describes the currently-open row number to cause the browser to jump
                    959: to, because the user just opened that folder. By default, pulled from
                    960: the Jump information in the ENV{'form.*'}.
1.51      bowersj2  961: 
1.216     bowersj2  962: =item * B<printKey>: default: false
1.51      bowersj2  963: 
1.174     albertel  964: If true, print the key that appears on the top of the standard
1.216     bowersj2  965: navmaps.
1.139     bowersj2  966: 
1.216     bowersj2  967: =item * B<printCloseAll>: default: true
1.140     bowersj2  968: 
1.174     albertel  969: If true, print the "Close all folders" or "open all folders"
1.216     bowersj2  970: links.
1.140     bowersj2  971: 
1.216     bowersj2  972: =item * B<filterFunc>: default: sub {return 1;} (accept everything)
1.153     bowersj2  973: 
1.174     albertel  974: A function that takes the resource object as its only parameter and
                    975: returns a true or false value. If true, the resource is displayed. If
1.216     bowersj2  976: false, it is simply skipped in the display.
1.174     albertel  977: 
1.216     bowersj2  978: =item * B<suppressEmptySequences>: default: false
1.190     bowersj2  979: 
                    980: If you're using a filter function, and displaying sequences to orient
                    981: the user, then frequently some sequences will be empty. Setting this to
                    982: true will cause those sequences not to display, so as not to confuse the
                    983: user into thinking that if the sequence is there there should be things
1.216     bowersj2  984: under it; for example, see the "Show Uncompleted Homework" view on the
                    985: B<NAV> screen.
1.190     bowersj2  986: 
1.216     bowersj2  987: =item * B<suppressNavmaps>: default: false
1.174     albertel  988: 
1.216     bowersj2  989: If true, will not display Navigate Content resources. 
1.143     bowersj2  990: 
1.133     bowersj2  991: =back
1.51      bowersj2  992: 
1.133     bowersj2  993: =head2 Additional Info
1.51      bowersj2  994: 
1.174     albertel  995: In addition to the parameters you can pass to the renderer, which will
                    996: be passed through unchange to the column renderers, the renderer will
                    997: generate the following information which your renderer may find
                    998: useful:
                    999: 
1.216     bowersj2 1000: =over 4
                   1001: 
                   1002: =item * B<counter>: 
1.145     bowersj2 1003: 
1.216     bowersj2 1004: Contains the number of rows printed. Useful after calling the render 
                   1005: function, as you can detect whether anything was printed at all.
                   1006: 
                   1007: =item * B<isNewBranch>:
                   1008: 
                   1009: Useful for renderers: If this resource is currently the first resource
                   1010: of a new branch, this will be true. The Resource column (leftmost in the
                   1011: navmaps screen) uses this to display the "new branch" icon 
1.59      bowersj2 1012: 
1.133     bowersj2 1013: =back
1.59      bowersj2 1014: 
1.133     bowersj2 1015: =cut
1.59      bowersj2 1016: 
1.133     bowersj2 1017: sub resource { return 0; }
                   1018: sub communication_status { return 1; }
                   1019: sub quick_status { return 2; }
                   1020: sub long_status { return 3; }
1.225     bowersj2 1021: sub part_status_summary { return 4; }
1.51      bowersj2 1022: 
1.133     bowersj2 1023: sub render_resource {
                   1024:     my ($resource, $part, $params) = @_;
1.51      bowersj2 1025: 
1.133     bowersj2 1026:     my $nonLinkedText = ''; # stuff after resource title not in link
1.51      bowersj2 1027: 
1.134     bowersj2 1028:     my $link = $params->{"resourceLink"};
                   1029:     my $src = $resource->src();
                   1030:     my $it = $params->{"iterator"};
1.133     bowersj2 1031:     my $filter = $it->{FILTER};
                   1032: 
                   1033:     my $title = $resource->compTitle();
1.258     albertel 1034: 
1.133     bowersj2 1035:     my $partLabel = "";
                   1036:     my $newBranchText = "";
                   1037:     
                   1038:     # If this is a new branch, label it so
                   1039:     if ($params->{'isNewBranch'}) {
                   1040:         $newBranchText = "<img src='/adm/lonIcons/branch.gif' border='0' />";
1.51      bowersj2 1041:     }
                   1042: 
1.133     bowersj2 1043:     # links to open and close the folder
                   1044:     my $linkopen = "<a href='$link'>";
                   1045:     my $linkclose = "</a>";
1.51      bowersj2 1046: 
1.204     albertel 1047:     # Default icon: unknown page
                   1048:     my $icon = "<img src='/adm/lonIcons/unknown.gif' alt='' border='0' />";
1.133     bowersj2 1049:     
                   1050:     if ($resource->is_problem()) {
1.192     bowersj2 1051:         if ($part eq '0' || $params->{'condensed'}) {
1.133     bowersj2 1052:             $icon = '<img src="/adm/lonIcons/problem.gif" alt="" border="0" />';
                   1053:         } else {
                   1054:             $icon = $params->{'indentString'};
                   1055:         }
1.204     albertel 1056:     } else {
1.243     albertel 1057: 	$icon = "<img src='".&Apache::loncommon::icon($resource->src).
                   1058: 	    "' alt='' border='0' />";
1.133     bowersj2 1059:     }
1.51      bowersj2 1060: 
1.133     bowersj2 1061:     # Display the correct map icon to open or shut map
                   1062:     if ($resource->is_map()) {
                   1063:         my $mapId = $resource->map_pc();
                   1064:         my $nowOpen = !defined($filter->{$mapId});
                   1065:         if ($it->{CONDITION}) {
                   1066:             $nowOpen = !$nowOpen;
                   1067:         }
1.144     bowersj2 1068: 
1.205     bowersj2 1069: 	my $folderType = $resource->is_sequence() ? 'folder' : 'page';
                   1070: 
1.144     bowersj2 1071:         if (!$params->{'resource_no_folder_link'}) {
1.205     bowersj2 1072:             $icon = "navmap.$folderType." . ($nowOpen ? 'closed' : 'open') . '.gif';
1.144     bowersj2 1073:             $icon = "<img src='/adm/lonIcons/$icon' alt='' border='0' />";
                   1074: 
                   1075:             $linkopen = "<a href='" . $params->{'url'} . '?' . 
                   1076:                 $params->{'queryString'} . '&filter=';
                   1077:             $linkopen .= ($nowOpen xor $it->{CONDITION}) ?
                   1078:                 addToFilter($filter, $mapId) :
                   1079:                 removeFromFilter($filter, $mapId);
                   1080:             $linkopen .= "&condition=" . $it->{CONDITION} . '&hereType='
                   1081:                 . $params->{'hereType'} . '&here=' .
                   1082:                 &Apache::lonnet::escape($params->{'here'}) . 
1.159     bowersj2 1083:                 '&jump=' .
1.144     bowersj2 1084:                 &Apache::lonnet::escape($resource->symb()) . 
                   1085:                 "&folderManip=1'>";
                   1086:         } else {
                   1087:             # Don't allow users to manipulate folder
1.205     bowersj2 1088:             $icon = "navmap.$folderType." . ($nowOpen ? 'closed' : 'open') .
1.144     bowersj2 1089:                 '.nomanip.gif';
                   1090:             $icon = "<img src='/adm/lonIcons/$icon' alt='' border='0' />";
                   1091: 
                   1092:             $linkopen = "";
                   1093:             $linkclose = "";
                   1094:         }
1.133     bowersj2 1095:     }
1.51      bowersj2 1096: 
1.133     bowersj2 1097:     if ($resource->randomout()) {
                   1098:         $nonLinkedText .= ' <i>(hidden)</i> ';
                   1099:     }
                   1100:     
                   1101:     # We're done preparing and finally ready to start the rendering
                   1102:     my $result = "<td align='left' valign='center'>";
1.140     bowersj2 1103: 
                   1104:     my $indentLevel = $params->{'indentLevel'};
                   1105:     if ($newBranchText) { $indentLevel--; }
                   1106: 
1.133     bowersj2 1107:     # print indentation
1.140     bowersj2 1108:     for (my $i = 0; $i < $indentLevel; $i++) {
1.133     bowersj2 1109:         $result .= $params->{'indentString'};
1.84      bowersj2 1110:     }
                   1111: 
1.133     bowersj2 1112:     # Decide what to display
                   1113:     $result .= "$newBranchText$linkopen$icon$linkclose";
                   1114:     
                   1115:     my $curMarkerBegin = '';
                   1116:     my $curMarkerEnd = '';
1.51      bowersj2 1117: 
1.133     bowersj2 1118:     # Is this the current resource?
1.158     bowersj2 1119:     if (!$params->{'displayedHereMarker'} && 
                   1120:         $resource->symb() eq $params->{'here'} ) {
1.133     bowersj2 1121:         $curMarkerBegin = '<font color="red" size="+2">&gt; </font>';
                   1122:         $curMarkerEnd = '<font color="red" size="+2">&lt;</font>';
1.158     bowersj2 1123:         $params->{'displayedHereMarker'} = 1;
1.51      bowersj2 1124:     }
                   1125: 
1.192     bowersj2 1126:     if ($resource->is_problem() && $part ne '0' && 
1.133     bowersj2 1127:         !$params->{'condensed'}) {
1.274     matthew  1128: 	my $displaypart=$resource->part_display($part);
1.245     www      1129:         $partLabel = " (Part: $displaypart)";
                   1130: 	$link.='#'.&Apache::lonnet::escape($part);
1.133     bowersj2 1131:         $title = "";
1.51      bowersj2 1132:     }
                   1133: 
1.163     bowersj2 1134:     if ($params->{'condensed'} && $resource->countParts() > 1) {
1.133     bowersj2 1135:         $nonLinkedText .= ' (' . $resource->countParts() . ' parts)';
1.51      bowersj2 1136:     }
                   1137: 
1.268     albertel 1138:     my $target;
                   1139:     if ($ENV{'environment.remotenavmap'} eq 'on') {
                   1140: 	$target=' target="loncapaclient" ';
                   1141:     }
1.266     raeburn  1142:     if (!$params->{'resource_nolink'} && !$resource->is_sequence() && !$resource->is_empty_sequence) {
1.268     albertel 1143:         $result .= "  $curMarkerBegin<a $target href='$link'>$title$partLabel</a>$curMarkerEnd $nonLinkedText</td>";
1.144     bowersj2 1144:     } else {
                   1145:         $result .= "  $curMarkerBegin$title$partLabel$curMarkerEnd $nonLinkedText</td>";
                   1146:     }
1.51      bowersj2 1147: 
1.133     bowersj2 1148:     return $result;
                   1149: }
1.51      bowersj2 1150: 
1.133     bowersj2 1151: sub render_communication_status {
                   1152:     my ($resource, $part, $params) = @_;
1.134     bowersj2 1153:     my $discussionHTML = ""; my $feedbackHTML = ""; my $errorHTML = "";
                   1154: 
                   1155:     my $link = $params->{"resourceLink"};
                   1156:     my $linkopen = "<a href='$link'>";
                   1157:     my $linkclose = "</a>";
                   1158: 
                   1159:     if ($resource->hasDiscussion()) {
                   1160:         $discussionHTML = $linkopen .
                   1161:             '<img border="0" src="/adm/lonMisc/chat.gif" />' .
                   1162:             $linkclose;
                   1163:     }
                   1164:     
                   1165:     if ($resource->getFeedback()) {
                   1166:         my $feedback = $resource->getFeedback();
                   1167:         foreach (split(/\,/, $feedback)) {
                   1168:             if ($_) {
                   1169:                 $feedbackHTML .= '&nbsp;<a href="/adm/email?display='
                   1170:                     . &Apache::lonnet::escape($_) . '">'
                   1171:                     . '<img src="/adm/lonMisc/feedback.gif" '
                   1172:                     . 'border="0" /></a>';
                   1173:             }
                   1174:         }
                   1175:     }
                   1176:     
                   1177:     if ($resource->getErrors()) {
                   1178:         my $errors = $resource->getErrors();
1.254     matthew  1179:         my $errorcount = 0;
1.134     bowersj2 1180:         foreach (split(/,/, $errors)) {
1.254     matthew  1181:             last if ($errorcount>=10); # Only output 10 bombs maximum
1.134     bowersj2 1182:             if ($_) {
1.254     matthew  1183:                 $errorcount++;
1.134     bowersj2 1184:                 $errorHTML .= '&nbsp;<a href="/adm/email?display='
                   1185:                     . &Apache::lonnet::escape($_) . '">'
                   1186:                     . '<img src="/adm/lonMisc/bomb.gif" '
                   1187:                     . 'border="0" /></a>';
                   1188:             }
                   1189:         }
1.197     bowersj2 1190:     }
                   1191: 
                   1192:     if ($params->{'multipart'} && $part != '0') {
                   1193: 	$discussionHTML = $feedbackHTML = $errorHTML = '';
1.134     bowersj2 1194:     }
                   1195: 
                   1196:     return "<td width=\"75\" align=\"left\" valign=\"center\">$discussionHTML$feedbackHTML$errorHTML&nbsp;</td>";
                   1197: 
1.133     bowersj2 1198: }
                   1199: sub render_quick_status {
                   1200:     my ($resource, $part, $params) = @_;
1.135     bowersj2 1201:     my $result = "";
                   1202:     my $firstDisplayed = !$params->{'condensed'} && 
                   1203:         $params->{'multipart'} && $part eq "0";
                   1204: 
                   1205:     my $link = $params->{"resourceLink"};
                   1206:     my $linkopen = "<a href='$link'>";
                   1207:     my $linkclose = "</a>";
                   1208: 
                   1209:     if ($resource->is_problem() &&
                   1210:         !$firstDisplayed) {
1.224     bowersj2 1211: 	
                   1212:         my $icon = $statusIconMap{$resource->simpleStatus($part)};
1.135     bowersj2 1213:         my $alt = $iconAltTags{$icon};
                   1214:         if ($icon) {
                   1215:             $result .= "<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";
                   1216:         } else {
                   1217:             $result .= "<td width='30'>&nbsp;</td>\n";
                   1218:         }
                   1219:     } else { # not problem, no icon
                   1220:         $result .= "<td width='30'>&nbsp;</td>\n";
                   1221:     }
                   1222: 
                   1223:     return $result;
1.133     bowersj2 1224: }
                   1225: sub render_long_status {
                   1226:     my ($resource, $part, $params) = @_;
1.136     bowersj2 1227:     my $result = "<td align='right' valign='center'>\n";
                   1228:     my $firstDisplayed = !$params->{'condensed'} && 
                   1229:         $params->{'multipart'} && $part eq "0";
                   1230:                 
                   1231:     my $color;
1.212     bowersj2 1232:     if ($resource->is_problem()) {
1.136     bowersj2 1233:         $color = $colormap{$resource->status};
                   1234:         
1.252     matthew  1235:         if (dueInLessThan24Hours($resource, $part) ||
1.136     bowersj2 1236:             lastTry($resource, $part)) {
                   1237:             $color = $hurryUpColor;
                   1238:         }
                   1239:     }
                   1240:     
                   1241:     if ($resource->kind() eq "res" &&
                   1242:         $resource->is_problem() &&
                   1243:         !$firstDisplayed) {
                   1244:         if ($color) {$result .= "<font color=\"$color\"><b>"; }
                   1245:         $result .= getDescription($resource, $part);
                   1246:         if ($color) {$result .= "</b></font>"; }
                   1247:     }
                   1248:     if ($resource->is_map() && advancedUser() && $resource->randompick()) {
                   1249:         $result .= '(randomly select ' . $resource->randompick() .')';
                   1250:     }
1.210     bowersj2 1251: 
1.213     bowersj2 1252:     # Debugging code
                   1253:     #$result .= " " . $resource->awarded($part) . '/' . $resource->weight($part) .
                   1254:     #	' - Part: ' . $part;
                   1255: 
1.210     bowersj2 1256:     $result .= "</td>\n";
1.136     bowersj2 1257:     
                   1258:     return $result;
1.51      bowersj2 1259: }
                   1260: 
1.227     bowersj2 1261: # Colors obtained by taking the icons, matching the colors, and
                   1262: # possibly reducing the Value (HSV) of the color, if it's too bright
                   1263: # for text, generally by one third or so.
1.225     bowersj2 1264: my %statusColors = 
                   1265:     (
                   1266:      $resObj->CLOSED => '#000000',
1.227     bowersj2 1267:      $resObj->OPEN   => '#998b13',
                   1268:      $resObj->CORRECT => '#26933f',
                   1269:      $resObj->INCORRECT => '#c48207',
                   1270:      $resObj->ATTEMPTED => '#a87510',
1.225     bowersj2 1271:      $resObj->ERROR => '#000000'
                   1272:      );
                   1273: my %statusStrings = 
                   1274:     (
                   1275:      $resObj->CLOSED => 'Not yet open',
                   1276:      $resObj->OPEN   => 'Open',
                   1277:      $resObj->CORRECT => 'Correct',
                   1278:      $resObj->INCORRECT => 'Incorrect',
                   1279:      $resObj->ATTEMPTED => 'Attempted',
                   1280:      $resObj->ERROR => 'Network Error'
                   1281:      );
                   1282: my @statuses = ($resObj->CORRECT, $resObj->ATTEMPTED, $resObj->INCORRECT, $resObj->OPEN, $resObj->CLOSED, $resObj->ERROR);
                   1283: 
                   1284: use Data::Dumper;
                   1285: sub render_parts_summary_status {
                   1286:     my ($resource, $part, $params) = @_;
1.256     albertel 1287:     if (!$resource->is_problem() && !$resource->contains_problem) { return '<td></td>'; }
1.225     bowersj2 1288:     if ($params->{showParts}) { 
                   1289: 	return '<td></td>';
                   1290:     }
                   1291: 
                   1292:     my $td = "<td align='right'>\n";
                   1293:     my $endtd = "</td>\n";
1.256     albertel 1294:     my @probs;
1.225     bowersj2 1295: 
1.256     albertel 1296:     if ($resource->contains_problem) {
                   1297: 	@probs=$resource->retrieveResources($resource,sub { $_[0]->is_problem() },1,0);
                   1298:     } else {
                   1299: 	@probs=($resource);
                   1300:     }
                   1301:     my $return;
                   1302:     my %overallstatus;
                   1303:     my $totalParts;
                   1304:     foreach my $resource (@probs) {
                   1305: 	# If there is a single part, just show the simple status
                   1306: 	if ($resource->singlepart()) {
                   1307: 	    my $status = $resource->simpleStatus(${$resource->parts}[0]);
                   1308: 	    $overallstatus{$status}++;
                   1309: 	    $totalParts++;
                   1310: 	    next;
                   1311: 	}
                   1312: 	# Now we can be sure the $part doesn't really matter.
                   1313: 	my $statusCount = $resource->simpleStatusCount();
                   1314: 	my @counts;
                   1315: 	foreach my $status (@statuses) {
                   1316: 	    # decouple display order from the simpleStatusCount order
                   1317: 	    my $slot = Apache::lonnavmaps::resource::statusToSlot($status);
                   1318: 	    if ($statusCount->[$slot]) {
                   1319: 		$overallstatus{$status}+=$statusCount->[$slot];
                   1320: 		$totalParts+=$statusCount->[$slot];
                   1321: 	    }
                   1322: 	}
                   1323:     }
                   1324:     $return.= $td . $totalParts . ' parts: ';
                   1325:     foreach my $status (@statuses) {
                   1326: 	if ($overallstatus{$status}) {
                   1327: 	    $return.="<font color='" . $statusColors{$status} .
                   1328: 		"'>" . $overallstatus{$status} . ' '
1.225     bowersj2 1329: 		. $statusStrings{$status} . "</font>";
                   1330: 	}
                   1331:     }
1.256     albertel 1332:     $return.= $endtd;
                   1333:     return $return;
1.225     bowersj2 1334: }
                   1335: 
1.133     bowersj2 1336: my @preparedColumns = (\&render_resource, \&render_communication_status,
1.225     bowersj2 1337:                        \&render_quick_status, \&render_long_status,
                   1338: 		       \&render_parts_summary_status);
1.132     bowersj2 1339: 
                   1340: sub setDefault {
                   1341:     my ($val, $default) = @_;
                   1342:     if (!defined($val)) { return $default; }
                   1343:     return $val;
                   1344: }
                   1345: 
                   1346: sub render {
                   1347:     my $args = shift;
1.140     bowersj2 1348:     &Apache::loncommon::get_unprocessed_cgi($ENV{QUERY_STRING});
                   1349:     my $result = '';
                   1350: 
1.132     bowersj2 1351:     # Configure the renderer.
                   1352:     my $cols = $args->{'cols'};
                   1353:     if (!defined($cols)) {
                   1354:         # no columns, no nav maps.
                   1355:         return '';
                   1356:     }
1.140     bowersj2 1357:     my $mustCloseNavMap = 0;
                   1358:     my $navmap;
                   1359:     if (defined($args->{'navmap'})) {
                   1360:         $navmap = $args->{'navmap'};
                   1361:     }
                   1362: 
1.158     bowersj2 1363:     my $r = $args->{'r'};
1.140     bowersj2 1364:     my $queryString = $args->{'queryString'};
1.159     bowersj2 1365:     my $jump = $args->{'jump'};
1.158     bowersj2 1366:     my $here = $args->{'here'};
1.153     bowersj2 1367:     my $suppressNavmap = setDefault($args->{'suppressNavmap'}, 0);
1.256     albertel 1368:     my $closeAllPages = setDefault($args->{'closeAllPages'}, 0);
1.140     bowersj2 1369:     my $currentJumpDelta = 2; # change this to change how many resources are displayed
                   1370:                              # before the current resource when using #current
                   1371: 
                   1372:     # If we were passed 'here' information, we are not rendering
                   1373:     # after a folder manipulation, and we were not passed an
                   1374:     # iterator, make sure we open the folders to show the "here"
                   1375:     # marker
                   1376:     my $filterHash = {};
                   1377:     # Figure out what we're not displaying
                   1378:     foreach (split(/\,/, $ENV{"form.filter"})) {
                   1379:         if ($_) {
                   1380:             $filterHash->{$_} = "1";
                   1381:         }
                   1382:     }
                   1383: 
1.191     bowersj2 1384:     # Filter: Remember filter function and add our own filter: Refuse
                   1385:     # to show hidden resources unless the user can see them.
                   1386:     my $userCanSeeHidden = advancedUser();
                   1387:     my $filterFunc = setDefault($args->{'filterFunc'},
                   1388:                                 sub {return 1;});
                   1389:     if (!$userCanSeeHidden) {
                   1390:         # Without renaming the filterfunc, the server seems to go into
                   1391:         # an infinite loop
                   1392:         my $oldFilterFunc = $filterFunc;
                   1393:         $filterFunc = sub { my $res = shift; return !$res->randomout() && 
                   1394:                                 &$oldFilterFunc($res);};
                   1395:     }
                   1396: 
1.140     bowersj2 1397:     my $condition = 0;
                   1398:     if ($ENV{'form.condition'}) {
                   1399:         $condition = 1;
                   1400:     }
                   1401: 
                   1402:     if (!$ENV{'form.folderManip'} && !defined($args->{'iterator'})) {
                   1403:         # Step 1: Check to see if we have a navmap
                   1404:         if (!defined($navmap)) {
1.221     bowersj2 1405:             $navmap = Apache::lonnavmaps::navmap->new();
1.140     bowersj2 1406:             $mustCloseNavMap = 1;
                   1407:         }
                   1408: 
                   1409:         # Step two: Locate what kind of here marker is necessary
                   1410:         # Determine where the "here" marker is and where the screen jumps to.
                   1411: 
1.175     bowersj2 1412:         if ($ENV{'form.postsymb'}) {
                   1413:             $here = $jump = $ENV{'form.postsymb'};
1.140     bowersj2 1414:         } elsif ($ENV{'form.postdata'}) {
                   1415:             # couldn't find a symb, is there a URL?
                   1416:             my $currenturl = $ENV{'form.postdata'};
1.158     bowersj2 1417:             #$currenturl=~s/^http\:\/\///;
                   1418:             #$currenturl=~s/^[^\/]+//;
1.140     bowersj2 1419:             
1.158     bowersj2 1420:             $here = $jump = &Apache::lonnet::symbread($currenturl);
1.276     albertel 1421:         }
1.158     bowersj2 1422: 
1.140     bowersj2 1423:         # Step three: Ensure the folders are open
                   1424:         my $mapIterator = $navmap->getIterator(undef, undef, undef, 1);
1.222     bowersj2 1425:         my $curRes;
1.140     bowersj2 1426:         my $found = 0;
                   1427:         
                   1428:         # We only need to do this if we need to open the maps to show the
                   1429:         # current position. This will change the counter so we can't count
                   1430:         # for the jump marker with this loop.
1.294     albertel 1431:         while ($here && ($curRes = $mapIterator->next()) && !$found) {
1.158     bowersj2 1432:             if (ref($curRes) && $curRes->symb() eq $here) {
1.140     bowersj2 1433:                 my $mapStack = $mapIterator->getStack();
                   1434:                 
                   1435:                 # Ensure the parent maps are open
                   1436:                 for my $map (@{$mapStack}) {
                   1437:                     if ($condition) {
                   1438:                         undef $filterHash->{$map->map_pc()};
                   1439:                     } else {
                   1440:                         $filterHash->{$map->map_pc()} = 1;
                   1441:                     }
                   1442:                 }
                   1443:                 $found = 1;
                   1444:             }
                   1445:         }            
1.159     bowersj2 1446:     }        
1.140     bowersj2 1447: 
                   1448:     if ( !defined($args->{'iterator'}) && $ENV{'form.folderManip'} ) { # we came from a user's manipulation of the nav page
                   1449:         # If this is a click on a folder or something, we want to preserve the "here"
                   1450:         # from the querystring, and get the new "jump" marker
                   1451:         $here = $ENV{'form.here'};
                   1452:         $jump = $ENV{'form.jump'};
                   1453:     } 
                   1454:     
1.132     bowersj2 1455:     my $it = $args->{'iterator'};
                   1456:     if (!defined($it)) {
1.140     bowersj2 1457:         # Construct a default iterator based on $ENV{'form.'} information
                   1458:         
                   1459:         # Step 1: Check to see if we have a navmap
                   1460:         if (!defined($navmap)) {
1.221     bowersj2 1461:             $navmap = Apache::lonnavmaps::navmap->new();
1.140     bowersj2 1462:             $mustCloseNavMap = 1;
                   1463:         }
                   1464: 
1.144     bowersj2 1465:         # See if we're being passed a specific map
                   1466:         if ($args->{'iterator_map'}) {
                   1467:             my $map = $args->{'iterator_map'};
1.145     bowersj2 1468:             $map = $navmap->getResourceByUrl($map);
1.144     bowersj2 1469:             my $firstResource = $map->map_start();
                   1470:             my $finishResource = $map->map_finish();
                   1471: 
                   1472:             $args->{'iterator'} = $it = $navmap->getIterator($firstResource, $finishResource, $filterHash, $condition);
                   1473:         } else {
                   1474:             $args->{'iterator'} = $it = $navmap->getIterator(undef, undef, $filterHash, $condition);
                   1475:         }
1.132     bowersj2 1476:     }
1.256     albertel 1477: 
1.159     bowersj2 1478:     # (re-)Locate the jump point, if any
1.191     bowersj2 1479:     # Note this does not take filtering or hidden into account... need
                   1480:     # to be fixed?
1.159     bowersj2 1481:     my $mapIterator = $navmap->getIterator(undef, undef, $filterHash, 0);
1.222     bowersj2 1482:     my $curRes;
1.159     bowersj2 1483:     my $foundJump = 0;
                   1484:     my $counter = 0;
                   1485:     
1.222     bowersj2 1486:     while (($curRes = $mapIterator->next()) && !$foundJump) {
1.159     bowersj2 1487:         if (ref($curRes)) { $counter++; }
                   1488:         
                   1489:         if (ref($curRes) && $jump eq $curRes->symb()) {
                   1490:             
                   1491:             # This is why we have to use the main iterator instead of the
                   1492:             # potentially faster DFS: The count has to be the same, so
                   1493:             # the order has to be the same, which DFS won't give us.
                   1494:             $args->{'currentJumpIndex'} = $counter;
                   1495:             $foundJump = 1;
                   1496:         }
                   1497:     }
                   1498: 
1.132     bowersj2 1499:     my $showParts = setDefault($args->{'showParts'}, 1);
                   1500:     my $condenseParts = setDefault($args->{'condenseParts'}, 1);
1.139     bowersj2 1501:     # keeps track of when the current resource is found,
                   1502:     # so we can back up a few and put the anchor above the
                   1503:     # current resource
1.140     bowersj2 1504:     my $printKey = $args->{'printKey'};
                   1505:     my $printCloseAll = $args->{'printCloseAll'};
                   1506:     if (!defined($printCloseAll)) { $printCloseAll = 1; }
1.144     bowersj2 1507:     
1.140     bowersj2 1508:     # Print key?
                   1509:     if ($printKey) {
                   1510:         $result .= '<table border="0" cellpadding="2" cellspacing="0">';
                   1511:         my $date=localtime;
                   1512:         $result.='<tr><td align="right" valign="bottom">Key:&nbsp;&nbsp;</td>';
                   1513:         if ($navmap->{LAST_CHECK}) {
                   1514:             $result .= 
1.230     www      1515:                 '<img src="/adm/lonMisc/chat.gif"> '.&mt('New discussion since').' '.
1.140     bowersj2 1516:                 strftime("%A, %b %e at %I:%M %P", localtime($navmap->{LAST_CHECK})).
                   1517:                 '</td><td align="center" valign="bottom">&nbsp;&nbsp;'.
1.230     www      1518:                 '<img src="/adm/lonMisc/feedback.gif"> '.&mt('New message (click to open)').'<p>'.
1.140     bowersj2 1519:                 '</td>'; 
                   1520:         } else {
                   1521:             $result .= '<td align="center" valign="bottom">&nbsp;&nbsp;'.
1.230     www      1522:                 '<img src="/adm/lonMisc/chat.gif"> '.&mt('Discussions').'</td><td align="center" valign="bottom">'.
                   1523:                 '&nbsp;&nbsp;<img src="/adm/lonMisc/feedback.gif"> '.&mt('New message (click to open)').
1.140     bowersj2 1524:                 '</td>'; 
                   1525:         }
                   1526: 
                   1527:         $result .= '</tr></table>';
                   1528:     }
                   1529: 
1.172     bowersj2 1530:     if ($printCloseAll && !$args->{'resource_no_folder_link'}) {
1.281     albertel 1531: 	my ($link,$text);
1.140     bowersj2 1532:         if ($condition) {
1.281     albertel 1533: 	    $link='"navmaps?condition=0&filter=&'.$queryString.
                   1534: 		'&here='.&Apache::lonnet::escape($here).'"';
                   1535: 	    $text='Close All Folders';
1.140     bowersj2 1536:         } else {
1.281     albertel 1537: 	    $link='"navmaps?condition=1&filter=&'.$queryString.
                   1538: 		'&here='.&Apache::lonnet::escape($here).'"';
                   1539: 	    $text='Open All Folders';
                   1540:         }
                   1541: 	if ($args->{'caller'} eq 'navmapsdisplay') {
                   1542: 	    &add_linkitem($args->{'linkitems'},'changefolder',
                   1543: 			  'location.href='.$link,$text);
                   1544: 	} else {
                   1545: 	    $result.='<a href='.$link.'>'.&mt($text).'</a>';
                   1546: 	}
1.266     raeburn  1547:         $result .= "\n";
                   1548:     }
1.140     bowersj2 1549: 
1.266     raeburn  1550:     # Check for any unread discussions in all resources.
1.281     albertel 1551:     if ($args->{'caller'} eq 'navmapsdisplay') {
1.267     albertel 1552: 	my $totdisc = 0;
                   1553: 	my $haveDisc = '';
                   1554: 	my @allres=$navmap->retrieveResources();
                   1555: 	foreach my $resource (@allres) {
                   1556: 	    if ($resource->hasDiscussion()) {
                   1557: 		my $ressymb;
                   1558: 		if ($resource->symb() =~ m-(___adm/\w+/\w+)/(\d+)/bulletinboard$-) {
                   1559: 		    $ressymb = 'bulletin___'.$2.$1.'/'.$2.'/bulletinboard';
                   1560: 		} else {
                   1561: 		    $ressymb = $resource->symb();
                   1562: 		}
                   1563: 		$haveDisc .= $ressymb.':';
                   1564: 		$totdisc ++;
                   1565: 	    }
                   1566: 	}
                   1567: 	if ($totdisc > 0) {
                   1568: 	    $haveDisc =~ s/:$//;
1.281     albertel 1569:             my $navurl = $ENV{'QUERY_STRING'};
                   1570: 	    &add_linkitem($args->{'linkitems'},'clearbubbles',
                   1571: 			  'document.clearbubbles.submit()',
                   1572: 			  'Mark all posts read');
                   1573:             $result .= (<<END);
1.267     albertel 1574: 		<form name="clearbubbles" method="post" action="/adm/feedback">
                   1575: 		<input type="hidden" name="navurl" value="$ENV{'QUERY_STRING'}" />
                   1576: 		<input type="hidden" name="navmaps" value="$haveDisc" />
                   1577: 		</form>
1.266     raeburn  1578: END
1.267     albertel 1579: 	}
1.266     raeburn  1580:     }
1.276     albertel 1581: 
1.281     albertel 1582:     if ($args->{'caller'} eq 'navmapsdisplay') {
1.283     raeburn  1583:         $result .= '<table><tr><td>'.
                   1584:                    &Apache::loncommon::help_open_menu('','Navigation Screen','Navigation_Screen','',undef,'RAT').'</td>';
                   1585: 	if ($ENV{'environment.remotenavmap'} ne 'on') {
                   1586: 	    $result .= '<td>&nbsp;</td>'; 
                   1587:         } else {
                   1588: 	    $result .= '</tr><tr>'; 
                   1589:         }
1.281     albertel 1590: 	$result.=&show_linkitems($args->{'linkitems'});
                   1591:         if ($args->{'sort_html'}) {
                   1592: 	    if ($ENV{'environment.remotenavmap'} ne 'on') {
                   1593: 		$result.='<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>'.
                   1594: 		    '<td align="right">'.$args->{'sort_html'}.'</td></tr>';
                   1595: 	    } else {
                   1596: 		$result.='</tr><tr><td align="left"><br />'.
                   1597: 		    $args->{'sort_html'}.'</td></tr>';
                   1598: 	    }
                   1599: 	}
                   1600:         $result .= '</table>';
                   1601:     } elsif ($args->{'sort_html'}) { 
                   1602:         $result.=$args->{'sort_html'}; 
                   1603:     }
1.276     albertel 1604: 
1.266     raeburn  1605:     $result .= "<br />\n";
1.140     bowersj2 1606:     if ($r) {
                   1607:         $r->print($result);
                   1608:         $r->rflush();
                   1609:         $result = "";
                   1610:     }
1.132     bowersj2 1611:     # End parameter setting
1.133     bowersj2 1612:             
1.132     bowersj2 1613:     # Data
1.140     bowersj2 1614:     $result .= '<table cellspacing="0" cellpadding="3" border="0" bgcolor="#FFFFFF">' ."\n";
1.132     bowersj2 1615:     my $res = "Apache::lonnavmaps::resource";
                   1616:     my %condenseStatuses =
                   1617:         ( $res->NETWORK_FAILURE    => 1,
                   1618:           $res->NOTHING_SET        => 1,
                   1619:           $res->CORRECT            => 1 );
                   1620:     my @backgroundColors = ("#FFFFFF", "#F6F6F6");
1.133     bowersj2 1621: 
                   1622:     # Shared variables
                   1623:     $args->{'counter'} = 0; # counts the rows
                   1624:     $args->{'indentLevel'} = 0;
                   1625:     $args->{'isNewBranch'} = 0;
                   1626:     $args->{'condensed'} = 0;    
                   1627:     $args->{'indentString'} = setDefault($args->{'indentString'}, "<img src='/adm/lonIcons/whitespace1.gif' width='25' height='1' alt='' border='0' />");
                   1628:     $args->{'displayedHereMarker'} = 0;
1.132     bowersj2 1629: 
1.190     bowersj2 1630:     # If we're suppressing empty sequences, look for them here. Use DFS for speed,
                   1631:     # since structure actually doesn't matter, except what map has what resources.
                   1632:     if ($args->{'suppressEmptySequences'}) {
                   1633:         my $dfsit = Apache::lonnavmaps::DFSiterator->new($navmap,
                   1634:                                                          $it->{FIRST_RESOURCE},
                   1635:                                                          $it->{FINISH_RESOURCE},
                   1636:                                                          {}, undef, 1);
1.222     bowersj2 1637:         my $depth = 0;
1.190     bowersj2 1638:         $dfsit->next();
                   1639:         my $curRes = $dfsit->next();
                   1640:         while ($depth > -1) {
                   1641:             if ($curRes == $dfsit->BEGIN_MAP()) { $depth++; }
                   1642:             if ($curRes == $dfsit->END_MAP()) { $depth--; }
                   1643: 
                   1644:             if (ref($curRes)) { 
                   1645:                 # Parallel pre-processing: Do sequences have non-filtered-out children?
1.201     bowersj2 1646:                 if ($curRes->is_map()) {
1.190     bowersj2 1647:                     $curRes->{DATA}->{HAS_VISIBLE_CHILDREN} = 0;
                   1648:                     # Sequences themselves do not count as visible children,
                   1649:                     # unless those sequences also have visible children.
                   1650:                     # This means if a sequence appears, there's a "promise"
                   1651:                     # that there's something under it if you open it, somewhere.
                   1652:                 } else {
                   1653:                     # Not a sequence: if it's filtered, ignore it, otherwise
                   1654:                     # rise up the stack and mark the sequences as having children
                   1655:                     if (&$filterFunc($curRes)) {
                   1656:                         for my $sequence (@{$dfsit->getStack()}) {
                   1657:                             $sequence->{DATA}->{HAS_VISIBLE_CHILDREN} = 1;
                   1658:                         }
                   1659:                     }
                   1660:                 }
                   1661:             }
                   1662:         } continue {
                   1663:             $curRes = $dfsit->next();
                   1664:         }
                   1665:     }
                   1666: 
1.133     bowersj2 1667:     my $displayedJumpMarker = 0;
1.132     bowersj2 1668:     # Set up iteration.
                   1669:     my $now = time();
                   1670:     my $in24Hours = $now + 24 * 60 * 60;
                   1671:     my $rownum = 0;
                   1672: 
1.141     bowersj2 1673:     # export "here" marker information
                   1674:     $args->{'here'} = $here;
                   1675: 
1.222     bowersj2 1676:     $args->{'indentLevel'} = -1; # first BEGIN_MAP takes this to 0
1.270     albertel 1677:     my @resources;
                   1678:     my $code='';# sub { !(shift->is_map();) };
                   1679:     if ($args->{'sort'} eq 'title') {
1.276     albertel 1680:         my $oldFilterFunc = $filterFunc;
                   1681: 	my $filterFunc= 
                   1682: 	    sub {
                   1683: 		my ($res)=@_;
                   1684: 		if ($res->is_map()) { return 0;}
                   1685: 		return &$oldFilterFunc($res);
                   1686: 	    };
                   1687: 	@resources=$navmap->retrieveResources(undef,$filterFunc);
1.289     raeburn  1688: 	@resources= sort {
                   1689: 	    my ($atitle,$btitle) = (lc($a->compTitle),lc($b->compTitle));
                   1690: 	    $atitle=~s/^\s*//;
                   1691: 	    $btitle=~s/^\s*//;
                   1692: 	    return $atitle cmp $btitle
                   1693: 	    } @resources;
1.270     albertel 1694:     } elsif ($args->{'sort'} eq 'duedate') {
                   1695: 	@resources=$navmap->retrieveResources(undef,
                   1696: 					       sub { shift->is_problem(); });
                   1697: 	@resources= sort
                   1698: 	{
                   1699: 	    if ($a->duedate ne $b->duedate) {
                   1700: 	        return $a->duedate cmp $b->duedate;
                   1701: 	    } else {
                   1702: 		lc($a->compTitle) cmp lc($b->compTitle)
                   1703: 	    }
                   1704: 	} @resources;
1.276     albertel 1705:     } else {
                   1706: 	#unknow sort mechanism or default
                   1707: 	undef($args->{'sort'});
1.270     albertel 1708:     }
                   1709: 
1.276     albertel 1710: 
1.270     albertel 1711:     while (1) {
                   1712: 	if ($args->{'sort'}) {
                   1713: 	    $curRes = shift(@resources);
                   1714: 	} else {
                   1715: 	    $curRes = $it->next($closeAllPages);
                   1716: 	}
                   1717: 	if (!$curRes) { last; }
                   1718: 
1.132     bowersj2 1719:         # Maintain indentation level.
                   1720:         if ($curRes == $it->BEGIN_MAP() ||
                   1721:             $curRes == $it->BEGIN_BRANCH() ) {
1.133     bowersj2 1722:             $args->{'indentLevel'}++;
1.132     bowersj2 1723:         }
                   1724:         if ($curRes == $it->END_MAP() ||
                   1725:             $curRes == $it->END_BRANCH() ) {
1.133     bowersj2 1726:             $args->{'indentLevel'}--;
1.132     bowersj2 1727:         }
                   1728:         # Notice new branches
                   1729:         if ($curRes == $it->BEGIN_BRANCH()) {
1.133     bowersj2 1730:             $args->{'isNewBranch'} = 1;
                   1731:         }
                   1732: 
                   1733:         # If this isn't an actual resource, continue on
                   1734:         if (!ref($curRes)) {
                   1735:             next;
1.132     bowersj2 1736:         }
1.133     bowersj2 1737: 
1.143     bowersj2 1738:         # If this has been filtered out, continue on
                   1739:         if (!(&$filterFunc($curRes))) {
                   1740:             $args->{'isNewBranch'} = 0; # Don't falsely remember this
                   1741:             next;
                   1742:         } 
1.132     bowersj2 1743: 
1.190     bowersj2 1744:         # If this is an empty sequence and we're filtering them, continue on
1.201     bowersj2 1745:         if ($curRes->is_map() && $args->{'suppressEmptySequences'} &&
1.190     bowersj2 1746:             !$curRes->{DATA}->{HAS_VISIBLE_CHILDREN}) {
                   1747:             next;
                   1748:         }
                   1749: 
1.153     bowersj2 1750:         # If we're suppressing navmaps and this is a navmap, continue on
                   1751:         if ($suppressNavmap && $curRes->src() =~ /^\/adm\/navmaps/) {
                   1752:             next;
                   1753:         }
                   1754: 
1.191     bowersj2 1755:         $args->{'counter'}++;
                   1756: 
1.132     bowersj2 1757:         # Does it have multiple parts?
1.133     bowersj2 1758:         $args->{'multipart'} = 0;
                   1759:         $args->{'condensed'} = 0;
1.132     bowersj2 1760:         my @parts;
                   1761:             
                   1762:         # Decide what parts to show.
1.133     bowersj2 1763:         if ($curRes->is_problem() && $showParts) {
1.132     bowersj2 1764:             @parts = @{$curRes->parts()};
1.192     bowersj2 1765:             $args->{'multipart'} = $curRes->multipart();
1.132     bowersj2 1766:             
                   1767:             if ($condenseParts) { # do the condensation
                   1768:                 if (!$curRes->opendate("0")) {
1.162     bowersj2 1769:                     @parts = ();
1.133     bowersj2 1770:                     $args->{'condensed'} = 1;
1.132     bowersj2 1771:                 }
1.133     bowersj2 1772:                 if (!$args->{'condensed'}) {
1.132     bowersj2 1773:                     # Decide whether to condense based on similarity
1.192     bowersj2 1774:                     my $status = $curRes->status($parts[0]);
                   1775:                     my $due = $curRes->duedate($parts[0]);
                   1776:                     my $open = $curRes->opendate($parts[0]);
1.132     bowersj2 1777:                     my $statusAllSame = 1;
                   1778:                     my $dueAllSame = 1;
                   1779:                     my $openAllSame = 1;
1.192     bowersj2 1780:                     for (my $i = 1; $i < scalar(@parts); $i++) {
1.132     bowersj2 1781:                         if ($curRes->status($parts[$i]) != $status){
                   1782:                             $statusAllSame = 0;
                   1783:                         }
                   1784:                         if ($curRes->duedate($parts[$i]) != $due ) {
                   1785:                             $dueAllSame = 0;
                   1786:                         }
                   1787:                         if ($curRes->opendate($parts[$i]) != $open) {
                   1788:                             $openAllSame = 0;
                   1789:                         }
                   1790:                     }
                   1791:                     # $*allSame is true if all the statuses were
                   1792:                     # the same. Now, if they are all the same and
                   1793:                     # match one of the statuses to condense, or they
                   1794:                     # are all open with the same due date, or they are
                   1795:                     # all OPEN_LATER with the same open date, display the
                   1796:                     # status of the first non-zero part (to get the 'correct'
                   1797:                     # status right, since 0 is never 'correct' or 'open').
                   1798:                     if (($statusAllSame && defined($condenseStatuses{$status})) ||
                   1799:                         ($dueAllSame && $status == $curRes->OPEN && $statusAllSame)||
                   1800:                         ($openAllSame && $status == $curRes->OPEN_LATER && $statusAllSame) ){
1.192     bowersj2 1801:                         @parts = ($parts[0]);
1.133     bowersj2 1802:                         $args->{'condensed'} = 1;
1.132     bowersj2 1803:                     }
                   1804:                 }
1.198     bowersj2 1805: 		# Multipart problem with one part: always "condense" (happens
                   1806: 		#  to match the desirable behavior)
                   1807: 		if ($curRes->countParts() == 1) {
                   1808: 		    @parts = ($parts[0]);
                   1809: 		    $args->{'condensed'} = 1;
                   1810: 		}
1.132     bowersj2 1811:             }
1.157     bowersj2 1812:         } 
1.132     bowersj2 1813:             
                   1814:         # If the multipart problem was condensed, "forget" it was multipart
                   1815:         if (scalar(@parts) == 1) {
1.133     bowersj2 1816:             $args->{'multipart'} = 0;
1.192     bowersj2 1817:         } else {
                   1818:             # Add part 0 so we display it correctly.
                   1819:             unshift @parts, '0';
1.132     bowersj2 1820:         }
                   1821: 
                   1822:         # Now, we've decided what parts to show. Loop through them and
                   1823:         # show them.
1.192     bowersj2 1824:         foreach my $part (@parts) {
1.132     bowersj2 1825:             $rownum ++;
                   1826:             my $backgroundColor = $backgroundColors[$rownum % scalar(@backgroundColors)];
                   1827:             
                   1828:             $result .= "  <tr bgcolor='$backgroundColor'>\n";
1.134     bowersj2 1829: 
                   1830:             # Set up some data about the parts that the cols might want
                   1831:             my $filter = $it->{FILTER};
1.270     albertel 1832: 	    my $src;
                   1833: 	    if ($args->{'sort'}) {
                   1834: 		$src = $curRes->src(); # FIXME this is wrong for .pages
                   1835: 	    } else {
                   1836: 		my $stack = $it->getStack();
                   1837: 		$src=getLinkForResource($stack);
                   1838: 	    }
1.249     www      1839:             my $anchor='';
1.270     albertel 1840:             if ($src=~s/(\#.*)$//) {
1.249     www      1841: 		$anchor=$1;
                   1842: 	    }
1.134     bowersj2 1843:             my $srcHasQuestion = $src =~ /\?/;
                   1844:             $args->{"resourceLink"} = $src.
                   1845:                 ($srcHasQuestion?'&':'?') .
1.249     www      1846:                 'symb=' . &Apache::lonnet::escape($curRes->symb()).
                   1847: 		$anchor;
1.270     albertel 1848: 
1.132     bowersj2 1849:             # Now, display each column.
                   1850:             foreach my $col (@$cols) {
1.139     bowersj2 1851:                 my $colHTML = '';
                   1852:                 if (ref($col)) {
                   1853:                     $colHTML .= &$col($curRes, $part, $args);
                   1854:                 } else {
                   1855:                     $colHTML .= &{$preparedColumns[$col]}($curRes, $part, $args);
                   1856:                 }
1.132     bowersj2 1857: 
1.133     bowersj2 1858:                 # If this is the first column and it's time to print
                   1859:                 # the anchor, do so
                   1860:                 if ($col == $cols->[0] && 
                   1861:                     $args->{'counter'} == $args->{'currentJumpIndex'} - 
1.139     bowersj2 1862:                     $currentJumpDelta) {
                   1863:                     # Jam the anchor after the <td> tag;
                   1864:                     # necessary for valid HTML (which Mozilla requires)
                   1865:                     $colHTML =~ s/\>/\>\<a name="curloc" \/\>/;
1.133     bowersj2 1866:                     $displayedJumpMarker = 1;
                   1867:                 }
1.139     bowersj2 1868:                 $result .= $colHTML . "\n";
1.132     bowersj2 1869:             }
1.139     bowersj2 1870:             $result .= "    </tr>\n";
1.140     bowersj2 1871:             $args->{'isNewBranch'} = 0;
1.139     bowersj2 1872:         }
1.153     bowersj2 1873: 
1.139     bowersj2 1874:         if ($r && $rownum % 20 == 0) {
                   1875:             $r->print($result);
                   1876:             $result = "";
                   1877:             $r->rflush();
1.132     bowersj2 1878:         }
1.156     bowersj2 1879:     } continue {
1.208     bowersj2 1880: 	if ($r) {
                   1881: 	    # If we have the connection, make sure the user is still connected
                   1882: 	    my $c = $r->connection;
                   1883: 	    if ($c->aborted()) {
                   1884: 		# Who cares what we do, nobody will see it anyhow.
                   1885: 		return '';
                   1886: 	    }
                   1887: 	}
1.132     bowersj2 1888:     }
                   1889:     
1.134     bowersj2 1890:     # Print out the part that jumps to #curloc if it exists
1.159     bowersj2 1891:     # delay needed because the browser is processing the jump before
                   1892:     # it finishes rendering, so it goes to the wrong place!
                   1893:     # onload might be better, but this routine has no access to that.
                   1894:     # On mozilla, the 0-millisecond timeout seems to prevent this;
                   1895:     # it's quite likely this might fix other browsers, too, and 
                   1896:     # certainly won't hurt anything.
1.139     bowersj2 1897:     if ($displayedJumpMarker) {
1.247     albertel 1898:         $result .= "
                   1899: <script>
                   1900: if (location.href.indexOf('#curloc')==-1) {
                   1901:     setTimeout(\"location += '#curloc';\", 0)
                   1902: }
                   1903: </script>";
1.134     bowersj2 1904:     }
                   1905: 
1.132     bowersj2 1906:     $result .= "</table>";
1.140     bowersj2 1907:     
                   1908:     if ($r) {
                   1909:         $r->print($result);
                   1910:         $result = "";
                   1911:         $r->rflush();
                   1912:     }
                   1913:         
1.175     bowersj2 1914:     if ($mustCloseNavMap) { $navmap->untieHashes(); } 
1.132     bowersj2 1915: 
                   1916:     return $result;
                   1917: }
                   1918: 
1.281     albertel 1919: sub add_linkitem {
                   1920:     my ($linkitems,$name,$cmd,$text)=@_;
                   1921:     $$linkitems{$name}{'cmd'}=$cmd;
                   1922:     $$linkitems{$name}{'text'}=&mt($text);
                   1923: }
                   1924: 
                   1925: sub show_linkitems {
                   1926:     my ($linkitems)=@_;
                   1927:     my @linkorder = ("launchnav","closenav","firsthomework","everything",
                   1928: 		     "uncompleted","changefolder","clearbubbles");
                   1929:     
                   1930:     my $result .= (<<ENDBLOCK);
1.283     raeburn  1931:               <td align="left">
1.281     albertel 1932: <script type="text/javascript">
                   1933:     function changeNavDisplay () {
                   1934: 	var navchoice = document.linkitems.toplink[document.linkitems.toplink.selectedIndex].value;
                   1935: ENDBLOCK
                   1936:     foreach my $link (@linkorder) {
                   1937: 	$result.= "if (navchoice == '$link') {".
                   1938: 	    $linkitems->{$link}{'cmd'}."}\n";
                   1939:     }
                   1940:     $result.='}
                   1941:               </script>
                   1942:                    <form name="linkitems" method="post">
                   1943:                        <nobr><select name="toplink">'."\n";
                   1944:     foreach my $link (@linkorder) {
                   1945: 	if (defined($linkitems->{$link})) {
                   1946: 	    if ($linkitems->{$link}{'text'} ne '') {
                   1947: 		$result .= ' <option value="'.$link.'">'.
                   1948: 		    $linkitems->{$link}{'text'}."</option>\n";
                   1949: 	    }
                   1950: 	}
                   1951:     }
                   1952:     $result .= '</select>&nbsp;<input type="button" name="chgnav"
                   1953:                    value="Go" onClick="javascript:changeNavDisplay()" />
                   1954:                 </nobr></form></td>'."\n";
                   1955:     return $result;
                   1956: }
                   1957: 
1.133     bowersj2 1958: 1;
                   1959: 
                   1960: package Apache::lonnavmaps::navmap;
                   1961: 
                   1962: =pod
                   1963: 
1.216     bowersj2 1964: =head1 Object: Apache::lonnavmaps::navmap
1.133     bowersj2 1965: 
1.217     bowersj2 1966: =head2 Overview
1.133     bowersj2 1967: 
1.217     bowersj2 1968: The navmap object's job is to provide access to the resources
                   1969: in the course as Apache::lonnavmaps::resource objects, and to
                   1970: query and manage the relationship between those resource objects.
                   1971: 
                   1972: Generally, you'll use the navmap object in one of three basic ways.
                   1973: In order of increasing complexity and power:
                   1974: 
                   1975: =over 4
                   1976: 
                   1977: =item * C<$navmap-E<gt>getByX>, where X is B<Id>, B<Symb>, B<Url> or B<MapPc>. This provides
                   1978:     various ways to obtain resource objects, based on various identifiers.
                   1979:     Use this when you want to request information about one object or 
                   1980:     a handful of resources you already know the identities of, from some
                   1981:     other source. For more about Ids, Symbs, and MapPcs, see the
                   1982:     Resource documentation. Note that Url should be a B<last resort>,
                   1983:     not your first choice; it only works when there is only one
                   1984:     instance of the resource in the course, which only applies to
                   1985:     maps, and even that may change in the future.
                   1986: 
                   1987: =item * C<my @resources = $navmap-E<gt>retrieveResources(args)>. This
                   1988:     retrieves resources matching some criterion and returns them
                   1989:     in a flat array, with no structure information. Use this when
                   1990:     you are manipulating a series of resources, based on what map
                   1991:     the are in, but do not care about branching, or exactly how
                   1992:     the maps and resources are related. This is the most common case.
                   1993: 
                   1994: =item * C<$it = $navmap-E<gt>getIterator(args)>. This allows you traverse
                   1995:     the course's navmap in various ways without writing the traversal
                   1996:     code yourself. See iterator documentation below. Use this when
                   1997:     you need to know absolutely everything about the course, including
                   1998:     branches and the precise relationship between maps and resources.
                   1999: 
                   2000: =back
                   2001: 
                   2002: =head2 Creation And Destruction
                   2003: 
                   2004: To create a navmap object, use the following function:
1.133     bowersj2 2005: 
                   2006: =over 4
                   2007: 
1.221     bowersj2 2008: =item * B<Apache::lonnavmaps::navmap-E<gt>new>():
1.133     bowersj2 2009: 
1.221     bowersj2 2010: Creates a new navmap object. Returns the navmap object if this is
                   2011: successful, or B<undef> if not.
1.174     albertel 2012: 
1.216     bowersj2 2013: =back
                   2014: 
1.217     bowersj2 2015: When you are done with the $navmap object, you I<must> call 
                   2016: $navmap->untieHashes(), or you'll prevent the current user from using that 
                   2017: course until the web server is restarted. (!)
                   2018: 
1.216     bowersj2 2019: =head2 Methods
                   2020: 
                   2021: =over 4
                   2022: 
1.174     albertel 2023: =item * B<getIterator>(first, finish, filter, condition):
                   2024: 
                   2025: See iterator documentation below.
1.133     bowersj2 2026: 
                   2027: =cut
                   2028: 
                   2029: use strict;
                   2030: use GDBM_File;
                   2031: 
                   2032: sub new {
                   2033:     # magic invocation to create a class instance
                   2034:     my $proto = shift;
                   2035:     my $class = ref($proto) || $proto;
                   2036:     my $self = {};
                   2037: 
                   2038:     # Resource cache stores navmap resources as we reference them. We generate
                   2039:     # them on-demand so we don't pay for creating resources unless we use them.
                   2040:     $self->{RESOURCE_CACHE} = {};
                   2041: 
                   2042:     # Network failure flag, if we accessed the course or user opt and
                   2043:     # failed
                   2044:     $self->{NETWORK_FAILURE} = 0;
                   2045: 
                   2046:     # tie the nav hash
                   2047: 
1.168     bowersj2 2048:     my %navmaphash;
                   2049:     my %parmhash;
1.220     bowersj2 2050:     my $courseFn = $ENV{"request.course.fn"};
                   2051:     if (!(tie(%navmaphash, 'GDBM_File', "${courseFn}.db",
1.133     bowersj2 2052:               &GDBM_READER(), 0640))) {
                   2053:         return undef;
                   2054:     }
                   2055:     
1.220     bowersj2 2056:     if (!(tie(%parmhash, 'GDBM_File', "${courseFn}_parms.db",
1.133     bowersj2 2057:               &GDBM_READER(), 0640)))
                   2058:     {
1.170     matthew  2059:         untie %{$self->{PARM_HASH}};
1.133     bowersj2 2060:         return undef;
                   2061:     }
                   2062: 
1.199     bowersj2 2063:     $self->{NAV_HASH} = \%navmaphash;
1.168     bowersj2 2064:     $self->{PARM_HASH} = \%parmhash;
1.221     bowersj2 2065:     $self->{PARM_CACHE} = {};
1.133     bowersj2 2066: 
                   2067:     bless($self);
                   2068:         
                   2069:     return $self;
                   2070: }
                   2071: 
1.221     bowersj2 2072: sub generate_course_user_opt {
1.133     bowersj2 2073:     my $self = shift;
1.221     bowersj2 2074:     if ($self->{COURSE_USER_OPT_GENERATED}) { return; }
1.133     bowersj2 2075: 
1.221     bowersj2 2076:     my $uname=$ENV{'user.name'};
                   2077:     my $udom=$ENV{'user.domain'};
                   2078:     my $uhome=$ENV{'user.home'};
                   2079:     my $cid=$ENV{'request.course.id'};
                   2080:     my $chome=$ENV{'course.'.$cid.'.home'};
                   2081:     my ($cdom,$cnum)=split(/\_/,$cid);
                   2082:     
                   2083:     my $userprefix=$uname.'_'.$udom.'_';
                   2084:     
                   2085:     my %courserdatas; my %useropt; my %courseopt; my %userrdatas;
                   2086:     unless ($uhome eq 'no_host') { 
1.133     bowersj2 2087: # ------------------------------------------------- Get coursedata (if present)
1.221     bowersj2 2088: 	unless ((time-$courserdatas{$cid.'.last_cache'})<240) {
                   2089: 	    my $reply=&Apache::lonnet::reply('dump:'.$cdom.':'.$cnum.
                   2090: 					     ':resourcedata',$chome);
                   2091: 	    # Check for network failure
                   2092: 	    if ( $reply =~ /no.such.host/i || $reply =~ /con_lost/i) {
                   2093: 		$self->{NETWORK_FAILURE} = 1;
                   2094: 	    } elsif ($reply!~/^error\:/) {
                   2095: 		$courserdatas{$cid}=$reply;
                   2096: 		$courserdatas{$cid.'.last_cache'}=time;
                   2097: 	    }
                   2098: 	}
                   2099: 	foreach (split(/\&/,$courserdatas{$cid})) {
                   2100: 	    my ($name,$value)=split(/\=/,$_);
                   2101: 	    $courseopt{$userprefix.&Apache::lonnet::unescape($name)}=
                   2102: 		&Apache::lonnet::unescape($value);
                   2103: 	}
1.133     bowersj2 2104: # --------------------------------------------------- Get userdata (if present)
1.221     bowersj2 2105: 	unless ((time-$userrdatas{$uname.'___'.$udom.'.last_cache'})<240) {
                   2106: 	    my $reply=&Apache::lonnet::reply('dump:'.$udom.':'.$uname.':resourcedata',$uhome);
                   2107: 	    if ($reply!~/^error\:/) {
                   2108: 		$userrdatas{$uname.'___'.$udom}=$reply;
                   2109: 		$userrdatas{$uname.'___'.$udom.'.last_cache'}=time;
                   2110: 	    }
                   2111: 	    # check to see if network failed
                   2112: 	    elsif ( $reply=~/no.such.host/i || $reply=~/con.*lost/i )
                   2113: 	    {
                   2114: 		$self->{NETWORK_FAILURE} = 1;
                   2115: 	    }
                   2116: 	}
                   2117: 	foreach (split(/\&/,$userrdatas{$uname.'___'.$udom})) {
                   2118: 	    my ($name,$value)=split(/\=/,$_);
                   2119: 	    $useropt{$userprefix.&Apache::lonnet::unescape($name)}=
                   2120: 		&Apache::lonnet::unescape($value);
                   2121: 	}
                   2122: 	$self->{COURSE_OPT} = \%courseopt;
                   2123: 	$self->{USER_OPT} = \%useropt;
                   2124:     }
                   2125: 
                   2126:     $self->{COURSE_USER_OPT_GENERATED} = 1;
                   2127:     
                   2128:     return;
                   2129: }
                   2130: 
                   2131: sub generate_email_discuss_status {
                   2132:     my $self = shift;
1.259     raeburn  2133:     my $symb = shift;
1.221     bowersj2 2134:     if ($self->{EMAIL_DISCUSS_GENERATED}) { return; }
1.133     bowersj2 2135: 
1.221     bowersj2 2136:     my $cid=$ENV{'request.course.id'};
                   2137:     my ($cdom,$cnum)=split(/\_/,$cid);
                   2138:     
                   2139:     my %emailstatus = &Apache::lonnet::dump('email_status');
                   2140:     my $logoutTime = $emailstatus{'logout'};
                   2141:     my $courseLeaveTime = $emailstatus{'logout_'.$ENV{'request.course.id'}};
                   2142:     $self->{LAST_CHECK} = (($courseLeaveTime > $logoutTime) ?
                   2143: 			   $courseLeaveTime : $logoutTime);
                   2144:     my %discussiontime = &Apache::lonnet::dump('discussiontimes', 
                   2145: 					       $cdom, $cnum);
1.259     raeburn  2146:     my %lastread = &Apache::lonnet::dump('nohist_'.$cid.'_discuss',
                   2147:                                         $ENV{'user.domain'},$ENV{'user.name'},'lastread');
                   2148:     my %lastreadtime = ();
                   2149:     foreach (keys %lastread) {
                   2150:         my $key = $_;
                   2151:         $key =~ s/_lastread$//;
                   2152:         $lastreadtime{$key} = $lastread{$_};
                   2153:     }
                   2154: 
1.221     bowersj2 2155:     my %feedback=();
                   2156:     my %error=();
                   2157:     my $keys = &Apache::lonnet::reply('keys:'.
                   2158: 				      $ENV{'user.domain'}.':'.
                   2159: 				      $ENV{'user.name'}.':nohist_email',
                   2160: 				      $ENV{'user.home'});
                   2161:     
                   2162:     foreach my $msgid (split(/\&/, $keys)) {
                   2163: 	$msgid=&Apache::lonnet::unescape($msgid);
1.295   ! albertel 2164: 	if ((!$emailstatus{$msgid}) || ($emailstatus{$msgid} eq 'new')) {
        !          2165: 	    my $plain=
        !          2166: 		&Apache::lonnet::unescape(&Apache::lonnet::unescape($msgid));
        !          2167: 	    if ($plain=~/(Error|Feedback) \[([^\]]+)\]/) {
        !          2168: 		my ($what,$url)=($1,$2);
1.221     bowersj2 2169: 		if ($what eq 'Error') {
                   2170: 		    $error{$url}.=','.$msgid; 
                   2171: 		} else {
                   2172: 		    $feedback{$url}.=','.$msgid;
                   2173: 		}
                   2174: 	    }
                   2175: 	}
1.211     bowersj2 2176:     }
1.221     bowersj2 2177:     
1.295   ! albertel 2178:     #url's of resources that have feedbacks
1.221     bowersj2 2179:     $self->{FEEDBACK} = \%feedback;
1.295   ! albertel 2180:     #or errors
        !          2181:     $self->{ERROR_MSG} = \%error;
1.221     bowersj2 2182:     $self->{DISCUSSION_TIME} = \%discussiontime;
                   2183:     $self->{EMAIL_STATUS} = \%emailstatus;
1.259     raeburn  2184:     $self->{LAST_READ} = \%lastreadtime;
1.221     bowersj2 2185:     
                   2186:     $self->{EMAIL_DISCUSS_GENERATED} = 1;
                   2187: }
                   2188: 
                   2189: sub get_user_data {
                   2190:     my $self = shift;
                   2191:     if ($self->{RETRIEVED_USER_DATA}) { return; }
1.211     bowersj2 2192: 
1.221     bowersj2 2193:     # Retrieve performance data on problems
                   2194:     my %student_data = Apache::lonnet::currentdump($ENV{'request.course.id'},
                   2195: 						   $ENV{'user.domain'},
                   2196: 						   $ENV{'user.name'});
                   2197:     $self->{STUDENT_DATA} = \%student_data;
1.133     bowersj2 2198: 
1.221     bowersj2 2199:     $self->{RETRIEVED_USER_DATA} = 1;
1.133     bowersj2 2200: }
                   2201: 
                   2202: # Internal function: Takes a key to look up in the nav hash and implements internal
                   2203: # memory caching of that key.
                   2204: sub navhash {
                   2205:     my $self = shift; my $key = shift;
                   2206:     return $self->{NAV_HASH}->{$key};
                   2207: }
                   2208: 
1.217     bowersj2 2209: =pod
                   2210: 
                   2211: =item * B<courseMapDefined>(): Returns true if the course map is defined, 
                   2212:     false otherwise. Undefined course maps indicate an error somewhere in
                   2213:     LON-CAPA, and you will not be able to proceed with using the navmap.
                   2214:     See the B<NAV> screen for an example of using this.
                   2215: 
                   2216: =cut
                   2217: 
1.133     bowersj2 2218: # Checks to see if coursemap is defined, matching test in old lonnavmaps
                   2219: sub courseMapDefined {
                   2220:     my $self = shift;
                   2221:     my $uri = &Apache::lonnet::clutter($ENV{'request.course.uri'});
                   2222: 
                   2223:     my $firstres = $self->navhash("map_start_$uri");
                   2224:     my $lastres = $self->navhash("map_finish_$uri");
                   2225:     return $firstres && $lastres;
                   2226: }
                   2227: 
                   2228: sub getIterator {
                   2229:     my $self = shift;
                   2230:     my $iterator = Apache::lonnavmaps::iterator->new($self, shift, shift,
                   2231:                                                      shift, undef, shift);
                   2232:     return $iterator;
                   2233: }
                   2234: 
                   2235: # unties the hash when done
                   2236: sub untieHashes {
1.168     bowersj2 2237:     my $self = shift;
1.170     matthew  2238:     untie %{$self->{NAV_HASH}};
                   2239:     untie %{$self->{PARM_HASH}};
1.133     bowersj2 2240: }
                   2241: 
                   2242: # Private method: Does the given resource (as a symb string) have
                   2243: # current discussion? Returns 0 if chat/mail data not extracted.
                   2244: sub hasDiscussion {
                   2245:     my $self = shift;
                   2246:     my $symb = shift;
1.221     bowersj2 2247:     
                   2248:     $self->generate_email_discuss_status();
                   2249: 
1.133     bowersj2 2250:     if (!defined($self->{DISCUSSION_TIME})) { return 0; }
                   2251: 
                   2252:     #return defined($self->{DISCUSSION_TIME}->{$symb});
1.259     raeburn  2253: 
                   2254: # backward compatibility (bulletin boards used to be 'wrapped')
                   2255:     my $ressymb = $symb;
                   2256:     if ($ressymb =~ m|adm/(\w+)/(\w+)/(\d+)/bulletinboard$|) {
1.266     raeburn  2257:         unless ($ressymb =~ m|adm/wrapper/adm|) {
1.259     raeburn  2258:             $ressymb = 'bulletin___'.$3.'___adm/wrapper/adm/'.$1.'/'.$2.'/'.$3.'/bulletinboard';
                   2259:         }
                   2260:     }
                   2261: 
                   2262:     if ( defined ( $self->{LAST_READ}->{$ressymb} ) ) {
                   2263:         return $self->{DISCUSSION_TIME}->{$ressymb} > $self->{LAST_READ}->{$ressymb};
                   2264:     } else {
1.266     raeburn  2265: #        return $self->{DISCUSSION_TIME}->{$ressymb} >  $self->{LAST_CHECK}; # v.1.1 behavior 
                   2266:         return $self->{DISCUSSION_TIME}->{$ressymb} >  0; # in 1.2 will display speech bubble icons for all items with posts until marked as read (even if read in v 1.1).
1.259     raeburn  2267:     }
1.133     bowersj2 2268: }
                   2269: 
                   2270: # Private method: Does the given resource (as a symb string) have
                   2271: # current feedback? Returns the string in the feedback hash, which
                   2272: # will be false if it does not exist.
                   2273: sub getFeedback { 
                   2274:     my $self = shift;
                   2275:     my $symb = shift;
                   2276: 
1.221     bowersj2 2277:     $self->generate_email_discuss_status();
                   2278: 
1.133     bowersj2 2279:     if (!defined($self->{FEEDBACK})) { return ""; }
                   2280:     
                   2281:     return $self->{FEEDBACK}->{$symb};
                   2282: }
                   2283: 
                   2284: # Private method: Get the errors for that resource (by source).
                   2285: sub getErrors { 
                   2286:     my $self = shift;
                   2287:     my $src = shift;
1.221     bowersj2 2288: 
                   2289:     $self->generate_email_discuss_status();
                   2290: 
1.133     bowersj2 2291:     if (!defined($self->{ERROR_MSG})) { return ""; }
                   2292:     return $self->{ERROR_MSG}->{$src};
                   2293: }
                   2294: 
                   2295: =pod
                   2296: 
1.174     albertel 2297: =item * B<getById>(id):
                   2298: 
                   2299: Based on the ID of the resource (1.1, 3.2, etc.), get a resource
                   2300: object for that resource. This method, or other methods that use it
                   2301: (as in the resource object) is the only proper way to obtain a
                   2302: resource object.
1.133     bowersj2 2303: 
1.194     bowersj2 2304: =item * B<getBySymb>(symb):
                   2305: 
                   2306: Based on the symb of the resource, get a resource object for that
                   2307: resource. This is one of the proper ways to get a resource object.
                   2308: 
                   2309: =item * B<getMapByMapPc>(map_pc):
                   2310: 
                   2311: Based on the map_pc of the resource, get a resource object for
                   2312: the given map. This is one of the proper ways to get a resource object.
                   2313: 
1.133     bowersj2 2314: =cut
                   2315: 
                   2316: # The strategy here is to cache the resource objects, and only construct them
                   2317: # as we use them. The real point is to prevent reading any more from the tied
                   2318: # hash then we have to, which should hopefully alleviate speed problems.
                   2319: 
                   2320: sub getById {
                   2321:     my $self = shift;
                   2322:     my $id = shift;
                   2323: 
                   2324:     if (defined ($self->{RESOURCE_CACHE}->{$id}))
                   2325:     {
                   2326:         return $self->{RESOURCE_CACHE}->{$id};
                   2327:     }
                   2328: 
                   2329:     # resource handles inserting itself into cache.
                   2330:     # Not clear why the quotes are necessary, but as of this
                   2331:     # writing it doesn't work without them.
                   2332:     return "Apache::lonnavmaps::resource"->new($self, $id);
1.132     bowersj2 2333: }
1.133     bowersj2 2334: 
1.172     bowersj2 2335: sub getBySymb {
                   2336:     my $self = shift;
                   2337:     my $symb = shift;
1.277     matthew  2338: 
1.228     albertel 2339:     my ($mapUrl, $id, $filename) = &Apache::lonnet::decode_symb($symb);
1.172     bowersj2 2340:     my $map = $self->getResourceByUrl($mapUrl);
1.277     matthew  2341:     my $returnvalue = undef;
                   2342:     if (ref($map)) {
                   2343:         $returnvalue = $self->getById($map->map_pc() .'.'.$id);
                   2344:     }
                   2345:     return $returnvalue;
1.194     bowersj2 2346: }
                   2347: 
                   2348: sub getByMapPc {
                   2349:     my $self = shift;
                   2350:     my $map_pc = shift;
                   2351:     my $map_id = $self->{NAV_HASH}->{'map_id_' . $map_pc};
                   2352:     $map_id = $self->{NAV_HASH}->{'ids_' . $map_id};
                   2353:     return $self->getById($map_id);
1.172     bowersj2 2354: }
                   2355: 
1.133     bowersj2 2356: =pod
                   2357: 
1.174     albertel 2358: =item * B<firstResource>():
                   2359: 
                   2360: Returns a resource object reference corresponding to the first
                   2361: resource in the navmap.
1.133     bowersj2 2362: 
                   2363: =cut
                   2364: 
                   2365: sub firstResource {
                   2366:     my $self = shift;
                   2367:     my $firstResource = $self->navhash('map_start_' .
                   2368:                      &Apache::lonnet::clutter($ENV{'request.course.uri'}));
                   2369:     return $self->getById($firstResource);
1.132     bowersj2 2370: }
1.133     bowersj2 2371: 
                   2372: =pod
                   2373: 
1.174     albertel 2374: =item * B<finishResource>():
                   2375: 
                   2376: Returns a resource object reference corresponding to the last resource
                   2377: in the navmap.
1.133     bowersj2 2378: 
                   2379: =cut
                   2380: 
                   2381: sub finishResource {
                   2382:     my $self = shift;
                   2383:     my $firstResource = $self->navhash('map_finish_' .
                   2384:                      &Apache::lonnet::clutter($ENV{'request.course.uri'}));
                   2385:     return $self->getById($firstResource);
1.132     bowersj2 2386: }
1.133     bowersj2 2387: 
                   2388: # Parmval reads the parm hash and cascades the lookups. parmval_real does
                   2389: # the actual lookup; parmval caches the results.
                   2390: sub parmval {
                   2391:     my $self = shift;
                   2392:     my ($what,$symb)=@_;
                   2393:     my $hashkey = $what."|||".$symb;
                   2394: 
                   2395:     if (defined($self->{PARM_CACHE}->{$hashkey})) {
                   2396:         return $self->{PARM_CACHE}->{$hashkey};
                   2397:     }
                   2398: 
                   2399:     my $result = $self->parmval_real($what, $symb);
                   2400:     $self->{PARM_CACHE}->{$hashkey} = $result;
                   2401:     return $result;
1.132     bowersj2 2402: }
                   2403: 
1.133     bowersj2 2404: sub parmval_real {
                   2405:     my $self = shift;
1.219     albertel 2406:     my ($what,$symb,$recurse) = @_;
1.133     bowersj2 2407: 
1.221     bowersj2 2408:     # Make sure the {USER_OPT} and {COURSE_OPT} hashes are populated
                   2409:     $self->generate_course_user_opt();
                   2410: 
1.133     bowersj2 2411:     my $cid=$ENV{'request.course.id'};
                   2412:     my $csec=$ENV{'request.course.sec'};
                   2413:     my $uname=$ENV{'user.name'};
                   2414:     my $udom=$ENV{'user.domain'};
                   2415: 
                   2416:     unless ($symb) { return ''; }
                   2417:     my $result='';
                   2418: 
1.226     www      2419:     my ($mapname,$id,$fn)=&Apache::lonnet::decode_symb($symb);
1.133     bowersj2 2420: 
                   2421: # ----------------------------------------------------- Cascading lookup scheme
                   2422:     my $rwhat=$what;
                   2423:     $what=~s/^parameter\_//;
                   2424:     $what=~s/\_/\./;
                   2425: 
                   2426:     my $symbparm=$symb.'.'.$what;
                   2427:     my $mapparm=$mapname.'___(all).'.$what;
                   2428:     my $usercourseprefix=$uname.'_'.$udom.'_'.$cid;
                   2429: 
                   2430:     my $seclevel= $usercourseprefix.'.['.$csec.'].'.$what;
                   2431:     my $seclevelr=$usercourseprefix.'.['.$csec.'].'.$symbparm;
                   2432:     my $seclevelm=$usercourseprefix.'.['.$csec.'].'.$mapparm;
                   2433: 
                   2434:     my $courselevel= $usercourseprefix.'.'.$what;
                   2435:     my $courselevelr=$usercourseprefix.'.'.$symbparm;
                   2436:     my $courselevelm=$usercourseprefix.'.'.$mapparm;
                   2437: 
                   2438:     my $useropt = $self->{USER_OPT};
                   2439:     my $courseopt = $self->{COURSE_OPT};
                   2440:     my $parmhash = $self->{PARM_HASH};
                   2441: 
                   2442: # ---------------------------------------------------------- first, check user
                   2443:     if ($uname and defined($useropt)) {
                   2444:         if (defined($$useropt{$courselevelr})) { return $$useropt{$courselevelr}; }
                   2445:         if (defined($$useropt{$courselevelm})) { return $$useropt{$courselevelm}; }
                   2446:         if (defined($$useropt{$courselevel})) { return $$useropt{$courselevel}; }
                   2447:     }
                   2448: 
                   2449: # ------------------------------------------------------- second, check course
                   2450:     if ($csec and defined($courseopt)) {
                   2451:         if (defined($$courseopt{$seclevelr})) { return $$courseopt{$seclevelr}; }
                   2452:         if (defined($$courseopt{$seclevelm})) { return $$courseopt{$seclevelm}; }
                   2453:         if (defined($$courseopt{$seclevel})) { return $$courseopt{$seclevel}; }
                   2454:     }
                   2455: 
                   2456:     if (defined($courseopt)) {
                   2457:         if (defined($$courseopt{$courselevelr})) { return $$courseopt{$courselevelr}; }
                   2458:         if (defined($$courseopt{$courselevelm})) { return $$courseopt{$courselevelm}; }
                   2459:         if (defined($$courseopt{$courselevel})) { return $$courseopt{$courselevel}; }
                   2460:     }
                   2461: 
                   2462: # ----------------------------------------------------- third, check map parms
                   2463: 
                   2464:     my $thisparm=$$parmhash{$symbparm};
                   2465:     if (defined($thisparm)) { return $thisparm; }
                   2466: 
                   2467: # ----------------------------------------------------- fourth , check default
                   2468: 
1.246     albertel 2469:     my $meta_rwhat=$rwhat;
                   2470:     $meta_rwhat=~s/\./_/g;
                   2471:     my $default=&Apache::lonnet::metadata($fn,$meta_rwhat);
                   2472:     if (defined($default)) { return $default}
                   2473:     $default=&Apache::lonnet::metadata($fn,'parameter_'.$meta_rwhat);
1.133     bowersj2 2474:     if (defined($default)) { return $default}
                   2475: 
                   2476: # --------------------------------------------------- fifth , cascade up parts
                   2477: 
                   2478:     my ($space,@qualifier)=split(/\./,$rwhat);
                   2479:     my $qualifier=join('.',@qualifier);
                   2480:     unless ($space eq '0') {
1.160     albertel 2481: 	my @parts=split(/_/,$space);
                   2482: 	my $id=pop(@parts);
                   2483: 	my $part=join('_',@parts);
                   2484: 	if ($part eq '') { $part='0'; }
1.219     albertel 2485: 	my $partgeneral=$self->parmval($part.".$qualifier",$symb,1);
1.160     albertel 2486: 	if (defined($partgeneral)) { return $partgeneral; }
1.133     bowersj2 2487:     }
1.219     albertel 2488:     if ($recurse) { return undef; }
                   2489:     my $pack_def=&Apache::lonnet::packages_tab_default($fn,'resource.'.$what);
                   2490:     if (defined($pack_def)) { return $pack_def; }
1.133     bowersj2 2491:     return '';
1.145     bowersj2 2492: }
                   2493: 
1.174     albertel 2494: =pod
1.145     bowersj2 2495: 
1.174     albertel 2496: =item * B<getResourceByUrl>(url):
1.145     bowersj2 2497: 
1.174     albertel 2498: Retrieves a resource object by URL of the resource. If passed a
                   2499: resource object, it will simply return it, so it is safe to use this
                   2500: method in code like "$res = $navmap->getResourceByUrl($res)", if
                   2501: you're not sure if $res is already an object, or just a URL. If the
                   2502: resource appears multiple times in the course, only the first instance
                   2503: will be returned. As a result, this is probably useful only for maps.
                   2504: 
                   2505: =item * B<retrieveResources>(map, filterFunc, recursive, bailout):
                   2506: 
                   2507: The map is a specification of a map to retreive the resources from,
                   2508: either as a url or as an object. The filterFunc is a reference to a
                   2509: function that takes a resource object as its one argument and returns
                   2510: true if the resource should be included, or false if it should not
                   2511: be. If recursive is true, the map will be recursively examined,
                   2512: otherwise it will not be. If bailout is true, the function will return
                   2513: as soon as it finds a resource, if false it will finish. By default,
                   2514: the map is the top-level map of the course, filterFunc is a function
                   2515: that always returns 1, recursive is true, bailout is false. The
                   2516: resources will be returned in a list containing the resource objects
                   2517: for the corresponding resources, with B<no structure information> in
                   2518: the list; regardless of branching, recursion, etc., it will be a flat
                   2519: list.
                   2520: 
                   2521: Thus, this is suitable for cases where you don't want the structure,
                   2522: just a list of all resources. It is also suitable for finding out how
                   2523: many resources match a given description; for this use, if all you
                   2524: want to know is if I<any> resources match the description, the bailout
                   2525: parameter will allow you to avoid potentially expensive enumeration of
                   2526: all matching resources.
1.145     bowersj2 2527: 
1.256     albertel 2528: =item * B<hasResource>(map, filterFunc, recursive):
1.145     bowersj2 2529: 
1.174     albertel 2530: Convience method for
1.146     bowersj2 2531: 
                   2532:  scalar(retrieveResources($map, $filterFunc, $recursive, 1)) > 0
                   2533: 
1.174     albertel 2534: which will tell whether the map has resources matching the description
                   2535: in the filter function.
1.146     bowersj2 2536: 
1.145     bowersj2 2537: =cut
                   2538: 
1.277     matthew  2539: 
1.145     bowersj2 2540: sub getResourceByUrl {
                   2541:     my $self = shift;
                   2542:     my $resUrl = shift;
                   2543: 
                   2544:     if (ref($resUrl)) { return $resUrl; }
                   2545: 
                   2546:     $resUrl = &Apache::lonnet::clutter($resUrl);
                   2547:     my $resId = $self->{NAV_HASH}->{'ids_' . $resUrl};
                   2548:     if ($resId =~ /,/) {
                   2549:         $resId = (split (/,/, $resId))[0];
                   2550:     }
                   2551:     if (!$resId) { return ''; }
                   2552:     return $self->getById($resId);
                   2553: }
                   2554: 
                   2555: sub retrieveResources {
                   2556:     my $self = shift;
                   2557:     my $map = shift;
                   2558:     my $filterFunc = shift;
                   2559:     if (!defined ($filterFunc)) {
                   2560:         $filterFunc = sub {return 1;};
                   2561:     }
                   2562:     my $recursive = shift;
                   2563:     if (!defined($recursive)) { $recursive = 1; }
                   2564:     my $bailout = shift;
                   2565:     if (!defined($bailout)) { $bailout = 0; }
                   2566: 
                   2567:     # Create the necessary iterator.
                   2568:     if (!ref($map)) { # assume it's a url of a map.
1.172     bowersj2 2569:         $map = $self->getResourceByUrl($map);
1.145     bowersj2 2570:     }
                   2571: 
1.213     bowersj2 2572:     # If nothing was passed, assume top-level map
                   2573:     if (!$map) {
                   2574: 	$map = $self->getById('0.0');
                   2575:     }
                   2576: 
1.145     bowersj2 2577:     # Check the map's validity.
1.213     bowersj2 2578:     if (!$map->is_map()) {
1.145     bowersj2 2579:         # Oh, to throw an exception.... how I'd love that!
                   2580:         return ();
                   2581:     }
                   2582: 
1.146     bowersj2 2583:     # Get an iterator.
                   2584:     my $it = $self->getIterator($map->map_start(), $map->map_finish(),
1.215     bowersj2 2585:                                 undef, $recursive);
1.146     bowersj2 2586: 
                   2587:     my @resources = ();
                   2588: 
                   2589:     # Run down the iterator and collect the resources.
1.222     bowersj2 2590:     my $curRes;
                   2591: 
                   2592:     while ($curRes = $it->next()) {
1.146     bowersj2 2593:         if (ref($curRes)) {
                   2594:             if (!&$filterFunc($curRes)) {
                   2595:                 next;
                   2596:             }
                   2597: 
                   2598:             push @resources, $curRes;
                   2599: 
                   2600:             if ($bailout) {
                   2601:                 return @resources;
                   2602:             }
                   2603:         }
                   2604: 
                   2605:     }
                   2606: 
                   2607:     return @resources;
                   2608: }
                   2609: 
                   2610: sub hasResource {
                   2611:     my $self = shift;
                   2612:     my $map = shift;
                   2613:     my $filterFunc = shift;
                   2614:     my $recursive = shift;
                   2615:     
                   2616:     return scalar($self->retrieveResources($map, $filterFunc, $recursive, 1)) > 0;
1.133     bowersj2 2617: }
1.51      bowersj2 2618: 
                   2619: 1;
                   2620: 
                   2621: package Apache::lonnavmaps::iterator;
                   2622: 
                   2623: =pod
                   2624: 
                   2625: =back
                   2626: 
1.174     albertel 2627: =head1 Object: navmap Iterator
1.51      bowersj2 2628: 
1.174     albertel 2629: An I<iterator> encapsulates the logic required to traverse a data
                   2630: structure. navmap uses an iterator to traverse the course map
                   2631: according to the criteria you wish to use.
                   2632: 
                   2633: To obtain an iterator, call the B<getIterator>() function of a
                   2634: B<navmap> object. (Do not instantiate Apache::lonnavmaps::iterator
                   2635: directly.) This will return a reference to the iterator:
1.51      bowersj2 2636: 
                   2637: C<my $resourceIterator = $navmap-E<gt>getIterator();>
                   2638: 
                   2639: To get the next thing from the iterator, call B<next>:
                   2640: 
                   2641: C<my $nextThing = $resourceIterator-E<gt>next()>
                   2642: 
                   2643: getIterator behaves as follows:
                   2644: 
                   2645: =over 4
                   2646: 
1.174     albertel 2647: =item * B<getIterator>(firstResource, finishResource, filterHash, condition, forceTop, returnTopMap):
                   2648: 
                   2649: All parameters are optional. firstResource is a resource reference
                   2650: corresponding to where the iterator should start. It defaults to
                   2651: navmap->firstResource() for the corresponding nav map. finishResource
                   2652: corresponds to where you want the iterator to end, defaulting to
                   2653: navmap->finishResource(). filterHash is a hash used as a set
                   2654: containing strings representing the resource IDs, defaulting to
                   2655: empty. Condition is a 1 or 0 that sets what to do with the filter
1.205     bowersj2 2656: hash: If a 0, then only resources that exist IN the filterHash will be
1.174     albertel 2657: recursed on. If it is a 1, only resources NOT in the filterHash will
                   2658: be recursed on. Defaults to 0. forceTop is a boolean value. If it is
                   2659: false (default), the iterator will only return the first level of map
                   2660: that is not just a single, 'redirecting' map. If true, the iterator
                   2661: will return all information, starting with the top-level map,
                   2662: regardless of content. returnTopMap, if true (default false), will
                   2663: cause the iterator to return the top-level map object (resource 0.0)
                   2664: before anything else.
                   2665: 
                   2666: Thus, by default, only top-level resources will be shown. Change the
                   2667: condition to a 1 without changing the hash, and all resources will be
                   2668: shown. Changing the condition to 1 and including some values in the
                   2669: hash will allow you to selectively suppress parts of the navmap, while
                   2670: leaving it on 0 and adding things to the hash will allow you to
                   2671: selectively add parts of the nav map. See the handler code for
                   2672: examples.
                   2673: 
                   2674: The iterator will return either a reference to a resource object, or a
                   2675: token representing something in the map, such as the beginning of a
                   2676: new branch. The possible tokens are:
                   2677: 
                   2678: =over 4
1.51      bowersj2 2679: 
1.222     bowersj2 2680: =item * B<END_ITERATOR>:
                   2681: 
                   2682: The iterator has returned all that it's going to. Further calls to the
                   2683: iterator will just produce more of these. This is a "false" value, and
                   2684: is the only false value the iterator which will be returned, so it can
                   2685: be used as a loop sentinel.
                   2686: 
1.217     bowersj2 2687: =item * B<BEGIN_MAP>:
1.51      bowersj2 2688: 
1.174     albertel 2689: A new map is being recursed into. This is returned I<after> the map
                   2690: resource itself is returned.
1.51      bowersj2 2691: 
1.217     bowersj2 2692: =item * B<END_MAP>:
1.174     albertel 2693: 
                   2694: The map is now done.
1.51      bowersj2 2695: 
1.217     bowersj2 2696: =item * B<BEGIN_BRANCH>:
1.70      bowersj2 2697: 
1.174     albertel 2698: A branch is now starting. The next resource returned will be the first
                   2699: in that branch.
1.70      bowersj2 2700: 
1.217     bowersj2 2701: =item * B<END_BRANCH>:
1.70      bowersj2 2702: 
1.174     albertel 2703: The branch is now done.
1.51      bowersj2 2704: 
                   2705: =back
                   2706: 
1.174     albertel 2707: The tokens are retreivable via methods on the iterator object, i.e.,
                   2708: $iterator->END_MAP.
1.70      bowersj2 2709: 
1.174     albertel 2710: Maps can contain empty resources. The iterator will automatically skip
                   2711: over such resources, but will still treat the structure
                   2712: correctly. Thus, a complicated map with several branches, but
                   2713: consisting entirely of empty resources except for one beginning or
                   2714: ending resource, will cause a lot of BRANCH_STARTs and BRANCH_ENDs,
                   2715: but only one resource will be returned.
1.116     bowersj2 2716: 
1.242     matthew  2717: =back
                   2718: 
1.222     bowersj2 2719: =head2 Normal Usage
                   2720: 
                   2721: Normal usage of the iterator object is to do the following:
                   2722: 
                   2723:  my $it = $navmap->getIterator([your params here]);
                   2724:  my $curRes;
                   2725:  while ($curRes = $it->next()) {
                   2726:    [your logic here]
                   2727:  }
                   2728: 
                   2729: Note that inside of the loop, it's frequently useful to check if
                   2730: "$curRes" is a reference or not with the reference function; only
                   2731: resource objects will be references, and any non-references will 
                   2732: be the tokens described above.
                   2733: 
                   2734: Also note there is some old code floating around that trys to track
                   2735: the depth of the iterator to see when it's done; do not copy that 
                   2736: code. It is difficult to get right and harder to understand then
                   2737: this. They should be migrated to this new style.
1.51      bowersj2 2738: 
                   2739: =cut
                   2740: 
                   2741: # Here are the tokens for the iterator:
                   2742: 
1.222     bowersj2 2743: sub END_ITERATOR { return 0; }
1.51      bowersj2 2744: sub BEGIN_MAP { return 1; }    # begining of a new map
                   2745: sub END_MAP { return 2; }      # end of the map
                   2746: sub BEGIN_BRANCH { return 3; } # beginning of a branch
                   2747: sub END_BRANCH { return 4; }   # end of a branch
1.89      bowersj2 2748: sub FORWARD { return 1; }      # go forward
                   2749: sub BACKWARD { return 2; }
1.51      bowersj2 2750: 
1.96      bowersj2 2751: sub min {
                   2752:     (my $a, my $b) = @_;
                   2753:     if ($a < $b) { return $a; } else { return $b; }
                   2754: }
                   2755: 
1.94      bowersj2 2756: sub new {
                   2757:     # magic invocation to create a class instance
                   2758:     my $proto = shift;
                   2759:     my $class = ref($proto) || $proto;
                   2760:     my $self = {};
                   2761: 
                   2762:     $self->{NAV_MAP} = shift;
                   2763:     return undef unless ($self->{NAV_MAP});
                   2764: 
                   2765:     # Handle the parameters
                   2766:     $self->{FIRST_RESOURCE} = shift || $self->{NAV_MAP}->firstResource();
                   2767:     $self->{FINISH_RESOURCE} = shift || $self->{NAV_MAP}->finishResource();
                   2768: 
                   2769:     # If the given resources are just the ID of the resource, get the
                   2770:     # objects
                   2771:     if (!ref($self->{FIRST_RESOURCE})) { $self->{FIRST_RESOURCE} = 
                   2772:              $self->{NAV_MAP}->getById($self->{FIRST_RESOURCE}); }
                   2773:     if (!ref($self->{FINISH_RESOURCE})) { $self->{FINISH_RESOURCE} = 
                   2774:              $self->{NAV_MAP}->getById($self->{FINISH_RESOURCE}); }
                   2775: 
                   2776:     $self->{FILTER} = shift;
                   2777: 
                   2778:     # A hash, used as a set, of resource already seen
                   2779:     $self->{ALREADY_SEEN} = shift;
                   2780:     if (!defined($self->{ALREADY_SEEN})) { $self->{ALREADY_SEEN} = {} };
                   2781:     $self->{CONDITION} = shift;
                   2782: 
1.116     bowersj2 2783:     # Do we want to automatically follow "redirection" maps?
                   2784:     $self->{FORCE_TOP} = shift;
                   2785: 
1.162     bowersj2 2786:     # Do we want to return the top-level map object (resource 0.0)?
                   2787:     $self->{RETURN_0} = shift;
                   2788:     # have we done that yet?
                   2789:     $self->{HAVE_RETURNED_0} = 0;
                   2790: 
1.94      bowersj2 2791:     # Now, we need to pre-process the map, by walking forward and backward
                   2792:     # over the parts of the map we're going to look at.
1.96      bowersj2 2793: 
1.97      bowersj2 2794:     # The processing steps are exactly the same, except for a few small 
                   2795:     # changes, so I bundle those up in the following list of two elements:
                   2796:     # (direction_to_iterate, VAL_name, next_resource_method_to_call,
                   2797:     # first_resource).
                   2798:     # This prevents writing nearly-identical code twice.
                   2799:     my @iterations = ( [FORWARD(), 'TOP_DOWN_VAL', 'getNext', 
                   2800:                         'FIRST_RESOURCE'],
                   2801:                        [BACKWARD(), 'BOT_UP_VAL', 'getPrevious', 
                   2802:                         'FINISH_RESOURCE'] );
                   2803: 
1.98      bowersj2 2804:     my $maxDepth = 0; # tracks max depth
                   2805: 
1.116     bowersj2 2806:     # If there is only one resource in this map, and it's a map, we
                   2807:     # want to remember that, so the user can ask for the first map
                   2808:     # that isn't just a redirector.
                   2809:     my $resource; my $resourceCount = 0;
                   2810: 
1.209     bowersj2 2811:     # Documentation on this algorithm can be found in the CVS repository at 
                   2812:     # /docs/lonnavdocs; these "**#**" markers correspond to documentation
                   2813:     # in that file.
1.107     bowersj2 2814:     # **1**
                   2815: 
1.97      bowersj2 2816:     foreach my $pass (@iterations) {
                   2817:         my $direction = $pass->[0];
                   2818:         my $valName = $pass->[1];
                   2819:         my $nextResourceMethod = $pass->[2];
                   2820:         my $firstResourceName = $pass->[3];
                   2821: 
                   2822:         my $iterator = Apache::lonnavmaps::DFSiterator->new($self->{NAV_MAP}, 
                   2823:                                                             $self->{FIRST_RESOURCE},
                   2824:                                                             $self->{FINISH_RESOURCE},
                   2825:                                                             {}, undef, 0, $direction);
1.96      bowersj2 2826:     
1.97      bowersj2 2827:         # prime the recursion
                   2828:         $self->{$firstResourceName}->{DATA}->{$valName} = 0;
1.222     bowersj2 2829: 	$iterator->next();
1.97      bowersj2 2830:         my $curRes = $iterator->next();
1.222     bowersj2 2831: 	my $depth = 1;
                   2832:         while ($depth > 0) {
                   2833: 	    if ($curRes == $iterator->BEGIN_MAP()) { $depth++; }
                   2834: 	    if ($curRes == $iterator->END_MAP()) { $depth--; }
                   2835: 
1.97      bowersj2 2836:             if (ref($curRes)) {
1.116     bowersj2 2837:                 # If there's only one resource, this will save it
1.117     bowersj2 2838:                 # we have to filter empty resources from consideration here,
                   2839:                 # or even "empty", redirecting maps have two (start & finish)
                   2840:                 # or three (start, finish, plus redirector)
                   2841:                 if($direction == FORWARD && $curRes->src()) { 
                   2842:                     $resource = $curRes; $resourceCount++; 
                   2843:                 }
1.97      bowersj2 2844:                 my $resultingVal = $curRes->{DATA}->{$valName};
                   2845:                 my $nextResources = $curRes->$nextResourceMethod();
1.116     bowersj2 2846:                 my $nextCount = scalar(@{$nextResources});
1.104     bowersj2 2847: 
1.116     bowersj2 2848:                 if ($nextCount == 1) { # **3**
1.97      bowersj2 2849:                     my $current = $nextResources->[0]->{DATA}->{$valName} || 999999999;
                   2850:                     $nextResources->[0]->{DATA}->{$valName} = min($resultingVal, $current);
                   2851:                 }
                   2852:                 
1.116     bowersj2 2853:                 if ($nextCount > 1) { # **4**
1.97      bowersj2 2854:                     foreach my $res (@{$nextResources}) {
                   2855:                         my $current = $res->{DATA}->{$valName} || 999999999;
                   2856:                         $res->{DATA}->{$valName} = min($current, $resultingVal + 1);
                   2857:                     }
                   2858:                 }
                   2859:             }
1.96      bowersj2 2860:             
1.107     bowersj2 2861:             # Assign the final val (**2**)
1.97      bowersj2 2862:             if (ref($curRes) && $direction == BACKWARD()) {
1.98      bowersj2 2863:                 my $finalDepth = min($curRes->{DATA}->{TOP_DOWN_VAL},
                   2864:                                      $curRes->{DATA}->{BOT_UP_VAL});
                   2865:                 
                   2866:                 $curRes->{DATA}->{DISPLAY_DEPTH} = $finalDepth;
                   2867:                 if ($finalDepth > $maxDepth) {$maxDepth = $finalDepth;}
1.190     bowersj2 2868:             }
1.222     bowersj2 2869: 
                   2870: 	    $curRes = $iterator->next();
1.96      bowersj2 2871:         }
                   2872:     }
1.94      bowersj2 2873: 
1.116     bowersj2 2874:     # Check: Was this only one resource, a map?
1.255     albertel 2875:     if ($resourceCount == 1 && $resource->is_sequence() && !$self->{FORCE_TOP}) { 
1.116     bowersj2 2876:         my $firstResource = $resource->map_start();
                   2877:         my $finishResource = $resource->map_finish();
                   2878:         return 
                   2879:             Apache::lonnavmaps::iterator->new($self->{NAV_MAP}, $firstResource,
                   2880:                                               $finishResource, $self->{FILTER},
                   2881:                                               $self->{ALREADY_SEEN}, 
                   2882:                                               $self->{CONDITION}, 0);
                   2883:         
                   2884:     }
                   2885: 
1.98      bowersj2 2886:     # Set up some bookkeeping information.
                   2887:     $self->{CURRENT_DEPTH} = 0;
                   2888:     $self->{MAX_DEPTH} = $maxDepth;
                   2889:     $self->{STACK} = [];
                   2890:     $self->{RECURSIVE_ITERATOR_FLAG} = 0;
1.222     bowersj2 2891:     $self->{FINISHED} = 0; # When true, the iterator has finished
1.98      bowersj2 2892: 
                   2893:     for (my $i = 0; $i <= $self->{MAX_DEPTH}; $i++) {
                   2894:         push @{$self->{STACK}}, [];
                   2895:     }
                   2896: 
1.107     bowersj2 2897:     # Prime the recursion w/ the first resource **5**
1.98      bowersj2 2898:     push @{$self->{STACK}->[0]}, $self->{FIRST_RESOURCE};
                   2899:     $self->{ALREADY_SEEN}->{$self->{FIRST_RESOURCE}->{ID}} = 1;
                   2900: 
                   2901:     bless ($self);
                   2902: 
                   2903:     return $self;
                   2904: }
                   2905: 
                   2906: sub next {
                   2907:     my $self = shift;
1.256     albertel 2908:     my $closeAllPages=shift;
1.222     bowersj2 2909:     if ($self->{FINISHED}) {
                   2910: 	return END_ITERATOR();
                   2911:     }
                   2912: 
1.162     bowersj2 2913:     # If we want to return the top-level map object, and haven't yet,
                   2914:     # do so.
                   2915:     if ($self->{RETURN_0} && !$self->{HAVE_RETURNED_0}) {
                   2916:         $self->{HAVE_RETURNED_0} = 1;
                   2917:         return $self->{NAV_MAP}->getById('0.0');
                   2918:     }
1.98      bowersj2 2919: 
                   2920:     if ($self->{RECURSIVE_ITERATOR_FLAG}) {
                   2921:         # grab the next from the recursive iterator 
1.256     albertel 2922:         my $next = $self->{RECURSIVE_ITERATOR}->next($closeAllPages);
1.98      bowersj2 2923: 
                   2924:         # is it a begin or end map? If so, update the depth
                   2925:         if ($next == BEGIN_MAP() ) { $self->{RECURSIVE_DEPTH}++; }
                   2926:         if ($next == END_MAP() ) { $self->{RECURSIVE_DEPTH}--; }
                   2927: 
                   2928:         # Are we back at depth 0? If so, stop recursing
                   2929:         if ($self->{RECURSIVE_DEPTH} == 0) {
                   2930:             $self->{RECURSIVE_ITERATOR_FLAG} = 0;
                   2931:         }
                   2932: 
                   2933:         return $next;
                   2934:     }
                   2935: 
                   2936:     if (defined($self->{FORCE_NEXT})) {
                   2937:         my $tmp = $self->{FORCE_NEXT};
                   2938:         $self->{FORCE_NEXT} = undef;
                   2939:         return $tmp;
                   2940:     }
                   2941: 
                   2942:     # Have we not yet begun? If not, return BEGIN_MAP and
                   2943:     # remember we've started.
                   2944:     if ( !$self->{STARTED} ) { 
                   2945:         $self->{STARTED} = 1;
                   2946:         return $self->BEGIN_MAP();
                   2947:     }
                   2948: 
                   2949:     # Here's the guts of the iterator.
                   2950:     
                   2951:     # Find the next resource, if any.
                   2952:     my $found = 0;
                   2953:     my $i = $self->{MAX_DEPTH};
                   2954:     my $newDepth;
                   2955:     my $here;
                   2956:     while ( $i >= 0 && !$found ) {
1.107     bowersj2 2957:         if ( scalar(@{$self->{STACK}->[$i]}) > 0 ) { # **6**
                   2958:             $here = pop @{$self->{STACK}->[$i]}; # **7**
1.98      bowersj2 2959:             $found = 1;
                   2960:             $newDepth = $i;
                   2961:         }
                   2962:         $i--;
                   2963:     }
                   2964: 
                   2965:     # If we still didn't find anything, we're done.
                   2966:     if ( !$found ) {
                   2967:         # We need to get back down to the correct branch depth
                   2968:         if ( $self->{CURRENT_DEPTH} > 0 ) {
                   2969:             $self->{CURRENT_DEPTH}--;
                   2970:             return END_BRANCH();
                   2971:         } else {
1.222     bowersj2 2972: 	    $self->{FINISHED} = 1;
1.98      bowersj2 2973:             return END_MAP();
                   2974:         }
                   2975:     }
                   2976: 
1.104     bowersj2 2977:     # If this is not a resource, it must be an END_BRANCH marker we want
                   2978:     # to return directly.
1.107     bowersj2 2979:     if (!ref($here)) { # **8**
1.104     bowersj2 2980:         if ($here == END_BRANCH()) { # paranoia, in case of later extension
                   2981:             $self->{CURRENT_DEPTH}--;
                   2982:             return $here;
                   2983:         }
                   2984:     }
                   2985: 
                   2986:     # Otherwise, it is a resource and it's safe to store in $self->{HERE}
                   2987:     $self->{HERE} = $here;
                   2988: 
1.98      bowersj2 2989:     # Get to the right level
                   2990:     if ( $self->{CURRENT_DEPTH} > $newDepth ) {
                   2991:         push @{$self->{STACK}->[$newDepth]}, $here;
                   2992:         $self->{CURRENT_DEPTH}--;
                   2993:         return END_BRANCH();
                   2994:     }
                   2995:     if ( $self->{CURRENT_DEPTH} < $newDepth) {
                   2996:         push @{$self->{STACK}->[$newDepth]}, $here;
                   2997:         $self->{CURRENT_DEPTH}++;
                   2998:         return BEGIN_BRANCH();
                   2999:     }
                   3000: 
                   3001:     # If we made it here, we have the next resource, and we're at the
                   3002:     # right branch level. So let's examine the resource for where
                   3003:     # we can get to from here.
                   3004: 
                   3005:     # So we need to look at all the resources we can get to from here,
                   3006:     # categorize them if we haven't seen them, remember if we have a new
                   3007:     my $nextUnfiltered = $here->getNext();
1.104     bowersj2 3008:     my $maxDepthAdded = -1;
                   3009:     
1.98      bowersj2 3010:     for (@$nextUnfiltered) {
                   3011:         if (!defined($self->{ALREADY_SEEN}->{$_->{ID}})) {
1.104     bowersj2 3012:             my $depth = $_->{DATA}->{DISPLAY_DEPTH};
                   3013:             push @{$self->{STACK}->[$depth]}, $_;
1.98      bowersj2 3014:             $self->{ALREADY_SEEN}->{$_->{ID}} = 1;
1.104     bowersj2 3015:             if ($maxDepthAdded < $depth) { $maxDepthAdded = $depth; }
1.98      bowersj2 3016:         }
                   3017:     }
1.104     bowersj2 3018: 
                   3019:     # Is this the end of a branch? If so, all of the resources examined above
                   3020:     # led to lower levels then the one we are currently at, so we push a END_BRANCH
                   3021:     # marker onto the stack so we don't forget.
                   3022:     # Example: For the usual A(BC)(DE)F case, when the iterator goes down the
                   3023:     # BC branch and gets to C, it will see F as the only next resource, but it's
                   3024:     # one level lower. Thus, this is the end of the branch, since there are no
                   3025:     # more resources added to this level or above.
1.111     bowersj2 3026:     # We don't do this if the examined resource is the finish resource,
                   3027:     # because the condition given above is true, but the "END_MAP" will
                   3028:     # take care of things and we should already be at depth 0.
1.104     bowersj2 3029:     my $isEndOfBranch = $maxDepthAdded < $self->{CURRENT_DEPTH};
1.111     bowersj2 3030:     if ($isEndOfBranch && $here != $self->{FINISH_RESOURCE}) { # **9**
1.104     bowersj2 3031:         push @{$self->{STACK}->[$self->{CURRENT_DEPTH}]}, END_BRANCH();
                   3032:     }
                   3033: 
1.98      bowersj2 3034:     # That ends the main iterator logic. Now, do we want to recurse
                   3035:     # down this map (if this resource is a map)?
1.256     albertel 3036:     if ( ($self->{HERE}->is_sequence() || (!$closeAllPages && $self->{HERE}->is_page())) &&
1.98      bowersj2 3037:         (defined($self->{FILTER}->{$self->{HERE}->map_pc()}) xor $self->{CONDITION})) {
                   3038:         $self->{RECURSIVE_ITERATOR_FLAG} = 1;
                   3039:         my $firstResource = $self->{HERE}->map_start();
                   3040:         my $finishResource = $self->{HERE}->map_finish();
                   3041: 
                   3042:         $self->{RECURSIVE_ITERATOR} = 
                   3043:             Apache::lonnavmaps::iterator->new($self->{NAV_MAP}, $firstResource,
                   3044:                                               $finishResource, $self->{FILTER},
                   3045:                                               $self->{ALREADY_SEEN}, $self->{CONDITION});
                   3046:     }
                   3047: 
1.116     bowersj2 3048:     # If this is a blank resource, don't actually return it.
1.117     bowersj2 3049:     # Should you ever find you need it, make sure to add an option to the code
                   3050:     #  that you can use; other things depend on this behavior.
1.138     bowersj2 3051:     my $browsePriv = $self->{HERE}->browsePriv();
                   3052:     if (!$self->{HERE}->src() || 
                   3053:         (!($browsePriv eq 'F') && !($browsePriv eq '2')) ) {
1.256     albertel 3054:         return $self->next($closeAllPages);
1.116     bowersj2 3055:     }
                   3056: 
1.98      bowersj2 3057:     return $self->{HERE};
                   3058: 
                   3059: }
                   3060: 
                   3061: =pod
                   3062: 
1.174     albertel 3063: The other method available on the iterator is B<getStack>, which
                   3064: returns an array populated with the current 'stack' of maps, as
                   3065: references to the resource objects. Example: This is useful when
                   3066: making the navigation map, as we need to check whether we are under a
                   3067: page map to see if we need to link directly to the resource, or to the
                   3068: page. The first elements in the array will correspond to the top of
                   3069: the stack (most inclusive map).
1.98      bowersj2 3070: 
                   3071: =cut
                   3072: 
                   3073: sub getStack {
                   3074:     my $self=shift;
                   3075: 
                   3076:     my @stack;
                   3077: 
                   3078:     $self->populateStack(\@stack);
                   3079: 
                   3080:     return \@stack;
                   3081: }
                   3082: 
                   3083: # Private method: Calls the iterators recursively to populate the stack.
                   3084: sub populateStack {
                   3085:     my $self=shift;
                   3086:     my $stack = shift;
                   3087: 
                   3088:     push @$stack, $self->{HERE} if ($self->{HERE});
                   3089: 
                   3090:     if ($self->{RECURSIVE_ITERATOR_FLAG}) {
                   3091:         $self->{RECURSIVE_ITERATOR}->populateStack($stack);
                   3092:     }
1.94      bowersj2 3093: }
                   3094: 
                   3095: 1;
                   3096: 
                   3097: package Apache::lonnavmaps::DFSiterator;
                   3098: 
1.100     bowersj2 3099: # Not documented in the perldoc: This is a simple iterator that just walks
                   3100: #  through the nav map and presents the resources in a depth-first search
                   3101: #  fashion, ignorant of conditionals, randomized resources, etc. It presents
                   3102: #  BEGIN_MAP and END_MAP, but does not understand branches at all. It is
                   3103: #  useful for pre-processing of some kind, and is in fact used by the main
                   3104: #  iterator that way, but that's about it.
                   3105: # One could imagine merging this into the init routine of the main iterator,
1.251     www      3106: #  but this might as well be left separate, since it is possible some other
1.100     bowersj2 3107: #  use might be found for it. - Jeremy
1.94      bowersj2 3108: 
1.117     bowersj2 3109: # Unlike the main iterator, this DOES return all resources, even blank ones.
                   3110: #  The main iterator needs them to correctly preprocess the map.
                   3111: 
1.94      bowersj2 3112: sub BEGIN_MAP { return 1; }    # begining of a new map
                   3113: sub END_MAP { return 2; }      # end of the map
                   3114: sub FORWARD { return 1; }      # go forward
                   3115: sub BACKWARD { return 2; }
                   3116: 
1.100     bowersj2 3117: # Params: Nav map ref, first resource id/ref, finish resource id/ref,
                   3118: #         filter hash ref (or undef), already seen hash or undef, condition
                   3119: #         (as in main iterator), direction FORWARD or BACKWARD (undef->forward).
1.51      bowersj2 3120: sub new {
                   3121:     # magic invocation to create a class instance
                   3122:     my $proto = shift;
                   3123:     my $class = ref($proto) || $proto;
                   3124:     my $self = {};
                   3125: 
                   3126:     $self->{NAV_MAP} = shift;
                   3127:     return undef unless ($self->{NAV_MAP});
                   3128: 
                   3129:     $self->{FIRST_RESOURCE} = shift || $self->{NAV_MAP}->firstResource();
                   3130:     $self->{FINISH_RESOURCE} = shift || $self->{NAV_MAP}->finishResource();
                   3131: 
                   3132:     # If the given resources are just the ID of the resource, get the
                   3133:     # objects
                   3134:     if (!ref($self->{FIRST_RESOURCE})) { $self->{FIRST_RESOURCE} = 
                   3135:              $self->{NAV_MAP}->getById($self->{FIRST_RESOURCE}); }
                   3136:     if (!ref($self->{FINISH_RESOURCE})) { $self->{FINISH_RESOURCE} = 
                   3137:              $self->{NAV_MAP}->getById($self->{FINISH_RESOURCE}); }
                   3138: 
                   3139:     $self->{FILTER} = shift;
                   3140: 
                   3141:     # A hash, used as a set, of resource already seen
                   3142:     $self->{ALREADY_SEEN} = shift;
1.140     bowersj2 3143:      if (!defined($self->{ALREADY_SEEN})) { $self->{ALREADY_SEEN} = {} };
1.63      bowersj2 3144:     $self->{CONDITION} = shift;
1.89      bowersj2 3145:     $self->{DIRECTION} = shift || FORWARD();
1.51      bowersj2 3146: 
1.100     bowersj2 3147:     # Flag: Have we started yet?
1.51      bowersj2 3148:     $self->{STARTED} = 0;
                   3149: 
                   3150:     # Should we continue calling the recursive iterator, if any?
                   3151:     $self->{RECURSIVE_ITERATOR_FLAG} = 0;
                   3152:     # The recursive iterator, if any
                   3153:     $self->{RECURSIVE_ITERATOR} = undef;
                   3154:     # Are we recursing on a map, or a branch?
                   3155:     $self->{RECURSIVE_MAP} = 1; # we'll manually unset this when recursing on branches
                   3156:     # And the count of how deep it is, so that this iterator can keep track of
                   3157:     # when to pick back up again.
                   3158:     $self->{RECURSIVE_DEPTH} = 0;
                   3159: 
                   3160:     # For keeping track of our branches, we maintain our own stack
1.100     bowersj2 3161:     $self->{STACK} = [];
1.51      bowersj2 3162: 
                   3163:     # Start with the first resource
1.89      bowersj2 3164:     if ($self->{DIRECTION} == FORWARD) {
1.100     bowersj2 3165:         push @{$self->{STACK}}, $self->{FIRST_RESOURCE};
1.89      bowersj2 3166:     } else {
1.100     bowersj2 3167:         push @{$self->{STACK}}, $self->{FINISH_RESOURCE};
1.89      bowersj2 3168:     }
1.51      bowersj2 3169: 
                   3170:     bless($self);
                   3171:     return $self;
                   3172: }
                   3173: 
                   3174: sub next {
                   3175:     my $self = shift;
                   3176:     
                   3177:     # Are we using a recursive iterator? If so, pull from that and
                   3178:     # watch the depth; we want to resume our level at the correct time.
1.98      bowersj2 3179:     if ($self->{RECURSIVE_ITERATOR_FLAG}) {
1.51      bowersj2 3180:         # grab the next from the recursive iterator
                   3181:         my $next = $self->{RECURSIVE_ITERATOR}->next();
                   3182:         
                   3183:         # is it a begin or end map? Update depth if so
                   3184:         if ($next == BEGIN_MAP() ) { $self->{RECURSIVE_DEPTH}++; }
                   3185:         if ($next == END_MAP() ) { $self->{RECURSIVE_DEPTH}--; }
                   3186: 
                   3187:         # Are we back at depth 0? If so, stop recursing.
                   3188:         if ($self->{RECURSIVE_DEPTH} == 0) {
                   3189:             $self->{RECURSIVE_ITERATOR_FLAG} = 0;
                   3190:         }
                   3191:         
                   3192:         return $next;
                   3193:     }
                   3194: 
                   3195:     # Is there a current resource to grab? If not, then return
1.100     bowersj2 3196:     # END_MAP, which will end the iterator.
                   3197:     if (scalar(@{$self->{STACK}}) == 0) {
                   3198:         return $self->END_MAP();
1.51      bowersj2 3199:     }
                   3200: 
                   3201:     # Have we not yet begun? If not, return BEGIN_MAP and 
                   3202:     # remember that we've started.
                   3203:     if ( !$self->{STARTED} ) {
                   3204:         $self->{STARTED} = 1;
                   3205:         return $self->BEGIN_MAP;
                   3206:     }
                   3207: 
                   3208:     # Get the next resource in the branch
1.100     bowersj2 3209:     $self->{HERE} = pop @{$self->{STACK}};
1.52      bowersj2 3210: 
1.100     bowersj2 3211:     # remember that we've seen this, so we don't return it again later
1.51      bowersj2 3212:     $self->{ALREADY_SEEN}->{$self->{HERE}->{ID}} = 1;
                   3213:     
                   3214:     # Get the next possible resources
1.90      bowersj2 3215:     my $nextUnfiltered;
1.89      bowersj2 3216:     if ($self->{DIRECTION} == FORWARD()) {
1.90      bowersj2 3217:         $nextUnfiltered = $self->{HERE}->getNext();
1.89      bowersj2 3218:     } else {
1.90      bowersj2 3219:         $nextUnfiltered = $self->{HERE}->getPrevious();
1.89      bowersj2 3220:     }
1.51      bowersj2 3221:     my $next = [];
                   3222: 
                   3223:     # filter the next possibilities to remove things we've 
1.100     bowersj2 3224:     # already seen.
1.51      bowersj2 3225:     foreach (@$nextUnfiltered) {
1.52      bowersj2 3226:         if (!defined($self->{ALREADY_SEEN}->{$_->{ID}})) {
                   3227:             push @$next, $_;
                   3228:         }
1.51      bowersj2 3229:     }
                   3230: 
                   3231:     while (@$next) {
1.100     bowersj2 3232:         # copy the next possibilities over to the stack
                   3233:         push @{$self->{STACK}}, shift @$next;
1.51      bowersj2 3234:     }
                   3235: 
                   3236:     # If this is a map and we want to recurse down it... (not filtered out)
1.70      bowersj2 3237:     if ($self->{HERE}->is_map() && 
1.63      bowersj2 3238:          (defined($self->{FILTER}->{$self->{HERE}->map_pc()}) xor $self->{CONDITION})) { 
1.51      bowersj2 3239:         $self->{RECURSIVE_ITERATOR_FLAG} = 1;
                   3240:         my $firstResource = $self->{HERE}->map_start();
                   3241:         my $finishResource = $self->{HERE}->map_finish();
                   3242: 
                   3243:         $self->{RECURSIVE_ITERATOR} =
1.94      bowersj2 3244:           Apache::lonnavmaps::DFSiterator->new ($self->{NAV_MAP}, $firstResource, 
1.63      bowersj2 3245:                      $finishResource, $self->{FILTER}, $self->{ALREADY_SEEN},
1.91      bowersj2 3246:                                              $self->{CONDITION}, $self->{DIRECTION});
1.51      bowersj2 3247:     }
                   3248: 
                   3249:     return $self->{HERE};
1.190     bowersj2 3250: }
                   3251: 
                   3252: # Identical to the full iterator methods of the same name. Hate to copy/paste
                   3253: # but I also hate to "inherit" either iterator from the other.
                   3254: 
                   3255: sub getStack {
                   3256:     my $self=shift;
                   3257: 
                   3258:     my @stack;
                   3259: 
                   3260:     $self->populateStack(\@stack);
                   3261: 
                   3262:     return \@stack;
                   3263: }
                   3264: 
                   3265: # Private method: Calls the iterators recursively to populate the stack.
                   3266: sub populateStack {
                   3267:     my $self=shift;
                   3268:     my $stack = shift;
                   3269: 
                   3270:     push @$stack, $self->{HERE} if ($self->{HERE});
                   3271: 
                   3272:     if ($self->{RECURSIVE_ITERATOR_FLAG}) {
                   3273:         $self->{RECURSIVE_ITERATOR}->populateStack($stack);
                   3274:     }
1.51      bowersj2 3275: }
                   3276: 
1.1       www      3277: 1;
1.2       www      3278: 
1.51      bowersj2 3279: package Apache::lonnavmaps::resource;
                   3280: 
                   3281: use Apache::lonnet;
                   3282: 
                   3283: =pod
                   3284: 
1.217     bowersj2 3285: =head1 Object: resource 
1.51      bowersj2 3286: 
1.217     bowersj2 3287: X<resource, navmap object>
1.174     albertel 3288: A resource object encapsulates a resource in a resource map, allowing
                   3289: easy manipulation of the resource, querying the properties of the
                   3290: resource (including user properties), and represents a reference that
                   3291: can be used as the canonical representation of the resource by
                   3292: lonnavmap clients like renderers.
                   3293: 
                   3294: A resource only makes sense in the context of a navmap, as some of the
                   3295: data is stored in the navmap object.
                   3296: 
                   3297: You will probably never need to instantiate this object directly. Use
                   3298: Apache::lonnavmaps::navmap, and use the "start" method to obtain the
                   3299: starting resource.
1.51      bowersj2 3300: 
1.188     bowersj2 3301: Resource objects respect the parameter_hiddenparts, which suppresses 
                   3302: various parts according to the wishes of the map author. As of this
                   3303: writing, there is no way to override this parameter, and suppressed
                   3304: parts will never be returned, nor will their response types or ids be
                   3305: stored.
                   3306: 
1.217     bowersj2 3307: =head2 Overview
1.51      bowersj2 3308: 
1.217     bowersj2 3309: A B<Resource> is the most granular type of object in LON-CAPA that can
                   3310: be included in a course. It can either be a particular resource, like
                   3311: an HTML page, external resource, problem, etc., or it can be a
                   3312: container sequence, such as a "page" or a "map".
                   3313: 
                   3314: To see a sequence from the user's point of view, please see the
                   3315: B<Creating a Course: Maps and Sequences> chapter of the Author's
                   3316: Manual.
                   3317: 
                   3318: A Resource Object, once obtained from a navmap object via a B<getBy*>
                   3319: method of the navmap, or from an iterator, allows you to query
                   3320: information about that resource.
                   3321: 
                   3322: Generally, you do not ever want to create a resource object yourself,
                   3323: so creation has been left undocumented. Always retrieve resources
                   3324: from navmap objects.
                   3325: 
                   3326: =head3 Identifying Resources
                   3327: 
                   3328: X<big hash>Every resource is identified by a Resource ID in the big hash that is
                   3329: unique to that resource for a given course. X<resource ID, in big hash>
                   3330: The Resource ID has the form #.#, where the first number is the same
                   3331: for every resource in a map, and the second is unique. For instance,
                   3332: for a course laid out like this:
                   3333: 
                   3334:  * Problem 1
                   3335:  * Map
                   3336:    * Resource 2
                   3337:    * Resource 3
                   3338: 
                   3339: C<Problem 1> and C<Map> will share a first number, and C<Resource 2>
                   3340: C<Resource 3> will share a first number. The second number may end up
                   3341: re-used between the two groups.
                   3342: 
                   3343: The resource ID is only used in the big hash, but can be used in the
                   3344: context of a course to identify a resource easily. (For instance, the
                   3345: printing system uses it to record which resources from a sequence you 
                   3346: wish to print.)
                   3347: 
                   3348: X<symb> X<resource, symb>
                   3349: All resources also have B<symb>s, which uniquely identify a resource
                   3350: in a course. Many internal LON-CAPA functions expect a symb. A symb
                   3351: carries along with it the URL of the resource, and the map it appears
                   3352: in. Symbs are much larger then resource IDs.
1.51      bowersj2 3353: 
                   3354: =cut
                   3355: 
                   3356: sub new {
                   3357:     # magic invocation to create a class instance
                   3358:     my $proto = shift;
                   3359:     my $class = ref($proto) || $proto;
                   3360:     my $self = {};
                   3361: 
                   3362:     $self->{NAV_MAP} = shift;
                   3363:     $self->{ID} = shift;
                   3364: 
                   3365:     # Store this new resource in the parent nav map's cache.
                   3366:     $self->{NAV_MAP}->{RESOURCE_CACHE}->{$self->{ID}} = $self;
1.66      bowersj2 3367:     $self->{RESOURCE_ERROR} = 0;
1.51      bowersj2 3368: 
                   3369:     # A hash that can be used by two-pass algorithms to store data
                   3370:     # about this resource in. Not used by the resource object
                   3371:     # directly.
                   3372:     $self->{DATA} = {};
                   3373:    
                   3374:     bless($self);
                   3375:     
                   3376:     return $self;
                   3377: }
                   3378: 
1.70      bowersj2 3379: # private function: simplify the NAV_HASH lookups we keep doing
                   3380: # pass the name, and to automatically append my ID, pass a true val on the
                   3381: # second param
                   3382: sub navHash {
                   3383:     my $self = shift;
                   3384:     my $param = shift;
                   3385:     my $id = shift;
1.115     bowersj2 3386:     return $self->{NAV_MAP}->navhash($param . ($id?$self->{ID}:""));
1.70      bowersj2 3387: }
                   3388: 
1.51      bowersj2 3389: =pod
                   3390: 
1.217     bowersj2 3391: =head2 Methods
1.70      bowersj2 3392: 
1.217     bowersj2 3393: Once you have a resource object, here's what you can do with it:
                   3394: 
                   3395: =head3 Attribute Retrieval
                   3396: 
                   3397: Every resource has certain attributes that can be retrieved and used:
1.70      bowersj2 3398: 
                   3399: =over 4
                   3400: 
1.217     bowersj2 3401: =item * B<ID>: Every resource has an ID that is unique for that
                   3402:     resource in the course it is in. The ID is actually in the hash
                   3403:     representing the resource, so for a resource object $res, obtain
                   3404:     it via C<$res->{ID}).
                   3405: 
1.174     albertel 3406: =item * B<compTitle>:
                   3407: 
                   3408: Returns a "composite title", that is equal to $res->title() if the
                   3409: resource has a title, and is otherwise the last part of the URL (e.g.,
                   3410: "problem.problem").
                   3411: 
                   3412: =item * B<ext>:
                   3413: 
                   3414: Returns true if the resource is external.
                   3415: 
                   3416: =item * B<kind>:
                   3417: 
                   3418: Returns the kind of the resource from the compiled nav map.
                   3419: 
                   3420: =item * B<randomout>:
1.106     bowersj2 3421: 
1.174     albertel 3422: Returns true if this resource was chosen to NOT be shown to the user
                   3423: by the random map selection feature. In other words, this is usually
                   3424: false.
1.70      bowersj2 3425: 
1.174     albertel 3426: =item * B<randompick>:
1.70      bowersj2 3427: 
1.174     albertel 3428: Returns true for a map if the randompick feature is being used on the
                   3429: map. (?)
1.70      bowersj2 3430: 
1.174     albertel 3431: =item * B<src>:
1.51      bowersj2 3432: 
1.174     albertel 3433: Returns the source for the resource.
1.70      bowersj2 3434: 
1.174     albertel 3435: =item * B<symb>:
1.70      bowersj2 3436: 
1.174     albertel 3437: Returns the symb for the resource.
1.70      bowersj2 3438: 
1.174     albertel 3439: =item * B<title>:
1.70      bowersj2 3440: 
1.174     albertel 3441: Returns the title of the resource.
                   3442: 
1.51      bowersj2 3443: =back
                   3444: 
                   3445: =cut
                   3446: 
                   3447: # These info functions can be used directly, as they don't return
                   3448: # resource information.
1.85      bowersj2 3449: sub comesfrom { my $self=shift; return $self->navHash("comesfrom_", 1); }
1.70      bowersj2 3450: sub ext { my $self=shift; return $self->navHash("ext_", 1) eq 'true:'; }
1.85      bowersj2 3451: sub from { my $self=shift; return $self->navHash("from_", 1); }
1.217     bowersj2 3452: # considered private and undocumented
1.51      bowersj2 3453: sub goesto { my $self=shift; return $self->navHash("goesto_", 1); }
                   3454: sub kind { my $self=shift; return $self->navHash("kind_", 1); }
1.68      bowersj2 3455: sub randomout { my $self=shift; return $self->navHash("randomout_", 1); }
                   3456: sub randompick { 
                   3457:     my $self = shift;
                   3458:     return $self->{NAV_MAP}->{PARM_HASH}->{$self->symb .
                   3459:                                                '.0.parameter_randompick'};
                   3460: }
1.51      bowersj2 3461: sub src { 
                   3462:     my $self=shift;
                   3463:     return $self->navHash("src_", 1);
                   3464: }
                   3465: sub symb {
                   3466:     my $self=shift;
                   3467:     (my $first, my $second) = $self->{ID} =~ /(\d+).(\d+)/;
                   3468:     my $symbSrc = &Apache::lonnet::declutter($self->src());
1.223     albertel 3469:     my $symb = &Apache::lonnet::declutter($self->navHash('map_id_'.$first)) 
1.51      bowersj2 3470:         . '___' . $second . '___' . $symbSrc;
1.223     albertel 3471:     return &Apache::lonnet::symbclean($symb);
1.51      bowersj2 3472: }
1.213     bowersj2 3473: sub title { 
                   3474:     my $self=shift; 
                   3475:     if ($self->{ID} eq '0.0') {
                   3476: 	# If this is the top-level map, return the title of the course
                   3477: 	# since this map can not be titled otherwise.
                   3478: 	return $ENV{'course.'.$ENV{'request.course.id'}.'.description'};
                   3479:     }
                   3480:     return $self->navHash("title_", 1); }
1.217     bowersj2 3481: # considered private and undocumented
1.70      bowersj2 3482: sub to { my $self=shift; return $self->navHash("to_", 1); }
1.106     bowersj2 3483: sub compTitle {
                   3484:     my $self = shift;
                   3485:     my $title = $self->title();
1.176     www      3486:     $title=~s/\&colon\;/\:/gs;
1.106     bowersj2 3487:     if (!$title) {
                   3488:         $title = $self->src();
                   3489:         $title = substr($title, rindex($title, '/') + 1);
                   3490:     }
                   3491:     return $title;
                   3492: }
1.70      bowersj2 3493: =pod
                   3494: 
                   3495: B<Predicate Testing the Resource>
                   3496: 
                   3497: These methods are shortcuts to deciding if a given resource has a given property.
                   3498: 
                   3499: =over 4
                   3500: 
1.174     albertel 3501: =item * B<is_map>:
                   3502: 
                   3503: Returns true if the resource is a map type.
                   3504: 
                   3505: =item * B<is_problem>:
1.70      bowersj2 3506: 
1.174     albertel 3507: Returns true if the resource is a problem type, false
                   3508: otherwise. (Looks at the extension on the src field; might need more
                   3509: to work correctly.)
1.70      bowersj2 3510: 
1.174     albertel 3511: =item * B<is_page>:
1.70      bowersj2 3512: 
1.174     albertel 3513: Returns true if the resource is a page.
                   3514: 
                   3515: =item * B<is_sequence>:
                   3516: 
                   3517: Returns true if the resource is a sequence.
1.70      bowersj2 3518: 
                   3519: =back
                   3520: 
                   3521: =cut
                   3522: 
1.256     albertel 3523: sub hasResource {
                   3524:    my $self = shift;
                   3525:    return $self->{NAV_MAP}->hasResource(@_);
                   3526: }
                   3527: 
                   3528: sub retrieveResources {
                   3529:    my $self = shift;
                   3530:    return $self->{NAV_MAP}->retrieveResources(@_);
                   3531: }
1.70      bowersj2 3532: 
                   3533: sub is_html {
1.51      bowersj2 3534:     my $self=shift;
                   3535:     my $src = $self->src();
1.70      bowersj2 3536:     return ($src =~ /html$/);
1.51      bowersj2 3537: }
1.70      bowersj2 3538: sub is_map { my $self=shift; return defined($self->navHash("is_map_", 1)); }
                   3539: sub is_page {
1.51      bowersj2 3540:     my $self=shift;
                   3541:     my $src = $self->src();
1.205     bowersj2 3542:     return $self->navHash("is_map_", 1) && 
                   3543: 	$self->navHash("map_type_" . $self->map_pc()) eq 'page';
1.51      bowersj2 3544: }
1.70      bowersj2 3545: sub is_problem {
1.51      bowersj2 3546:     my $self=shift;
                   3547:     my $src = $self->src();
1.256     albertel 3548:     return ($src =~ /\.(problem|exam|quiz|assess|survey|form|library)$/)
                   3549: }
                   3550: sub contains_problem {
                   3551:     my $self=shift;
                   3552:     if ($self->is_page()) {
                   3553: 	my $hasProblem=$self->hasResource($self,sub { $_[0]->is_problem() },1);
                   3554: 	return $hasProblem;
                   3555:     }
                   3556:     return 0;
1.51      bowersj2 3557: }
1.70      bowersj2 3558: sub is_sequence {
1.51      bowersj2 3559:     my $self=shift;
                   3560:     my $src = $self->src();
1.205     bowersj2 3561:     return $self->navHash("is_map_", 1) && 
                   3562: 	$self->navHash("map_type_" . $self->map_pc()) eq 'sequence';
1.51      bowersj2 3563: }
1.261     matthew  3564: sub is_survey {
                   3565:     my $self = shift();
                   3566:     my $part = shift();
1.263     albertel 3567:     if ($self->parmval('type',$part) eq 'survey') {
1.261     matthew  3568:         return 1;
                   3569:     }
1.263     albertel 3570:     if ($self->src() =~ /\.(survey)$/) {
1.261     matthew  3571:         return 1;
                   3572:     }
                   3573:     return 0;
                   3574: }
1.51      bowersj2 3575: 
1.266     raeburn  3576: sub is_empty_sequence {
                   3577:     my $self=shift;
                   3578:     my $src = $self->src();
                   3579:     return !$self->is_page() && $self->navHash("is_map_", 1) && !$self->navHash("map_type_" . $self->map_pc());
                   3580: }
                   3581: 
1.101     bowersj2 3582: # Private method: Shells out to the parmval in the nav map, handler parts.
1.51      bowersj2 3583: sub parmval {
                   3584:     my $self = shift;
                   3585:     my $what = shift;
1.185     bowersj2 3586:     my $part = shift;
                   3587:     if (!defined($part)) { 
                   3588:         $part = '0'; 
                   3589:     }
1.51      bowersj2 3590:     return $self->{NAV_MAP}->parmval($part.'.'.$what, $self->symb());
                   3591: }
                   3592: 
1.70      bowersj2 3593: =pod
                   3594: 
                   3595: B<Map Methods>
                   3596: 
1.174     albertel 3597: These methods are useful for getting information about the map
                   3598: properties of the resource, if the resource is a map (B<is_map>).
1.70      bowersj2 3599: 
                   3600: =over 4
                   3601: 
1.174     albertel 3602: =item * B<map_finish>:
                   3603: 
                   3604: Returns a reference to a resource object corresponding to the finish
                   3605: resource of the map.
1.70      bowersj2 3606: 
1.174     albertel 3607: =item * B<map_pc>:
1.70      bowersj2 3608: 
1.174     albertel 3609: Returns the pc value of the map, which is the first number that
                   3610: appears in the resource ID of the resources in the map, and is the
                   3611: number that appears around the middle of the symbs of the resources in
                   3612: that map.
1.70      bowersj2 3613: 
1.174     albertel 3614: =item * B<map_start>:
                   3615: 
                   3616: Returns a reference to a resource object corresponding to the start
                   3617: resource of the map.
                   3618: 
                   3619: =item * B<map_type>:
                   3620: 
                   3621: Returns a string with the type of the map in it.
1.70      bowersj2 3622: 
                   3623: =back
1.51      bowersj2 3624: 
1.70      bowersj2 3625: =cut
1.51      bowersj2 3626: 
                   3627: sub map_finish {
                   3628:     my $self = shift;
                   3629:     my $src = $self->src();
1.144     bowersj2 3630:     $src = Apache::lonnet::clutter($src);
1.51      bowersj2 3631:     my $res = $self->navHash("map_finish_$src", 0);
                   3632:     $res = $self->{NAV_MAP}->getById($res);
                   3633:     return $res;
                   3634: }
1.70      bowersj2 3635: sub map_pc {
                   3636:     my $self = shift;
                   3637:     my $src = $self->src();
                   3638:     return $self->navHash("map_pc_$src", 0);
                   3639: }
1.51      bowersj2 3640: sub map_start {
                   3641:     my $self = shift;
                   3642:     my $src = $self->src();
1.144     bowersj2 3643:     $src = Apache::lonnet::clutter($src);
1.51      bowersj2 3644:     my $res = $self->navHash("map_start_$src", 0);
                   3645:     $res = $self->{NAV_MAP}->getById($res);
                   3646:     return $res;
                   3647: }
                   3648: sub map_type {
                   3649:     my $self = shift;
                   3650:     my $pc = $self->map_pc();
                   3651:     return $self->navHash("map_type_$pc", 0);
                   3652: }
                   3653: 
                   3654: #####
                   3655: # Property queries
                   3656: #####
                   3657: 
                   3658: # These functions will be responsible for returning the CORRECT
                   3659: # VALUE for the parameter, no matter what. So while they may look
                   3660: # like direct calls to parmval, they can be more then that.
                   3661: # So, for instance, the duedate function should use the "duedatetype"
                   3662: # information, rather then the resource object user.
                   3663: 
                   3664: =pod
                   3665: 
                   3666: =head2 Resource Parameters
                   3667: 
1.174     albertel 3668: In order to use the resource parameters correctly, the nav map must
                   3669: have been instantiated with genCourseAndUserOptions set to true, so
                   3670: the courseopt and useropt is read correctly. Then, you can call these
                   3671: functions to get the relevant parameters for the resource. Each
                   3672: function defaults to part "0", but can be directed to another part by
                   3673: passing the part as the parameter.
                   3674: 
                   3675: These methods are responsible for getting the parameter correct, not
                   3676: merely reflecting the contents of the GDBM hashes. As we move towards
                   3677: dates relative to other dates, these methods should be updated to
                   3678: reflect that. (Then, anybody using these methods will not have to update
                   3679: their code.)
                   3680: 
                   3681: =over 4
                   3682: 
                   3683: =item * B<acc>:
                   3684: 
                   3685: Get the Client IP/Name Access Control information.
1.51      bowersj2 3686: 
1.174     albertel 3687: =item * B<answerdate>:
1.51      bowersj2 3688: 
1.174     albertel 3689: Get the answer-reveal date for the problem.
                   3690: 
1.211     bowersj2 3691: =item * B<awarded>: 
                   3692: 
                   3693: Gets the awarded value for the problem part. Requires genUserData set to
                   3694: true when the navmap object was created.
                   3695: 
1.174     albertel 3696: =item * B<duedate>:
                   3697: 
                   3698: Get the due date for the problem.
                   3699: 
                   3700: =item * B<tries>:
                   3701: 
                   3702: Get the number of tries the student has used on the problem.
                   3703: 
                   3704: =item * B<maxtries>:
                   3705: 
                   3706: Get the number of max tries allowed.
                   3707: 
                   3708: =item * B<opendate>:
1.51      bowersj2 3709: 
1.174     albertel 3710: Get the open date for the problem.
1.51      bowersj2 3711: 
1.174     albertel 3712: =item * B<sig>:
1.51      bowersj2 3713: 
1.174     albertel 3714: Get the significant figures setting.
1.51      bowersj2 3715: 
1.174     albertel 3716: =item * B<tol>:
1.51      bowersj2 3717: 
1.174     albertel 3718: Get the tolerance for the problem.
1.51      bowersj2 3719: 
1.174     albertel 3720: =item * B<tries>:
1.51      bowersj2 3721: 
1.174     albertel 3722: Get the number of tries the user has already used on the problem.
1.51      bowersj2 3723: 
1.174     albertel 3724: =item * B<type>:
1.51      bowersj2 3725: 
1.174     albertel 3726: Get the question type for the problem.
1.70      bowersj2 3727: 
1.174     albertel 3728: =item * B<weight>:
1.51      bowersj2 3729: 
1.174     albertel 3730: Get the weight for the problem.
1.51      bowersj2 3731: 
                   3732: =back
                   3733: 
                   3734: =cut
                   3735: 
                   3736: sub acc {
                   3737:     (my $self, my $part) = @_;
                   3738:     return $self->parmval("acc", $part);
                   3739: }
                   3740: sub answerdate {
                   3741:     (my $self, my $part) = @_;
                   3742:     # Handle intervals
                   3743:     if ($self->parmval("answerdate.type", $part) eq 'date_interval') {
                   3744:         return $self->duedate($part) + 
                   3745:             $self->parmval("answerdate", $part);
                   3746:     }
                   3747:     return $self->parmval("answerdate", $part);
1.106     bowersj2 3748: }
1.211     bowersj2 3749: sub awarded { 
                   3750:     my $self = shift; my $part = shift;
1.221     bowersj2 3751:     $self->{NAV_MAP}->get_user_data();
1.211     bowersj2 3752:     if (!defined($part)) { $part = '0'; }
                   3753:     return $self->{NAV_MAP}->{STUDENT_DATA}->{$self->symb()}->{'resource.'.$part.'.awarded'};
                   3754: }
1.51      bowersj2 3755: sub duedate {
                   3756:     (my $self, my $part) = @_;
1.260     albertel 3757:     my $interval=$self->parmval("interval", $part);
                   3758:     if ($interval) {
                   3759: 	my $first_access=&Apache::lonnet::get_first_access('map',$self->symb);
                   3760: 	if ($first_access) { return ($first_access+$interval); }
                   3761:     }
1.51      bowersj2 3762:     return $self->parmval("duedate", $part);
                   3763: }
                   3764: sub maxtries {
                   3765:     (my $self, my $part) = @_;
                   3766:     return $self->parmval("maxtries", $part);
                   3767: }
                   3768: sub opendate {
                   3769:     (my $self, my $part) = @_;
                   3770:     if ($self->parmval("opendate.type", $part) eq 'date_interval') {
                   3771:         return $self->duedate($part) -
                   3772:             $self->parmval("opendate", $part);
                   3773:     }
                   3774:     return $self->parmval("opendate");
                   3775: }
1.185     bowersj2 3776: sub problemstatus {
                   3777:     (my $self, my $part) = @_;
1.236     bowersj2 3778:     return lc $self->parmval("problemstatus", $part);
1.185     bowersj2 3779: }
1.51      bowersj2 3780: sub sig {
                   3781:     (my $self, my $part) = @_;
                   3782:     return $self->parmval("sig", $part);
                   3783: }
                   3784: sub tol {
                   3785:     (my $self, my $part) = @_;
                   3786:     return $self->parmval("tol", $part);
                   3787: }
1.108     bowersj2 3788: sub tries { 
                   3789:     my $self = shift; 
                   3790:     my $tries = $self->queryRestoreHash('tries', shift);
                   3791:     if (!defined($tries)) { return '0';}
1.51      bowersj2 3792:     return $tries;
                   3793: }
1.70      bowersj2 3794: sub type {
                   3795:     (my $self, my $part) = @_;
                   3796:     return $self->parmval("type", $part);
                   3797: }
1.109     bowersj2 3798: sub weight { 
                   3799:     my $self = shift; my $part = shift;
1.211     bowersj2 3800:     if (!defined($part)) { $part = '0'; }
                   3801:     return &Apache::lonnet::EXT('resource.'.$part.'.weight',
                   3802: 				$self->symb(), $ENV{'user.domain'},
                   3803: 				$ENV{'user.name'}, 
                   3804: 				$ENV{'request.course.sec'});
1.274     matthew  3805: }
                   3806: sub part_display {
                   3807:     my $self= shift(); my $partID = shift();
                   3808:     if (! defined($partID)) { $partID = '0'; }
                   3809:     my $display=&Apache::lonnet::EXT('resource.'.$partID.'.display',
                   3810:                                      $self->symb);
                   3811:     if (! defined($display) || $display eq '') {
                   3812:         $display = $partID;
                   3813:     }
                   3814:     return $display;
1.70      bowersj2 3815: }
1.51      bowersj2 3816: 
                   3817: # Multiple things need this
                   3818: sub getReturnHash {
                   3819:     my $self = shift;
                   3820:     
                   3821:     if (!defined($self->{RETURN_HASH})) {
1.84      bowersj2 3822:         my %tmpHash  = &Apache::lonnet::restore($self->symb());
1.51      bowersj2 3823:         $self->{RETURN_HASH} = \%tmpHash;
                   3824:     }
                   3825: }       
                   3826: 
                   3827: ######
                   3828: # Status queries
                   3829: ######
                   3830: 
                   3831: # These methods query the status of problems.
                   3832: 
                   3833: # If we need to count parts, this function determines the number of
                   3834: # parts from the metadata. When called, it returns a reference to a list
                   3835: # of strings corresponding to the parts. (Thus, using it in a scalar context
                   3836: # tells you how many parts you have in the problem:
                   3837: # $partcount = scalar($resource->countParts());
                   3838: # Don't use $self->{PARTS} directly because you don't know if it's been
                   3839: # computed yet.
                   3840: 
                   3841: =pod
                   3842: 
                   3843: =head2 Resource misc
                   3844: 
                   3845: Misc. functions for the resource.
                   3846: 
                   3847: =over 4
                   3848: 
1.174     albertel 3849: =item * B<hasDiscussion>:
1.59      bowersj2 3850: 
1.174     albertel 3851: Returns a false value if there has been discussion since the user last
                   3852: logged in, true if there has. Always returns false if the discussion
                   3853: data was not extracted when the nav map was constructed.
                   3854: 
                   3855: =item * B<getFeedback>:
                   3856: 
                   3857: Gets the feedback for the resource and returns the raw feedback string
                   3858: for the resource, or the null string if there is no feedback or the
                   3859: email data was not extracted when the nav map was constructed. Usually
                   3860: used like this:
1.59      bowersj2 3861: 
                   3862:  for (split(/\,/, $res->getFeedback())) {
                   3863:     my $link = &Apache::lonnet::escape($_);
                   3864:     ...
                   3865: 
                   3866: and use the link as appropriate.
                   3867: 
                   3868: =cut
                   3869: 
                   3870: sub hasDiscussion {
                   3871:     my $self = shift;
                   3872:     return $self->{NAV_MAP}->hasDiscussion($self->symb());
                   3873: }
                   3874: 
                   3875: sub getFeedback {
                   3876:     my $self = shift;
1.124     bowersj2 3877:     my $source = $self->src();
1.125     bowersj2 3878:     if ($source =~ /^\/res\//) { $source = substr $source, 5; }
1.124     bowersj2 3879:     return $self->{NAV_MAP}->getFeedback($source);
                   3880: }
                   3881: 
                   3882: sub getErrors {
                   3883:     my $self = shift;
                   3884:     my $source = $self->src();
                   3885:     if ($source =~ /^\/res\//) { $source = substr $source, 5; }
                   3886:     return $self->{NAV_MAP}->getErrors($source);
1.59      bowersj2 3887: }
                   3888: 
                   3889: =pod
                   3890: 
1.174     albertel 3891: =item * B<parts>():
1.51      bowersj2 3892: 
1.174     albertel 3893: Returns a list reference containing sorted strings corresponding to
1.193     bowersj2 3894: each part of the problem. Single part problems have only a part '0'.
                   3895: Multipart problems do not return their part '0', since they typically
                   3896: do not really matter. 
1.174     albertel 3897: 
                   3898: =item * B<countParts>():
                   3899: 
                   3900: Returns the number of parts of the problem a student can answer. Thus,
                   3901: for single part problems, returns 1. For multipart, it returns the
1.193     bowersj2 3902: number of parts in the problem, not including psuedo-part 0. 
1.51      bowersj2 3903: 
1.290     matthew  3904: =item * B<countResponses>():
                   3905: 
                   3906: Returns the total number of responses in the problem a student can answer.
                   3907: 
                   3908: =item * B<responseTypes>():
                   3909: 
                   3910: Returns a hash whose keys are the response types.  The values are the number 
                   3911: of times each response type is used.  This is for the I<entire> problem, not 
                   3912: just a single part.
                   3913: 
1.192     bowersj2 3914: =item * B<multipart>():
                   3915: 
1.193     bowersj2 3916: Returns true if the problem is multipart, false otherwise. Use this instead
                   3917: of countParts if all you want is multipart/not multipart.
1.192     bowersj2 3918: 
1.187     bowersj2 3919: =item * B<responseType>($part):
                   3920: 
                   3921: Returns the response type of the part, without the word "response" on the
                   3922: end. Example return values: 'string', 'essay', 'numeric', etc.
                   3923: 
1.193     bowersj2 3924: =item * B<responseIds>($part):
1.187     bowersj2 3925: 
1.193     bowersj2 3926: Retreives the response IDs for the given part as an array reference containing
                   3927: strings naming the response IDs. This may be empty.
1.187     bowersj2 3928: 
1.51      bowersj2 3929: =back
                   3930: 
                   3931: =cut
                   3932: 
                   3933: sub parts {
                   3934:     my $self = shift;
                   3935: 
1.192     bowersj2 3936:     if ($self->ext) { return []; }
1.67      bowersj2 3937: 
1.51      bowersj2 3938:     $self->extractParts();
                   3939:     return $self->{PARTS};
                   3940: }
                   3941: 
                   3942: sub countParts {
                   3943:     my $self = shift;
                   3944:     
                   3945:     my $parts = $self->parts();
1.191     bowersj2 3946: 
                   3947:     # If I left this here, then it's not necessary.
                   3948:     #my $delta = 0;
                   3949:     #for my $part (@$parts) {
                   3950:     #    if ($part eq '0') { $delta--; }
                   3951:     #}
1.66      bowersj2 3952: 
                   3953:     if ($self->{RESOURCE_ERROR}) {
                   3954:         return 0;
                   3955:     }
                   3956: 
1.191     bowersj2 3957:     return scalar(@{$parts}); # + $delta;
1.192     bowersj2 3958: }
                   3959: 
1.290     matthew  3960: sub countResponses {
                   3961:     my $self = shift;
                   3962:     my $count;
1.293     matthew  3963:     foreach my $part (@{$self->parts()}) {
                   3964:         $count+= scalar($self->responseIds($part));
1.290     matthew  3965:     }
                   3966:     return $count;
                   3967: }
                   3968: 
                   3969: sub responseTypes {
                   3970:     my $self = shift;
1.291     albertel 3971:     my %responses;
1.290     matthew  3972:     foreach my $part ($self->parts()) {
                   3973:         foreach my $responsetype ($self->responseType($part)) {
1.291     albertel 3974:             $responses{$responsetype}++ if (defined($responsetype));
1.290     matthew  3975:         }
                   3976:     }
1.291     albertel 3977:     return %responses;
1.290     matthew  3978: }
                   3979: 
1.192     bowersj2 3980: sub multipart {
                   3981:     my $self = shift;
                   3982:     return $self->countParts() > 1;
1.51      bowersj2 3983: }
                   3984: 
1.225     bowersj2 3985: sub singlepart {
                   3986:     my $self = shift;
                   3987:     return $self->countParts() == 1;
                   3988: }
                   3989: 
1.187     bowersj2 3990: sub responseType {
1.184     bowersj2 3991:     my $self = shift;
                   3992:     my $part = shift;
                   3993: 
                   3994:     $self->extractParts();
1.235     albertel 3995:     if (defined($self->{RESPONSE_TYPES}->{$part})) {
                   3996: 	return @{$self->{RESPONSE_TYPES}->{$part}};
                   3997:     } else {
                   3998: 	return undef;
                   3999:     }
1.187     bowersj2 4000: }
                   4001: 
1.193     bowersj2 4002: sub responseIds {
1.187     bowersj2 4003:     my $self = shift;
                   4004:     my $part = shift;
                   4005: 
                   4006:     $self->extractParts();
1.235     albertel 4007:     if (defined($self->{RESPONSE_IDS}->{$part})) {
                   4008: 	return @{$self->{RESPONSE_IDS}->{$part}};
                   4009:     } else {
                   4010: 	return undef;
                   4011:     }
1.184     bowersj2 4012: }
                   4013: 
                   4014: # Private function: Extracts the parts information, both part names and
1.187     bowersj2 4015: # part types, and saves it. 
1.51      bowersj2 4016: sub extractParts { 
                   4017:     my $self = shift;
                   4018:     
1.153     bowersj2 4019:     return if (defined($self->{PARTS}));
1.67      bowersj2 4020:     return if ($self->ext);
1.51      bowersj2 4021: 
                   4022:     $self->{PARTS} = [];
                   4023: 
1.181     bowersj2 4024:     my %parts;
                   4025: 
1.82      bowersj2 4026:     # Retrieve part count, if this is a problem
                   4027:     if ($self->is_problem()) {
1.240     albertel 4028: 	my $partorder = &Apache::lonnet::metadata($self->src(), 'partorder');
1.152     matthew  4029:         my $metadata = &Apache::lonnet::metadata($self->src(), 'packages');
1.181     bowersj2 4030: 
1.239     bowersj2 4031: 	if ($partorder) {
                   4032: 	    my @parts;
                   4033: 	    for my $part (split (/,/,$partorder)) {
                   4034: 		if (!Apache::loncommon::check_if_partid_hidden($part, $self->symb())) {
                   4035: 		    push @parts, $part;
1.241     albertel 4036: 		    $parts{$part} = 1;
1.239     bowersj2 4037: 		}
                   4038: 	    }
                   4039: 	    $self->{PARTS} = \@parts;
                   4040: 	} else {
                   4041: 	    if (!$metadata) {
                   4042: 		$self->{RESOURCE_ERROR} = 1;
                   4043: 		$self->{PARTS} = [];
                   4044: 		$self->{PART_TYPE} = {};
                   4045: 		return;
                   4046: 	    }
                   4047: 	    foreach (split(/\,/,$metadata)) {
                   4048: 		if ($_ =~ /^part_(.*)$/) {
                   4049: 		    my $part = $1;
                   4050: 		    # This floods the logs if it blows up
                   4051: 		    if (defined($parts{$part})) {
1.241     albertel 4052: 			&Apache::lonnet::logthis("$part multiply defined in metadata for " . $self->symb());
                   4053: 		    }
1.239     bowersj2 4054: 		    
                   4055: 		    # check to see if part is turned off.
                   4056: 		    
                   4057: 		    if (!Apache::loncommon::check_if_partid_hidden($part, $self->symb())) {
                   4058: 			$parts{$part} = 1;
                   4059: 		    }
                   4060: 		}
                   4061: 	    }
                   4062: 	    my @sortedParts = sort keys %parts;
                   4063: 	    $self->{PARTS} = \@sortedParts;
1.51      bowersj2 4064:         }
1.82      bowersj2 4065:         
1.187     bowersj2 4066: 
1.284     matthew  4067:         # These hashes probably do not need names that end with "Hash"....
1.187     bowersj2 4068:         my %responseIdHash;
                   4069:         my %responseTypeHash;
                   4070: 
1.189     bowersj2 4071: 
                   4072:         # Init the responseIdHash
                   4073:         foreach (@{$self->{PARTS}}) {
                   4074:             $responseIdHash{$_} = [];
                   4075:         }
                   4076: 
1.187     bowersj2 4077:         # Now, the unfortunate thing about this is that parts, part name, and
1.239     bowersj2 4078:         # response id are delimited by underscores, but both the part
1.187     bowersj2 4079:         # name and response id can themselves have underscores in them.
                   4080:         # So we have to use our knowlege of part names to figure out 
                   4081:         # where the part names begin and end, and even then, it is possible
                   4082:         # to construct ambiguous situations.
                   4083:         foreach (split /,/, $metadata) {
                   4084:             if ($_ =~ /^([a-zA-Z]+)response_(.*)/) {
                   4085:                 my $responseType = $1;
                   4086:                 my $partStuff = $2;
                   4087:                 my $partIdSoFar = '';
                   4088:                 my @partChunks = split /_/, $partStuff;
                   4089:                 my $i = 0;
                   4090:                 for ($i = 0; $i < scalar(@partChunks); $i++) {
                   4091:                     if ($partIdSoFar) { $partIdSoFar .= '_'; }
                   4092:                     $partIdSoFar .= $partChunks[$i];
                   4093:                     if ($parts{$partIdSoFar}) {
                   4094:                         my @otherChunks = @partChunks[$i+1..$#partChunks];
                   4095:                         my $responseId = join('_', @otherChunks);
1.188     bowersj2 4096:                         push @{$responseIdHash{$partIdSoFar}}, $responseId;
1.233     matthew  4097:                         push @{$responseTypeHash{$partIdSoFar}}, $responseType;
1.187     bowersj2 4098:                     }
                   4099:                 }
                   4100:             }
                   4101:         }
1.264     albertel 4102: 	my $resorder = &Apache::lonnet::metadata($self->src(),'responseorder');
1.284     matthew  4103:         #
                   4104:         # Reorder the arrays in the %responseIdHash and %responseTypeHash
1.264     albertel 4105: 	if ($resorder) {
                   4106: 	    my @resorder=split(/,/,$resorder);
                   4107: 	    foreach my $part (keys(%responseIdHash)) {
1.286     albertel 4108: 		my $i=0;
                   4109: 		my %resids = map { ($_,$i++) } @{ $responseIdHash{$part} };
1.264     albertel 4110: 		my @neworder;
                   4111: 		foreach my $possibleid (@resorder) {
                   4112: 		    if (exists($resids{$possibleid})) {
1.286     albertel 4113: 			push(@neworder,$resids{$possibleid});
1.264     albertel 4114: 		    }
                   4115: 		}
1.286     albertel 4116: 		my @ids;
                   4117: 		my @type;
                   4118: 		foreach my $element (@neworder) {
                   4119: 		    push (@ids,$responseIdHash{$part}->[$element]);
                   4120: 		    push (@type,$responseTypeHash{$part}->[$element]);
                   4121: 		}
                   4122: 		$responseIdHash{$part}=\@ids;
                   4123: 		$responseTypeHash{$part}=\@type;
1.264     albertel 4124: 	    }
                   4125: 	}
1.187     bowersj2 4126:         $self->{RESPONSE_IDS} = \%responseIdHash;
                   4127:         $self->{RESPONSE_TYPES} = \%responseTypeHash;
1.154     bowersj2 4128:     }
                   4129: 
1.51      bowersj2 4130:     return;
                   4131: }
                   4132: 
                   4133: =pod
                   4134: 
                   4135: =head2 Resource Status
                   4136: 
1.174     albertel 4137: Problem resources have status information, reflecting their various
                   4138: dates and completion statuses.
1.51      bowersj2 4139: 
1.174     albertel 4140: There are two aspects to the status: the date-related information and
                   4141: the completion information.
1.51      bowersj2 4142: 
1.174     albertel 4143: Idiomatic usage of these two methods would probably look something
                   4144: like
1.51      bowersj2 4145: 
                   4146:  foreach ($resource->parts()) {
                   4147:     my $dateStatus = $resource->getDateStatus($_);
                   4148:     my $completionStatus = $resource->getCompletionStatus($_);
                   4149: 
1.70      bowersj2 4150:     or
                   4151: 
                   4152:     my $status = $resource->status($_);
                   4153: 
1.51      bowersj2 4154:     ... use it here ...
                   4155:  }
                   4156: 
1.174     albertel 4157: Which you use depends on exactly what you are looking for. The
                   4158: status() function has been optimized for the nav maps display and may
                   4159: not precisely match what you need elsewhere.
1.101     bowersj2 4160: 
1.174     albertel 4161: The symbolic constants shown below can be accessed through the
                   4162: resource object: C<$res->OPEN>.
1.101     bowersj2 4163: 
1.51      bowersj2 4164: =over 4
                   4165: 
1.174     albertel 4166: =item * B<getDateStatus>($part):
                   4167: 
                   4168: ($part defaults to 0). A convenience function that returns a symbolic
                   4169: constant telling you about the date status of the part. The possible
                   4170: return values are:
1.51      bowersj2 4171: 
                   4172: =back
                   4173: 
                   4174: B<Date Codes>
                   4175: 
                   4176: =over 4
                   4177: 
1.174     albertel 4178: =item * B<OPEN_LATER>:
                   4179: 
                   4180: The problem will be opened later.
                   4181: 
                   4182: =item * B<OPEN>:
                   4183: 
                   4184: Open and not yet due.
                   4185: 
1.51      bowersj2 4186: 
1.174     albertel 4187: =item * B<PAST_DUE_ANSWER_LATER>:
1.51      bowersj2 4188: 
1.174     albertel 4189: The due date has passed, but the answer date has not yet arrived.
1.59      bowersj2 4190: 
1.174     albertel 4191: =item * B<PAST_DUE_NO_ANSWER>:
1.54      bowersj2 4192: 
1.174     albertel 4193: The due date has passed and there is no answer opening date set.
1.51      bowersj2 4194: 
1.174     albertel 4195: =item * B<ANSWER_OPEN>:
1.51      bowersj2 4196: 
1.174     albertel 4197: The answer date is here.
                   4198: 
                   4199: =item * B<NETWORK_FAILURE>:
                   4200: 
                   4201: The information is unknown due to network failure.
1.51      bowersj2 4202: 
                   4203: =back
                   4204: 
                   4205: =cut
                   4206: 
                   4207: # Apparently the compiler optimizes these into constants automatically
1.54      bowersj2 4208: sub OPEN_LATER             { return 0; }
                   4209: sub OPEN                   { return 1; }
                   4210: sub PAST_DUE_NO_ANSWER     { return 2; }
                   4211: sub PAST_DUE_ANSWER_LATER  { return 3; }
                   4212: sub ANSWER_OPEN            { return 4; }
                   4213: sub NOTHING_SET            { return 5; } 
                   4214: sub NETWORK_FAILURE        { return 100; }
                   4215: 
                   4216: # getDateStatus gets the date status for a given problem part. 
                   4217: # Because answer date, due date, and open date are fully independent
                   4218: # (i.e., it is perfectly possible to *only* have an answer date), 
                   4219: # we have to completely cover the 3x3 maxtrix of (answer, due, open) x
                   4220: # (past, future, none given). This function handles this with a decision
                   4221: # tree. Read the comments to follow the decision tree.
1.51      bowersj2 4222: 
                   4223: sub getDateStatus {
                   4224:     my $self = shift;
                   4225:     my $part = shift;
                   4226:     $part = "0" if (!defined($part));
1.54      bowersj2 4227: 
                   4228:     # Always return network failure if there was one.
1.51      bowersj2 4229:     return $self->NETWORK_FAILURE if ($self->{NAV_MAP}->{NETWORK_FAILURE});
                   4230: 
                   4231:     my $now = time();
                   4232: 
1.53      bowersj2 4233:     my $open = $self->opendate($part);
                   4234:     my $due = $self->duedate($part);
                   4235:     my $answer = $self->answerdate($part);
                   4236: 
                   4237:     if (!$open && !$due && !$answer) {
                   4238:         # no data on the problem at all
                   4239:         # should this be the same as "open later"? think multipart.
                   4240:         return $self->NOTHING_SET;
                   4241:     }
1.59      bowersj2 4242:     if (!$open || $now < $open) {return $self->OPEN_LATER}
                   4243:     if (!$due || $now < $due) {return $self->OPEN}
                   4244:     if ($answer && $now < $answer) {return $self->PAST_DUE_ANSWER_LATER}
                   4245:     if ($answer) { return $self->ANSWER_OPEN; }
1.54      bowersj2 4246:     return PAST_DUE_NO_ANSWER;
1.51      bowersj2 4247: }
                   4248: 
                   4249: =pod
                   4250: 
                   4251: B<>
                   4252: 
                   4253: =over 4
                   4254: 
1.174     albertel 4255: =item * B<getCompletionStatus>($part):
1.51      bowersj2 4256: 
1.174     albertel 4257: ($part defaults to 0.) A convenience function that returns a symbolic
                   4258: constant telling you about the completion status of the part, with the
                   4259: following possible results:
                   4260: 
                   4261: =back
1.51      bowersj2 4262: 
                   4263: B<Completion Codes>
                   4264: 
                   4265: =over 4
                   4266: 
1.174     albertel 4267: =item * B<NOT_ATTEMPTED>:
                   4268: 
                   4269: Has not been attempted at all.
                   4270: 
                   4271: =item * B<INCORRECT>:
                   4272: 
                   4273: Attempted, but wrong by student.
1.51      bowersj2 4274: 
1.174     albertel 4275: =item * B<INCORRECT_BY_OVERRIDE>:
1.51      bowersj2 4276: 
1.174     albertel 4277: Attempted, but wrong by instructor override.
1.51      bowersj2 4278: 
1.174     albertel 4279: =item * B<CORRECT>:
1.51      bowersj2 4280: 
1.174     albertel 4281: Correct or correct by instructor.
1.51      bowersj2 4282: 
1.174     albertel 4283: =item * B<CORRECT_BY_OVERRIDE>:
1.51      bowersj2 4284: 
1.174     albertel 4285: Correct by instructor override.
1.51      bowersj2 4286: 
1.174     albertel 4287: =item * B<EXCUSED>:
                   4288: 
                   4289: Excused. Not yet implemented.
                   4290: 
                   4291: =item * B<NETWORK_FAILURE>:
                   4292: 
                   4293: Information not available due to network failure.
                   4294: 
                   4295: =item * B<ATTEMPTED>:
                   4296: 
                   4297: Attempted, and not yet graded.
1.69      bowersj2 4298: 
1.51      bowersj2 4299: =back
                   4300: 
                   4301: =cut
                   4302: 
1.53      bowersj2 4303: sub NOT_ATTEMPTED         { return 10; }
                   4304: sub INCORRECT             { return 11; }
                   4305: sub INCORRECT_BY_OVERRIDE { return 12; }
                   4306: sub CORRECT               { return 13; }
                   4307: sub CORRECT_BY_OVERRIDE   { return 14; }
                   4308: sub EXCUSED               { return 15; }
1.69      bowersj2 4309: sub ATTEMPTED             { return 16; }
1.51      bowersj2 4310: 
                   4311: sub getCompletionStatus {
                   4312:     my $self = shift;
                   4313:     return $self->NETWORK_FAILURE if ($self->{NAV_MAP}->{NETWORK_FAILURE});
                   4314: 
1.108     bowersj2 4315:     my $status = $self->queryRestoreHash('solved', shift);
1.51      bowersj2 4316: 
1.251     www      4317:     # Left as separate if statements in case we ever do more with this
1.51      bowersj2 4318:     if ($status eq 'correct_by_student') {return $self->CORRECT;}
1.288     albertel 4319:     if ($status eq 'correct_by_scantron') {return $self->CORRECT;}
1.51      bowersj2 4320:     if ($status eq 'correct_by_override') {return $self->CORRECT_BY_OVERRIDE; }
                   4321:     if ($status eq 'incorrect_attempted') {return $self->INCORRECT; }
                   4322:     if ($status eq 'incorrect_by_override') {return $self->INCORRECT_BY_OVERRIDE; }
                   4323:     if ($status eq 'excused') {return $self->EXCUSED; }
1.69      bowersj2 4324:     if ($status eq 'ungraded_attempted') {return $self->ATTEMPTED; }
1.51      bowersj2 4325:     return $self->NOT_ATTEMPTED;
1.108     bowersj2 4326: }
                   4327: 
                   4328: sub queryRestoreHash {
                   4329:     my $self = shift;
                   4330:     my $hashentry = shift;
                   4331:     my $part = shift;
1.185     bowersj2 4332:     $part = "0" if (!defined($part) || $part eq '');
1.108     bowersj2 4333:     return $self->NETWORK_FAILURE if ($self->{NAV_MAP}->{NETWORK_FAILURE});
                   4334: 
                   4335:     $self->getReturnHash();
                   4336: 
                   4337:     return $self->{RETURN_HASH}->{'resource.'.$part.'.'.$hashentry};
1.51      bowersj2 4338: }
                   4339: 
                   4340: =pod
                   4341: 
                   4342: B<Composite Status>
                   4343: 
1.174     albertel 4344: Along with directly returning the date or completion status, the
                   4345: resource object includes a convenience function B<status>() that will
                   4346: combine the two status tidbits into one composite status that can
1.191     bowersj2 4347: represent the status of the resource as a whole. This method represents
                   4348: the concept of the thing we want to display to the user on the nav maps
                   4349: screen, which is a combination of completion and open status. The precise logic is
1.174     albertel 4350: documented in the comments of the status method. The following results
                   4351: may be returned, all available as methods on the resource object
1.185     bowersj2 4352: ($res->NETWORK_FAILURE): In addition to the return values that match
                   4353: the date or completion status, this function can return "ANSWER_SUBMITTED"
                   4354: if that problemstatus parameter value is set to No, suppressing the
                   4355: incorrect/correct feedback.
1.51      bowersj2 4356: 
                   4357: =over 4
                   4358: 
1.174     albertel 4359: =item * B<NETWORK_FAILURE>:
                   4360: 
                   4361: The network has failed and the information is not available.
1.51      bowersj2 4362: 
1.174     albertel 4363: =item * B<NOTHING_SET>:
1.53      bowersj2 4364: 
1.174     albertel 4365: No dates have been set for this problem (part) at all. (Because only
                   4366: certain parts of a multi-part problem may be assigned, this can not be
                   4367: collapsed into "open later", as we do not know a given part will EVER
                   4368: be opened. For single part, this is the same as "OPEN_LATER".)
1.51      bowersj2 4369: 
1.174     albertel 4370: =item * B<CORRECT>:
1.51      bowersj2 4371: 
1.174     albertel 4372: For any reason at all, the part is considered correct.
1.54      bowersj2 4373: 
1.174     albertel 4374: =item * B<EXCUSED>:
1.51      bowersj2 4375: 
1.174     albertel 4376: For any reason at all, the problem is excused.
1.51      bowersj2 4377: 
1.174     albertel 4378: =item * B<PAST_DUE_NO_ANSWER>:
1.51      bowersj2 4379: 
1.174     albertel 4380: The problem is past due, not considered correct, and no answer date is
                   4381: set.
1.51      bowersj2 4382: 
1.174     albertel 4383: =item * B<PAST_DUE_ANSWER_LATER>:
1.51      bowersj2 4384: 
1.174     albertel 4385: The problem is past due, not considered correct, and an answer date in
                   4386: the future is set.
1.51      bowersj2 4387: 
1.174     albertel 4388: =item * B<ANSWER_OPEN>:
                   4389: 
                   4390: The problem is past due, not correct, and the answer is now available.
                   4391: 
                   4392: =item * B<OPEN_LATER>:
                   4393: 
                   4394: The problem is not yet open.
                   4395: 
                   4396: =item * B<TRIES_LEFT>:
                   4397: 
                   4398: The problem is open, has been tried, is not correct, but there are
                   4399: tries left.
                   4400: 
                   4401: =item * B<INCORRECT>:
                   4402: 
                   4403: The problem is open, and all tries have been used without getting the
                   4404: correct answer.
                   4405: 
                   4406: =item * B<OPEN>:
                   4407: 
                   4408: The item is open and not yet tried.
                   4409: 
                   4410: =item * B<ATTEMPTED>:
                   4411: 
                   4412: The problem has been attempted.
1.69      bowersj2 4413: 
1.185     bowersj2 4414: =item * B<ANSWER_SUBMITTED>:
                   4415: 
                   4416: An answer has been submitted, but the student should not see it.
                   4417: 
1.51      bowersj2 4418: =back
                   4419: 
                   4420: =cut
                   4421: 
1.185     bowersj2 4422: sub TRIES_LEFT       { return 20; }
                   4423: sub ANSWER_SUBMITTED { return 21; }
1.51      bowersj2 4424: 
                   4425: sub status {
                   4426:     my $self = shift;
                   4427:     my $part = shift;
                   4428:     if (!defined($part)) { $part = "0"; }
                   4429:     my $completionStatus = $self->getCompletionStatus($part);
                   4430:     my $dateStatus = $self->getDateStatus($part);
                   4431: 
                   4432:     # What we have is a two-dimensional matrix with 4 entries on one
                   4433:     # dimension and 5 entries on the other, which we want to colorize,
1.54      bowersj2 4434:     # plus network failure and "no date data at all".
1.51      bowersj2 4435: 
1.222     bowersj2 4436:     #if ($self->{RESOURCE_ERROR}) { return NETWORK_FAILURE; }
1.53      bowersj2 4437:     if ($completionStatus == NETWORK_FAILURE) { return NETWORK_FAILURE; }
1.51      bowersj2 4438: 
1.236     bowersj2 4439:     my $suppressFeedback = $self->problemstatus($part) eq 'no';
                   4440:     # If there's an answer date and we're past it, don't
                   4441:     # suppress the feedback; student should know
                   4442:     if ($self->answerdate($part) && $self->answerdate($part) < time()) {
                   4443: 	$suppressFeedback = 0;
                   4444:     }
1.185     bowersj2 4445: 
1.51      bowersj2 4446:     # There are a few whole rows we can dispose of:
1.53      bowersj2 4447:     if ($completionStatus == CORRECT ||
                   4448:         $completionStatus == CORRECT_BY_OVERRIDE ) {
1.185     bowersj2 4449:         return $suppressFeedback? ANSWER_SUBMITTED : CORRECT; 
1.69      bowersj2 4450:     }
                   4451: 
                   4452:     if ($completionStatus == ATTEMPTED) {
                   4453:         return ATTEMPTED;
1.53      bowersj2 4454:     }
                   4455: 
                   4456:     # If it's EXCUSED, then return that no matter what
                   4457:     if ($completionStatus == EXCUSED) {
                   4458:         return EXCUSED; 
1.51      bowersj2 4459:     }
                   4460: 
1.53      bowersj2 4461:     if ($dateStatus == NOTHING_SET) {
                   4462:         return NOTHING_SET;
1.51      bowersj2 4463:     }
                   4464: 
1.69      bowersj2 4465:     # Now we're down to a 4 (incorrect, incorrect_override, not_attempted)
                   4466:     # by 4 matrix (date statuses).
1.51      bowersj2 4467: 
1.54      bowersj2 4468:     if ($dateStatus == PAST_DUE_ANSWER_LATER ||
1.59      bowersj2 4469:         $dateStatus == PAST_DUE_NO_ANSWER ) {
1.272     albertel 4470:         return $suppressFeedback ? ANSWER_SUBMITTED : $dateStatus; 
1.51      bowersj2 4471:     }
                   4472: 
1.53      bowersj2 4473:     if ($dateStatus == ANSWER_OPEN) {
                   4474:         return ANSWER_OPEN;
1.51      bowersj2 4475:     }
                   4476: 
                   4477:     # Now: (incorrect, incorrect_override, not_attempted) x 
                   4478:     # (open_later), (open)
                   4479:     
1.53      bowersj2 4480:     if ($dateStatus == OPEN_LATER) {
                   4481:         return OPEN_LATER;
1.51      bowersj2 4482:     }
                   4483: 
                   4484:     # If it's WRONG...
1.53      bowersj2 4485:     if ($completionStatus == INCORRECT || $completionStatus == INCORRECT_BY_OVERRIDE) {
1.51      bowersj2 4486:         # and there are TRIES LEFT:
1.79      bowersj2 4487:         if ($self->tries($part) < $self->maxtries($part) || !$self->maxtries($part)) {
1.222     bowersj2 4488:             return $suppressFeedback ? ANSWER_SUBMITTED : TRIES_LEFT;
1.51      bowersj2 4489:         }
1.185     bowersj2 4490:         return $suppressFeedback ? ANSWER_SUBMITTED : INCORRECT; # otherwise, return orange; student can't fix this
1.51      bowersj2 4491:     }
                   4492: 
                   4493:     # Otherwise, it's untried and open
1.53      bowersj2 4494:     return OPEN; 
1.224     bowersj2 4495: }
                   4496: 
                   4497: sub CLOSED { return 23; }
                   4498: sub ERROR { return 24; }
                   4499: 
                   4500: =pod
                   4501: 
                   4502: B<Simple Status>
                   4503: 
                   4504: Convenience method B<simpleStatus> provides a "simple status" for the resource.
                   4505: "Simple status" corresponds to "which icon is shown on the
                   4506: Navmaps". There are six "simple" statuses:
                   4507: 
                   4508: =over 4
                   4509: 
                   4510: =item * B<CLOSED>: The problem is currently closed. (No icon shown.)
                   4511: 
                   4512: =item * B<OPEN>: The problem is open and unattempted.
                   4513: 
                   4514: =item * B<CORRECT>: The problem is correct for any reason.
                   4515: 
                   4516: =item * B<INCORRECT>: The problem is incorrect and can still be
                   4517: completed successfully.
                   4518: 
                   4519: =item * B<ATTEMPTED>: The problem has been attempted, but the student
                   4520: does not know if they are correct. (The ellipsis icon.)
                   4521: 
                   4522: =item * B<ERROR>: There is an error retrieving information about this
                   4523: problem.
                   4524: 
                   4525: =back
                   4526: 
                   4527: =cut
                   4528: 
                   4529: # This hash maps the composite status to this simple status, and
                   4530: # can be used directly, if you like
                   4531: my %compositeToSimple = 
                   4532:     (
                   4533:       NETWORK_FAILURE()       => ERROR,
                   4534:       NOTHING_SET()           => CLOSED,
                   4535:       CORRECT()               => CORRECT,
                   4536:       EXCUSED()               => CORRECT,
                   4537:       PAST_DUE_NO_ANSWER()    => INCORRECT,
                   4538:       PAST_DUE_ANSWER_LATER() => INCORRECT,
                   4539:       ANSWER_OPEN()           => INCORRECT,
                   4540:       OPEN_LATER()            => CLOSED,
                   4541:       TRIES_LEFT()            => OPEN,
                   4542:       INCORRECT()             => INCORRECT,
                   4543:       OPEN()                  => OPEN,
                   4544:       ATTEMPTED()             => ATTEMPTED,
                   4545:       ANSWER_SUBMITTED()      => ATTEMPTED
                   4546:      );
                   4547: 
                   4548: sub simpleStatus {
                   4549:     my $self = shift;
                   4550:     my $part = shift;
                   4551:     my $status = $self->status($part);
                   4552:     return $compositeToSimple{$status};
1.225     bowersj2 4553: }
                   4554: 
                   4555: =pod
                   4556: 
                   4557: B<simpleStatusCount> will return an array reference containing, in
                   4558: this order, the number of OPEN, CLOSED, CORRECT, INCORRECT, ATTEMPTED,
                   4559: and ERROR parts the given problem has.
                   4560: 
                   4561: =cut
                   4562:     
                   4563: # This maps the status to the slot we want to increment
                   4564: my %statusToSlotMap = 
                   4565:     (
                   4566:      OPEN()      => 0,
                   4567:      CLOSED()    => 1,
                   4568:      CORRECT()   => 2,
                   4569:      INCORRECT() => 3,
                   4570:      ATTEMPTED() => 4,
                   4571:      ERROR()     => 5
                   4572:      );
                   4573: 
                   4574: sub statusToSlot { return $statusToSlotMap{shift()}; }
                   4575: 
                   4576: sub simpleStatusCount {
                   4577:     my $self = shift;
                   4578: 
                   4579:     my @counts = (0, 0, 0, 0, 0, 0, 0);
                   4580:     foreach my $part (@{$self->parts()}) {
                   4581: 	$counts[$statusToSlotMap{$self->simpleStatus($part)}]++;
                   4582:     }
                   4583: 
                   4584:     return \@counts;
1.191     bowersj2 4585: }
                   4586: 
                   4587: =pod
                   4588: 
                   4589: B<Completable>
                   4590: 
                   4591: The completable method represents the concept of I<whether the student can
                   4592: currently do the problem>. If the student can do the problem, which means
                   4593: that it is open, there are tries left, and if the problem is manually graded
                   4594: or the grade is suppressed via problemstatus, the student has not tried it
                   4595: yet, then the method returns 1. Otherwise, it returns 0, to indicate that 
                   4596: either the student has tried it and there is no feedback, or that for
                   4597: some reason it is no longer completable (not open yet, successfully completed,
                   4598: out of tries, etc.). As an example, this is used as the filter for the
                   4599: "Uncompleted Homework" option for the nav maps.
                   4600: 
                   4601: If this does not quite meet your needs, do not fiddle with it (unless you are
                   4602: fixing it to better match the student's conception of "completable" because
                   4603: it's broken somehow)... make a new method.
                   4604: 
                   4605: =cut
                   4606: 
                   4607: sub completable {
                   4608:     my $self = shift;
                   4609:     if (!$self->is_problem()) { return 0; }
                   4610:     my $partCount = $self->countParts();
                   4611: 
                   4612:     foreach my $part (@{$self->parts()}) {
                   4613:         if ($part eq '0' && $partCount != 1) { next; }
                   4614:         my $status = $self->status($part);
                   4615:         # "If any of the parts are open, or have tries left (implies open),
                   4616:         # and it is not "attempted" (manually graded problem), it is
                   4617:         # not "complete"
1.216     bowersj2 4618: 	if ($self->getCompletionStatus($part) == ATTEMPTED() ||
                   4619: 	    $status == ANSWER_SUBMITTED() ) {
                   4620: 	    # did this part already, as well as we can
                   4621: 	    next;
                   4622: 	}
                   4623: 	if ($status == OPEN() || $status == TRIES_LEFT()) {
                   4624: 	    return 1;
                   4625: 	}
1.191     bowersj2 4626:     }
                   4627:         
                   4628:     # If all the parts were complete, so was this problem.
1.216     bowersj2 4629:     return 0;
1.51      bowersj2 4630: }
                   4631: 
                   4632: =pod
                   4633: 
                   4634: =head2 Resource/Nav Map Navigation
                   4635: 
                   4636: =over 4
                   4637: 
1.174     albertel 4638: =item * B<getNext>():
                   4639: 
                   4640: Retreive an array of the possible next resources after this
                   4641: one. Always returns an array, even in the one- or zero-element case.
                   4642: 
                   4643: =item * B<getPrevious>():
1.85      bowersj2 4644: 
1.174     albertel 4645: Retreive an array of the possible previous resources from this
                   4646: one. Always returns an array, even in the one- or zero-element case.
1.51      bowersj2 4647: 
                   4648: =cut
                   4649: 
                   4650: sub getNext {
                   4651:     my $self = shift;
                   4652:     my @branches;
                   4653:     my $to = $self->to();
1.85      bowersj2 4654:     foreach my $branch ( split(/,/, $to) ) {
1.51      bowersj2 4655:         my $choice = $self->{NAV_MAP}->getById($branch);
                   4656:         my $next = $choice->goesto();
                   4657:         $next = $self->{NAV_MAP}->getById($next);
                   4658: 
1.131     bowersj2 4659:         push @branches, $next;
1.85      bowersj2 4660:     }
                   4661:     return \@branches;
                   4662: }
                   4663: 
                   4664: sub getPrevious {
                   4665:     my $self = shift;
                   4666:     my @branches;
                   4667:     my $from = $self->from();
                   4668:     foreach my $branch ( split /,/, $from) {
                   4669:         my $choice = $self->{NAV_MAP}->getById($branch);
                   4670:         my $prev = $choice->comesfrom();
                   4671:         $prev = $self->{NAV_MAP}->getById($prev);
                   4672: 
1.131     bowersj2 4673:         push @branches, $prev;
1.51      bowersj2 4674:     }
                   4675:     return \@branches;
1.131     bowersj2 4676: }
                   4677: 
                   4678: sub browsePriv {
                   4679:     my $self = shift;
                   4680:     if (defined($self->{BROWSE_PRIV})) {
                   4681:         return $self->{BROWSE_PRIV};
                   4682:     }
                   4683: 
                   4684:     $self->{BROWSE_PRIV} = &Apache::lonnet::allowed('bre', $self->src());
1.51      bowersj2 4685: }
                   4686: 
                   4687: =pod
1.2       www      4688: 
1.51      bowersj2 4689: =back
1.2       www      4690: 
1.51      bowersj2 4691: =cut
1.2       www      4692: 
1.51      bowersj2 4693: 1;
1.2       www      4694: 
1.51      bowersj2 4695: __END__
1.2       www      4696: 
                   4697: 

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