mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-01 16:30:08 +00:00
* Simplify SfetchMembers (#2339) Co-authored-by: meister03 * Create leaveVoiceChannel.ts (#2342) * Update editFollowupMessage.ts (#2344) * Update editInteractionResponse.ts (#2343) * Update editMessage.ts (#2341) * Update calculateShardId.ts Fix wrong shardId calculations * Add Role Icon to Edit (#2346) Co-authored-by: meister03 * Add mix max length (#2347) Co-authored-by: meister03 * style: deno fmt * Fix Disabled Options (#2368) Co-authored-by: meister03 <meisterpi@gmail.com> * Add app_permissions (#2369) Co-authored-by: meister03 <meisterpi@gmail.com> * thread_id instead of threadId (#2378) Co-authored-by: Veeti K <veeti@veetik.com> * feat: Create `ApplicationCommandFlags` enumerator. (#2384) Co-authored-by: vxern <vxern@wordcollector.co.uk> * Small Changes in a bulk pr to close the issues (#2370) * Initial Commit * Close #2364 * Add preset whitelist to automod #2356 -> Resolve Issue * Close [api-docs] AutoMod message intent updates (#5083) #2330 * Breaking Channge | [api-docs] Update message type names (#5093) * message.interaction.name changed attitude | [api-docs] Update Change_Log.md #2333 * #2333 also closes #2316 * Clarify 45 chars length | Add those on permission plugins | [api-docs] text input label has max 45 characters (#4689) #2137 * Clarify webhook naming restrictions (#4625) #2094 * 8th August Webhook new View Channel perm | Closes #2363 * 8th August Webhook new View Channel perm | Closes #2363 * Document thread_name for execute webhook (#5007) #2263 * Close Update create and modify channel documentation (#4867) #2237 * unnecesary nullable tag in Modify Guild Member params (#5164) #2355 * deno fmt * deno fmt * Use .includefor disallowed webhook names" * Add Missing Enums & #2367, #2362, #2361, #2371, #2372. #2349, #2358, #2325 back * deno fmt :( Co-authored-by: meister03 <meisterpi@gmail.com> Co-authored-by: LTS20050703 <87189679+lts20050703@users.noreply.github.com> Co-authored-by: Tomato6966 <chris.pre03@gmail.com> Co-authored-by: ITOH <to@itoh.at> Co-authored-by: meister03 <meisterpi@gmail.com> Co-authored-by: Veeti K <veeti@veetik.com> Co-authored-by: vxern <vxern@wordcollector.co.uk> Co-authored-by: LTS20050703 <87189679+lts20050703@users.noreply.github.com>
66 lines
2.4 KiB
TypeScript
66 lines
2.4 KiB
TypeScript
import type { Bot } from "../../bot.ts";
|
|
import { GatewayIntents, GatewayOpcodes } from "../../types/shared.ts";
|
|
import { calculateShardId } from "../../util/calculateShardId.ts";
|
|
|
|
/**
|
|
* Highly recommended to use this function to fetch members instead of getMember from REST.
|
|
* REST: 50/s global(across all shards) rate limit with ALL requests this included
|
|
* GW(this function): 120/m(PER shard) rate limit. Meaning if you have 8 shards your limit is now 960/m.
|
|
*/
|
|
export function fetchMembers(
|
|
bot: Bot,
|
|
guildId: bigint,
|
|
options?: Omit<RequestGuildMembers, "guildId">,
|
|
) {
|
|
// You can request 1 member without the intent
|
|
// Check if intents is not 0 as proxy ws won't set intents in other instances
|
|
if (bot.intents && (!options?.limit || options.limit > 1) && !(bot.intents & GatewayIntents.GuildMembers)) {
|
|
throw new Error(bot.constants.Errors.MISSING_INTENT_GUILD_MEMBERS);
|
|
}
|
|
|
|
if (options?.userIds?.length) {
|
|
options.limit = options.userIds.length;
|
|
}
|
|
|
|
const shardId = calculateShardId(bot.gateway, guildId);
|
|
|
|
return new Promise((resolve) => {
|
|
const nonce = `${guildId}-${Date.now()}`;
|
|
bot.cache.fetchAllMembersProcessingRequests.set(nonce, resolve);
|
|
|
|
const shard = bot.gateway.manager.shards.get(shardId);
|
|
if (!shard) {
|
|
throw new Error(`Shard (id: ${shardId}) not found.`);
|
|
}
|
|
|
|
shard.send({
|
|
op: GatewayOpcodes.RequestGuildMembers,
|
|
d: {
|
|
guild_id: guildId.toString(),
|
|
// If a query is provided use it, OR if a limit is NOT provided use ""
|
|
query: options?.query || (options?.limit ? undefined : ""),
|
|
limit: options?.limit || 0,
|
|
presences: options?.presences || false,
|
|
user_ids: options?.userIds?.map((id) => id.toString()),
|
|
nonce,
|
|
},
|
|
});
|
|
}) as Promise<void>;
|
|
}
|
|
|
|
/** https://discord.com/developers/docs/topics/gateway#request-guild-members */
|
|
export interface RequestGuildMembers {
|
|
/** id of the guild to get members for */
|
|
guildId: bigint;
|
|
/** String that username starts with, or an empty string to return all members */
|
|
query?: string;
|
|
/** Maximum number of members to send matching the query; a limit of 0 can be used with an empty string query to return all members */
|
|
limit: number;
|
|
/** Used to specify if we want the presences of the matched members */
|
|
presences?: boolean;
|
|
/** Used to specify which users you wish to fetch */
|
|
userIds?: bigint[];
|
|
/** Nonce to identify the Guild Members Chunk response */
|
|
nonce?: string;
|
|
}
|