File:  [LON-CAPA] / loncom / publisher / lonretrieve.pm
Revision 1.10: download - view: text, annotated - select for diffs
Wed May 9 17:15:26 2001 UTC (23 years ago) by www
Branches: MAIN
CVS tags: HEAD
Respect Co-Author

    1: # The LearningOnline Network with CAPA
    2: # Handler to retrieve an old version of a file
    3: #
    4: # (Publication Handler
    5: # 
    6: # (TeX Content Handler
    7: #
    8: # 05/29/00,05/30,10/11 Gerd Kortemeyer)
    9: #
   10: # 11/28,11/29,11/30,12/01,12/02,12/04,12/23 Gerd Kortemeyer
   11: # 03/23 Guy Albertelli
   12: # 03/24,03/29 Gerd Kortemeyer)
   13: #
   14: # 03/31,04/03,05/02 Gerd Kortemeyer
   15: 
   16: package Apache::lonretrieve;
   17: 
   18: use strict;
   19: use Apache::File;
   20: use File::Copy;
   21: use Apache::Constants qw(:common :http :methods);
   22: use Apache::loncacc;
   23: 
   24: sub phaseone {
   25:     my ($r,$fn,$uname,$udom)=@_;
   26:     my $docroot=$r->dir_config('lonDocRoot');
   27: 
   28:     my $urldir='/res/'.$udom.'/'.$uname.$fn;
   29:     $urldir=~s/\/[^\/]+$/\//;
   30: 
   31:     my $resfn=$docroot.'/res/'.$udom.'/'.$uname.$fn;
   32:     my $resdir=$resfn;
   33:     $resdir=~s/\/[^\/]+$/\//;
   34: 
   35:     $fn=~/\/([^\/]+)\.(\w+)$/;
   36:     my $main=$1;
   37:     my $suffix=$2;
   38: 
   39:     if (-e $resfn) {  
   40:     $r->print('<form action=/adm/retrieve method=post>'.
   41: 	      '<input type=hidden name=filename value="'.$fn.'">'.
   42:               '<input type=hidden name=phase value=two>'.
   43:               '<table border=2><tr><th>Select</th><th>Version</th>'.
   44:               '<th>Became this version on ...</th>'.
   45:               '<th>Metadata</th></tr>');
   46:     my $filename;
   47:     opendir(DIR,$resdir);
   48:     while ($filename=readdir(DIR)) {
   49:         if ($filename=~/^$main\.(\d+)\.$suffix$/) {
   50: 	   my $version=$1;
   51:            my ($rdev,$rino,$rmode,$rnlink,
   52:                 $ruid,$rgid,$rrdev,$rsize,
   53:                 $ratime,$rmtime,$rctime,
   54:                 $rblksize,$rblocks)=stat($resdir.'/'.$filename);
   55:            $r->print('<tr><td><input type=radio name=version value="'.
   56:                      $version.'"></td><th>'.$version.'</th><td>'.
   57:                      localtime($rmtime).'</td><td>'.
   58:                      '<a href="'.$urldir.$filename.'.meta" target=cat>'.
   59:                      'Metadata Version '.$version.'</a>');
   60:            if (&Apache::lonnet::fileembstyle($suffix) eq 'ssi') {
   61:                $r->print(
   62:                     '&nbsp;&nbsp;<a target=cat href="/adm/diff?filename='.$fn.
   63:                         '&versionone=priv&versiontwo='.$version.
   64:                         '">Diffs with Version '.$version.'</a>');
   65:            }
   66:            $r->print('</a></td></tr>');
   67:         }
   68:     }
   69:     closedir(DIR);
   70:     my ($rdev,$rino,$rmode,$rnlink,
   71:         $ruid,$rgid,$rrdev,$rsize,
   72:         $ratime,$rmtime,$rctime,
   73:         $rblksize,$rblocks)=stat($resfn);
   74:     $r->print('<tr><td><input type=radio name=version value="new"></td>'.
   75:               '<th>Current</th><td>'.localtime($rmtime).
   76:            '</td><td><a href="'.$urldir.$main.'.'.$suffix.'.meta" target=cat>'.
   77:               'Metadata current version</a>');           
   78:            if (&Apache::lonnet::fileembstyle($suffix) eq 'ssi') {
   79:                $r->print(
   80:                     '&nbsp;&nbsp;<a target=cat href="/adm/diff?filename='.$fn.
   81:                         '&versionone=priv'.
   82:                         '">Diffs with current Version</a>');
   83:            }
   84:            $r->print('</td></tr></table><p>'.
   85:            '<font size=+1 color=red>Retrieval of an old version will '.
   86:            'overwrite the file currently in construction space</font><p>'.
   87:            '<input type=submit value="Retrieve version"></form>');
   88: } else {
   89:     $r->print('<h3>No previous versions published.</h3>');
   90: }
   91: }
   92: 
   93: sub phasetwo {
   94:     my ($r,$fn,$uname,$udom)=@_;
   95:     if ($ENV{'form.version'}) {
   96:         my $version=$ENV{'form.version'};
   97: 	if ($version eq 'new') {
   98: 	    $r->print('<h3>Retrieving current (most recent) version</h3>');
   99:         } else {
  100:             $r->print('<h3>Retrieving old version '.$version.'</h3>');
  101:         }
  102:         my $logfile;
  103:         my $ctarget='/home/'.$uname.'/public_html'.$fn;
  104:         my $vfn=$fn;
  105:         if ($version ne 'new') {
  106: 	    $vfn=~s/\.(\w+)$/\.$version\.$1/;
  107:         }
  108:         my $csource=$r->dir_config('lonDocRoot').'/res/'.$udom.'/'.$uname.$vfn;
  109:         unless ($logfile=Apache::File->new('>>'.$ctarget.'.log')) {
  110: 	  $r->print(
  111:          '<font color=red>No write permission to user directory, FAIL</font>');
  112:         }
  113:         print $logfile 
  114: "\n\n================= Retrieve ".localtime()." ================\n".
  115: "Version: $version\nSource: $csource\nTarget: $ctarget\n";
  116:         $r->print('<p>Copying file: ');
  117:         if (copy($csource,$ctarget)) {
  118: 	    $r->print('ok<p>');
  119:             print $logfile "Copied sucessfully.\n\n";
  120:         } else {
  121:             my $error=$!;
  122: 	    $r->print('fail, '.$error.'<p>');
  123:             print $logfile "Copy failed: $error\n\n";
  124:         }
  125:         $r->print('<font size=+2><a href="/priv/'.$uname.$fn.
  126:                   '">Back to '.$fn.'</a></font>'); 
  127:     } else {
  128:        $r->print(
  129:    '<font size=+1 color=red>Please pick a version to retrieve</font><p>');
  130:        &phaseone($r,$fn,$uname,$udom);
  131:     }
  132: }
  133: 
  134: sub handler {
  135: 
  136:   my $r=shift;
  137: 
  138:   my $fn;
  139: 
  140:   if ($ENV{'form.filename'}) {
  141:       $fn=$ENV{'form.filename'};
  142:       $fn=~s/^http\:\/\/[^\/]+//;
  143:   } else {
  144:      $r->log_reason($ENV{'user.name'}.' at '.$ENV{'user.domain'}.
  145:          ' unspecified filename for retrieval', $r->filename); 
  146:      return HTTP_NOT_FOUND;
  147:   }
  148: 
  149:   unless ($fn) { 
  150:      $r->log_reason($ENV{'user.name'}.' at '.$ENV{'user.domain'}.
  151:          ' trying to retrieve non-existing file', $r->filename); 
  152:      return HTTP_NOT_FOUND;
  153:   } 
  154: 
  155: # ----------------------------------------------------------- Start page output
  156:   my $uname;
  157:   my $udom;
  158: 
  159:   unless (($uname,$udom)=
  160:     &Apache::loncacc::constructaccess(
  161:              $fn,$r->dir_config('lonDefDomain'))) {
  162:      $r->log_reason($uname.' at '.$udom.
  163:          ' trying to publish file '.$ENV{'form.filename'}.
  164:          ' ('.$fn.') - not authorized', 
  165:          $r->filename); 
  166:      return HTTP_NOT_ACCEPTABLE;
  167:   }
  168: 
  169:   $fn=~s/\/\~(\w+)//;
  170: 
  171:   $r->content_type('text/html');
  172:   $r->send_http_header;
  173: 
  174:   $r->print('<html><head><title>LON-CAPA Construction Space</title></head>');
  175: 
  176:   $r->print(
  177:    '<body bgcolor="#FFFFFF"><img align=right src=/adm/lonIcons/lonlogos.gif>');
  178: 
  179:   
  180:   $r->print('<h1>Retrieve previous versions of <tt>'.$fn.'</tt></h1>');
  181:   
  182:   if (($uname ne $ENV{'user.name'}) || ($udom ne $ENV{'user.domain'})) {
  183:           $r->print('<h3><font color=red>Co-Author: '.$uname.' at '.$udom.
  184:                '</font></h3>');
  185:   }
  186: 
  187: 
  188:   if ($ENV{'form.phase'} eq 'two') {
  189:       &phasetwo($r,$fn,$uname,$udom);
  190:   } else {
  191:       &phaseone($r,$fn,$uname,$udom);
  192:   }
  193: 
  194:   $r->print('</body></html>');
  195:   return OK;  
  196: }
  197: 
  198: 1;
  199: __END__

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