App-lcpan
view release on metacpan or search on metacpan
lib/App/lcpan/Cmd/mod_contents.pm view on Meta::CPAN
package App::lcpan::Cmd::mod_contents;
use 5.010;
use strict;
use warnings;
require App::lcpan;
require App::lcpan::Cmd::contents;
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2023-09-26'; # DATE
our $DIST = 'App-lcpan'; # DIST
our $VERSION = '1.074'; # VERSION
our %SPEC;
my %cmd_args = (
%{ $App::lcpan::Cmd::contents::SPEC{handle_cmd}{args} },
%App::lcpan::mod_args,
);
delete $cmd_args{query};
delete $cmd_args{query_type};
delete $cmd_args{dist};
$SPEC{'handle_cmd'} = {
v => 1.1,
summary => "List contents inside a module's distribution",
description => <<'_',
This subcommand lists files inside a module's distribution.
% lcpan mod-contents Foo::Bar
is basically equivalent to:
% lcpan contents --dist `lcpan mod2dist Foo::Bar`
_
args => \%cmd_args,
};
sub handle_cmd {
my %args = @_;
my $state = App::lcpan::_init(\%args, 'ro');
my $dbh = $state->{dbh};
my ($file_id) = $dbh->selectrow_array(
"SELECT file_id FROM module WHERE name=?", {}, $args{module});
$file_id or return [404, "No such module '$args{module}'"];
delete $args{module};
App::lcpan::Cmd::contents::handle_cmd(
%args,
file_id => $file_id,
);
}
1;
# ABSTRACT: List contents inside a module's distribution
__END__
=pod
=encoding UTF-8
=head1 NAME
App::lcpan::Cmd::mod_contents - List contents inside a module's distribution
=head1 VERSION
This document describes version 1.074 of App::lcpan::Cmd::mod_contents (from Perl distribution App-lcpan), released on 2023-09-26.
=head1 FUNCTIONS
=head2 handle_cmd
Usage:
handle_cmd(%args) -> [$status_code, $reason, $payload, \%result_meta]
List contents inside a module's distribution.
This subcommand lists files inside a module's distribution.
% lcpan mod-contents Foo::Bar
is basically equivalent to:
% lcpan contents --dist C<lcpan mod2dist Foo::Bar>
This function is not exported.
Arguments ('*' denotes required arguments):
=over 4
=item * B<author> => I<str>
Filter by author.
=item * B<cpan> => I<dirname>
Location of your local CPAN mirror, e.g. E<sol>pathE<sol>toE<sol>cpan.
Defaults to C<~/cpan>.
( run in 1.771 second using v1.01-cache-2.11-cpan-d8267643d1d )