App-lcpan-CmdBundle-sco

 view release on metacpan or  search on metacpan

lib/App/lcpan/Cmd/sco_author.pm  view on Meta::CPAN

package App::lcpan::Cmd::sco_author;

our $DATE = '2017-07-10'; # DATE
our $VERSION = '0.002'; # VERSION

use 5.010001;
use strict;
use warnings;
use Log::ger;

require App::lcpan;

our %SPEC;

$SPEC{handle_cmd} = {
    v => 1.1,
    summary => 'Open author page on search.cpan.org',
    description => <<'_',

Given author with CPAN ID `CPANID`, this will open
`http://search.cpan.org/~CPANID`. `CPANID` will first be checked for existence
in local index database.

_
    args => {
        %App::lcpan::common_args,
        %App::lcpan::author_args,
    },
};
sub handle_cmd {
    my %args = @_;
    my $author = $args{author};

    my $state = App::lcpan::_init(\%args, 'ro');
    my $dbh = $state->{dbh};

    my ($cpanid) = $dbh->selectrow_array(
        "SELECT cpanid FROM author WHERE cpanid=?", {}, uc $author);
    defined $cpanid or return [404, "No such author '$author'"];

    require Browser::Open;
    my $err = Browser::Open::open_browser("http://search.cpan.org/~$cpanid");
    return [500, "Can't open browser"] if $err;
    [200];
}

1;
# ABSTRACT: Open author page on search.cpan.org

__END__

=pod

=encoding UTF-8

=head1 NAME

App::lcpan::Cmd::sco_author - Open author page on search.cpan.org

=head1 VERSION

This document describes version 0.002 of App::lcpan::Cmd::sco_author (from Perl distribution App-lcpan-CmdBundle-sco), released on 2017-07-10.

=head1 DESCRIPTION

This module handles the L<lcpan> subcommand C<sco-author>.

=head1 FUNCTIONS


=head2 handle_cmd

Usage:

 handle_cmd(%args) -> [status, msg, result, meta]

Open author page on search.cpan.org.

Given author with CPAN ID C<CPANID>, this will open
CL<http://search.cpan.org/~CPANID>. C<CPANID> will first be checked for existence
in local index database.

This function is not exported.

Arguments ('*' denotes required arguments):

=over 4

=item * B<author>* => I<str>

=item * B<cpan> => I<dirname>

Location of your local CPAN mirror, e.g. /path/to/cpan.

Defaults to C<~/cpan>.

=item * B<index_name> => I<filename> (default: "index.db")

Filename of index.



( run in 2.416 seconds using v1.01-cache-2.11-cpan-99c4e6809bf )