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 # Add attachment field, set type to multipart.
99 $form->enctype(&CGI::MULTIPART);
100 $form->field(name => 'attachment', type => 'file');
101 # These buttons are not put in the usual place, so
102 # are not added to the normal formbuilder button list.
103 $form->tmpl_param("field-upload" => '<input name="_submit" type="submit" value="Upload Attachment" />');
104 $form->tmpl_param("field-link" => '<input name="_submit" type="submit" value="Insert Links" />');
106 # Add the javascript from the toggle plugin;
107 # the attachments interface uses it to toggle visibility.
108 require IkiWiki::Plugin::toggle;
109 $form->tmpl_param("javascript" => $IkiWiki::Plugin::toggle::javascript);
110 # Start with the attachments interface toggled invisible,
111 # but if it was used, keep it open.
112 if ($form->submitted ne "Upload Attachment" &&
113 (! defined $q->param("attachment_select") ||
114 ! length $q->param("attachment_select"))) {
115 $form->tmpl_param("attachments-class" => "toggleable");
118 $form->tmpl_param("attachments-class" => "toggleable-open");
121 elsif ($form->title eq "preferences") {
122 # XXX deprecated, should remove eventually
123 my $session=$params{session};
124 my $user_name=$session->param("name");
126 $form->field(name => "allowed_attachments", size => 50,
128 comment => "deprecated; please move to allowed_attachments in setup file",
130 if (! IkiWiki::is_admin($user_name)) {
131 $form->field(name => "allowed_attachments", type => "hidden");
133 if (! $form->submitted) {
134 my $value=IkiWiki::userinfo_get($user_name, "allowed_attachments");
136 $form->field(name => "allowed_attachments", force => 1,
137 value => IkiWiki::userinfo_get($user_name, "allowed_attachments"));
140 $form->field(name => "allowed_attachments", type => "hidden");
143 if ($form->submitted && $form->submitted eq 'Save Preferences') {
144 if (defined $form->field("allowed_attachments")) {
145 IkiWiki::userinfo_set($user_name, "allowed_attachments",
146 $form->field("allowed_attachments")) ||
147 error("failed to set allowed_attachments");
148 if (! length $form->field("allowed_attachments")) {
149 $form->field(name => "allowed_attachments", type => "hidden");
156 sub formbuilder (@) { #{{{
158 my $form=$params{form};
161 return if ! defined $form->field("do") || $form->field("do") ne "edit";
163 my $filename=$q->param('attachment');
164 if (defined $filename && length $filename &&
165 ($form->submitted eq "Upload Attachment" || $form->submitted eq "Save Page")) {
166 my $session=$params{session};
168 # This is an (apparently undocumented) way to get the name
169 # of the temp file that CGI writes the upload to.
170 my $tempfile=$q->tmpFileName($filename);
171 if (! defined $tempfile || ! length $tempfile) {
172 # perl 5.8 needs an alternative, awful method
173 if ($q =~ /HASH/ && exists $q->{'.tmpfiles'}) {
174 foreach my $key (keys(%{$q->{'.tmpfiles'}})) {
175 $tempfile=$q->tmpFileName(\$key);
176 last if defined $tempfile && length $tempfile;
179 if (! defined $tempfile || ! length $tempfile) {
180 error("CGI::tmpFileName failed to return the uploaded file name");
184 $filename=linkpage(IkiWiki::possibly_foolish_untaint(
185 attachment_location($form->field('page')).
186 IkiWiki::basename($filename)));
187 if (IkiWiki::file_pruned($filename, $config{srcdir})) {
188 error(gettext("bad attachment filename"));
191 # Check that the user is allowed to edit a page with the
192 # name of the attachment.
193 IkiWiki::check_canedit($filename, $q, $session, 1);
194 # And that the attachment itself is acceptable.
195 check_canattach($session, $filename, $tempfile);
197 # Needed for fast_file_copy and for rendering below.
198 require IkiWiki::Render;
200 # Move the attachment into place.
201 # Try to use a fast rename; fall back to copying.
202 IkiWiki::prep_writefile($filename, $config{srcdir});
203 unlink($config{srcdir}."/".$filename);
204 if (rename($tempfile, $config{srcdir}."/".$filename)) {
205 # The temp file has tight permissions; loosen up.
206 chmod(0666 & ~umask, $config{srcdir}."/".$filename);
209 my $fh=$q->upload('attachment');
210 if (! defined $fh || ! ref $fh) {
211 # needed by old CGI versions
212 $fh=$q->param('attachment');
213 if (! defined $fh || ! ref $fh) {
214 # even that doesn't always work,
215 # fall back to opening the tempfile
217 open($fh, "<", $tempfile) || error("failed to open \"$tempfile\": $!");
221 writefile($filename, $config{srcdir}, undef, 1, sub {
222 IkiWiki::fast_file_copy($tempfile, $filename, $fh, @_);
226 # Check the attachment in and trigger a wiki refresh.
228 IkiWiki::rcs_add($filename);
229 IkiWiki::disable_commit_hook();
230 IkiWiki::rcs_commit($filename, gettext("attachment upload"),
231 IkiWiki::rcs_prepedit($filename),
232 $session->param("name"), $ENV{REMOTE_ADDR});
233 IkiWiki::enable_commit_hook();
234 IkiWiki::rcs_update();
237 IkiWiki::saveindex();
239 elsif ($form->submitted eq "Insert Links") {
240 my $page=quotemeta($q->param("page"));
242 foreach my $f ($q->param("attachment_select")) {
246 $form->field(name => 'editcontent',
247 value => $form->field('editcontent')."\n\n".$add,
248 force => 1) if length $add;
251 # Generate the attachment list only after having added any new
253 $form->tmpl_param("attachment_list" => [attachment_list($form->field('page'))]);
256 sub attachment_location ($) { #{{{
259 # Put the attachment in a subdir of the page it's attached
260 # to, unless that page is an "index" page.
261 $page=~s/(^|\/)index//;
262 $page.="/" if length $page;
267 sub attachment_list ($) { #{{{
269 my $loc=attachment_location($page);
272 foreach my $f (values %pagesources) {
273 if (! defined pagetype($f) &&
274 $f=~m/^\Q$loc\E[^\/]+$/ &&
275 -e "$config{srcdir}/$f") {
277 "field-select" => '<input type="checkbox" name="attachment_select" value="'.$f.'" />',
278 link => htmllink($page, $page, $f, noimageinline => 1),
279 size => IkiWiki::Plugin::filecheck::humansize((stat(_))[7]),
280 mtime => displaytime($IkiWiki::pagemtime{$f}),
281 mtime_raw => $IkiWiki::pagemtime{$f},
286 # Sort newer attachments to the top of the list, so a newly-added
287 # attachment appears just before the form used to add it.
288 return sort { $b->{mtime_raw} <=> $a->{mtime_raw} || $a->{link} cmp $b->{link} } @ret;
291 package IkiWiki::PageSpec;
293 sub match_user ($$;@) { #{{{
298 if (! exists $params{user}) {
299 return IkiWiki::FailReason->new("no user specified");
302 if (defined $params{user} && lc $params{user} eq lc $user) {
303 return IkiWiki::SuccessReason->new("user is $user");
305 elsif (! defined $params{user}) {
306 return IkiWiki::FailReason->new("not logged in");
309 return IkiWiki::FailReason->new("user is $params{user}, not $user");
313 sub match_admin ($$;@) { #{{{
318 if (! exists $params{user}) {
319 return IkiWiki::FailReason->new("no user specified");
322 if (defined $params{user} && IkiWiki::is_admin($params{user})) {
323 return IkiWiki::SuccessReason->new("user is an admin");
325 elsif (! defined $params{user}) {
326 return IkiWiki::FailReason->new("not logged in");
329 return IkiWiki::FailReason->new("user is not an admin");
333 sub match_ip ($$;@) { #{{{
338 if (! exists $params{ip}) {
339 return IkiWiki::FailReason->new("no IP specified");
342 if (defined $params{ip} && lc $params{ip} eq lc $ip) {
343 return IkiWiki::SuccessReason->new("IP is $ip");
346 return IkiWiki::FailReason->new("IP is $params{ip}, not $ip");