summaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-07-01 00:42:42 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-07-01 00:42:42 -0400
commit4fa115fdb5e31b28d8b7f5dce8c4ed6fedc464cd (patch)
tree835f6db318c139dc988a7ce47b2a953dbd8c7004 /IkiWiki
parent0f8ea7ecca27a9e73af5c515f637f543912c7076 (diff)
copy the attachment into srcdir
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Plugin/attachment.pm34
1 files changed, 25 insertions, 9 deletions
diff --git a/IkiWiki/Plugin/attachment.pm b/IkiWiki/Plugin/attachment.pm
index 6168ea589..88b26e041 100644
--- a/IkiWiki/Plugin/attachment.pm
+++ b/IkiWiki/Plugin/attachment.pm
@@ -6,7 +6,7 @@ use strict;
use IkiWiki 2.00;
use CGI;
$CGI::DISABLE_UPLOADS=0;
-
+
# TODO move to admin prefs
$config{valid_attachments}="(*.mp3 and maxsize(15mb)) or (!ispage() and maxsize(50kb))";
@@ -49,6 +49,12 @@ sub formbuilder (@) { #{{{
error(gettext("bad attachment filename"));
}
+ # XXX Put the attachment in a subdir corresponding to the
+ # page being edited.
+ # The editpage code has already checked that
+ # $form->field('page') is valid.
+ $filename="XXX/$filename";
+
# Use a pagespec to test that the attachment is valid.
if (exists $config{valid_attachments} &&
length $config{valid_attachments}) {
@@ -58,15 +64,25 @@ sub formbuilder (@) { #{{{
error(gettext("attachment rejected")." ($result)");
}
}
-
- my $fh=$q->upload('attachment');
- if (! defined $fh || ! ref $fh) {
- error("failed to get filehandle");
- }
- binmode($fh);
- while (<$fh>) {
- print STDERR $_."\n";
+
+ # Move the attachment into place.
+ # Try to use a fast rename; fall back to copying.
+ prep_writefile($filename, $config{srcdir});
+ unlink($config{srcdir}."/".$filename);
+ if (! rename($tempfile, $config{srcdir}."/".$filename)) {
+ my $fh=$q->upload('attachment');
+ if (! defined $fh || ! ref $fh) {
+ error("failed to get filehandle");
+ }
+ binmode($fh);
+ writefile($filename, $config{srcdir}, undef, 1, sub {
+ IkiWiki::fast_file_copy($tempfile, $filename, $fh, @_);
+ });
}
+
+ # TODO add to vcs
+
+ # TODO trigger a wiki build if there's no vcs
}
} # }}}