-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPluginInstallation.cs
36 lines (27 loc) · 1.19 KB
/
PluginInstallation.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
using FluentSearchEngine.Configurations;
using Meilisearch;
using Microsoft.Extensions.DependencyInjection;
namespace FluentSearchEngine
{
public static class PluginInstallation
{
public static void AddSearchQueryBuilder(this IServiceCollection services, string host, string key)
{
var client = new MeilisearchClient(host, key);
if (!client.IsHealthyAsync().Result)
throw new HttpRequestException("could not connect to Meilisearch host");
client.ResolveFluentFiltersFromAssembly();
services.AddGenericSearchService(client);
}
public static void AddSearchQueryBuilder(this IServiceCollection services, Action<SearchServiceOptions> optionsAction)
{
var options = new SearchServiceOptions();
optionsAction.Invoke(options);
var client = new MeilisearchClient(options.Host, options.Key);
if (!client.IsHealthyAsync().Result)
throw new HttpRequestException("could not connect to Meilisearch host");
client.ResolveFluentFiltersFromAssembly(options);
services.AddGenericSearchService(client);
}
}
}