2023-10-31 14:39:35 +00:00
|
|
|
package Dancer2::Plugin::JsonApi::Registry;
|
|
|
|
|
|
|
|
use 5.32.0;
|
2023-10-31 19:54:28 +00:00
|
|
|
use Dancer2::Plugin::JsonApi::Registry::Schema;
|
2023-10-31 16:17:28 +00:00
|
|
|
|
|
|
|
use Carp;
|
2023-10-31 14:39:35 +00:00
|
|
|
|
|
|
|
use Moo;
|
|
|
|
|
|
|
|
use experimental qw/ signatures /;
|
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
The registry for the different types of data managed by the plugin.
|
|
|
|
|
|
|
|
=head1 METHODS
|
|
|
|
|
2023-10-31 19:54:28 +00:00
|
|
|
=head2 serialize($type,$data,$extra_data={})
|
2023-10-31 14:39:35 +00:00
|
|
|
|
|
|
|
Returns the serialized form of C<$data>.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
2023-11-10 20:30:25 +00:00
|
|
|
sub serialize ( $self, $type, $data, $extra_data = {} ) {
|
|
|
|
return $self->type($type)->serialize( $data, $extra_data );
|
2023-10-31 14:39:35 +00:00
|
|
|
}
|
|
|
|
|
2023-10-31 16:17:28 +00:00
|
|
|
has types => (
|
2023-11-10 20:30:25 +00:00
|
|
|
is => 'ro',
|
2023-10-31 16:17:28 +00:00
|
|
|
default => sub { +{} },
|
|
|
|
);
|
|
|
|
|
|
|
|
=head2 add_type($type, $definition = {})
|
|
|
|
|
|
|
|
Adds a data type to the registry.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
2023-11-10 20:30:25 +00:00
|
|
|
sub add_type ( $self, $type, $definition = {} ) {
|
2023-10-31 19:54:28 +00:00
|
|
|
$self->{types}{$type} = Dancer2::Plugin::JsonApi::Registry::Schema->new(
|
2023-11-01 17:16:34 +00:00
|
|
|
registry => $self,
|
2023-11-10 20:30:25 +00:00
|
|
|
type => $type,
|
2023-10-31 16:17:28 +00:00
|
|
|
%$definition
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
=head2 type($type)
|
|
|
|
|
2023-11-01 15:10:25 +00:00
|
|
|
Returns the type's C<Dancer2::Plugin::JsonApi::Registry::Schema>. Throws an
|
2023-10-31 16:17:28 +00:00
|
|
|
error if the type does not exist.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
2023-11-10 20:30:25 +00:00
|
|
|
sub type ( $self, $type ) {
|
|
|
|
return $self->types->{$type} //=
|
|
|
|
Dancer2::Plugin::JsonApi::Registry::Schema->new( type => $type );
|
2023-10-31 16:17:28 +00:00
|
|
|
}
|
|
|
|
|
2023-10-31 14:39:35 +00:00
|
|
|
1;
|
|
|
|
|
|
|
|
__END__
|