Annotation of loncom/publisher/loncfile.pm, revision 1.61

1.1       www         1: # The LearningOnline Network with CAPA
                      2: # Handler to rename files, etc, in construction space
                      3: #
1.9       foxr        4: #  This file responds to the various buttons and events
                      5: #  in the top frame of the construction space directory.
                      6: #  Each event is processed in two phases.  The first phase
                      7: #  presents a page that describes the proposed action to the user
                      8: #  and requests confirmation.  The second phase commits the action
                      9: #  and displays a page showing the results of the action.
                     10: #
1.24      albertel   11: #
1.61    ! albertel   12: # $Id: loncfile.pm,v 1.60 2004/08/20 16:29:15 www Exp $
1.7       albertel   13: #
                     14: # Copyright Michigan State University Board of Trustees
                     15: #
                     16: # This file is part of the LearningOnline Network with CAPA (LON-CAPA).
                     17: #
                     18: # LON-CAPA is free software; you can redistribute it and/or modify
                     19: # it under the terms of the GNU General Public License as published by
                     20: # the Free Software Foundation; either version 2 of the License, or
                     21: # (at your option) any later version.
                     22: #
                     23: # LON-CAPA is distributed in the hope that it will be useful,
                     24: # but WITHOUT ANY WARRANTY; without even the implied warranty of
                     25: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
                     26: # GNU General Public License for more details.
                     27: #
                     28: # You should have received a copy of the GNU General Public License
                     29: # along with LON-CAPA; if not, write to the Free Software
                     30: # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
                     31: #
                     32: # /home/httpd/html/adm/gpl.txt
                     33: #
                     34: # http://www.lon-capa.org/
                     35: #
1.12      foxr       36: =pod
                     37: 
                     38: =head1 NAME
                     39: 
                     40: Apache::loncfile - Construction space file management.
                     41: 
                     42: =head1 SYNOPSIS
                     43:  
                     44:  Content handler for buttons on the top frame of the construction space 
                     45: directory.
                     46: 
                     47: =head1 INTRODUCTION
                     48: 
                     49:   loncfile is invoked when buttons in the top frame of the construction 
1.17      harris41   50: space directory listing are clicked.   All operations proceed in two phases.
1.12      foxr       51: The first phase describes to the user exactly what will be done.  If the user
                     52: confirms the operation, the second phase commits the operation and indicates
                     53: completion.  When the user dismisses the output of phase2, they are returned to
                     54: an "appropriate" directory listing in general.
                     55: 
                     56:     This is part of the LearningOnline Network with CAPA project
                     57: described at http://www.lon-capa.org.
                     58: 
                     59: =head2 Subroutines
                     60: 
                     61: =cut
1.1       www        62: 
                     63: package Apache::loncfile;
                     64: 
                     65: use strict;
                     66: use Apache::File;
1.15      foxr       67: use File::Basename;
1.1       www        68: use File::Copy;
1.18      foxr       69: use HTML::Entities();
1.1       www        70: use Apache::Constants qw(:common :http :methods);
                     71: use Apache::loncacc;
1.9       foxr       72: use Apache::Log ();
1.15      foxr       73: use Apache::lonnet;
1.33      www        74: use Apache::loncommon();
1.47      sakharuk   75: use Apache::lonlocal;
1.9       foxr       76: 
1.45      taceyjo1   77: my $DEBUG=0;
1.10      foxr       78: my $r;				# Needs to be global for some stuff RF.
1.12      foxr       79: 
                     80: =pod
                     81: 
                     82: =item Debug($request, $message)
                     83: 
1.17      harris41   84:   If debugging is enabled puts out a debugging message determined by the
1.12      foxr       85:   caller.  The debug message goes to the Apache error log file. Debugging
1.17      harris41   86:   is enabled by setting the module global DEBUG variable to nonzero (TRUE).
1.12      foxr       87: 
                     88:  Parameters:
                     89: 
                     90: =over 4
                     91:  
1.17      harris41   92: =item $request - The current request operation.
1.12      foxr       93: 
1.17      harris41   94: =item $message - The message to put in the log file.
1.12      foxr       95: 
                     96: =back
                     97:   
                     98:  Returns:
                     99:    nothing.
                    100: 
                    101: =cut
                    102: 
1.9       foxr      103: sub Debug {
1.12      foxr      104:   
1.55      albertel  105:     # Marshall the parameters.
1.12      foxr      106:   
1.55      albertel  107:     my $r       = shift;
                    108:     my $log     = $r->log;
                    109:     my $message = shift;
1.12      foxr      110:   
1.55      albertel  111:     # Put out the indicated message butonly if DEBUG is true.
1.12      foxr      112:   
1.55      albertel  113:     if ($DEBUG) {
                    114: 	$r->log_reason($message);
                    115:     }
1.12      foxr      116: }
                    117: 
                    118: =pod
                    119: 
                    120: =item URLToPath($url)
                    121: 
                    122:   Convert a URL to a file system path.
                    123:   
                    124:   In order to manipulate the construction space objects, it is necessary
                    125:   to access url identified objects a filespace objects.  This function
                    126:   translates a construction space URL to a file system path.
                    127:  Parameters:
                    128: 
                    129: =over 4
                    130: 
                    131: =item  Url    - string [in] The url to convert.
                    132:   
                    133: =back
                    134:   
                    135:  Returns:
                    136: 
                    137: =over 4
                    138: 
1.16      harris41  139: =item  The corresponding file system path. 
1.12      foxr      140: 
                    141: =back
                    142: 
                    143: Global References
                    144: 
                    145: =over 4
                    146: 
                    147: =item  $r      - Request object [in] Referenced in the &Debug calls.
                    148: 
                    149: =back
                    150: 
                    151: =cut
                    152: 
                    153: sub URLToPath {
1.55      albertel  154:     my $Url = shift;
                    155:     &Debug($r, "UrlToPath got: $Url");
                    156:     $Url=~ s/\/+/\//g;
                    157:     $Url=~ s/^http\:\/\/[^\/]+//;
                    158:     $Url=~ s/^\///;
                    159:     $Url=~ s/(\~|priv\/)(\w+)\//\/home\/$2\/public_html\//;
                    160:     &Debug($r, "Returning $Url \n");
                    161:     return $Url;
1.12      foxr      162: }
                    163: 
1.36      www       164: sub url {
                    165:     my $fn=shift;
                    166:     $fn=~s/^\/home\/(\w+)\/public\_html/\/priv\/$1/;
1.56      albertel  167:     $fn=&HTML::Entities::encode($fn,'<>"&');
1.36      www       168:     return $fn;
                    169: }
                    170: 
                    171: sub display {
                    172:     my $fn=shift;
1.43      albertel  173:     $fn=~s-^/home/(\w+)/public_html-/priv/$1-;
1.36      www       174:     return '<tt>'.$fn.'</tt>';
                    175: }
                    176: 
1.50      www       177: 
                    178: # see if the file is
                    179: # a) published (return 0 if not)
                    180: # b) if, so obsolete (return 0 if not)
                    181: 
                    182: sub obsolete_unpub {
                    183:     my ($user,$domain,$construct)=@_;
                    184:     my $published=$construct;
                    185:     $published=~
                    186: 	s/^\/home\/$user\/public\_html\//\/home\/httpd\/html\/res\/$domain\/$user\//;
                    187:     if (-e $published) {
                    188: 	if (&Apache::lonnet::metadata($published,'obsolete')) {
                    189: 	    return 1;
                    190: 	}
                    191: 	return 0;
                    192:     } else {
                    193: 	return 1;
                    194:     }
                    195: }
                    196: 
                    197: 
                    198: 
