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
|
package MooseX::Net::API::Role::Format;
# ABSTRACT: Set appropriate format to request header
use Moose::Role;
use Moose::Util::TypeConstraints;
sub content_type {
{ json => {value => 'application/json', module => 'JSON',},
yaml => {value => 'text/x-yaml', module => 'YAML'},
xml => {value => 'text/xml', module => 'XML::Simple'},
};
}
subtype Format => as 'Str' => where {
my $format = shift;
grep {/^$format$/} keys %{content_type()};
};
enum 'FormatMode' => qw(content-type append);
has api_format => (
is => 'rw',
isa => 'Format',
lazy => 1,
default => sub {
my $self = shift;
$self->meta->get_api_option('api_format');
}
);
has api_format_mode => (
is => 'rw',
isa => 'FormatMode',
lazy => 1,
default => sub {
my $self = shift;
my $mode = $self->meta->get_api_option('api_format_mode');
$mode || 'append';
}
);
1;
=head1 SYNOPSIS
=head1 DESCRIPTION
=head2 METHODS
=over 4
=item B<content_type>
=back
=head2 ATTRIBUTES
=over 4
=item B<api_format>
=item B<api_format_mode>
=back
|