package Search::Elasticsearch::Cxn::LWP; $Search::Elasticsearch::Cxn::LWP::VERSION = '1.19'; use Moo; with 'Search::Elasticsearch::Role::Cxn::HTTP', 'Search::Elasticsearch::Role::Cxn', 'Search::Elasticsearch::Role::Is_Sync'; use LWP::UserAgent(); use HTTP::Headers(); use HTTP::Request(); my $Cxn_Error = qr/ Can't.connect | Server.closed.connection | Connection.refused /x; use namespace::clean; #=================================== sub perform_request { #=================================== my ( $self, $params ) = @_; my $uri = $self->build_uri($params); my $method = $params->{method}; my $request = HTTP::Request->new( $method => $uri, [ 'Content-Type' => $params->{mime_type}, %{ $self->default_headers }, ], $params->{data} ); my $ua = $self->handle; my $timeout = $params->{timeout} || $self->request_timeout; if ( $timeout ne $ua->timeout ) { $ua->conn_cache->drop; $ua->timeout($timeout); } my $response = $ua->request($request); return $self->process_response( $params, # request $response->code, # code $response->message, # msg $response->content, # body $response->headers # headers ); } #=================================== sub error_from_text { #=================================== local $_ = $_[2]; return /read timeout/ ? 'Timeout' : /write failed: Connection reset by peer/ ? 'ContentLength' : /$Cxn_Error/ ? 'Cxn' : 'Request'; } #=================================== sub _build_handle { #=================================== my $self = shift; my %args = ( keep_alive => 1, parse_head => 0 ); if ( $self->is_https ) { $args{ssl_opts} = $self->has_ssl_options ? $self->ssl_options : { verify_hostname => 0 }; } return LWP::UserAgent->new( %args, %{ $self->handle_args } ); } 1; # ABSTRACT: A Cxn implementation which uses LWP __END__ =pod =encoding UTF-8 =head1 NAME Search::Elasticsearch::Cxn::LWP - A Cxn implementation which uses LWP =head1 VERSION version 1.19 =head1 DESCRIPTION Provides an HTTP Cxn class and based on L. The LWP backend uses pure Perl and persistent connections. This class does L, whose documentation provides more information, L and L. =head1 CONFIGURATION =head2 Inherited configuration From L =over =item * L =item * L =item * L =back From L =over =item * L =item * L =item * L =item * L =item * L =item * L =item * L =back =head1 SSL/TLS L uses L to support HTTPS. By default, no validation of the remote host is performed. This behaviour can be changed by passing the C parameter with any options accepted by L. For instance, to check that the remote host has a trusted certificate, and to avoid man-in-the-middle attacks, you could do the following: use Search::Elasticsearch; my $es = Search::Elasticsearch->new( cxn => 'LWP', nodes => [ "https://node1.mydomain.com:9200", "https://node2.mydomain.com:9200", ], ssl_options => { verify_hostname => 1, SSL_ca_file => '/path/to/cacert.pem' } ); If the remote server cannot be verified, an L will be thrown - LWP does not allow us to detect that the connection error was due to invalid SSL. If you want your client to present its own certificate to the remote server, then use: use Search::Elasticsearch; my $es = Search::Elasticsearch->new( cxn => 'LWP', nodes => [ "https://node1.mydomain.com:9200", "https://node2.mydomain.com:9200", ], ssl_options => { verify_hostname => 1, SSL_ca_file => '/path/to/cacert.pem', SSL_use_cert => 1, SSL_cert_file => '/path/to/client.pem', SSL_key_file => '/path/to/client.pem', } ); =head1 METHODS =head2 C ($status,$body) = $self->perform_request({ # required method => 'GET|HEAD|POST|PUT|DELETE', path => '/path/of/request', qs => \%query_string_params, # optional data => $body_as_string, mime_type => 'application/json', timeout => $timeout }); Sends the request to the associated Elasticsearch node and returns a C<$status> code and the decoded response C<$body>, or throws an error if the request failed. =head2 Inherited methods From L =over =item * L =item * L =item * L =item * L =item * L =item * L =back From L =over =item * L =item * L =item * L =item * L =item * L =item * L =item * L =item * L =item * L =item * L =item * L =item * L =item * L =back =head1 SEE ALSO =over =item * L =item * L =item * L =item * L =back =head1 AUTHOR Clinton Gormley =head1 COPYRIGHT AND LICENSE This software is Copyright (c) 2015 by Elasticsearch BV. This is free software, licensed under: The Apache License, Version 2.0, January 2004 =cut