Group
Extension

WWW-Deezer/lib/WWW/Deezer/Obj.pm

package WWW::Deezer::Obj;

our $VERSION = '0.03';

use Moose;
use Moose::Util::TypeConstraints;

# base class for representing Deezer objects

subtype 'JSONBoolean' => (as 'Int');

coerce 'JSONBoolean' => (
    from 'Ref',
    via { JSON::is_bool($_) }
);

subtype 'Url' => as 'Str',
    where { /^http/ };

has 'deezer_obj', is => 'rw', isa => 'Ref';

sub reinit_attr_values {
    my ($self, $new) = @_;
    my $package = caller || __PACKAGE__;

    my @attrs = $package->meta->get_all_attributes();

    foreach my $attr (@attrs) {
        my $name = $attr->name;
        eval {
            $self->$name($new->$name) if ($attr->get_write_method && $name ne 'deezer_obj');
        };

        if ($@) {
            warn ($@);
        }
    }
}

1;


Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.