2 package IkiWiki::Plugin::attachment;
9 hook(type => "getsetup", id => "attachment", call => \&getsetup);
10 hook(type => "checkconfig", id => "attachment", call => \&checkconfig);
11 hook(type => "formbuilder_setup", id => "attachment", call => \&formbuilder_setup);
12 hook(type => "formbuilder", id => "attachment", call => \&formbuilder);
13 IkiWiki::loadplugin("filecheck");
16 sub getsetup () { #{{{
22 allowed_attachments => {
24 example => "virusfree() and mimetype(image/*) and maxsize(50kb)",
25 description => "enhanced PageSpec specifying what attachments are allowed",
26 link => "ikiwiki/PageSpec/attachment",
32 example => "clamdscan -",
33 description => "virus checker program (reads STDIN, returns nonzero if virus found)",
39 sub check_canattach ($$;$) { #{{{
41 my $dest=shift; # where it's going to be put, under the srcdir
42 my $file=shift; # the path to the attachment currently
44 # Don't allow an attachment to be uploaded with the same name as an
46 if (exists $IkiWiki::pagesources{$dest} &&
47 $IkiWiki::pagesources{$dest} ne $dest) {
48 error(sprintf(gettext("there is already a page named %s"), $dest));
51 # Use a special pagespec to test that the attachment is valid.
53 if (defined $config{allowed_attachments} &&
54 length $config{allowed_attachments}) {
55 $allowed=pagespec_match($dest,
56 $config{allowed_attachments},
58 user => $session->param("name"),
59 ip => $ENV{REMOTE_ADDR},
63 # XXX deprecated, should be removed eventually
65 foreach my $admin (@{$config{adminuser}}) {
66 my $allowed_attachments=IkiWiki::userinfo_get($admin, "allowed_attachments");
67 if (defined $allowed_attachments &&
68 length $allowed_attachments) {
69 $allowed=pagespec_match($dest,
72 user => $session->param("name"),
73 ip => $ENV{REMOTE_ADDR},
81 error(gettext("prohibited by allowed_attachments")." ($allowed)");
88 sub checkconfig () { #{{{
89 $config{cgi_disable_uploads}=0;
92 sub formbuilder_setup (@) { #{{{
94 my $form=$params{form};
97 if (defined $form->field("do") && ($form->field("do") eq "edit" ||
98 $form->field("do") eq "create")) {
99 # Add attachment field, set type to multipart.
100 $form->enctype(&CGI::MULTIPART);
101 $form->field(name => 'attachment', type => 'file');
102 # These buttons are not put in the usual place, so
103 # are not added to the normal formbuilder button list.
104 $form->tmpl_param("field-upload" => '<input name="_submit" type="submit" value="Upload Attachment" />');
105 $form->tmpl_param("field-link" => '<input name="_submit" type="submit" value="Insert Links" />');
107 # Add the javascript from the toggle plugin;
108 # the attachments interface uses it to toggle visibility.
109 require IkiWiki::Plugin::toggle;
110 $form->tmpl_param("javascript" => $IkiWiki::Plugin::toggle::javascript);
111 # Start with the attachments interface toggled invisible,
112 # but if it was used, keep it open.
113 if ($form->submitted ne "Upload Attachment" &&
114 (! defined $q->param("attachment_select") ||
115 ! length $q->param("attachment_select"))) {
116 $form->tmpl_param("attachments-class" => "toggleable");
119 $form->tmpl_param("attachments-class" => "toggleable-open");
122 elsif ($form->title eq "preferences") {
123 # XXX deprecated, should remove eventually
124 my $session=$params{session};
125 my $user_name=$session->param("name");
127 $form->field(name => "allowed_attachments", size => 50,
129 comment => "deprecated; please move to allowed_attachments in setup file",
131 if (! IkiWiki::is_admin($user_name)) {
132 $form->field(name => "allowed_attachments", type => "hidden");
134 if (! $form->submitted) {
135 my $value=IkiWiki::userinfo_get($user_name, "allowed_attachments");
137 $form->field(name => "allowed_attachments", force => 1,
138 value => IkiWiki::userinfo_get($user_name, "allowed_attachments"));
141 $form->field(name => "allowed_attachments", type => "hidden");
144 if ($form->submitted && $form->submitted eq 'Save Preferences') {
145 if (defined $form->field("allowed_attachments")) {
146 IkiWiki::userinfo_set($user_name, "allowed_attachments",
147 $form->field("allowed_attachments")) ||
148 error("failed to set allowed_attachments");
149 if (! length $form->field("allowed_attachments")) {
150 $form->field(name => "allowed_attachments", type => "hidden");
157 sub formbuilder (@) { #{{{
159 my $form=$params{form};
162 return if ! defined $form->field("do") || ($form->field("do") ne "edit" && $form->field("do") ne "create") ;
164 my $filename=$q->param('attachment');
165 if (defined $filename && length $filename &&
166 ($form->submitted eq "Upload Attachment" || $form->submitted eq "Save Page")) {
167 my $session=$params{session};
169 # This is an (apparently undocumented) way to get the name
170 # of the temp file that CGI writes the upload to.
171 my $tempfile=$q->tmpFileName($filename);
172 if (! defined $tempfile || ! length $tempfile) {
173 # perl 5.8 needs an alternative, awful method
174 if ($q =~ /HASH/ && exists $q->{'.tmpfiles'}) {
175 foreach my $key (keys(%{$q->{'.tmpfiles'}})) {
176 $tempfile=$q->tmpFileName(\$key);
177 last if defined $tempfile && length $tempfile;
180 if (! defined $tempfile || ! length $tempfile) {
181 error("CGI::tmpFileName failed to return the uploaded file name");
185 $filename=linkpage(IkiWiki::possibly_foolish_untaint(
186 attachment_location($form->field('page')).
187 IkiWiki::basename($filename)));
188 if (IkiWiki::file_pruned($filename, $config{srcdir})) {
189 error(gettext("bad attachment filename"));
192 # Check that the user is allowed to edit a page with the
193 # name of the attachment.
194 IkiWiki::check_canedit($filename, $q, $session, 1);
195 # And that the attachment itself is acceptable.
196 check_canattach($session, $filename, $tempfile);
198 # Needed for fast_file_copy and for rendering below.
199 require IkiWiki::Render;
201 # Move the attachment into place.
202 # Try to use a fast rename; fall back to copying.
203 IkiWiki::prep_writefile($filename, $config{srcdir});
204 unlink($config{srcdir}."/".$filename);
205 if (rename($tempfile, $config{srcdir}."/".$filename)) {
206 # The temp file has tight permissions; loosen up.
207 chmod(0666 & ~umask, $config{srcdir}."/".$filename);
210 my $fh=$q->upload('attachment');
211 if (! defined $fh || ! ref $fh) {
212 # needed by old CGI versions
213 $fh=$q->param('attachment');
214 if (! defined $fh || ! ref $fh) {
215 # even that doesn't always work,
216 # fall back to opening the tempfile
218 open($fh, "<", $tempfile) || error("failed to open \"$tempfile\": $!");
222 writefile($filename, $config{srcdir}, undef, 1, sub {
223 IkiWiki::fast_file_copy($tempfile, $filename, $fh, @_);
227 # Check the attachment in and trigger a wiki refresh.
229 IkiWiki::rcs_add($filename);
230 IkiWiki::disable_commit_hook();
231 IkiWiki::rcs_commit($filename, gettext("attachment upload"),
232 IkiWiki::rcs_prepedit($filename),
233 $session->param("name"), $ENV{REMOTE_ADDR});
234 IkiWiki::enable_commit_hook();
235 IkiWiki::rcs_update();
238 IkiWiki::saveindex();
240 elsif ($form->submitted eq "Insert Links") {
241 my $page=quotemeta($q->param("page"));
243 foreach my $f ($q->param("attachment_select")) {
247 $form->field(name => 'editcontent',
248 value => $form->field('editcontent')."\n\n".$add,
249 force => 1) if length $add;
252 # Generate the attachment list only after having added any new
254 $form->tmpl_param("attachment_list" => [attachment_list($form->field('page'))]);
257 sub attachment_location ($) { #{{{
260 # Put the attachment in a subdir of the page it's attached
261 # to, unless that page is an "index" page.
262 $page=~s/(^|\/)index//;
263 $page.="/" if length $page;
268 sub attachment_list ($) { #{{{
270 my $loc=attachment_location($page);
273 foreach my $f (values %pagesources) {
274 if (! defined pagetype($f) &&
275 $f=~m/^\Q$loc\E[^\/]+$/ &&
276 -e "$config{srcdir}/$f") {
278 "field-select" => '<input type="checkbox" name="attachment_select" value="'.$f.'" />',
279 link => htmllink($page, $page, $f, noimageinline => 1),
280 size => IkiWiki::Plugin::filecheck::humansize((stat(_))[7]),
281 mtime => displaytime($IkiWiki::pagemtime{$f}),
282 mtime_raw => $IkiWiki::pagemtime{$f},
287 # Sort newer attachments to the top of the list, so a newly-added
288 # attachment appears just before the form used to add it.
289 return sort { $b->{mtime_raw} <=> $a->{mtime_raw} || $a->{link} cmp $b->{link} } @ret;