2 package IkiWiki::Plugin::getsource;
7 use open qw{:utf8 :std};
10 hook(type => "getsetup", id => "getsource", call => \&getsetup);
11 hook(type => "pagetemplate", id => "getsource", call => \&pagetemplate);
12 hook(type => "cgi", id => "getsource", call => \&cgi_getsource);
21 getsource_mimetype => {
23 example => "text/plain; charset=utf-8",
24 description => "Mime type for returned source.",
30 sub pagetemplate (@) {
33 my $page=$params{page};
34 my $template=$params{template};
36 if (length $config{cgiurl}) {
37 $template->param(getsourceurl => IkiWiki::cgiurl(do => "getsource", page => $page));
38 $template->param(have_actions => 1);
42 sub cgi_getsource ($) {
45 return unless defined $cgi->param('do') &&
46 $cgi->param("do") eq "getsource";
48 IkiWiki::decode_cgi_utf8($cgi);
50 my $page=$cgi->param('page');
52 if (! defined $page || $page !~ /$config{wiki_file_regexp}/) {
53 error("invalid page parameter");
59 if (! exists $pagesources{$page}) {
60 IkiWiki::cgi_custom_failure(
61 $cgi->header(-status => "404 Not Found"),
62 IkiWiki::misctemplate(gettext("missing page"),
64 sprintf(gettext("The page %s does not exist."),
65 htmllink("", "", $page)).
70 if (! defined pagetype($pagesources{$page})) {
71 IkiWiki::cgi_custom_failure(
72 $cgi->header(-status => "403 Forbidden"),
73 IkiWiki::misctemplate(gettext("not a page"),
75 sprintf(gettext("%s is an attachment, not a page."),
76 htmllink("", "", $page)).
81 if (! $config{getsource_mimetype}) {
82 $config{getsource_mimetype} = "text/plain; charset=utf-8";
85 print "Content-Type: $config{getsource_mimetype}\r\n";
87 print readfile(srcfile($pagesources{$page}));