forked from elastic/elasticsearch-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathElasticLowLevelClient.cs
69 lines (56 loc) · 3.31 KB
/
ElasticLowLevelClient.cs
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
using System;
using System.Diagnostics.CodeAnalysis;
using System.Threading;
using System.Threading.Tasks;
namespace Elasticsearch.Net
{
/// <summary>
/// Low level client that exposes all of elasticsearch API endpoints but leaves you in charge of building request and handling the response
/// </summary>
public partial class ElasticLowLevelClient : IElasticLowLevelClient
{
private readonly ElasticsearchUrlFormatter _formatter;
/// <summary>Instantiate a new low level elasticsearch client to http://localhost:9200</summary>
[SuppressMessage("Microsoft.Reliability", "CA2000:Dispose objects before losing scope")]
public ElasticLowLevelClient() : this(new Transport<IConnectionConfigurationValues>(new ConnectionConfiguration())) { }
/// <summary>Instantiate a new low level elasticsearch client using the specified settings</summary>
[SuppressMessage("Microsoft.Reliability", "CA2000:Dispose objects before losing scope")]
public ElasticLowLevelClient(IConnectionConfigurationValues settings) : this(
new Transport<IConnectionConfigurationValues>(settings ?? new ConnectionConfiguration())) { }
/// <summary>
/// Instantiate a new low level elasticsearch client explicitly specifying a custom transport setup
/// </summary>
public ElasticLowLevelClient(ITransport<IConnectionConfigurationValues> transport)
{
transport.ThrowIfNull(nameof(transport));
transport.Settings.ThrowIfNull(nameof(transport.Settings));
transport.Settings.RequestResponseSerializer.ThrowIfNull(nameof(transport.Settings.RequestResponseSerializer));
Transport = transport;
_formatter = Transport.Settings.UrlFormatter;
}
public IElasticsearchSerializer Serializer => Transport.Settings.RequestResponseSerializer;
public IConnectionConfigurationValues Settings => Transport.Settings;
protected ITransport<IConnectionConfigurationValues> Transport { get; set; }
public TResponse DoRequest<TResponse>(HttpMethod method, string path, PostData data = null, IRequestParameters requestParameters = null)
where TResponse : class, IElasticsearchResponse, new() =>
Transport.Request<TResponse>(method, path, data, requestParameters);
public Task<TResponse> DoRequestAsync<TResponse>(HttpMethod method, string path, CancellationToken cancellationToken, PostData data = null,
IRequestParameters requestParameters = null
)
where TResponse : class, IElasticsearchResponse, new() =>
Transport.RequestAsync<TResponse>(method, path, cancellationToken, data, requestParameters);
private string Url(FormattableString formattable) => formattable.ToString(_formatter);
private TRequestParams _params<TRequestParams>(TRequestParams requestParams, string contentType = null, string accept = null)
where TRequestParams : class, IRequestParameters, new()
{
if (contentType.IsNullOrEmpty()) return requestParams;
requestParams = requestParams ?? new TRequestParams();
if (requestParams.RequestConfiguration == null) requestParams.RequestConfiguration = new RequestConfiguration();
if (!contentType.IsNullOrEmpty() && requestParams.RequestConfiguration.ContentType.IsNullOrEmpty())
requestParams.RequestConfiguration.ContentType = contentType;
if (!accept.IsNullOrEmpty() && requestParams.RequestConfiguration.Accept.IsNullOrEmpty())
requestParams.RequestConfiguration.Accept = accept;
return requestParams;
}
}
}