forked from elastic/elasticsearch-net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ElasticLowLevelClient.cs
64 lines (52 loc) · 3.36 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
using System;
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;
public IConnectionConfigurationValues Settings => this.Transport.Settings;
public IElasticsearchSerializer Serializer => this.Transport.Settings.RequestResponseSerializer;
protected ITransport<IConnectionConfigurationValues> Transport { get; set; }
/// <summary>Instantiate a new low level elasticsearch client to http://localhost:9200</summary>
[System.Diagnostics.CodeAnalysis.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>
[System.Diagnostics.CodeAnalysis.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));
this.Transport = transport;
this._formatter = this.Transport.Settings.UrlFormatter;
}
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;
}
public TResponse DoRequest<TResponse>(HttpMethod method, string path, PostData data = null, IRequestParameters requestParameters = null)
where TResponse : class, IElasticsearchResponse, new() =>
this.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() =>
this.Transport.RequestAsync<TResponse>(method, path, cancellationToken, data, requestParameters);
}
}