1.12      foxr      199: =pod
                    200: 
1.39      www       201: =item exists($user, $domain, $file)
1.12      foxr      202: 
1.17      harris41  203:    Determine if a resource file name has been published or exists
1.12      foxr      204:    in the construction space.
                    205: 
                    206:  Parameters:
                    207: 
                    208: =over 4
                    209: 
                    210: =item  $user   - string [in] - Name of the user for which to check.
                    211: 
                    212: =item  $domain - string [in] - Name of the domain in which the resource
                    213:                           might have been published.
                    214: 
                    215: =item  $file   - string [in] - Name of the file.
                    216: 
                    217: =back
                    218: 
                    219: Returns:
                    220: 
                    221: =over 4
                    222: 
                    223: =item  string - Either where the resource exists as an html string that can
                    224:            be embedded in a dialog or an empty string if the resource
                    225:            does not exist.
                    226:   
                    227: =back
                    228: 
                    229: =cut
                    230: 
1.8       albertel  231: sub exists {
1.55      albertel  232:     my ($user, $domain, $construct) = @_;
                    233:     my $published=$construct;
                    234:     $published=~
                    235: 	s/^\/home\/$user\/public\_html\//\/home\/httpd\/html\/res\/$domain\/$user\//;
                    236:     my $result='';    
                    237:     if ( -d $construct ) {
                    238: 	return &mt('Error: destination for operation is an existing directory.');
                    239:     }
                    240:     if ( -e $published) {
                    241: 	$result.='<p><font color="red">'.&mt('Warning: target file exists, and has been published!').'</font></p>';
                    242:     } elsif ( -e $construct) {
                    243: 	$result.='<p><font color="red">'.&mt('Warning: target file exists!').'</font></p>';
                    244:     }
                    245:     return $result;
1.8       albertel  246: }
                    247: 
1.12      foxr      248: =pod
                    249: 
                    250: =item checksuffix($old, $new)
                    251:         
                    252:   Determine if a resource filename suffix (the stuff after the .) would change
                    253: as a result of this operation.
                    254: 
                    255:  Parameters:
                    256: 
                    257: =over 4
                    258: 
                    259: =item  $old   = string [in]  Previous filename.
                    260: 
                    261: =item  $new   = string [in]  Resultant filename.
                    262: 
                    263: =back
                    264: 
                    265:  Returns:
                    266: 
                    267: =over 4
                    268: 
1.17      harris41  269: =item    Empty string if everything worked.
1.12      foxr      270: 
                    271: =item    String containing an error message if there was a problem.
                    272: 
                    273: =back
                    274: 
                    275: =cut
                    276: 
