aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/autoindex.pm
blob: 0a8d90701e6f9eb2978bcedc46ea37e90eb60eed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/perl
package IkiWiki::Plugin::autoindex;

use warnings;
use strict;
use IkiWiki 2.00;
use Encode;

sub import { #{{{
	hook(type => "refresh", id => "autoindex", call => \&refresh);
} # }}}

sub genindex ($) { #{{{
	my $page=shift;
	my $file=$page.".".$config{default_pageext};
	my $template=template("autoindex.tmpl");
	$template->param(page => $page);
	writefile($file, $config{srcdir}, $template->output);
} #}}}

sub refresh () { #{{{
	eval q{use File::Find};
	error($@) if $@;

	my (%pages, %dirs);
	find({
		no_chdir => 1,
		wanted => sub {
			$_=decode_utf8($_);
			if (IkiWiki::file_pruned($_, $config{srcdir})) {
				$File::Find::prune=1;
			}
			elsif (! -l $_) {
				my ($f)=/$config{wiki_file_regexp}/; # untaint
				return unless defined $f;
				$f=~s/^\Q$config{srcdir}\E\/?//;
				return unless length $f;
				if (! -d _) {
					$pages{pagename($f)}=1;
				}
				else {
					$dirs{$f}=1;
				}
			}
		}
	}, $config{srcdir});

	foreach my $dir (keys %dirs) {
		if (! exists $pages{$dir}) {
			genindex($dir);
		}
	}
} #}}}

1