-
-
Notifications
You must be signed in to change notification settings - Fork 318
Expand file tree
/
Copy pathExtensionMethods.cs
More file actions
61 lines (52 loc) · 2.2 KB
/
Copy pathExtensionMethods.cs
File metadata and controls
61 lines (52 loc) · 2.2 KB
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
using System;
using DSharpPlus.Extensions;
using Microsoft.Extensions.DependencyInjection;
namespace DSharpPlus.CommandsNext;
/// <summary>
/// Defines various extensions specific to CommandsNext.
/// </summary>
public static class ExtensionMethods
{
/// <summary>
/// Adds the CommandsNext extension to this DiscordClientBuilder.
/// </summary>
/// <param name="builder">The builder to register to.</param>
/// <param name="setup">Any setup code you want to run on the extension, such as registering commands and converters.</param>
/// <param name="configuration">CommandsNext configuration to use.</param>
/// <returns>The same builder for chaining.</returns>
public static DiscordClientBuilder UseCommandsNext
(
this DiscordClientBuilder builder,
Action<CommandsNextExtension> setup,
CommandsNextConfiguration configuration
)
=> builder.ConfigureServices(services => services.AddCommandsNextExtension(setup, configuration));
/// <summary>
/// Adds the CommandsNext extension to this service collection.
/// </summary>
/// <param name="services">The service collection to register to.</param>
/// <param name="setup">Any setup code you want to run on the extension, such as registering commands and converters.</param>
/// <param name="configuration">CommandsNext configuration to use.</param>
/// <returns>The same service collection for chaining.</returns>
public static IServiceCollection AddCommandsNextExtension
(
this IServiceCollection services,
Action<CommandsNextExtension> setup,
CommandsNextConfiguration configuration
)
{
if (configuration.UseDefaultCommandHandler)
{
services.ConfigureEventHandlers(b => b.AddEventHandlers<MessageHandler>());
}
services.AddSingleton(provider =>
{
DiscordClient client = provider.GetRequiredService<DiscordClient>();
CommandsNextExtension extension = new(configuration ?? new());
extension.Setup(client);
setup(extension);
return extension;
});
return services;
}
}