2 package IkiWiki::Plugin::attachment;
9 add_underlay("javascript");
10 hook(type => "getsetup", id => "attachment", call => \&getsetup);
11 hook(type => "checkconfig", id => "attachment", call => \&checkconfig);
12 hook(type => "formbuilder_setup", id => "attachment", call => \&formbuilder_setup);
13 hook(type => "formbuilder", id => "attachment", call => \&formbuilder);
14 IkiWiki::loadplugin("filecheck");
24 allowed_attachments => {
26 example => "virusfree() and mimetype(image/*) and maxsize(50kb)",
27 description => "enhanced PageSpec specifying what attachments are allowed",
28 link => "ikiwiki/PageSpec/attachment",
34 example => "clamdscan -",
35 description => "virus checker program (reads STDIN, returns nonzero if virus found)",
41 sub check_canattach ($$;$) {
43 my $dest=shift; # where it's going to be put, under the srcdir
44 my $file=shift; # the path to the attachment currently
46 # Don't allow an attachment to be uploaded with the same name as an
48 if (exists $IkiWiki::pagesources{$dest} &&
49 $IkiWiki::pagesources{$dest} ne $dest) {
50 error(sprintf(gettext("there is already a page named %s"), $dest));
53 # Use a special pagespec to test that the attachment is valid.
55 if (defined $config{allowed_attachments} &&
56 length $config{allowed_attachments}) {
57 $allowed=pagespec_match($dest,
58 $config{allowed_attachments},
60 user => $session->param("name"),
61 ip => $ENV{REMOTE_ADDR},
66 error(gettext("prohibited by allowed_attachments")." ($allowed)");
74 $config{cgi_disable_uploads}=0;
77 sub formbuilder_setup (@) {
79 my $form=$params{form};
82 if (defined $form->field("do") && ($form->field("do") eq "edit" ||
83 $form->field("do") eq "create")) {
84 # Add attachment field, set type to multipart.
85 $form->enctype(&CGI::MULTIPART);
86 $form->field(name => 'attachment', type => 'file');
87 # These buttons are not put in the usual place, so
88 # are not added to the normal formbuilder button list.
89 $form->tmpl_param("field-upload" => '<input name="_submit" type="submit" value="Upload Attachment" />');
90 $form->tmpl_param("field-link" => '<input name="_submit" type="submit" value="Insert Links" />');
92 # Add the toggle javascript; the attachments interface uses
93 # it to toggle visibility.
94 require IkiWiki::Plugin::toggle;
95 $form->tmpl_param("javascript" => IkiWiki::Plugin::toggle::include_javascript($params{page}, 1));
96 # Start with the attachments interface toggled invisible,
97 # but if it was used, keep it open.
98 if ($form->submitted ne "Upload Attachment" &&
99 (! defined $q->param("attachment_select") ||
100 ! length $q->param("attachment_select"))) {
101 $form->tmpl_param("attachments-class" => "toggleable");
104 $form->tmpl_param("attachments-class" => "toggleable-open");
109 sub formbuilder (@) {
111 my $form=$params{form};
114 return if ! defined $form->field("do") || ($form->field("do") ne "edit" && $form->field("do") ne "create") ;
116 my $filename=Encode::decode_utf8($q->param('attachment'));
117 if (defined $filename && length $filename &&
118 ($form->submitted eq "Upload Attachment" || $form->submitted eq "Save Page")) {
119 my $session=$params{session};
121 # This is an (apparently undocumented) way to get the name
122 # of the temp file that CGI writes the upload to.
123 my $tempfile=$q->tmpFileName($filename);
124 if (! defined $tempfile || ! length $tempfile) {
125 # perl 5.8 needs an alternative, awful method
126 if ($q =~ /HASH/ && exists $q->{'.tmpfiles'}) {
127 foreach my $key (keys(%{$q->{'.tmpfiles'}})) {
128 $tempfile=$q->tmpFileName(\$key);
129 last if defined $tempfile && length $tempfile;
132 if (! defined $tempfile || ! length $tempfile) {
133 error("CGI::tmpFileName failed to return the uploaded file name");
137 $filename=linkpage(IkiWiki::possibly_foolish_untaint(
138 attachment_location($form->field('page')).
139 IkiWiki::basename($filename)));
140 if (IkiWiki::file_pruned($filename, $config{srcdir})) {
141 error(gettext("bad attachment filename"));
144 # Check that the user is allowed to edit a page with the
145 # name of the attachment.
146 IkiWiki::check_canedit($filename, $q, $session, 1);
147 # And that the attachment itself is acceptable.
148 check_canattach($session, $filename, $tempfile);
150 # Needed for fast_file_copy and for rendering below.
151 require IkiWiki::Render;
153 # Move the attachment into place.
154 # Try to use a fast rename; fall back to copying.
155 IkiWiki::prep_writefile($filename, $config{srcdir});
156 unlink($config{srcdir}."/".$filename);
157 if (rename($tempfile, $config{srcdir}."/".$filename)) {
158 # The temp file has tight permissions; loosen up.
159 chmod(0666 & ~umask, $config{srcdir}."/".$filename);
162 my $fh=$q->upload('attachment');
163 if (! defined $fh || ! ref $fh) {
164 # needed by old CGI versions
165 $fh=$q->param('attachment');
166 if (! defined $fh || ! ref $fh) {
167 # even that doesn't always work,
168 # fall back to opening the tempfile
170 open($fh, "<", $tempfile) || error("failed to open \"$tempfile\": $!");
174 writefile($filename, $config{srcdir}, undef, 1, sub {
175 IkiWiki::fast_file_copy($tempfile, $filename, $fh, @_);
179 # Check the attachment in and trigger a wiki refresh.
181 IkiWiki::rcs_add($filename);
182 IkiWiki::disable_commit_hook();
183 IkiWiki::rcs_commit($filename, gettext("attachment upload"),
184 IkiWiki::rcs_prepedit($filename),
185 $session->param("name"), $ENV{REMOTE_ADDR});
186 IkiWiki::enable_commit_hook();
187 IkiWiki::rcs_update();
190 IkiWiki::saveindex();
192 elsif ($form->submitted eq "Insert Links") {
193 my $page=quotemeta(Encode::decode_utf8($q->param("page")));
195 foreach my $f ($q->param("attachment_select")) {
196 $f=Encode::decode_utf8($f);
200 $form->field(name => 'editcontent',
201 value => $form->field('editcontent')."\n\n".$add,
202 force => 1) if length $add;
205 # Generate the attachment list only after having added any new
207 $form->tmpl_param("attachment_list" => [attachment_list($form->field('page'))]);
210 sub attachment_location ($) {
213 # Put the attachment in a subdir of the page it's attached
214 # to, unless that page is an "index" page.
215 $page=~s/(^|\/)index//;
216 $page.="/" if length $page;
221 sub attachment_list ($) {
223 my $loc=attachment_location($page);
226 foreach my $f (values %pagesources) {
227 if (! defined pagetype($f) &&
228 $f=~m/^\Q$loc\E[^\/]+$/ &&
229 -e "$config{srcdir}/$f") {
231 "field-select" => '<input type="checkbox" name="attachment_select" value="'.$f.'" />',
232 link => htmllink($page, $page, $f, noimageinline => 1),
233 size => IkiWiki::Plugin::filecheck::humansize((stat(_))[7]),
234 mtime => displaytime($IkiWiki::pagemtime{$f}),
235 mtime_raw => $IkiWiki::pagemtime{$f},
240 # Sort newer attachments to the top of the list, so a newly-added
241 # attachment appears just before the form used to add it.
242 return sort { $b->{mtime_raw} <=> $a->{mtime_raw} || $a->{link} cmp $b->{link} } @ret;