File:  [LON-CAPA] / rat / lonpageflip.pm
Revision 1.20: download - view: text, annotated - select for diffs
Thu Apr 11 15:43:40 2002 UTC (22 years ago) by albertel
Branches: MAIN
CVS tags: HEAD
- typo fixed
- move last_known to be set earlier ($mapurl changes value after the move call)
- looks like BUG#270 should be fixed

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

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