Mojo-SAML

 view release on metacpan or  search on metacpan

lib/Mojo/SAML/Document/Signature.pm  view on Meta::CPAN

package Mojo::SAML::Document::Signature;

use Mojo::Base 'Mojo::SAML::Document';

use Mojo::SAML::Document::KeyInfo;

has template => sub { shift->build_template(<<'XML') };
<ds:Signature xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
  <ds:SignedInfo>
    <ds:CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
    <ds:SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/>
    % for my $ref (@{ $self->references }) {
    %= tag 'ds:Reference' => URI => "#$ref" => begin
      <ds:Transforms>
        <ds:Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature"/>
        <ds:Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#"/>
      </ds:Transforms>
      <ds:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
      <ds:DigestValue></ds:DigestValue>
    </ds:Reference>
    % end
    % }
  </ds:SignedInfo>
  <ds:SignatureValue></ds:SignatureValue>
  % if (my $info = $self->key_info) {
    <%= $info %>
  % }
</ds:Signature>
XML

has 'key_info';
has references => sub { [] };


sub before_render {
  my $self = shift;
  for my $method (qw/references/) {
    Carp::croak "$method cannot be empty" unless @{$self->$method};
  }
}

1;

=head1 NAME

Mojo::SAML::Document::Signature

=head1 DESCRIPTION

Represents an Signature XML-Sig tag

=head1 ATTRIBUTES

L<Mojo::SAML::Document::Signature> inherits all attributes from L<Mojo::SAML::Document> and implements the following new ones.

=head2 key_info

Optional.
An instance of L<Mojo::SAML::Document::KeyInfo> to be included in the signature.

=head2 references

An array reference of C<ID> attributes of elements to be referenced (and thus signed) by the signature.
Must not be empty at render time.

=head2 template

A template specific to the document type.

=head1 METHODS

L<Mojo::SAML::Document::Signature> inherits all methods from L<Mojo::SAML::Document> and implements the following new ones.

=head2 before_render

Enforces that L</references> is not empty at render time.



( run in 1.633 second using v1.01-cache-2.11-cpan-71847e10f99 )