2 package IkiWiki::Plugin::attachment;
8 $CGI::DISABLE_UPLOADS=0;
10 # TODO move to admin prefs
11 $config{valid_attachments}="(*.mp3 and maxsize(15mb)) or (!ispage() and maxsize(50kb))";
14 hook(type => "formbuilder_setup", id => "attachment", call => \&formbuilder_setup);
15 hook(type => "formbuilder", id => "attachment", call => \&formbuilder);
18 sub formbuilder_setup { #{{{
20 my $form=$params{form};
22 return if $form->field("do") ne "edit";
24 $form->field(name => 'attachment', type => 'file');
27 sub formbuilder (@) { #{{{
29 my $form=$params{form};
31 return if $form->field("do") ne "edit";
33 if ($form->submitted eq "Upload") {
35 my $filename=IkiWiki::basename($q->param('attachment'));
36 if (! defined $filename || ! length $filename) {
37 # no file, so do nothing
41 # This is an (apparently undocumented) way to get the name
42 # of the temp file that CGI writes the upload to.
43 my $tempfile=$q->tmpFileName($filename);
45 # To untaint the filename, escape any hazardous characters,
46 # and make sure it isn't pruned.
47 $filename=IkiWiki::possibly_foolish_untaint(IkiWiki::titlepage($filename));
48 if (IkiWiki::file_pruned($filename, $config{srcdir})) {
49 error(gettext("bad attachment filename"));
52 # XXX Put the attachment in a subdir corresponding to the
54 # The editpage code has already checked that
55 # $form->field('page') is valid.
56 $filename="XXX/$filename";
58 # Use a pagespec to test that the attachment is valid.
59 if (exists $config{valid_attachments} &&
60 length $config{valid_attachments}) {
61 my $result=pagespec_match($filename, $config{valid_attachments},
64 error(gettext("attachment rejected")." ($result)");
68 # Move the attachment into place.
69 # Try to use a fast rename; fall back to copying.
70 prep_writefile($filename, $config{srcdir});
71 unlink($config{srcdir}."/".$filename);
72 if (! rename($tempfile, $config{srcdir}."/".$filename)) {
73 my $fh=$q->upload('attachment');
74 if (! defined $fh || ! ref $fh) {
75 error("failed to get filehandle");
78 writefile($filename, $config{srcdir}, undef, 1, sub {
79 IkiWiki::fast_file_copy($tempfile, $filename, $fh, @_);
85 # TODO trigger a wiki build if there's no vcs
89 package IkiWiki::PageSpec;
94 my $base=$size+0; # force to number
100 elsif ($size=~/mb?$/i) {
103 elsif ($size=~/gb?$/i) {
106 elsif ($size=~/tb?$/i) {
109 return $base * $multiple;
112 sub match_maxsize ($$;@) { #{{{
114 my $maxsize=eval{parsesize(shift)};
116 return IkiWiki::FailReason->new("unable to parse maxsize (or number too large)");
120 if (! exists $params{file}) {
121 return IkiWiki::FailReason->new("no file specified");
124 if (-s $params{file} > $maxsize) {
125 return IkiWiki::FailReason->new("file too large");
128 return IkiWiki::SuccessReason->new("file not too large");
132 sub match_minsize ($$;@) { #{{{
134 my $minsize=eval{parsesize(shift)};
136 return IkiWiki::FailReason->new("unable to parse minsize (or number too large)");
140 if (! exists $params{file}) {
141 return IkiWiki::FailReason->new("no file specified");
144 if (-s $params{file} < $minsize) {
145 return IkiWiki::FailReason->new("file too small");
148 return IkiWiki::SuccessReason->new("file not too small");
152 sub match_ispage ($$;@) { #{{{
155 if (defined IkiWiki::pagetype($filename)) {
156 return IkiWiki::SuccessReason->new("file is a wiki page");
159 return IkiWiki::FailReason->new("file is not a wiki page");