Acme-Resume

 view release on metacpan or  search on metacpan

lib/Acme/Resume/Types.pm  view on Meta::CPAN

use Moops;
use strict;
use warnings;

# ABSTRACT: Declares types
# PODNAME: Acme::Resume::Types
our $VERSION = '0.0109';

library Acme::Resume::Types

declares
    Education,
    Educations,
    Job,
    Jobs,
    TimeMoment {

    class_type TimeMoment => { class => 'Time::Moment' };
    class_type Education => { class => 'Acme::Resume::Types::Education' };
    class_type Job => { class => 'Acme::Resume::Types::Job' };

    coerce Education,
    from HashRef,
    via {
        'Acme::Resume::Types::Education'->new(%$_);
    };

    coerce Job,
    from HashRef,
    via {
        'Acme::Resume::Types::Job'->new(%$_);
    };

    declare Educations,
    as ArrayRef[Education],
    message { sprintf "Those are not Education objects." };

    coerce Educations,
    from ArrayRef[HashRef],
    via { [ map { 'Acme::Resume::Types::Education'->new($_) } @$_ ] };

    coerce Educations,
    from HashRef,
    via { [ 'Acme::Resume::Types::Education'->new(%$_) ] };


    declare Jobs,
    as ArrayRef[Job],
    message { sprintf "Those are not Job objects." };

    coerce Jobs,
    from ArrayRef[HashRef],
    via { [ map { 'Acme::Resume::Types::Job'->new($_) } @$_ ] };

    coerce Jobs,
    from HashRef,
    via { [ 'Acme::Resume::Types::Job'->new(%$_) ] };


    coerce TimeMoment,
    from Str,
    via {
        $_ =~ m{^(?<month>\w*)    \s    # full month name
                 (?<day>\d{1,2}), \s    # day of month
                 (?<year>\d{4})         # year
            }x;

        my %months = (January => 1, February => 2, March => 3, April => 4, May => 5, June => 6, July => 7, August => 8, September => 9, October => 10, November => 11, December => 12);

        'Time::Moment'->new(year => $+{'year'},
                            month => $months{ $+{'month'} },
                            day => $+{'day'},
                        );
    };
}

1;

__END__

=pod

=encoding UTF-8

=head1 NAME

Acme::Resume::Types - Declares types

=head1 VERSION

Version 0.0109, released 2022-01-30.

=head1 SOURCE

L<https://github.com/Csson/p5-Acme-Resume>

=head1 HOMEPAGE

L<https://metacpan.org/release/Acme-Resume>

=head1 AUTHOR

Erik Carlsson <info@code301.com>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2022 by Erik Carlsson.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut



( run in 0.917 second using v1.01-cache-2.11-cpan-140bd7fdf52 )