lemonldap-ng/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/Lib/REST.pm

33 lines
774 B
Perl
Raw Normal View History

package Lemonldap::NG::Portal::Lib::REST;
use strict;
use Mouse;
use Lemonldap::NG::Common::UserAgent;
use JSON qw(from_json to_json);
2017-02-28 21:53:19 +01:00
our $VERSION = '2.0.0';
has ua => (
is => 'rw',
lazy => 1,
default => sub {
return Lemonldap::NG::Common::UserAgent->new( $_[0]->{conf} );
}
);
sub restCall {
2017-03-03 18:25:03 +01:00
my ( $self, $url, $content ) = @_;
my $hreq = HTTP::Request->new( POST => $url );
$hreq->header( 'Content-Type' => 'application/json' );
2017-03-03 18:25:03 +01:00
$hreq->content( to_json($content) );
my $resp = $self->ua->request($hreq);
unless ( $resp->is_success ) {
die $resp->status_line;
}
2017-09-28 14:52:14 +02:00
my $res = eval { from_json( $resp->content, { allow_nonref => 1 } ) };
2017-03-03 18:25:03 +01:00
die "Bad REST response: $@" if ($@);
return $res;
}
1;