lemonldap-ng/lemonldap-ng-portal/lib/Lemonldap/NG/Portal/_Browser.pm

31 lines
596 B
Perl
Raw Normal View History

2013-10-08 06:35:38 +02:00
##@file
# Add LWP::UserAgent object
##@class
# Add LWP::UserAgent object
package Lemonldap::NG::Portal::_Browser;
use strict;
our $VERSION = '2.0.0';
2013-10-08 06:35:38 +02:00
our $_ua;
## @method LWP::UserAgent ua()
# @return LWP::UserAgent object
sub ua {
my $self = shift;
return $_ua if ($_ua);
eval { require LWP::UserAgent; };
$self->abort( 'LWP::UserAgent isn\'t installed', $@ ) if ($@);
# TODO : LWP options to use a proxy for example
$_ua = LWP::UserAgent->new() or $self->abort($@);
push @{ $_ua->requests_redirectable }, 'POST';
2013-10-08 12:30:14 +02:00
$_ua->env_proxy();
2013-10-08 06:35:38 +02:00
return $_ua;
}
1;