File Coverage

blib/lib/Net/Azure/EventHubs.pm
Criterion Covered Total %
statement 66 66 100.0
branch 8 8 100.0
condition 14 14 100.0
subroutine 17 17 100.0
pod 2 2 100.0
total 107 107 100.0


line stmt bran cond sub pod time code
1             package Net::Azure::EventHubs;
2 5     5   324974 use 5.008001;
  5         64  
3 5     5   32 use strict;
  5         10  
  5         107  
4 5     5   25 use warnings;
  5         10  
  5         163  
5              
6 5     5   2107 use Net::Azure::EventHubs::Request;
  5         21  
  5         232  
7 5     5   2222 use Net::Azure::Authorization::SAS;
  5         34288  
  5         202  
8 5     5   42 use JSON;
  5         13  
  5         42  
9 5     5   4081 use LWP::UserAgent;
  5         92518  
  5         228  
10 5     5   66 use URI;
  5         16  
  5         128  
11 5     5   35 use Carp;
  5         14  
  5         406  
12 5     5   32 use Try::Tiny;
  5         14  
  5         379  
13              
14             use Class::Accessor::Lite (
15 5         59 new => 0,
16             ro => [qw[
17             agent
18             timeout
19             serializer
20             api_version
21             authorizer
22             ]],
23 5     5   62 );
  5         12  
24              
25             our $VERSION = "0.07";
26             our $DEFAULT_API_VERSION = '2014-01';
27             our $DEFAULT_TIMEOUT = 60;
28              
29             sub new {
30 9     9 1 27189 my ($class, %param) = @_;
31              
32 9         115 $param{agent} = LWP::UserAgent->new(agent => sprintf('%s/%s', $class, $VERSION));
33 9         13698 $param{serializer} = JSON->new->utf8(1);
34 9   100     86 $param{api_version} ||= $DEFAULT_API_VERSION;
35 9   100     55 $param{timeout} ||= $DEFAULT_TIMEOUT;
36              
37 9 100       33 if (!defined $param{authorizer}) {
38             my $authorizer = try {
39             Net::Azure::Authorization::SAS->new(connection_string => $param{connection_string})
40 8     8   897 } catch {
41 1     1   594 croak $_;
42 8         114 };
43 7         1592 $param{authorizer} = $authorizer;
44             }
45              
46 8         92 bless {%param}, $class;
47             }
48              
49             sub _uri {
50 7     7   10217 my ($self, $path, %params) = @_;
51 7   100     45 $path ||= '/';
52 7         33 my $uri = URI->new($self->authorizer->endpoint);
53 7         16159 $uri->scheme('https');
54 7         11568 $uri->path($path);
55 7         282 $uri->query_form(%params);
56 7         463 $uri;
57             }
58              
59             sub _req {
60 7     7   17630 my ($self, $path, $payload, %params) = @_;
61 7 100       36 croak 'path is reuired' if !defined $path;
62 6 100       29 croak 'payload is required' if !defined $payload;
63 5 100       22 croak 'payload is not hashref' if ref($payload) ne 'HASH';
64 4   100     28 $params{timeout} ||= $self->timeout;
65 4   100     41 $params{api_version} ||= $self->api_version;
66 4         32 my $uri = $self->_uri($path, %params);
67 4         17 my $auth = $self->authorizer->token($uri->as_string);
68 4         963 my $data = $self->serializer->encode($payload);
69 4         93 my $req = Net::Azure::EventHubs::Request->new(
70             POST => $uri->as_string,
71             [
72             'Authorization' => $auth,
73             'Content-Type' => 'application/atom+xml;type=entry;charset=utf-8',
74             ],
75             $data,
76             );
77 4         875 $req->agent($self->agent);
78 4         55 $req;
79             }
80              
81             sub message {
82 1     1 1 1463 my ($self, $payload) = @_;
83 1         6 my $path = sprintf "/%s/messages", $self->authorizer->{entity_path};
84 1         18 my $req = $self->_req($path => $payload);
85 1         4 $req;
86             }
87              
88              
89             1;
90             __END__