blob: 13221d30dfd5f6d80dc3755511ebcf3723318853 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
package MooseX::Net::API::Role::Request;
# ABSTRACT: make HTTP request
use Moose::Role;
use HTTP::Request;
use MooseX::Net::API::Error;
use MooseX::Types::URI qw(Uri);
has api_base_url => (
is => 'rw',
isa => Uri,
coerce => 1,
lazy => 1,
default => sub {
my $self = shift;
my $api_base_url = $self->meta->get_api_option('api_base_url');
if (!$api_base_url) {
die MooseX::Net::API::Error->new(
reason => "'api_base_url' have not been defined");
}
$api_base_url;
}
);
sub http_request {
my ($self, $method, $uri, $params_in_url, $args) = @_;
my $request;
if ($method =~ /^(?:GET|DELETE)$/) {
$uri->query_form(%$args);
$request = HTTP::Request->new($method => $uri);
}
elsif ($method =~ /^(?:POST|PUT)$/) {
my $params = {};
foreach my $key (@$params_in_url) {
$params->{$key} = $args->{$key} if exists $args->{$key};
}
$uri->query_form(%$params) if $params;
$request = HTTP::Request->new($method => $uri);
my $content = $self->serialize($args);
$request->content($content);
}
else {
die MooseX::Net::API::Error->new(reason => "$method is not defined");
}
$request->header(
'Content-Type' => $self->content_type->{$self->api_format}->{value})
if $self->api_format_mode eq 'content-type';
# XXX lwp hook!
my $result = $self->api_useragent->request($request);
return $result;
}
1;
=head1 SYNOPSIS
=head1 DESCRIPTION
=head2 METHODS
=over 4
=item B<http_request>
=back
=head2 ATTRIBUTES
=over 4
=item B<api_base_url>
=back
|