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 Net::HTTP::Console::Role::API;
use MooseX::Declare;
role Net::HTTP::Console::Role::API {
use Try::Tiny;
use Net::HTTP::API::Spec;
has api_lib => (
isa => 'Str',
is => 'rw',
default => 'Net::HTTP::API::Core'
);
has api_object => (
isa => 'Object',
is => 'rw',
lazy => 1,
default => sub {
my $self = shift;
$self->_load_api_lib($self->api_lib);
},
);
method _load_api_lib($lib) {
my $api;
if ($self->has_specification) {
$api = Net::HTTP::API::Spec->new_from_spec($self->spec);
}else{
try {
Class::MOP::load_class($lib);
$self->api_lib($lib);
$api = $lib->new();
} catch {
$self->logger('error', "failed to load $lib: $_");
};
}
if (!$api) {
$self->logger('error', "unable to load an API!");
}
$api->api_base_url($self->url) if $self->has_url;
$api->api_format($self->format) if $self->has_format;
$api->api_format_mode($self->format_mode)
if $self->has_format_mode;
return $api;
}
method load_api_spec($path) {
my $object = Net::HTTP::API::Spec->new_from_spec($path);
$self->api_object($object);
$self->message("successfully loaded $path");
}
method load_api_lib($lib) {
my $object = $self->_load_api_lib($lib);
$self->api_object($object);
$self->message("successfully loaded $lib");
}
method new_anonymous_method ($http_method, $path) {
try {
$self->api_object->meta->add_net_api_method(
'anonymous',
method => $http_method,
path => $path,
);
}catch {
$self->logger('error', "failed to add anonymous method: ".$_);
}
}
}
1;
|