summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/template.pm
blob: 09570560420e649a5e1a1e3f588f146f28aa5579 (plain)
  1. #!/usr/bin/perl
  2. # Structured template plugin.
  3. package IkiWiki::Plugin::template;
  4. use warnings;
  5. use strict;
  6. use IkiWiki;
  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 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 "[[template ".
  21. htmllink($params{page}, $params{destpage}, $template_page).
  22. " not found]]"
  23. unless defined $template_file;
  24. my $template;
  25. eval {
  26. $template=HTML::Template->new(
  27. filter => sub {
  28. my $text_ref = shift;
  29. $$text_ref=&Encode::decode_utf8($$text_ref);
  30. chomp $$text_ref;
  31. },
  32. filename => srcfile($template_file),
  33. die_on_bad_params => 0,
  34. no_includes => 1,
  35. blind_cache => 1,
  36. );
  37. };
  38. if ($@) {
  39. return "[[template failed to process: $@]]";
  40. }
  41. foreach my $param (keys %params) {
  42. $template->param($param => $params{$param});
  43. }
  44. return IkiWiki::preprocess($params{page}, $params{destpage},
  45. $template->output);
  46. } # }}}
  47. 1