]>
git.p6c8.net - devedit.git/blob - modules/Command.pm
4 # Dev-Editor - Module Command
6 # Execute Dev-Editor's commands
8 # Author: Patrick Canterino <patrick@patshaping.de>
9 # Last modified: 2010-10-26
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 return devedit_reload
({command
=> 'show', file
=> $virtual});
621 my $tpl = new Template
;
622 $tpl->read_file($config->{'templates'}->{'upload'});
624 $tpl->fillin('DIR',encode_html
($virtual));
625 $tpl->fillin('DIR_URL',escape
($virtual));
626 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
627 $tpl->fillin('SCRIPT',$script);
629 my $output = header
(-type
=> 'text/html');
630 $output .= $tpl->get_template;
640 # Params: 1. Reference to user input hash
641 # 2. Reference to config hash
643 # Return: Output of the command (Scalar Reference)
647 my ($data,$config) = @_;
648 my $physical = $data->{'physical'};
649 my $virtual = $data->{'virtual'};
650 my $dir = upper_path
($virtual);
651 my $new_physical = $data->{'new_physical'};
652 my $new_virtual = $data->{'new_virtual'};
653 my $cgi = $data->{'cgi'};
657 archive_unpack
($physical,$new_physical);
658 return devedit_reload
({command
=> 'show', file
=> $new_virtual});
662 my $tpl = new Template
;
663 $tpl->read_file($config->{'templates'}->{'unpack'});
665 $tpl->fillin('FILE',encode_html
($virtual));
666 $tpl->fillin('DIR',encode_html
($dir));
667 $tpl->fillin('DIR_URL',escape
($dir));
668 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
669 $tpl->fillin('SCRIPT',$script);
671 my $output = header
(-type
=> 'text/html');
672 $output .= $tpl->get_template;
680 # Copy a file and return to directory view
682 # Params: 1. Reference to user input hash
683 # 2. Reference to config hash
685 # Return: Output of the command (Scalar Reference)
689 my ($data,$config) = @_;
690 my $physical = $data->{'physical'};
691 my $virtual = $data->{'virtual'};
692 my $dir = upper_path
($virtual);
693 my $new_physical = $data->{'new_physical'};
695 return error
($config->{'errors'}->{'link_copy'},$dir) if(-l
$physical);
696 return error
($config->{'errors'}->{'no_copy'},$dir) unless(-r
$physical);
700 my $new_virtual = multi_string
($data->{'new_virtual'});
701 my $new_dir = upper_path
($new_virtual->{'normal'});
705 return error
($config->{'errors'}->{'no_copy'},$dir) unless(-x
$physical);
706 return error
($config->{'errors'}->{'file_exists'},$dir,{FILE
=> $new_virtual->{'html'}}) if(-e
$new_physical);
707 return error
($config->{'errors'}->{'dir_copy_self'},$dir) if(index($new_virtual->{'normal'},$virtual) == 0);
709 dir_copy
($physical,$new_physical) or return error
($config->{'errors'}->{'copy_failed'},$dir,{FILE
=> encode_html
($virtual), NEW_FILE
=> $new_virtual->{'html'}});
710 return devedit_reload
({command
=> 'show', file
=> $new_dir});
716 return error
($config->{'errors'}->{'link_replace'},$new_dir) if(-l
$new_physical);
717 return error
($config->{'errors'}->{'dir_replace'},$new_dir) if(-d
$new_physical);
718 return error
($config->{'errors'}->{'exist_no_write'},$new_dir,{FILE
=> $new_virtual->{'html'}}) unless(-w
$new_physical);
720 if(not $data->{'cgi'}->param('confirmed'))
722 my $tpl = new Template
;
723 $tpl->read_file($config->{'templates'}->{'confirm_replace'});
725 $tpl->fillin('FILE',encode_html
($virtual));
726 $tpl->fillin('NEW_FILE',$new_virtual->{'html'});
727 $tpl->fillin('NEW_FILENAME',file_name
($new_virtual->{'html'}));
728 $tpl->fillin('NEW_DIR',encode_html
($new_dir));
729 $tpl->fillin('DIR',encode_html
($dir));
730 $tpl->fillin('DIR_URL',escape
($dir));
732 $tpl->fillin('COMMAND','copy');
733 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
734 $tpl->fillin('SCRIPT',$script);
736 my $output = header
(-type
=> 'text/html');
737 $output .= $tpl->get_template;
743 copy
($physical,$new_physical) or return error
($config->{'errors'}->{'copy_failed'},$dir,{FILE
=> encode_html
($virtual), NEW_FILE
=> $new_virtual->{'html'}});
744 return devedit_reload
({command
=> 'show', file
=> $new_dir});
751 my $tpl = new Template
;
752 $tpl->read_file($config->{'templates'}->{'copydir'});
754 $tpl->fillin('FILE',encode_html
($virtual));
755 $tpl->fillin('DIR',encode_html
($dir));
756 $tpl->fillin('DIR_URL',escape
($dir));
757 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
758 $tpl->fillin('SCRIPT',$script);
760 my $output = header
(-type
=> 'text/html');
761 $output .= $tpl->get_template;
767 my $tpl = new Template
;
768 $tpl->read_file($config->{'templates'}->{'copyfile'});
770 $tpl->fillin('FILE',encode_html
($virtual));
771 $tpl->fillin('DIR',encode_html
($dir));
772 $tpl->fillin('DIR_URL',escape
($dir));
773 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
774 $tpl->fillin('SCRIPT',$script);
776 my $output = header
(-type
=> 'text/html');
777 $output .= $tpl->get_template;
786 # Rename/move a file and return to directory view
788 # Params: 1. Reference to user input hash
789 # 2. Reference to config hash
791 # Return: Output of the command (Scalar Reference)
795 my ($data,$config) = @_;
796 my $physical = $data->{'physical'};
797 my $virtual = $data->{'virtual'};
798 my $dir = upper_path
($virtual);
799 my $new_physical = $data->{'new_physical'};
801 return error
($config->{'errors'}->{'rename_root'},'/') if($virtual eq '/');
802 return error
($config->{'errors'}->{'no_rename'},$dir) unless(-w upper_path
($physical));
806 my $new_virtual = multi_string
($data->{'new_virtual'});
807 my $new_dir = upper_path
($new_virtual->{'normal'});
811 return error
($config->{'errors'}->{'dir_replace'},$new_dir) if(-d
$new_physical && not -l
$new_physical);
812 return error
($config->{'errors'}->{'exist_no_write'},$new_dir,{FILE
=> $new_virtual}) unless(-w
$new_physical);
814 if(not $data->{'cgi'}->param('confirmed'))
816 my $tpl = new Template
;
817 $tpl->read_file($config->{'templates'}->{'confirm_replace'});
819 $tpl->fillin('FILE',encode_html
($virtual));
820 $tpl->fillin('NEW_FILE',$new_virtual->{'html'});
821 $tpl->fillin('NEW_FILENAME',file_name
($new_virtual->{'html'}));
822 $tpl->fillin('NEW_DIR',encode_html
($new_dir));
823 $tpl->fillin('DIR',encode_html
($dir));
825 $tpl->fillin('COMMAND','rename');
826 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
827 $tpl->fillin('SCRIPT',$script);
829 my $output = header
(-type
=> 'text/html');
830 $output .= $tpl->get_template;
836 move
($physical,$new_physical) or return error
($config->{'errors'}->{'rename_failed'},$dir,{FILE
=> encode_html
($virtual), NEW_FILE
=> $new_virtual->{'html'}});
837 return devedit_reload
({command
=> 'show', file
=> $new_dir});
841 my $tpl = new Template
;
842 $tpl->read_file($config->{'templates'}->{'renamefile'});
844 $tpl->fillin('FILE',encode_html
($virtual));
845 $tpl->fillin('DIR',encode_html
($dir));
846 $tpl->fillin('DIR_URL',escape
($dir));
847 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
848 $tpl->fillin('SCRIPT',$script);
850 my $output = header
(-type
=> 'text/html');
851 $output .= $tpl->get_template;
859 # Remove a file or a directory and return to directory view
861 # Params: 1. Reference to user input hash
862 # 2. Reference to config hash
864 # Return: Output of the command (Scalar Reference)
868 my ($data,$config) = @_;
869 my $physical = $data->{'physical'};
870 my $virtual = $data->{'virtual'};
871 my $dir = upper_path
($virtual);
873 return error
($config->{'errors'}->{'remove_root'},'/') if($virtual eq '/');
874 return error
($config->{'errors'}->{'no_delete'},$dir) unless(-w upper_path
($physical));
876 if(-d
$physical && not -l
$physical)
880 if($data->{'cgi'}->param('confirmed'))
883 return devedit_reload
({command
=> 'show', file
=> $dir});
887 my $tpl = new Template
;
888 $tpl->read_file($config->{'templates'}->{'confirm_rmdir'});
890 $tpl->fillin('DIR',encode_html
($virtual));
891 $tpl->fillin('DIR_URL',escape
($virtual));
892 $tpl->fillin('UPPER_DIR',encode_html
($dir));
893 $tpl->fillin('UPPER_DIR_URL',escape
($dir));
894 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
895 $tpl->fillin('SCRIPT',$script);
897 my $output = header
(-type
=> 'text/html');
898 $output .= $tpl->get_template;
907 if($data->{'cgi'}->param('confirmed'))
909 unlink($physical) or return error
($config->{'errors'}->{'delete_failed'},$dir,{FILE
=> $virtual});
910 return devedit_reload
({command
=> 'show', file
=> $dir});
914 my $tpl = new Template
;
915 $tpl->read_file($config->{'templates'}->{'confirm_rmfile'});
917 $tpl->fillin('FILE',encode_html
($virtual));
918 $tpl->fillin('FILE_URL',escape
($virtual));
919 $tpl->fillin('DIR',encode_html
($dir));
920 $tpl->fillin('DIR_URL',escape
($dir));
921 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
922 $tpl->fillin('SCRIPT',$script);
924 my $output = header
(-type
=> 'text/html');
925 $output .= $tpl->get_template;
932 # exec_remove_multi()
934 # Remove a file or a directory and return to directory view
936 # Params: 1. Reference to user input hash
937 # 2. Reference to config hash
939 # Return: Output of the command (Scalar Reference)
941 sub exec_remove_multi
($$)
943 my ($data,$config) = @_;
944 my $physical = $data->{'physical'};
945 my $virtual = $data->{'virtual'};
946 my $cgi = $data->{'cgi'};
948 my @files = $cgi->param('files');#
953 foreach my $file(@files)
955 # Filter out some "bad" files (e.g. files going up in the
956 # directory hierarchy or files containing slashes (it's too
959 next if($file =~ m!^\.+$!);
960 next if($file =~ m!/!);
961 next if($file =~ m!\\!);
963 push(@new_files,$file);
969 if($cgi->param('confirmed'))
974 foreach my $file(@new_files)
976 my $file_path = clean_path
($physical.'/'.$file);
980 if(-d
$file_path && not -l
$file_path)
984 if(rmtree
($file_path))
986 push(@success,clean_path
($file));
990 push(@failed,clean_path
($file));
997 if(unlink($file_path))
999 push(@success,clean_path
($file));
1003 push(@failed,clean_path
($file));
1009 push(@failed,clean_path
($file));
1013 my $tpl = new Template
;
1014 $tpl->read_file($config->{'templates'}->{'rmmulti'});
1016 if(scalar(@success) > 0)
1018 if(scalar(@success) == scalar(@new_files) && scalar(@failed) == 0)
1020 return devedit_reload
({command
=> 'show', file
=> $virtual});
1024 $tpl->parse_if_block('success',1);
1026 foreach my $file_success(@success)
1028 $tpl->add_loop_data('SUCCESS',{FILE
=> encode_html
($file_success),
1029 FILE_PATH
=> encode_html
(clean_path
($virtual.'/'.$file_success))});
1032 $tpl->parse_loop('SUCCESS');
1037 $tpl->parse_if_block('success',0);
1040 if(scalar(@failed) > 0)
1042 $tpl->parse_if_block('failed',1);
1044 foreach my $file_failed(@failed)
1046 $tpl->add_loop_data('FAILED',{FILE
=> encode_html
($file_failed),
1047 FILE_PATH
=> encode_html
(clean_path
($virtual.'/'.$file_failed))});
1050 $tpl->parse_loop('FAILED');
1054 $tpl->parse_if_block('failed',0);
1058 $tpl->fillin('DIR',encode_html
($virtual));
1059 $tpl->fillin('SCRIPT',$script);
1061 my $output = header
(-type
=> 'text/html');
1062 $output .= $tpl->get_template;
1068 my $tpl = new Template
;
1069 $tpl->read_file($config->{'templates'}->{'confirm_rmmulti'});
1071 foreach my $file(@new_files)
1073 $tpl->add_loop_data('FILES',{FILE
=> encode_html
($file),
1074 FILE_PATH
=> encode_html
(clean_path
($virtual.'/'.$file))});
1077 $tpl->parse_loop('FILES');
1079 $tpl->fillin('COUNT',scalar(@new_files));
1081 $tpl->fillin('DIR',encode_html
($virtual));
1082 $tpl->fillin('SCRIPT',$script);
1084 my $output = header
(-type
=> 'text/html');
1085 $output .= $tpl->get_template;
1092 return devedit_reload
({command
=> 'show', file
=> $virtual});
1098 # Change the mode and the group of a file or a directory
1100 # Params: 1. Reference to user input hash
1101 # 2. Reference to config hash
1103 # Return: Output of the command (Scalar Reference)
1107 my ($data,$config) = @_;
1108 my $physical = $data->{'physical'};
1109 my $virtual = $data->{'virtual'};
1110 my $dir = upper_path
($virtual);
1112 return error
($config->{'errors'}->{'no_users'},$dir,{FILE
=> encode_html
($virtual)}) unless($users);
1113 return error
($config->{'errors'}->{'chprop_root'},'/') if($virtual eq '/');
1114 return error
($config->{'errors'}->{'not_owner'},$dir,{FILE
=> encode_html
($virtual)}) unless(-o
$physical);
1115 return error
($config->{'errors'}->{'chprop_link'},$dir) if(-l
$physical);
1117 my $cgi = $data->{'cgi'};
1118 my $mode = $cgi->param('mode');
1119 my $group = $cgi->param('group');
1127 return error
($config->{'errors'}->{'invalid_mode'},$dir) unless($mode =~ /^[0-7]{3,}$/);
1128 chmod(oct($mode),$physical);
1133 # Change the group using the `chgrp` system command
1135 return error
($config->{'errors'}->{'invalid_group'},$dir,{GROUP
=> encode_html
($group)}) unless($group =~ /^[a-z0-9_]+[a-z0-9_-]*$/i);
1136 system('chgrp',$group,$physical);
1139 return devedit_reload
({command
=> 'show', file
=> $dir});
1145 my @stat = stat($physical);
1146 my $mode = $stat[2];
1149 my $tpl = new Template
;
1150 $tpl->read_file($config->{'templates'}->{'chprop'});
1152 # Insert file properties into the template
1154 $tpl->fillin('MODE_OCTAL',substr(sprintf('%04o',$mode),-4));
1155 $tpl->fillin('MODE_STRING',mode_string
($mode));
1156 $tpl->fillin('GID',$gid);
1158 if(my $group = getgrgid($gid))
1160 $tpl->fillin('GROUP',encode_html
($group));
1161 $tpl->parse_if_block('group_detected',1);
1165 $tpl->parse_if_block('group_detected',0);
1168 # Insert other information
1170 $tpl->fillin('FILE',encode_html
($virtual));
1171 $tpl->fillin('FILE_URL',escape
($virtual));
1172 $tpl->fillin('DIR',encode_html
($dir));
1173 $tpl->fillin('DIR_URL',escape
($dir));
1174 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
1175 $tpl->fillin('SCRIPT',$script);
1177 my $output = header
(-type
=> 'text/html');
1178 $output .= $tpl->get_template;
1186 # Display some information about Dev-Editor
1188 # Params: 1. Reference to user input hash
1189 # 2. Reference to config hash
1191 # Return: Output of the command (Scalar Reference)
1195 my ($data,$config) = @_;
1197 my $tpl = new Template
;
1198 $tpl->read_file($config->{'templates'}->{'about'});
1200 $tpl->fillin('SCRIPT',$script);
1202 # Dev-Editor's version number
1204 $tpl->fillin('VERSION',$data->{'version'});
1206 # Some path information
1208 $tpl->fillin('SCRIPT_PHYS',encode_html
($ENV{'SCRIPT_FILENAME'}));
1209 $tpl->fillin('CONFIG_PATH',encode_html
($data->{'configfile'}));
1210 $tpl->fillin('FILE_ROOT', encode_html
($config->{'fileroot'}));
1211 $tpl->fillin('HTTP_ROOT', encode_html
($config->{'httproot'}));
1215 $tpl->fillin('PERL_PROG',encode_html
($^X
));
1216 $tpl->fillin('PERL_VER', sprintf('%vd',$^V
));
1218 # Information about the server
1220 $tpl->fillin('HTTPD',encode_html
($ENV{'SERVER_SOFTWARE'}));
1221 $tpl->fillin('OS', encode_html
($^O
));
1222 $tpl->fillin('TIME', encode_html
(strftime
($config->{'timeformat'},($config->{'use_gmt'}) ?
gmtime : localtime)));
1224 $tpl->parse_if_block('gmt',$config->{'use_gmt'});
1226 # Process information
1228 $tpl->fillin('PID',$$);
1230 # The following information is only available on systems supporting
1235 # Dev-Editor is running on a system which allows users and groups
1236 # So we display the user and the group of our process
1238 my $uid = POSIX
::getuid
;
1239 my $gid = POSIX
::getgid
;
1241 $tpl->parse_if_block('users',1);
1243 # IDs of user and group
1245 $tpl->fillin('UID',$uid);
1246 $tpl->fillin('GID',$gid);
1248 # Names of user and group
1250 if(my $user = getpwuid($uid))
1252 $tpl->fillin('USER',encode_html
($user));
1253 $tpl->parse_if_block('user_detected',1);
1257 $tpl->parse_if_block('user_detected',0);
1260 if(my $group = getgrgid($gid))
1262 $tpl->fillin('GROUP',encode_html
($group));
1263 $tpl->parse_if_block('group_detected',1);
1267 $tpl->parse_if_block('group_detected',0);
1272 $tpl->fillin('UMASK',sprintf('%04o',umask));
1276 $tpl->parse_if_block('users',0);
1279 my $output = header
(-type
=> 'text/html');
1280 $output .= $tpl->get_template;
1285 # it's true, baby ;-)
patrick-canterino.de