-
Notifications
You must be signed in to change notification settings - Fork 46
/
ServiceCollectionExtensions.cs
123 lines (112 loc) · 4.44 KB
/
ServiceCollectionExtensions.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
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
//
// ServiceCollectionExtensions.cs
//
// Author:
// Jarl Gullberg <jarl.gullberg@gmail.com>
//
// Copyright (c) Jarl Gullberg
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
using System;
using System.Linq;
using System.Reflection;
using JetBrains.Annotations;
using Microsoft.Extensions.DependencyInjection;
using Remora.Commands.Extensions;
using Remora.Commands.Groups;
using Remora.Discord.Extensions.Attributes;
using Remora.Discord.Extensions.Services;
using Remora.Discord.Gateway.Extensions;
using Remora.Discord.Gateway.Responders;
using Remora.Discord.Interactivity;
namespace Remora.Discord.Extensions.Extensions;
/// <summary>
/// A collection of extensions for the <see cref="IServiceCollection"/> interface.
/// </summary>
[PublicAPI]
public static class ServiceCollectionExtensions
{
/// <summary>
/// Adds services provided by Remora.Discord.Extensions.
/// </summary>
/// <param name="serviceCollection">The service collection.</param>
/// <returns>The service collection, with the services added.</returns>
public static IServiceCollection AddExtensions(this IServiceCollection serviceCollection)
{
serviceCollection.AddScoped<IPermissionComputationService, PermissionComputationService>();
return serviceCollection;
}
/// <summary>
/// Automatically registers every command group in the given assembly.
/// </summary>
/// <param name="serviceCollection">The service collection to add commands to.</param>
/// <param name="assembly">The assembly to discover command groups from.</param>
/// <param name="treeName">The name of the tree to register commands to, otherwise the default.</param>
/// <param name="typeFilter">A function to select whether a given command group should be registered.</param>
/// <returns>The service collection with registered commands.</returns>
public static IServiceCollection AddCommandGroupsFromAssembly
(
this IServiceCollection serviceCollection,
Assembly assembly,
string? treeName = null,
Func<Type, bool>? typeFilter = null
)
{
var candidates = assembly.ExportedTypes.Where
(
t => t is { IsClass: true, IsAbstract: false } &&
typeof(CommandGroup).IsAssignableFrom(t) &&
!typeof(InteractionGroup).IsAssignableFrom(t)
)
.ToArray();
var tree = serviceCollection.AddCommandTree(treeName);
foreach (var candidate in candidates)
{
if (typeFilter?.Invoke(candidate) ?? true)
{
tree.WithCommandGroup(candidate);
}
}
return serviceCollection;
}
/// <summary>
/// Adds all responders in the given assembly to the service collection, using their attributed group if possible.
/// </summary>
/// <param name="serviceCollection">The service collection to register responders in.</param>
/// <param name="assembly">The assembly to discover responders from.</param>
/// <returns>The service collection to chain calls.</returns>
public static IServiceCollection AddRespondersFromAssembly
(
this IServiceCollection serviceCollection,
Assembly assembly
)
{
var candidates = assembly.GetTypes().Where
(
t => t is { IsClass: true, IsAbstract: false } &&
t.GetInterfaces().Any
(
i => i.IsGenericType && i.GetGenericTypeDefinition() == typeof(IResponder<>)
)
)
.ToArray();
foreach (var candidate in candidates)
{
var grouping = candidate.GetCustomAttribute(typeof(ResponderAttribute)) as ResponderAttribute;
serviceCollection.AddResponder(candidate, grouping?.Group ?? ResponderGroup.Normal);
}
return serviceCollection;
}
}