App-Adenosine
view release on metacpan or search on metacpan
lib/App/Adenosine.pm view on Meta::CPAN
my $action = shift @ARGV;
my $uri_base = $self->uri_base;
$self->stdout("$uri_base\n"), return if !$action;
if ($action =~ m/^$verb_regex$/) {
my $quote = 1;
my $interactive_edit = 0;
my $query = '';
$self->{verbose} = 0;
my ($path, $data);
$path = shift @ARGV unless $ARGV[0] && $ARGV[0] =~ /^-/;
$data = shift @ARGV unless $ARGV[0] && $ARGV[0] =~ /^-/;
$path ||= '';
$data ||= '';
GetOptions (
Q => sub { $quote = 0 },
"q=s" => \$query,
V => \$interactive_edit,
v => sub { $self->{verbose} = 1 },
);
my @extra = (@ARGV, $self->_get_extra_options);
my $wantdata;
$wantdata = 1 if $action =~ m/^(?:PUT|POST|TRACE|PATCH)$/;
if ($wantdata && $interactive_edit) {
require File::Temp;
my ($fh, $fn) = File::Temp::tempfile();
system($ENV{EDITOR} || 'vi', $fn);
$data = file($fn)->slurp;
unlink $fn;
}
push @extra, '--data-binary' if $data;
push @extra, '-I' if $action eq 'HEAD';
my $_path = $uri_base;
$_path =~ s/\*/$path/;
$query = uri_escape($query) if $quote;
push @extra, $self->host_method_config( $self->host($uri_base), $action );
$query = "?$query" if $query;
my @curl = @{$self->curl_command({
method => $action,
data => $data,
cookie_jar => $self->cookie_jar($uri_base),
rest => \@extra,
location => "$_path$query",
})};
$self->stderr(join(" ", map "'$_'", @curl) . "\n") if $self->verbose;
my ($out, $err, $ret) = $self->capture_curl(@curl);
return $self->handle_curl_output($out, $err, $ret);
} elsif ($action eq 'exports') {
print <<'SHELL';
function HEAD() { adenosine HEAD "$@"; };
function OPTIONS() { adenosine OPTIONS "$@"; };
function GET() { adenosine GET "$@"; };
function POST() { adenosine POST "$@"; };
function PUT() { adenosine PUT "$@"; };
function DELETE() { adenosine DELETE "$@"; };
function TRACE() { adenosine TRACE "$@"; };
function PATCH() { adenosine TRACE "$@"; };
SHELL
} else {
my $uri_base = $self->uri_base($action);
$self->_set_extra_options(@ARGV);
$self->stdout("$uri_base\n"), return
}
}
sub config_location {
my $loc;
if ($_[0]->enable_xdg and $ENV{XDG_CONFIG_HOME}) {
my $h = $ENV{XDG_CONFIG_HOME};
$loc = "$h/resty"
} else {
$loc = "$ENV{HOME}/.resty"
}
my $ret = dir($loc);
$ret->mkpath unless -d $ret->stringify;
$ret
}
sub stdout { print STDOUT $_[1] }
sub stderr { print STDERR $_[1] }
sub capture_curl {
my ($self, @rest) = @_;
my @wrappers = grep { $_->does('App::Adenosine::Role::WrapsCurlCommand') }
$self->plugins;
my $wrapped = sub {
my @rest = @_;
require Capture::Tiny;
Capture::Tiny::capture(sub { system(@rest) });
};
for my $wrapper (@wrappers) {
$wrapped = $wrapper->wrap($wrapped)
}
$wrapped->(@rest);
}
sub handle_curl_output {
my ($self, $out, $err, $ret) = @_;
my ( $http_code ) = ($err =~ m{.*HTTP/1\.[01] (\d)\d\d });
if ($self->verbose) {
my @filters = grep { $_->does('App::Adenosine::Role::FiltersStdErr') }
$self->plugins;
$err = $_->filter_stderr($err) for @filters;
$self->stderr($err)
}
$out .= "\n" unless $out =~ m/\n\Z/m;
$self->stdout($out);
return if $http_code == 2;
return $http_code;
}
sub argv { $_[0]->{argv} }
sub uri_base {
my ($self, $base) = @_;
if ($base) {
$base .= '*' unless $base =~ /\*/;
$base = "http://$base" unless $base =~ m(^https?://);
$self->_set_uri_base($base);
return $base
} else {
$self->_get_uri_base
}
}
sub _set_uri_base {
my ($self, $base) = @_;
my $file = $self->config_location->file('host');
$file->touch unless -f $file->stringify;
$file->spew($base);
}
sub _get_uri_base {
my $self = shift;
my $file = $self->config_location->file('host');
return '' unless -f $file->stringify;
($file->slurp(chomp => 1))[0]
}
sub _set_extra_options {
my ($self, @rest) = @_;
my $file = $self->config_location->file('options');
$file->touch unless -f $file->stringify;
$file->spew(@rest);
}
sub _get_extra_options {
my $self = shift;
my $file = $self->config_location->file('options');
$file->slurp(chomp => 1)
}
sub curl_command {
my %arg = %{$_[1]};
[qw(curl -sLv), $arg{data} || (), '-X', $arg{method},
'-b', $arg{cookie_jar}, '-c', $arg{cookie_jar},
lib/App/Adenosine.pm view on Meta::CPAN
App::Adenosine - Handy CLI HTTP tool
=head1 VERSION
version 2.002000
=head1 NOTE
The usage docs for C<Adenosine> are in the attached C<README> file. This
documentation is for plugins.
=head1 USING PLUGINS
To use plugins you need to create a file called C<adenosine> and put it in
your path. It should look like this:
#!/usr/bin/env perl
use lib 'path/to/adenosine/lib';
use App::Adenosine;
App::Adenosine->new({
argv => \@ARGV,
plugins => [qw(::Stopwatch ::Rainbow)],
});
If a plugin begins with double colons, as above, it is automatically prefixed
with C<App::Adenosine::Plugin> and then instantiated with no arguments
(C<< ->new >>). For plugins that can take options you may also pass objects.
So for example the following is also valid:
...
use App::Adenosine::Plugin::Rainbow;
App::Adenosine->new({
argv => \@ARGV,
plugins => [
'::Stopwatch',
App::Adenosine::Plugin::Rainbow->new(
response_header_name_color => 'orange4',
),
],
});
An "autouse" version of adenosine which uses all the plugins in a certain part
of the filesystem is planned.
=head1 CREATING PLUGINS
C<Adenosine> has two types of plugins. The plugin system will grow as users
find more things that need extending, so as with much of OSS, this is a
scratch-the-itch situation. If you have a use case for a new plugin hook
let me know and I'll set it up.
Plugins are just objects that the C<Adenosine> object has. There are a number
of interface style roles that the plugin consumes to signal that the plugin
uses a certain hook. Note that plugins can consume multiple roles to use more
than one hook. The next sections document the roles and their respective hooks.
=head2 C<App::Adenosine::Role::FiltersStdErr>
Only a C<filter_stderr> method needs to be implemented. It takes a string
(stderr output from curl) and should return a string. An existing example of
a plugin that consumes this role is L<App::Adenosine::Plugin::Rainbow>.
=head2 C<App::Adenosine::Role::WrapsCurlCommand>
Only a C<wrap> method needs to be implemented. It takes a coderef and should
return a coderef. The returned coderef should pass the args it gets to the
coderef the method got and return out values returned by the coderef. To be
more clear, this is the pattern:
sub wrap {
my ($self, $cmd) = @_;
return sub {
# ...
my @ret = $cmd->(@_);
# ...
return @ret;
}
}
An existing plugin that consumes this role is
L<App::Adenosine::Plugin::Stopwatch>.
=head1 AUTHOR
Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2018 by Arthur Axel "fREW" Schmidt.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
( run in 3.012 seconds using v1.01-cache-2.11-cpan-75ffa21a3d4 )