2 package IkiWiki::Plugin::attachment;
9 hook(type => "checkconfig", id => "attachment", call => \&checkconfig);
10 hook(type => "formbuilder_setup", id => "attachment", call => \&formbuilder_setup);
11 hook(type => "formbuilder", id => "attachment", call => \&formbuilder);
14 sub checkconfig () { #{{{
15 $config{cgi_disable_uploads}=0;
18 sub formbuilder_setup (@) { #{{{
20 my $form=$params{form};
23 if (defined $form->field("do") && $form->field("do") eq "edit") {
24 $form->field(name => 'attachment', type => 'file');
25 # These buttons are not put in the usual place, so
26 # are not added to the normal formbuilder button list.
27 $form->tmpl_param("field-upload" => '<input name="_submit" type="submit" value="Upload Attachment" />');
28 $form->tmpl_param("field-link" => '<input name="_submit" type="submit" value="Insert Links" />');
30 # Add the javascript from the toggle plugin;
31 # the attachments interface uses it to toggle visibility.
32 require IkiWiki::Plugin::toggle;
33 $form->tmpl_param("javascript" => $IkiWiki::Plugin::toggle::javascript);
34 # Start with the attachments interface toggled invisible,
35 # but if it was used, keep it open.
36 if ($form->submitted ne "Upload Attachment" &&
37 (! defined $q->param("attachment_select") ||
38 ! length $q->param("attachment_select"))) {
39 $form->tmpl_param("attachments-class" => "toggleable");
42 $form->tmpl_param("attachments-class" => "toggleable-open");
45 elsif ($form->title eq "preferences") {
46 my $session=$params{session};
47 my $user_name=$session->param("name");
49 $form->field(name => "allowed_attachments", size => 50,
53 "ikiwiki/PageSpec/attachment",
55 linktext => "Enhanced PageSpec",
58 if (! IkiWiki::is_admin($user_name)) {
59 $form->field(name => "allowed_attachments", type => "hidden");
61 if (! $form->submitted) {
62 $form->field(name => "allowed_attachments", force => 1,
63 value => IkiWiki::userinfo_get($user_name, "allowed_attachments"));
65 if ($form->submitted && $form->submitted eq 'Save Preferences') {
66 if (defined $form->field("allowed_attachments")) {
67 IkiWiki::userinfo_set($user_name, "allowed_attachments",
68 $form->field("allowed_attachments")) ||
69 error("failed to set allowed_attachments");
75 sub formbuilder (@) { #{{{
77 my $form=$params{form};
80 return if ! defined $form->field("do") || $form->field("do") ne "edit";
82 my $filename=$q->param('attachment');
83 if (defined $filename && length $filename &&
84 ($form->submitted eq "Upload Attachment" || $form->submitted eq "Save Page")) {
85 my $session=$params{session};
87 # This is an (apparently undocumented) way to get the name
88 # of the temp file that CGI writes the upload to.
89 my $tempfile=$q->tmpFileName($filename);
91 if (! defined $tempfile) {
92 error("failed to determine temp filename");
95 $filename=IkiWiki::titlepage(
96 IkiWiki::possibly_foolish_untaint(
97 attachment_location($form->field('page')).
98 IkiWiki::basename($filename)));
99 if (IkiWiki::file_pruned($filename, $config{srcdir})) {
100 error(gettext("bad attachment filename"));
103 # Check that the user is allowed to edit a page with the
104 # name of the attachment.
105 IkiWiki::check_canedit($filename, $q, $session, 1);
107 # Use a special pagespec to test that the attachment is valid.
109 foreach my $admin (@{$config{adminuser}}) {
110 my $allowed_attachments=IkiWiki::userinfo_get($admin, "allowed_attachments");
111 if (defined $allowed_attachments &&
112 length $allowed_attachments) {
113 $allowed=pagespec_match($filename,
114 $allowed_attachments,
116 user => $session->param("name"),
117 ip => $ENV{REMOTE_ADDR},
123 error(gettext("attachment rejected")." ($allowed)");
126 # Needed for fast_file_copy and for rendering below.
127 require IkiWiki::Render;
129 # Move the attachment into place.
130 # Try to use a fast rename; fall back to copying.
131 IkiWiki::prep_writefile($filename, $config{srcdir});
132 unlink($config{srcdir}."/".$filename);
133 if (rename($tempfile, $config{srcdir}."/".$filename)) {
134 # The temp file has tight permissions; loosen up.
135 chmod(0666 & ~umask, $config{srcdir}."/".$filename);
138 my $fh=$q->upload('attachment');
139 if (! defined $fh || ! ref $fh) {
140 # needed by old CGI versions
141 $fh=$q->param('attachment');
142 if (! defined $fh || ! ref $fh) {
143 # even that doesn't always work,
144 # fall back to opening the tempfile
146 open($fh, "<", $tempfile) || error("failed to open $tempfile: $!");
150 writefile($filename, $config{srcdir}, undef, 1, sub {
151 IkiWiki::fast_file_copy($tempfile, $filename, $fh, @_);
155 # Check the attachment in and trigger a wiki refresh.
157 IkiWiki::rcs_add($filename);
158 IkiWiki::disable_commit_hook();
159 IkiWiki::rcs_commit($filename, gettext("attachment upload"),
160 IkiWiki::rcs_prepedit($filename),
161 $session->param("name"), $ENV{REMOTE_ADDR});
162 IkiWiki::enable_commit_hook();
163 IkiWiki::rcs_update();
166 IkiWiki::saveindex();
168 elsif ($form->submitted eq "Insert Links") {
170 foreach my $f ($q->param("attachment_select")) {
173 $form->field(name => 'editcontent',
174 value => $form->field('editcontent')."\n\n".$add,
175 force => 1) if length $add;
178 # Generate the attachment list only after having added any new
180 $form->tmpl_param("attachment_list" => [attachment_list($form->field('page'))]);
183 sub attachment_location ($) {
186 # Put the attachment in a subdir of the page it's attached
187 # to, unless that page is an "index" page.
188 $page=~s/(^|\/)index//;
189 $page.="/" if length $page;
194 sub attachment_list ($) {
196 my $loc=attachment_location($page);
199 foreach my $f (values %pagesources) {
200 if (! defined IkiWiki::pagetype($f) &&
201 $f=~m/^\Q$loc\E[^\/]+$/ &&
202 -e "$config{srcdir}/$f") {
204 "field-select" => '<input type="checkbox" name="attachment_select" value="'.$f.'" />',
205 link => htmllink($page, $page, $f, noimageinline => 1),
206 size => humansize((stat(_))[7]),
207 mtime => displaytime($IkiWiki::pagemtime{$f}),
208 mtime_raw => $IkiWiki::pagemtime{$f},
213 # Sort newer attachments to the top of the list, so a newly-added
214 # attachment appears just before the form used to add it.
215 return sort { $b->{mtime_raw} <=> $a->{mtime_raw} || $a->{link} cmp $b->{link} } @ret;
218 my %units=( # size in bytes
243 zettabyte => 2 ** 70,
246 yottabyte => 2 ** 80,
247 # ikiwiki, if you find you need larger data quantities, either modify
248 # yourself to add them, or travel back in time to 2008 and kill me.
252 sub parsesize ($) { #{{{
256 my $base=$size+0; # force to number
258 foreach my $unit (sort keys %units) {
259 if ($size=~/[0-9\s]\Q$unit\E$/i) {
260 return $base * $units{$unit};
266 sub humansize ($) { #{{{
269 foreach my $unit (reverse sort { $units{$a} <=> $units{$b} || $b cmp $a } keys %units) {
270 if ($size / $units{$unit} > 0.25) {
271 return (int($size / $units{$unit} * 10)/10).$unit;
274 return $size; # near zero, or negative
277 package IkiWiki::PageSpec;
279 sub match_maxsize ($$;@) { #{{{
281 my $maxsize=eval{IkiWiki::Plugin::attachment::parsesize(shift)};
283 return IkiWiki::FailReason->new("unable to parse maxsize (or number too large)");
287 if (! exists $params{file}) {
288 return IkiWiki::FailReason->new("no file specified");
291 if (-s $params{file} > $maxsize) {
292 return IkiWiki::FailReason->new("file too large (".(-s $params{file})." > $maxsize)");
295 return IkiWiki::SuccessReason->new("file not too large");
299 sub match_minsize ($$;@) { #{{{
301 my $minsize=eval{IkiWiki::Plugin::attachment::parsesize(shift)};
303 return IkiWiki::FailReason->new("unable to parse minsize (or number too large)");
307 if (! exists $params{file}) {
308 return IkiWiki::FailReason->new("no file specified");
311 if (-s $params{file} < $minsize) {
312 return IkiWiki::FailReason->new("file too small");
315 return IkiWiki::SuccessReason->new("file not too small");
319 sub match_mimetype ($$;@) { #{{{
324 if (! exists $params{file}) {
325 return IkiWiki::FailReason->new("no file specified");
328 # Use ::magic to get the mime type, the idea is to only trust
329 # data obtained by examining the actual file contents.
330 eval q{use File::MimeInfo::Magic};
332 return IkiWiki::FailReason->new("failed to load File::MimeInfo::Magic ($@); cannot check MIME type");
334 my $mimetype=File::MimeInfo::Magic::magic($params{file});
335 if (! defined $mimetype) {
339 my $regexp=IkiWiki::glob2re($wanted);
340 if ($mimetype!~/^$regexp$/i) {
341 return IkiWiki::FailReason->new("file MIME type is $mimetype, not $wanted");
344 return IkiWiki::SuccessReason->new("file MIME type is $mimetype");
348 sub match_virusfree ($$;@) { #{{{
353 if (! exists $params{file}) {
354 return IkiWiki::FailReason->new("no file specified");
357 if (! exists $IkiWiki::config{virus_checker} ||
358 ! length $IkiWiki::config{virus_checker}) {
359 return IkiWiki::FailReason->new("no virus_checker configured");
362 # The file needs to be fed into the virus checker on stdin,
363 # because the file is not world-readable, and if clamdscan is
364 # used, clamd would fail to read it.
365 eval q{use IPC::Open2};
367 open (IN, "<", $params{file}) || return IkiWiki::FailReason->new("failed to read file");
370 $SIG{PIPE} = sub { $sigpipe=1 };
371 my $pid=open2(\*CHECKER_OUT, "<&IN", $IkiWiki::config{virus_checker});
372 my $reason=<CHECKER_OUT>;
374 1 while (<CHECKER_OUT>);
377 $SIG{PIPE}="DEFAULT";
378 if ($sigpipe || $?) {
379 return IkiWiki::FailReason->new("file seems to contain a virus ($reason)");
382 return IkiWiki::SuccessReason->new("file seems virusfree ($reason)");
386 sub match_ispage ($$;@) { #{{{
389 if (defined IkiWiki::pagetype($filename)) {
390 return IkiWiki::SuccessReason->new("file is a wiki page");
393 return IkiWiki::FailReason->new("file is not a wiki page");
397 sub match_user ($$;@) { #{{{
402 if (! exists $params{user}) {
403 return IkiWiki::FailReason->new("no user specified");
406 if (defined $params{user} && lc $params{user} eq lc $user) {
407 return IkiWiki::SuccessReason->new("user is $user");
410 return IkiWiki::FailReason->new("user is $params{user}, not $user");
414 sub match_ip ($$;@) { #{{{
419 if (! exists $params{ip}) {
420 return IkiWiki::FailReason->new("no IP specified");
423 if (defined $params{ip} && lc $params{ip} eq lc $ip) {
424 return IkiWiki::SuccessReason->new("IP is $ip");
427 return IkiWiki::FailReason->new("IP is $params{ip}, not $ip");