Annotation of loncom/publisher/lonpublisher.pm, revision 1.89

1.1       www         1: # The LearningOnline Network with CAPA
                      2: # Publication Handler
1.54      albertel    3: #
1.89    ! matthew     4: # $Id: lonpublisher.pm,v 1.88 2002/08/07 19:59:06 albertel Exp $
1.54      albertel    5: #
                      6: # Copyright Michigan State University Board of Trustees
                      7: #
                      8: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                      9: #
                     10: # LON-CAPA is free software; you can redistribute it and/or modify
                     11: # it under the terms of the GNU General Public License as published by
                     12: # the Free Software Foundation; either version 2 of the License, or
                     13: # (at your option) any later version.
                     14: #
                     15: # LON-CAPA is distributed in the hope that it will be useful,
                     16: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     17: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     18: # GNU General Public License for more details.
                     19: #
                     20: # You should have received a copy of the GNU General Public License
                     21: # along with LON-CAPA; if not, write to the Free Software
                     22: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     23: #
                     24: # /home/httpd/html/adm/gpl.txt
                     25: #
                     26: # http://www.lon-capa.org/
                     27: #
1.1       www        28: # 
                     29: # (TeX Content Handler
                     30: #
                     31: # 05/29/00,05/30,10/11 Gerd Kortemeyer)
                     32: #
1.15      www        33: # 11/28,11/29,11/30,12/01,12/02,12/04,12/23 Gerd Kortemeyer
1.20      www        34: # 03/23 Guy Albertelli
1.23      www        35: # 03/24,03/29,04/03 Gerd Kortemeyer
1.24      harris41   36: # 04/16/2001 Scott Harrison
1.27      www        37: # 05/03,05/05,05/07 Gerd Kortemeyer
1.30      harris41   38: # 05/28/2001 Scott Harrison
1.51      www        39: # 06/23,08/07,08/11,8/13,8/17,8/18,8/24,9/26,10/16 Gerd Kortemeyer
1.58      www        40: # 12/04,12/05 Guy Albertelli
                     41: # 12/05 Gerd Kortemeyer
1.62      www        42: # 12/05 Guy Albertelli
1.64      www        43: # 12/06,12/07 Gerd Kortemeyer
1.66      harris41   44: # 12/15,12/16 Scott Harrison
1.67      www        45: # 12/25 Gerd Kortemeyer
1.71      www        46: # YEAR=2002
                     47: # 1/16,1/17 Scott Harrison
                     48: # 1/17 Gerd Kortemeyer
1.65      harris41   49: #
                     50: ###
                     51: 
                     52: ###############################################################################
                     53: ##                                                                           ##
                     54: ## ORGANIZATION OF THIS PERL MODULE                                          ##
                     55: ##                                                                           ##
                     56: ## 1. Modules used by this module                                            ##
                     57: ## 2. Various subroutines                                                    ##
                     58: ## 3. Publication Step One                                                   ##
                     59: ## 4. Phase Two                                                              ##
                     60: ## 5. Main Handler                                                           ##
                     61: ##                                                                           ##
                     62: ###############################################################################
1.1       www        63: 
                     64: package Apache::lonpublisher;
                     65: 
1.65      harris41   66: # ------------------------------------------------- modules used by this module
1.1       www        67: use strict;
                     68: use Apache::File;
1.13      www        69: use File::Copy;
1.2       www        70: use Apache::Constants qw(:common :http :methods);
1.76      albertel   71: use HTML::LCParser;
1.4       www        72: use Apache::lonxml;
1.17      albertel   73: use Apache::lonhomework;
1.27      www        74: use Apache::loncacc;
1.24      harris41   75: use DBI;
1.65      harris41   76: use Apache::lonnet();
                     77: use Apache::loncommon();
1.89    ! matthew    78: use Apache::lonmysql;
1.2       www        79: 
1.3       www        80: my %addid;
1.5       www        81: my %nokey;
1.10      www        82: 
1.7       www        83: my %metadatafields;
                     84: my %metadatakeys;
                     85: 
1.12      www        86: my $docroot;
                     87: 
1.27      www        88: my $cuname;
                     89: my $cudom;
                     90: 
1.12      www        91: # ----------------------------------------------- Evaluate string with metadata
1.7       www        92: sub metaeval {
                     93:     my $metastring=shift;
                     94:    
1.76      albertel   95:         my $parser=HTML::LCParser->new(\$metastring);
1.7       www        96:         my $token;
                     97:         while ($token=$parser->get_token) {
                     98:            if ($token->[0] eq 'S') {
                     99: 	      my $entry=$token->[1];
                    100:               my $unikey=$entry;
1.32      www       101:               if (defined($token->[2]->{'package'})) { 
                    102:                   $unikey.='_package_'.$token->[2]->{'package'};
                    103:               } 
1.7       www       104:               if (defined($token->[2]->{'part'})) { 
                    105:                  $unikey.='_'.$token->[2]->{'part'}; 
                    106: 	      }
1.32      www       107:               if (defined($token->[2]->{'id'})) { 
1.49      www       108:                   $unikey.='_'.$token->[2]->{'id'};
1.32      www       109:               } 
1.7       www       110:               if (defined($token->[2]->{'name'})) { 
                    111:                  $unikey.='_'.$token->[2]->{'name'}; 
                    112: 	      }
1.65      harris41  113:               foreach (@{$token->[3]}) {
1.7       www       114: 		  $metadatafields{$unikey.'.'.$_}=$token->[2]->{$_};
                    115:                   if ($metadatakeys{$unikey}) {
                    116: 		      $metadatakeys{$unikey}.=','.$_;
                    117:                   } else {
                    118:                       $metadatakeys{$unikey}=$_;
                    119:                   }
1.65      harris41  120:               }
1.7       www       121:               if ($metadatafields{$unikey}) {
1.8       www       122: 		  my $newentry=$parser->get_text('/'.$entry);
1.41      www       123:                   unless (($metadatafields{$unikey}=~/$newentry/) ||
                    124:                           ($newentry eq '')) {
1.8       www       125:                      $metadatafields{$unikey}.=', '.$newentry;
                    126: 		  }
1.7       www       127: 	      } else {
                    128:                  $metadatafields{$unikey}=$parser->get_text('/'.$entry);
                    129:               }
                    130:           }
                    131:        }
                    132: }
                    133: 
1.12      www       134: # -------------------------------------------------------- Read a metadata file
1.7       www       135: sub metaread {
                    136:     my ($logfile,$fn)=@_;
                    137:     unless (-e $fn) {
                    138: 	print $logfile 'No file '.$fn."\n";
                    139:         return '<br><b>No file:</b> <tt>'.$fn.'</tt>';
                    140:     }
                    141:     print $logfile 'Processing '.$fn."\n";
                    142:     my $metastring;
                    143:     {
                    144:      my $metafh=Apache::File->new($fn);
                    145:      $metastring=join('',<$metafh>);
                    146:     }
                    147:     &metaeval($metastring);
                    148:     return '<br><b>Processed file:</b> <tt>'.$fn.'</tt>';
                    149: }
                    150: 
1.25      harris41  151: # ---------------------------- convert 'time' format into a datetime sql format
                    152: sub sqltime {
1.70      harris41  153:     my $timef=shift @_;
1.25      harris41  154:     my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
1.70      harris41  155: 	localtime($timef);
1.25      harris41  156:     $mon++; $year+=1900;
                    157:     return "$year-$mon-$mday $hour:$min:$sec";
                    158: }
                    159: 
1.12      www       160: # --------------------------------------------------------- Various form fields
                    161: 
