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

1.1       www         1: # The LearningOnline Network with CAPA
                      2: # Publication Handler
1.54      albertel    3: #
1.137   ! albertel    4: # $Id: lonpublisher.pm,v 1.136 2003/09/25 20:01:15 www 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.27      www        36: # 05/03,05/05,05/07 Gerd Kortemeyer
1.51      www        37: # 06/23,08/07,08/11,8/13,8/17,8/18,8/24,9/26,10/16 Gerd Kortemeyer
1.58      www        38: # 12/04,12/05 Guy Albertelli
                     39: # 12/05 Gerd Kortemeyer
1.62      www        40: # 12/05 Guy Albertelli
1.64      www        41: # 12/06,12/07 Gerd Kortemeyer
1.67      www        42: # 12/25 Gerd Kortemeyer
1.71      www        43: # YEAR=2002
                     44: # 1/17 Gerd Kortemeyer
1.65      harris41   45: #
                     46: ###
                     47: 
                     48: ###############################################################################
                     49: ##                                                                           ##
                     50: ## ORGANIZATION OF THIS PERL MODULE                                          ##
                     51: ##                                                                           ##
                     52: ## 1. Modules used by this module                                            ##
                     53: ## 2. Various subroutines                                                    ##
                     54: ## 3. Publication Step One                                                   ##
                     55: ## 4. Phase Two                                                              ##
                     56: ## 5. Main Handler                                                           ##
                     57: ##                                                                           ##
                     58: ###############################################################################
1.1       www        59: 
1.90      matthew    60: 
                     61: ######################################################################
                     62: ######################################################################
                     63: 
                     64: =pod 
                     65: 
1.94      harris41   66: =head1 NAME
1.90      matthew    67: 
                     68: lonpublisher - LON-CAPA publishing handler
                     69: 
1.94      harris41   70: =head1 SYNOPSIS
1.90      matthew    71: 
1.94      harris41   72: B<lonpublisher> is used by B<mod_perl> inside B<Apache>.  This is the
                     73: invocation by F<loncapa_apache.conf>:
                     74: 
                     75:   <Location /adm/publish>
                     76:   PerlAccessHandler       Apache::lonacc
                     77:   SetHandler perl-script
                     78:   PerlHandler Apache::lonpublisher
                     79:   ErrorDocument     403 /adm/login
                     80:   ErrorDocument     404 /adm/notfound.html
                     81:   ErrorDocument     406 /adm/unauthorized.html
                     82:   ErrorDocument     500 /adm/errorhandler
                     83:   </Location>
1.127     bowersj2   84: 
                     85: =head1 OVERVIEW
                     86: 
                     87: Authors can only write-access the C</~authorname/> space. They can
                     88: copy resources into the resource area through the publication step,
                     89: and move them back through a recover step. Authors do not have direct
                     90: write-access to their resource space.
                     91: 
                     92: During the publication step, several events will be
                     93: triggered. Metadata is gathered, where a wizard manages default
                     94: entries on a hierarchical per-directory base: The wizard imports the
                     95: metadata (including access privileges and royalty information) from
                     96: the most recent published resource in the current directory, and if
                     97: that is not available, from the next directory above, etc. The Network
                     98: keeps all previous versions of a resource and makes them available by
                     99: an explicit version number, which is inserted between the file name
                    100: and extension, for example C<foo.2.html>, while the most recent
                    101: version does not carry a version number (C<foo.html>). Servers
                    102: subscribing to a changed resource are notified that a new version is
                    103: available.
1.94      harris41  104: 
                    105: =head1 DESCRIPTION
                    106: 
                    107: B<lonpublisher> takes the proper steps to add resources to the LON-CAPA
1.90      matthew   108: digital library.  This includes updating the metadata table in the
                    109: LON-CAPA database.
                    110: 
1.94      harris41  111: B<lonpublisher> is many things to many people.  
1.90      matthew   112: 
                    113: This module publishes a file.  This involves gathering metadata,
                    114: versioning the file, copying file from construction space to
                    115: publication space, and copying metadata from construction space
                    116: to publication space.
                    117: 
1.94      harris41  118: =head2 SUBROUTINES
                    119: 
                    120: Many of the undocumented subroutines implement various magical
                    121: parsing shortcuts.
1.90      matthew   122: 
                    123: =over 4
                    124: 
                    125: =cut
                    126: 
                    127: ######################################################################
                    128: ######################################################################
                    129: 
                    130: 
1.1       www       131: package Apache::lonpublisher;
                    132: 
1.65      harris41  133: # ------------------------------------------------- modules used by this module
1.1       www       134: use strict;
                    135: use Apache::File;
1.13      www       136: use File::Copy;
1.2       www       137: use Apache::Constants qw(:common :http :methods);
1.76      albertel  138: use HTML::LCParser;
1.4       www       139: use Apache::lonxml;
1.27      www       140: use Apache::loncacc;
1.24      harris41  141: use DBI;
1.65      harris41  142: use Apache::lonnet();
                    143: use Apache::loncommon();
1.89      matthew   144: use Apache::lonmysql;
1.134     www       145: use Apache::lonlocal;
1.105     www       146: use vars qw(%metadatafields %metadatakeys);
1.2       www       147: 
1.3       www       148: my %addid;
1.5       www       149: my %nokey;
1.10      www       150: 
1.12      www       151: my $docroot;
                    152: 
1.27      www       153: my $cuname;
                    154: my $cudom;
                    155: 
1.90      matthew   156: =pod
                    157: 
1.94      harris41  158: =item B<metaeval>
                    159: 
                    160: Evaluates a string that contains metadata.  This subroutine
                    161: stores values inside I<%metadatafields> and I<%metadatakeys>.
                    162: The hash key is a I<$unikey> corresponding to a unique id
                    163: that is descriptive of the parser location inside the XML tree.
                    164: 
                    165: Parameters:
                    166: 
                    167: =over 4
1.90      matthew   168: 
1.94      harris41  169: =item I<$metastring>
                    170: 
                    171: A string that contains metadata.
                    172: 
                    173: =back
                    174: 
                    175: Returns:
                    176: 
                    177: nothing
1.90      matthew   178: 
                    179: =cut
                    180: 
                    181: #########################################
                    182: #########################################
1.7       www       183: sub metaeval {
                    184:     my $metastring=shift;
                    185:    
1.76      albertel  186:         my $parser=HTML::LCParser->new(\$metastring);
1.7       www       187:         my $token;
                    188:         while ($token=$parser->get_token) {
                    189:            if ($token->[0] eq 'S') {
                    190: 	      my $entry=$token->[1];
                    191:               my $unikey=$entry;
1.32      www       192:               if (defined($token->[2]->{'package'})) { 
                    193:                   $unikey.='_package_'.$token->[2]->{'package'};
                    194:               } 
1.7       www       195:               if (defined($token->[2]->{'part'})) { 
                    196:                  $unikey.='_'.$token->[2]->{'part'}; 
                    197: 	      }
1.32      www       198:               if (defined($token->[2]->{'id'})) { 
1.49      www       199:                   $unikey.='_'.$token->[2]->{'id'};
1.32      www       200:               } 
1.7       www       201:               if (defined($token->[2]->{'name'})) { 
                    202:                  $unikey.='_'.$token->[2]->{'name'}; 
                    203: 	      }
1.65      harris41  204:               foreach (@{$token->[3]}) {
1.7       www       205: 		  $metadatafields{$unikey.'.'.$_}=$token->[2]->{$_};
                    206:                   if ($metadatakeys{$unikey}) {
                    207: 		      $metadatakeys{$unikey}.=','.$_;
                    208:                   } else {
                    209:                       $metadatakeys{$unikey}=$_;
                    210:                   }
1.65      harris41  211:               }
1.7       www       212:               if ($metadatafields{$unikey}) {
1.8       www       213: 		  my $newentry=$parser->get_text('/'.$entry);
1.122     albertel  214:                   unless (($metadatafields{$unikey}=~/\Q$newentry\E/) ||
1.41      www       215:                           ($newentry eq '')) {
1.8       www       216:                      $metadatafields{$unikey}.=', '.$newentry;
                    217: 		  }
1.7       www       218: 	      } else {
                    219:                  $metadatafields{$unikey}=$parser->get_text('/'.$entry);
                    220:               }
                    221:           }
                    222:        }
                    223: }
                    224: 
1.90      matthew   225: #########################################
                    226: #########################################
                    227: 
                    228: =pod
                    229: 
1.94      harris41  230: =item B<metaread>
1.90      matthew   231: 
                    232: Read a metadata file
                    233: 
1.94      harris41  234: Parameters:
                    235: 
                    236: =over
                    237: 
                    238: =item I<$logfile>
                    239: 
                    240: File output stream to output errors and warnings to.
                    241: 
                    242: =item I<$fn>
                    243: 
                    244: File name (including path).
                    245: 
                    246: =back
                    247: 
                    248: Returns:
                    249: 
                    250: =over 4
                    251: 
                    252: =item Scalar string (if successful)
                    253: 
                    254: XHTML text that indicates successful reading of the metadata.
                    255: 
                    256: =back
                    257: 
1.90      matthew   258: =cut
                    259: 
                    260: #########################################
                    261: #########################################
1.7       www       262: sub metaread {
                    263:     my ($logfile,$fn)=@_;
                    264:     unless (-e $fn) {
1.94      harris41  265: 	print($logfile 'No file '.$fn."\n");
1.120     albertel  266:         return '<br /><b>No file:</b> <tt>'.$fn.'</tt>';
1.7       www       267:     }
1.94      harris41  268:     print($logfile 'Processing '.$fn."\n");
1.7       www       269:     my $metastring;
                    270:     {
                    271:      my $metafh=Apache::File->new($fn);
                    272:      $metastring=join('',<$metafh>);
                    273:     }
                    274:     &metaeval($metastring);
1.120     albertel  275:     return '<br /><b>Processed file:</b> <tt>'.$fn.'</tt>';
1.7       www       276: }
1.12      www       277: 
1.90      matthew   278: #########################################
                    279: #########################################
                    280: 
