You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.6 KiB
41 lines
1.6 KiB
using System;
|
|
using System.Threading.Tasks;
|
|
using Model = Discord.API.Role;
|
|
using BulkParams = Discord.API.Rest.ModifyGuildRolesParams;
|
|
|
|
namespace Discord.Rest
|
|
{
|
|
internal static class RoleHelper
|
|
{
|
|
//General
|
|
public static async Task DeleteAsync(IRole role, BaseDiscordClient client,
|
|
RequestOptions options)
|
|
{
|
|
await client.ApiClient.DeleteGuildRoleAsync(role.Guild.Id, role.Id, options).ConfigureAwait(false);
|
|
}
|
|
public static async Task<Model> ModifyAsync(IRole role, BaseDiscordClient client,
|
|
Action<RoleProperties> func, RequestOptions options)
|
|
{
|
|
var args = new RoleProperties();
|
|
func(args);
|
|
var apiArgs = new API.Rest.ModifyGuildRoleParams
|
|
{
|
|
Color = args.Color.IsSpecified ? args.Color.Value.RawValue : Optional.Create<uint>(),
|
|
Hoist = args.Hoist,
|
|
Mentionable = args.Mentionable,
|
|
Name = args.Name,
|
|
Permissions = args.Permissions.IsSpecified ? args.Permissions.Value.RawValue : Optional.Create<ulong>()
|
|
};
|
|
var model = await client.ApiClient.ModifyGuildRoleAsync(role.Guild.Id, role.Id, apiArgs, options).ConfigureAwait(false);
|
|
|
|
if (args.Position.IsSpecified)
|
|
{
|
|
var bulkArgs = new[] { new BulkParams(role.Id, args.Position.Value) };
|
|
await client.ApiClient.ModifyGuildRolesAsync(role.Guild.Id, bulkArgs, options).ConfigureAwait(false);
|
|
model.Position = args.Position.Value;
|
|
}
|
|
return model;
|
|
}
|
|
}
|
|
}
|