1.8       www       162: sub textfield {
1.10      www       163:     my ($title,$name,$value)=@_;
1.8       www       164:     return "\n<p><b>$title:</b><br>".
1.11      www       165:            '<input type=text name="'.$name.'" size=80 value="'.$value.'">';
                    166: }
                    167: 
                    168: sub hiddenfield {
                    169:     my ($name,$value)=@_;
                    170:     return "\n".'<input type=hidden name="'.$name.'" value="'.$value.'">';
1.8       www       171: }
                    172: 
1.9       www       173: sub selectbox {
1.65      harris41  174:     my ($title,$name,$value,$functionref,@idlist)=@_;
                    175:     my $uctitle=uc($title);
                    176:     my $selout="\n<p><font color=\"#800000\" face=\"helvetica\"><b>$uctitle:".
                    177: 	"</b></font><br />".'<select name="'.$name.'">';
                    178:     foreach (@idlist) {
                    179:         $selout.='<option value=\''.$_.'\'';
                    180:         if ($_ eq $value) {
                    181: 	    $selout.=' selected>'.&{$functionref}($_).'</option>';
                    182: 	}
                    183:         else {$selout.='>'.&{$functionref}($_).'</option>';}
                    184:     }
1.10      www       185:     return $selout.'</select>';
1.9       www       186: }
                    187: 
1.12      www       188: # -------------------------------------------------------- Publication Step One
                    189: 
