1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
|
# Licensed to Elasticsearch B.V under one or more agreements.
# Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
# See the LICENSE file in the project root for more information
package Search::Elasticsearch::Role::Client::Direct;
$Search::Elasticsearch::Role::Client::Direct::VERSION = '8.12';
use Moo::Role;
with 'Search::Elasticsearch::Role::Client';
use Search::Elasticsearch::Util qw(load_plugin is_compat throw);
use Try::Tiny;
use Package::Stash 0.34 ();
use Any::URI::Escape qw(uri_escape);
use namespace::clean;
#===================================
sub parse_request {
#===================================
my $self = shift;
my $defn = shift || {};
my $params = { ref $_[0] ? %{ shift() } : @_ };
my $request;
try {
$request = {
ignore => delete $params->{ignore} || [],
method => $defn->{method} || 'GET',
serialize => $defn->{serialize} || 'std',
path => $self->_parse_path( $defn, $params ),
body => $self->_parse_body( $defn->{body}, $params ),
qs => $self->_parse_qs( $defn->{qs}, $params ),
};
}
catch {
chomp $_;
my $name = $defn->{name} || '<unknown method>';
$self->logger->throw_error( 'Param', "$_ in ($name) request. " );
};
return $request;
}
#===================================
sub _parse_path {
#===================================
my ( $self, $defn, $params ) = @_;
return delete $params->{path}
if $params->{path};
my $paths = $defn->{paths};
my $parts = $defn->{parts};
my %args;
keys %$parts;
no warnings 'uninitialized';
while ( my ( $key, $req ) = each %$parts ) {
my $val = delete $params->{$key};
if ( ref $val eq 'ARRAY' ) {
die "Param ($key) must contain a single value\n"
if @$val > 1 and not $req->{multi};
$val = join ",", @$val;
}
if ( !length $val ) {
die "Missing required param ($key)\n"
if $req->{required};
next;
}
utf8::encode($val);
$args{$key} = uri_escape($val);
}
PATH: for my $path (@$paths) {
my @keys = keys %{ $path->[0] };
next PATH unless @keys == keys %args;
for (@keys) {
next PATH unless exists $args{$_};
}
my ( $pos, @parts ) = @$path;
for ( keys %$pos ) {
$parts[ $pos->{$_} ] = $args{$_};
}
return join "/", '', @parts;
}
throw(
'Internal',
"Couldn't determine path",
{ params => $params, defn => $defn }
);
}
#===================================
sub _parse_body {
#===================================
my ( $self, $defn, $params ) = @_;
if ( defined $defn ) {
die("Missing required param (body)\n")
if $defn->{required} && !$params->{body};
return delete $params->{body};
}
die("Unknown param (body)\n") if $params->{body};
return undef;
}
#===================================
sub _parse_qs {
#===================================
my ( $self, $handlers, $params ) = @_;
die "No (qs) defined\n" unless $handlers;
my %qs;
if ( my $raw = delete $params->{params} ) {
die("Arg (params) shoud be a hashref\n")
unless ref $raw eq 'HASH';
%qs = %$raw;
}
for my $key ( keys %$params ) {
my $handler = $handlers->{$key}
or die("Unknown param ($key)\n");
$qs{$key} = $handler->( delete $params->{$key} );
}
return \%qs;
}
#===================================
sub _install_api {
#===================================
my ( $class, $group ) = @_;
my $defns = $class->api;
my $stash = Package::Stash->new($class);
my $group_qr = $group ? qr/$group\./ : qr//;
for my $action ( keys %$defns ) {
my ($name) = ( $action =~ /^$group_qr([^.]+)$/ )
or next;
next if $stash->has_symbol( '&' . $name );
my %defn = ( name => $name, %{ $defns->{$action} } );
$stash->add_symbol(
'&' . $name => sub {
shift->perform_request( \%defn, @_ );
}
);
}
}
#===================================
sub _build_namespace {
#===================================
my ( $self, $ns ) = @_;
my $class = load_plugin( $self->_namespace, [$ns] );
return $class->new(
{ transport => $self->transport,
logger => $self->logger
}
);
}
#===================================
sub _build_helper {
#===================================
my ( $self, $name, $sub_class ) = @_;
my $class = load_plugin( 'Search::Elasticsearch', $sub_class );
is_compat( $name . '_helper_class', $self->transport, $class );
return $class;
}
1;
# ABSTRACT: Request parsing for Direct clients
__END__
=pod
=encoding UTF-8
=head1 NAME
Search::Elasticsearch::Role::Client::Direct - Request parsing for Direct clients
=head1 VERSION
version 8.12
=head1 DESCRIPTION
This role provides the single C<parse_request()> method for classes
which need to parse an API definition from L<Search::Elasticsearch::Role::API>
and convert it into a request which can be passed to
L<Search::Elasticsearch::Transport/perform_request()>.
=head1 METHODS
=head2 C<perform_request()>
$request = $client->parse_request(\%defn,\%params);
The C<%defn> is a definition returned by L<Search::Elasticsearch::Role::API/api()>
with an extra key C<name> which should be the name of the method that
was called on the client. For instance if the user calls C<< $client->search >>,
then the C<name> should be C<"search">.
C<parse_request()> will turn the parameters that have been passed in into
a C<path> (via L<Search::Elasticsearch::Util::API::Path/path_init()>), a query-string
hash (via L<Search::Elasticsearch::Util::API::QS/qs_init>) and will through a
C<body> value directly.
B<NOTE:> If a C<path> key is specified in the C<%params> then it will be used
directly, instead of trying to build path from the path template. Similarly,
if a C<params> key is specified in the C<%params>, then it will be used
as a basis for the query string hash. For instance:
$client->perform_request(
{
method => 'GET',
name => 'new_method'
},
{
path => '/new/method',
params => { foo => 'bar' },
body => \%body
}
);
This makes it easy to add support for custom plugins or new functionality
not yet supported by the released client.
=head1 AUTHOR
Enrico Zimuel <enrico.zimuel@elastic.co>
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2024 by Elasticsearch BV.
This is free software, licensed under:
The Apache License, Version 2.0, January 2004
=cut
|