]>
git.p6c8.net - devedit.git/blob - modules/Command.pm
7a1e9b73b9caf9939fa31a66de3cfd28180ec002
4 # Dev-Editor - Module Command
6 # Execute Dev-Editor's commands
8 # Author: Patrick Canterino <patrick@patshaping.de>
9 # Last modified: 2011-01-05
11 # Copyright (C) 1999-2000 Roland Bluethgen, Frank Schoenmann
12 # Copyright (C) 2003-2009 Patrick Canterino
13 # All Rights Reserved.
15 # This file can be distributed and/or modified under the terms of
16 # of the Artistic License 1.0 (see also the LICENSE file found at
17 # the top level of the Dev-Editor distribution).
29 use Digest::MD5 qw(md5_hex);
30 use POSIX
qw(strftime);
39 my $script = encode_html
($ENV{'SCRIPT_NAME'});
40 my $users = eval('getpwuid(0)') && eval('getgrgid(0)');
42 my %dispatch = ('show' => \
&exec_show
,
43 'beginedit' => \
&exec_beginedit
,
44 'endedit' => \
&exec_endedit
,
45 'download' => \
&exec_download
,
46 'mkdir' => \
&exec_mkdir
,
47 'mkfile' => \
&exec_mkfile
,
48 'upload' => \
&exec_upload
,
49 'unpack' => \
&exec_unpack
,
50 'copy' => \
&exec_copy
,
51 'rename' => \
&exec_rename
,
52 'remove' => \
&exec_remove
,
53 'remove_multi' => \
&exec_remove_multi
,
54 'chprop' => \
&exec_chprop
,
55 'about' => \
&exec_about
60 use base
qw(Exporter);
62 @EXPORT = qw(exec_command);
66 # Execute the specified command
68 # Params: 1. Command to execute
69 # 2. Reference to user input hash
70 # 3. Reference to config hash
72 # Return: Output of the command (Scalar Reference)
76 my ($command,$data,$config) = @_;
78 foreach(keys(%dispatch))
80 if(lc($_) eq lc($command))
82 my $output = &{$dispatch{$_}}($data,$config);
87 return error
($config->{'errors'}->{'command_unknown'},'/',{COMMAND
=> encode_html
($command)});
92 # View a directory or a file
94 # Params: 1. Reference to user input hash
95 # 2. Reference to config hash
97 # Return: Output of the command (Scalar Reference)
101 my ($data,$config) = @_;
102 my $physical = $data->{'physical'};
103 my $virtual = $data->{'virtual'};
104 my $upper_path = multi_string
(upper_path
($virtual));
106 my $tpl = new Template
;
108 if(-d
$physical && not -l
$physical)
110 # Create directory listing
112 return error
($config->{'errors'}->{'no_dir_access'},$upper_path->{'normal'}) unless(-r
$physical && -x
$physical);
114 my $direntries = dir_read
($physical);
115 return error
($config->{'errors'}->{'dir_read_failed'},$upper_path->{'normal'},{DIR
=> encode_html
($virtual)}) unless($direntries);
117 my $files = $direntries->{'files'};
118 my $dirs = $direntries->{'dirs'};
124 my $filter1 = $data->{'cgi'}->param('filter') || '*'; # The real wildcard
125 my $filter2 = ($filter1 && $filter1 ne '*') ?
$filter1 : ''; # Wildcard for output
127 # Create the link to the upper directory
128 # (only if the current directory is not the root directory)
130 unless($virtual eq '/')
134 my @stat = stat($physical.'/..');
136 my $udtpl = new Template
;
137 $udtpl->read_file($config->{'templates'}->{'dirlist_up'});
139 $udtpl->fillin('UPPER_DIR',$upper_path->{'html'});
140 $udtpl->fillin('UPPER_DIR_URL',$upper_path->{'url'});
141 $udtpl->fillin('DATE',encode_html
(strftime
($config->{'timeformat'},($config->{'use_gmt'}) ?
gmtime($stat[9]) : localtime($stat[9]))));
143 $dirlist .= $udtpl->get_template;
148 foreach my $dir(@
$dirs)
150 next if($config->{'hide_dot_files'} && substr($dir,0,1) eq '.');
151 next unless(dos_wildcard_match
($filter1,$dir));
155 my $phys_path = $physical.'/'.$dir;
156 my $virt_path = multi_string
($virtual.$dir.'/');
158 my @stat = stat($phys_path);
160 my $dtpl = new Template
;
161 $dtpl->read_file($config->{'templates'}->{'dirlist_dir'});
163 $dtpl->fillin('DIR',$virt_path->{'html'});
164 $dtpl->fillin('DIR_URL',$virt_path->{'url'});
165 $dtpl->fillin('DIR_NAME',encode_html
($dir));
166 $dtpl->fillin('DATE',encode_html
(strftime
($config->{'timeformat'},($config->{'use_gmt'}) ?
gmtime($stat[9]) : localtime($stat[9]))));
167 $dtpl->fillin('URL',equal_url
(encode_html
($config->{'httproot'}),$virt_path->{'html'}));
169 $dtpl->parse_if_block('forbidden',is_forbidden_file
($config->{'forbidden'},$virt_path->{'normal'}));
170 $dtpl->parse_if_block('readable',-r
$phys_path && -x
$phys_path);
171 $dtpl->parse_if_block('users',$users && -o
$phys_path);
172 $dtpl->parse_if_block('even',($count % 2) == 0);
174 $dirlist .= $dtpl->get_template;
179 foreach my $file(@
$files)
181 next if($config->{'hide_dot_files'} && substr($file,0,1) eq '.');
182 next unless(dos_wildcard_match
($filter1,$file));
186 my $phys_path = $physical.'/'.$file;
187 my $virt_path = multi_string
($virtual.$file);
189 my @stat = lstat($phys_path);
190 my $too_large = $config->{'max_file_size'} && $stat[7] > $config->{'max_file_size'};
192 my $ftpl = new Template
;
193 $ftpl->read_file($config->{'templates'}->{'dirlist_file'});
195 $ftpl->fillin('FILE',$virt_path->{'html'});
196 $ftpl->fillin('FILE_URL',$virt_path->{'url'});
197 $ftpl->fillin('FILE_NAME',encode_html
($file));
198 $ftpl->fillin('FILE_URL',$virt_path->{'url'});
199 $ftpl->fillin('SIZE',$stat[7]);
200 $ftpl->fillin('DATE',encode_html
(strftime
($config->{'timeformat'},($config->{'use_gmt'}) ?
gmtime($stat[9]) : localtime($stat[9]))));
201 $ftpl->fillin('URL',equal_url
(encode_html
($config->{'httproot'}),$virt_path->{'html'}));
203 $ftpl->parse_if_block('link',-l
$phys_path);
204 $ftpl->parse_if_block('readable',-r
$phys_path);
205 $ftpl->parse_if_block('writeable',-w
$phys_path);
206 $ftpl->parse_if_block('binary',-B
$phys_path);
208 $ftpl->parse_if_block('forbidden',is_forbidden_file
($config->{'forbidden'},$virt_path->{'normal'}));
209 $ftpl->parse_if_block('viewable',(-r
$phys_path && -T
$phys_path && not $too_large) || -l
$phys_path);
210 $ftpl->parse_if_block('editable',(-r
$phys_path && -w
$phys_path && -T
$phys_path && not $too_large) && not -l
$phys_path);
212 $ftpl->parse_if_block('too_large',$config->{'max_file_size'} && $stat[7] > $config->{'max_file_size'});
214 $ftpl->parse_if_block('users',$users && -o
$phys_path);
216 $ftpl->parse_if_block('archive',$File::Access
::has_archive_extract
&& is_archive
($file));
218 $ftpl->parse_if_block('even',($count % 2) == 0);
220 $dirlist .= $ftpl->get_template;
223 $tpl->read_file($config->{'templates'}->{'dirlist'});
225 $tpl->fillin('DIRLIST',$dirlist);
226 $tpl->fillin('DIR',encode_html
($virtual));
227 $tpl->fillin('DIR_URL',escape
($virtual));
228 $tpl->fillin('SCRIPT',$script);
229 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
231 $tpl->fillin('FILTER',encode_html
($filter2));
232 $tpl->fillin('FILTER_URL',escape
($filter2));
234 $tpl->parse_if_block('empty',$dirlist eq '');
235 $tpl->parse_if_block('dir_writeable',-w
$physical);
236 $tpl->parse_if_block('filter',$filter2);
237 $tpl->parse_if_block('gmt',$config->{'use_gmt'});
241 # Show the target of a symbolic link
243 my $link_target = readlink($physical);
245 $tpl->read_file($config->{'templates'}->{'viewlink'});
247 $tpl->fillin('FILE',encode_html
($virtual));
248 $tpl->fillin('DIR',$upper_path->{'html'});
249 $tpl->fillin('DIR_URL',$upper_path->{'url'});
250 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
251 $tpl->fillin('SCRIPT',$script);
253 $tpl->fillin('LINK_TARGET',encode_html
($link_target));
259 return error
($config->{'errors'}->{'no_view'},$upper_path->{'normal'}) unless(-r
$physical);
261 # Check on binary files
262 # We have to do it in this way or empty files will be recognized
265 return error
($config->{'errors'}->{'binary_file'},$upper_path->{'normal'}) unless(-T
$physical);
267 # Is the file too large?
269 return error
($config->{'errors'}->{'file_too_large'},$upper_path->{'normal'},{SIZE
=> $config->{'max_file_size'}}) if($config->{'max_file_size'} && -s
$physical > $config->{'max_file_size'});
273 my $content = file_read
($physical);
274 $$content =~ s/\015\012|\012|\015/\n/g;
276 $tpl->read_file($config->{'templates'}->{'viewfile'});
278 $tpl->fillin('FILE',encode_html
($virtual));
279 $tpl->fillin('FILE_URL',escape
($virtual));
280 $tpl->fillin('DIR',$upper_path->{'html'});
281 $tpl->fillin('DIR_URL',$upper_path->{'url'});
282 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
283 $tpl->fillin('SCRIPT',$script);
285 $tpl->parse_if_block('editable',-w
$physical);
287 $tpl->fillin('CONTENT',encode_html
($$content));
290 my $output = header
(-type
=> 'text/html');
291 $output .= $tpl->get_template;
298 # Lock a file and display a form to edit it
300 # Params: 1. Reference to user input hash
301 # 2. Reference to config hash
303 # Return: Output of the command (Scalar Reference)
305 sub exec_beginedit
($$)
307 my ($data,$config) = @_;
308 my $physical = $data->{'physical'};
309 my $virtual = $data->{'virtual'};
310 my $dir = upper_path
($virtual);
312 return error
($config->{'errors'}->{'link_edit'},$dir) if(-l
$physical);
313 return error
($config->{'errors'}->{'dir_edit'}, $dir) if(-d
$physical);
314 return error
($config->{'errors'}->{'no_edit'}, $dir) unless(-r
$physical && -w
$physical);
316 # Check on binary files
318 return error
($config->{'errors'}->{'binary_file'},$dir) unless(-T
$physical);
320 # Is the file too large?
322 return error
($config->{'errors'}->{'file_too_large'},$dir,{SIZE
=> $config->{'max_file_size'}}) if($config->{'max_file_size'} && -s
$physical > $config->{'max_file_size'});
324 # Show the editing form
326 my $content = file_read
($physical);
327 my $md5sum = md5_hex
($$content);
328 $$content =~ s/\015\012|\012|\015/\n/g;
330 my $tpl = new Template
;
331 $tpl->read_file($config->{'templates'}->{'editfile'});
333 $tpl->fillin('FILE',encode_html
($virtual));
334 $tpl->fillin('FILE_URL',escape
($virtual));
335 $tpl->fillin('DIR',encode_html
($dir));
336 $tpl->fillin('DIR_URL',escape
($dir));
337 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
338 $tpl->fillin('SCRIPT',$script);
339 $tpl->fillin('MD5SUM',$md5sum);
340 $tpl->fillin('CONTENT',encode_html
($$content));
342 $tpl->parse_if_block('error',0);
344 my $output = header
(-type
=> 'text/html');
345 $output .= $tpl->get_template;
352 # Save a file, unlock it and return to directory view
354 # Params: 1. Reference to user input hash
355 # 2. Reference to config hash
357 # Return: Output of the command (Scalar Reference)
361 my ($data,$config) = @_;
362 my $physical = $data->{'physical'};
363 my $virtual = $data->{'virtual'};
364 my $dir = upper_path
($virtual);
365 my $cgi = $data->{'cgi'};
366 my $content = $cgi->param('filecontent');
367 my $md5sum = $cgi->param('md5sum');
370 if(defined $content && $md5sum)
374 $content =~ s/\015\012|\012|\015/\n/g;
376 if($cgi->param('saveas') && $data->{'new_physical'} ne '' && $data->{'new_virtual'} ne '')
378 # Create the new filename
380 $physical = $data->{'new_physical'};
381 $virtual = $data->{'new_virtual'};
384 return error
($config->{'errors'}->{'link_edit'},$dir) if(-l
$physical);
385 return error
($config->{'errors'}->{'dir_edit'},$dir) if(-d
$physical);
386 return error
($config->{'errors'}->{'no_edit'},$dir) if(-e
$physical && !(-r
$physical && -w
$physical));
387 return error
($config->{'errors'}->{'text_to_binary'},$dir) if(-e
$physical && not -T
$physical);
389 # For technical reasons, we can't use file_save() for
394 sysopen(FILE
,$physical,O_RDWR
| O_CREAT
) or return error
($config->{'errors'}->{'edit_failed'},$dir,{FILE
=> encode_html
($virtual)});
395 file_lock
(*FILE
,LOCK_EX
) or do { close(FILE
); return error
($config->{'errors'}->{'edit_failed'},$dir,{FILE
=> encode_html
($virtual)}) };
397 my $md5 = new Digest
::MD5
;
398 $md5->addfile(*FILE
);
400 my $md5file = $md5->hexdigest;
401 my $md5data = md5_hex
($content);
403 if($md5file ne $md5sum && $md5data ne $md5file && not $cgi->param('saveas'))
405 # The file changed meanwhile
407 my $tpl = new Template
;
408 $tpl->read_file($config->{'templates'}->{'editfile'});
410 $tpl->fillin('ERROR',$config->{'errors'}->{'edit_file_changed'});
412 $tpl->fillin('FILE',encode_html
($virtual));
413 $tpl->fillin('FILE_URL',escape
($virtual));
414 $tpl->fillin('DIR',encode_html
($dir));
415 $tpl->fillin('DIR_URL',escape
($dir));
416 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
417 $tpl->fillin('SCRIPT',$script);
418 $tpl->fillin('MD5SUM',$md5file);
419 $tpl->fillin('CONTENT',encode_html
($content));
421 $tpl->parse_if_block('error',1);
423 my $data = header
(-type
=> 'text/html');
424 $data .= $tpl->get_template;
430 if($md5data ne $md5file)
438 $output = ($cgi->param('continue'))
439 ? devedit_reload
({command
=> 'beginedit', file
=> $virtual})
440 : devedit_reload
({command
=> 'show', file
=> $dir});
448 return devedit_reload
({command
=> 'beginedit', file
=> $virtual});
453 # Execute a HTTP download of a file
455 # Params: 1. Reference to user input hash
456 # 2. Reference to config hash
458 # Return: Output of the command (Scalar Reference)
460 sub exec_download
($$)
462 my ($data,$config) = @_;
463 my $physical = $data->{'physical'};
464 my $virtual = $data->{'virtual'};
465 my $dir = upper_path
($virtual);
467 return return error
($config->{'errors'}->{'no_download'},$dir,{FILE
=> $virtual}) if((not -r
$physical) || (-d
$physical || -l
$physical));
469 my $filename = file_name
($virtual);
471 my $output = header
(-type
=> 'application/octet-stream', -attachment
=> $filename);
472 $output .= ${ file_read
($physical,1) };
479 # Create a file and return to directory view
481 # Params: 1. Reference to user input hash
482 # 2. Reference to config hash
484 # Return: Output of the command (Scalar Reference)
488 my ($data,$config) = @_;
489 my $new_physical = $data->{'new_physical'};
490 my $new_virtual = $data->{'new_virtual'};
491 my $dir = upper_path
($new_virtual);
492 $new_virtual = encode_html
($new_virtual);
496 return error
($config->{'errors'}->{'file_exists'},$dir,{FILE
=> $new_virtual}) if(-e
$new_physical);
498 file_create
($new_physical) or return error
($config->{'errors'}->{'mkfile_failed'},$dir,{FILE
=> $new_virtual});
500 if($data->{'cgi'}->param('edit'))
502 return devedit_reload
({command
=> 'beginedit', file
=> $new_virtual});
506 return devedit_reload
({command
=> 'show', file
=> $dir});
511 my $tpl = new Template
;
512 $tpl->read_file($config->{'templates'}->{'mkfile'});
514 $tpl->fillin('DIR','/');
515 $tpl->fillin('SCRIPT',$script);
517 my $output = header
(-type
=> 'text/html');
518 $output .= $tpl->get_template;
526 # Create a directory and return to directory view
528 # Params: 1. Reference to user input hash
529 # 2. Reference to config hash
531 # Return: Output of the command (Scalar Reference)
535 my ($data,$config) = @_;
536 my $new_physical = $data->{'new_physical'};
537 my $new_virtual = $data->{'new_virtual'};
538 my $dir = upper_path
($new_virtual);
539 $new_virtual = encode_html
($new_virtual);
543 return error
($config->{'errors'}->{'file_exists'},$dir,{FILE
=> $new_virtual}) if(-e
$new_physical);
545 mkdir($new_physical,0777) or return error
($config->{'errors'}->{'mkdir_failed'},$dir,{DIR
=> $new_virtual});
546 return devedit_reload
({command
=> 'show', file
=> $dir});
550 my $tpl = new Template
;
551 $tpl->read_file($config->{'templates'}->{'mkdir'});
553 $tpl->fillin('DIR','/');
554 $tpl->fillin('SCRIPT',$script);
556 my $output = header
(-type
=> 'text/html');
557 $output .= $tpl->get_template;
565 # Process a file upload
567 # Params: 1. Reference to user input hash
568 # 2. Reference to config hash
570 # Return: Output of the command (Scalar Reference)
574 my ($data,$config) = @_;
575 my $physical = $data->{'physical'};
576 my $virtual = $data->{'virtual'};
577 my $cgi = $data->{'cgi'};
579 return error
($config->{'errors'}->{'no_directory'},upper_path
($virtual),{FILE
=> encode_html
($virtual)}) unless(-d
$physical && not -l
$physical);
580 return error
($config->{'errors'}->{'dir_no_create'},$virtual,{DIR
=> encode_html
($virtual)}) unless(-w
$physical);
582 if(my $uploaded_file = $cgi->param('uploaded_file'))
584 if($cgi->param('remote_file'))
586 $uploaded_file = $cgi->param('remote_file');
588 $uploaded_file =~ s!/!!g;
589 $uploaded_file =~ s!\\!!g;
592 # Process file upload
594 my $filename = file_name
($uploaded_file);
595 my $file_phys = $physical.'/'.$filename;
596 my $file_virt = encode_html
($virtual.$filename);
600 return error
($config->{'errors'}->{'link_replace'},$virtual) if(-l
$file_phys);
601 return error
($config->{'errors'}->{'dir_replace'},$virtual) if(-d
$file_phys);
602 return error
($config->{'errors'}->{'exist_no_write'},$virtual,{FILE
=> $file_virt}) unless(-w
$file_phys);
603 return error
($config->{'errors'}->{'file_exists'},$virtual,{FILE
=> $file_virt}) unless($cgi->param('overwrite'));
606 my $ascii = $cgi->param('ascii');
607 my $handle = $cgi->upload('uploaded_file');
609 return error
($config->{'errors'}->{'invalid_upload'},$virtual) unless($handle);
611 # Read transferred file and write it to disk
613 read($handle, my $data, -s
$handle);
614 $data =~ s/\015\012|\012|\015/\n/g if($ascii); # Replace line separators if transferring in ASCII mode
615 file_save
($file_phys,\
$data,not $ascii) or return error
($config->{'errors'}->{'mkfile_failed'},$virtual,{FILE
=> $file_virt});
617 if($cgi->param('unpack') && $File::Access
::has_archive_extract
)
619 return error
($config->{'errors'}->{'no_archive'},$virtual,{FILE
=> encode_html
($file_virt)}) unless(is_archive
($file_phys));
621 my $return_unpack = archive_unpack
($file_phys,$physical);
623 return error
($config->{'errors'}->{'unpack_failed'},$virtual,{FILE
=> encode_html
($file_virt), AE_ERROR
=> ''}) unless($return_unpack);
626 return devedit_reload
({command
=> 'show', file
=> $virtual});
630 my $tpl = new Template
;
631 $tpl->read_file($config->{'templates'}->{'upload'});
633 $tpl->fillin('DIR',encode_html
($virtual));
634 $tpl->fillin('DIR_URL',escape
($virtual));
635 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
636 $tpl->fillin('SCRIPT',$script);
638 $tpl->parse_if_block('PERL_ARCHIVE_EXTRACT',$File::Access
::has_archive_extract
);
640 my $output = header
(-type
=> 'text/html');
641 $output .= $tpl->get_template;
651 # Params: 1. Reference to user input hash
652 # 2. Reference to config hash
654 # Return: Output of the command (Scalar Reference)
658 my ($data,$config) = @_;
659 my $physical = $data->{'physical'};
660 my $virtual = $data->{'virtual'};
661 my $dir = upper_path
($virtual);
662 my $new_physical = $data->{'new_physical'};
663 my $new_virtual = $data->{'new_virtual'};
664 my $cgi = $data->{'cgi'};
666 return error
($config->{'errors'}->{'no_ae'},$dir) unless($File::Access
::has_archive_extract
);
667 return error
($config->{'errors'}->{'no_archive'},$dir,{FILE
=> encode_html
($virtual)}) unless(is_archive
($physical));
671 return error
($config->{'errors'}->{'unpack_no_dir'},$dir,{FILE
=> encode_html
($virtual), NEW_FILE
=> encode_html
($new_virtual)}) if(-l
$new_physical || not -d
$new_physical);
673 my $return_unpack = archive_unpack
($physical,$new_physical);
675 return error
($config->{'errors'}->{'unpack_failed'},$dir,{FILE
=> encode_html
($virtual), AE_ERROR
=> encode_html
($File::Access
::archive_extract_error
)}) unless($return_unpack);
677 return devedit_reload
({command
=> 'show', file
=> $new_virtual});
681 my $tpl = new Template
;
682 $tpl->read_file($config->{'templates'}->{'unpack'});
684 $tpl->fillin('FILE',encode_html
($virtual));
685 $tpl->fillin('DIR',encode_html
($dir));
686 $tpl->fillin('DIR_URL',escape
($dir));
687 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
688 $tpl->fillin('SCRIPT',$script);
690 my $output = header
(-type
=> 'text/html');
691 $output .= $tpl->get_template;
699 # Copy a file and return to directory view
701 # Params: 1. Reference to user input hash
702 # 2. Reference to config hash
704 # Return: Output of the command (Scalar Reference)
708 my ($data,$config) = @_;
709 my $physical = $data->{'physical'};
710 my $virtual = $data->{'virtual'};
711 my $dir = upper_path
($virtual);
712 my $new_physical = $data->{'new_physical'};
714 return error
($config->{'errors'}->{'link_copy'},$dir) if(-l
$physical);
715 return error
($config->{'errors'}->{'no_copy'},$dir) unless(-r
$physical);
719 my $new_virtual = multi_string
($data->{'new_virtual'});
720 my $new_dir = upper_path
($new_virtual->{'normal'});
724 return error
($config->{'errors'}->{'no_copy'},$dir) unless(-x
$physical);
725 return error
($config->{'errors'}->{'file_exists'},$dir,{FILE
=> $new_virtual->{'html'}}) if(-e
$new_physical);
726 return error
($config->{'errors'}->{'dir_copy_self'},$dir) if(index($new_virtual->{'normal'},$virtual) == 0);
728 dir_copy
($physical,$new_physical) or return error
($config->{'errors'}->{'copy_failed'},$dir,{FILE
=> encode_html
($virtual), NEW_FILE
=> $new_virtual->{'html'}});
729 return devedit_reload
({command
=> 'show', file
=> $new_dir});
735 return error
($config->{'errors'}->{'link_replace'},$new_dir) if(-l
$new_physical);
736 return error
($config->{'errors'}->{'dir_replace'},$new_dir) if(-d
$new_physical);
737 return error
($config->{'errors'}->{'exist_no_write'},$new_dir,{FILE
=> $new_virtual->{'html'}}) unless(-w
$new_physical);
739 if(not $data->{'cgi'}->param('confirmed'))
741 my $tpl = new Template
;
742 $tpl->read_file($config->{'templates'}->{'confirm_replace'});
744 $tpl->fillin('FILE',encode_html
($virtual));
745 $tpl->fillin('NEW_FILE',$new_virtual->{'html'});
746 $tpl->fillin('NEW_FILENAME',file_name
($new_virtual->{'html'}));
747 $tpl->fillin('NEW_DIR',encode_html
($new_dir));
748 $tpl->fillin('DIR',encode_html
($dir));
749 $tpl->fillin('DIR_URL',escape
($dir));
751 $tpl->fillin('COMMAND','copy');
752 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
753 $tpl->fillin('SCRIPT',$script);
755 my $output = header
(-type
=> 'text/html');
756 $output .= $tpl->get_template;
762 copy
($physical,$new_physical) or return error
($config->{'errors'}->{'copy_failed'},$dir,{FILE
=> encode_html
($virtual), NEW_FILE
=> $new_virtual->{'html'}});
763 return devedit_reload
({command
=> 'show', file
=> $new_dir});
770 my $tpl = new Template
;
771 $tpl->read_file($config->{'templates'}->{'copydir'});
773 $tpl->fillin('FILE',encode_html
($virtual));
774 $tpl->fillin('DIR',encode_html
($dir));
775 $tpl->fillin('DIR_URL',escape
($dir));
776 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
777 $tpl->fillin('SCRIPT',$script);
779 my $output = header
(-type
=> 'text/html');
780 $output .= $tpl->get_template;
786 my $tpl = new Template
;
787 $tpl->read_file($config->{'templates'}->{'copyfile'});
789 $tpl->fillin('FILE',encode_html
($virtual));
790 $tpl->fillin('DIR',encode_html
($dir));
791 $tpl->fillin('DIR_URL',escape
($dir));
792 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
793 $tpl->fillin('SCRIPT',$script);
795 my $output = header
(-type
=> 'text/html');
796 $output .= $tpl->get_template;
805 # Rename/move a file and return to directory view
807 # Params: 1. Reference to user input hash
808 # 2. Reference to config hash
810 # Return: Output of the command (Scalar Reference)
814 my ($data,$config) = @_;
815 my $physical = $data->{'physical'};
816 my $virtual = $data->{'virtual'};
817 my $dir = upper_path
($virtual);
818 my $new_physical = $data->{'new_physical'};
820 return error
($config->{'errors'}->{'rename_root'},'/') if($virtual eq '/');
821 return error
($config->{'errors'}->{'no_rename'},$dir) unless(-w upper_path
($physical));
825 my $new_virtual = multi_string
($data->{'new_virtual'});
826 my $new_dir = upper_path
($new_virtual->{'normal'});
830 return error
($config->{'errors'}->{'dir_replace'},$new_dir) if(-d
$new_physical && not -l
$new_physical);
831 return error
($config->{'errors'}->{'exist_no_write'},$new_dir,{FILE
=> $new_virtual}) unless(-w
$new_physical);
833 if(not $data->{'cgi'}->param('confirmed'))
835 my $tpl = new Template
;
836 $tpl->read_file($config->{'templates'}->{'confirm_replace'});
838 $tpl->fillin('FILE',encode_html
($virtual));
839 $tpl->fillin('NEW_FILE',$new_virtual->{'html'});
840 $tpl->fillin('NEW_FILENAME',file_name
($new_virtual->{'html'}));
841 $tpl->fillin('NEW_DIR',encode_html
($new_dir));
842 $tpl->fillin('DIR',encode_html
($dir));
844 $tpl->fillin('COMMAND','rename');
845 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
846 $tpl->fillin('SCRIPT',$script);
848 my $output = header
(-type
=> 'text/html');
849 $output .= $tpl->get_template;
855 move
($physical,$new_physical) or return error
($config->{'errors'}->{'rename_failed'},$dir,{FILE
=> encode_html
($virtual), NEW_FILE
=> $new_virtual->{'html'}});
856 return devedit_reload
({command
=> 'show', file
=> $new_dir});
860 my $tpl = new Template
;
861 $tpl->read_file($config->{'templates'}->{'renamefile'});
863 $tpl->fillin('FILE',encode_html
($virtual));
864 $tpl->fillin('DIR',encode_html
($dir));
865 $tpl->fillin('DIR_URL',escape
($dir));
866 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
867 $tpl->fillin('SCRIPT',$script);
869 my $output = header
(-type
=> 'text/html');
870 $output .= $tpl->get_template;
878 # Remove a file or a directory and return to directory view
880 # Params: 1. Reference to user input hash
881 # 2. Reference to config hash
883 # Return: Output of the command (Scalar Reference)
887 my ($data,$config) = @_;
888 my $physical = $data->{'physical'};
889 my $virtual = $data->{'virtual'};
890 my $dir = upper_path
($virtual);
892 return error
($config->{'errors'}->{'remove_root'},'/') if($virtual eq '/');
893 return error
($config->{'errors'}->{'no_delete'},$dir) unless(-w upper_path
($physical));
895 if(-d
$physical && not -l
$physical)
899 if($data->{'cgi'}->param('confirmed'))
902 return devedit_reload
({command
=> 'show', file
=> $dir});
906 my $tpl = new Template
;
907 $tpl->read_file($config->{'templates'}->{'confirm_rmdir'});
909 $tpl->fillin('DIR',encode_html
($virtual));
910 $tpl->fillin('DIR_URL',escape
($virtual));
911 $tpl->fillin('UPPER_DIR',encode_html
($dir));
912 $tpl->fillin('UPPER_DIR_URL',escape
($dir));
913 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
914 $tpl->fillin('SCRIPT',$script);
916 my $output = header
(-type
=> 'text/html');
917 $output .= $tpl->get_template;
926 if($data->{'cgi'}->param('confirmed'))
928 unlink($physical) or return error
($config->{'errors'}->{'delete_failed'},$dir,{FILE
=> $virtual});
929 return devedit_reload
({command
=> 'show', file
=> $dir});
933 my $tpl = new Template
;
934 $tpl->read_file($config->{'templates'}->{'confirm_rmfile'});
936 $tpl->fillin('FILE',encode_html
($virtual));
937 $tpl->fillin('FILE_URL',escape
($virtual));
938 $tpl->fillin('DIR',encode_html
($dir));
939 $tpl->fillin('DIR_URL',escape
($dir));
940 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
941 $tpl->fillin('SCRIPT',$script);
943 my $output = header
(-type
=> 'text/html');
944 $output .= $tpl->get_template;
951 # exec_remove_multi()
953 # Remove a file or a directory and return to directory view
955 # Params: 1. Reference to user input hash
956 # 2. Reference to config hash
958 # Return: Output of the command (Scalar Reference)
960 sub exec_remove_multi
($$)
962 my ($data,$config) = @_;
963 my $physical = $data->{'physical'};
964 my $virtual = $data->{'virtual'};
965 my $cgi = $data->{'cgi'};
967 my @files = $cgi->param('files');#
972 foreach my $file(@files)
974 # Filter out some "bad" files (e.g. files going up in the
975 # directory hierarchy or files containing slashes (it's too
978 next if($file =~ m!^\.+$!);
979 next if($file =~ m!/!);
980 next if($file =~ m!\\!);
982 push(@new_files,$file);
988 if($cgi->param('confirmed'))
993 foreach my $file(@new_files)
995 my $file_path = clean_path
($physical.'/'.$file);
999 if(-d
$file_path && not -l
$file_path)
1001 # Remove a directory
1003 if(rmtree
($file_path))
1005 push(@success,clean_path
($file));
1009 push(@failed,clean_path
($file));
1016 if(unlink($file_path))
1018 push(@success,clean_path
($file));
1022 push(@failed,clean_path
($file));
1028 push(@failed,clean_path
($file));
1032 my $tpl = new Template
;
1033 $tpl->read_file($config->{'templates'}->{'rmmulti'});
1035 if(scalar(@success) > 0)
1037 if(scalar(@success) == scalar(@new_files) && scalar(@failed) == 0)
1039 return devedit_reload
({command
=> 'show', file
=> $virtual});
1043 $tpl->parse_if_block('success',1);
1045 foreach my $file_success(@success)
1047 $tpl->add_loop_data('SUCCESS',{FILE
=> encode_html
($file_success),
1048 FILE_PATH
=> encode_html
(clean_path
($virtual.'/'.$file_success))});
1051 $tpl->parse_loop('SUCCESS');
1056 $tpl->parse_if_block('success',0);
1059 if(scalar(@failed) > 0)
1061 $tpl->parse_if_block('failed',1);
1063 foreach my $file_failed(@failed)
1065 $tpl->add_loop_data('FAILED',{FILE
=> encode_html
($file_failed),
1066 FILE_PATH
=> encode_html
(clean_path
($virtual.'/'.$file_failed))});
1069 $tpl->parse_loop('FAILED');
1073 $tpl->parse_if_block('failed',0);
1077 $tpl->fillin('DIR',encode_html
($virtual));
1078 $tpl->fillin('SCRIPT',$script);
1080 my $output = header
(-type
=> 'text/html');
1081 $output .= $tpl->get_template;
1087 my $tpl = new Template
;
1088 $tpl->read_file($config->{'templates'}->{'confirm_rmmulti'});
1090 foreach my $file(@new_files)
1092 $tpl->add_loop_data('FILES',{FILE
=> encode_html
($file),
1093 FILE_PATH
=> encode_html
(clean_path
($virtual.'/'.$file))});
1096 $tpl->parse_loop('FILES');
1098 $tpl->fillin('COUNT',scalar(@new_files));
1100 $tpl->fillin('DIR',encode_html
($virtual));
1101 $tpl->fillin('SCRIPT',$script);
1103 my $output = header
(-type
=> 'text/html');
1104 $output .= $tpl->get_template;
1111 return devedit_reload
({command
=> 'show', file
=> $virtual});
1117 # Change the mode and the group of a file or a directory
1119 # Params: 1. Reference to user input hash
1120 # 2. Reference to config hash
1122 # Return: Output of the command (Scalar Reference)
1126 my ($data,$config) = @_;
1127 my $physical = $data->{'physical'};
1128 my $virtual = $data->{'virtual'};
1129 my $dir = upper_path
($virtual);
1131 return error
($config->{'errors'}->{'no_users'},$dir,{FILE
=> encode_html
($virtual)}) unless($users);
1132 return error
($config->{'errors'}->{'chprop_root'},'/') if($virtual eq '/');
1133 return error
($config->{'errors'}->{'not_owner'},$dir,{FILE
=> encode_html
($virtual)}) unless(-o
$physical);
1134 return error
($config->{'errors'}->{'chprop_link'},$dir) if(-l
$physical);
1136 my $cgi = $data->{'cgi'};
1137 my $mode = $cgi->param('mode');
1138 my $group = $cgi->param('group');
1146 return error
($config->{'errors'}->{'invalid_mode'},$dir) unless($mode =~ /^[0-7]{3,}$/);
1147 chmod(oct($mode),$physical);
1152 # Change the group using the `chgrp` system command
1154 return error
($config->{'errors'}->{'invalid_group'},$dir,{GROUP
=> encode_html
($group)}) unless($group =~ /^[a-z0-9_]+[a-z0-9_-]*$/i);
1155 system('chgrp',$group,$physical);
1158 return devedit_reload
({command
=> 'show', file
=> $dir});
1164 my @stat = stat($physical);
1165 my $mode = $stat[2];
1168 my $tpl = new Template
;
1169 $tpl->read_file($config->{'templates'}->{'chprop'});
1171 # Insert file properties into the template
1173 $tpl->fillin('MODE_OCTAL',substr(sprintf('%04o',$mode),-4));
1174 $tpl->fillin('MODE_STRING',mode_string
($mode));
1175 $tpl->fillin('GID',$gid);
1177 if(my $group = getgrgid($gid))
1179 $tpl->fillin('GROUP',encode_html
($group));
1180 $tpl->parse_if_block('group_detected',1);
1184 $tpl->parse_if_block('group_detected',0);
1187 # Insert other information
1189 $tpl->fillin('FILE',encode_html
($virtual));
1190 $tpl->fillin('FILE_URL',escape
($virtual));
1191 $tpl->fillin('DIR',encode_html
($dir));
1192 $tpl->fillin('DIR_URL',escape
($dir));
1193 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
1194 $tpl->fillin('SCRIPT',$script);
1196 my $output = header
(-type
=> 'text/html');
1197 $output .= $tpl->get_template;
1205 # Display some information about Dev-Editor
1207 # Params: 1. Reference to user input hash
1208 # 2. Reference to config hash
1210 # Return: Output of the command (Scalar Reference)
1214 my ($data,$config) = @_;
1216 my $tpl = new Template
;
1217 $tpl->read_file($config->{'templates'}->{'about'});
1219 $tpl->fillin('SCRIPT',$script);
1221 # Dev-Editor's version number
1223 $tpl->fillin('VERSION',$data->{'version'});
1225 # Some path information
1227 $tpl->fillin('SCRIPT_PHYS',encode_html
($ENV{'SCRIPT_FILENAME'}));
1228 $tpl->fillin('CONFIG_PATH',encode_html
($data->{'configfile'}));
1229 $tpl->fillin('FILE_ROOT', encode_html
($config->{'fileroot'}));
1230 $tpl->fillin('HTTP_ROOT', encode_html
($config->{'httproot'}));
1234 $tpl->fillin('PERL_PROG',encode_html
($^X
));
1235 $tpl->fillin('PERL_VER', sprintf('%vd',$^V
));
1237 $tpl->parse_if_block('PERL_ARCHIVE_EXTRACT',$File::Access
::has_archive_extract
);
1239 # Information about the server
1241 $tpl->fillin('HTTPD',encode_html
($ENV{'SERVER_SOFTWARE'}));
1242 $tpl->fillin('OS', encode_html
($^O
));
1243 $tpl->fillin('TIME', encode_html
(strftime
($config->{'timeformat'},($config->{'use_gmt'}) ?
gmtime : localtime)));
1245 $tpl->parse_if_block('gmt',$config->{'use_gmt'});
1247 # Process information
1249 $tpl->fillin('PID',$$);
1251 # The following information is only available on systems supporting
1256 # Dev-Editor is running on a system which allows users and groups
1257 # So we display the user and the group of our process
1259 my $uid = POSIX
::getuid
;
1260 my $gid = POSIX
::getgid
;
1262 $tpl->parse_if_block('users',1);
1264 # IDs of user and group
1266 $tpl->fillin('UID',$uid);
1267 $tpl->fillin('GID',$gid);
1269 # Names of user and group
1271 if(my $user = getpwuid($uid))
1273 $tpl->fillin('USER',encode_html
($user));
1274 $tpl->parse_if_block('user_detected',1);
1278 $tpl->parse_if_block('user_detected',0);
1281 if(my $group = getgrgid($gid))
1283 $tpl->fillin('GROUP',encode_html
($group));
1284 $tpl->parse_if_block('group_detected',1);
1288 $tpl->parse_if_block('group_detected',0);
1293 $tpl->fillin('UMASK',sprintf('%04o',umask));
1297 $tpl->parse_if_block('users',0);
1300 my $output = header
(-type
=> 'text/html');
1301 $output .= $tpl->get_template;
1306 # it's true, baby ;-)
patrick-canterino.de