App-PAIA
view release on metacpan or search on metacpan
lib/App/PAIA/Command.pm view on Meta::CPAN
}
# config file with base
if ( defined $self->config->get('base') ) {
my $base = $self->config->get('base');
$base =~ s{/$}{};
return $base . "/$name";
}
return;
}
has auth => (
default => sub {
$_[0]->base_url('auth');
}
);
has core => (
default => sub {
$_[0]->base_url('core');
}
);
has base => (
default => sub { $_[0]->option('base') },
coerce => sub { my ($b) = @_; $b =~ s!/$!!; $b; }
);
has patron => (
default => sub { $_[0]->option('patron') }
);
has scope => (
default => sub { $_[0]->option('scope') }
);
has token => (
default => sub { $_[0]->option('access_token') }
);
has username => (
default => sub {
$_[0]->option('username') // $_[0]->usage_error("missing username")
}
);
has password => (
default => sub {
$_[0]->option('password') // $_[0]->usage_error("missing password")
}
);
sub expired {
my ($self) = @_;
my $expires = $self->session->get('expires_at');
return $expires ? $expires <= time : 0;
}
sub not_authentificated {
my ($self, $scope) = @_;
my $token = $self->token // return "missing access token";
return "access token expired" if $self->expired;
if ($scope and $self->scope and !$self->has_scope($scope)) {
return "current scope '{$self->scope}' does not include $scope!\n";
}
return;
}
sub has_scope {
my ($self, $scope) = @_;
my $has_scope = $self->scope // '';
return index($has_scope, $scope) != -1;
}
sub request {
my ($self, $method, $url, $param) = @_;
my %headers;
if ($url !~ /login$/) {
my $token = $self->token // die "missing access_token - login required\n";
$headers{Authorization} = "Bearer $token";
}
my ($response, $json) = $self->agent->request( $method, $url, $param, %headers );
# handle request errors
if (ref $json and defined $json->{error}) {
my $msg = $json->{error};
if (defined $json->{error_description}) {
$msg .= ': '.$json->{error_description};
}
die "$msg\n";
}
if ($response->{status} ne '200') {
my $msg = $response->{content} // 'HTTP request failed: '.$response->{status};
die "$msg\n";
}
if (my $scopes = $response->{headers}->{'x-oauth-scopes'}) {
$self->session->set( scope => $scopes );
}
return $json;
}
sub login {
my ($self, $scope) = @_;
if ($self->session->purge) {
$self->session->file(undef);
$self->logger->("deleted session file");
}
my $auth = $self->auth or $self->usage_error("missing PAIA auth server URL");
# take credentials from command line or config file only
my %params = (
username => $self->username,
password => $self->password,
grant_type => 'password',
);
if (defined $scope) {
$scope =~ s/,/ /g;
$params{scope} = $scope;
}
my $response = $self->request( "POST", "$auth/login", \%params );
$self->{$_} = $response->{$_} for qw(expires_in access_token token_type patron scope);
$self->session->set( $_, $response->{$_} ) for qw(access_token patron scope);
$self->session->set( expires_at => time + $response->{expires_in} );
$self->session->set( auth => $auth );
$self->session->set( core => $self->core ) if defined $self->core;
$self->store_session;
return $response;
}
our %required_scopes = (
patron => 'read_patron',
items => 'read_items',
request => 'write_items',
renew => 'write_items',
cancel => 'write_items',
fees => 'read_fees',
change => 'change_password',
);
sub auto_login_for {
my ($self, $command) = @_;
my $scope = $required_scopes{$command};
if ( $self->not_authentificated($scope) ) {
# add to existing scopes (TODO: only if wanted)
my $new_scope = join ' ', split(' ',$self->scope // ''), $scope;
$self->logger->("auto-login with scope '$new_scope'");
$self->login( $new_scope );
if ( $self->scope and !$self->has_scope($scope) ) {
die "current scope '{$self->scope}' does not include $scope!\n";
}
}
}
sub store_session {
my ($self) = @_;
$self->session->store;
$self->token($self->session->get('access_token'))
if defined $self->session->get('access_token');
$self->scope($self->session->get('scope'))
if defined $self->session->get('scope');
$self->patron($self->session->get('patron'))
if defined $self->session->get('patron');
# TODO: expires_at?
}
sub core_request {
my ($self, $method, $command, $params) = @_;
my $core = $self->core // $self->usage_error("missing PAIA core server URL");
$self->auto_login_for($command);
my $patron = $self->patron // $self->usage_error("missing patron identifier");
my $url = "$core/".uri_escape($patron);
$url .= "/$command" if $command ne 'patron';
# save PAIA core URL in session
if ( ($self->session->get('core') // '') ne $core ) {
$self->session->set( core => $core );
$self->store_session;
# TODO: could we save new expiry as well?
}
my $json = $self->request( $method => $url, $params );
if ($json->{doc}) {
# TODO: more details about failed documents
my @errors = grep { defined $_ } map { $_->{error} } @{$json->{doc}};
if (@errors) {
die join("\n", @errors)."\n";;
}
}
return $json;
}
# used in command::renew and ::cancel
sub uri_list {
my $self = shift;
map {
( run in 0.744 second using v1.01-cache-2.11-cpan-99c4e6809bf )