mirror of
https://github.com/oliverbooth/VpSharp
synced 2024-11-12 23:35:42 +00:00
58 lines
1.9 KiB
C#
58 lines
1.9 KiB
C#
namespace VpSharp.Commands.Attributes.ExecutionChecks;
|
|
|
|
#pragma warning disable CA1019 // Define accessors for attribute arguments
|
|
|
|
/// <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();
|
|
}
|
|
|
|
/// <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)]
|
|
public RequireUserIdAttribute(params int[] userIds)
|
|
{
|
|
if (userIds is null)
|
|
{
|
|
throw new ArgumentNullException(nameof(userIds));
|
|
}
|
|
|
|
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));
|
|
}
|
|
}
|