]>
git.p6c8.net - devedit.git/blob - modules/Command.pm
bbad3f105eff30a7164c7aff67cc0b6f279bde48
4 # Dev-Editor - Module Command
6 # Execute Dev-Editor's commands
8 # Author: Patrick Canterino <patrick@patshaping.de>
9 # Last modified: 2005-04-22
21 use Digest::MD5 qw(md5_hex);
22 use POSIX
qw(strftime);
31 my $script = encode_html
($ENV{'SCRIPT_NAME'});
32 my $users = eval('getpwuid(0)') && eval('getgrgid(0)');
34 my %dispatch = ('show' => \
&exec_show
,
35 'beginedit' => \
&exec_beginedit
,
36 'endedit' => \
&exec_endedit
,
37 'mkdir' => \
&exec_mkdir
,
38 'mkfile' => \
&exec_mkfile
,
39 'upload' => \
&exec_upload
,
40 'copy' => \
&exec_copy
,
41 'rename' => \
&exec_rename
,
42 'remove' => \
&exec_remove
,
43 'chprop' => \
&exec_chprop
,
44 'about' => \
&exec_about
49 use base
qw(Exporter);
51 @EXPORT = qw(exec_command);
55 # Execute the specified command
57 # Params: 1. Command to execute
58 # 2. Reference to user input hash
59 # 3. Reference to config hash
61 # Return: Output of the command (Scalar Reference)
65 my ($command,$data,$config) = @_;
67 foreach(keys(%dispatch))
69 if(lc($_) eq lc($command))
71 my $output = &{$dispatch{$_}}($data,$config);
76 return error
($config->{'errors'}->{'command_unknown'},'/',{COMMAND
=> encode_html
($command)});
81 # View a directory or a file
83 # Params: 1. Reference to user input hash
84 # 2. Reference to config hash
86 # Return: Output of the command (Scalar Reference)
90 my ($data,$config) = @_;
91 my $physical = $data->{'physical'};
92 my $virtual = $data->{'virtual'};
93 my $upper_path = multi_string
(upper_path
($virtual));
95 my $tpl = new Template
;
97 if(-d
$physical && not -l
$physical)
99 # Create directory listing
101 return error
($config->{'errors'}->{'no_dir_access'},$upper_path->{'normal'}) unless(-r
$physical && -x
$physical);
103 my $direntries = dir_read
($physical);
104 return error
($config->{'errors'}->{'dir_read_fail'},$upper_path->{'normal'},{DIR
=> encode_html
($virtual)}) unless($direntries);
106 my $files = $direntries->{'files'};
107 my $dirs = $direntries->{'dirs'};
111 my $filter1 = $data->{'cgi'}->param('filter') || '*'; # The real wildcard
112 my $filter2 = ($filter1 && $filter1 ne '*') ?
$filter1 : ''; # Wildcard for output
114 # Create the link to the upper directory
115 # (only if the current directory is not the root directory)
117 unless($virtual eq '/')
119 my @stat = stat($physical.'/..');
121 my $udtpl = new Template
;
122 $udtpl->read_file($config->{'templates'}->{'dirlist_up'});
124 $udtpl->fillin('UPPER_DIR',$upper_path->{'html'});
125 $udtpl->fillin('UPPER_DIR_URL',$upper_path->{'url'});
126 $udtpl->fillin('DATE',encode_html
(strftime
($config->{'timeformat'},($config->{'use_gmt'}) ?
gmtime($stat[9]) : localtime($stat[9]))));
128 $dirlist .= $udtpl->get_template;
133 foreach my $dir(@
$dirs)
135 next unless(dos_wildcard_match
($filter1,$dir));
137 my $phys_path = $physical.'/'.$dir;
138 my $virt_path = multi_string
($virtual.$dir.'/');
140 my @stat = stat($phys_path);
142 my $dtpl = new Template
;
143 $dtpl->read_file($config->{'templates'}->{'dirlist_dir'});
145 $dtpl->fillin('DIR',$virt_path->{'html'});
146 $dtpl->fillin('DIR_URL',$virt_path->{'url'});
147 $dtpl->fillin('DIR_NAME',encode_html
($dir));
148 $dtpl->fillin('DATE',encode_html
(strftime
($config->{'timeformat'},($config->{'use_gmt'}) ?
gmtime($stat[9]) : localtime($stat[9]))));
149 $dtpl->fillin('URL',equal_url
(encode_html
($config->{'httproot'}),$virt_path->{'html'}));
151 $dtpl->parse_if_block('readable',-r
$phys_path && -x
$phys_path);
152 $dtpl->parse_if_block('users',$users && -o
$phys_path);
154 $dirlist .= $dtpl->get_template;
159 foreach my $file(@
$files)
161 next unless(dos_wildcard_match
($filter1,$file));
163 my $phys_path = $physical.'/'.$file;
164 my $virt_path = multi_string
($virtual.$file);
166 my @stat = lstat($phys_path);
167 my $too_large = $config->{'max_file_size'} && $stat[7] > $config->{'max_file_size'};
169 my $ftpl = new Template
;
170 $ftpl->read_file($config->{'templates'}->{'dirlist_file'});
172 $ftpl->fillin('FILE',$virt_path->{'html'});
173 $ftpl->fillin('FILE_URL',$virt_path->{'url'});
174 $ftpl->fillin('FILE_NAME',encode_html
($file));
175 $ftpl->fillin('FILE_URL',$virt_path->{'url'});
176 $ftpl->fillin('SIZE',$stat[7]);
177 $ftpl->fillin('DATE',encode_html
(strftime
($config->{'timeformat'},($config->{'use_gmt'}) ?
gmtime($stat[9]) : localtime($stat[9]))));
178 $ftpl->fillin('URL',equal_url
(encode_html
($config->{'httproot'}),$virt_path->{'html'}));
180 $ftpl->parse_if_block('link',-l
$phys_path);
181 $ftpl->parse_if_block('no_link',not -l
$phys_path);
182 $ftpl->parse_if_block('not_readable',not -r
$phys_path);
183 $ftpl->parse_if_block('binary',-B
$phys_path);
184 $ftpl->parse_if_block('readonly',not -w
$phys_path);
186 $ftpl->parse_if_block('viewable',(-r
$phys_path && -T
$phys_path && not $too_large) || -l
$phys_path);
187 $ftpl->parse_if_block('editable',(-r
$phys_path && -w
$phys_path && -T
$phys_path && not $too_large) && not -l
$phys_path);
189 $ftpl->parse_if_block('too_large',$config->{'max_file_size'} && $stat[7] > $config->{'max_file_size'});
191 $ftpl->parse_if_block('users',$users && -o
$phys_path);
193 $dirlist .= $ftpl->get_template;
196 $tpl->read_file($config->{'templates'}->{'dirlist'});
198 $tpl->fillin('DIRLIST',$dirlist);
199 $tpl->fillin('DIR',encode_html
($virtual));
200 $tpl->fillin('DIR_URL',escape
($virtual));
201 $tpl->fillin('SCRIPT',$script);
202 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
204 $tpl->fillin('FILTER',encode_html
($filter2));
205 $tpl->fillin('FILTER_URL',escape
($filter2));
207 $tpl->parse_if_block('empty',$dirlist eq '');
208 $tpl->parse_if_block('dir_writeable',-w
$physical);
209 $tpl->parse_if_block('filter',$filter2);
210 $tpl->parse_if_block('gmt',$config->{'use_gmt'});
214 # Show the target of a symbolic link
216 my $link_target = readlink($physical);
218 $tpl->read_file($config->{'templates'}->{'viewlink'});
220 $tpl->fillin('FILE',encode_html
($virtual));
221 $tpl->fillin('DIR',$upper_path->{'html'});
222 $tpl->fillin('DIR_URL',$upper_path->{'url'});
223 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
224 $tpl->fillin('SCRIPT',$script);
226 $tpl->fillin('LINK_TARGET',encode_html
($link_target));
232 return error
($config->{'errors'}->{'no_view'},$upper_path->{'normal'}) unless(-r
$physical);
234 # Check on binary files
235 # We have to do it in this way or empty files will be recognized
238 return error
($config->{'errors'}->{'binary_file'},$upper_path->{'normal'}) unless(-T
$physical);
240 # Is the file too large?
242 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'});
246 my $content = file_read
($physical);
247 $$content =~ s/\015\012|\012|\015/\n/g;
249 $tpl->read_file($config->{'templates'}->{'viewfile'});
251 $tpl->fillin('FILE',encode_html
($virtual));
252 $tpl->fillin('FILE_URL',escape
($virtual));
253 $tpl->fillin('DIR',$upper_path->{'html'});
254 $tpl->fillin('DIR_URL',$upper_path->{'url'});
255 $tpl->fillin('URL',encode_html
(equal_url
($config->{'httproot'},$virtual)));
256 $tpl->fillin('SCRIPT',$script);
258 $tpl->parse_if_block('editable',-w
$physical);
260 $tpl->fillin('CONTENT',encode_html
($$content));
263 my $output = header
(-type
=> 'text/html');
264 $output .= $tpl->get_template;
271 # Lock a file and display a form to edit it
273 # Params: 1. Reference to user input hash
274 # 2. Reference to config hash
276 # Return: Output of the command (Scalar Reference)
278 sub exec_beginedit
($$)
280 my ($data,$config) = @_;
281 my $physical = $data->{'physical'};
282 my $virtual = $data->{'virtual'};
283 my $dir = upper_path
($virtual);
285 return error
($config->{'errors'}->{'link_edit'},$dir) if(-l
$physical);
286 return error
($config->{'errors'}->{'dir_edit'}, $dir) if(-d
$physical);
287 return error
($config->{'errors'}->{'no_edit'}, $dir) unless(-r
$physical && -w
$physical);
289 # Check on binary files
291 return error
($config->{'errors'}->{'binary_file'},$dir) unless(-T
$physical);
293 # Is the file too large?
295 return error
($config->{'errors'}->{'file_too_large'},$dir,{SIZE
=> $config->{'max_file_size'}}) if($config->{'max_file_size'} && -s
$physical > $config->{'max_file_size'});
297 # ... and show the editing form
299 my $content = file_read
($physical);
300 my $md5sum = md5_hex
($$content);
301 $$content =~ s/\015\012|\012|\015/\n/g;
303 my $tpl = new Template
;
304 $tpl->read_file($config->{'templates'}->{'editfile'});
306 $tpl->fillin('FILE',encode_html
($virtual));
307 $tpl->fillin('FILE_URL',escape
($virtual));
308 $tpl->fillin('DIR',encode_html
($dir));
309 $tpl->fillin('DIR_URL',escape
($dir));
310 $tpl->fillin('URL',equal_url
($config->{'httproot'},$virtual));
311 $tpl->fillin('SCRIPT',$script);
312 $tpl->fillin('MD5SUM',$md5sum);
313 $tpl->fillin('CONTENT',encode_html
($$content));
315 $tpl->parse_if_block('error',0);
317 my $output = header
(-type
=> 'text/html');
318 $output .= $tpl->get_template;
325 # Save a file, unlock it and return to directory view
327 # Params: 1. Reference to user input hash
328 # 2. Reference to config hash
330 # Return: Output of the command (Scalar Reference)
334 my ($data,$config) = @_;
335 my $physical = $data->{'physical'};
336 my $virtual = $data->{'virtual'};
337 my $dir = upper_path
($virtual);
338 my $cgi = $data->{'cgi'};
339 my $content = $cgi->param('filecontent');
340 my $md5sum = $cgi->param('md5sum');
343 if(defined $content && $md5sum)
347 $content =~ s/\015\012|\012|\015/\n/g;
349 if($cgi->param('saveas') && $data->{'new_physical'} ne '' && $data->{'new_virtual'} ne '')
351 # Create the new filename
353 $physical = $data->{'new_physical'};
354 $virtual = $data->{'new_virtual'};
357 return error
($config->{'errors'}->{'link_edit'},$dir) if(-l
$physical);
358 return error
($config->{'errors'}->{'dir_edit'},$dir) if(-d
$physical);
359 return error
($config->{'errors'}->{'no_edit'},$dir) if(-e
$physical && !(-r
$physical && -w
$physical));
360 return error
($config->{'errors'}->{'text_to_binary'},$dir) if(-e
$physical && not -T
$physical);
362 # For technical reasons, we can't use file_save() for
367 sysopen(FILE
,$physical,O_RDWR
| O_CREAT
) or return error
($config->{'errors'}->{'edit_failed'},$dir,{FILE
=> $virtual});
368 file_lock
(*FILE
,LOCK_EX
) or do { close(FILE
); return error
($config->{'errors'}->{'edit_failed'},$dir,{FILE
=> $virtual}) };
370 my $md5 = new Digest
::MD5
;
371 $md5->addfile(*FILE
);
373 my $md5file = $md5->hexdigest;
374 my $md5data = md5_hex
($content);
376 if($md5file ne $md5sum && $md5data ne $md5file && not $cgi->param('saveas'))
378 # The file changed meanwhile
380 my $tpl = new Template
;
381 $tpl->read_file($config->{'templates'}->{'editfile'});
383 $tpl->fillin('ERROR',$config->{'errors'}->{'edit_file_changed'});
385 $tpl->fillin('FILE',encode_html
($virtual));
386 $tpl->fillin('FILE_URL',escape
($virtual));
387 $tpl->fillin('DIR',encode_html
($dir));
388 $tpl->fillin('DIR_URL',escape
($dir));
389 $tpl->fillin('URL',equal_url
($config->{'httproot'},$virtual));
390 $tpl->fillin('SCRIPT',$script);
391 $tpl->fillin('MD5SUM',$md5file);
392 $tpl->fillin('CONTENT',encode_html
($content));
394 $tpl->parse_if_block('error',1);
396 my $data = header
(-type
=> 'text/html');
397 $data .= $tpl->get_template;
403 if($md5data ne $md5file)
411 $output = devedit_reload
({command
=> 'show', file
=> $dir});
419 return devedit_reload
({command
=> 'beginedit', file
=> $virtual});
424 # Create a file and return to directory view
426 # Params: 1. Reference to user input hash
427 # 2. Reference to config hash
429 # Return: Output of the command (Scalar Reference)
433 my ($data,$config) = @_;
434 my $new_physical = $data->{'new_physical'};
435 my $new_virtual = $data->{'new_virtual'};
436 my $dir = upper_path
($new_virtual);
437 $new_virtual = encode_html
($new_virtual);
441 return error
($config->{'errors'}->{'file_exists'},$dir,{FILE
=> $new_virtual}) if(-e
$new_physical);
443 file_create
($new_physical) or return error
($config->{'errors'}->{'mkfile_failed'},$dir,{FILE
=> $new_virtual});
444 return devedit_reload
({command
=> 'show', file
=> $dir});
448 my $tpl = new Template
;
449 $tpl->read_file($config->{'templates'}->{'mkfile'});
451 $tpl->fillin('DIR','/');
452 $tpl->fillin('SCRIPT',$script);
454 my $output = header
(-type
=> 'text/html');
455 $output .= $tpl->get_template;
463 # Create a directory and return to directory view
465 # Params: 1. Reference to user input hash
466 # 2. Reference to config hash
468 # Return: Output of the command (Scalar Reference)
472 my ($data,$config) = @_;
473 my $new_physical = $data->{'new_physical'};
474 my $new_virtual = $data->{'new_virtual'};
475 my $dir = upper_path
($new_virtual);
476 $new_virtual = encode_html
($new_virtual);
480 return error
($config->{'errors'}->{'file_exists'},$dir,{FILE
=> $new_virtual}) if(-e
$new_physical);
482 mkdir($new_physical,0777) or return error
($config->{'errors'}->{'mkdir_failed'},$dir,{DIR
=> $new_virtual});
483 return devedit_reload
({command
=> 'show', file
=> $dir});
487 my $tpl = new Template
;
488 $tpl->read_file($config->{'templates'}->{'mkdir'});
490 $tpl->fillin('DIR','/');
491 $tpl->fillin('SCRIPT',$script);
493 my $output = header
(-type
=> 'text/html');
494 $output .= $tpl->get_template;
502 # Process a file upload
504 # Params: 1. Reference to user input hash
505 # 2. Reference to config hash
507 # Return: Output of the command (Scalar Reference)
511 my ($data,$config) = @_;
512 my $physical = $data->{'physical'};
513 my $virtual = $data->{'virtual'};
514 my $cgi = $data->{'cgi'};
516 return error
($config->{'errors'}->{'no_directory'},upper_path
($virtual),{FILE
=> $virtual}) unless(-d
$physical && not -l
$physical);
517 return error
($config->{'errors'}->{'dir_no_create'},$virtual,{DIR
=> $virtual}) unless(-w
$physical);
519 if(my $uploaded_file = $cgi->param('uploaded_file'))
521 # Process file upload
523 my $filename = file_name
($uploaded_file);
524 my $file_phys = $physical.'/'.$filename;
525 my $file_virt = encode_html
($virtual.$filename);
529 return error
($config->{'errors'}->{'link_replace'},$virtual) if(-l
$file_phys);
530 return error
($config->{'errors'}->{'dir_replace'},$virtual) if(-d
$file_phys);
531 return error
($config->{'errors'}->{'exist_no_write'},$virtual,{FILE
=> $file_virt}) unless(-w
$file_phys);
532 return error
($config->{'errors'}->{'file_exists'},$virtual,{FILE
=> $file_virt}) unless($cgi->param('overwrite'));
535 my $ascii = $cgi->param('ascii');
536 my $handle = $cgi->upload('uploaded_file');
538 return error
($config->{'errors'}->{'invalid_upload'},$virtual) unless($handle);
540 # Read transferred file and write it to disk
542 read($handle, my $data, -s
$handle);
543 $data =~ s/\015\012|\012|\015/\n/g if($ascii); # Replace line separators if transferring in ASCII mode
544 file_save
($file_phys,\
$data,not $ascii) or return error
($config->{'errors'}->{'mkfile_failed'},$virtual,{FILE
=> $file_virt});
546 return devedit_reload
({command
=> 'show', file
=> $virtual});
550 my $tpl = new Template
;
551 $tpl->read_file($config->{'templates'}->{'upload'});
553 $tpl->fillin('DIR',encode_html
($virtual));
554 $tpl->fillin('DIR_URL',escape
($virtual));
555 $tpl->fillin('URL',equal_url
($config->{'httproot'},$virtual));
556 $tpl->fillin('SCRIPT',$script);
558 my $output = header
(-type
=> 'text/html');
559 $output .= $tpl->get_template;
567 # Copy a file and return to directory view
569 # Params: 1. Reference to user input hash
570 # 2. Reference to config hash
572 # Return: Output of the command (Scalar Reference)
576 my ($data,$config) = @_;
577 my $physical = $data->{'physical'};
578 my $virtual = $data->{'virtual'};
579 my $dir = upper_path
($virtual);
580 my $new_physical = $data->{'new_physical'};
582 return error
($config->{'errors'}->{'link_copy'},$dir) if(-l
$physical);
583 return error
($config->{'errors'}->{'dir_copy'},$dir) if(-d
$physical);
584 return error
($config->{'errors'}->{'no_copy'},$dir) unless(-r
$physical);
588 my $new_virtual = multi_string
($data->{'new_virtual'});
589 my $new_dir = upper_path
($new_virtual->{'normal'});
593 return error
($config->{'errors'}->{'link_replace'},$new_dir) if(-l
$new_physical);
594 return error
($config->{'errors'}->{'dir_replace'},$new_dir) if(-d
$new_physical);
595 return error
($config->{'errors'}->{'exist_no_write'},$new_dir,{FILE
=> $new_virtual->{'html'}}) unless(-w
$new_physical);
597 if(not $data->{'cgi'}->param('confirmed'))
599 my $tpl = new Template
;
600 $tpl->read_file($config->{'templates'}->{'confirm_replace'});
602 $tpl->fillin('FILE',encode_html
($virtual));
603 $tpl->fillin('NEW_FILE',$new_virtual->{'html'});
604 $tpl->fillin('NEW_FILENAME',file_name
($new_virtual->{'html'}));
605 $tpl->fillin('NEW_DIR',encode_html
($new_dir));
606 $tpl->fillin('DIR',encode_html
($dir));
607 $tpl->fillin('DIR_URL',escape
($dir));
609 $tpl->fillin('COMMAND','copy');
610 $tpl->fillin('URL',equal_url
($config->{'httproot'},$virtual));
611 $tpl->fillin('SCRIPT',$script);
613 my $output = header
(-type
=> 'text/html');
614 $output .= $tpl->get_template;
620 copy
($physical,$new_physical) or return error
($config->{'errors'}->{'copy_failed'},$dir,{FILE
=> encode_html
($virtual), NEW_FILE
=> $new_virtual->{'html'}});
621 return devedit_reload
({command
=> 'show', file
=> $new_dir});
625 my $tpl = new Template
;
626 $tpl->read_file($config->{'templates'}->{'copyfile'});
628 $tpl->fillin('FILE',encode_html
($virtual));
629 $tpl->fillin('DIR',encode_html
($dir));
630 $tpl->fillin('DIR_URL',escape
($dir));
631 $tpl->fillin('URL',equal_url
($config->{'httproot'},encode_html
($virtual)));
632 $tpl->fillin('SCRIPT',$script);
634 my $output = header
(-type
=> 'text/html');
635 $output .= $tpl->get_template;
643 # Rename/move a file and return to directory view
645 # Params: 1. Reference to user input hash
646 # 2. Reference to config hash
648 # Return: Output of the command (Scalar Reference)
652 my ($data,$config) = @_;
653 my $physical = $data->{'physical'};
654 my $virtual = $data->{'virtual'};
655 my $dir = upper_path
($virtual);
656 my $new_physical = $data->{'new_physical'};
658 return error
($config->{'errors'}->{'rename_root'},'/') if($virtual eq '/');
659 return error
($config->{'errors'}->{'no_rename'},$dir) unless(-w upper_path
($physical));
663 my $new_virtual = $data->{'new_virtual'};
664 my $new_dir = upper_path
($new_virtual);
665 $new_virtual = encode_html
($new_virtual);
669 return error
($config->{'errors'}->{'dir_replace'},$new_dir) if(-d
$new_physical && not -l
$new_physical);
670 return error
($config->{'errors'}->{'exist_no_write'},$new_dir,{FILE
=> $new_virtual}) unless(-w
$new_physical);
672 if(not $data->{'cgi'}->param('confirmed'))
674 my $tpl = new Template
;
675 $tpl->read_file($config->{'templates'}->{'confirm_replace'});
677 $tpl->fillin('FILE',$virtual);
678 $tpl->fillin('NEW_FILE',$new_virtual);
679 $tpl->fillin('NEW_FILENAME',file_name
($new_virtual));
680 $tpl->fillin('NEW_DIR',$new_dir);
681 $tpl->fillin('DIR',$dir);
683 $tpl->fillin('COMMAND','rename');
684 $tpl->fillin('URL',equal_url
($config->{'httproot'},$virtual));
685 $tpl->fillin('SCRIPT',$script);
687 my $output = header
(-type
=> 'text/html');
688 $output .= $tpl->get_template;
694 move
($physical,$new_physical) or return error
($config->{'errors'}->{'rename_failed'},$dir,{FILE
=> $virtual, NEW_FILE
=> $new_virtual});
695 return devedit_reload
({command
=> 'show', file
=> $new_dir});
699 my $tpl = new Template
;
700 $tpl->read_file($config->{'templates'}->{'renamefile'});
702 $tpl->fillin('FILE',$virtual);
703 $tpl->fillin('DIR',encode_html
($dir));
704 $tpl->fillin('DIR_URL',escape
($dir));
705 $tpl->fillin('URL',equal_url
($config->{'httproot'},$virtual));
706 $tpl->fillin('SCRIPT',$script);
708 my $output = header
(-type
=> 'text/html');
709 $output .= $tpl->get_template;
717 # Remove a file or a directory and return to directory view
719 # Params: 1. Reference to user input hash
720 # 2. Reference to config hash
722 # Return: Output of the command (Scalar Reference)
726 my ($data,$config) = @_;
727 my $physical = $data->{'physical'};
728 my $virtual = $data->{'virtual'};
729 my $dir = upper_path
($virtual);
731 return error
($config->{'errors'}->{'remove_root'},'/') if($virtual eq '/');
732 return error
($config->{'errors'}->{'no_delete'},$dir) unless(-w upper_path
($physical));
734 if(-d
$physical && not -l
$physical)
738 if($data->{'cgi'}->param('confirmed'))
741 return devedit_reload
({command
=> 'show', file
=> $dir});
745 my $tpl = new Template
;
746 $tpl->read_file($config->{'templates'}->{'confirm_rmdir'});
748 $tpl->fillin('DIR',encode_html
($virtual));
749 $tpl->fillin('DIR_URL',escape
($virtual));
750 $tpl->fillin('UPPER_DIR',encode_html
($dir));
751 $tpl->fillin('UPPER_DIR_URL',escape
($dir));
752 $tpl->fillin('URL',equal_url
($config->{'httproot'},encode_html
($virtual)));
753 $tpl->fillin('SCRIPT',$script);
755 my $output = header
(-type
=> 'text/html');
756 $output .= $tpl->get_template;
765 if($data->{'cgi'}->param('confirmed'))
767 unlink($physical) or return error
($config->{'errors'}->{'delete_failed'},$dir,{FILE
=> $virtual});
768 return devedit_reload
({command
=> 'show', file
=> $dir});
772 my $tpl = new Template
;
773 $tpl->read_file($config->{'templates'}->{'confirm_rmfile'});
775 $tpl->fillin('FILE',encode_html
($virtual));
776 $tpl->fillin('FILE_URL',escape
($virtual));
777 $tpl->fillin('DIR',encode_html
($dir));
778 $tpl->fillin('DIR_URL',escape
($dir));
779 $tpl->fillin('URL',equal_url
($config->{'httproot'},encode_html
($virtual)));
780 $tpl->fillin('SCRIPT',$script);
782 my $output = header
(-type
=> 'text/html');
783 $output .= $tpl->get_template;
792 # Change the mode and the group of a file or a directory
794 # Params: 1. Reference to user input hash
795 # 2. Reference to config hash
797 # Return: Output of the command (Scalar Reference)
801 my ($data,$config) = @_;
802 my $physical = $data->{'physical'};
803 my $virtual = $data->{'virtual'};
804 my $dir = upper_path
($virtual);
806 return error
($config->{'errors'}->{'no_users'},$dir,{FILE
=> encode_html
($virtual)}) unless($users);
807 return error
($config->{'errors'}->{'chprop_root'},'/') if($virtual eq '/');
808 return error
($config->{'errors'}->{'not_owner'},$dir,{FILE
=> encode_html
($virtual)}) unless(-o
$physical);
809 return error
($config->{'errors'}->{'chprop_link'},$dir) if(-l
$physical);
811 my $cgi = $data->{'cgi'};
812 my $mode = $cgi->param('mode');
813 my $group = $cgi->param('group');
821 chmod(oct($mode),$physical);
826 # Change the group using the `chgrp` system command
828 return error
($config->{'errors'}->{'invalid_group'},$dir,{GROUP
=> encode_html
($group)}) unless($group =~ /^[a-z0-9_]+[a-z0-9_-]*$/i);
829 system('chgrp',$group,$physical);
832 return devedit_reload
({command
=> 'show', file
=> $dir});
838 my @stat = stat($physical);
842 my $tpl = new Template
;
843 $tpl->read_file($config->{'templates'}->{'chprop'});
845 # Insert file properties into the template
847 $tpl->fillin('MODE_OCTAL',substr(sprintf('%04o',$mode),-4));
848 $tpl->fillin('MODE_STRING',mode_string
($mode));
849 $tpl->fillin('GID',$gid);
851 if(my $group = getgrgid($gid))
853 $tpl->fillin('GROUP',encode_html
($group));
854 $tpl->parse_if_block('group_detected',1);
858 $tpl->parse_if_block('group_detected',0);
861 # Insert other information
863 $tpl->fillin('FILE',encode_html
($virtual));
864 $tpl->fillin('FILE_URL',escape
($virtual));
865 $tpl->fillin('DIR',encode_html
($dir));
866 $tpl->fillin('DIR_URL',escape
($dir));
867 $tpl->fillin('URL',equal_url
($config->{'httproot'},encode_html
($virtual)));
868 $tpl->fillin('SCRIPT',$script);
870 my $output = header
(-type
=> 'text/html');
871 $output .= $tpl->get_template;
879 # Display some information about Dev-Editor
881 # Params: 1. Reference to user input hash
882 # 2. Reference to config hash
884 # Return: Output of the command (Scalar Reference)
888 my ($data,$config) = @_;
890 my $tpl = new Template
;
891 $tpl->read_file($config->{'templates'}->{'about'});
893 $tpl->fillin('SCRIPT',$script);
895 # Dev-Editor's version number
897 $tpl->fillin('VERSION',$data->{'version'});
899 # Some path information
901 $tpl->fillin('SCRIPT_PHYS',encode_html
($ENV{'SCRIPT_FILENAME'}));
902 $tpl->fillin('CONFIG_PATH',encode_html
($data->{'configfile'}));
903 $tpl->fillin('FILE_ROOT', encode_html
($config->{'fileroot'}));
904 $tpl->fillin('HTTP_ROOT', encode_html
($config->{'httproot'}));
908 $tpl->fillin('PERL_PROG',encode_html
($^X
));
909 $tpl->fillin('PERL_VER', sprintf('%vd',$^V
));
911 # Information about the server
913 $tpl->fillin('HTTPD',encode_html
($ENV{'SERVER_SOFTWARE'}));
914 $tpl->fillin('OS', encode_html
($^O
));
915 $tpl->fillin('TIME', encode_html
(strftime
($config->{'timeformat'},($config->{'use_gmt'}) ?
gmtime : localtime)));
917 $tpl->parse_if_block('gmt',$config->{'use_gmt'});
919 # Process information
921 $tpl->fillin('PID',$$);
923 # The following information is only available on systems supporting
928 # Dev-Editor is running on a system which allows users and groups
929 # So we display the user and the group of our process
931 my $uid = POSIX
::getuid
;
932 my $gid = POSIX
::getgid
;
934 $tpl->parse_if_block('users',1);
936 # ID's of user and group
938 $tpl->fillin('UID',$uid);
939 $tpl->fillin('GID',$gid);
941 # Names of user and group
943 if(my $user = getpwuid($uid))
945 $tpl->fillin('USER',encode_html
($user));
946 $tpl->parse_if_block('user_detected',1);
950 $tpl->parse_if_block('user_detected',0);
953 if(my $group = getgrgid($gid))
955 $tpl->fillin('GROUP',encode_html
($group));
956 $tpl->parse_if_block('group_detected',1);
960 $tpl->parse_if_block('group_detected',0);
965 $tpl->fillin('UMASK',sprintf('%04o',umask));
969 $tpl->parse_if_block('users',0);
972 my $output = header
(-type
=> 'text/html');
973 $output .= $tpl->get_template;
978 # it's true, baby ;-)
patrick-canterino.de