App-Sky/lib/App/Sky/CmdLine.pm
package App::Sky::CmdLine;
$App::Sky::CmdLine::VERSION = '0.8.0';
use strict;
use warnings;
use 5.020;
use utf8;
use Carp ();
use Moo;
use MooX 'late';
use Getopt::Long qw(GetOptionsFromArray);
use App::Sky::Config::Validate ();
use App::Sky::Manager ();
use File::HomeDir ();
use YAML::XS qw(LoadFile);
use Scalar::Util qw(reftype);
has 'argv' => ( isa => 'ArrayRef[Str]', is => 'rw', required => 1, );
# Better than DATA , IMHO
my $INIT_YAML_CONFIG_CONTENTS = <<"ENDFILE";
---
default_site: homepage
sites:
homepage:
base_upload_cmd:
- 'rsync'
- '-a'
- '-v'
- '--progress'
- '--inplace'
dest_upload_prefix: 'hostgator:public_html/'
dest_upload_url_prefix: 'https://www.destsite.tld/'
dirs_section: 'dirs'
sections:
archives:
basename_re: '\\.(?:7z|AppImage\\.xz|ova(?:\\.xz)?|tar|tar\\.bz2|tar\\.gz|tar\\.xz|tar\\.zst|zip|exe|rpm)(?:\\.zsync)?\\z'
target_dir: 'Files/files/arcs/'
code:
basename_re: '\\.(?:bash|c|cpp|diff|hs|js|json|log|p6|patch|pl|pm|py|rb|rs|s|scm|spec|ts|vim|yaml|yml)(?:\\.bz2|\\.gz|\\.xz\\|\\.zst)?\\z'
target_dir: 'Files/files/code/'
dirs:
basename_re: '\\.(MYDIR)\\z'
target_dir: 'Files/files/dirs/'
images:
basename_re: '\\.(?:bmp|gif|jpeg|jpg|kra|png|(?:ai|svg|xcf)(?:\\.bz2|\\.gz|\\.xz\\|\\.zst)?|svgz|webp)\\z'
target_dir: 'Files/files/images/'
music:
basename_re: '\\.(?:aac|aup3|m4a|mod|mp3|ogg|s3m|wav|xm)\\z'
target_dir: 'Files/files/music/mp3-ogg/'
text:
basename_re: '\\.(?:asciidoc|docx|epub|html|md|mkdn|ods|odt|pdf|tsv|txt|xml|xhtml|xlsx)(?:\\.bz2|\\.gz|\\.xz\\|\\.zst)?\\z'
target_dir: 'Files/files/text/'
video:
basename_re: '\\.(?:avi|flv|mkv|mp4|mpeg|mpg|ogv|srt|webm)\\z'
target_dir: 'Files/files/video/'
ENDFILE
sub _basic_help
{
my ($self) = @_;
print <<'EOF';
sky upload /path/to/myfile.txt
sky up-r /path/to/directory
Specifying --copy or -x will copy the URL to the clipboard.
EOF
exit(0);
}
sub _basic_usage
{
my ($self) = @_;
print "Usage: sky [up|upload] /path/to/myfile.txt\n";
exit(-1);
}
sub _is_copy_to_clipboard
{
my ( $self, $flag ) = @_;
return ( $flag =~ /\A(--copy|-x)\z/ );
}
sub _shift
{
my $self = shift;
return shift( @{ $self->argv() } );
}
sub _write_utf8_file
{
my ( $out_path, $contents ) = @_;
open my $out_fh, '>:encoding(utf8)', $out_path
or die "Cannot open '$out_path' for writing - $!";
print {$out_fh} $contents;
close($out_fh);
return;
}
sub run
{
my ($self) = @_;
my $copy = 0;
if ( !@{ $self->argv() } )
{
return $self->_basic_usage();
}
my $verb = shift( @{ $self->argv() } );
if ( ( $verb eq '--help' ) or ( $verb eq '-h' ) )
{
return $self->_basic_help();
}
if ( $self->_is_copy_to_clipboard($verb) )
{
$copy = 1;
$verb = shift( @{ $self->argv() } );
}
my $_calc_manager = sub {
my $dist_config_dir =
File::HomeDir->my_dist_config( 'App-Sky', { create => 1 }, );
my $config_fn =
File::Spec->catfile( $dist_config_dir, 'app_sky_conf.yml' );
if ( not( -e $config_fn ) )
{
_write_utf8_file( $config_fn, $INIT_YAML_CONFIG_CONTENTS );
warn
qq#Populated the "$config_fn" configuration file with initial contents. You should review it.#;
}
my $config = LoadFile($config_fn);
my $validator =
App::Sky::Config::Validate->new( { config => $config } );
$validator->is_valid();
return App::Sky::Manager->new(
{
config => $config,
}
);
};
my $_handle_results = sub {
my ($results) = @_;
my $upload_cmd = $results->upload_cmd();
my $urls = $results->urls();
if ( ( system { $upload_cmd->[0] } @$upload_cmd ) != 0 )
{
die "Upload cmd <<@$upload_cmd>> failed with $!";
}
my $URL = $urls->[0]->as_string();
print "Got URL:\n", $URL, "\n";
if ($copy)
{
require Clipboard;
Clipboard->VERSION('0.19');
Clipboard->import('');
Clipboard->copy_to_all_selections($URL);
}
exit(0);
};
my $op;
if ( ( ( $verb eq 'up' ) || ( $verb eq 'upload' ) ) )
{
$op = 'upload';
}
elsif ( ( $verb eq 'up-r' ) || ( $verb eq 'upload-recursive' ) )
{
$op = "up-r";
}
else
{
return $self->_basic_usage();
}
# GetOptionsFromArray(
# $self->argv(),
# );
my $filename = $self->_shift();
ARGS_LOOP:
while ( $filename =~ /\A-/ )
{
if ( $self->_is_copy_to_clipboard($filename) )
{
$copy = 1;
$filename = $self->_shift();
}
elsif ( $filename eq '--' )
{
$filename = $self->_shift();
last ARGS_LOOP;
}
else
{
die qq#Unrecognized argument "$filename"!#;
}
}
if ( not( ( $op eq 'upload' ) ? ( -f $filename ) : ( -d $filename ) ) )
{
if ( $op eq 'upload' )
{
die qq#"up" can only upload files. '$filename' is not a file!#;
}
die
"Can only upload directories. '$filename' is not a valid directory name.";
}
my $meth =
$op eq 'upload' ? 'get_upload_results' : 'get_recursive_upload_results';
$_handle_results->(
scalar(
$_calc_manager->()->$meth(
{
filenames => [$filename],
}
)
)
);
return;
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
App::Sky::CmdLine - command line program
=head1 VERSION
version 0.8.0
=head1 METHODS
=head2 argv
The array of command line arguments - should be supplied to the constructor.
=head2 run()
Run the application.
=for :stopwords cpan testmatrix url bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan
=head1 SUPPORT
=head2 Websites
The following websites have more information about this module, and may be of help to you. As always,
in addition to those websites please use your favorite search engine to discover more resources.
=over 4
=item *
MetaCPAN
A modern, open-source CPAN search engine, useful to view POD in HTML format.
L<https://metacpan.org/release/App-Sky>
=item *
RT: CPAN's Bug Tracker
The RT ( Request Tracker ) website is the default bug/issue tracking system for CPAN.
L<https://rt.cpan.org/Public/Dist/Display.html?Name=App-Sky>
=item *
CPANTS
The CPANTS is a website that analyzes the Kwalitee ( code metrics ) of a distribution.
L<http://cpants.cpanauthors.org/dist/App-Sky>
=item *
CPAN Testers
The CPAN Testers is a network of smoke testers who run automated tests on uploaded CPAN distributions.
L<http://www.cpantesters.org/distro/A/App-Sky>
=item *
CPAN Testers Matrix
The CPAN Testers Matrix is a website that provides a visual overview of the test results for a distribution on various Perls/platforms.
L<http://matrix.cpantesters.org/?dist=App-Sky>
=item *
CPAN Testers Dependencies
The CPAN Testers Dependencies is a website that shows a chart of the test results of all dependencies for a distribution.
L<http://deps.cpantesters.org/?module=App::Sky>
=back
=head2 Bugs / Feature Requests
Please report any bugs or feature requests by email to C<bug-app-sky at rt.cpan.org>, or through
the web interface at L<https://rt.cpan.org/Public/Bug/Report.html?Queue=App-Sky>. You will be automatically notified of any
progress on the request by the system.
=head2 Source Code
The code is open to the world, and available for you to hack on. Please feel free to browse it and play
with it, or whatever. If you want to contribute patches, please send me a diff or prod me to pull
from your repository :)
L<https://github.com/shlomif/Sky-uploader>
git clone git://github.com/shlomif/Sky-uploader.git
=head1 AUTHOR
Shlomi Fish <shlomif@cpan.org>
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website
L<https://github.com/shlomif/Sky-uploader/issues>
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2013 by Shlomi Fish.
This is free software, licensed under:
The MIT (X11) License
=cut