Amazon-CloudFront-Thin
view release on metacpan or search on metacpan
lib/Amazon/CloudFront/Thin.pm view on Meta::CPAN
package Amazon::CloudFront::Thin;
use strict;
use warnings;
use URI ();
use URI::Escape ();
use Carp ();
use HTTP::Headers ();
use HTTP::Date ();
use HTTP::Request ();
use Digest::SHA ();
our $VERSION = '0.05';
sub new {
my ($class, @extra) = @_;
my $args;
my $self = {};
if (@extra == 1) {
Carp::croak 'please provide a hash or hash reference to new()'
unless ref $extra[0] eq 'HASH';
$args = $extra[0];
}
else {
Carp::croak 'please provide a hash or hash reference to new()'
unless @extra % 2 == 0;
$args = {@extra};
}
foreach my $key (qw(aws_access_key_id aws_secret_access_key distribution_id)) {
if (exists $args->{$key}) {
$self->{$key} = $args->{$key};
}
else {
Carp::croak "argument '$key' missing on call to new()";
}
}
bless $self, $class;
my $ua = $args->{ua} || _default_ua();
$self->ua($ua);
return $self;
}
sub _default_ua {
require LWP::UserAgent;
my $ua = LWP::UserAgent->new(
keep_alive => 10,
# requests_redirectable => [qw(GET HEAD DELETE PUT)]
);
$ua->timeout(10);
$ua->env_proxy;
return $ua;
}
sub ua {
my ($self, $ua) = @_;
$self->{_ua} = $ua if ($ua);
return $self->{_ua};
}
sub create_invalidation {
my ($self, @paths) = @_;
if (@paths == 1 && ref $paths[0] && ref $paths[0] eq 'ARRAY') {
@paths = @{$paths[0]};
}
my $time = time;
my $url = URI->new(
'https://cloudfront.amazonaws.com/2018-11-05/distribution/'
. $self->{distribution_id} . '/invalidation'
);
my $content = _create_xml_payload(\@paths, $time);
# Amazon unfortunately does not comply with RFC 1123 for the
# 'date' header, requiring instead that it gets written in
# ISO-8601 format. Since HTTP::Headers does the right thing
# for date(), we set the ISO-8601 date in "X-Amz-Date" instead.
my ($formatted_date, $formatted_time) = _format_date($time);
my $http_headers = HTTP::Headers->new(
'Content-Length' => length $content,
'Content-Type' => 'text/xml',
'Host' => $url->host,
'X-Amz-Date' => $formatted_date . 'T' . $formatted_time . 'Z',
);
$http_headers->header(
Authorization => 'AWS4-HMAC-SHA256 Credential='
. $self->{aws_access_key_id} . '/' . _cloudfront_scope($formatted_date)
. ', SignedHeaders=' . _signed_headers($http_headers)
. ', Signature='
. _calculate_signature(
$self->{aws_secret_access_key},
$url,
$http_headers,
$content
)
);
my $request = HTTP::Request->new('POST', $url, $http_headers, $content);
return $self->ua->request($request);
}
sub _cloudfront_scope {
my ($date) = @_;
return sprintf("%s/us-east-1/cloudfront/aws4_request", $date);
}
sub _format_date {
my ($time) = @_;
my @date = gmtime $time;
$date[5] += 1900; # fix the year
$date[4] += 1; # fix the month
return (
sprintf('%d%02d%02d', @date[5,4,3]), # YYYYMMDD
sprintf('%02d%02d%02d', @date[2,1,0]) # hhmmss
);
}
sub _calculate_signature {
my ($aws_secret_access_key, $url, $headers, $content) = @_;
my $canonical_request = _create_canonical_request($url, $headers, $content);
my $string_to_sign = _create_string_to_sign($headers, $canonical_request);
my ($date) = _format_date(
HTTP::Date::str2time($headers->header('X-Amz-Date'))
);
return _create_signature($aws_secret_access_key, $string_to_sign, $date);
}
sub _create_canonical_request {
my ($url, $headers, $content) = @_;
# http://docs.aws.amazon.com/general/latest/gr/sigv4-create-canonical-request.html
my @sorted_header_names = sort $headers->header_field_names();
return
"POST\n"
. ($url->path || '/') . "\n\n"
. join( "\n", map {
lc($_) . ':' . $headers->header($_)
} @sorted_header_names
) . "\n\n"
. _signed_headers($headers) . "\n"
. Digest::SHA::sha256_hex($content)
;
}
sub _signed_headers {
my ($headers) = @_;
return join(';' => map lc, sort $headers->header_field_names());
}
sub _create_string_to_sign {
my ($headers, $canonical_request) = @_;
my ($formatted_date, $formatted_time) = _format_date(
HTTP::Date::str2time($headers->header('X-Amz-Date'))
);
lib/Amazon/CloudFront/Thin.pm view on Meta::CPAN
Amazon CloudFront is the content-delivery (CDN) service of Amazon Web
Services (AWS). You use it by
L<< creating distributions|https://console.aws.amazon.com/cloudfront/home?region=us-east-1#distributions: >>
(each with its own "distribution id" which we use below). To manage
your distributions with this module, you need to provide credentials
allowed to access/change your CloudFront distributions. You do this
by going to L<< AWS's Identity and Access Management (IAM) console|https://console.aws.amazon.com/iam/home >>
and creating a new user. When you do that, the user's C<Access Key ID>
and C<Secret Access Key> credentials will be shown to you. You'll also
need to pass those to Amazon::CloudFront::Thin's constructor as shown
in the SYNOPSIS and below, as C<aws_access_key_id> and
C<aws_secret_access_key>, respectively. Finally, please note that
B<the provided IAM credentials must have the rights to change your CloudFront>.
You can do that by clicking on the user (in the Amazon IAM console where
you created it) and attaching a policy to it, such as the
C<CloudFrontFullAccess> standard policy. Otherwise you'll get errors when
trying to invalidate your CloudFront distributions.
=head1 CONSTRUCTOR
=head2 new( \%params )
B<Receives>: hashref with options.
B<Returns>: Amazon::CloudFront::Thin object.
use Amazon::CloudFront::Thin;
use IO::Socket::SSL;
use Furl;
my $cloudfront = Amazon::CloudFront::Thin->new(
aws_access_key_id => 'my_key_id',
aws_secret_access_key => 'my_key_secret',
distribution_id => 'my-cloudfront-distribution-id',
# optional
ua => Furl->new(
ssl_opts => { SSL_verify_mode => SSL_VERIFY_PEER()
},
);
Available arguments are:
=over
=item * C<aws_access_key_id> (B<required>)
Your L<< CloudFront credential|/"Amazon CloudFront setup in a Nutshell" >> key id.
=item * C<aws_secret_access_key> (B<required>)
Your L<< CloudFront credential|/"Amazon CloudFront setup in a Nutshell" >> secret.
=item * C<distribution_id> (B<required>)
The id of the L<< CloudFront distribution|/"Amazon CloudFront setup in a Nutshell" >>
you want to manage.
=item * C<ua> (Optional)
An LWP::UserAgent compatible object (otherwise, LWP::UserAgent will be used).
The object must provide a C<request()> method that receives an HTTP::Request
and returns a response. The responses, whatever they are, will be forwarded
to your call. Also, the object must be able to handle B<HTTPS>. If you don't
want to use LWP::UserAgent, there is a (highly incomplete) list of
alternatives below:
Compatible: L<Furl>, L<LWP::UserAgent>, L<HTTP::Thin>, L<WWW::Curl::Simple>.
Incompatible: L<HTTP::Lite>, L<Hijk>, L<HTTP::Lite>, L<HTTP::Tiny>.
=back
=head1 ACCESSORS
=head2 ua
Gets/Sets the current user agent object doing the requests to Amazon
CloudFront. Defaults to LWP::UserAgent. You can replace it either
using this accessor or during object construction (see above for an
example that loads C<Furl> instead of C<LWP::UserAgent>).
=head1 METHODS
=head2 create_invalidation( $path )
=head2 create_invalidation( @paths )
=head2 create_invalidation( \@paths )
B<Receives>: list of strings (or arrayref of strings), each specifying
a different path to invalidate.
B<Returns>: an L<HTTP::Response> object for the request. Use the C<content()>
method on the returned object to read the contents:
my $res = $cloudfront->create_invalidation( '/path/to/some/object.png' );
if ($res->is_success) {
my $content = $res->content;
}
This method creates a new invalidation batch request on Amazon CloudFront.
Please note that B<paths are case sensitive> and that
B<the leading '/' is optional>, meaning C<"foo/BAR"> and C<"FOO/bar">
are completely different, but C<"foo/bar"> and C<"/foo/bar"> (note the '/')
point to the same object.
Each path is wrapped under CDATA on the resulting XML, so it should be
safe for non-ASCII and unsafe characters in your paths.
For more information, please refer to
L<< Amazon's API documentation for CreateInvalidation|https://docs.aws.amazon.com/cloudfront/latest/APIReference/API_CreateInvalidation.html >>.
For information on invalidations in general, including limitations,
please refer to L<< Amazon's CloudFront Developer Guide|https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/Invalidation.html >>.
Finally, please refer to L<< Amazon's CloudFront error messages|https://docs.aws.amazon.com/cloudfront/latest/APIReference/CommonErrors.html >>
for more information on how to interpret errors returned as responses.
=head1 HANDLING UNICODE FILENAMES & PATHS
Amazon appears to reference filenames containing non ASCII characters
by URL Encoding the filenames. The following code takes a path such as
( run in 0.740 second using v1.01-cache-2.11-cpan-5735350b133 )