The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# ABSTRACT: Use Template Toolkit to publish your HiD files


package HiD::Processor::Template;
our $AUTHORITY = 'cpan:GENEHACK';
$HiD::Processor::Template::VERSION = '1.992';
use Moose;
extends 'HiD::Processor';
use namespace::autoclean;

use 5.014; # strict, unicode_strings
use utf8;
use autodie;
use warnings    qw/ FATAL  utf8     /;
use open        qw/ :std  :utf8     /;
use charnames   qw/ :full           /;

use Template;

has 'tt' => (
  is       => 'ro' ,
  isa      => 'Template' ,
  handles  => [ qw/ process / ],
  required => 1 ,
);

# FIXME this should really probably be a builder on the 'tt' attr
# ...which should be called something more generic
# ...and which should get args via a second attr that's required
sub BUILDARGS {
  my $class = shift;

  my %args = ( ref $_[0] && ref $_[0] eq 'HASH' ) ? %{ $_[0] } : @_;

  # Try to resolve the include path for Template
  my @path = ();

  # It might be set in the configuration file
  if(exists $args{INCLUDE_PATH}) {
      # Try to evaluate as an array
      my $rc = eval { @path = @{ $args{INCLUDE_PATH} }; 1; };
      # If that fails, treat as a string and split ':'
      @path = split /:/, $args{INCLUDE_PATH}
        if !$rc;
  }

  # If we got a default 'path' element, append it to the list.
  if(exists $args{path}) {
      # It should be an array
      my $default_path = delete $args{path};
      my $rc = eval { push @path, @{ $default_path }; 1; };
      # If it's not, split on the ':' in the string
      push @path, split /:/, $default_path
          if !$rc;
  }

  # Finally set the path to the merged path
  $args{INCLUDE_PATH} = \@path;

  return { tt => Template->new( %args ) };
}


sub error {
    die $Template::ERROR;
}

__PACKAGE__->meta->make_immutable;
1;

__END__

=pod

=encoding UTF-8

=head1 NAME

HiD::Processor::Template - Use Template Toolkit to publish your HiD files

=head1 SYNOPSIS

    my $processor = HiD::Proccessor::Template->new({ arg => $val });

=head1 DESCRIPTION

Wraps up a L<Template> object and allows it to be used during HiD publication.

=head1 METHODS

=head2 error

Display the template error message.

=head1 VERSION

version 1.992

=head1 AUTHOR

John SJ Anderson <genehack@genehack.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2015 by John SJ Anderson.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut