File:  [LON-CAPA] / rat / lonpage.pm
Revision 1.13: download - view: text, annotated - select for diffs
Mon Oct 16 17:29:11 2000 UTC (23 years, 6 months ago) by www
Branches: MAIN
CVS tags: HEAD
Now also does (simple) embed for plugin stuff

    1: # The LearningOnline Network with CAPA
    2: # Page Handler
    3: #
    4: # (TeX Content Handler
    5: #
    6: # 05/29/00,05/30 Gerd Kortemeyer)
    7: # 08/30,08/31,09/06,09/14,09/15,09/16,09/19,09/20,09/21,09/23,
    8: # 10/02,10/10,10/14,10/16 Gerd Kortemeyer
    9: 
   10: package Apache::lonpage;
   11: 
   12: use strict;
   13: use Apache::Constants qw(:common :http);
   14: use Apache::lonnet();
   15: use HTML::TokeParser;
   16: use GDBM_File;
   17: 
   18: # -------------------------------------------------------------- Module Globals
   19: my %hash;
   20: my @rows;
   21: 
   22: # ------------------------------------------------------------------ Euclid gcd
   23: 
   24: sub euclid {
   25:     my ($e,$f)=@_;
   26:     my $a; my $b; my $r;
   27:     if ($e>$f) { $b=$e; $r=$f; } else { $r=$e; $b=$f; }
   28:     while ($r!=0) {
   29: 	$a=$b; $b=$r;
   30:         $r=$a%$b;
   31:     }
   32:     return $b;
   33: }
   34: 
   35: # ------------------------------------------------------------ Build page table
   36: 
   37: sub tracetable {
   38:     my ($sofar,$rid,$beenhere)=@_;
   39:     my $further=$sofar;
   40:     unless ($beenhere=~/\&$rid\&/) {
   41:        $beenhere.=$rid.'&';  
   42: 
   43:        if (defined($hash{'is_map_'.$rid})) {
   44:            if ((defined($hash{'map_start_'.$hash{'src_'.$rid}})) &&
   45:                (defined($hash{'map_finish_'.$hash{'src_'.$rid}}))) {
   46:               my $frid=$hash{'map_finish_'.$hash{'src_'.$rid}};
   47: 	      $sofar=
   48:                 &tracetable($sofar,$hash{'map_start_'.$hash{'src_'.$rid}},
   49:                 '&'.$frid.'&');
   50:               $sofar++;
   51:               if ($hash{'src_'.$frid}) {
   52:                my $brepriv=&Apache::lonnet::allowed('bre',$hash{'src_'.$frid});
   53:                if (($brepriv eq '2') || ($brepriv eq 'F')) {
   54:                  if (defined($rows[$sofar])) {
   55:                    $rows[$sofar].='&'.$frid;
   56:                  } else {
   57:                    $rows[$sofar]=$frid;
   58:                  }
   59: 	       }
   60: 	      }
   61: 	   }
   62:        } else {
   63:           $sofar++;
   64:           if ($hash{'src_'.$rid}) {
   65:            my $brepriv=&Apache::lonnet::allowed('bre',$hash{'src_'.$rid});
   66:            if (($brepriv eq '2') || ($brepriv eq 'F')) {
   67:              if (defined($rows[$sofar])) {
   68:                $rows[$sofar].='&'.$rid;
   69:              } else {
   70:                $rows[$sofar]=$rid;
   71:              }
   72: 	   }
   73:           }
   74:        }
   75: 
   76:        if (defined($hash{'to_'.$rid})) {
   77: 	  my $mincond=1;
   78:           my $next='';
   79:           map {
   80:               my $thiscond=
   81:       &Apache::lonnet::directcondval($hash{'condid_'.$hash{'undercond_'.$_}});
   82:               if ($thiscond>=$mincond) {
   83: 		  if ($next) {
   84: 		      $next.=','.$_.':'.$thiscond;
   85:                   } else {
   86:                       $next=$_.':'.$thiscond;
   87: 		  }
   88:                   if ($thiscond>$mincond) { $mincond=$thiscond; }
   89: 	      }
   90:           } split(/\,/,$hash{'to_'.$rid});
   91:           map {
   92:               my ($linkid,$condval)=split(/\:/,$_);
   93:               if ($condval>=$mincond) {
   94:                 my $now=&tracetable($sofar,$hash{'goesto_'.$linkid},$beenhere);
   95:                 if ($now>$further) { $further=$now; }
   96: 	      }
   97:           } split(/\,/,$next);
   98: 
   99:        }
  100:     }
  101:     return $further;
  102: }
  103: 
  104: # ================================================================ Main Handler
  105: 
  106: sub handler {
  107:   my $r=shift;
  108: 
  109: # ------------------------------------------- Set document type for header only
  110: 
  111:   if ($r->header_only) {
  112:        if ($ENV{'browser.mathml'}) {
  113:            $r->content_type('text/xml');
  114:        } else {
  115:            $r->content_type('text/html');
  116:        }
  117:        $r->send_http_header;
  118:        return OK;
  119:    }
  120: 
  121:   my $requrl=$r->uri;
  122: # ----------------------------------------------------------------- Tie db file
  123:   if ($ENV{'request.course.fn'}) {
  124:       my $fn=$ENV{'request.course.fn'};
  125:       if (-e "$fn.db") {
  126:           if (tie(%hash,'GDBM_File',"$fn.db",&GDBM_READER,0640)) {
  127: # ------------------------------------------------------------------- Hash tied
  128:               my $firstres=$hash{'map_start_'.$requrl};
  129:               my $lastres=$hash{'map_finish_'.$requrl};
  130:               if (($firstres) && ($lastres)) {
  131: # ----------------------------------------------------------------- Render page
  132: 
  133:                   @rows=();
  134: 
  135:                   &tracetable(0,$firstres,'&'.$lastres.'&');
  136:                   if ($hash{'src_'.$lastres}) {
  137:                      my $brepriv=
  138:                         &Apache::lonnet::allowed('bre',$hash{'src_'.$lastres});
  139:                      if (($brepriv eq '2') || ($brepriv eq 'F')) {
  140:                         $rows[$#rows+1]=''.$lastres;
  141: 		     }
  142: 		  }
  143: 
  144: # ------------------------------------------------------------ Add to symb list
  145: 
  146:                   my $i;
  147:                   my %symbhash=();
  148:                   for ($i=0;$i<=$#rows;$i++) {
  149: 		     if ($rows[$i]) {
  150:                         my @colcont=split(/\&/,$rows[$i]);
  151:                         map {
  152:                            $symbhash{$hash{'src_'.$_}}='';
  153: 		        } @colcont;
  154: 		     }
  155: 		  }
  156:                   &Apache::lonnet::symblist($requrl,%symbhash);
  157: 
  158: # ------------------------------------------------------------------ Page parms
  159: 
  160:                   my $j;
  161:                   my $lcm=1;
  162:                   my $contents=0;
  163:                   my $nforms=0;
  164:                   
  165:                   my %ssibody=();
  166:                   my %ssibgcolor=();
  167:                   my %ssitext=();
  168:                   my %ssilink=();
  169:                   my %ssivlink=();
  170:                   my %ssialink=();
  171:                   my %cellemb=();
  172: 
  173:                   my $allscript='';
  174:                   my $allmeta='';
  175: 
  176:                   my $isxml=0;
  177:                   my $xmlheader='';
  178:                   my $xmlbody='';
  179: 
  180: # --------------------------------------------- Get SSI output, post parameters
  181: 
  182:                   for ($i=0;$i<=$#rows;$i++) {
  183: 		     if ($rows[$i]) {
  184: 		      $contents++;
  185:                       my @colcont=split(/\&/,$rows[$i]);
  186:                       $lcm*=($#colcont+1)/euclid($lcm,($#colcont+1));
  187:                       map {
  188:                           my $src=$hash{'src_'.$_};
  189:                           $src=~/\.(\w+)$/;
  190:                           $cellemb{$_}=Apache::lonnet::fileembstyle($1);
  191:                           if ($cellemb{$_} eq 'ssi') {
  192: # --------------------------------------------------------- This is an SSI cell
  193: 			      my $prefix=$_.'_';
  194:                               my %posthash=('request.prefix' => $prefix);
  195:                               if (($ENV{'form.'.$prefix.'submit'}) 
  196:                                || ($ENV{'form.all_submit'})) {
  197:                                map {
  198: 				  if ($_=~/^form.$prefix/) {
  199: 				      my $name=$_;
  200:                                       $name=~s/^form.$prefix//;
  201:                                       $posthash{$name}=$ENV{$_};
  202:                                   }
  203:                                } keys %ENV;
  204: 			      }
  205:                               my $output=Apache::lonnet::ssi($src,%posthash);
  206:                               my $parser=HTML::TokeParser->new(\$output);
  207:                               my $token;
  208:                               my $thisdir=$src;
  209:                               my $bodydef=0;
  210:                               my $thisxml=0;
  211:                               my @rlinks=();
  212:                               if ($output=~/\?xml/) {
  213:                                  $isxml=1;
  214:                                  $thisxml=1;
  215:                                  $output=~
  216:          /((?:\<(?:\?xml|\!DOC|html)[^\>]*(?:\>|\>\]\>)\s*)+)\<body[^\>]*\>/si;
  217:                                  $xmlheader=$1;
  218: 			      }
  219:                               while ($token=$parser->get_token) {
  220: 				if ($token->[0] eq 'S') {
  221:                                   if ($token->[1] eq 'a') {
  222: 				      if ($token->[2]->{'href'}) {
  223:                                          $rlinks[$#rlinks+1]=
  224: 					     $token->[2]->{'href'};
  225: 				      }
  226: 				  } elsif ($token->[1] eq 'img') {
  227:                                          $rlinks[$#rlinks+1]=
  228: 					     $token->[2]->{'src'};
  229: 				  } elsif ($token->[1] eq 'embed') {
  230:                                          $rlinks[$#rlinks+1]=
  231: 					     $token->[2]->{'src'};
  232: 				  } elsif ($token->[1] eq 'base') {
  233: 				      $thisdir=$token->[2]->{'href'};
  234: 				  } elsif ($token->[1] eq 'body') {
  235: 				      $bodydef=1;
  236:                                       $ssibgcolor{$_}=$token->[2]->{'bgcolor'};
  237:                                       $ssitext{$_}=$token->[2]->{'text'};
  238:                                       $ssilink{$_}=$token->[2]->{'link'};
  239:                                       $ssivlink{$_}=$token->[2]->{'vlink'};
  240:                                       $ssialink{$_}=$token->[2]->{'alink'};
  241:                                       if ($thisxml) {
  242: 					  $xmlbody=$token->[4];
  243:                                       }
  244:                                   } elsif ($token->[1] eq 'meta') {
  245: 				      $allmeta.="\n".$token->[4].'</meta>';
  246:                                   } elsif (($token->[1] eq 'script') &&
  247:                                            ($bodydef==0)) {
  248: 				      $allscript.="\n\n"
  249:                                                 .$parser->get_text('/script');
  250:                                   }
  251: 			        }
  252: 			      }
  253:                               if ($output=~/\<body[^\>]*\>(.*)/si) {
  254:                                  $output=$1; 
  255:                               }
  256:                               $output=~s/\<\/body\>.*//si;
  257:                               if ($output=~/\<form/si) {
  258: 				  $nforms++;
  259:                                   $output=~s/\<form[^\>]*\>//gsi;
  260:                                   $output=~s/\<\/form[^\>]*\>//gsi;
  261:                               }
  262:                               $thisdir=~s/\/[^\/]*$//;
  263: 			      map {
  264: 				  unless (($_=~/^http:\/\//i) ||
  265:                                           ($_=~/^\//)) {
  266: 				      my $newlocation=
  267: 				    &Apache::lonnet::hreflocation($thisdir,$_);
  268:                      $output=~s/(\"|\'|\=\s*)$_(\"|\'|\s|\>)/$1$newlocation$2/;
  269: 				  }
  270: 			      } @rlinks;
  271:                      $output=~s/\<\s*applet/\<applet codebase=\"$thisdir\" /gi;
  272: 			      $ssibody{$_}=$output;
  273: 
  274: # ---------------------------------------------------------------- End SSI cell
  275:                           }
  276:                       } @colcont;
  277:                      } 
  278:                   }
  279:                   unless ($contents) {
  280:                       $r->content_type('text/html');
  281:                       $r->send_http_header;
  282:                       $r->print('<html><body>Empty page.</body></html>');
  283:                   } else {
  284: # ------------------------------------------------------------------ Build page
  285: 
  286: # ---------------------------------------------------------------- Send headers
  287:                       if ($isxml) {
  288: 			  $r->content_type('text/xml');
  289:                           $r->send_http_header;
  290:                           $r->print($xmlheader);
  291: 		      } else {
  292:                           $r->content_type('text/html');
  293:                           $r->send_http_header;
  294:                           $r->print('<html>');
  295: 		      }
  296: # ------------------------------------------------------------------------ Head
  297:                       $r->print("\n<head>\n".$allmeta);
  298:                       if ($allscript) {
  299: 			  $r->print("\n<script>\n".$allscript."\n</script>\n");
  300:                       }
  301:                       $r->print("\n</head>\n");
  302: # ------------------------------------------------------------------ Start body
  303:                       if ($isxml) {
  304:                           $r->print($xmlbody);
  305:                       } else {
  306: 			  $r->print('<body bgcolor="#FFFFFF">');
  307:                       }
  308: # ------------------------------------------------------------------ Start form
  309:                       if ($nforms) {
  310: 			  $r->print('<form method="post" action="'.
  311: 				    $requrl.'">');
  312:                       }
  313: # ----------------------------------------------------------------- Start table
  314:                       $r->print('<table cols="'.$lcm.'" border="0">');
  315:                       for ($i=0;$i<=$#rows;$i++) {
  316: 			if ($rows[$i]) {
  317:                           $r->print("\n<tr>");
  318:                           my @colcont=split(/\&/,$rows[$i]);
  319:                           my $avespan=$lcm/($#colcont+1);
  320:                           for ($j=0;$j<=$#colcont;$j++) {
  321:                               my $rid=$colcont[$j];
  322:                               $r->print('<td colspan="'.$avespan.'"');
  323:                               if ($cellemb{$rid} eq 'ssi') {
  324: 				  if ($ssibgcolor{$rid}) {
  325:                                      $r->print(' bgcolor="'.
  326:                                                $ssibgcolor{$rid}.'"');
  327:                                   }
  328:                                   $r->print('><font');
  329:                                   if ($ssitext{$rid}) {
  330: 				     $r->print(' text="'.$ssitext{$rid}.'"');
  331:                                   }
  332:                                   if ($ssilink{$rid}) {
  333: 				     $r->print(' link="'.$ssilink{$rid}.'"');
  334:                                   }
  335:                                   if ($ssitext{$rid}) {
  336: 				     $r->print(' vlink="'.$ssivlink{$rid}.'"');
  337:                                   }
  338:                                   if ($ssialink{$rid}) {
  339: 				     $r->print(' alink="'.$ssialink{$rid}.'"');
  340:                                   }
  341:                             
  342:                                   $r->print('>'.$ssibody{$rid}.'</font>');
  343:                               } elsif ($cellemb{$rid} eq 'img') {
  344:                                   $r->print('><img src="'.
  345:                                     $hash{'src_'.$rid}.'"></img>');
  346: 			      } elsif ($cellemb{$rid} eq 'emb') {
  347:                                   $r->print('><embed src="'.
  348:                                     $hash{'src_'.$rid}.'"></embed>');
  349:                               }
  350:                               $r->print('</td>');
  351:                           }
  352:                           $r->print('</tr>');
  353: 		        }
  354:                       }
  355:                       $r->print("\n</table>");
  356: # ---------------------------------------------------------------- Submit, etc.
  357:                       if ($nforms) {
  358:                           $r->print(
  359: 	                  '<input name="all_submit" value="Submit All" type="'.
  360: 			  (($nforms>1)?'submit':'hidden').'"></input></form>');
  361:                       }
  362:                       $r->print('</body></html>');
  363: # -------------------------------------------------------------------- End page
  364:                   }                  
  365: # ------------------------------------------------------------- End render page
  366:               } else {
  367:                   $r->content_type('text/html');
  368:                   $r->send_http_header;
  369: 		  $r->print('<html><body>Page undefined.</body></html>');
  370:               }
  371: # ------------------------------------------------------------------ Untie hash
  372:               unless (untie(%hash)) {
  373:                    &Apache::lonnet::logthis("<font color=blue>WARNING: ".
  374:                        "Could not untie coursemap $fn (browse).</font>"); 
  375:               }
  376: # -------------------------------------------------------------------- All done
  377: 	      return OK;
  378: # ----------------------------------------------- Errors, hash could no be tied
  379:           }
  380:       } 
  381:   }
  382:   $ENV{'user.error.msg'}="$requrl:bre:0:0:Course not initialized";
  383:   return HTTP_NOT_ACCEPTABLE; 
  384: }
  385: 
  386: 1;
  387: __END__
  388: 
  389: 
  390: 
  391: 
  392: 
  393: 
  394: 

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