App-lcpan
view release on metacpan or search on metacpan
lib/App/lcpan/Cmd/delete_rel.pm view on Meta::CPAN
package App::lcpan::Cmd::delete_rel;
use 5.010001;
use strict;
use warnings;
use Log::ger;
require App::lcpan;
our $AUTHORITY = 'cpan:PERLANCAR'; # AUTHORITY
our $DATE = '2023-09-26'; # DATE
our $DIST = 'App-lcpan'; # DIST
our $VERSION = '1.074'; # VERSION
our %SPEC;
$SPEC{handle_cmd} = {
v => 1.1,
summary => 'Delete a release record in the database',
description => <<'_',
Will delete records associated with a release in the database (including in the
`file` table, `module`, `dist`, `dep`, and so on). If `--delete-file` option is
specified, will also remove the file from the local mirror.
But currently will not remove/update the `modules/02packages.details.txt.gz`
index.
_
args => {
%App::lcpan::common_args,
%App::lcpan::rel_args,
delete_file => {
summary => 'Whether to delete the release file from the filesystem too',
schema => ['bool*', is=>1],
},
},
tags => ['write-to-db', 'write-to-fs'],
};
sub handle_cmd {
my %args = @_;
my $state = App::lcpan::_init(\%args, 'rw');
my $dbh = $state->{dbh};
my $row = $dbh->selectrow_hashref("SELECT id,cpanid FROM file WHERE name=?", {}, $args{release})
or return [404, "No such release"];
$dbh->begin_work;
App::lcpan::_delete_releases_records($dbh, $row->{id});
$dbh->commit;
if ($args{delete_file}) {
my $path = App::lcpan::_fullpath(
$args{release}, $state->{cpan}, $row->{cpanid});
log_info("Deleting file %s ...", $path);
unlink $path;
}
[200, "OK"];
}
1;
# ABSTRACT: Delete a release record in the database
__END__
=pod
=encoding UTF-8
=head1 NAME
App::lcpan::Cmd::delete_rel - Delete a release record in the database
=head1 VERSION
This document describes version 1.074 of App::lcpan::Cmd::delete_rel (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]
Delete a release record in the database.
Will delete records associated with a release in the database (including in the
C<file> table, C<module>, C<dist>, C<dep>, and so on). If C<--delete-file> option is
specified, will also remove the file from the local mirror.
But currently will not remove/update the C<modules/02packages.details.txt.gz>
index.
This function is not exported.
Arguments ('*' denotes required arguments):
=over 4
=item * B<cpan> => I<dirname>
Location of your local CPAN mirror, e.g. E<sol>pathE<sol>toE<sol>cpan.
( run in 0.985 second using v1.01-cache-2.11-cpan-437f7b0c052 )