line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::Azure::NotificationHubs::Response; |
2
|
7
|
|
|
7
|
|
34
|
use strict; |
|
7
|
|
|
|
|
9
|
|
|
7
|
|
|
|
|
143
|
|
3
|
7
|
|
|
7
|
|
25
|
use warnings; |
|
7
|
|
|
|
|
12
|
|
|
7
|
|
|
|
|
122
|
|
4
|
|
|
|
|
|
|
|
5
|
7
|
|
|
7
|
|
3265
|
use JSON; |
|
7
|
|
|
|
|
51731
|
|
|
7
|
|
|
|
|
29
|
|
6
|
7
|
|
|
7
|
|
806
|
use Carp; |
|
7
|
|
|
|
|
14
|
|
|
7
|
|
|
|
|
335
|
|
7
|
|
|
|
|
|
|
use Class::Accessor::Lite ( |
8
|
7
|
|
|
|
|
43
|
ro => [qw[status reason headers content success]], |
9
|
|
|
|
|
|
|
new => 0 |
10
|
7
|
|
|
7
|
|
681
|
); |
|
7
|
|
|
|
|
1432
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
sub new { |
13
|
3
|
|
|
3
|
0
|
21
|
my ($class, $status, $reason, $headers, $content, $success) = @_; |
14
|
3
|
|
50
|
|
|
66
|
bless { |
15
|
|
|
|
|
|
|
status => $status, |
16
|
|
|
|
|
|
|
reason => $reason, |
17
|
|
|
|
|
|
|
headers => $headers || {}, |
18
|
|
|
|
|
|
|
content => $content, |
19
|
|
|
|
|
|
|
success => $success, |
20
|
|
|
|
|
|
|
}, $class; |
21
|
|
|
|
|
|
|
} |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
sub as_hashref { |
24
|
2
|
|
|
2
|
1
|
2516
|
my $self = shift; |
25
|
2
|
50
|
|
|
|
20
|
return if !$self->success; |
26
|
|
|
|
|
|
|
|
27
|
2
|
|
|
|
|
49
|
my $type = $self->headers->{'content-type'}; |
28
|
|
|
|
|
|
|
|
29
|
2
|
100
|
66
|
|
|
51
|
if ($type && $type =~ /\Aapplication\/json/) { |
30
|
1
|
|
|
|
|
207
|
return JSON->new->utf8(1)->decode($self->{content}); |
31
|
|
|
|
|
|
|
} |
32
|
1
|
|
|
|
|
6
|
return; |
33
|
|
|
|
|
|
|
} |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
1; |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=encoding utf-8 |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
=head1 NAME |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
Net::Azure::NotificationHubs::Response - A Response Class for Net::Azure::NotificationHubs |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 SYNOPSIS |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
use Net::Azure::NotificationHubs::Request; |
46
|
|
|
|
|
|
|
use HTTP::Tiny; |
47
|
|
|
|
|
|
|
my $req = Net::Azure::NotificationHubs::Request->new(GET => 'http://...'); |
48
|
|
|
|
|
|
|
$req->agent(HTTP::Tiny->new); |
49
|
|
|
|
|
|
|
my $res = $req->do; |
50
|
|
|
|
|
|
|
my $json_data = $res->as_hashref; |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
=head1 DESCRIPTION |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
Net::Azure::NotificationHubs::Response is a response class for Net::Azure::NotificationHubs. |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
It inherits HTTP::Response. |
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head1 METHODS |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
=head2 as_hashref |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
my $json_data = $res->as_hashref; |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
Return a content data as hashref when content type is 'application/json'. Otherwise, undef is returned. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head1 LICENSE |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
Copyright (C) ytnobody. |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or modify |
71
|
|
|
|
|
|
|
it under the same terms as Perl itself. |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
=head1 AUTHOR |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
ytnobody Eytnobody@gmail.comE |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=cut |