]> git.p6c8.net - devedit.git/commitdiff
Dev-Editor is now able to accept HTTP file uploads.
authorpcanterino <>
Mon, 1 Mar 2004 15:36:41 +0000 (15:36 +0000)
committerpcanterino <>
Mon, 1 Mar 2004 15:36:41 +0000 (15:36 +0000)
devedit.dat
modules/Command.pm
templates/dirlist.htm

index 8c9a918b7af349962fafae6e474ef5f5f7dfad0d..285e4635c6b8e20ceb8abce1e1817438280073b9 100644 (file)
@@ -21,6 +21,7 @@ tpl_viewfile        = templates/viewfile.htm
 tpl_editfile        = templates/editfile.htm
 tpl_copyfile        = templates/copyfile.htm
 tpl_renamefile      = templates/renamefile.htm
+tpl_upload          = templates/upload.htm
 tpl_confirm_rmfile  = templates/confirm_rmfile.htm
 tpl_confirm_rmdir   = templates/confirm_rmdir.htm
 tpl_confirm_unlock  = templates/confirm_unlock.htm
index cddb5ca37a2e3559fd8c1d7c060fb6cbb1fa905c..f9de6fcb0f0b4d42d2d2e2b9325752e18eb12d65 100644 (file)
@@ -6,7 +6,7 @@ package Command;
 # Execute Dev-Editor's commands
 #
 # Author:        Patrick Canterino <patshaping@gmx.net>
-# Last modified: 2004-02-23
+# Last modified: 2004-03-01
 #
 
 use strict;
@@ -33,6 +33,7 @@ my %dispatch = ('show'       => \&exec_show,
                 'endedit'    => \&exec_endedit,
                 'mkdir'      => \&exec_mkdir,
                 'mkfile'     => \&exec_mkfile,
+                'upload'     => \&exec_upload,
                 'copy'       => \&exec_copy,
                 'rename'     => \&exec_rename,
                 'remove'     => \&exec_remove,
@@ -382,6 +383,68 @@ sub exec_mkdir($$)
  return devedit_reload({command => 'show', file => $dir});
 }
 
+# exec_upload()
+#
+# Upload a file
+#
+# Params: 1. Reference to user input hash
+#         2. Reference to config hash
+#
+# Return: Output of the command (Scalar Reference)
+
+sub exec_upload($$)
+{
+ my ($data,$config) = @_;
+ my $physical       = $data->{'physical'};
+ my $virtual        = $data->{'virtual'};
+ my $cgi            = $data->{'cgi'};
+
+ if(my $uploaded_file = $cgi->param('uploaded_file'))
+ {
+  # Process file upload
+
+  my $filename  = file_name($uploaded_file);
+  my $file_phys = $physical."/".$filename;
+  my $file_virt = $virtual."".$filename;
+
+  return error($config->{'err_file_exists'},$virtual,{FILE => $file_virt}) if(-e $file_phys);
+
+  my $ascii     = $cgi->param('ascii');
+  my $handle    = $cgi->upload('uploaded_file');
+
+  local *FILE;
+
+  open(FILE,">$file_phys") or return error($config->{'err_mkfile_failed'},$virtual,{FILE => $file_virt});
+  binmode(FILE) unless($ascii);
+
+  my $data;
+
+  while(read($handle,$data,1024))
+  {
+   $data =~ s/\015\012|\012|\015/\n/g if($ascii);
+   print FILE $data;
+  }
+
+  close(FILE);
+
+  return devedit_reload({command => "show", file => $virtual});
+ }
+ else
+ {
+  my $tpl = new Template;
+  $tpl->read_file($config->{'tpl_upload'});
+
+  $tpl->fillin("DIR",$virtual);
+  $tpl->fillin("URL",equal_url($config->{'httproot'},$virtual));
+  $tpl->fillin("SCRIPT",$script);
+
+  my $output = header(-type => "text/html");
+  $output   .= $tpl->get_template;
+
+  return \$output;
+ }
+}
+
 # exec_copy()
 #
 # Copy a file and return to directory view
index ca83e305bd48a7f11a5b77894b795bfa477e3a0b..3ababdedc1d54f8c689e2b514239b0aa8aee3eb0 100644 (file)
 <td>{DIR} <input type="text" name="newfile"> <input type="submit" value="Create!"></td>
 </form>
 </tr>
+
+<tr>
+<td colspan="2"><a href="{SCRIPT}?command=upload&file={DIR}">Upload a file</a></td>
+</tr>
 </table>
 
 <hr>

patrick-canterino.de