lemonldap-ng/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/REST.pm
2019-08-25 18:47:43 +02:00

40 lines
1004 B
Perl

package Lemonldap::NG::Portal::Lib::REST;
use strict;
use Mouse;
use Lemonldap::NG::Common::UserAgent;
use JSON qw(from_json to_json);
our $VERSION = '2.1.0';
has ua => (
is => 'rw',
lazy => 1,
default => sub {
return Lemonldap::NG::Common::UserAgent->new( $_[0]->{conf} );
}
);
sub restCall {
my ( $self, $url, $content ) = @_;
$self->logger->debug("REST: trying to call $url with:");
eval {
foreach ( keys %$content ) {
$self->logger->debug(
" $_: " . ( /password/ ? '****' : $content->{$_} ) );
}
};
my $hreq = HTTP::Request->new( POST => $url );
$hreq->header( 'Content-Type' => 'application/json' );
$hreq->content( to_json($content) );
my $resp = $self->ua->request($hreq);
unless ( $resp->is_success ) {
die $resp->status_line;
}
my $res = eval { from_json( $resp->content, { allow_nonref => 1 } ) };
die "Bad REST response: $@" if ($@);
return $res;
}
1;