summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/template.pm
blob: 416762fe1fc8153205b8dd7bec7f06090a9e22ed (plain)
  1. #!/usr/bin/perl
  2. # Structured template plugin.
  3. package IkiWiki::Plugin::template;
  4. use warnings;
  5. use strict;
  6. use IkiWiki 2.00;
  7. use HTML::Template;
  8. use Encode;
  9. sub import { #{{{
  10. hook(type => "preprocess", id => "template", call => \&preprocess);
  11. } # }}}
  12. sub preprocess (@) { #{{{
  13. my %params=@_;
  14. if (! exists $params{id}) {
  15. return "[[template ".gettext("missing id parameter")."]]";
  16. }
  17. my $template_page="templates/$params{id}";
  18. add_depends($params{page}, $template_page);
  19. my $template_file=$pagesources{$template_page};
  20. return sprintf(gettext("template %s not found"),
  21. htmllink($params{page}, $params{destpage}, $template_page))
  22. unless defined $template_file;
  23. my $template;
  24. eval {
  25. $template=HTML::Template->new(
  26. filter => sub {
  27. my $text_ref = shift;
  28. $$text_ref=&Encode::decode_utf8($$text_ref);
  29. chomp $$text_ref;
  30. },
  31. filename => srcfile($template_file),
  32. die_on_bad_params => 0,
  33. no_includes => 1,
  34. blind_cache => 1,
  35. );
  36. };
  37. if ($@) {
  38. return "[[template ".gettext("failed to process:")." $@]]";
  39. }
  40. foreach my $param (keys %params) {
  41. if ($template->query(name => $param)) {
  42. $template->param($param =>
  43. IkiWiki::htmlize($params{page},
  44. pagetype($pagesources{$params{page}}),
  45. $params{$param}));
  46. }
  47. if ($template->query(name => "raw_$param")) {
  48. $template->param("raw_$param" => $params{$param});
  49. }
  50. }
  51. return IkiWiki::preprocess($params{page}, $params{destpage},
  52. IkiWiki::filter($params{page}, $params{destpage},
  53. $template->output));
  54. } # }}}
  55. 1