Badge-Depot-Plugin-Cpantesters/lib/Badge/Depot/Plugin/Cpantesters.pm
use 5.10.0;
use strict;
use warnings;
package Badge::Depot::Plugin::Cpantesters;
# ABSTRACT: CPAN testers plugin for Badge::Depot
our $AUTHORITY = 'cpan:CSSON'; # AUTHORITY
our $VERSION = '0.0102';
use Moose;
use namespace::autoclean;
use MooseX::AttributeShortcuts;
use Types::Standard qw/Str HashRef/;
use Types::URI qw/Uri/;
use JSON::MaybeXS 'decode_json';
use Path::Tiny;
with 'Badge::Depot';
has dist => (
is => 'ro',
isa => Str,
lazy => 1,
default => sub {
my $self = shift;
if($self->get_meta('dist')) {
return $self->_meta->{'dist'};
}
},
);
has version => (
is => 'ro',
isa => Str,
lazy => 1,
default => sub {
my $self = shift;
if($self->get_meta('version')) {
return $self->_meta->{'version'};
}
},
);
has base_url => (
is => 'ro',
isa => Uri,
coerce => 1,
lazy => 1,
default => 'http://badgedepot.code301.com',
);
has custom_image_url => (
is => 'ro',
isa => Uri,
coerce => 1,
lazy => 1,
builder => 1,
);
sub _build_custom_image_url {
my $self = shift;
return sprintf '%s/badge/cpantesters/%s/%s', $self->base_url, $self->dist, $self->version;
}
has _meta => (
is => 'ro',
isa => HashRef,
traits => ['Hash'],
lazy => 1,
predicate => 'has_meta',
builder => '_build_meta',
handles => {
get_meta => 'get',
},
);
sub _build_meta {
my $self = shift;
if($self->has_zilla) {
return {
dist => $self->zilla->name,
version => $self->zilla->version,
};
}
return {} if !path('META.json')->exists;
my $json = path('META.json')->slurp_utf8;
my $data = decode_json($json);
return {} if !exists $data->{'name'} || !exists $data->{'version'};
return {
dist => $data->{'name'},
version => $data->{'version'},
};
}
sub BUILD {
my $self = shift;
$self->link_url(sprintf 'http://matrix.cpantesters.org/?dist=%s %s', $self->dist, $self->version eq 'latest' ? '' : $self->version);
$self->image_url($self->custom_image_url);
$self->image_alt('CPAN Testers result');
}
__PACKAGE__->meta->make_immutable;
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Badge::Depot::Plugin::Cpantesters - CPAN testers plugin for Badge::Depot
=begin html
<p>
<img src="https://img.shields.io/badge/perl-5.10+-blue.svg" alt="Requires Perl 5.10+" />
<a href="https://travis-ci.org/Csson/p5-Badge-Depot-Plugin-CpanTesters"><img src="https://api.travis-ci.org/Csson/p5-Badge-Depot-Plugin-CpanTesters.svg?branch=master" alt="Travis status" /></a>
<a href="http://cpants.cpanauthors.org/dist/Badge-Depot-Plugin-Cpantesters-0.0102"><img src="http://badgedepot.code301.com/badge/kwalitee/CSSON/Badge-Depot-Plugin-Cpantesters/0.0102" alt="Distribution kwalitee" /></a>
<a href="http://matrix.cpantesters.org/?dist=Badge-Depot-Plugin-Cpantesters%200.0102"><img src="http://badgedepot.code301.com/badge/cpantesters/Badge-Depot-Plugin-Cpantesters/0.0102" alt="CPAN Testers result" /></a>
<img src="https://img.shields.io/badge/coverage-70.6%-red.svg" alt="coverage 70.6%" />
</p>
=end html
=head1 VERSION
Version 0.0102, released 2016-08-11.
=head1 SYNOPSIS
If used standalone:
use Badge::Depot::Plugin::Cpantesters;
my $badge = Badge::Depot::Plugin::Cpantesters->new(dist => 'The-Dist', version => '0.1002');
print $badge->to_html;
# prints:
<a href="http://matrix.cpantesters.org/?dist=The-Dist%200.1002">
<img src="http://badgedepot.code301.com/badge/cpantesters/The-Dist/0.1002" alt="CPAN Testers result" />
</a>
If used with L<Pod::Weaver::Section::Badges>, in weaver.ini:
[Badges]
; other settings
badge = cpantesters
=head1 DESCRIPTION
Creates a L<CpanTesters|http://cpantesters.org> badge for a distribution.
This class consumes the L<Badge::Depot> role.
=head1 ATTRIBUTES
This badge tries to use distribution meta data to set the attributes. If that is available no attributes need to be set manually. The following checks are made:
=over 4
=item 1
If the badge is used via L<Pod::Weaver::Section::Badges> during a L<Dist::Zilla> build, then C<version> and C<dist> are set to the values in the Dist::Zilla object.
=item 2
If there is a C<META.json> in the distribution root then that is used to set C<version> and C<dist>.
=back
If neither of those are true then C<dist> and C<version> should passed to the constructor.
=over 4
=back
=head2 dist
Distribution name. With dashes, not colons.
=head2 version
Distribution version.
=head2 base_url
Default: C<https://badgedepot.code301.com>
Set this if you wish to use another instance of L<Badge::Depot::App>.
=head1 SEE ALSO
=over 4
=item *
L<Badge::Depot>
=item *
L<Task::Badge::Depot>
=back
=head1 SOURCE
L<https://github.com/Csson/p5-Badge-Depot-Plugin-CpanTesters>
=head1 HOMEPAGE
L<https://metacpan.org/release/Badge-Depot-Plugin-Cpantesters>
=head1 AUTHOR
Erik Carlsson <info@code301.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2016 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