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