/usr/share/perl5/Pinto/Remote.pm is in pinto 0.97+dfsg-4ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | # ABSTRACT: Interact with a remote Pinto repository
package Pinto::Remote;
use Moose;
use MooseX::StrictConstructor;
use MooseX::MarkAsMethods ( autoclean => 1 );
use MooseX::Types::Moose qw(Maybe Str);
use LWP::UserAgent;
use Pinto::Chrome::Term;
use Pinto::Remote::Action;
use Pinto::Constants qw(:server);
use Pinto::Util qw(throw current_username);
use Pinto::Types qw(Uri);
#-------------------------------------------------------------------------------
our $VERSION = '0.097'; # VERSION
#------------------------------------------------------------------------------
with qw(Pinto::Role::Plated);
#------------------------------------------------------------------------------
has root => (
is => 'ro',
isa => Uri,
default => $ENV{PINTO_REPOSITORY_ROOT},
coerce => 1,
);
has username => (
is => 'ro',
isa => Str,
default => current_username,
);
has password => (
is => 'ro',
isa => Maybe [Str],
);
has ua => (
is => 'ro',
isa => 'LWP::UserAgent',
default => sub { LWP::UserAgent->new( agent => $_[0]->ua_name, env_proxy => 1 ) },
lazy => 1,
);
has ua_name => (
is => 'ro',
isa => Str,
default => sub { sprintf '%s/%s', ref $_[0], $_[0]->VERSION || '??' },
lazy => 1,
);
#------------------------------------------------------------------------------
around BUILDARGS => sub {
my $orig = shift;
my $class = shift;
my $args = $class->$orig(@_);
# Normalize the root
$args->{root} = 'http://' . $args->{root}
if defined $args->{root} && $args->{root} !~ m{^ https?:// }mx;
$args->{root} = $args->{root} . ':' . $PINTO_SERVER_DEFAULT_PORT
if defined $args->{root} && $args->{root} !~ m{ :\d+ $}mx;
# Grrr. Gotta avoid passing undefs to Moose
my @chrome_attrs = qw(verbose quiet no_color);
my %chrome_args = map { $_ => delete $args->{$_} }
grep { exists $args->{$_} } @chrome_attrs;
$args->{chrome} ||= Pinto::Chrome::Term->new(%chrome_args);
return $args;
};
#------------------------------------------------------------------------------
sub run {
my ( $self, $action_name, @args ) = @_;
my $action_args = ( @args == 1 and ref $args[0] eq 'HASH' ) ? $args[0] : {@args};
my $action_class = $self->load_class_for_action( name => $action_name );
my $action = $action_class->new(
name => $action_name,
args => $action_args,
root => $self->root,
username => $self->username,
password => $self->password,
chrome => $self->chrome,
ua => $self->ua
);
return $action->execute;
}
#------------------------------------------------------------------------------
sub load_class_for_action {
my ( $self, %args ) = @_;
my $action_name = $args{name}
or throw 'Must specify an action name';
my $action_baseclass = __PACKAGE__ . '::Action';
my $action_subclass = __PACKAGE__ . '::Action::' . ucfirst $action_name;
my $subclass_did_load = Class::Load::try_load_class($action_subclass);
my $action_class = $subclass_did_load ? $action_subclass : $action_baseclass;
Class::Load::load_class($action_class);
return $action_class;
}
#------------------------------------------------------------------------------
__PACKAGE__->meta->make_immutable;
#-------------------------------------------------------------------------------
1;
__END__
=pod
=encoding UTF-8
=for :stopwords Jeffrey Ryan Thalhammer
=head1 NAME
Pinto::Remote - Interact with a remote Pinto repository
=head1 VERSION
version 0.097
=head1 SYNOPSIS
See L<pinto> to create and manage a Pinto repository.
See L<pintod> to allow remote access to your Pinto repository.
See L<Pinto::Manual> for more information about the Pinto tools.
=head1 DESCRIPTION
Pinto::Remote is the cousin of L<Pinto>. It provides the same API,
but instead of running Actions against a local repository, it just
sends the Action parameters to a L<pintod> server that invokes Pinto
on the remote host.
If you are using the L<pinto> application, it will automatically load
either Pinto or Pinto::Remote depending on whether your repository
root looks like a local directory path or a remote URL.
=head1 METHODS
=head2 run( $action_name => %action_args )
Loads the Action subclass for the given C<$action_name> and constructs
an object using the given C<$action_args>. If the subclass
C<Pinto::Remote::Action::$action_name> does not exist, then it falls
back to the L<Pinto::Remote::Action> base class.
=head1 AUTHOR
Jeffrey Ryan Thalhammer <jeff@stratopan.com>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2013 by Jeffrey Ryan Thalhammer.
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
|