VpSharp/VpSharp.Commands/Attributes/ExecutionChecks/RequireUserIdAttribute.cs

58 lines
1.9 KiB
C#
Raw Normal View History

2022-12-05 01:43:40 +00:00
namespace VpSharp.Commands.Attributes.ExecutionChecks;
#pragma warning disable CA1019 // Define accessors for attribute arguments
2022-12-05 01:43:40 +00:00
/// <summary>
/// Specifies that this command can only be run by bots.
/// </summary>
public sealed class RequireUserIdAttribute : PreExecutionCheckAttribute
{
/// <summary>
/// Initializes a new instance of the <see cref="RequireUserIdAttribute" /> class.
/// </summary>
/// <param name="userIds">An enumerable collection of allowed user IDs.</param>
/// <exception cref="ArgumentNullException"><paramref name="userIds" /> is <see langword="null" />.</exception>
public RequireUserIdAttribute(IEnumerable<int> userIds)
{
if (userIds is null)
{
throw new ArgumentNullException(nameof(userIds));
}
UserIds = userIds.ToArray();
}
2022-12-05 01:43:40 +00:00
/// <summary>
/// Initializes a new instance of the <see cref="RequireUserIdAttribute" /> class.
/// </summary>
/// <param name="userIds">An array of allowed user IDs.</param>
/// <exception cref="ArgumentNullException"><paramref name="userIds" /> is <see langword="null" />.</exception>
[CLSCompliant(false)]
2022-12-05 01:43:40 +00:00
public RequireUserIdAttribute(params int[] userIds)
{
if (userIds is null)
{
throw new ArgumentNullException(nameof(userIds));
}
2022-12-05 01:43:40 +00:00
UserIds = userIds[..];
}
/// <summary>
/// Gets a read-only view of the user IDs allowed to run this command.
/// </summary>
/// <value>A <see cref="IReadOnlyList{T}" /> of <see cref="string" /> representing the allowed user IDs.</value>
public IReadOnlyList<int> UserIds { get; }
/// <inheritdoc />
protected internal override Task<bool> PerformAsync(CommandContext context)
{
if (context is null)
{
throw new ArgumentNullException(nameof(context));
}
return Task.FromResult(UserIds.Contains(context.Avatar.UserId));
2022-12-05 01:43:40 +00:00
}
}