package Mojolicious::Command::cpanify; use Mojo::Base 'Mojolicious::Command'; use File::Basename 'basename'; use Getopt::Long qw(GetOptionsFromArray :config no_auto_abbrev no_ignore_case); use Mojo::UserAgent; has description => 'Upload distribution to CPAN'; has usage => sub { shift->extract_usage }; sub run { my ($self, @args) = @_; GetOptionsFromArray \@args, 'p|password=s' => \(my $password = ''), 'u|user=s' => \(my $user = ''); die $self->usage unless my $file = shift @args; my $tx = Mojo::UserAgent->new->tap(sub { $_->proxy->detect })->post( "https://$user:$password\@pause.perl.org/pause/authenquery" => form => { HIDDENNAME => $user, CAN_MULTIPART => 1, pause99_add_uri_upload => basename($file), SUBMIT_pause99_add_uri_httpupload => ' Upload this file from my disk ', pause99_add_uri_uri => '', pause99_add_uri_httpupload => {file => $file}, } ); unless ($tx->success) { my $code = $tx->res->code // 0; my $msg = $tx->error->{message}; if ($code == 401) { $msg = 'Wrong username or password.' } elsif ($code == 409) { $msg = 'File already exists on CPAN.' } die qq{Problem uploading file "$file": $msg\n}; } say 'Upload successful!'; } 1; =encoding utf8 =head1 NAME Mojolicious::Command::cpanify - Cpanify command =head1 SYNOPSIS Usage: APPLICATION cpanify [OPTIONS] [FILE] mojo cpanify -u sri -p secr3t Mojolicious-Plugin-MyPlugin-0.01.tar.gz Options: -p, --password <password> PAUSE password -u, --user <name> PAUSE username =head1 DESCRIPTION L<Mojolicious::Command::cpanify> uploads files to CPAN. This is a core command, that means it is always enabled and its code a good example for learning to build new commands, you're welcome to fork it. See L<Mojolicious::Commands/"COMMANDS"> for a list of commands that are available by default. =head1 ATTRIBUTES L<Mojolicious::Command::cpanify> inherits all attributes from L<Mojolicious::Command> and implements the following new ones. =head2 description my $description = $cpanify->description; $cpanify = $cpanify->description('Foo'); Short description of this command, used for the command list. =head2 usage my $usage = $cpanify->usage; $cpanify = $cpanify->usage('Foo'); Usage information for this command, used for the help screen. =head1 METHODS L<Mojolicious::Command::cpanify> inherits all methods from L<Mojolicious::Command> and implements the following new ones. =head2 run $cpanify->run(@ARGV); Run this command. =head1 SEE ALSO L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicio.us>. =cut