1.101     www       281: sub coursedependencies {
                    282:     my $url=&Apache::lonnet::declutter(shift);
                    283:     $url=~s/\.meta$//;
                    284:     my ($adomain,$aauthor)=($url=~/^(\w+)\/(\w+)\//);
                    285:     my $regexp=$url;
                    286:     $regexp=~s/(\W)/\\$1/g;
                    287:     $regexp='___'.$regexp.'___course';
                    288:     my %evaldata=&Apache::lonnet::dump('nohist_resevaldata',$adomain,
                    289: 				       $aauthor,$regexp);
                    290:     my %courses=();
                    291:     foreach (keys %evaldata) {
                    292: 	if ($_=~/^([a-zA-Z0-9]+_[a-zA-Z0-9]+)___.+___course$/) {
                    293: 	    $courses{$1}=1;
                    294:         }
                    295:     }
                    296:     return %courses;
                    297: }
                    298: #########################################
                    299: #########################################
                    300: 
                    301: 
1.90      matthew   302: =pod
                    303: 
1.94      harris41  304: =item Form-field-generating subroutines.
                    305: 
                    306: For input parameters, these subroutines take in values
                    307: such as I<$name>, I<$value> and other form field metadata.
                    308: The output (scalar string that is returned) is an XHTML
                    309: string which presents the form field (foreseeably inside
                    310: <form></form> tags).
1.90      matthew   311: 
                    312: =over 4
                    313: 
1.94      harris41  314: =item B<textfield>
1.90      matthew   315: 
1.94      harris41  316: =item B<hiddenfield>
1.90      matthew   317: 
1.94      harris41  318: =item B<selectbox>
1.90      matthew   319: 
                    320: =back
                    321: 
                    322: =cut
                    323: 
                    324: #########################################
                    325: #########################################
1.8       www       326: sub textfield {
1.10      www       327:     my ($title,$name,$value)=@_;
1.134     www       328:     $title=&mt($title);
1.123     albertel  329:     my $uctitle=uc($title);
                    330:     return "\n<p><font color=\"#800000\" face=\"helvetica\"><b>$uctitle:".
                    331:            "</b></font></p><br />".
1.94      harris41  332:            '<input type="text" name="'.$name.'" size=80 value="'.$value.'" />';
1.11      www       333: }
                    334: 
                    335: sub hiddenfield {
                    336:     my ($name,$value)=@_;
1.94      harris41  337:     return "\n".'<input type="hidden" name="'.$name.'" value="'.$value.'" />';
1.8       www       338: }
                    339: 
1.9       www       340: sub selectbox {
1.65      harris41  341:     my ($title,$name,$value,$functionref,@idlist)=@_;
1.134     www       342:     $title=&mt($title);
1.65      harris41  343:     my $uctitle=uc($title);
1.123     albertel  344:     $value=(split(/\s*,\s*/,$value))[-1];
1.65      harris41  345:     my $selout="\n<p><font color=\"#800000\" face=\"helvetica\"><b>$uctitle:".
1.123     albertel  346: 	'</b></font></p><br /><select name="'.$name.'">';
1.65      harris41  347:     foreach (@idlist) {
                    348:         $selout.='<option value=\''.$_.'\'';
                    349:         if ($_ eq $value) {
                    350: 	    $selout.=' selected>'.&{$functionref}($_).'</option>';
                    351: 	}
                    352:         else {$selout.='>'.&{$functionref}($_).'</option>';}
                    353:     }
1.10      www       354:     return $selout.'</select>';
1.9       www       355: }
                    356: 
1.90      matthew   357: #########################################
                    358: #########################################
                    359: 
                    360: =pod
                    361: 
1.94      harris41  362: =item B<urlfixup>
1.90      matthew   363: 
                    364: Fix up a url?  First step of publication
1.12      www       365: 
1.90      matthew   366: =cut
                    367: 
                    368: #########################################
                    369: #########################################
1.34      www       370: sub urlfixup {
1.35      www       371:     my ($url,$target)=@_;
1.39      www       372:     unless ($url) { return ''; }
1.68      albertel  373:     #javascript code needs no fixing
                    374:     if ($url =~ /^javascript:/i) { return $url; }
1.69      albertel  375:     if ($url =~ /^mailto:/i) { return $url; }
1.68      albertel  376:     #internal document links need no fixing
                    377:     if ($url =~ /^\#/) { return $url; } 
1.35      www       378:     my ($host)=($url=~/(?:http\:\/\/)*([^\/]+)/);
1.65      harris41  379:     foreach (values %Apache::lonnet::hostname) {
1.35      www       380: 	if ($_ eq $host) {
                    381: 	    $url=~s/^http\:\/\///;
                    382:             $url=~s/^$host//;
                    383:         }
1.65      harris41  384:     }
1.40      www       385:     if ($url=~/^http\:\/\//) { return $url; }
1.35      www       386:     $url=~s/\~$cuname/res\/$cudom\/$cuname/;
1.71      www       387:     return $url;
                    388: }
                    389: 
1.90      matthew   390: #########################################
                    391: #########################################
                    392: 
                    393: =pod
                    394: 
1.94      harris41  395: =item B<absoluteurl>
1.90      matthew   396: 
1.94      harris41  397: Currently undocumented.
1.90      matthew   398: 
                    399: =cut
1.71      www       400: 
1.90      matthew   401: #########################################
                    402: #########################################
1.71      www       403: sub absoluteurl {
                    404:     my ($url,$target)=@_;
                    405:     unless ($url) { return ''; }
1.35      www       406:     if ($target) {
                    407: 	$target=~s/\/[^\/]+$//;
                    408:        $url=&Apache::lonnet::hreflocation($target,$url);
                    409:     }
                    410:     return $url;
1.34      www       411: }
                    412: 
1.90      matthew   413: #########################################
                    414: #########################################
                    415: 
                    416: =pod
                    417: 
1.94      harris41  418: =item B<set_allow>
1.90      matthew   419: 
                    420: Currently undocumented    
                    421: 
                    422: =cut
                    423: 
                    424: #########################################
                    425: #########################################
1.81      albertel  426: sub set_allow {
                    427:     my ($allow,$logfile,$target,$tag,$oldurl)=@_;
                    428:     my $newurl=&urlfixup($oldurl,$target);
                    429:     my $return_url=$oldurl;
                    430:     print $logfile 'GUYURL: '.$tag.':'.$oldurl.' - '.$newurl."\n";
                    431:     if ($newurl ne $oldurl) {
                    432: 	$return_url=$newurl;
                    433: 	print $logfile 'URL: '.$tag.':'.$oldurl.' - '.$newurl."\n";
                    434:     }
                    435:     if (($newurl !~ /^javascript:/i) &&
                    436: 	($newurl !~ /^mailto:/i) &&
                    437: 	($newurl !~ /^http:/i) &&
                    438: 	($newurl !~ /^\#/)) {
                    439: 	$$allow{&absoluteurl($newurl,$target)}=1;
                    440:     }
                    441:     return $return_url
                    442: }
                    443: 
1.90      matthew   444: #########################################
                    445: #########################################
                    446: 
                    447: =pod
                    448: 
1.94      harris41  449: =item B<get_subscribed_hosts>
1.90      matthew   450: 
                    451: Currently undocumented    
                    452: 
                    453: =cut
                    454: 
                    455: #########################################
                    456: #########################################
1.85      albertel  457: sub get_subscribed_hosts {
                    458:     my ($target)=@_;
                    459:     my @subscribed;
                    460:     my $filename;
                    461:     $target=~/(.*)\/([^\/]+)$/;
                    462:     my $srcf=$2;
                    463:     opendir(DIR,$1);
                    464:     while ($filename=readdir(DIR)) {
1.118     albertel  465: 	if ($filename=~/\Q$srcf\E\.(\w+)$/) {
1.85      albertel  466: 	    my $subhost=$1;
1.98      www       467: 	    if (($subhost ne 'meta' && $subhost ne 'subscription') &&
                    468:                 ($subhost ne $Apache::lonnet::perlvar{'lonHostID'})) {
1.85      albertel  469: 		push(@subscribed,$subhost);
                    470: 	    }
                    471: 	}
                    472:     }
                    473:     closedir(DIR);
                    474:     my $sh;
                    475:     if ( $sh=Apache::File->new("$target.subscription") ) {
                    476: 	&Apache::lonnet::logthis("opened $target.subscription");
                    477: 	while (my $subline=<$sh>) {
                    478: 	    &Apache::lonnet::logthis("Trying $subline");
1.98      www       479: 	    if ($subline =~ /(^\w+):/) { 
                    480:                 if ($1 ne $Apache::lonnet::perlvar{'lonHostID'}) { 
                    481:                    push(@subscribed,$1);
                    482: 	        }
                    483:             } else {
1.85      albertel  484: 		&Apache::lonnet::logthis("No Match for $subline");
                    485: 	    }
                    486: 	}
                    487:     } else {
1.94      harris41  488: 	&Apache::lonnet::logthis("Unable to open $target.subscription");
1.85      albertel  489:     }
                    490:     return @subscribed;
                    491: }
                    492: 
1.86      albertel  493: 
1.90      matthew   494: #########################################
                    495: #########################################
                    496: 
                    497: =pod
                    498: 
1.94      harris41  499: =item B<get_max_ids_indices>
1.90      matthew   500: 
                    501: Currently undocumented    
                    502: 
                    503: =cut
                    504: 
                    505: #########################################
                    506: #########################################
1.86      albertel  507: sub get_max_ids_indices {
                    508:     my ($content)=@_;
                    509:     my $maxindex=10;
                    510:     my $maxid=10;
                    511:     my $needsfixup=0;
1.106     albertel  512:     my $duplicateids=0;
                    513: 
                    514:     my %allids;
                    515:     my %duplicatedids;
1.86      albertel  516: 
                    517:     my $parser=HTML::LCParser->new($content);
                    518:     my $token;
                    519:     while ($token=$parser->get_token) {
                    520: 	if ($token->[0] eq 'S') {
                    521: 	    my $counter;
                    522: 	    if ($counter=$addid{$token->[1]}) {
                    523: 		if ($counter eq 'id') {
                    524: 		    if (defined($token->[2]->{'id'})) {
                    525: 			$maxid=($token->[2]->{'id'}>$maxid)?$token->[2]->{'id'}:$maxid;
1.106     albertel  526: 			if (exists($allids{$token->[2]->{'id'}})) {
                    527: 			    $duplicateids=1;
                    528: 			    $duplicatedids{$token->[2]->{'id'}}=1;
                    529: 			} else {
                    530: 			    $allids{$token->[2]->{'id'}}=1;
                    531: 			}
1.86      albertel  532: 		    } else {
                    533: 			$needsfixup=1;
                    534: 		    }
                    535: 		} else {
                    536: 		    if (defined($token->[2]->{'index'})) {
                    537: 			$maxindex=($token->[2]->{'index'}>$maxindex)?$token->[2]->{'index'}:$maxindex;
                    538: 		    } else {
                    539: 			$needsfixup=1;
                    540: 		    }
                    541: 		}
                    542: 	    }
                    543: 	}
                    544:     }
1.106     albertel  545:     return ($needsfixup,$maxid,$maxindex,$duplicateids,
                    546: 	    (keys(%duplicatedids)));
1.86      albertel  547: }
                    548: 
1.90      matthew   549: #########################################
                    550: #########################################
                    551: 
                    552: =pod
                    553: 
1.94      harris41  554: =item B<get_all_text_unbalanced>
1.90      matthew   555: 
                    556: Currently undocumented    
                    557: 
                    558: =cut
                    559: 
                    560: #########################################
                    561: #########################################
1.87      albertel  562: sub get_all_text_unbalanced {
                    563:     #there is a copy of this in lonxml.pm
                    564:     my($tag,$pars)= @_;
                    565:     my $token;
                    566:     my $result='';
                    567:     $tag='<'.$tag.'>';
                    568:     while ($token = $$pars[-1]->get_token) {
                    569: 	if (($token->[0] eq 'T')||($token->[0] eq 'C')||($token->[0] eq 'D')) {
                    570: 	    $result.=$token->[1];
                    571: 	} elsif ($token->[0] eq 'PI') {
                    572: 	    $result.=$token->[2];
                    573: 	} elsif ($token->[0] eq 'S') {
                    574: 	    $result.=$token->[4];
                    575: 	} elsif ($token->[0] eq 'E')  {
                    576: 	    $result.=$token->[2];
                    577: 	}
1.107     albertel  578: 	if ($result =~ /(.*)\Q$tag\E(.*)/s) {
1.88      albertel  579: 	    #&Apache::lonnet::logthis('Got a winner with leftovers ::'.$2);
                    580: 	    #&Apache::lonnet::logthis('Result is :'.$1);
1.87      albertel  581: 	    $result=$1;
                    582: 	    my $redo=$tag.$2;
                    583: 	    push (@$pars,HTML::LCParser->new(\$redo));
                    584: 	    $$pars[-1]->xml_mode('1');
                    585: 	    last;
                    586: 	}
                    587:     }
                    588:     return $result
                    589: }
                    590: 
1.90      matthew   591: #########################################
                    592: #########################################
                    593: 
                    594: =pod
                    595: 
1.94      harris41  596: =item B<fix_ids_and_indices>
1.90      matthew   597: 
                    598: Currently undocumented    
                    599: 
                    600: =cut
                    601: 
                    602: #########################################
                    603: #########################################
1.87      albertel  604: #Arguably this should all be done as a lonnet::ssi instead
1.86      albertel  605: sub fix_ids_and_indices {
                    606:     my ($logfile,$source,$target)=@_;
                    607: 
                    608:     my %allow;
                    609:     my $content;
                    610:     {
                    611: 	my $org=Apache::File->new($source);
                    612: 	$content=join('',<$org>);
                    613:     }
                    614: 
1.106     albertel  615:     my ($needsfixup,$maxid,$maxindex,$duplicateids,@duplicatedids)=
                    616: 	&get_max_ids_indices(\$content);
1.86      albertel  617: 
1.106     albertel  618:     print $logfile ("Got $needsfixup,$maxid,$maxindex,$duplicateids--".
                    619: 			   join(', ',@duplicatedids));
                    620:     if ($duplicateids) {
                    621: 	print $logfile "Duplicate ID(s) exist, ".join(', ',@duplicatedids)."\n";
                    622: 	my $outstring='<font color="red">Unable to publish file, it contains duplicated ID(s), ID(s) need to be unique. The duplicated ID(s) are: '.join(', ',@duplicatedids).'</font>';
                    623: 	return ($outstring,1);
                    624:     }
1.86      albertel  625:     if ($needsfixup) {
                    626: 	print $logfile "Needs ID and/or index fixup\n".
                    627: 	    "Max ID   : $maxid (min 10)\n".
                    628:                 "Max Index: $maxindex (min 10)\n";
                    629:     }
                    630:     my $outstring='';
                    631:     my @parser;
                    632:     $parser[0]=HTML::LCParser->new(\$content);
                    633:     $parser[-1]->xml_mode(1);
                    634:     my $token;
                    635:     while (@parser) {
                    636: 	while ($token=$parser[-1]->get_token) {
                    637: 	    if ($token->[0] eq 'S') {
                    638: 		my $counter;
                    639: 		my $tag=$token->[1];
                    640: 		my $lctag=lc($tag);
                    641: 		if ($lctag eq 'allow') {
                    642: 		    $allow{$token->[2]->{'src'}}=1;
                    643: 		    next;
                    644: 		}
                    645: 		my %parms=%{$token->[2]};
                    646: 		$counter=$addid{$tag};
                    647: 		if (!$counter) { $counter=$addid{$lctag}; }
                    648: 		if ($counter) {
                    649: 		    if ($counter eq 'id') {
                    650: 			unless (defined($parms{'id'})) {
                    651: 			    $maxid++;
                    652: 			    $parms{'id'}=$maxid;
                    653: 			    print $logfile 'ID: '.$tag.':'.$maxid."\n";
                    654: 			}
                    655: 		    } elsif ($counter eq 'index') {
                    656: 			unless (defined($parms{'index'})) {
                    657: 			    $maxindex++;
                    658: 			    $parms{'index'}=$maxindex;
                    659: 			    print $logfile 'Index: '.$tag.':'.$maxindex."\n";
                    660: 			}
                    661: 		    }
                    662: 		}
                    663: 		foreach my $type ('src','href','background','bgimg') {
                    664: 		    foreach my $key (keys(%parms)) {
                    665: 			if ($key =~ /^$type$/i) {
                    666: 			    $parms{$key}=&set_allow(\%allow,$logfile,
                    667: 						    $target,$tag,
                    668: 						    $parms{$key});
                    669: 			}
                    670: 		    }
                    671: 		}
                    672: 		# probably a <randomlabel> image type <label>
1.135     albertel  673: 		# or a <image> tag inside <imageresponse>
                    674: 		if (($lctag eq 'label' && defined($parms{'description'}))
                    675: 		    ||
                    676: 		    ($lctag eq 'image')) {
1.86      albertel  677: 		    my $next_token=$parser[-1]->get_token();
                    678: 		    if ($next_token->[0] eq 'T') {
                    679: 			$next_token->[1]=&set_allow(\%allow,$logfile,
                    680: 						    $target,$tag,
                    681: 						    $next_token->[1]);
                    682: 		    }
                    683: 		    $parser[-1]->unget_token($next_token);
                    684: 		}
                    685: 		if ($lctag eq 'applet') {
                    686: 		    my $codebase='';
                    687: 		    if (defined($parms{'codebase'})) {
                    688: 			my $oldcodebase=$parms{'codebase'};
                    689: 			unless ($oldcodebase=~/\/$/) {
                    690: 			    $oldcodebase.='/';
                    691: 			}
                    692: 			$codebase=&urlfixup($oldcodebase,$target);
                    693: 			$codebase=~s/\/$//;    
                    694: 			if ($codebase ne $oldcodebase) {
                    695: 			    $parms{'codebase'}=$codebase;
                    696: 			    print $logfile 'URL codebase: '.$tag.':'.
                    697: 				$oldcodebase.' - '.
                    698: 				    $codebase."\n";
                    699: 			}
                    700: 			$allow{&absoluteurl($codebase,$target).'/*'}=1;
                    701: 		    } else {
                    702: 			foreach ('archive','code','object') {
                    703: 			    if (defined($parms{$_})) {
                    704: 				my $oldurl=$parms{$_};
                    705: 				my $newurl=&urlfixup($oldurl,$target);
                    706: 				$newurl=~s/\/[^\/]+$/\/\*/;
                    707: 				print $logfile 'Allow: applet '.$_.':'.
                    708: 				    $oldurl.' allows '.
                    709: 					$newurl."\n";
                    710: 				$allow{&absoluteurl($newurl,$target)}=1;
                    711: 			    }
                    712: 			}
                    713: 		    }
                    714: 		}
                    715: 		my $newparmstring='';
                    716: 		my $endtag='';
                    717: 		foreach (keys %parms) {
                    718: 		    if ($_ eq '/') {
                    719: 			$endtag=' /';
                    720: 		    } else { 
                    721: 			my $quote=($parms{$_}=~/\"/?"'":'"');
                    722: 			$newparmstring.=' '.$_.'='.$quote.$parms{$_}.$quote;
                    723: 		    }
                    724: 		}
                    725: 		if (!$endtag) { if ($token->[4]=~m:/>$:) { $endtag=' /'; }; }
                    726: 		$outstring.='<'.$tag.$newparmstring.$endtag.'>';
1.130     albertel  727: 		if ($lctag eq 'm' || $lctag eq 'script' 
1.131     albertel  728:                     || $lctag eq 'display' || $lctag eq 'tex') {
1.130     albertel  729: 		    $outstring.=&get_all_text_unbalanced('/'.$lctag,\@parser);
1.87      albertel  730: 		}
1.86      albertel  731: 	    } elsif ($token->[0] eq 'E') {
                    732: 		if ($token->[2]) {
                    733: 		    unless ($token->[1] eq 'allow') {
                    734: 			$outstring.='</'.$token->[1].'>';
                    735: 		    }
                    736: 		}
                    737: 	    } else {
                    738: 		$outstring.=$token->[1];
                    739: 	    }
                    740: 	}
                    741: 	pop(@parser);
                    742:     }
                    743: 
                    744:     if ($needsfixup) {
                    745: 	print $logfile "End of ID and/or index fixup\n".
                    746: 	    "Max ID   : $maxid (min 10)\n".
                    747: 		"Max Index: $maxindex (min 10)\n";
                    748:     } else {
                    749: 	print $logfile "Does not need ID and/or index fixup\n";
                    750:     }
                    751: 
1.106     albertel  752:     return ($outstring,0,%allow);
1.86      albertel  753: }
                    754: 
1.89      matthew   755: #########################################
                    756: #########################################
                    757: 
                    758: =pod
                    759: 
1.94      harris41  760: =item B<store_metadata>
1.89      matthew   761: 
                    762: Store the metadata in the metadata table in the loncapa database.
                    763: Uses lonmysql to access the database.
                    764: 
                    765: Inputs: \%metadata
                    766: 
                    767: Returns: (error,status).  error is undef on success, status is undef on error.
                    768: 
                    769: =cut
                    770: 
                    771: #########################################
                    772: #########################################
                    773: sub store_metadata {
                    774:     my %metadata = %{shift()};
                    775:     my $error;
                    776:     # Determine if the table exists
                    777:     my $status = &Apache::lonmysql::check_table('metadata');
                    778:     if (! defined($status)) {
                    779:         $error='<font color="red">WARNING: Cannot connect to '.
                    780:             'database!</font>';
                    781:         &Apache::lonnet::logthis($error);
                    782:         return ($error,undef);
                    783:     }
                    784:     if ($status == 0) {
                    785:         # It would be nice to actually create the table....
                    786:         $error ='<font color="red">WARNING: The metadata table does not '.
                    787:             'exist in the LON-CAPA database.</font>';
                    788:         &Apache::lonnet::logthis($error);
                    789:         return ($error,undef);
                    790:     }
                    791:     # Remove old value from table
                    792:     $status = &Apache::lonmysql::remove_from_table
                    793:         ('metadata','url',$metadata{'url'});
                    794:     if (! defined($status)) {
                    795:         $error = '<font color="red">Error when removing old values from '.
                    796:             'metadata table in LON-CAPA database.</font>';
                    797:         &Apache::lonnet::logthis($error);
                    798:         return ($error,undef);
                    799:     }
                    800:     # Store data in table.
                    801:     $status = &Apache::lonmysql::store_row('metadata',\%metadata);
                    802:     if (! defined($status)) {
                    803:         $error='<font color="red">Error occured storing new values in '.
                    804:             'metadata table in LON-CAPA database</font>';
                    805:         &Apache::lonnet::logthis($error);
                    806:         return ($error,undef);
                    807:     }
                    808:     return (undef,$status);
                    809: }
                    810: 
1.90      matthew   811: #########################################
                    812: #########################################
                    813: 
                    814: =pod
                    815: 
1.94      harris41  816: =item B<publish>
                    817: 
                    818: This is the workhorse function of this module.  This subroutine generates
                    819: backup copies, performs any automatic processing (prior to publication,
                    820: especially for rat and ssi files),
1.90      matthew   821: 
1.113     albertel  822: Returns a 2 element array, the first is the string to be shown to the
                    823: user, the second is an error code, either 1 (an error occured) or 0
                    824: (no error occurred)
                    825: 
1.94      harris41  826: I<Additional documentation needed.>
1.90      matthew   827: 
                    828: =cut
                    829: 
                    830: #########################################
                    831: #########################################
1.2       www       832: sub publish {
1.50      www       833: 
1.97      www       834:     my ($source,$target,$style,$batch)=@_;
1.2       www       835:     my $logfile;
1.4       www       836:     my $scrout='';
1.23      www       837:     my $allmeta='';
                    838:     my $content='';
1.36      www       839:     my %allow=();
1.4       www       840: 
1.2       www       841:     unless ($logfile=Apache::File->new('>>'.$source.'.log')) {
1.114     albertel  842: 	return ('<font color="red">No write permission to user directory, FAIL</font>',1);
1.2       www       843:     }
                    844:     print $logfile 
1.125     www       845: "\n\n================= Publish ".localtime()." Phase One  ================\n".$ENV{'user.name'}.'@'.$ENV{'user.domain'}."\n";
1.2       www       846: 
1.119     www       847:     if (($style eq 'ssi') || ($style eq 'rat') || ($style eq 'prv')) {
1.3       www       848: # ------------------------------------------------------- This needs processing
1.4       www       849: 
                    850: # ----------------------------------------------------------------- Backup Copy
1.3       www       851: 	my $copyfile=$source.'.save';
1.13      www       852:         if (copy($source,$copyfile)) {
1.3       www       853: 	    print $logfile "Copied original file to ".$copyfile."\n";
                    854:         } else {
1.13      www       855: 	    print $logfile "Unable to write backup ".$copyfile.':'.$!."\n";
1.114     albertel  856: 	    return ("<font color=\"red\">Failed to write backup copy, $!,FAIL</font>",1);
1.3       www       857:         }
1.4       www       858: # ------------------------------------------------------------- IDs and indices
1.86      albertel  859: 	
1.106     albertel  860: 	my ($outstring,$error);
                    861: 	($outstring,$error,%allow)=&fix_ids_and_indices($logfile,$source,
                    862: 							$target);
1.113     albertel  863: 	if ($error) { return ($outstring,$error); }
1.36      www       864: # ------------------------------------------------------------ Construct Allows
1.62      www       865:     
1.44      www       866: 	$scrout.='<h3>Dependencies</h3>';
1.62      www       867:         my $allowstr='';
1.73      albertel  868:         foreach (sort(keys(%allow))) {
1.59      www       869: 	   my $thisdep=$_;
1.73      albertel  870: 	   if ($thisdep !~ /[^\s]/) { next; }
1.62      www       871:            unless ($style eq 'rat') { 
                    872:               $allowstr.="\n".'<allow src="'.$thisdep.'" />';
                    873: 	   }
1.120     albertel  874:            $scrout.='<br />';
1.59      www       875:            unless ($thisdep=~/\*/) {
                    876: 	       $scrout.='<a href="'.$thisdep.'">';
1.44      www       877:            }
1.59      www       878:            $scrout.='<tt>'.$thisdep.'</tt>';
                    879:            unless ($thisdep=~/\*/) {
1.44      www       880: 	       $scrout.='</a>';
1.59      www       881:                if (
                    882:        &Apache::lonnet::getfile($Apache::lonnet::perlvar{'lonDocRoot'}.'/'.
                    883:                                             $thisdep.'.meta') eq '-1') {
1.94      harris41  884: 		   $scrout.= ' - <font color="red">Currently not available'.
                    885: 		       '</font>';
1.59      www       886:                } else {
                    887:                    my %temphash=(&Apache::lonnet::declutter($target).'___'.
                    888:                              &Apache::lonnet::declutter($thisdep).'___usage'
                    889:                                  => time);
                    890:                    $thisdep=~/^\/res\/(\w+)\/(\w+)\//;
                    891:                    if ((defined($1)) && (defined($2))) {
1.92      albertel  892:                       &Apache::lonnet::put('nohist_resevaldata',\%temphash,
                    893: 					   $1,$2);
1.59      www       894: 		   }
                    895: 	       }
1.44      www       896:            }
1.65      harris41  897:         }
1.83      www       898:         $outstring=~s/\n*(\<\/[^\>]+\>)\s*$/$allowstr\n$1\n/s;
1.62      www       899: 
1.136     www       900: ### FIXME: is this really what we want?
1.137   ! albertel  901: # I dont' think so, to will corrupt any UTF-8 resources at least, 
        !           902: # and any encoding other than ISO-8859-1 will probably break
1.76      albertel  903: 	#Encode any High ASCII characters
1.137   ! albertel  904: 	#$outstring=&HTML::Entities::encode($outstring,"\200-\377");
1.94      harris41  905: # ------------------------------------------------------------- Write modified.
1.37      www       906: 
1.4       www       907:         {
                    908:           my $org;
                    909:           unless ($org=Apache::File->new('>'.$source)) {
                    910:              print $logfile "No write permit to $source\n";
1.136     www       911:              return ('<font color="red">'.&mt('No write permission to').
                    912: 		     ' '.$source.
                    913: 		     ', '.&mt('FAIL').'</font>',1);
1.4       www       914: 	  }
1.94      harris41  915:           print($org $outstring);
1.4       www       916:         }
                    917: 	  $content=$outstring;
1.34      www       918: 
1.37      www       919:     }
1.94      harris41  920: # -------------------------------------------- Initial step done, now metadata.
1.7       www       921: 
1.94      harris41  922: # --------------------------------------- Storage for metadata keys and fields.
1.7       www       923: 
1.8       www       924:      %metadatafields=();
                    925:      %metadatakeys=();
                    926:      
                    927:      my %oldparmstores=();
1.44      www       928:      
1.97      www       929:     unless ($batch) {
1.136     www       930:      $scrout.='<h3>'.&mt('Metadata Information').' ' .
1.84      bowersj2  931:        Apache::loncommon::help_open_topic("Metadata_Description")
                    932:        . '</h3>';
1.97      www       933:     }
1.7       www       934: 
                    935: # ------------------------------------------------ First, check out environment
1.8       www       936:      unless (-e $source.'.meta') {
1.7       www       937:         $metadatafields{'author'}=$ENV{'environment.firstname'}.' '.
                    938: 	                          $ENV{'environment.middlename'}.' '.
                    939: 		                  $ENV{'environment.lastname'}.' '.
                    940: 		                  $ENV{'environment.generation'};
1.8       www       941:         $metadatafields{'author'}=~s/\s+/ /g;
                    942:         $metadatafields{'author'}=~s/\s+$//;
1.27      www       943:         $metadatafields{'owner'}=$cuname.'@'.$cudom;
1.125     www       944: 	$metadatafields{'modifyinguser'}=$ENV{'user.name'}.'@'.
                    945: 	                                 $ENV{'user.domain'};
                    946: 	$metadatafields{'authorspace'}=$cuname.'@'.$cudom;
1.7       www       947: 
                    948: # ------------------------------------------------ Check out directory hierachy
                    949: 
                    950:         my $thisdisfn=$source;
1.122     albertel  951:         $thisdisfn=~s/^\/home\/\Q$cuname\E\///;
1.7       www       952: 
                    953:         my @urlparts=split(/\//,$thisdisfn);
                    954:         $#urlparts--;
                    955: 
1.27      www       956:         my $currentpath='/home/'.$cuname.'/';
1.7       www       957: 
1.65      harris41  958:         foreach (@urlparts) {
1.7       www       959: 	    $currentpath.=$_.'/';
                    960:             $scrout.=&metaread($logfile,$currentpath.'default.meta');
1.65      harris41  961:         }
1.7       www       962: 
                    963: # ------------------- Clear out parameters and stores (there should not be any)
                    964: 
1.65      harris41  965:         foreach (keys %metadatafields) {
1.7       www       966: 	    if (($_=~/^parameter/) || ($_=~/^stores/)) {
                    967: 		delete $metadatafields{$_};
                    968:             }
1.65      harris41  969:         }
1.7       www       970: 
1.8       www       971:     } else {
1.7       www       972: # ---------------------- Read previous metafile, remember parameters and stores
                    973: 
                    974:         $scrout.=&metaread($logfile,$source.'.meta');
                    975: 
1.65      harris41  976:         foreach (keys %metadatafields) {
1.7       www       977: 	    if (($_=~/^parameter/) || ($_=~/^stores/)) {
                    978:                 $oldparmstores{$_}=1;
                    979: 		delete $metadatafields{$_};
                    980:             }
1.65      harris41  981:         }
1.7       www       982:         
1.8       www       983:     }
1.7       www       984: 
1.4       www       985: # -------------------------------------------------- Parse content for metadata
1.119     www       986:     if (($style eq 'ssi') || ($style eq 'prv')) {
1.133     albertel  987: 	my $dir=$source;
                    988: 	$dir=~s-/[^/]*$--;
                    989: 	my $file=$source;
                    990: 	$file=(split('/',$file))[-1];
                    991:         $source=&Apache::lonnet::hreflocation($dir,$file);
                    992: 	$allmeta=&Apache::lonnet::ssi_body($source,('grade_target' => 'meta'));
1.32      www       993: 
1.19      albertel  994:         &metaeval($allmeta);
1.37      www       995:     }
1.7       www       996: # ---------------- Find and document discrepancies in the parameters and stores
                    997: 
1.116     albertel  998:     my $chparms='';
                    999:     foreach (sort keys %metadatafields) {
                   1000: 	if (($_=~/^parameter/) || ($_=~/^stores/)) {
                   1001: 	    unless ($_=~/\.\w+$/) { 
                   1002: 		unless ($oldparmstores{$_}) {
                   1003: 		    print $logfile 'New: '.$_."\n";
                   1004: 		    $chparms.=$_.' ';
                   1005: 		}
                   1006: 	    }
                   1007: 	}
                   1008:     }
                   1009:     if ($chparms) {
1.136     www      1010: 	$scrout.='<p><b>'.&mt('New parameters or stored values').
                   1011: 	    ':</b> '.$chparms.'</p>';
1.116     albertel 1012:     }
1.7       www      1013: 
1.116     albertel 1014:     $chparms='';
                   1015:     foreach (sort keys %oldparmstores) {
                   1016: 	if (($_=~/^parameter/) || ($_=~/^stores/)) {
                   1017: 	    unless (($metadatafields{$_.'.name'}) ||
                   1018: 		    ($metadatafields{$_.'.package'}) || ($_=~/\.\w+$/)) {
                   1019: 		print $logfile 'Obsolete: '.$_."\n";
                   1020: 		$chparms.=$_.' ';
                   1021: 	    }
                   1022: 	}
                   1023:     }
                   1024:     if ($chparms) {
1.136     www      1025: 	$scrout.='<p><b>'.&mt('Obsolete parameters or stored values').':</b> '.
1.120     albertel 1026: 	    $chparms.'</p>';
1.116     albertel 1027:     }
1.37      www      1028: 
1.8       www      1029: # ------------------------------------------------------- Now have all metadata
1.5       www      1030: 
1.116     albertel 1031:     my %keywords=();
1.97      www      1032:         
1.116     albertel 1033:     if (length($content)<500000) {
                   1034: 	my $textonly=$content;
                   1035: 	$textonly=~s/\<script[^\<]+\<\/script\>//g;
                   1036: 	$textonly=~s/\<m\>[^\<]+\<\/m\>//g;
                   1037: 	$textonly=~s/\<[^\>]*\>//g;
                   1038: 	$textonly=~tr/A-Z/a-z/;
                   1039: 	$textonly=~s/[\$\&][a-z]\w*//g;
                   1040: 	$textonly=~s/[^a-z\s]//g;
                   1041: 	
                   1042: 	foreach ($textonly=~m/(\w+)/g) {
                   1043: 	    unless ($nokey{$_}) {
                   1044: 		$keywords{$_}=1;
                   1045: 	    } 
                   1046: 	}
                   1047:     }
1.97      www      1048: 
                   1049:             
1.116     albertel 1050:     foreach (split(/\W+/,$metadatafields{'keywords'})) {
                   1051: 	$keywords{$_}=1;
                   1052:     }
1.97      www      1053: # --------------------------------------------------- Now we also have keywords
                   1054: # =============================================================================
                   1055: # INTERACTIVE MODE
                   1056: #
1.116     albertel 1057:     unless ($batch) {
1.8       www      1058:         $scrout.=
1.116     albertel 1059: 	    '<form name="pubform" action="/adm/publish" method="post">'.
                   1060:             '<p><input type="submit" value="Finalize Publication" /></p>'.
                   1061:             &hiddenfield('phase','two').
                   1062:             &hiddenfield('filename',$ENV{'form.filename'}).
                   1063: 	    &hiddenfield('allmeta',&Apache::lonnet::escape($allmeta)).
                   1064:             &hiddenfield('dependencies',join(',',keys %allow)).
                   1065:             &textfield('Title','title',$metadatafields{'title'}).
                   1066:             &textfield('Author(s)','author',$metadatafields{'author'}).
                   1067: 	    &textfield('Subject','subject',$metadatafields{'subject'});
1.5       www      1068: 
                   1069: # --------------------------------------------------- Scan content for keywords
1.7       www      1070: 
1.84      bowersj2 1071:         my $keywords_help = Apache::loncommon::help_open_topic("Publishing_Keywords");
1.77      matthew  1072: 	my $keywordout=<<"END";
                   1073: <script>
1.116     albertel 1074: function checkAll(field) {
1.77      matthew  1075:     for (i = 0; i < field.length; i++)
                   1076:         field[i].checked = true ;
                   1077: }
                   1078: 
1.116     albertel 1079: function uncheckAll(field) {
1.77      matthew  1080:     for (i = 0; i < field.length; i++)
                   1081:         field[i].checked = false ;
                   1082: }
                   1083: </script>
1.123     albertel 1084: <p><font color="#800000" face="helvetica"><b>KEYWORDS:</b></font>
                   1085:  $keywords_help</b>
1.120     albertel 1086: <input type="button" value="check all" onclick="javascript:checkAll(document.pubform.keywords)" /> 
                   1087: <input type="button" value="uncheck all" onclick="javascript:uncheckAll(document.pubform.keywords)" /> 
                   1088: </p>
1.77      matthew  1089: <br />
1.117     albertel 1090: END
1.120     albertel 1091: 	$keywordout.='<table border="2"><tr>';
1.116     albertel 1092: 	my $colcount=0;
                   1093: 
                   1094: 	foreach (sort keys %keywords) {
1.120     albertel 1095: 	    $keywordout.='<td><input type="checkbox" name="keywords" value="'.$_.'"';
1.116     albertel 1096: 	    if ($metadatafields{'keywords'}) {
1.122     albertel 1097: 		if ($metadatafields{'keywords'}=~/\Q$_\E/) {
1.120     albertel 1098: 		    $keywordout.=' checked="on"';
1.116     albertel 1099: 		}
                   1100: 	    } elsif (&Apache::loncommon::keyword($_)) {
1.120     albertel 1101: 		$keywordout.=' checked="on"';
1.116     albertel 1102: 	    }
1.120     albertel 1103: 	    $keywordout.=' />'.$_.'</td>';
1.116     albertel 1104: 	    if ($colcount>10) {
                   1105: 		$keywordout.="</tr><tr>\n";
                   1106: 		$colcount=0;
                   1107: 	    }
                   1108: 	    $colcount++;
                   1109: 	}
                   1110: 
1.51      www      1111: 	$keywordout.='</tr></table>';
                   1112: 
1.116     albertel 1113: 	$scrout.=$keywordout;
1.9       www      1114: 
1.116     albertel 1115: 	$scrout.=&textfield('Additional Keywords','addkey','');
1.12      www      1116: 
1.116     albertel 1117: 	$scrout.=&textfield('Notes','notes',$metadatafields{'notes'});
1.9       www      1118: 
1.116     albertel 1119: 	$scrout.=
1.123     albertel 1120: 	    "\n<p><font color=\"#800000\" face=\"helvetica\"><b>ABSTRACT:".
                   1121: 	    "</b></font></p><br />".
                   1122: 	    '<textarea cols="80" rows="5" name="abstract">'.
1.120     albertel 1123: 	    $metadatafields{'abstract'}.'</textarea></p>';
1.9       www      1124: 
1.11      www      1125: 	$source=~/\.(\w+)$/;
                   1126: 
                   1127: 	$scrout.=&hiddenfield('mime',$1);
                   1128: 
1.123     albertel 1129: 	my $defaultlanguage=$metadatafields{'language'};
                   1130: 	$defaultlanguage =~ s/\s*notset\s*//g;
                   1131: 	$defaultlanguage =~ s/^,\s*//g;
                   1132: 	$defaultlanguage =~ s/,\s*$//g;
                   1133: 
1.116     albertel 1134: 	$scrout.=&selectbox('Language','language',
1.123     albertel 1135: 			    $defaultlanguage,
1.70      harris41 1136: 			    \&Apache::loncommon::languagedescription,
1.65      harris41 1137: 			    (&Apache::loncommon::languageids),
1.116     albertel 1138: 			   );
1.11      www      1139: 
1.116     albertel 1140: 	unless ($metadatafields{'creationdate'}) {
1.11      www      1141: 	    $metadatafields{'creationdate'}=time;
1.116     albertel 1142: 	}
                   1143: 	$scrout.=&hiddenfield('creationdate',
                   1144: 			      &Apache::loncommon::unsqltime($metadatafields{'creationdate'}));
                   1145: 
                   1146: 	$scrout.=&hiddenfield('lastrevisiondate',time);
1.11      www      1147: 
                   1148: 
1.10      www      1149: 	$scrout.=&textfield('Publisher/Owner','owner',
1.116     albertel 1150: 			    $metadatafields{'owner'});
1.84      bowersj2 1151: 
1.94      harris41 1152: # -------------------------------------------------- Correct copyright for rat.
1.121     www      1153:         my $defaultoption=$metadatafields{'copyright'};
                   1154:         unless ($defaultoption) { $defaultoption='default'; }
1.116     albertel 1155: 	unless ($style eq 'prv') {
                   1156: 	    if ($style eq 'rat') {
                   1157: 		if ($metadatafields{'copyright'} eq 'public') { 
                   1158: 		    delete $metadatafields{'copyright'};
1.121     www      1159:                     $defaultoption='default';
1.116     albertel 1160: 		}
                   1161: 		$scrout.=&selectbox('Copyright/Distribution','copyright',
1.121     www      1162: 				    $defaultoption,
1.116     albertel 1163: 				    \&Apache::loncommon::copyrightdescription,
                   1164: 				    (grep !/^public$/,(&Apache::loncommon::copyrightids)));
                   1165: 	    } else {
                   1166: 		$scrout.=&selectbox('Copyright/Distribution','copyright',
1.121     www      1167: 				    $defaultoption,
1.116     albertel 1168: 				    \&Apache::loncommon::copyrightdescription,
                   1169: 				    (&Apache::loncommon::copyrightids));
                   1170: 	    }
                   1171:     
                   1172: 	    my $copyright_help =
                   1173: 		Apache::loncommon::help_open_topic('Publishing_Copyright');
                   1174: 	    $scrout =~ s/DISTRIBUTION:/'DISTRIBUTION: ' . $copyright_help/ge;
                   1175: 	    $scrout.=&textfield('Custom Distribution File','customdistributionfile',
                   1176: 				$metadatafields{'customdistributionfile'}).
                   1177: 				    $copyright_help;
1.136     www      1178: 	    my $uctitle=uc(&mt('Obsolete'));
                   1179:             $scrout.=
                   1180: 		"\n<p><font color=\"#800000\" face=\"helvetica\"><b>$uctitle:".
                   1181: 		'</b></font> <input type="checkbox" name="obsolete" ';
                   1182: 	    if ($metadatafields{'obsolete'}) {
                   1183: 		$scrout.=' checked="1" ';
                   1184: 	    }
                   1185: 	    $scrout.='/ ></p>'.
                   1186: 		&textfield('Suggested Replacement for Obsolete File',
                   1187: 				    'obsoletereplacement',
                   1188: 				    $metadatafields{'obsoletereplacement'});
1.116     albertel 1189: 	} else {
                   1190: 	    $scrout.=&hiddenfield('copyright','private');
1.65      harris41 1191: 	}
1.136     www      1192: 	return ($scrout.'<p><input type="submit" value="'.
                   1193: 		&mt('Finalize Publication').'" /></p></form>',0);
1.97      www      1194: # =============================================================================
                   1195: # BATCH MODE
                   1196: #
1.116     albertel 1197:     } else {
1.97      www      1198: # Transfer metadata directly to environment for stage 2
1.116     albertel 1199: 	foreach (keys %metadatafields) {
                   1200: 	    $ENV{'form.'.$_}=$metadatafields{$_};
                   1201: 	}
                   1202: 	$ENV{'form.addkey'}='';
                   1203: 	$ENV{'form.keywords'}='';
                   1204: 	foreach (keys %keywords) {
                   1205: 	    if ($metadatafields{'keywords'}) {
1.122     albertel 1206: 		if ($metadatafields{'keywords'}=~/\Q$_\E/) { 
1.116     albertel 1207: 		    $ENV{'form.keywords'}.=$_.','; 
                   1208: 		}
                   1209: 	    } elsif (&Apache::loncommon::keyword($_)) {
                   1210: 		$ENV{'form.keywords'}.=$_.',';
                   1211: 	    }
                   1212: 	}
                   1213: 	$ENV{'form.keywords'}=~s/\,$//;
                   1214: 	unless ($ENV{'form.creationdate'}) { $ENV{'form.creationdate'}=time; }
                   1215: 	$ENV{'form.lastrevisiondate'}=time;
                   1216: 	if ((($style eq 'rat') && ($ENV{'form.copyright'} eq 'public')) ||
                   1217: 	    (!$ENV{'form.copyright'})) { 
                   1218: 	    $ENV{'form.copyright'}='default';
                   1219: 	}
                   1220: 	$ENV{'form.allmeta'}=&Apache::lonnet::escape($allmeta);
                   1221: 	return ($scrout,0);
1.97      www      1222:     }
1.2       www      1223: }
1.1       www      1224: 
1.90      matthew  1225: #########################################
                   1226: #########################################
                   1227: 
                   1228: =pod 
                   1229: 
1.94      harris41 1230: =item B<phasetwo>
1.90      matthew  1231: 
                   1232: Render second interface showing status of publication steps.
                   1233: This is publication step two.
                   1234: 
1.94      harris41 1235: Parameters:
                   1236: 
                   1237: =over 4
                   1238: 
                   1239: =item I<$source>
                   1240: 
                   1241: =item I<$target>
                   1242: 
                   1243: =item I<$style>
                   1244: 
                   1245: =item I<$distarget>
                   1246: 
                   1247: =back
                   1248: 
                   1249: Returns:
                   1250: 
                   1251: =over 4
                   1252: 
                   1253: =item Scalar string
                   1254: 
                   1255: String contains status (errors and warnings) and information associated with
1.100     matthew  1256: the server's attempts at publication.     
1.94      harris41 1257: 
1.90      matthew  1258: =cut
1.12      www      1259: 
1.100     matthew  1260: #'stupid emacs
1.90      matthew  1261: #########################################
                   1262: #########################################
1.11      www      1263: sub phasetwo {
                   1264: 
1.100     matthew  1265:     my ($r,$source,$target,$style,$distarget,$batch)=@_;
1.102     www      1266:     $source=~s/\/+/\//g;
                   1267:     $target=~s/\/+/\//g;
1.109     www      1268: 
                   1269:     if ($target=~/\_\_\_/) {
1.110     www      1270: 	$r->print(
1.136     www      1271:  '<font color="red">'.&mt('Unsupported character combination').
                   1272: 		  ' "<tt>___</tt>" '.&mt('in filename, FAIL').'</font>');
1.110     www      1273:         return 0;
1.109     www      1274:     }
1.102     www      1275:     $distarget=~s/\/+/\//g;
1.11      www      1276:     my $logfile;
                   1277:     unless ($logfile=Apache::File->new('>>'.$source.'.log')) {
1.110     www      1278: 	$r->print(
1.136     www      1279:         '<font color="red">'.
                   1280: 		&mt('No write permission to user directory, FAIL').'</font>');
1.110     www      1281:         return 0;
1.11      www      1282:     }
                   1283:     print $logfile 
1.125     www      1284:         "\n================= Publish ".localtime()." Phase Two  ================\n".$ENV{'user.name'}.'@'.$ENV{'user.domain'}."\n";
1.100     matthew  1285:     
                   1286:     %metadatafields=();
                   1287:     %metadatakeys=();
                   1288:     
                   1289:     &metaeval(&Apache::lonnet::unescape($ENV{'form.allmeta'}));
                   1290:     
                   1291:     $metadatafields{'title'}=$ENV{'form.title'};
                   1292:     $metadatafields{'author'}=$ENV{'form.author'};
                   1293:     $metadatafields{'subject'}=$ENV{'form.subject'};
                   1294:     $metadatafields{'notes'}=$ENV{'form.notes'};
                   1295:     $metadatafields{'abstract'}=$ENV{'form.abstract'};
                   1296:     $metadatafields{'mime'}=$ENV{'form.mime'};
                   1297:     $metadatafields{'language'}=$ENV{'form.language'};
1.103     www      1298:     $metadatafields{'creationdate'}=$ENV{'form.creationdate'};
                   1299:     $metadatafields{'lastrevisiondate'}=$ENV{'form.lastrevisiondate'};
1.100     matthew  1300:     $metadatafields{'owner'}=$ENV{'form.owner'};
                   1301:     $metadatafields{'copyright'}=$ENV{'form.copyright'};
1.115     www      1302:     $metadatafields{'customdistributionfile'}=
                   1303:                                  $ENV{'form.customdistributionfile'};
1.100     matthew  1304:     $metadatafields{'dependencies'}=$ENV{'form.dependencies'};
                   1305:     
                   1306:     my $allkeywords=$ENV{'form.addkey'};
                   1307:     if (exists($ENV{'form.keywords'})) {
                   1308:         if (ref($ENV{'form.keywords'})) {
                   1309:             $allkeywords .= ','.join(',',@{$ENV{'form.keywords'}});
                   1310:         } else {
                   1311:             $allkeywords .= ','.$ENV{'form.keywords'};
                   1312:         }
                   1313:     }
                   1314:     $allkeywords=~s/\W+/\,/;
                   1315:     $allkeywords=~s/^\,//;
                   1316:     $metadatafields{'keywords'}=$allkeywords;
                   1317:     
                   1318:     {
                   1319:         print $logfile "\nWrite metadata file for ".$source;
                   1320:         my $mfh;
                   1321:         unless ($mfh=Apache::File->new('>'.$source.'.meta')) {
                   1322:             return 
1.136     www      1323:                 '<font color="red">'.&mt('Could not write metadata, FAIL').
                   1324: 		'</font>';
1.100     matthew  1325:         }
                   1326:         foreach (sort keys %metadatafields) {
                   1327:             unless ($_=~/\./) {
                   1328:                 my $unikey=$_;
                   1329:                 $unikey=~/^([A-Za-z]+)/;
                   1330:                 my $tag=$1;
                   1331:                 $tag=~tr/A-Z/a-z/;
                   1332:                 print $mfh "\n\<$tag";
                   1333:                 foreach (split(/\,/,$metadatakeys{$unikey})) {
                   1334:                     my $value=$metadatafields{$unikey.'.'.$_};
                   1335:                     $value=~s/\"/\'\'/g;
                   1336:                     print $mfh ' '.$_.'="'.$value.'"';
                   1337:                 }
                   1338:                 print $mfh '>'.
                   1339:                     &HTML::Entities::encode($metadatafields{$unikey})
                   1340:                         .'</'.$tag.'>';
                   1341:             }
                   1342:         }
1.136     www      1343:         $r->print('<p>'.&mt('Wrote Metadata').'</p>');
1.100     matthew  1344:         print $logfile "\nWrote metadata";
                   1345:     }
                   1346:     
                   1347: # -------------------------------- Synchronize entry with SQL metadata database
1.12      www      1348: 
1.89      matthew  1349:     $metadatafields{'url'} = $distarget;
                   1350:     $metadatafields{'version'} = 'current';
                   1351:     unless ($metadatafields{'copyright'} eq 'priv') {
                   1352:         my ($error,$success) = &store_metadata(\%metadatafields);
1.91      matthew  1353:         if ($success) {
1.120     albertel 1354:             $r->print('<p>Synchronized SQL metadata database</p>');
1.89      matthew  1355:             print $logfile "\nSynchronized SQL metadata database";
                   1356:         } else {
1.100     matthew  1357:             $r->print($error);
1.89      matthew  1358:             print $logfile "\n".$error;
                   1359:         }
                   1360:     } else {
1.136     www      1361:         $r->print('<p>'.
                   1362: 	     &mt('Private Publication - did not synchronize database').'</p>');
1.89      matthew  1363:         print $logfile "\nPrivate: Did not synchronize data into ".
                   1364:             "SQL metadata database";
1.24      harris41 1365:     }
1.12      www      1366: # ----------------------------------------------------------- Copy old versions
                   1367:    
1.100     matthew  1368:     if (-e $target) {
                   1369:         my $filename;
                   1370:         my $maxversion=0;
                   1371:         $target=~/(.*)\/([^\/]+)\.(\w+)$/;
                   1372:         my $srcf=$2;
                   1373:         my $srct=$3;
                   1374:         my $srcd=$1;
                   1375:         unless ($srcd=~/^\/home\/httpd\/html\/res/) {
                   1376:             print $logfile "\nPANIC: Target dir is ".$srcd;
1.114     albertel 1377:             return "<font color=\"red\">Invalid target directory, FAIL</font>";
1.100     matthew  1378:         }
                   1379:         opendir(DIR,$srcd);
                   1380:         while ($filename=readdir(DIR)) {
                   1381:             if (-l $srcd.'/'.$filename) {
                   1382:                 unlink($srcd.'/'.$filename);
                   1383:                 unlink($srcd.'/'.$filename.'.meta');
                   1384:             } else {
1.118     albertel 1385:                 if ($filename=~/\Q$srcf\E\.(\d+)\.\Q$srct\E$/) {
1.100     matthew  1386:                     $maxversion=($1>$maxversion)?$1:$maxversion;
                   1387:                 }
                   1388:             }
                   1389:         }
                   1390:         closedir(DIR);
                   1391:         $maxversion++;
1.120     albertel 1392:         $r->print('<p>Creating old version '.$maxversion.'</p>');
1.125     www      1393:         print $logfile "\nCreating old version ".$maxversion."\n";
1.100     matthew  1394:         
                   1395:         my $copyfile=$srcd.'/'.$srcf.'.'.$maxversion.'.'.$srct;
                   1396:         
1.13      www      1397:         if (copy($target,$copyfile)) {
1.12      www      1398: 	    print $logfile "Copied old target to ".$copyfile."\n";
1.136     www      1399:             $r->print('<p>'.&mt('Copied old target file').'</p>');
1.12      www      1400:         } else {
1.13      www      1401: 	    print $logfile "Unable to write ".$copyfile.':'.$!."\n";
1.136     www      1402:             return "<font color=\"red\">".&mt('Failed to copy old target').
                   1403: 		", $!, ".&mt('FAIL')."</font>";
1.12      www      1404:         }
1.100     matthew  1405:         
1.12      www      1406: # --------------------------------------------------------------- Copy Metadata
                   1407: 
                   1408: 	$copyfile=$copyfile.'.meta';
1.100     matthew  1409:         
1.13      www      1410:         if (copy($target.'.meta',$copyfile)) {
1.14      www      1411: 	    print $logfile "Copied old target metadata to ".$copyfile."\n";
1.136     www      1412:             $r->print('<p>'.&mt('Copied old metadata').'</p>')
1.12      www      1413:         } else {
1.13      www      1414: 	    print $logfile "Unable to write metadata ".$copyfile.':'.$!."\n";
1.14      www      1415:             if (-e $target.'.meta') {
1.100     matthew  1416:                 return 
1.136     www      1417:                     "<font color=\"red\">".
                   1418: &mt('Failed to write old metadata copy').", $!, ".&mt('FAIL')."</font>";
1.14      www      1419: 	    }
1.12      www      1420:         }
1.100     matthew  1421:         
                   1422:         
                   1423:     } else {
1.120     albertel 1424:         $r->print('<p>Initial version</p>');
1.100     matthew  1425:         print $logfile "\nInitial version";
                   1426:     }
1.12      www      1427: 
                   1428: # ---------------------------------------------------------------- Write Source
1.100     matthew  1429:     my $copyfile=$target;
                   1430:     
                   1431:     my @parts=split(/\//,$copyfile);
                   1432:     my $path="/$parts[1]/$parts[2]/$parts[3]/$parts[4]";
                   1433:     
                   1434:     my $count;
                   1435:     for ($count=5;$count<$#parts;$count++) {
                   1436:         $path.="/$parts[$count]";
                   1437:         if ((-e $path)!=1) {
                   1438:             print $logfile "\nCreating directory ".$path;
1.136     www      1439:             $r->print('<p>'.&mt('Created directory').' '.$parts[$count].'</p>');
1.100     matthew  1440:             mkdir($path,0777);
1.12      www      1441:         }
1.100     matthew  1442:     }
                   1443:     
                   1444:     if (copy($source,$copyfile)) {
                   1445:         print $logfile "\nCopied original source to ".$copyfile."\n";
1.136     www      1446:         $r->print('<p>'.&mt('Copied source file').'</p>');
1.100     matthew  1447:     } else {
                   1448:         print $logfile "\nUnable to write ".$copyfile.':'.$!."\n";
1.136     www      1449:         return "<font color=\"red\">".
                   1450: 	    &mt('Failed to copy source').", $!, ".&mt('FAIL')."</font>";
1.100     matthew  1451:     }
                   1452:     
1.12      www      1453: # --------------------------------------------------------------- Copy Metadata
                   1454: 
1.100     matthew  1455:     $copyfile=$copyfile.'.meta';
                   1456:     
                   1457:     if (copy($source.'.meta',$copyfile)) {
                   1458:         print $logfile "\nCopied original metadata to ".$copyfile."\n";
1.136     www      1459:         $r->print('<p>'.&mt('Copied metadata').'</p>');
1.100     matthew  1460:     } else {
                   1461:         print $logfile "\nUnable to write metadata ".$copyfile.':'.$!."\n";
                   1462:         return 
1.136     www      1463:             "<font color=\"red\">".&mt('Failed to write metadata copy').", $!, ".&mt('FAIL')."</font>";
1.100     matthew  1464:     }
                   1465:     $r->rflush;
1.12      www      1466: # --------------------------------------------------- Send update notifications
                   1467: 
1.85      albertel 1468:     my @subscribed=&get_subscribed_hosts($target);
                   1469:     foreach my $subhost (@subscribed) {
1.136     www      1470: 	$r->print('<p>'.&mt('Notifying host').' '.$subhost.':');$r->rflush;
1.85      albertel 1471: 	print $logfile "\nNotifying host ".$subhost.':';
                   1472: 	my $reply=&Apache::lonnet::critical('update:'.$target,$subhost);
1.120     albertel 1473: 	$r->print($reply.'</p><br />');$r->rflush;
1.85      albertel 1474: 	print $logfile $reply;
1.20      www      1475:     }
1.100     matthew  1476:     
1.20      www      1477: # ---------------------------------------- Send update notifications, meta only
                   1478: 
1.85      albertel 1479:     my @subscribedmeta=&get_subscribed_hosts("$target.meta");
                   1480:     foreach my $subhost (@subscribedmeta) {
1.136     www      1481: 	$r->print('<p>'.
                   1482: &mt('Notifying host for metadata only').' '.$subhost.':');$r->rflush;
1.85      albertel 1483: 	print $logfile "\nNotifying host for metadata only ".$subhost.':';
                   1484: 	my $reply=&Apache::lonnet::critical('update:'.$target.'.meta',
                   1485: 					    $subhost);
1.120     albertel 1486: 	$r->print($reply.'</p><br />');$r->rflush;
1.85      albertel 1487: 	print $logfile $reply;
1.12      www      1488:     }
1.100     matthew  1489:     
1.101     www      1490: # --------------------------------------------------- Notify subscribed courses
                   1491:     my %courses=&coursedependencies($target);
                   1492:     my $now=time;
                   1493:     foreach (keys %courses) {
1.136     www      1494: 	$r->print('<p>'.&mt('Notifying course').' '.$_.':');$r->rflush;
1.101     www      1495: 	print $logfile "\nNotifying host ".$_.':';
                   1496:         my ($cdom,$cname)=split(/\_/,$_);
                   1497: 	my $reply=&Apache::lonnet::cput
                   1498:                   ('versionupdate',{$target => $now},$cdom,$cname);
1.120     albertel 1499: 	$r->print($reply.'</p><br />');$r->rflush;
1.101     www      1500: 	print $logfile $reply;
                   1501:     }
1.12      www      1502: # ------------------------------------------------ Provide link to new resource
1.100     matthew  1503:     unless ($batch) {
                   1504:         my $thisdistarget=$target;
1.122     albertel 1505:         $thisdistarget=~s/^\Q$docroot\E//;
1.100     matthew  1506:         
                   1507:         my $thissrc=$source;
                   1508:         $thissrc=~s/^\/home\/(\w+)\/public_html/\/priv\/$1/;
                   1509:         
                   1510:         my $thissrcdir=$thissrc;
                   1511:         $thissrcdir=~s/\/[^\/]+$/\//;
                   1512:         
                   1513:         
                   1514:         $r->print(
1.120     albertel 1515:            '<hr /><a href="'.$thisdistarget.'"><font size="+2">'.
1.100     matthew  1516:            'View Published Version</font></a>'.
1.120     albertel 1517:            '<p><a href="'.$thissrc.'"><font size=+2>Back to Source</font></a></p>'.
1.100     matthew  1518:            '<p><a href="'.$thissrcdir.
1.120     albertel 1519:                    '"><font size="+2">Back to Source Directory</font></a></p>');
1.100     matthew  1520:     }
1.11      www      1521: }
                   1522: 
1.95      www      1523: #########################################
                   1524: 
                   1525: sub batchpublish {
1.97      www      1526:     my ($r,$srcfile,$targetfile)=@_;
1.132     albertel 1527:     #publication pollutes %ENV with form.* values
                   1528:     my %oldENV=%ENV;
1.102     www      1529:     $srcfile=~s/\/+/\//g;
                   1530:     $targetfile=~s/\/+/\//g;
1.95      www      1531:     my $thisdisfn=$srcfile;
                   1532:     $thisdisfn=~s/\/home\/korte\/public_html\///;
                   1533:     $srcfile=~s/\/+/\//g;
1.96      www      1534: 
1.97      www      1535:     my $docroot=$r->dir_config('lonDocRoot');
                   1536:     my $thisdistarget=$targetfile;
1.122     albertel 1537:     $thisdistarget=~s/^\Q$docroot\E//;
1.97      www      1538: 
1.96      www      1539: 
                   1540:     undef %metadatafields;
                   1541:     undef %metadatakeys;
                   1542:      %metadatafields=();
                   1543:      %metadatakeys=();
1.97      www      1544:       $srcfile=~/\.(\w+)$/;
                   1545:       my $thistype=$1;
                   1546: 
                   1547: 
                   1548:       my $thisembstyle=&Apache::loncommon::fileembstyle($thistype);
1.96      www      1549:      
1.95      www      1550:     $r->print('<h2>Publishing <tt>'.$thisdisfn.'</tt></h2>');
1.97      www      1551: 
                   1552: # phase one takes
                   1553: #  my ($source,$target,$style,$batch)=@_;
1.113     albertel 1554:     my ($outstring,$error)=&publish($srcfile,$targetfile,$thisembstyle,1);
                   1555:     $r->print('<p>'.$outstring.'</p>');
1.96      www      1556: # phase two takes
                   1557: # my ($source,$target,$style,$distarget,batch)=@_;
1.97      www      1558: # $ENV{'form.allmeta'},$ENV{'form.title'},$ENV{'form.author'},...
1.113     albertel 1559:     if (!$error) {
                   1560: 	$r->print('<p>');
                   1561: 	&phasetwo($r,$srcfile,$targetfile,$thisembstyle,$thisdistarget,1);
                   1562: 	$r->print('</p>');
                   1563:     }
1.132     albertel 1564:     %ENV=%oldENV;
1.97      www      1565:     return '';
1.95      www      1566: }
1.1       www      1567: 
1.90      matthew  1568: #########################################
1.95      www      1569: 
                   1570: sub publishdirectory {
                   1571:     my ($r,$fn,$thisdisfn)=@_;
1.102     www      1572:     $fn=~s/\/+/\//g;
                   1573:     $thisdisfn=~s/\/+/\//g;
1.96      www      1574:     my $resdir=
1.100     matthew  1575:     $Apache::lonnet::perlvar{'lonDocRoot'}.'/res/'.$cudom.'/'.$cuname.'/'.
1.96      www      1576:       $thisdisfn;
1.100     matthew  1577:       $r->print('<h1>Directory <tt>'.$thisdisfn.'</tt></h1>'.
1.96      www      1578:                 'Target: <tt>'.$resdir.'</tt><br />');
1.95      www      1579: 
                   1580:       my $dirptr=16384;		# Mask indicating a directory in stat.cmode.
                   1581: 
                   1582:       opendir(DIR,$fn);
                   1583:       my @files=sort(readdir(DIR));
                   1584:       foreach my $filename (@files) {
                   1585:          my ($cdev,$cino,$cmode,$cnlink,
                   1586:             $cuid,$cgid,$crdev,$csize,
                   1587:             $catime,$cmtime,$cctime,
                   1588:             $cblksize,$cblocks)=stat($fn.'/'.$filename);
                   1589: 
                   1590:          my $extension='';
                   1591:          if ($filename=~/\.(\w+)$/) { $extension=$1; }
                   1592:          if ($cmode&$dirptr) {
                   1593: 	   if (($filename!~/^\./) && ($ENV{'form.pubrec'})) {
                   1594: 	      &publishdirectory($r,$fn.'/'.$filename,$thisdisfn.'/'.$filename);
                   1595: 	   }
                   1596:          } elsif ((&Apache::loncommon::fileembstyle($extension) ne 'hdn') &&
                   1597:                   ($filename!~/^[\#\.]/) && ($filename!~/\~$/)) {
1.96      www      1598: # find out publication status and/or exiting metadata
                   1599: 	     my $publishthis=0;
                   1600:              if (-e $resdir.'/'.$filename) {
                   1601: 	        my ($rdev,$rino,$rmode,$rnlink,
                   1602: 	        $ruid,$rgid,$rrdev,$rsize,
                   1603: 	        $ratime,$rmtime,$rctime,
                   1604: 	        $rblksize,$rblocks)=stat($resdir.'/'.$filename);
1.124     www      1605: 	        if (($rmtime<$cmtime) || ($ENV{'form.forcerepub'})) {
1.96      www      1606: # previously published, modified now
                   1607: 		    $publishthis=1;
                   1608:                 }
                   1609: 	     } else {
                   1610: # never published
                   1611: 		 $publishthis=1;
                   1612: 	     }
                   1613:              if ($publishthis) {
1.97      www      1614:                 &batchpublish($r,$fn.'/'.$filename,$resdir.'/'.$filename);
1.96      www      1615: 	     } else {
                   1616:                  $r->print('<br />Skipping '.$filename.'<br />');
                   1617:              }
1.95      www      1618:              $r->rflush();
                   1619:          }
                   1620:       }
                   1621:       closedir(DIR);
                   1622: }
1.90      matthew  1623: #########################################
                   1624: 
                   1625: =pod
                   1626: 
1.94      harris41 1627: =item B<handler>
1.90      matthew  1628: 
                   1629: A basic outline of the handler subroutine follows.
                   1630: 
                   1631: =over 4
                   1632: 
1.94      harris41 1633: =item *
                   1634: 
                   1635: Get query string for limited number of parameters.
                   1636: 
                   1637: =item *
                   1638: 
                   1639: Check filename.
                   1640: 
                   1641: =item *
                   1642: 
                   1643: File is there and owned, init lookup tables.
                   1644: 
                   1645: =item *
1.90      matthew  1646: 
1.94      harris41 1647: Start page output.
1.90      matthew  1648: 
1.94      harris41 1649: =item *
1.90      matthew  1650: 
1.94      harris41 1651: Evaluate individual file, and then output information.
1.90      matthew  1652: 
1.94      harris41 1653: =item *
1.90      matthew  1654: 
1.94      harris41 1655: Publishing from $thisfn to $thistarget with $thisembstyle.
1.90      matthew  1656: 
                   1657: =back
                   1658: 
                   1659: =cut
                   1660: 
                   1661: #########################################
                   1662: #########################################
1.1       www      1663: sub handler {
                   1664:   my $r=shift;
1.2       www      1665: 
                   1666:   if ($r->header_only) {
1.136     www      1667:      &Apache::loncommon::content_type($r,'text/html');
1.2       www      1668:      $r->send_http_header;
                   1669:      return OK;
                   1670:   }
                   1671: 
1.43      www      1672: # Get query string for limited number of parameters
                   1673: 
1.80      matthew  1674:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},
                   1675:                                             ['filename']);
1.43      www      1676: 
1.2       www      1677: # -------------------------------------------------------------- Check filename
                   1678: 
1.113     albertel 1679:   my $fn=&Apache::lonnet::unescape($ENV{'form.filename'});
1.2       www      1680: 
1.27      www      1681:   
1.2       www      1682:   unless ($fn) { 
1.27      www      1683:      $r->log_reason($cuname.' at '.$cudom.
1.2       www      1684:          ' trying to publish empty filename', $r->filename); 
                   1685:      return HTTP_NOT_FOUND;
                   1686:   } 
1.4       www      1687: 
1.31      www      1688:   ($cuname,$cudom)=
                   1689:     &Apache::loncacc::constructaccess($fn,$r->dir_config('lonDefDomain'));
                   1690:   unless (($cuname) && ($cudom)) {
1.27      www      1691:      $r->log_reason($cuname.' at '.$cudom.
1.4       www      1692:          ' trying to publish file '.$ENV{'form.filename'}.
1.27      www      1693:          ' ('.$fn.') - not authorized', 
                   1694:          $r->filename); 
                   1695:      return HTTP_NOT_ACCEPTABLE;
                   1696:   }
                   1697: 
                   1698:   unless (&Apache::lonnet::homeserver($cuname,$cudom) 
                   1699:           eq $r->dir_config('lonHostID')) {
                   1700:      $r->log_reason($cuname.' at '.$cudom.
                   1701:          ' trying to publish file '.$ENV{'form.filename'}.
                   1702:          ' ('.$fn.') - not homeserver ('.
                   1703:          &Apache::lonnet::homeserver($cuname,$cudom).')', 
1.4       www      1704:          $r->filename); 
                   1705:      return HTTP_NOT_ACCEPTABLE;
                   1706:   }
1.2       www      1707: 
1.43      www      1708:   $fn=~s/^http\:\/\/[^\/]+//;
                   1709:   $fn=~s/^\/\~(\w+)/\/home\/$1\/public_html/;
1.2       www      1710: 
                   1711:   my $targetdir='';
1.12      www      1712:   $docroot=$r->dir_config('lonDocRoot'); 
1.27      www      1713:   if ($1 ne $cuname) {
                   1714:      $r->log_reason($cuname.' at '.$cudom.
1.2       www      1715:          ' trying to publish unowned file '.$ENV{'form.filename'}.
                   1716:          ' ('.$fn.')', 
                   1717:          $r->filename); 
                   1718:      return HTTP_NOT_ACCEPTABLE;
                   1719:   } else {
1.27      www      1720:       $targetdir=$docroot.'/res/'.$cudom;
1.2       www      1721:   }
                   1722:                                  
                   1723:   
                   1724:   unless (-e $fn) { 
1.27      www      1725:      $r->log_reason($cuname.' at '.$cudom.
1.2       www      1726:          ' trying to publish non-existing file '.$ENV{'form.filename'}.
                   1727:          ' ('.$fn.')', 
                   1728:          $r->filename); 
                   1729:      return HTTP_NOT_FOUND;
                   1730:   } 
                   1731: 
1.11      www      1732: unless ($ENV{'form.phase'} eq 'two') {
                   1733: 
1.94      harris41 1734: # -------------------------------- File is there and owned, init lookup tables.
1.2       www      1735: 
1.3       www      1736:   %addid=();
                   1737: 
                   1738:   {
                   1739:       my $fh=Apache::File->new($r->dir_config('lonTabDir').'/addid.tab');
                   1740:       while (<$fh>=~/(\w+)\s+(\w+)/) {
                   1741:           $addid{$1}=$2;
                   1742:       }
1.5       www      1743:   }
                   1744: 
                   1745:   %nokey=();
                   1746: 
                   1747:   {
                   1748:      my $fh=Apache::File->new($r->dir_config('lonIncludes').'/un_keyword.tab');
1.65      harris41 1749:       while (<$fh>) {
1.5       www      1750:           my $word=$_;
                   1751:           chomp($word);
                   1752:           $nokey{$word}=1;
1.65      harris41 1753:       }
1.3       www      1754:   }
1.11      www      1755: 
                   1756: }
                   1757: 
1.94      harris41 1758: # ---------------------------------------------------------- Start page output.
1.2       www      1759: 
1.136     www      1760:   &Apache::loncommon::content_type($r,'text/html');
1.1       www      1761:   $r->send_http_header;
                   1762: 
                   1763:   $r->print('<html><head><title>LON-CAPA Publishing</title></head>');
1.95      www      1764:   $r->print(&Apache::loncommon::bodytag('Resource Publication'));
1.101     www      1765: 
                   1766: 
1.2       www      1767:   my $thisfn=$fn;
1.95      www      1768: 
                   1769:   my $thistarget=$thisfn;
                   1770:       
                   1771:   $thistarget=~s/^\/home/$targetdir/;
                   1772:   $thistarget=~s/\/public\_html//;
                   1773: 
                   1774:   my $thisdistarget=$thistarget;
1.122     albertel 1775:   $thisdistarget=~s/^\Q$docroot\E//;
1.95      www      1776: 
                   1777:   my $thisdisfn=$thisfn;
1.122     albertel 1778:   $thisdisfn=~s/^\/home\/\Q$cuname\E\/public_html\///;
1.95      www      1779: 
                   1780:   if ($fn=~/\/$/) {
                   1781: # -------------------------------------------------------- This is a directory
                   1782:       &publishdirectory($r,$fn,$thisdisfn);
1.136     www      1783:       $r->print('<hr><font size="+2">'.&mt('Done').'</font><br><a href="/priv/'
1.128     www      1784: 		.$cuname.'/'.$thisdisfn
1.136     www      1785: 		.'">'.&mt('Return to Directory').'</a>');
1.128     www      1786: 
1.95      www      1787: 
                   1788:   } else {
1.94      harris41 1789: # ---------------------- Evaluate individual file, and then output information.
1.2       www      1790:       $thisfn=~/\.(\w+)$/;
                   1791:       my $thistype=$1;
1.65      harris41 1792:       my $thisembstyle=&Apache::loncommon::fileembstyle($thistype);
1.136     www      1793:       $r->print('<h2>'.&mt('Publishing').' '.
1.129     www      1794: 		&Apache::loncommon::filedescription($thistype).' <tt>');
1.2       www      1795: 
1.129     www      1796:       $r->print(<<ENDCAPTION);
                   1797: <a href='javascript:void(window.open("/~$cuname/$thisdisfn","cat","height=300,width=500,scrollbars=1,resizable=1,menubar=0,location=1"))'>
                   1798: $thisdisfn</a>
                   1799: ENDCAPTION
                   1800:       $r->print(
1.136     www      1801:         '</tt></h2><b>'.&mt('Target').':</b> <tt>'.$thisdistarget.'</tt><br />');
1.27      www      1802:    
1.94      harris41 1803:       if (($cuname ne $ENV{'user.name'}) || ($cudom ne $ENV{'user.domain'})) {
1.136     www      1804:           $r->print('<h3><font color="red">'.&mt('Co-Author').': '.$cuname.&mt(' at ').$cudom.
1.94      harris41 1805: 		    '</font></h3>');
1.27      www      1806:       }
1.26      www      1807: 
1.65      harris41 1808:       if (&Apache::loncommon::fileembstyle($thistype) eq 'ssi') {
1.129     www      1809:           $r->print(<<ENDDIFF);
                   1810: <br />
1.136     www      1811: <a href='javascript:void(window.open("/adm/diff?filename=/~$cuname/$thisdisfn&versiontwo=priv","cat","height=300,width=500,scrollbars=1,resizable=1,menubar=0,location=1"))'>
1.129     www      1812: ENDDIFF
1.136     www      1813:           $r->print(&mt('Diffs with Current Version').'</a><br />');
1.26      www      1814:       }
1.11      www      1815:   
1.94      harris41 1816: # ------------------ Publishing from $thisfn to $thistarget with $thisembstyle.
1.2       www      1817: 
1.11      www      1818:        unless ($ENV{'form.phase'} eq 'two') {
1.113     albertel 1819: 	   my ($outstring,$error)=&publish($thisfn,$thistarget,$thisembstyle);
                   1820: 	   $r->print('<hr />'.$outstring);
1.11      www      1821:        } else {
1.100     matthew  1822:            $r->print('<hr />');
                   1823:            &phasetwo($r,$thisfn,$thistarget,$thisembstyle,$thisdistarget); 
1.113     albertel 1824:        }
1.11      www      1825:   }
1.1       www      1826:   $r->print('</body></html>');
1.15      www      1827: 
1.1       www      1828:   return OK;
                   1829: }
                   1830: 
                   1831: 1;
                   1832: __END__
                   1833: 
1.89      matthew  1834: =pod
1.126     bowersj2 1835: 
                   1836: =back
1.66      harris41 1837: 
                   1838: =back
                   1839: 
1.89      matthew  1840: =cut
1.66      harris41 1841: 

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