1.34      www       190: sub urlfixup {
1.35      www       191:     my ($url,$target)=@_;
1.39      www       192:     unless ($url) { return ''; }
1.68      albertel  193:     #javascript code needs no fixing
                    194:     if ($url =~ /^javascript:/i) { return $url; }
1.69      albertel  195:     if ($url =~ /^mailto:/i) { return $url; }
1.68      albertel  196:     #internal document links need no fixing
                    197:     if ($url =~ /^\#/) { return $url; } 
1.35      www       198:     my ($host)=($url=~/(?:http\:\/\/)*([^\/]+)/);
1.65      harris41  199:     foreach (values %Apache::lonnet::hostname) {
1.35      www       200: 	if ($_ eq $host) {
                    201: 	    $url=~s/^http\:\/\///;
                    202:             $url=~s/^$host//;
                    203:         }
1.65      harris41  204:     }
1.40      www       205:     if ($url=~/^http\:\/\//) { return $url; }
1.35      www       206:     $url=~s/\~$cuname/res\/$cudom\/$cuname/;
1.71      www       207:     return $url;
                    208: }
                    209: 
                    210: 
                    211: sub absoluteurl {
                    212:     my ($url,$target)=@_;
                    213:     unless ($url) { return ''; }
1.35      www       214:     if ($target) {
                    215: 	$target=~s/\/[^\/]+$//;
                    216:        $url=&Apache::lonnet::hreflocation($target,$url);
                    217:     }
                    218:     return $url;
1.34      www       219: }
                    220: 
1.81      albertel  221: sub set_allow {
                    222:     my ($allow,$logfile,$target,$tag,$oldurl)=@_;
                    223:     my $newurl=&urlfixup($oldurl,$target);
                    224:     my $return_url=$oldurl;
                    225:     print $logfile 'GUYURL: '.$tag.':'.$oldurl.' - '.$newurl."\n";
                    226:     if ($newurl ne $oldurl) {
                    227: 	$return_url=$newurl;
                    228: 	print $logfile 'URL: '.$tag.':'.$oldurl.' - '.$newurl."\n";
                    229:     }
                    230:     if (($newurl !~ /^javascript:/i) &&
                    231: 	($newurl !~ /^mailto:/i) &&
                    232: 	($newurl !~ /^http:/i) &&
                    233: 	($newurl !~ /^\#/)) {
                    234: 	$$allow{&absoluteurl($newurl,$target)}=1;
                    235:     }
                    236:     return $return_url
                    237: }
                    238: 
1.85      albertel  239: sub get_subscribed_hosts {
                    240:     my ($target)=@_;
                    241:     my @subscribed;
                    242:     my $filename;
                    243:     $target=~/(.*)\/([^\/]+)$/;
                    244:     my $srcf=$2;
                    245:     opendir(DIR,$1);
                    246:     while ($filename=readdir(DIR)) {
                    247: 	if ($filename=~/$srcf\.(\w+)$/) {
                    248: 	    my $subhost=$1;
                    249: 	    if ($subhost ne 'meta' && $subhost ne 'subscription') {
                    250: 		push(@subscribed,$subhost);
                    251: 	    }
                    252: 	}
                    253:     }
                    254:     closedir(DIR);
                    255:     my $sh;
                    256:     if ( $sh=Apache::File->new("$target.subscription") ) {
                    257: 	&Apache::lonnet::logthis("opened $target.subscription");
                    258: 	while (my $subline=<$sh>) {
                    259: 	    &Apache::lonnet::logthis("Trying $subline");
                    260: 	    if ($subline =~ /(^\w+):/) { push(@subscribed,$1); } else {
                    261: 		&Apache::lonnet::logthis("No Match for $subline");
                    262: 	    }
                    263: 	}
                    264:     } else {
                    265: 	&Apache::lonnet::logthis("Un able to open $target.subscription");
                    266:     }
                    267:     &Apache::lonnet::logthis("Got list of ".join(':',@subscribed));
                    268:     return @subscribed;
                    269: }
                    270: 
1.86      albertel  271: 
                    272: sub get_max_ids_indices {
                    273:     my ($content)=@_;
                    274:     my $maxindex=10;
                    275:     my $maxid=10;
                    276:     my $needsfixup=0;
                    277: 
                    278:     my $parser=HTML::LCParser->new($content);
                    279:     my $token;
                    280:     while ($token=$parser->get_token) {
                    281: 	if ($token->[0] eq 'S') {
                    282: 	    my $counter;
                    283: 	    if ($counter=$addid{$token->[1]}) {
                    284: 		if ($counter eq 'id') {
                    285: 		    if (defined($token->[2]->{'id'})) {
                    286: 			$maxid=($token->[2]->{'id'}>$maxid)?$token->[2]->{'id'}:$maxid;
                    287: 		    } else {
                    288: 			$needsfixup=1;
                    289: 		    }
                    290: 		} else {
                    291: 		    if (defined($token->[2]->{'index'})) {
                    292: 			$maxindex=($token->[2]->{'index'}>$maxindex)?$token->[2]->{'index'}:$maxindex;
                    293: 		    } else {
                    294: 			$needsfixup=1;
                    295: 		    }
                    296: 		}
                    297: 	    }
                    298: 	}
                    299:     }
                    300:     return ($needsfixup,$maxid,$maxindex);
                    301: }
                    302: 
1.87      albertel  303: sub get_all_text_unbalanced {
                    304:     #there is a copy of this in lonxml.pm
                    305:     my($tag,$pars)= @_;
                    306:     my $token;
                    307:     my $result='';
                    308:     $tag='<'.$tag.'>';
                    309:     while ($token = $$pars[-1]->get_token) {
                    310: 	if (($token->[0] eq 'T')||($token->[0] eq 'C')||($token->[0] eq 'D')) {
                    311: 	    $result.=$token->[1];
                    312: 	} elsif ($token->[0] eq 'PI') {
                    313: 	    $result.=$token->[2];
                    314: 	} elsif ($token->[0] eq 'S') {
                    315: 	    $result.=$token->[4];
                    316: 	} elsif ($token->[0] eq 'E')  {
                    317: 	    $result.=$token->[2];
                    318: 	}
                    319: 	if ($result =~ /(.*)$tag(.*)/) {
1.88      albertel  320: 	    #&Apache::lonnet::logthis('Got a winner with leftovers ::'.$2);
                    321: 	    #&Apache::lonnet::logthis('Result is :'.$1);
1.87      albertel  322: 	    $result=$1;
                    323: 	    my $redo=$tag.$2;
                    324: 	    push (@$pars,HTML::LCParser->new(\$redo));
                    325: 	    $$pars[-1]->xml_mode('1');
                    326: 	    last;
                    327: 	}
                    328:     }
                    329:     return $result
                    330: }
                    331: 
                    332: #Arguably this should all be done as a lonnet::ssi instead
1.86      albertel  333: sub fix_ids_and_indices {
                    334:     my ($logfile,$source,$target)=@_;
                    335: 
                    336:     my %allow;
                    337:     my $content;
                    338:     {
                    339: 	my $org=Apache::File->new($source);
                    340: 	$content=join('',<$org>);
                    341:     }
                    342: 
                    343:     my ($needsfixup,$maxid,$maxindex)=&get_max_ids_indices(\$content);
                    344: 
                    345:     if ($needsfixup) {
                    346: 	print $logfile "Needs ID and/or index fixup\n".
                    347: 	    "Max ID   : $maxid (min 10)\n".
                    348:                 "Max Index: $maxindex (min 10)\n";
                    349:     }
                    350:     my $outstring='';
                    351:     my @parser;
                    352:     $parser[0]=HTML::LCParser->new(\$content);
                    353:     $parser[-1]->xml_mode(1);
                    354:     my $token;
                    355:     while (@parser) {
                    356: 	while ($token=$parser[-1]->get_token) {
                    357: 	    if ($token->[0] eq 'S') {
                    358: 		my $counter;
                    359: 		my $tag=$token->[1];
                    360: 		my $lctag=lc($tag);
                    361: 		if ($lctag eq 'allow') {
                    362: 		    $allow{$token->[2]->{'src'}}=1;
                    363: 		    next;
                    364: 		}
                    365: 		my %parms=%{$token->[2]};
                    366: 		$counter=$addid{$tag};
                    367: 		if (!$counter) { $counter=$addid{$lctag}; }
                    368: 		if ($counter) {
                    369: 		    if ($counter eq 'id') {
                    370: 			unless (defined($parms{'id'})) {
                    371: 			    $maxid++;
                    372: 			    $parms{'id'}=$maxid;
                    373: 			    print $logfile 'ID: '.$tag.':'.$maxid."\n";
                    374: 			}
                    375: 		    } elsif ($counter eq 'index') {
                    376: 			unless (defined($parms{'index'})) {
                    377: 			    $maxindex++;
                    378: 			    $parms{'index'}=$maxindex;
                    379: 			    print $logfile 'Index: '.$tag.':'.$maxindex."\n";
                    380: 			}
                    381: 		    }
                    382: 		}
                    383: 		foreach my $type ('src','href','background','bgimg') {
                    384: 		    foreach my $key (keys(%parms)) {
                    385: 			if ($key =~ /^$type$/i) {
                    386: 			    $parms{$key}=&set_allow(\%allow,$logfile,
                    387: 						    $target,$tag,
                    388: 						    $parms{$key});
                    389: 			}
                    390: 		    }
                    391: 		}
                    392: 		# probably a <randomlabel> image type <label>
                    393: 		if ($lctag eq 'label' && defined($parms{'description'})) {
                    394: 		    my $next_token=$parser[-1]->get_token();
                    395: 		    if ($next_token->[0] eq 'T') {
                    396: 			$next_token->[1]=&set_allow(\%allow,$logfile,
                    397: 						    $target,$tag,
                    398: 						    $next_token->[1]);
                    399: 		    }
                    400: 		    $parser[-1]->unget_token($next_token);
                    401: 		}
                    402: 		if ($lctag eq 'applet') {
                    403: 		    my $codebase='';
                    404: 		    if (defined($parms{'codebase'})) {
                    405: 			my $oldcodebase=$parms{'codebase'};
                    406: 			unless ($oldcodebase=~/\/$/) {
                    407: 			    $oldcodebase.='/';
                    408: 			}
                    409: 			$codebase=&urlfixup($oldcodebase,$target);
                    410: 			$codebase=~s/\/$//;    
                    411: 			if ($codebase ne $oldcodebase) {
                    412: 			    $parms{'codebase'}=$codebase;
                    413: 			    print $logfile 'URL codebase: '.$tag.':'.
                    414: 				$oldcodebase.' - '.
                    415: 				    $codebase."\n";
                    416: 			}
                    417: 			$allow{&absoluteurl($codebase,$target).'/*'}=1;
                    418: 		    } else {
                    419: 			foreach ('archive','code','object') {
                    420: 			    if (defined($parms{$_})) {
                    421: 				my $oldurl=$parms{$_};
                    422: 				my $newurl=&urlfixup($oldurl,$target);
                    423: 				$newurl=~s/\/[^\/]+$/\/\*/;
                    424: 				print $logfile 'Allow: applet '.$_.':'.
                    425: 				    $oldurl.' allows '.
                    426: 					$newurl."\n";
                    427: 				$allow{&absoluteurl($newurl,$target)}=1;
                    428: 			    }
                    429: 			}
                    430: 		    }
                    431: 		}
                    432: 		my $newparmstring='';
                    433: 		my $endtag='';
                    434: 		foreach (keys %parms) {
                    435: 		    if ($_ eq '/') {
                    436: 			$endtag=' /';
                    437: 		    } else { 
                    438: 			my $quote=($parms{$_}=~/\"/?"'":'"');
                    439: 			$newparmstring.=' '.$_.'='.$quote.$parms{$_}.$quote;
                    440: 		    }
                    441: 		}
                    442: 		if (!$endtag) { if ($token->[4]=~m:/>$:) { $endtag=' /'; }; }
                    443: 		$outstring.='<'.$tag.$newparmstring.$endtag.'>';
1.87      albertel  444: 		if ($lctag eq 'm') {
                    445: 		    $outstring.=&get_all_text_unbalanced('/m',\@parser);
                    446: 		}
1.86      albertel  447: 	    } elsif ($token->[0] eq 'E') {
                    448: 		if ($token->[2]) {
                    449: 		    unless ($token->[1] eq 'allow') {
                    450: 			$outstring.='</'.$token->[1].'>';
                    451: 		    }
                    452: 		}
                    453: 	    } else {
                    454: 		$outstring.=$token->[1];
                    455: 	    }
                    456: 	}
                    457: 	pop(@parser);
                    458:     }
                    459: 
                    460:     if ($needsfixup) {
                    461: 	print $logfile "End of ID and/or index fixup\n".
                    462: 	    "Max ID   : $maxid (min 10)\n".
                    463: 		"Max Index: $maxindex (min 10)\n";
                    464:     } else {
                    465: 	print $logfile "Does not need ID and/or index fixup\n";
                    466:     }
                    467: 
                    468:     return ($outstring,%allow);
                    469: }
                    470: 
1.89    ! matthew   471: #########################################
        !           472: #########################################
        !           473: 
        !           474: =pod
        !           475: 
        !           476: =item store_metadata
        !           477: 
        !           478: Store the metadata in the metadata table in the loncapa database.
        !           479: Uses lonmysql to access the database.
        !           480: 
        !           481: Inputs: \%metadata
        !           482: 
        !           483: Returns: (error,status).  error is undef on success, status is undef on error.
        !           484: 
        !           485: =cut
        !           486: 
        !           487: #########################################
        !           488: #########################################
        !           489: sub store_metadata {
        !           490:     my %metadata = %{shift()};
        !           491:     my $error;
        !           492:     # Determine if the table exists
        !           493:     my $status = &Apache::lonmysql::check_table('metadata');
        !           494:     if (! defined($status)) {
        !           495:         $error='<font color="red">WARNING: Cannot connect to '.
        !           496:             'database!</font>';
        !           497:         &Apache::lonnet::logthis($error);
        !           498:         return ($error,undef);
        !           499:     }
        !           500:     if ($status == 0) {
        !           501:         # It would be nice to actually create the table....
        !           502:         $error ='<font color="red">WARNING: The metadata table does not '.
        !           503:             'exist in the LON-CAPA database.</font>';
        !           504:         &Apache::lonnet::logthis($error);
        !           505:         return ($error,undef);
        !           506:     }
        !           507:     # Remove old value from table
        !           508:     $status = &Apache::lonmysql::remove_from_table
        !           509:         ('metadata','url',$metadata{'url'});
        !           510:     if (! defined($status)) {
        !           511:         $error = '<font color="red">Error when removing old values from '.
        !           512:             'metadata table in LON-CAPA database.</font>';
        !           513:         &Apache::lonnet::logthis($error);
        !           514:         return ($error,undef);
        !           515:     }
        !           516:     # Store data in table.
        !           517:     $status = &Apache::lonmysql::store_row('metadata',\%metadata);
        !           518:     if (! defined($status)) {
        !           519:         $error='<font color="red">Error occured storing new values in '.
        !           520:             'metadata table in LON-CAPA database</font>';
        !           521:         &Apache::lonnet::logthis($error);
        !           522:         return ($error,undef);
        !           523:     }
        !           524:     return (undef,$status);
        !           525: }
        !           526: 
1.2       www       527: sub publish {
1.50      www       528: 
1.2       www       529:     my ($source,$target,$style)=@_;
                    530:     my $logfile;
1.4       www       531:     my $scrout='';
1.23      www       532:     my $allmeta='';
                    533:     my $content='';
1.36      www       534:     my %allow=();
1.4       www       535: 
1.2       www       536:     unless ($logfile=Apache::File->new('>>'.$source.'.log')) {
1.7       www       537: 	return 
                    538:          '<font color=red>No write permission to user directory, FAIL</font>';
1.2       www       539:     }
                    540:     print $logfile 
1.11      www       541: "\n\n================= Publish ".localtime()." Phase One  ================\n";
1.2       www       542: 
1.3       www       543:     if (($style eq 'ssi') || ($style eq 'rat')) {
                    544: # ------------------------------------------------------- This needs processing
1.4       www       545: 
                    546: # ----------------------------------------------------------------- Backup Copy
1.3       www       547: 	my $copyfile=$source.'.save';
1.13      www       548:         if (copy($source,$copyfile)) {
1.3       www       549: 	    print $logfile "Copied original file to ".$copyfile."\n";
                    550:         } else {
1.13      www       551: 	    print $logfile "Unable to write backup ".$copyfile.':'.$!."\n";
                    552:           return "<font color=red>Failed to write backup copy, $!,FAIL</font>";
1.3       www       553:         }
1.4       www       554: # ------------------------------------------------------------- IDs and indices
1.86      albertel  555: 	
                    556: 	my $outstring;
                    557: 	($outstring,%allow)=&fix_ids_and_indices($logfile,$source,$target);
1.36      www       558: # ------------------------------------------------------------ Construct Allows
1.62      www       559:     
1.44      www       560: 	$scrout.='<h3>Dependencies</h3>';
1.62      www       561:         my $allowstr='';
1.73      albertel  562:         foreach (sort(keys(%allow))) {
1.59      www       563: 	   my $thisdep=$_;
1.73      albertel  564: 	   if ($thisdep !~ /[^\s]/) { next; }
1.62      www       565:            unless ($style eq 'rat') { 
                    566:               $allowstr.="\n".'<allow src="'.$thisdep.'" />';
                    567: 	   }
1.44      www       568:            $scrout.='<br>';
1.59      www       569:            unless ($thisdep=~/\*/) {
                    570: 	       $scrout.='<a href="'.$thisdep.'">';
1.44      www       571:            }
1.59      www       572:            $scrout.='<tt>'.$thisdep.'</tt>';
                    573:            unless ($thisdep=~/\*/) {
1.44      www       574: 	       $scrout.='</a>';
1.59      www       575:                if (
                    576:        &Apache::lonnet::getfile($Apache::lonnet::perlvar{'lonDocRoot'}.'/'.
                    577:                                             $thisdep.'.meta') eq '-1') {
1.58      www       578: 		   $scrout.=
                    579:                            ' - <font color=red>Currently not available</font>';
1.59      www       580:                } else {
                    581:                    my %temphash=(&Apache::lonnet::declutter($target).'___'.
                    582:                              &Apache::lonnet::declutter($thisdep).'___usage'
                    583:                                  => time);
                    584:                    $thisdep=~/^\/res\/(\w+)\/(\w+)\//;
                    585:                    if ((defined($1)) && (defined($2))) {
                    586:                       &Apache::lonnet::put('resevaldata',\%temphash,$1,$2);
                    587: 		   }
                    588: 	       }
1.44      www       589:            }
1.65      harris41  590:         }
1.83      www       591:         $outstring=~s/\n*(\<\/[^\>]+\>)\s*$/$allowstr\n$1\n/s;
1.62      www       592: 
1.76      albertel  593: 	#Encode any High ASCII characters
                    594: 	$outstring=&HTML::Entities::encode($outstring,"\200-\377");
1.37      www       595: # ------------------------------------------------------------- Write modified
                    596: 
1.4       www       597:         {
                    598:           my $org;
                    599:           unless ($org=Apache::File->new('>'.$source)) {
                    600:              print $logfile "No write permit to $source\n";
1.7       www       601:              return 
                    602:               "<font color=red>No write permission to $source, FAIL</font>";
1.4       www       603: 	  }
                    604:           print $org $outstring;
                    605:         }
                    606: 	  $content=$outstring;
1.34      www       607: 
1.37      www       608:     }
1.7       www       609: # --------------------------------------------- Initial step done, now metadata
                    610: 
                    611: # ---------------------------------------- Storage for metadata keys and fields
                    612: 
1.8       www       613:      %metadatafields=();
                    614:      %metadatakeys=();
                    615:      
                    616:      my %oldparmstores=();
1.44      www       617:      
1.84      bowersj2  618:      
                    619:      $scrout.='<h3>Metadata Information ' .
                    620:        Apache::loncommon::help_open_topic("Metadata_Description")
                    621:        . '</h3>';
1.7       www       622: 
                    623: # ------------------------------------------------ First, check out environment
1.8       www       624:      unless (-e $source.'.meta') {
1.7       www       625:         $metadatafields{'author'}=$ENV{'environment.firstname'}.' '.
                    626: 	                          $ENV{'environment.middlename'}.' '.
                    627: 		                  $ENV{'environment.lastname'}.' '.
                    628: 		                  $ENV{'environment.generation'};
1.8       www       629:         $metadatafields{'author'}=~s/\s+/ /g;
                    630:         $metadatafields{'author'}=~s/\s+$//;
1.27      www       631:         $metadatafields{'owner'}=$cuname.'@'.$cudom;
1.7       www       632: 
                    633: # ------------------------------------------------ Check out directory hierachy
                    634: 
                    635:         my $thisdisfn=$source;
1.27      www       636:         $thisdisfn=~s/^\/home\/$cuname\///;
1.7       www       637: 
                    638:         my @urlparts=split(/\//,$thisdisfn);
                    639:         $#urlparts--;
                    640: 
1.27      www       641:         my $currentpath='/home/'.$cuname.'/';
1.7       www       642: 
1.65      harris41  643:         foreach (@urlparts) {
1.7       www       644: 	    $currentpath.=$_.'/';
                    645:             $scrout.=&metaread($logfile,$currentpath.'default.meta');
1.65      harris41  646:         }
1.7       www       647: 
                    648: # ------------------- Clear out parameters and stores (there should not be any)
                    649: 
1.65      harris41  650:         foreach (keys %metadatafields) {
1.7       www       651: 	    if (($_=~/^parameter/) || ($_=~/^stores/)) {
                    652: 		delete $metadatafields{$_};
                    653:             }
1.65      harris41  654:         }
1.7       www       655: 
1.8       www       656:     } else {
1.7       www       657: # ---------------------- Read previous metafile, remember parameters and stores
                    658: 
                    659:         $scrout.=&metaread($logfile,$source.'.meta');
                    660: 
1.65      harris41  661:         foreach (keys %metadatafields) {
1.7       www       662: 	    if (($_=~/^parameter/) || ($_=~/^stores/)) {
                    663:                 $oldparmstores{$_}=1;
                    664: 		delete $metadatafields{$_};
                    665:             }
1.65      harris41  666:         }
1.7       www       667:         
1.8       www       668:     }
1.7       www       669: 
1.4       www       670: # -------------------------------------------------- Parse content for metadata
1.37      www       671:     if ($style eq 'ssi') {
1.42      www       672:         my $oldenv=$ENV{'request.uri'};
                    673: 
                    674:         $ENV{'request.uri'}=$target;
1.82      albertel  675:         $allmeta=Apache::lonxml::xmlparse(undef,'meta',$content);
1.42      www       676:         $ENV{'request.uri'}=$oldenv;
1.32      www       677: 
1.19      albertel  678:         &metaeval($allmeta);
1.37      www       679:     }
1.7       www       680: # ---------------- Find and document discrepancies in the parameters and stores
                    681: 
                    682:         my $chparms='';
1.65      harris41  683:         foreach (sort keys %metadatafields) {
1.7       www       684: 	    if (($_=~/^parameter/) || ($_=~/^stores/)) {
                    685:                 unless ($_=~/\.\w+$/) { 
                    686:                    unless ($oldparmstores{$_}) {
                    687: 		      print $logfile 'New: '.$_."\n";
                    688:                       $chparms.=$_.' ';
                    689:                    }
                    690: 	        }
                    691:             }
1.65      harris41  692:         }
1.7       www       693:         if ($chparms) {
                    694: 	    $scrout.='<p><b>New parameters or stored values:</b> '.
                    695:                      $chparms;
                    696:         }
                    697: 
1.70      harris41  698:         $chparms='';
1.65      harris41  699:         foreach (sort keys %oldparmstores) {
1.7       www       700: 	    if (($_=~/^parameter/) || ($_=~/^stores/)) {
1.33      www       701:                 unless (($metadatafields{$_.'.name'}) ||
                    702:                         ($metadatafields{$_.'.package'}) || ($_=~/\.\w+$/)) {
1.7       www       703: 		    print $logfile 'Obsolete: '.$_."\n";
                    704:                     $chparms.=$_.' ';
                    705:                 }
                    706:             }
1.65      harris41  707:         }
1.7       www       708:         if ($chparms) {
                    709: 	    $scrout.='<p><b>Obsolete parameters or stored values:</b> '.
                    710:                      $chparms;
                    711:         }
1.37      www       712: 
1.8       www       713: # ------------------------------------------------------- Now have all metadata
1.5       www       714: 
1.8       www       715:         $scrout.=
1.77      matthew   716:      '<form name="pubform" action="/adm/publish" method="post">'.
1.63      albertel  717:        '<p><input type="submit" value="Finalize Publication" /></p>'.
1.11      www       718:           &hiddenfield('phase','two').
                    719:           &hiddenfield('filename',$ENV{'form.filename'}).
                    720: 	  &hiddenfield('allmeta',&Apache::lonnet::escape($allmeta)).
1.58      www       721:           &hiddenfield('dependencies',join(',',keys %allow)).
1.10      www       722:           &textfield('Title','title',$metadatafields{'title'}).
                    723:           &textfield('Author(s)','author',$metadatafields{'author'}).
                    724: 	  &textfield('Subject','subject',$metadatafields{'subject'});
1.5       www       725: 
                    726: # --------------------------------------------------- Scan content for keywords
1.7       www       727: 
1.84      bowersj2  728:         my $keywords_help = Apache::loncommon::help_open_topic("Publishing_Keywords");
1.77      matthew   729: 	my $keywordout=<<"END";
                    730: <script>
                    731: function checkAll(field)
                    732: {
                    733:     for (i = 0; i < field.length; i++)
                    734:         field[i].checked = true ;
                    735: }
                    736: 
                    737: function uncheckAll(field)
                    738: {
                    739:     for (i = 0; i < field.length; i++)
                    740:         field[i].checked = false ;
                    741: }
                    742: </script>
1.84      bowersj2  743: <p><b>Keywords: $keywords_help</b> 
1.77      matthew   744: <input type="button" value="check all" onclick="javascript:checkAll(document.pubform.keywords)"> 
                    745: <input type="button" value="uncheck all" onclick="javascript:uncheckAll(document.pubform.keywords)"> 
                    746: <br />
                    747: END
                    748:         $keywordout.='<table border=2><tr>';
1.7       www       749:         my $colcount=0;
1.67      www       750:         my %keywords=();
1.7       www       751:         
1.52      albertel  752: 	if (length($content)<500000) {
1.5       www       753: 	    my $textonly=$content;
                    754:             $textonly=~s/\<script[^\<]+\<\/script\>//g;
                    755:             $textonly=~s/\<m\>[^\<]+\<\/m\>//g;
                    756:             $textonly=~s/\<[^\>]*\>//g;
                    757:             $textonly=~tr/A-Z/a-z/;
                    758:             $textonly=~s/[\$\&][a-z]\w*//g;
                    759:             $textonly=~s/[^a-z\s]//g;
                    760: 
1.65      harris41  761:             foreach ($textonly=~m/(\w+)/g) {
1.50      www       762: 		unless ($nokey{$_}) {
                    763:                    $keywords{$_}=1;
                    764:                 } 
1.65      harris41  765:             }
1.67      www       766:         }
1.5       www       767: 
1.67      www       768:             
1.65      harris41  769:             foreach (split(/\W+/,$metadatafields{'keywords'})) {
1.12      www       770: 		$keywords{$_}=1;
1.65      harris41  771:             }
1.5       www       772: 
1.65      harris41  773:             foreach (sort keys %keywords) {
1.77      matthew   774:                 $keywordout.='<td><input type=checkbox name="keywords" value="'.$_.'"';
1.67      www       775:                 if ($metadatafields{'keywords'}) {
                    776:                    if ($metadatafields{'keywords'}=~/$_/) { 
                    777:                       $keywordout.=' checked'; 
                    778:                    }
                    779: 	        } elsif (&Apache::loncommon::keyword($_)) {
1.73      albertel  780: 	            $keywordout.=' checked';
1.67      www       781:                 } 
1.8       www       782:                 $keywordout.='>'.$_.'</td>';
1.7       www       783:                 if ($colcount>10) {
                    784: 		    $keywordout.="</tr><tr>\n";
                    785:                     $colcount=0;
                    786:                 }
1.50      www       787:                 $colcount++;
1.65      harris41  788:             }
1.50      www       789:         
1.51      www       790: 	$keywordout.='</tr></table>';
                    791: 
                    792:         $scrout.=$keywordout;
1.9       www       793: 
1.12      www       794:         $scrout.=&textfield('Additional Keywords','addkey','');
                    795: 
1.10      www       796:         $scrout.=&textfield('Notes','notes',$metadatafields{'notes'});
1.9       www       797: 
                    798:         $scrout.=
                    799:              '<p><b>Abstract:</b><br><textarea cols=80 rows=5 name=abstract>'.
                    800:               $metadatafields{'abstract'}.'</textarea>';
                    801: 
1.11      www       802: 	$source=~/\.(\w+)$/;
                    803: 
                    804: 	$scrout.=&hiddenfield('mime',$1);
                    805: 
1.10      www       806:         $scrout.=&selectbox('Language','language',
1.65      harris41  807:                             $metadatafields{'language'},
1.70      harris41  808: 			    \&Apache::loncommon::languagedescription,
1.65      harris41  809: 			    (&Apache::loncommon::languageids),
                    810: 			     );
1.11      www       811: 
                    812:         unless ($metadatafields{'creationdate'}) {
                    813: 	    $metadatafields{'creationdate'}=time;
                    814:         }
                    815:         $scrout.=&hiddenfield('creationdate',$metadatafields{'creationdate'});
                    816: 
                    817:         $scrout.=&hiddenfield('lastrevisiondate',time);
                    818: 
1.9       www       819: 			   
1.10      www       820: 	$scrout.=&textfield('Publisher/Owner','owner',
                    821:                             $metadatafields{'owner'});
1.45      www       822: # --------------------------------------------------- Correct copyright for rat        
1.84      bowersj2  823: 
1.45      www       824:     if ($style eq 'rat') {
1.65      harris41  825: 	if ($metadatafields{'copyright'} eq 'public') { 
                    826: 	    delete $metadatafields{'copyright'};
                    827: 	}
                    828:         $scrout.=&selectbox('Copyright/Distribution','copyright',
                    829:                             $metadatafields{'copyright'},
1.70      harris41  830: 			    \&Apache::loncommon::copyrightdescription,
1.65      harris41  831: 		     (grep !/^public$/,(&Apache::loncommon::copyrightids)));
                    832:     }
                    833:     else {
1.10      www       834:         $scrout.=&selectbox('Copyright/Distribution','copyright',
1.65      harris41  835:                             $metadatafields{'copyright'},
1.70      harris41  836: 			    \&Apache::loncommon::copyrightdescription,
1.65      harris41  837: 			     (&Apache::loncommon::copyrightids));
                    838:     }
1.84      bowersj2  839: 
                    840:     my $copyright_help = Apache::loncommon::help_open_topic("Publishing_Copyright");
                    841:     $scrout =~ s/DISTRIBUTION:/'DISTRIBUTION: ' . $copyright_help/ge;
1.8       www       842:     return $scrout.
1.63      albertel  843:       '<p><input type="submit" value="Finalize Publication" /></p></form>';
1.2       www       844: }
1.1       www       845: 
1.12      www       846: # -------------------------------------------------------- Publication Step Two
                    847: 
1.11      www       848: sub phasetwo {
                    849: 
1.24      harris41  850:     my ($source,$target,$style,$distarget)=@_;
1.11      www       851:     my $logfile;
                    852:     my $scrout='';
                    853:     unless ($logfile=Apache::File->new('>>'.$source.'.log')) {
                    854: 	return 
                    855:          '<font color=red>No write permission to user directory, FAIL</font>';
                    856:     }
                    857:     print $logfile 
                    858: "\n================= Publish ".localtime()." Phase Two  ================\n";
                    859: 
                    860:      %metadatafields=();
                    861:      %metadatakeys=();
                    862: 
                    863:      &metaeval(&Apache::lonnet::unescape($ENV{'form.allmeta'}));
                    864: 
                    865:      $metadatafields{'title'}=$ENV{'form.title'};
                    866:      $metadatafields{'author'}=$ENV{'form.author'};
                    867:      $metadatafields{'subject'}=$ENV{'form.subject'};
                    868:      $metadatafields{'notes'}=$ENV{'form.notes'};
                    869:      $metadatafields{'abstract'}=$ENV{'form.abstract'};
                    870:      $metadatafields{'mime'}=$ENV{'form.mime'};
                    871:      $metadatafields{'language'}=$ENV{'form.language'};
                    872:      $metadatafields{'creationdate'}=$ENV{'form.creationdate'};
                    873:      $metadatafields{'lastrevisiondate'}=$ENV{'form.lastrevisiondate'};
                    874:      $metadatafields{'owner'}=$ENV{'form.owner'};
                    875:      $metadatafields{'copyright'}=$ENV{'form.copyright'};
1.60      www       876:      $metadatafields{'dependencies'}=$ENV{'form.dependencies'};
1.12      www       877: 
                    878:      my $allkeywords=$ENV{'form.addkey'};
1.79      matthew   879:      if (exists($ENV{'form.keywords'}) && (ref($ENV{'form.keywords'}))) {
1.78      matthew   880:          my @Keywords = @{$ENV{'form.keywords'}};
                    881:          foreach (@Keywords) {
                    882:              $allkeywords.=','.$_;
                    883:          }
1.65      harris41  884:      }
1.12      www       885:      $allkeywords=~s/\W+/\,/;
                    886:      $allkeywords=~s/^\,//;
                    887:      $metadatafields{'keywords'}=$allkeywords;
                    888:  
                    889:      {
                    890:        print $logfile "\nWrite metadata file for ".$source;
                    891:        my $mfh;
                    892:        unless ($mfh=Apache::File->new('>'.$source.'.meta')) {
                    893: 	return 
                    894:          '<font color=red>Could not write metadata, FAIL</font>';
1.65      harris41  895:        }
                    896:        foreach (sort keys %metadatafields) {
1.12      www       897: 	 unless ($_=~/\./) {
                    898:            my $unikey=$_;
                    899:            $unikey=~/^([A-Za-z]+)/;
                    900:            my $tag=$1;
                    901:            $tag=~tr/A-Z/a-z/;
                    902:            print $mfh "\n\<$tag";
1.65      harris41  903:            foreach (split(/\,/,$metadatakeys{$unikey})) {
1.12      www       904:                my $value=$metadatafields{$unikey.'.'.$_};
                    905:                $value=~s/\"/\'\'/g;
                    906:                print $mfh ' '.$_.'="'.$value.'"';
1.65      harris41  907:            }
1.76      albertel  908: 	   print $mfh '>'.
                    909: 	     &HTML::Entities::encode($metadatafields{$unikey})
                    910: 	       .'</'.$tag.'>';
1.12      www       911:          }
1.65      harris41  912:        }
1.12      www       913:        $scrout.='<p>Wrote Metadata';
                    914:        print $logfile "\nWrote metadata";
                    915:      }
                    916: 
1.24      harris41  917: # -------------------------------- Synchronize entry with SQL metadata database
1.89    ! matthew   918:     my $warning;
        !           919:     $metadatafields{'url'} = $distarget;
        !           920:     $metadatafields{'version'} = 'current';
        !           921:     unless ($metadatafields{'copyright'} eq 'priv') {
        !           922:         my ($error,$success) = &store_metadata(\%metadatafields);
        !           923:         if (! $success) {
        !           924:             $scrout.='<p>Synchronized SQL metadata database';
        !           925:             print $logfile "\nSynchronized SQL metadata database";
        !           926:         } else {
        !           927:             $warning.=$error;
        !           928:             print $logfile "\n".$error;
        !           929:         }
        !           930:     } else {
        !           931:         $scrout.='<p>Private Publication - did not synchronize database';
        !           932:         print $logfile "\nPrivate: Did not synchronize data into ".
        !           933:             "SQL metadata database";
1.24      harris41  934:     }
1.12      www       935: # ----------------------------------------------------------- Copy old versions
                    936:    
                    937: if (-e $target) {
                    938:     my $filename;
                    939:     my $maxversion=0;
                    940:     $target=~/(.*)\/([^\/]+)\.(\w+)$/;
                    941:     my $srcf=$2;
                    942:     my $srct=$3;
                    943:     my $srcd=$1;
                    944:     unless ($srcd=~/^\/home\/httpd\/html\/res/) {
                    945: 	print $logfile "\nPANIC: Target dir is ".$srcd;
                    946:         return "<font color=red>Invalid target directory, FAIL</font>";
                    947:     }
                    948:     opendir(DIR,$srcd);
                    949:     while ($filename=readdir(DIR)) {
                    950:        if ($filename=~/$srcf\.(\d+)\.$srct$/) {
                    951: 	   $maxversion=($1>$maxversion)?$1:$maxversion;
                    952:        }
                    953:     }
                    954:     closedir(DIR);
                    955:     $maxversion++;
                    956:     $scrout.='<p>Creating old version '.$maxversion;
                    957:     print $logfile "\nCreating old version ".$maxversion;
                    958: 
                    959:     my $copyfile=$srcd.'/'.$srcf.'.'.$maxversion.'.'.$srct;
                    960: 
1.13      www       961:         if (copy($target,$copyfile)) {
1.12      www       962: 	    print $logfile "Copied old target to ".$copyfile."\n";
                    963:             $scrout.='<p>Copied old target file';
                    964:         } else {
1.13      www       965: 	    print $logfile "Unable to write ".$copyfile.':'.$!."\n";
                    966:            return "<font color=red>Failed to copy old target, $!, FAIL</font>";
1.12      www       967:         }
                    968: 
                    969: # --------------------------------------------------------------- Copy Metadata
                    970: 
                    971: 	$copyfile=$copyfile.'.meta';
1.13      www       972: 
                    973:         if (copy($target.'.meta',$copyfile)) {
1.14      www       974: 	    print $logfile "Copied old target metadata to ".$copyfile."\n";
1.12      www       975:             $scrout.='<p>Copied old metadata';
                    976:         } else {
1.13      www       977: 	    print $logfile "Unable to write metadata ".$copyfile.':'.$!."\n";
1.14      www       978:             if (-e $target.'.meta') {
                    979:                return 
1.13      www       980:        "<font color=red>Failed to write old metadata copy, $!, FAIL</font>";
1.14      www       981: 	    }
1.12      www       982:         }
1.11      www       983: 
                    984: 
1.12      www       985: } else {
                    986:     $scrout.='<p>Initial version';
                    987:     print $logfile "\nInitial version";
                    988: }
                    989: 
                    990: # ---------------------------------------------------------------- Write Source
                    991: 	my $copyfile=$target;
                    992: 
                    993:            my @parts=split(/\//,$copyfile);
                    994:            my $path="/$parts[1]/$parts[2]/$parts[3]/$parts[4]";
                    995: 
                    996:            my $count;
                    997:            for ($count=5;$count<$#parts;$count++) {
                    998:                $path.="/$parts[$count]";
                    999:                if ((-e $path)!=1) {
                   1000:                    print $logfile "\nCreating directory ".$path;
                   1001:                    $scrout.='<p>Created directory '.$parts[$count];
                   1002: 		   mkdir($path,0777);
                   1003:                }
                   1004:            }
                   1005: 
1.13      www      1006:         if (copy($source,$copyfile)) {
1.12      www      1007: 	    print $logfile "Copied original source to ".$copyfile."\n";
                   1008:             $scrout.='<p>Copied source file';
                   1009:         } else {
1.13      www      1010: 	    print $logfile "Unable to write ".$copyfile.':'.$!."\n";
                   1011:             return "<font color=red>Failed to copy source, $!, FAIL</font>";
1.12      www      1012:         }
                   1013: 
                   1014: # --------------------------------------------------------------- Copy Metadata
                   1015: 
1.13      www      1016:         $copyfile=$copyfile.'.meta';
                   1017: 
                   1018:         if (copy($source.'.meta',$copyfile)) {
1.12      www      1019: 	    print $logfile "Copied original metadata to ".$copyfile."\n";
                   1020:             $scrout.='<p>Copied metadata';
                   1021:         } else {
1.13      www      1022: 	    print $logfile "Unable to write metadata ".$copyfile.':'.$!."\n";
1.12      www      1023:             return 
1.13      www      1024:           "<font color=red>Failed to write metadata copy, $!, FAIL</font>";
1.12      www      1025:         }
                   1026: 
                   1027: # --------------------------------------------------- Send update notifications
                   1028: 
1.85      albertel 1029:     my @subscribed=&get_subscribed_hosts($target);
                   1030:     foreach my $subhost (@subscribed) {
                   1031: 	$scrout.='<p>Notifying host '.$subhost.':';
                   1032: 	print $logfile "\nNotifying host ".$subhost.':';
                   1033: 	my $reply=&Apache::lonnet::critical('update:'.$target,$subhost);
                   1034: 	$scrout.=$reply;
                   1035: 	print $logfile $reply;
1.20      www      1036:     }
                   1037: 
                   1038: # ---------------------------------------- Send update notifications, meta only
                   1039: 
1.85      albertel 1040:     my @subscribedmeta=&get_subscribed_hosts("$target.meta");
                   1041:     foreach my $subhost (@subscribedmeta) {
                   1042: 	$scrout.='<p>Notifying host for metadata only '.$subhost.':';
                   1043: 	print $logfile "\nNotifying host for metadata only ".$subhost.':';
                   1044: 	my $reply=&Apache::lonnet::critical('update:'.$target.'.meta',
                   1045: 					    $subhost);
                   1046: 	$scrout.=$reply;
                   1047: 	print $logfile $reply;
1.12      www      1048:     }
                   1049: 
                   1050: # ------------------------------------------------ Provide link to new resource
                   1051: 
                   1052:     my $thisdistarget=$target;
                   1053:     $thisdistarget=~s/^$docroot//;
                   1054: 
1.22      www      1055:     my $thissrc=$source;
                   1056:     $thissrc=~s/^\/home\/(\w+)\/public_html/\/priv\/$1/;
                   1057: 
                   1058:     my $thissrcdir=$thissrc;
                   1059:     $thissrcdir=~s/\/[^\/]+$/\//;
                   1060: 
                   1061: 
1.29      harris41 1062:     return $warning.$scrout.
1.75      matthew  1063:       '<hr><a href="'.$thisdistarget.'"><font size=+2>View Published Version</font></a>'.
1.22      www      1064:       '<p><a href="'.$thissrc.'"><font size=+2>Back to Source</font></a>'.
                   1065:       '<p><a href="'.$thissrcdir.
                   1066:       '"><font size=+2>Back to Source Directory</font></a>';
                   1067: 
1.11      www      1068: }
                   1069: 
1.1       www      1070: # ================================================================ Main Handler
                   1071: 
                   1072: sub handler {
                   1073:   my $r=shift;
1.2       www      1074: 
                   1075:   if ($r->header_only) {
                   1076:      $r->content_type('text/html');
                   1077:      $r->send_http_header;
                   1078:      return OK;
                   1079:   }
                   1080: 
1.43      www      1081: # Get query string for limited number of parameters
                   1082: 
1.80      matthew  1083:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
                   1084:                                             ['filename']);
1.43      www      1085: 
1.2       www      1086: # -------------------------------------------------------------- Check filename
                   1087: 
                   1088:   my $fn=$ENV{'form.filename'};
                   1089: 
1.27      www      1090:   
1.2       www      1091:   unless ($fn) { 
1.27      www      1092:      $r->log_reason($cuname.' at '.$cudom.
1.2       www      1093:          ' trying to publish empty filename', $r->filename); 
                   1094:      return HTTP_NOT_FOUND;
                   1095:   } 
1.4       www      1096: 
1.31      www      1097:   ($cuname,$cudom)=
                   1098:     &Apache::loncacc::constructaccess($fn,$r->dir_config('lonDefDomain'));
                   1099:   unless (($cuname) && ($cudom)) {
1.27      www      1100:      $r->log_reason($cuname.' at '.$cudom.
1.4       www      1101:          ' trying to publish file '.$ENV{'form.filename'}.
1.27      www      1102:          ' ('.$fn.') - not authorized', 
                   1103:          $r->filename); 
                   1104:      return HTTP_NOT_ACCEPTABLE;
                   1105:   }
                   1106: 
                   1107:   unless (&Apache::lonnet::homeserver($cuname,$cudom) 
                   1108:           eq $r->dir_config('lonHostID')) {
                   1109:      $r->log_reason($cuname.' at '.$cudom.
                   1110:          ' trying to publish file '.$ENV{'form.filename'}.
                   1111:          ' ('.$fn.') - not homeserver ('.
                   1112:          &Apache::lonnet::homeserver($cuname,$cudom).')', 
1.4       www      1113:          $r->filename); 
                   1114:      return HTTP_NOT_ACCEPTABLE;
                   1115:   }
1.2       www      1116: 
1.43      www      1117:   $fn=~s/^http\:\/\/[^\/]+//;
                   1118:   $fn=~s/^\/\~(\w+)/\/home\/$1\/public_html/;
1.2       www      1119: 
                   1120:   my $targetdir='';
1.12      www      1121:   $docroot=$r->dir_config('lonDocRoot'); 
1.27      www      1122:   if ($1 ne $cuname) {
                   1123:      $r->log_reason($cuname.' at '.$cudom.
1.2       www      1124:          ' trying to publish unowned file '.$ENV{'form.filename'}.
                   1125:          ' ('.$fn.')', 
                   1126:          $r->filename); 
                   1127:      return HTTP_NOT_ACCEPTABLE;
                   1128:   } else {
1.27      www      1129:       $targetdir=$docroot.'/res/'.$cudom;
1.2       www      1130:   }
                   1131:                                  
                   1132:   
                   1133:   unless (-e $fn) { 
1.27      www      1134:      $r->log_reason($cuname.' at '.$cudom.
1.2       www      1135:          ' trying to publish non-existing file '.$ENV{'form.filename'}.
                   1136:          ' ('.$fn.')', 
                   1137:          $r->filename); 
                   1138:      return HTTP_NOT_FOUND;
                   1139:   } 
                   1140: 
1.11      www      1141: unless ($ENV{'form.phase'} eq 'two') {
                   1142: 
1.2       www      1143: # --------------------------------- File is there and owned, init lookup tables
                   1144: 
1.3       www      1145:   %addid=();
                   1146: 
                   1147:   {
                   1148:       my $fh=Apache::File->new($r->dir_config('lonTabDir').'/addid.tab');
                   1149:       while (<$fh>=~/(\w+)\s+(\w+)/) {
                   1150:           $addid{$1}=$2;
                   1151:       }
1.5       www      1152:   }
                   1153: 
                   1154:   %nokey=();
                   1155: 
                   1156:   {
                   1157:      my $fh=Apache::File->new($r->dir_config('lonIncludes').'/un_keyword.tab');
1.65      harris41 1158:       while (<$fh>) {
1.5       www      1159:           my $word=$_;
                   1160:           chomp($word);
                   1161:           $nokey{$word}=1;
1.65      harris41 1162:       }
1.3       www      1163:   }
1.11      www      1164: 
                   1165: }
                   1166: 
1.2       www      1167: # ----------------------------------------------------------- Start page output
                   1168: 
1.1       www      1169:   $r->content_type('text/html');
                   1170:   $r->send_http_header;
                   1171: 
                   1172:   $r->print('<html><head><title>LON-CAPA Publishing</title></head>');
1.15      www      1173:   $r->print(
                   1174:    '<body bgcolor="#FFFFFF"><img align=right src=/adm/lonIcons/lonlogos.gif>');
1.2       www      1175:   my $thisfn=$fn;
                   1176:    
                   1177: # ------------------------------------------------------------- Individual file
                   1178:   {
                   1179:       $thisfn=~/\.(\w+)$/;
                   1180:       my $thistype=$1;
1.65      harris41 1181:       my $thisembstyle=&Apache::loncommon::fileembstyle($thistype);
1.2       www      1182: 
                   1183:       my $thistarget=$thisfn;
                   1184:       
                   1185:       $thistarget=~s/^\/home/$targetdir/;
                   1186:       $thistarget=~s/\/public\_html//;
                   1187: 
                   1188:       my $thisdistarget=$thistarget;
                   1189:       $thisdistarget=~s/^$docroot//;
                   1190: 
                   1191:       my $thisdisfn=$thisfn;
1.27      www      1192:       $thisdisfn=~s/^\/home\/$cuname\/public_html\///;
1.2       www      1193: 
                   1194:       $r->print('<h2>Publishing '.
1.66      harris41 1195:         &Apache::loncommon::filedescription($thistype).' <tt>'.
1.2       www      1196:         $thisdisfn.'</tt></h2><b>Target:</b> <tt>'.$thisdistarget.'</tt><p>');
1.27      www      1197:    
                   1198:        if (($cuname ne $ENV{'user.name'}) || ($cudom ne $ENV{'user.domain'})) {
                   1199:           $r->print('<h3><font color=red>Co-Author: '.$cuname.' at '.$cudom.
                   1200:                '</font></h3>');
                   1201:       }
1.26      www      1202: 
1.65      harris41 1203:       if (&Apache::loncommon::fileembstyle($thistype) eq 'ssi') {
1.28      www      1204:           $r->print('<br><a href="/adm/diff?filename=/~'.$cuname.'/'.
                   1205:                     $thisdisfn.
1.26      www      1206:   	  '&versionone=priv" target=cat>Diffs with Current Version</a><p>');
                   1207:       }
1.11      www      1208:   
1.2       www      1209: # ------------ We are publishing from $thisfn to $thistarget with $thisembstyle
                   1210: 
1.11      www      1211:        unless ($ENV{'form.phase'} eq 'two') {
1.27      www      1212:          $r->print(
                   1213:           '<hr>'.&publish($thisfn,$thistarget,$thisembstyle));
1.11      www      1214:        } else {
1.27      www      1215:          $r->print(
                   1216:           '<hr>'.&phasetwo($thisfn,$thistarget,$thisembstyle,$thisdistarget)); 
1.11      www      1217:        }  
1.2       www      1218: 
1.11      www      1219:   }
1.1       www      1220:   $r->print('</body></html>');
1.15      www      1221: 
1.1       www      1222:   return OK;
                   1223: }
                   1224: 
                   1225: 1;
                   1226: __END__
                   1227: 
1.89    ! matthew  1228: =pod
1.66      harris41 1229: 
                   1230: =back
                   1231: 
1.89    ! matthew  1232: =cut
1.66      harris41 1233: 

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