File Coverage

blib/lib/Net/Azure/NotificationHubs.pm
Criterion Covered Total %
statement 70 70 100.0
branch 13 14 92.8
condition 8 8 100.0
subroutine 15 15 100.0
pod 2 2 100.0
total 108 109 99.0


line stmt bran cond sub pod time code
1             package Net::Azure::NotificationHubs;
2 5     5   234510 use 5.008001;
  5         43  
3 5     5   19 use strict;
  5         7  
  5         113  
4 5     5   21 use warnings;
  5         6  
  5         158  
5 5     5   1833 use Net::Azure::Authorization::SAS;
  5         56617  
  5         154  
6 5     5   1691 use Net::Azure::NotificationHubs::Request;
  5         13  
  5         126  
7 5     5   22 use JSON;
  5         8  
  5         18  
8 5     5   2905 use HTTP::Tiny;
  5         181299  
  5         159  
9 5     5   34 use URI;
  5         7  
  5         76  
10 5     5   18 use Carp;
  5         8  
  5         217  
11 5     5   24 use String::CamelCase qw/camelize wordsplit/;
  5         9  
  5         226  
12             use Class::Accessor::Lite (
13 5         44 new => 0,
14             ro => [qw[
15             agent
16             serializer
17             api_version
18             authorizer
19             apns_expiry
20             hub_name
21             ]],
22 5     5   83 );
  5         9  
23              
24             our $VERSION = "0.08";
25             our $DEFAULT_API_VERSION = "2015-04";
26             our $DEFAULT_TIMEOUT = 60;
27              
28             sub new {
29 9     9 1 13556 my ($class, %param) = @_;
30            
31 9         71 $param{agent} = HTTP::Tiny->new(agent => sprintf('%s/%s', $class, $VERSION));
32 9         635 $param{serializer} = JSON->new->utf8(1);
33 9   100     48 $param{api_version} ||= $DEFAULT_API_VERSION;
34              
35 9 100       22 if (!defined $param{authorizer}) {
36 8         13 $param{authorizer} = eval {
37 8         44 Net::Azure::Authorization::SAS->new(connection_string => $param{connection_string});
38             };
39 8 100       1355 if ($@) {
40 1         7 croak $@;
41             };
42             }
43              
44 8         53 bless {%param}, $class;
45             }
46              
47             sub _uri {
48 8     8   7960 my ($self, $path, %params) = @_;
49 8   100     25 $path ||= '/';
50 8         28 my $uri = URI->new($self->authorizer->endpoint);
51 8         14514 $uri->scheme('https');
52 8         8766 $uri->path($path);
53 8         246 $uri->query_form(%params);
54 8         383 $uri;
55             }
56              
57             sub _req {
58 8     8   11873 my ($self, $path, $payload, %params) = @_;
59 8 100       39 croak 'path is reuired' if !defined $path;
60 7 100       26 croak 'payload is required' if !defined $payload;
61 6 100       29 croak 'payload is not hashref' if ref($payload) ne 'HASH';
62 5   100     30 $params{api_version} ||= $self->api_version;
63 5         40 my $uri = $self->_uri($path, %params);
64 5         15 my $auth = $self->authorizer->token($uri->as_string);
65 5         987 my $data = $self->serializer->encode($payload);
66 5         79 my $req = Net::Azure::NotificationHubs::Request->new(
67             POST => $uri->as_string,
68             {
69             'Authorization' => $auth,
70             'Content-Type' => 'application/atom+xml;charset=utf-8',
71             },
72             $data,
73             );
74 5         265 $req->agent($self->agent);
75 5         57 $req;
76             }
77              
78             sub send {
79 2     2 1 4576 my ($self, $payload, %param) = @_;
80 2         6 my $path = sprintf "/%s/messages/", $self->hub_name;
81 2         21 my $req = $self->_req($path, $payload);
82 2         15 for my $key (keys %param) {
83 3 50       8 next if !defined $param{$key};
84 3         8 my $header_name = join('-', 'ServiceBusNotification', wordsplit(camelize($key)));
85 3         56 $req->header($header_name => $param{$key});
86             }
87 2 100       6 if ($param{format} eq 'apple') {
88 1         4 $req->header('ServiceBusNotification-Apns-Expiry' => $self->apns_expiry);
89             }
90 2         4 $req;
91             }
92              
93              
94             1;
95             __END__