Annotation of rat/lonpageflip.pm, revision 1.32
1.1 www 1: # The LearningOnline Network with CAPA
2: #
3: # Page flip handler
4: #
1.32 ! bowersj2 5: # $Id: lonpageflip.pm,v 1.31 2002/10/10 19:05:32 www Exp $
1.18 www 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.1 www 29: # (Page Handler
30: #
31: # (TeX Content Handler
32: #
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 Gerd Kortemeyer)
36: #
1.13 www 37: # 10/03,10/05,10/06,10/07,10/09,10/10,10/11,10/16,10/17,
1.14 www 38: # 11/14,11/16,
1.17 www 39: # 10/01/01,05/01,05/28,07/05 Gerd Kortemeyer
1.1 www 40:
41: package Apache::lonpageflip;
42:
43: use strict;
1.4 www 44: use Apache::Constants qw(:common :http REDIRECT);
1.1 www 45: use Apache::lonnet();
46: use HTML::TokeParser;
47: use GDBM_File;
48:
1.3 www 49: # ========================================================== Module Global Hash
50:
1.1 www 51: my %hash;
52:
1.3 www 53: sub addrid {
1.4 www 54: my ($current,$new,$condid)=@_;
55: unless ($condid) { $condid=0; }
1.27 www 56:
1.3 www 57: if ($current) {
1.5 www 58: $current.=','.$new;
1.3 www 59: } else {
1.5 www 60: $current=''.$new;
1.3 www 61: }
1.27 www 62:
1.3 www 63: return $current;
1.25 www 64: }
65:
66: sub fullmove {
67: my ($rid,$mapurl,$direction)=@_;
68: if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.'.db',
1.28 albertel 69: &GDBM_READER(),0640)) {
1.25 www 70: ($rid,$mapurl)=&move($rid,$mapurl,$direction);
71: untie(%hash);
72: }
73: return($rid,$mapurl);
1.1 www 74: }
75:
1.15 www 76: sub move {
77: my ($rid,$mapurl,$direction)=@_;
1.23 www 78: my $startoutrid=$rid;
1.15 www 79:
80: my $next='';
81:
82: my $mincond=1;
83: my $posnext='';
84: if ($direction eq 'forward') {
85: # --------------------------------------------------------------------- Forward
86: if ($hash{'type_'.$rid} eq 'finish') {
1.29 www 87: $rid=$hash{'ids_'.&Apache::lonnet::clutter($mapurl)};
1.15 www 88: }
89: map {
90: my $thiscond=
91: &Apache::lonnet::directcondval($hash{'condid_'.$hash{'undercond_'.$_}});
92: if ($thiscond>=$mincond) {
93: if ($posnext) {
94: $posnext.=','.$_.':'.$thiscond;
95: } else {
96: $posnext=$_.':'.$thiscond;
97: }
98: if ($thiscond>$mincond) { $mincond=$thiscond; }
99: }
100: } split(/\,/,$hash{'to_'.$rid});
101: map {
102: my ($linkid,$condval)=split(/\:/,$_);
103: if ($condval>=$mincond) {
104: $next=&addrid($next,$hash{'goesto_'.$linkid},
105: $hash{'condid_'.$hash{'undercond_'.$linkid}});
106: }
107: } split(/\,/,$posnext);
108: if ($hash{'is_map_'.$next}) {
1.23 www 109: # This jumps to the beginning of a new map (going down level)
1.15 www 110: if (
111: $hash{'map_type_'.$hash{'map_pc_'.$hash{'src_'.$next}}} eq 'sequence') {
112: $mapurl=$hash{'src_'.$next};
113: $next=$hash{'map_start_'.$hash{'src_'.$next}};
114: }
1.23 www 115: } elsif
116: ((split(/\./,$startoutrid))[0]!=(split(/\./,$next))[0]) {
117: # This comes up from a map (coming up one level);
118: $mapurl=$hash{'map_id_'.(split(/\./,$next))[0]};
1.15 www 119: }
120: } elsif ($direction eq 'back') {
121: # ------------------------------------------------------------------- Backwards
122: if ($hash{'type_'.$rid} eq 'start') {
1.29 www 123: $rid=$hash{'ids_'.&Apache::lonnet::clutter($mapurl)};
1.15 www 124: }
125: map {
126: my $thiscond=
127: &Apache::lonnet::directcondval($hash{'condid_'.$hash{'undercond_'.$_}});
128: if ($thiscond>=$mincond) {
129: if ($posnext) {
130: $posnext.=','.$_.':'.$thiscond;
131: } else {
132: $posnext=$_.':'.$thiscond;
133: }
134: if ($thiscond>$mincond) { $mincond=$thiscond; }
135: }
136: } split(/\,/,$hash{'from_'.$rid});
137: map {
138: my ($linkid,$condval)=split(/\:/,$_);
139: if ($condval>=$mincond) {
140: $next=&addrid($next,$hash{'comesfrom_'.$linkid},
141: $hash{'condid_'.$hash{'undercond_'.$linkid}});
142: }
143: } split(/\,/,$posnext);
144: if ($hash{'is_map_'.$next}) {
1.24 www 145: # This jumps to the end of a new map (going down one level)
1.15 www 146: if (
147: $hash{'map_type_'.$hash{'map_pc_'.$hash{'src_'.$next}}} eq 'sequence') {
148: $mapurl=$hash{'src_'.$next};
149: $next=$hash{'map_finish_'.$hash{'src_'.$next}};
150: }
1.24 www 151: } elsif
152: ((split(/\./,$startoutrid))[0]!=(split(/\./,$next))[0]) {
153: # This comes back up from a map (going up one level);
154: $mapurl=$hash{'map_id_'.(split(/\./,$next))[0]};
1.15 www 155: }
156: }
157: return ($next,$mapurl);
158: }
159:
1.1 www 160: # ================================================================ Main Handler
161:
162: sub handler {
1.2 www 163: my $r=shift;
1.1 www 164:
165: # ------------------------------------------- Set document type for header only
166:
1.2 www 167: if ($r->header_only) {
1.1 www 168: $r->content_type('text/html');
169: $r->send_http_header;
1.2 www 170: return OK;
171: }
172:
1.5 www 173: my %cachehash=();
174: my $multichoice=0;
175: my %multichoicehash=();
1.4 www 176: my $redirecturl='';
177: my $next='';
178: my @possibilities=();
1.2 www 179: if (($ENV{'form.postdata'})&&($ENV{'request.course.fn'})) {
180: $ENV{'form.postdata'}=~/(\w+)\:(.*)/;
181: my $direction=$1;
182: my $currenturl=$2;
1.10 www 183: if ($direction eq 'return') {
184: # -------------------------------------------------------- Return to last known
185: my $last;
186: if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.'_symb.db',
1.28 albertel 187: &GDBM_READER(),0640)) {
1.10 www 188: $last=$hash{'last_known'};
189: untie(%hash);
190: }
191: my $newloc;
192: if ($last) {
1.29 www 193: $newloc=&Apache::lonnet::clutter((split(/\_\_\_/,$last))[1]);
1.10 www 194: } else {
195: $newloc='/adm/noidea.html';
196: }
197: $r->content_type('text/html');
198: $r->header_out(Location =>
199: 'http://'.$ENV{'HTTP_HOST'}.$newloc);
200:
201: return REDIRECT;
202: }
1.2 www 203: $currenturl=~s/^http\:\/\///;
204: $currenturl=~s/^[^\/]+//;
1.30 www 205: unless ($currenturl=~/^\/(res|adm\/wrapper|public|adm\/coursedocs)\//) {
1.7 www 206: my $last;
207: if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.'_symb.db',
1.28 albertel 208: &GDBM_READER(),0640)) {
1.7 www 209: $last=$hash{'last_known'};
210: untie(%hash);
211: }
212: if ($last) {
1.29 www 213: $currenturl=&Apache::lonnet::clutter((split(/\_\_\_/,$last))[1]);
1.7 www 214: } else {
215: $r->content_type('text/html');
216: $r->header_out(Location =>
217: 'http://'.$ENV{'HTTP_HOST'}.'/adm/noidea.html');
1.9 www 218: return REDIRECT;
1.7 www 219: }
220: }
1.3 www 221: # ------------------------------------------- Do we have any idea where we are?
222: my $position;
223: if ($position=Apache::lonnet::symbread($currenturl)) {
224: # ------------------------------------------------------------------------- Yes
1.22 www 225: my ($startoutmap,$mapnum,$thisurl)=split(/\_\_\_/,$position);
226: $cachehash{$startoutmap}{$thisurl}=$mapnum;
1.23 www 227: $cachehash{$startoutmap}{'last_known'}=
228: &Apache::lonnet::declutter($currenturl);
1.20 albertel 229:
1.5 www 230: # ============================================================ Tie the big hash
1.3 www 231: if (tie(%hash,'GDBM_File',$ENV{'request.course.fn'}.'.db',
1.28 albertel 232: &GDBM_READER(),0640)) {
1.29 www 233: my $rid=$hash{'map_pc_'.&Apache::lonnet::clutter($startoutmap)}.
234: '.'.$mapnum;
1.14 www 235:
1.15 www 236: # ------------------------------------------------- Move forward, backward, etc
1.22 www 237: my $endupmap;
238: ($next,$endupmap)=&move($rid,$startoutmap,$direction);
1.15 www 239: # -------------------------------------- Do we have one and only one empty URL?
240: my $safecount=0;
1.26 www 241: while (($next) && ($next!~/\,/) &&
242: ((!$hash{'src_'.$next}) || ($hash{'randomout_'.$next}))
243: && ($safecount<10000)) {
1.22 www 244: ($next,$endupmap)=&move($next,$endupmap,$direction);
1.15 www 245: $safecount++;
246: }
1.22 www 247: # We are now at at least one non-empty URL
1.4 www 248: # ----------------------------------------------------- Check out possibilities
249: if ($next) {
250: @possibilities=split(/\,/,$next);
251: if ($#possibilities==0) {
1.5 www 252: # ---------------------------------------------- Only one possibility, redirect
253: $redirecturl=$hash{'src_'.$next};
1.22 www 254: $cachehash{$endupmap}
1.19 www 255: {&Apache::lonnet::declutter($redirecturl)}
1.5 www 256: =(split(/\./,$next))[1];
1.4 www 257: } else {
1.5 www 258: # ------------------------ There are multiple possibilities for a next resource
259: $multichoice=1;
260: map {
261: $multichoicehash{'src_'.$_}=$hash{'src_'.$_};
262: $multichoicehash{'title_'.$_}=$hash{'title_'.$_};
1.6 www 263: $multichoicehash{'type_'.$_}=$hash{'type_'.$_};
1.32 ! bowersj2 264: (my $first, my $second) = $_ =~ /(\d+).(\d+)/;
! 265: my $symbSrc = Apache::lonnet::declutter($hash{'src_'.$_});
! 266: $multichoicehash{'symb_'.$_} =
! 267: Apache::lonnet::declutter($hash{'map_id_'.$first}.'___'.
! 268: $second.'___'.$symbSrc);
! 269:
1.22 www 270: my ($choicemap,$choiceres)=split(/\./,$_);
271: $cachehash
272: {&Apache::lonnet::declutter($hash{'src_'.$choicemap})}
273: {&Apache::lonnet::declutter(
1.5 www 274: $multichoicehash
275: {'src_'.$_}
276: )}
1.22 www 277: =$choiceres;
1.5 www 278: } @possibilities;
1.4 www 279: }
1.5 www 280: } else {
281: # -------------------------------------------------------------- No place to go
282: $multichoice=-1;
1.4 www 283: }
1.5 www 284: # ----------------- The program must come past this point to untie the big hash
1.3 www 285: untie(%hash);
1.5 www 286: # --------------------------------------------------------- Store position info
1.22 www 287: $cachehash{$startoutmap}{'last_direction'}=$direction;
1.19 www 288: foreach my $thismap (keys %cachehash) {
1.20 albertel 289: &Apache::lonnet::symblist($thismap,%{$cachehash{$thismap}});
1.19 www 290: }
1.5 www 291: # ============================================== Do not return before this line
1.4 www 292: if ($redirecturl) {
1.5 www 293: # ----------------------------------------------------- There is a URL to go to
1.31 www 294: # ------------------------------------------------- Check for critical messages
295: if ((time-$ENV{'user.criticalcheck.time'})>300) {
296: my @what=&Apache::lonnet::dump
297: ('critical',$ENV{'user.domain'},
298: $ENV{'user.name'});
299: if ($what[0]) {
300: if (($what[0] ne 'con_lost') &&
301: ($what[0]!~/^error\:/)) {
302: $redirecturl='/adm/email?critical=display';
303: }
304: }
305: &Apache::lonnet::appenv('user.criticalcheck.time'=>time);
306: }
307:
1.4 www 308: $r->content_type('text/html');
309: $r->header_out(Location =>
310: 'http://'.$ENV{'HTTP_HOST'}.$redirecturl);
311: return REDIRECT;
1.5 www 312: } else {
313: # --------------------------------------------------------- There was a problem
1.8 www 314: $r->content_type('text/html');
315: $r->send_http_header;
316: if ($#possibilities>0) {
317: $r->print(<<ENDSTART);
318: <head><title>Choose Next Location</title></head>
319: <body bgcolor="#FFFFFF">
320: <h1>LON-CAPA</h1>
321: There are several possibilities of where to go next.
322: <p>
323: Please click on the the resource you intend to access:
324: <p>
325: <table border=2>
326: <tr><th>Title</th><th>Type</th></tr>
327: ENDSTART
1.26 www 328: foreach (@possibilities) {
1.8 www 329: $r->print(
330: '<tr><td><a href="'.
1.32 ! bowersj2 331: $multichoicehash{'src_'.$_}.'?symb=' .
! 332: Apache::lonnet::escape($multichoicehash{'symb_'.$_}).'">'.
1.8 www 333: $multichoicehash{'title_'.$_}.
334: '</a></td><td>'.$multichoicehash{'type_'.$_}.
335: '</td></tr>');
1.26 www 336: }
1.8 www 337: $r->print('</table></body></html>');
338: return OK;
339: } else {
340: $r->print(<<ENDNONE);
341: <head><title>Choose Next Location</title></head>
342: <body bgcolor="#FFFFFF">
1.17 www 343: <img src="/adm/lonIcons/lonlogos.gif" align=right>
1.8 www 344: <h1>Sorry!</h1>
345: <h2>Next resource could not be identified.</h2>
1.17 www 346: <h3>You probably are at the beginning or the end of the course.</h3>
1.8 www 347: </body>
348: </html>
349: ENDNONE
350: return OK;
351: }
352: }
1.5 www 353: } else {
354: # ------------------------------------------------- Problem, could not tie hash
355: $ENV{'user.error.msg'}="/adm/flip:bre:0:1:Course Data Missing";
356: return HTTP_NOT_ACCEPTABLE;
1.3 www 357: }
1.5 www 358: } else {
359: # ---------------------------------------- No, could not determine where we are
1.6 www 360: $r->internal_redirect('/adm/ambiguous');
1.2 www 361: }
1.5 www 362: } else {
1.2 www 363: # -------------------------- Class was not initialized or page fliped strangely
364: $ENV{'user.error.msg'}="/adm/flip:bre:0:0:Choose Course";
365: return HTTP_NOT_ACCEPTABLE;
366: }
1.1 www 367: }
368:
369: 1;
370: __END__
371:
372:
373:
374:
375:
376:
377:
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>