1.8       albertel  277: sub checksuffix {
                    278:     my ($old,$new) = @_;
                    279:     my $result;
                    280:     my $oldsuffix;
                    281:     my $newsuffix;
                    282:     if ($new=~m:(.*/*)([^/]+)\.(\w+)$:) { $newsuffix=$3; }
                    283:     if ($old=~m:(.*)/+([^/]+)\.(\w+)$:) { $oldsuffix=$3; }
                    284:     if ($oldsuffix ne $newsuffix) {
1.12      foxr      285: 	$result.=
1.47      sakharuk  286:             '<p><font color="red">'.&mt('Warning: change of MIME type!').'</font></p>';
1.8       albertel  287:     }
                    288:     return $result;
                    289: }
1.32      albertel  290: 
                    291: sub cleanDest {
1.58      albertel  292:     my ($request,$dest,$subdir)=@_;
1.32      albertel  293:     #remove bad characters
1.58      albertel  294:     my $foundbad=0;
                    295:     if ($subdir && $dest =~/\./) {
                    296: 	$foundbad=1;
                    297: 	$dest=~s/\.//g;
                    298:     }
1.57      albertel  299:     if  ($dest=~/[\#\?&%\"]/) {
1.58      albertel  300: 	$foundbad=1;
1.59      albertel  301: 	$dest=~s/[\#\?&%\"]//g;
1.58      albertel  302:     }
                    303:     if ($foundbad) {
1.47      sakharuk  304: 	$request->print("<p><font color=\"red\">".&mt('Invalid characters in requested name have been removed.')."</font></p>");
1.32      albertel  305:     }
                    306:     return $dest;
                    307: }
                    308: 
1.36      www       309: sub relativeDest {
                    310:     my ($fn,$newfilename,$uname)=@_;
                    311:     if ($newfilename=~/^\//) {
                    312: # absolute, simply add path
                    313: 	$newfilename='/home/'.$uname.'/public_html/';
                    314:     } else {
                    315: 	my $dir=$fn;
                    316: 	$dir=~s/\/[^\/]+$//;
                    317: 	$newfilename=$dir.'/'.$newfilename;
                    318:     }
                    319:     $newfilename=~s://+:/:g; # remove duplicate /
                    320:     while ($newfilename=~m:/\.\./:) {
                    321: 	$newfilename=~ s:/[^/]+/\.\./:/:g; #remove dir/..
                    322:     }
                    323:     return $newfilename;
                    324: }
                    325: 
1.12      foxr      326: =pod
                    327: 
                    328: =item CloseForm1($request, $user, $file)
                    329: 
                    330:    Close of a form on the successful completion of phase 1 processing
                    331: 
                    332: Parameters:
                    333: 
                    334: =over 4
                    335: 
                    336: =item  $request - Apache Request Object [in] - Apache server request object.
                    337: 
1.13      foxr      338: =item  $cancelurl - the url to go to on cancel.
1.12      foxr      339: 
                    340: =back
                    341: 
                    342: =cut
                    343: 
                    344: sub CloseForm1 {
1.55      albertel  345:     my ($request,  $fn) = @_;
                    346:     $request->print('<p><input type="submit" value="'.&mt('Continue').'" /></p></form>');
                    347:     $request->print('<form action="'.&url($fn).
                    348: 		    '" method="POST"><p><input type="submit" value="'.&mt('Cancel').'" /></p></form>');
1.12      foxr      349: }
                    350: 
                    351: 
                    352: =pod
                    353: 
                    354: =item CloseForm2($request, $user, $directory)
                    355: 
                    356:    Successfully close off the phase 2 form.
                    357: 
                    358: Parameters:
                    359: 
                    360: =over 4
                    361: 
                    362: =item   $request    - Apache Request object [in] - The request that is being
                    363:                  executed.
                    364: 
                    365: =item   $user       - string [in] - Name of the user that is initiating the
                    366:                  request.
                    367: 
                    368: =item   $directory  - string [in] - Directory in which the operation is 
                    369:                  being done relative to the top level construction space
                    370:                  directory.
                    371: 
                    372: =back
                    373: 
                    374: =cut
                    375: 
                    376: sub CloseForm2 {
1.55      albertel  377:     my ($request, $user, $fn) = @_;
                    378:     $request->print('<h3><a href="'.&url($fn).'/">'.&mt('Done').'</a></h3>');
1.12      foxr      379: }
                    380: 
                    381: =pod
                    382: 
                    383: =item Rename1($request, $filename, $user, $domain, $dir)
                    384:  
                    385:    Perform phase 1 processing of the file rename operation.
                    386: 
                    387: Parameters:
                    388: 
                    389: =over 4
                    390: 
                    391: =item  $request   - Apache Request Object [in] The request object for the 
                    392: current request.
                    393: 
                    394: =item  $filename  - The filename relative to construction space.
                    395: 
                    396: =item  $user      - Name of the user making the request.
                    397: 
                    398: =item  $domain    - User login domain.
                    399: 
                    400: =item  $dir       - Directory specification of the path to the file.
                    401: 
                    402: =back
                    403: 
                    404: Side effects:
                    405: 
                    406: =over 4
                    407: 
                    408: =item A new form is displayed prompting for confirmation.  The newfilename
                    409: hidden field of this form is loaded with
                    410: new filename relative to the current directory ($dir).
                    411: 
                    412: =back
                    413: 
                    414: =cut  
                    415: 
                    416: sub Rename1 {
1.52      albertel  417:     my ($request, $user, $domain, $fn, $newfilename, $style) = @_;
1.36      www       418: 
                    419:     if(-e $fn) {
                    420: 	if($newfilename) {
1.42      albertel  421: 	    # is dest a dir
1.52      albertel  422: 	    if ($style eq 'move') {
                    423: 		if (-d $newfilename) {
                    424: 		    if ($fn =~ m|/([^/]*)$|) { $newfilename .= '/'.$1; }
                    425: 		}
1.42      albertel  426: 	    }
1.29      albertel  427: 	    if ($newfilename =~ m|/[^\.]+$|) {
1.36      www       428: 		#no extension add on original extension
                    429: 		if ($fn =~ m|/[^\.]*\.([^\.]+)$|) {
1.24      albertel  430: 		    $newfilename.='.'.$1;
                    431: 		}
                    432: 	    }
1.36      www       433: 	    $request->print(&checksuffix($fn, $newfilename));
1.27      albertel  434: 	    #renaming a dir, delete the trailing /
1.39      www       435:             #remove second to last element for current dir
                    436: 	    if (-d $fn) {
1.53      www       437: 		$newfilename=~/\.(\w+)$/;
                    438: 		if (&Apache::loncommon::fileembstyle($1) eq 'ssi') {
                    439: 		    $request->print('<br /><font color="red">'.
1.55      albertel  440: 				    &mt('Cannot change MIME type of a directory').
1.53      www       441: 				    '</font>'.
1.55      albertel  442: 				    '<br /><a href="'.&url($fn).'">'.&mt('Cancel').'</a>');
1.53      www       443: 		    return;
                    444: 		}
1.39      www       445: 		$newfilename=~s/\/[^\/]+\/([^\/]+)$/\/$1/;
1.27      albertel  446: 	    }
1.42      albertel  447: 	    $newfilename=~s://+:/:g; # remove duplicate /
                    448: 	    while ($newfilename=~m:/\.\./:) {
                    449: 		$newfilename=~ s:/[^/]+/\.\./:/:g; #remove dir/..
                    450: 	    }
1.39      www       451: 	    my $return=&exists($user, $domain, $newfilename);
1.21      albertel  452: 	    $request->print($return);
                    453: 	    if ($return =~/^Error:/) {
1.47      sakharuk  454: 		$request->print('<br /><a href="'.&url($fn).'">'.&mt('Cancel').'</a>');
1.21      albertel  455: 		return;
                    456: 	    }
1.50      www       457: 	    unless (&obsolete_unpub($user,$domain,$fn)) {
                    458: 		$request->print('<h3>'.&mt('Cannot rename or move non-obsolete published file').'</h3>'.
                    459: 				'<br /><a href="'.&url($fn).'">'.&mt('Cancel').'</a>');
                    460: 		return;
                    461: 	    }
1.52      albertel  462: 	    my $action;
                    463: 	    if ($style eq 'rename') {
                    464: 		$action=&mt('Rename');
                    465: 	    } else {
                    466: 		$action=&mt('Move');
                    467: 	    }
1.23      albertel  468: 	    $request->print('<input type="hidden" name="newfilename" value="'.
1.12      foxr      469: 			    $newfilename.
1.52      albertel  470: 			    '" /><p>'.$action.' '.&display($fn).
1.36      www       471: 			    '</tt><br />to '.&display($newfilename).'?</p>');
                    472: 	    &CloseForm1($request, $fn);
1.12      foxr      473: 	} else {
1.47      sakharuk  474: 	    $request->print('<p>'.&mt('No new filename specified.').'</p></form>');
1.12      foxr      475: 	    return;
                    476: 	}
                    477:     } else {
1.47      sakharuk  478: 	$request->print('<p> '.&mt('No such file').': '.&display($fn).'</p></form>');
1.12      foxr      479: 	return;
                    480:     }
                    481:     
                    482: }
1.55      albertel  483: 
1.12      foxr      484: =pod
                    485: 
                    486: =item Delete1
                    487: 
                    488:    Performs phase 1 processing of the delete operation.  In phase one
                    489:   we just check to be sure the file exists.
                    490: 
                    491: Parameters:
                    492: 
                    493: =over 4
                    494: 
1.36      www       495: =item   $request   - Apache Request Object [in] request object for the current 
1.12      foxr      496:                 request.
                    497: 
1.36      www       498: =item   $user      - string [in]  Name of the user initiating the request.
1.12      foxr      499: 
1.36      www       500: =item   $domain    - string [in]  Domain the initiating user is logged in as
1.13      foxr      501: 
1.36      www       502: =item   $filename  - string [in]  Source filename.
1.12      foxr      503: 
                    504: =back
                    505: 
                    506: =cut
                    507: 
                    508: sub Delete1 {
1.55      albertel  509:     my ($request, $user, $domain, $fn) = @_;
1.12      foxr      510: 
1.55      albertel  511:     if( -e $fn) {
                    512: 	$request->print('<input type="hidden" name="newfilename" value="'.
                    513: 			$fn.'"/>');
                    514: 	unless (&obsolete_unpub($user,$domain,$fn)) {
                    515: 	    $request->print('<h3>'.&mt('Cannot delete non-obsolete published file').'</h3>'.
                    516: 			    '<br /><a href="'.&url($fn).'">'.&mt('Cancel').'</a>');
                    517: 	    return;
                    518: 	}
                    519: 	$request->print('<p>'.&mt('Delete').' '.&display($fn).'?</p>');
                    520: 	&CloseForm1($request, $fn);
                    521:     } else {
                    522: 	$request->print('<p>'.&mt('No such file').': '.&display($fn).'</p></form>');
1.50      www       523:     }
1.12      foxr      524: }
                    525: 
                    526: =pod
                    527: 
                    528: =item Copy1($request, $user, $domain, $filename, $newfilename)
                    529: 
                    530:    Performs phase 1 processing of the construction space copy command.
1.17      harris41  531:    Ensure that the source file exists.  Ensure that a destination exists,
                    532:    also warn if the destination already exists.
1.12      foxr      533: 
                    534: Parameters:
                    535: 
                    536: =over 4
                    537: 
                    538: =item   $request   - Apache Request Object [in] request object for the current 
                    539:                 request.
                    540: 
                    541: =item   $user      - string [in]  Name of the user initiating the request.
                    542: 
                    543: =item   $domain    - string [in]  Domain the initiating user is logged in as
                    544: 
1.36      www       545: =item   $fn  - string [in]  Source filename.
1.12      foxr      546: 
                    547: =item   $newfilename-string [in]  Destination filename.
                    548: 
                    549: =back
                    550: 
                    551: =cut
                    552: 
                    553: sub Copy1 {
1.42      albertel  554:     my ($request, $user, $domain, $fn, $newfilename) = @_;
1.12      foxr      555: 
1.42      albertel  556:     if(-e $fn) {
                    557: 	# is dest a dir
                    558: 	if (-d $newfilename) {
                    559: 	    if ($fn =~ m|/([^/]*)$|) { $newfilename .= '/'.$1; }
                    560: 	}
                    561: 	if ($newfilename =~ m|/[^\.]+$|) {
                    562: 	    #no extension add on original extension
                    563: 	    if ($fn =~ m|/[^\.]*\.([^\.]+)$|) {	$newfilename.='.'.$1; }
                    564: 	} 
                    565: 	$newfilename=~s://+:/:g; # remove duplicate /
                    566: 	while ($newfilename=~m:/\.\./:) {
                    567: 	    $newfilename=~ s:/[^/]+/\.\./:/:g; #remove dir/..
                    568: 	}
                    569: 	$request->print(&checksuffix($fn,$newfilename));
                    570: 	my $return=&exists($user, $domain, $newfilename);
                    571: 	$request->print($return);
                    572: 	if ($return =~/^Error:/) {
1.47      sakharuk  573: 	    $request->print('<br /><a href="'.&url($fn).'">'.&mt('Cancel').'</a>');
1.42      albertel  574: 	    return;
                    575: 	}
                    576: 	$request->print('<input type="hidden" name="newfilename" value="'.
                    577: 			$newfilename.
1.47      sakharuk  578: 			'" /><p>'.&mt('Copy').' '.&display($fn).'<br />to '.
1.42      albertel  579: 			&display($newfilename).'?</p>');
                    580: 	&CloseForm1($request, $fn);
                    581:     } else {
1.47      sakharuk  582: 	$request->print('<p>'.&mt('No such file').': '.&display($fn).'</p></form>');
1.21      albertel  583:     }
1.19      albertel  584: }
                    585: 
                    586: =pod
                    587: 
1.12      foxr      588: =item NewDir1
                    589:  
                    590:   Does all phase 1 processing of directory creation:
                    591:   Ensures that the user provides a new directory name,
                    592:   and that the directory does not already exist.
                    593: 
                    594: Parameters:
                    595: 
                    596: =over 4
                    597: 
                    598: =item   $request  - Apache Request Object [in] - Server request object for the
1.17      harris41  599:                current url.
1.12      foxr      600: 
                    601: =item   $username - Name of the user that is requesting the directory creation.
                    602: 
1.36      www       603: =item $domain - Domain user is in
                    604: 
                    605: =item   $fn     - source file.
1.12      foxr      606: 
                    607: =item   $newdir   - Name of the directory to be created; path relative to the 
                    608:                top level of construction space.
                    609: =back
                    610: 
                    611: Side Effects:
                    612: 
                    613: =over 4
                    614: 
                    615: =item A new form is displayed.  Clicking on the confirmation button
                    616: causes the newdir operation to transition into phase 2.  The hidden field
                    617: "newfilename" is set with the construction space path to the new directory.
                    618: 
                    619: 
                    620: =back
                    621: 
                    622: =cut
                    623: 
                    624: 
1.55      albertel  625: sub NewDir1 {
                    626:     my ($request, $username, $domain, $fn, $newfilename, $mode) = @_;
                    627: 
                    628:     my $result=&exists($username,$domain,$newfilename);
                    629:     if ($result) {
                    630: 	$request->print('<font color="red">'.$result.'</font></form>');
                    631:     } else {
                    632: 	if ($mode eq 'testbank') {
                    633: 	    $request->print('<input type="hidden" name="callingmode" value="testbank">');
                    634: 	} elsif ($mode eq 'imsimport') {
                    635: 	    $request->print('<input type="hidden" name="callingmode" value="imsimport">');
                    636: 	}
                    637: 	$request->print('<input type="hidden" name="newfilename" value="'.
                    638: 			$newfilename.'" /><p>'.&mt('Make new directory').' '.
                    639: 			&display($newfilename).'?</p>');
                    640: 	&CloseForm1($request, $fn);
                    641:     }
1.12      foxr      642: }
                    643: 
1.44      taceyjo1  644: 
                    645: sub Decompress1 {
1.55      albertel  646:     my ($request, $user, $domain, $fn) = @_;
                    647:     if( -e $fn) {
1.44      taceyjo1  648:    	$request->print('<input type="hidden" name="newfilename" value="'.$fn.'"/>');
1.47      sakharuk  649:    	$request->print('<p>'.&mt('Decompress').' '.&display($fn).'?</p>');
1.44      taceyjo1  650:    	&CloseForm1($request, $fn);
1.55      albertel  651:     } else {
                    652: 	$request->print('<p>'.&mt('No such file').': '.&display($fn).'</p></form>');
                    653:     }
1.44      taceyjo1  654: }
1.55      albertel  655: 
1.12      foxr      656: =pod
                    657: 
1.22      albertel  658: =item NewFile1
                    659:  
                    660:   Does all phase 1 processing of file creation:
                    661:   Ensures that the user provides a new filename, adds proper extension
                    662:   if needed and that the file does not already exist, if it is a html,
                    663:   problem, page, or sequence, it then creates a form link to hand the
                    664:   actual creation off to the proper handler.
                    665: 
                    666: Parameters:
                    667: 
                    668: =over 4
                    669: 
                    670: =item   $request  - Apache Request Object [in] - Server request object for the
                    671:                current url.
                    672: 
                    673: =item   $username - Name of the user that is requesting the directory creation.
                    674: 
                    675: =item   $domain   - Name of the domain of the user
                    676: 
1.36      www       677: =item   $fn      - Source file name
1.22      albertel  678: 
                    679: =item   $newfilename
                    680:                   - Name of the file to be created; no path information
                    681: =back
                    682: 
                    683: Side Effects:
                    684: 
                    685: =over 4
                    686: 
                    687: =item 2 new forms are displayed.  Clicking on the confirmation button
                    688: causes the browser to attempt to load the specfied URL, allowing the
1.36      www       689: proper handler to take care of file creation. There is also a Cancel
1.22      albertel  690: button which returns you to the driectory listing you came from
                    691: 
                    692: =back
                    693: 
                    694: =cut
                    695: 
                    696: sub NewFile1 {
1.36      www       697:     my ($request, $user, $domain, $fn, $newfilename) = @_;
1.22      albertel  698: 
                    699:     if ($ENV{'form.action'} =~ /new(.+)file/) {
                    700: 	my $extension=$1;
1.40      www       701: 
                    702:         ##Informs User (name).(number).(extension) not allowed 
                    703: 	if($newfilename =~ /\.(\d+)\.(\w+)$/){
                    704: 	    $r->print('<font color="red">'.$newfilename.
1.47      sakharuk  705: 		      ' - '.&mt('Bad Filename').'<br />('.&mt('name').').('.&mt('number').').('.&mt('extension').')'.
                    706: 		      ' '.&mt('Not Allowed').'</font>');
1.40      www       707: 	    return;
                    708: 	}
1.22      albertel  709: 	if ($newfilename !~ /\Q.$extension\E$/) {
1.26      albertel  710: 	    if ($newfilename =~ m|^[^\.]*\.([^\.]+)$|) {
                    711: 		#already has an extension strip it and add in expected one
                    712: 		$newfilename =~ s|.([^\.]+)$||;
                    713: 	    }
1.22      albertel  714: 	    $newfilename.=".$extension";
                    715: 	}
1.31      albertel  716:     }
1.39      www       717:     my $result=&exists($user,$domain,$newfilename);
                    718:     if($result) {
                    719: 	$request->print('<font color="red">'.$result.'</font></form>');
                    720:     } else {
1.47      sakharuk  721: 	$request->print('<p>'.&mt('Make new file').' '.&display($newfilename).'?</p>');
1.22      albertel  722: 	$request->print('</form>');
1.36      www       723: 	$request->print('<form action="'.&url($newfilename).
1.47      sakharuk  724: 			'" method="POST"><p><input type="submit" value="'.&mt('Continue').'" /></p></form>');
1.36      www       725: 	$request->print('<form action="'.&url($fn).
1.47      sakharuk  726: 			'" method="POST"><p><input type="submit" value="'.&mt('Cancel').'" /></p></form>');
1.22      albertel  727:     }
                    728: }
                    729: 
                    730: =pod
                    731: 
1.12      foxr      732: =item phaseone($r, $fn, $uname, $udom)
                    733: 
                    734:   Peforms phase one processing of the request.  In phase one, error messages
                    735: are returned if the request cannot be performed (e.g. attempts to manipulate
                    736: files that are nonexistent).  If the operation can be performed, what is
                    737: about to be done will be presented to the user for confirmation.  If the
                    738: user confirms the request, then phase two is executed, the action 
                    739: performed and reported to the user.
                    740: 
                    741:  Parameters:
                    742: 
                    743: =over 4
                    744: 
                    745: =item $r  - request object [in] - The Apache request being executed.
                    746: 
                    747: =item $fn = string [in] - The filename being manipulated by the 
                    748:                              request.
                    749: 
                    750: =item $uname - string [in] Name of user logged in and doing this action.
                    751: 
1.17      harris41  752: =item $udom  - string [in] Domain name under which the user logged in. 
1.12      foxr      753: 
                    754: =back
                    755: 
                    756: =cut
1.8       albertel  757: 
1.1       www       758: sub phaseone {
1.55      albertel  759:     my ($r,$fn,$uname,$udom)=@_;
1.12      foxr      760:   
1.58      albertel  761:     my $doingdir=0;
                    762:     if ($ENV{'form.action'} eq 'newdir') { $doingdir=1; }
                    763:     my $newfilename=&cleanDest($r,$ENV{'form.newfilename'},$doingdir);
1.55      albertel  764:     $newfilename=&relativeDest($fn,$newfilename,$uname);
                    765:     $r->print('<form action="/adm/cfile" method="post">'.
                    766: 	      '<input type="hidden" name="qualifiedfilename" value="'.$fn.'" />'.
                    767: 	      '<input type="hidden" name="phase" value="two" />'.
                    768: 	      '<input type="hidden" name="action" value="'.$ENV{'form.action'}.'" />');
1.12      foxr      769:   
1.55      albertel  770:     if ($ENV{'form.action'} eq 'rename') {
                    771: 	&Rename1($r, $uname, $udom, $fn, $newfilename, 'rename');
                    772:     } elsif ($ENV{'form.action'} eq 'move') {
                    773: 	&Rename1($r, $uname, $udom, $fn, $newfilename, 'move');
                    774:     } elsif ($ENV{'form.action'} eq 'delete') { 
                    775: 	&Delete1($r, $uname, $udom, $fn);
                    776:     } elsif ($ENV{'form.action'} eq 'decompress') {
                    777: 	&Decompress1($r, $uname, $udom, $fn);
                    778:     } elsif ($ENV{'form.action'} eq 'copy') { 
                    779: 	if($newfilename) {
                    780: 	    &Copy1($r, $uname, $udom, $fn, $newfilename);
                    781: 	} else {
                    782: 	    $r->print('<p>'.&mt('No new filename specified.').'</p></form>');
                    783: 	}
                    784:     } elsif ($ENV{'form.action'} eq 'newdir') {
                    785: 	my $mode = '';
                    786: 	if (exists($ENV{'form.callingmode'}) ) {
                    787: 	    $mode = $ENV{'form.callingmode'};
                    788: 	}   
                    789: 	&NewDir1($r, $uname, $udom, $fn, $newfilename, $mode);
                    790:     }  elsif ($ENV{'form.action'} eq 'newfile' ||
                    791: 	      $ENV{'form.action'} eq 'newhtmlfile' ||
                    792: 	      $ENV{'form.action'} eq 'newproblemfile' ||
                    793: 	      $ENV{'form.action'} eq 'newpagefile' ||
                    794: 	      $ENV{'form.action'} eq 'newsequencefile' ||
                    795: 	      $ENV{'form.action'} eq 'newrightsfile' ||
                    796: 	      $ENV{'form.action'} eq 'newstyfile' ||
                    797: 	      $ENV{'form.action'} eq 'Select Action') {
                    798: 	if ($newfilename) {
                    799: 	    &NewFile1($r, $uname, $udom, $fn, $newfilename);
                    800: 	} else {
                    801: 	    $r->print('<p>'.&mt('No new filename specified.').'</p></form>');
                    802: 	}
                    803:     }
1.12      foxr      804: }
                    805: 
                    806: =pod
                    807: 
                    808: =item Rename2($request, $user, $directory, $oldfile, $newfile)
                    809: 
1.17      harris41  810: Performs phase 2 processing of a rename reequest.   This is where the
1.12      foxr      811: actual rename is performed.
                    812: 
                    813: Parameters
                    814: 
                    815: =over 4
                    816: 
                    817: =item $request - Apache request object [in] The request being processed.
                    818: 
                    819: =item $user  - string [in] The name of the user initiating the request.
                    820: 
                    821: =item $directory - string [in] The name of the directory relative to the
                    822:                  construction space top level of the renamed file.
                    823: 
                    824: =item $oldfile - Name of the file.
                    825: 
                    826: =item $newfile - Name of the new file.
                    827: 
                    828: =back
                    829: 
                    830: Returns:
                    831: 
                    832: =over 4
                    833: 
                    834: =item 1 Success.
                    835: 
                    836: =item 0 Failure.
                    837: 
                    838: =cut
                    839: 
                    840: sub Rename2 {
                    841: 
1.55      albertel  842:     my ($request, $user, $directory, $oldfile, $newfile) = @_;
1.12      foxr      843: 
1.55      albertel  844:     &Debug($request, "Rename2 directory: ".$directory." old file: ".$oldfile.
                    845: 	   " new file ".$newfile."\n");
                    846:     &Debug($request, "Target is: ".$directory.'/'.
                    847: 	   $newfile);
                    848:     if (-e $oldfile) {
                    849: 
                    850: 	my $oRN=$oldfile;
                    851: 	my $nRN=$newfile;
                    852: 	unless (rename($oldfile,$newfile)) {
                    853: 	    $request->print('<font color="red">'.&mt('Error').': '.$!.'</font>');
                    854: 	    return 0;
                    855: 	}
                    856: 	## If old name.(extension) exits, move under new name.
                    857: 	## If it doesn't exist and a new.(extension) exists  
                    858: 	## delete it (only concern when renaming over files)
                    859: 	my $tmp1=$oRN.'.meta';
                    860: 	my $tmp2=$nRN.'.meta';
                    861: 	if(-e $tmp1){
                    862: 	    unless(rename($tmp1,$tmp2)){ }
                    863: 	} elsif(-e $tmp2){
                    864: 	    unlink $tmp2;
                    865: 	}
                    866: 	$tmp1=$oRN.'.save';
                    867: 	$tmp2=$nRN.'.save';
                    868: 	if(-e $tmp1){
                    869: 	    unless(rename($tmp1,$tmp2)){ }
                    870: 	} elsif(-e $tmp2){
                    871: 	    unlink $tmp2;
                    872: 	}
                    873: 	$tmp1=$oRN.'.log';
                    874: 	$tmp2=$nRN.'.log';
                    875: 	if(-e $tmp1){
                    876: 	    unless(rename($tmp1,$tmp2)){ }
                    877: 	} elsif(-e $tmp2){
                    878: 	    unlink $tmp2;
                    879: 	}
                    880: 	$tmp1=$oRN.'.bak';
                    881: 	$tmp2=$nRN.'.bak';
                    882: 	if(-e $tmp1){
                    883: 	    unless(rename($tmp1,$tmp2)){ }
                    884: 	} elsif(-e $tmp2){
                    885: 	    unlink $tmp2;
                    886: 	}
                    887:     } else {
                    888: 	$request->print("<p> ".&mt('No such file').": ".&display($oldfile).'</p></form>');
                    889: 	return 0;
                    890:     }
                    891:     return 1;
1.12      foxr      892: }
1.55      albertel  893: 
1.12      foxr      894: =pod
                    895: 
                    896: =item Delete2($request, $user, $filename)
                    897: 
                    898:   Performs phase two of a delete.  The user has confirmed that they want 
                    899: to delete the selected file.   The file is deleted and the results of the
                    900: delete attempt are indicated.
                    901: 
                    902: Parameters:
                    903: 
                    904: =over 4
                    905: 
                    906: =item $request - Apache Request object [in] the request object for the current
                    907:                  delete operation.
                    908: 
                    909: =item $user    - string [in]  The name of the user initiating the delete
                    910:                  request.
                    911: 
1.17      harris41  912: =item $filename - string [in] The name of the file, relative to construction
                    913:                   space, to delete.
1.12      foxr      914: 
                    915: =back
                    916: 
                    917: Returns:
                    918:   1 - success.
                    919:   0 - Failure.
                    920: 
                    921: =cut
                    922: 
                    923: sub Delete2 {
1.55      albertel  924:     my ($request, $user, $filename) = @_;
                    925:     if(opendir DIR, $filename) { 
                    926: 	my @files=readdir(DIR);
                    927: 	shift @files; shift @files; # takes off . and ..
                    928: 	if(@files) { 
                    929: 	    $request->print('<font color="red"> '.&mt('Error: Directory Non Empty').'</font>'); 
                    930: 	    return 0;
                    931: 	} else {   
                    932: 	    if(-e $filename) {
                    933: 		unless(rmdir($filename)) {
                    934: 		    $request->print('<font color="red">'.&mt('Error').': '.$!.'</font>');
                    935: 		    return 0;
                    936: 		}
                    937: 	    } else {
                    938: 		$request->print('<p> '.&mt('No such file').'. </p></form>');
                    939: 		return 0;
                    940: 	    }
                    941: 	}
1.48      taceyjo1  942:     } else {
1.55      albertel  943: 	if(-e $filename) {
                    944: 	    unless(unlink($filename)) {
                    945: 		$request->print('<font color="red">'.&mt('Error').': '.$!.'</font>');
                    946: 		return 0;
                    947: 	    }
                    948: 	} else {
                    949: 	    $request->print('<p> '.&mt('No such file').'. </p></form>');
                    950: 	    return 0;
1.46      taceyjo1  951: 	}
1.55      albertel  952:     }
                    953:     return 1;
1.12      foxr      954: }
                    955: 
                    956: =pod
                    957: 
                    958: =item Copy2($request, $username, $dir, $oldfile, $newfile)
                    959: 
                    960:    Performs phase 2 of a copy.  The file is copied and the status 
                    961:    of that copy is reported back to the user.
                    962: 
                    963: =over 4
                    964: 
                    965: =item $request - Apache request object [in]; the apache request currently
                    966:                  being executed.
                    967: 
                    968: =item $username - string [in] Name of the user who is requesting the copy.
                    969: 
                    970: =item $dir - string [in] Directory path relative to the construction space
                    971:              of the destination file.
                    972: 
                    973: =item $oldfile - string [in] Name of the source file.
                    974: 
                    975: =item $newfile - string [in] Name of the destination file.
                    976: 
                    977: 
                    978: =back
                    979: 
                    980: Returns 0 failure, and 0 successs.
                    981: 
                    982: =cut
1.1       www       983: 
1.12      foxr      984: sub Copy2 {
                    985:     my ($request, $username, $dir, $oldfile, $newfile) = @_;
                    986:     &Debug($request ,"Will try to copy $oldfile to $newfile");
                    987:     if(-e $oldfile) {
                    988: 	unless (copy($oldfile, $newfile)) {
1.47      sakharuk  989: 	    $request->print('<font color="red"> '.&mt('copy Error').': '.$!.'</font>');
1.12      foxr      990: 	    return 0;
1.61    ! albertel  991: 	} elsif (!chmod(0660, $newfile)) {
        !           992: 	    $request->print('<font color="red"> '.&mt('chmod error').': '.$!.'</font>');
        !           993: 	    return 0;
        !           994: 	} elsif (-e $oldfile.'.meta' && 
        !           995: 		 !copy($oldfile.'.meta', $newfile.'.meta') &&
        !           996: 		 !chmod(0660, $newfile.'.meta')) {
        !           997: 	    $request->print('<font color="red"> '.&mt('copy metadata error').
        !           998: 			    ': '.$!.'</font>');
        !           999: 	    return 0;
1.12      foxr     1000: 	} else {
                   1001: 	    return 1;
                   1002: 	}
1.11      albertel 1003:     } else {
1.47      sakharuk 1004: 	$request->print('<p> '.&mt('No such file').' </p>');
1.12      foxr     1005: 	return 0;
1.11      albertel 1006:     }
1.12      foxr     1007:     return 1;
                   1008: }
1.55      albertel 1009: 
1.12      foxr     1010: =pod
                   1011: 
                   1012: =item NewDir2($request, $user, $newdirectory)
1.1       www      1013: 
1.12      foxr     1014: 	Performs phase 2 processing of directory creation.  This involves creating the directory and
                   1015: 	reporting the results of that creation to the user.
                   1016: 	
                   1017: Parameters:
                   1018: =over 4
                   1019: 
                   1020: =item $request  - Apache request object [in].  Object representing the current HTTP request.
                   1021: 
                   1022: =item $user - string [in] The name of the user that is initiating the request.
                   1023: 
                   1024: =item $newdirectory - string [in] The full path of the directory being created.
                   1025: 
                   1026: =back
                   1027: 
                   1028: Returns 0 - failure 1 - success.
                   1029: 
                   1030: =cut
1.8       albertel 1031: 
1.12      foxr     1032: sub NewDir2 {
1.55      albertel 1033:     my ($request, $user, $newdirectory) = @_;
1.12      foxr     1034:   
1.55      albertel 1035:     unless(mkdir($newdirectory, 02770)) {
                   1036: 	$request->print('<font color="red">'.&mt('Error').': '.$!.'</font>');
                   1037: 	return 0;
                   1038:     }
                   1039:     unless(chmod(02770, ($newdirectory))) {
                   1040: 	$request->print('<font color="red"> '.&mt('Error').': '.$!.'</font>');
                   1041: 	return 0;
                   1042:     }
                   1043:     return 1;
1.1       www      1044: }
1.55      albertel 1045: 
1.44      taceyjo1 1046: sub decompress2 {
1.55      albertel 1047:     my ($r, $user, $dir, $file) = @_;
                   1048:     &Apache::lonnet::appenv('cgi.file' => $file);
                   1049:     &Apache::lonnet::appenv('cgi.dir' => $dir);
                   1050:     my $result=&Apache::lonnet::ssi_body('/cgi-bin/decompress.pl');
                   1051:     $r->print($result);
                   1052:     &Apache::lonnet::delenv('cgi.file');
                   1053:     &Apache::lonnet::delenv('cgi.dir');
                   1054:     return 1;
1.44      taceyjo1 1055: }
1.55      albertel 1056: 
1.12      foxr     1057: =pod
                   1058: 
                   1059: =item phasetwo($r, $fn, $uname, $udom)
                   1060: 
                   1061:    Controls the phase 2 processing of file management
                   1062:    requests for construction space.  In phase one, the user
                   1063:    was asked to confirm the operation.  In phase 2, the operation
                   1064:    is performed and the result is shown.
                   1065: 
                   1066:   The strategy is to break out the processing into specific action processors
                   1067:   named action2 where action is the requested action and the 2 denotes 
                   1068:   phase 2 processing.
                   1069: 
                   1070: Parameters:
                   1071: 
                   1072: =over 4
                   1073: 
                   1074: =item  $r     - Apache Request object [in] The request object for this httpd
                   1075:            transaction.
                   1076: 
                   1077: =item  $fn    - string [in]  A filename indicating the object that is being
                   1078:            manipulated.
                   1079: 
                   1080: =item  $uname - string [in] The name of the user initiating the file management
                   1081:            request.
                   1082: 
                   1083: =item  $udom  - string  [in] The login domain of the user initiating the
                   1084:            file management request.
                   1085: =back
                   1086: 
                   1087: =cut
                   1088: 
1.1       www      1089: sub phasetwo {
                   1090:     my ($r,$fn,$uname,$udom)=@_;
1.12      foxr     1091:     
1.9       foxr     1092:     &Debug($r, "loncfile - Entering phase 2 for $fn");
1.12      foxr     1093:     
                   1094:     # Break down the file into it's component pieces.
                   1095:     
1.27      albertel 1096:     my $dir;		# Directory path
                   1097:     my $main;		# Filename.
                   1098:     my $suffix;		# Extension.
1.46      taceyjo1 1099:     if ($fn=~m:(.*)/([^/]+):) {
1.27      albertel 1100: 	$dir=$1;		# Directory path
                   1101: 	$main=$2;		# Filename.
1.54      albertel 1102:     }
                   1103:     if($main=~m:\.(\w+)$:){ # Fixes problems with filenames with no extensions
                   1104: 	$main=$`; #This is what is before the match (.) so it's just the main filename, yea it's nasty
                   1105: 	$suffix=$1; #This is the actually filename extension if it exists
                   1106:     }
1.12      foxr     1107:     my $dest;                   # On success this is where we'll go.
1.9       foxr     1108:     
1.55      albertel 1109:     &Debug($r,"loncfile::phase2 dir = $dir main = $main suffix = $suffix");
                   1110:     &Debug($r,"    newfilename = ".$ENV{'form.newfilename'});
1.9       foxr     1111: 
                   1112:     my $conspace=$fn;
1.12      foxr     1113:     
1.55      albertel 1114:     &Debug($r,"loncfile::phase2 Full construction space name: $conspace");
1.12      foxr     1115:     
1.55      albertel 1116:     &Debug($r,"loncfie::phase2 action is $ENV{'form.action'}");
1.12      foxr     1117:     
                   1118:     # Select the appropriate processing sub.
1.44      taceyjo1 1119:     if ($ENV{'form.action'} eq 'decompress') { 
                   1120: 	$main .= '.';
                   1121: 	$main .= $suffix;
1.55      albertel 1122: 	if(!&decompress2($r, $uname, $dir, $main)) {
                   1123: 	    return ;
                   1124: 	}
                   1125: 	$dest = $dir."/.";
1.44      taceyjo1 1126:     } elsif ($ENV{'form.action'} eq 'rename') { # Rename.
1.12      foxr     1127: 	if($ENV{'form.newfilename'}) {
1.27      albertel 1128: 	    if (!defined($dir)) {
                   1129: 		$fn=~m:^(.*)/:;
1.55      albertel 1130: 		$dir=$1; 
1.27      albertel 1131: 	    }
1.12      foxr     1132: 	    if(!&Rename2($r, $uname, $dir, $fn, $ENV{'form.newfilename'})) {
                   1133: 		return;
                   1134: 	    }
1.56      albertel 1135: 	    $dest = $ENV{'form.newfilename'};
1.12      foxr     1136: 	}
1.5       www      1137:     } elsif ($ENV{'form.action'} eq 'delete') { 
1.12      foxr     1138: 	if(!&Delete2($r, $uname, $ENV{'form.newfilename'})) {
                   1139: 	    return ;
                   1140: 	}
                   1141: 	# Once a resource is deleted, we just list the directory that
                   1142: 	# previously held it.
                   1143: 	#
1.20      albertel 1144: 	$dest = $dir."/.";		# Parent dir.
1.5       www      1145:     } elsif ($ENV{'form.action'} eq 'copy') { 
1.12      foxr     1146: 	if($ENV{'form.newfilename'}) {
                   1147: 	    if(!&Copy2($r, $uname, $dir, $fn, $ENV{'form.newfilename'})) {
1.44      taceyjo1 1148: 		return ;
1.55      albertel 1149: 	    }
1.12      foxr     1150: 	    $dest = $ENV{'form.newfilename'};
1.55      albertel 1151:      	} else {
1.47      sakharuk 1152: 	    $r->print('<p>'.&mt('No New filename specified').'</p></form>');
1.12      foxr     1153: 	    return;
                   1154: 	}
                   1155: 	
1.5       www      1156:     } elsif ($ENV{'form.action'} eq 'newdir') {
1.38      www      1157:         my $newdir= $ENV{'form.newfilename'};
1.12      foxr     1158: 	if(!&NewDir2($r, $uname, $newdir)) {
                   1159: 	    return;
                   1160: 	}
1.55      albertel 1161: 	$dest = $newdir."/";
1.12      foxr     1162:     }
1.51      raeburn  1163:     if ( ($ENV{'form.action'} eq 'newdir') && ($ENV{'form.phase'} eq 'two') && ( ($ENV{'form.callingmode'} eq 'testbank') || ($ENV{'form.callingmode'} eq 'imsimport') ) ) {
1.55      albertel 1164: 	$r->print('<h3><a href="javascript:self.close()">'.&mt('Done').'</a></h3>');
1.51      raeburn  1165:     } else {
1.55      albertel 1166: 	$r->print('<h3><a href="'.&url($dest).'">'.&mt('Done').'</a></h3>');
1.51      raeburn  1167:     }
1.1       www      1168: }
                   1169: 
                   1170: sub handler {
                   1171: 
1.55      albertel 1172:     $r=shift;
1.1       www      1173: 
1.60      www      1174:     &Apache::loncommon::get_unprocessed_cgi($ENV{'QUERY_STRING'},['decompress','action','filename','newfilename']);
1.9       foxr     1175: 
1.55      albertel 1176:     &Debug($r, "loncfile.pm - handler entered");
                   1177:     &Debug($r, " filename: ".$ENV{'form.filename'});
                   1178:     &Debug($r, " newfilename: ".$ENV{'form.newfilename'});
1.36      www      1179: #
                   1180: # Determine the root filename
                   1181: # This could come in as "filename", which actually is a URL, or
                   1182: # as "qualifiedfilename", which is indeed a real filename in filesystem
                   1183: #
1.55      albertel 1184:     my $fn;
1.1       www      1185: 
1.55      albertel 1186:     if ($ENV{'form.filename'}) {
1.44      taceyjo1 1187: 	&Debug($r, "test: $ENV{'form.filename'}");
1.55      albertel 1188: 	$fn=&Apache::lonnet::unescape($ENV{'form.filename'});
                   1189: 	$fn=&URLToPath($fn);
                   1190:     }  elsif($ENV{'QUERY_STRING'} && $ENV{'form.phase'} ne 'two') {  
                   1191: 	#Just hijack the script only the first time around to inject the
                   1192: 	#correct information for further processing
                   1193: 	$fn=&Apache::lonnet::unescape($ENV{'form.decompress'});
1.44      taceyjo1 1194: 	$fn=&URLToPath($fn);
                   1195: 	$ENV{'form.action'}="decompress";
1.55      albertel 1196:     } elsif ($ENV{'form.qualifiedfilename'}) {
                   1197: 	$fn=$ENV{'form.qualifiedfilename'};
                   1198:     } else {
                   1199: 	&Debug($r, "loncfile::handler - no form.filename");
                   1200: 	$r->log_reason($ENV{'user.name'}.' at '.$ENV{'user.domain'}.
                   1201: 		       ' unspecified filename for cfile', $r->filename); 
                   1202: 	return HTTP_NOT_FOUND;
                   1203:     }
1.44      taceyjo1 1204: 
1.55      albertel 1205:     unless ($fn) { 
                   1206: 	&Debug($r, "loncfile::handler - doctored url is empty");
                   1207: 	$r->log_reason($ENV{'user.name'}.' at '.$ENV{'user.domain'}.
                   1208: 		       ' trying to cfile non-existing file', $r->filename); 
                   1209: 	return HTTP_NOT_FOUND;
                   1210:     } 
1.1       www      1211: 
                   1212: # ----------------------------------------------------------- Start page output
1.55      albertel 1213:     my $uname;
                   1214:     my $udom;
                   1215: 
                   1216:     ($uname,$udom)=
                   1217: 	&Apache::loncacc::constructaccess($fn,$r->dir_config('lonDefDomain'));
                   1218:     &Debug($r, 
                   1219: 	   "loncfile::handler constructaccess uname = $uname domain = $udom");
                   1220:     unless (($uname) && ($udom)) {
                   1221: 	$r->log_reason($uname.' at '.$udom.
                   1222: 		       ' trying to manipulate file '.$ENV{'form.filename'}.
                   1223: 		       ' ('.$fn.') - not authorized', 
                   1224: 		       $r->filename); 
                   1225: 	return HTTP_NOT_ACCEPTABLE;
                   1226:     }
                   1227: 
1.1       www      1228: 
1.55      albertel 1229:     &Apache::loncommon::content_type($r,'text/html');
                   1230:     $r->send_http_header;
                   1231: 
                   1232:     if ( ($ENV{'form.action'} eq 'newdir') && ($ENV{'form.phase'} eq 'two') && ( ($ENV{'form.callingmode'} eq 'testbank') || ($ENV{'form.callingmode'} eq 'imsimport') ) ) {
                   1233: 	my $newdirname = $ENV{'form.newfilename'};
                   1234: 	$r->print('<html><head><title>LON-CAPA Construction Space</title><script language="Javascript">');
                   1235: 	$r->print(qq|
1.51      raeburn  1236: function writeDone() {
                   1237:     var winName = window.opener
                   1238:     window.focus();
                   1239:     winName.document.dataForm.newdir.value = "$newdirname"
                   1240:     setTimeout("self.close()",10000)
                   1241: }
                   1242:   </script>
                   1243:   </head>|);
1.55      albertel 1244: 	my $loaditem = 'onLoad="writeDone()"';
                   1245: 	$r->print(&Apache::loncommon::bodytag('Construction Space File Operation','',$loaditem));
                   1246:     } else {
                   1247: 	$r->print('<html><head><title>LON-CAPA Construction Space</title></head>');
                   1248: 	$r->print(&Apache::loncommon::bodytag('Construction Space File Operation'));
                   1249:     }
1.1       www      1250: 
                   1251:   
1.55      albertel 1252:     $r->print('<h3>'.&mt('Location').': '.&display($fn).'</h3>');
1.1       www      1253:   
1.55      albertel 1254:     if (($uname ne $ENV{'user.name'}) || ($udom ne $ENV{'user.domain'})) {
                   1255: 	$r->print('<h3><font color="red">'.&mt('Co-Author').': '.$uname.' at '.$udom.
                   1256: 		  '</font></h3>');
                   1257:     }
                   1258: 
                   1259: 
                   1260:     &Debug($r, "loncfile::handler Form action is $ENV{'form.action'} ");
                   1261:     if ($ENV{'form.action'} eq 'delete') {
                   1262:       	$r->print('<h3>'.&mt('Delete').'</h3>');
                   1263:     } elsif ($ENV{'form.action'} eq 'rename') {
                   1264: 	$r->print('<h3>'.&mt('Rename').'</h3>');
                   1265:     } elsif ($ENV{'form.action'} eq 'move') {
                   1266: 	$r->print('<h3>'.&mt('Move').'</h3>');
                   1267:     } elsif ($ENV{'form.action'} eq 'newdir') {
                   1268: 	$r->print('<h3>'.&mt('New Directory').'</h3>');
                   1269:     } elsif ($ENV{'form.action'} eq 'decompress') {
                   1270: 	$r->print('<h3>'.&mt('Decompress').'</h3>');
                   1271:     } elsif ($ENV{'form.action'} eq 'copy') {
                   1272: 	$r->print('<h3>'.&mt('Copy').'</h3>');
                   1273:     } elsif ($ENV{'form.action'} eq 'newfile' ||
                   1274: 	     $ENV{'form.action'} eq 'newhtmlfile' ||
                   1275: 	     $ENV{'form.action'} eq 'newproblemfile' ||
                   1276: 	     $ENV{'form.action'} eq 'newpagefile' ||
                   1277: 	     $ENV{'form.action'} eq 'newsequencefile' ||
                   1278: 	     $ENV{'form.action'} eq 'newrightsfile' ||
                   1279: 	     $ENV{'form.action'} eq 'newstyfile' ||
                   1280: 	     $ENV{'form.action'} eq 'Select Action' ) {
                   1281: 	$r->print('<h3>'.&mt('New Resource').'</h3>');
                   1282:     } else {
                   1283: 	$r->print('<p>'.&mt('Unknown Action').' '.$ENV{'form.action'}.' </p></body></html>');
                   1284: 	return OK;  
                   1285:     }
                   1286:     if ($ENV{'form.phase'} eq 'two') {
                   1287: 	&Debug($r, "loncfile::handler  entering phase2");
                   1288: 	&phasetwo($r,$fn,$uname,$udom);
                   1289:     } else {
                   1290: 	&Debug($r, "loncfile::handler  entering phase1");
                   1291: 	&phaseone($r,$fn,$uname,$udom);
                   1292:     }
1.1       www      1293: 
1.55      albertel 1294:     $r->print('</body></html>');
                   1295:     return OK;  
1.1       www      1296: }
                   1297: 
                   1298: 1;
                   1299: __END__
1.9       foxr     1300: 

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