mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
* feat(core): Adds `getChannel()` for webhooks * feat(core): add `getWebhooks()` function for the channel and the guild * Update packages/core/src/api/guild.ts Co-authored-by: Almeida <almeidx@pm.me> * Update packages/core/src/api/channel.ts Co-authored-by: Almeida <almeidx@pm.me> * Update packages/core/src/api/channel.ts Co-authored-by: Almeida <almeidx@pm.me> * Update packages/core/src/api/guild.ts Co-authored-by: Almeida <almeidx@pm.me> * Update packages/core/src/api/guild.ts Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com> * Update packages/core/src/api/channel.ts Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com> * sorting the types --------- Co-authored-by: Almeida <almeidx@pm.me> Co-authored-by: Jiralite <33201955+Jiralite@users.noreply.github.com> Co-authored-by: space <spaceeec@yahoo.com>
364 lines
14 KiB
TypeScript
364 lines
14 KiB
TypeScript
import { makeURLSearchParams, type RawFile, type REST } from '@discordjs/rest';
|
|
import {
|
|
Routes,
|
|
type RESTDeleteAPIChannelResult,
|
|
type RESTGetAPIChannelInvitesResult,
|
|
type RESTGetAPIChannelMessageReactionUsersQuery,
|
|
type RESTGetAPIChannelMessageReactionUsersResult,
|
|
type RESTGetAPIChannelMessageResult,
|
|
type RESTGetAPIChannelMessagesQuery,
|
|
type RESTGetAPIChannelMessagesResult,
|
|
type RESTGetAPIChannelPinsResult,
|
|
type RESTGetAPIChannelResult,
|
|
type RESTGetAPIChannelThreadsArchivedQuery,
|
|
type RESTGetAPIChannelUsersThreadsArchivedResult,
|
|
type RESTGetAPIChannelWebhooksResult,
|
|
type RESTPatchAPIChannelJSONBody,
|
|
type RESTPatchAPIChannelMessageResult,
|
|
type RESTPatchAPIChannelResult,
|
|
type RESTPostAPIChannelFollowersResult,
|
|
type RESTPostAPIChannelInviteJSONBody,
|
|
type RESTPostAPIChannelInviteResult,
|
|
type RESTPostAPIChannelMessageCrosspostResult,
|
|
type RESTPostAPIChannelMessageJSONBody,
|
|
type RESTPostAPIChannelMessageResult,
|
|
type Snowflake,
|
|
} from 'discord-api-types/v10';
|
|
|
|
export class ChannelsAPI {
|
|
public constructor(private readonly rest: REST) {}
|
|
|
|
/**
|
|
* Sends a message in a channel
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#create-message}
|
|
* @param channelId - The id of the channel to send the message in
|
|
* @param data - The data to use when sending the message
|
|
*/
|
|
public async createMessage(
|
|
channelId: Snowflake,
|
|
{ files, ...body }: RESTPostAPIChannelMessageJSONBody & { files?: RawFile[] },
|
|
) {
|
|
return this.rest.post(Routes.channelMessages(channelId), {
|
|
files,
|
|
body,
|
|
}) as Promise<RESTPostAPIChannelMessageResult>;
|
|
}
|
|
|
|
/**
|
|
* Edits a message
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#edit-message}
|
|
* @param channelId - The id of the channel the message is in
|
|
* @param messageId - The id of the message to edit
|
|
* @param data - The data to use when editing the message
|
|
*/
|
|
public async editMessage(
|
|
channelId: Snowflake,
|
|
messageId: Snowflake,
|
|
{ files, ...body }: RESTPostAPIChannelMessageJSONBody & { files?: RawFile[] },
|
|
) {
|
|
return this.rest.patch(Routes.channelMessage(channelId, messageId), {
|
|
files,
|
|
body,
|
|
}) as Promise<RESTPatchAPIChannelMessageResult>;
|
|
}
|
|
|
|
/**
|
|
* Fetches the reactions for a message
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#get-reactions}
|
|
* @param channelId - The id of the channel the message is in
|
|
* @param messageId - The id of the message to get the reactions for
|
|
* @param emoji - The emoji to get the reactions for
|
|
* @param options - The options to use when fetching the reactions
|
|
*/
|
|
public async getMessageReactions(
|
|
channelId: Snowflake,
|
|
messageId: Snowflake,
|
|
emoji: string,
|
|
options: RESTGetAPIChannelMessageReactionUsersQuery = {},
|
|
) {
|
|
return this.rest.get(Routes.channelMessageReaction(channelId, messageId, encodeURIComponent(emoji)), {
|
|
query: makeURLSearchParams(options),
|
|
}) as Promise<RESTGetAPIChannelMessageReactionUsersResult>;
|
|
}
|
|
|
|
/**
|
|
* Deletes a reaction for the current user
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#delete-own-reaction}
|
|
* @param channelId - The id of the channel the message is in
|
|
* @param messageId - The id of the message to delete the reaction for
|
|
* @param emoji - The emoji to delete the reaction for
|
|
*/
|
|
public async deleteOwnMessageReaction(channelId: Snowflake, messageId: Snowflake, emoji: string) {
|
|
await this.rest.delete(Routes.channelMessageOwnReaction(channelId, messageId, encodeURIComponent(emoji)));
|
|
}
|
|
|
|
/**
|
|
* Deletes a reaction for a user
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#delete-user-reaction}
|
|
* @param channelId - The id of the channel the message is in
|
|
* @param messageId - The id of the message to delete the reaction for
|
|
* @param emoji - The emoji to delete the reaction for
|
|
* @param userId - The id of the user to delete the reaction for
|
|
*/
|
|
public async deleteUserMessageReaction(channelId: Snowflake, messageId: Snowflake, emoji: string, userId: Snowflake) {
|
|
await this.rest.delete(Routes.channelMessageUserReaction(channelId, messageId, encodeURIComponent(emoji), userId));
|
|
}
|
|
|
|
/**
|
|
* Deletes all reactions for a message
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#delete-all-reactions}
|
|
* @param channelId - The id of the channel the message is in
|
|
* @param messageId - The id of the message to delete the reactions for
|
|
*/
|
|
public async deleteAllMessageReactions(channelId: Snowflake, messageId: Snowflake) {
|
|
await this.rest.delete(Routes.channelMessageAllReactions(channelId, messageId));
|
|
}
|
|
|
|
/**
|
|
* Deletes all reactions of an emoji for a message
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#delete-all-reactions-for-emoji}
|
|
* @param channelId - The id of the channel the message is in
|
|
* @param messageId - The id of the message to delete the reactions for
|
|
* @param emoji - The emoji to delete the reactions for
|
|
*/
|
|
public async deleteAllMessageReactionsForEmoji(channelId: Snowflake, messageId: Snowflake, emoji: string) {
|
|
await this.rest.delete(Routes.channelMessageReaction(channelId, messageId, encodeURIComponent(emoji)));
|
|
}
|
|
|
|
/**
|
|
* Adds a reaction to a message
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#create-reaction}
|
|
* @param channelId - The id of the channel the message is in
|
|
* @param messageId - The id of the message to add the reaction to
|
|
* @param emoji - The emoji to add the reaction with
|
|
*/
|
|
public async addMessageReaction(channelId: Snowflake, messageId: Snowflake, emoji: string) {
|
|
await this.rest.put(Routes.channelMessageOwnReaction(channelId, messageId, encodeURIComponent(emoji)));
|
|
}
|
|
|
|
/**
|
|
* Fetches a channel
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#get-channel}
|
|
* @param channelId - The id of the channel
|
|
*/
|
|
public async get(channelId: Snowflake) {
|
|
return this.rest.get(Routes.channel(channelId)) as Promise<RESTGetAPIChannelResult>;
|
|
}
|
|
|
|
/**
|
|
* Edits a channel
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#modify-channel}
|
|
* @param channelId - The id of the channel to edit
|
|
* @param data - The new channel data
|
|
*/
|
|
public async edit(channelId: Snowflake, data: RESTPatchAPIChannelJSONBody) {
|
|
return this.rest.patch(Routes.channel(channelId), { body: data }) as Promise<RESTPatchAPIChannelResult>;
|
|
}
|
|
|
|
/**
|
|
* Deletes a channel
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#deleteclose-channel}
|
|
* @param channelId - The id of the channel to delete
|
|
*/
|
|
public async delete(channelId: Snowflake) {
|
|
return this.rest.delete(Routes.channel(channelId)) as Promise<RESTDeleteAPIChannelResult>;
|
|
}
|
|
|
|
/**
|
|
* Fetches the messages of a channel
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#get-channel-messages}
|
|
* @param channelId - The id of the channel to fetch messages from
|
|
* @param options - The options to use when fetching messages
|
|
*/
|
|
public async getMessages(channelId: Snowflake, options: RESTGetAPIChannelMessagesQuery = {}) {
|
|
return this.rest.get(Routes.channelMessages(channelId), {
|
|
query: makeURLSearchParams(options),
|
|
}) as Promise<RESTGetAPIChannelMessagesResult>;
|
|
}
|
|
|
|
/**
|
|
* Shows a typing indicator in a channel
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#trigger-typing-indicator}
|
|
* @param channelId - The id of the channel to show the typing indicator in
|
|
*/
|
|
public async showTyping(channelId: Snowflake) {
|
|
await this.rest.post(Routes.channelTyping(channelId));
|
|
}
|
|
|
|
/**
|
|
* Fetches the pinned messages of a channel
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#get-pinned-messages}
|
|
* @param channelId - The id of the channel to fetch pinned messages from
|
|
*/
|
|
public async getPins(channelId: Snowflake) {
|
|
return this.rest.get(Routes.channelPins(channelId)) as Promise<RESTGetAPIChannelPinsResult>;
|
|
}
|
|
|
|
/**
|
|
* Pins a message in a channel
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#pin-message}
|
|
* @param channelId - The id of the channel to pin the message in
|
|
* @param messageId - The id of the message to pin
|
|
* @param reason - The reason for pinning the message
|
|
*/
|
|
public async pinMessage(channelId: Snowflake, messageId: Snowflake, reason?: string) {
|
|
await this.rest.put(Routes.channelPin(channelId, messageId), { reason });
|
|
}
|
|
|
|
/**
|
|
* Deletes a message
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#delete-message}
|
|
* @param channelId - The id of the channel the message is in
|
|
* @param messageId - The id of the message to delete
|
|
* @param reason - The reason for deleting the message
|
|
*/
|
|
public async deleteMessage(channelId: Snowflake, messageId: Snowflake, reason?: string) {
|
|
await this.rest.delete(Routes.channelMessage(channelId, messageId), { reason });
|
|
}
|
|
|
|
/**
|
|
* Bulk deletes messages
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#bulk-delete-messages}
|
|
* @param channelId - The id of the channel the messages are in
|
|
* @param messageIds - The ids of the messages to delete
|
|
*/
|
|
public async bulkDeleteMessages(channelId: Snowflake, messageIds: Snowflake[], reason?: string): Promise<void> {
|
|
await this.rest.post(Routes.channelBulkDelete(channelId), { reason, body: { messages: messageIds } });
|
|
}
|
|
|
|
/**
|
|
* Fetches a message
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#get-channel-message}
|
|
* @param channelId - The id of the channel the message is in
|
|
* @param messageId - The id of the message to fetch
|
|
*/
|
|
public async getMessage(channelId: Snowflake, messageId: Snowflake) {
|
|
return this.rest.get(Routes.channelMessage(channelId, messageId)) as Promise<RESTGetAPIChannelMessageResult>;
|
|
}
|
|
|
|
/**
|
|
* Crossposts a message
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#crosspost-message}
|
|
* @param channelId - The id of the channel the message is in
|
|
* @param messageId - The id of the message to crosspost
|
|
*/
|
|
public async crosspostMessage(channelId: Snowflake, messageId: Snowflake) {
|
|
return this.rest.post(
|
|
Routes.channelMessageCrosspost(channelId, messageId),
|
|
) as Promise<RESTPostAPIChannelMessageCrosspostResult>;
|
|
}
|
|
|
|
/**
|
|
* Unpins a message in a channel
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#unpin-message}
|
|
* @param channelId - The id of the channel to unpin the message in
|
|
* @param messageId - The id of the message to unpin
|
|
* @param reason - The reason for unpinning the message
|
|
*/
|
|
public async unpinMessage(channelId: Snowflake, messageId: Snowflake, reason?: string) {
|
|
await this.rest.delete(Routes.channelPin(channelId, messageId), { reason });
|
|
}
|
|
|
|
/**
|
|
* Follows an announcement channel
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#follow-announcement-channel}
|
|
* @param channelId - The id of the announcement channel to follow
|
|
* @param webhookChannelId - The id of the webhook channel to follow the announcements in
|
|
*/
|
|
public async followAnnouncements(channelId: Snowflake, webhookChannelId: Snowflake) {
|
|
return this.rest.post(Routes.channelFollowers(channelId), {
|
|
body: { webhook_channel_id: webhookChannelId },
|
|
}) as Promise<RESTPostAPIChannelFollowersResult>;
|
|
}
|
|
|
|
/**
|
|
* Creates a new invite for a channel
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#create-channel-invite}
|
|
* @param channelId - The id of the channel to create an invite for
|
|
* @param data - The data to use when creating the invite
|
|
*/
|
|
public async createInvite(channelId: Snowflake, data: RESTPostAPIChannelInviteJSONBody, reason?: string) {
|
|
return this.rest.post(Routes.channelInvites(channelId), {
|
|
reason,
|
|
body: data,
|
|
}) as Promise<RESTPostAPIChannelInviteResult>;
|
|
}
|
|
|
|
/**
|
|
* Fetches the invites of a channel
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#get-channel-invites}
|
|
* @param channelId - The id of the channel to fetch invites from
|
|
*/
|
|
public async getInvites(channelId: Snowflake) {
|
|
return this.rest.get(Routes.channelInvites(channelId)) as Promise<RESTGetAPIChannelInvitesResult>;
|
|
}
|
|
|
|
/**
|
|
* Fetches the archived threads of a channel
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#list-public-archived-threads}
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#list-private-archived-threads}
|
|
* @param channelId - The id of the channel to fetch archived threads from
|
|
* @param archivedStatus - The archived status of the threads to fetch
|
|
* @param options - The options to use when fetching archived threads
|
|
*/
|
|
public async getArchivedThreads(
|
|
channelId: Snowflake,
|
|
archivedStatus: 'private' | 'public',
|
|
options: RESTGetAPIChannelThreadsArchivedQuery = {},
|
|
) {
|
|
return this.rest.get(Routes.channelThreads(channelId, archivedStatus), {
|
|
query: makeURLSearchParams(options),
|
|
}) as Promise<RESTGetAPIChannelUsersThreadsArchivedResult>;
|
|
}
|
|
|
|
/**
|
|
* Fetches the private joined archived threads of a channel
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/channel#list-joined-private-archived-threads}
|
|
* @param channelId - The id of the channel to fetch joined archived threads from
|
|
* @param options - The options to use when fetching joined archived threads
|
|
*/
|
|
public async getJoinedPrivateArchivedThreads(
|
|
channelId: Snowflake,
|
|
options: RESTGetAPIChannelThreadsArchivedQuery = {},
|
|
) {
|
|
return this.rest.get(Routes.channelJoinedArchivedThreads(channelId), {
|
|
query: makeURLSearchParams(options),
|
|
}) as Promise<RESTGetAPIChannelUsersThreadsArchivedResult>;
|
|
}
|
|
|
|
/**
|
|
* Fetches the webhooks of a channel
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/resources/webhook#get-channel-webhooks}
|
|
* @param id - The id of the channel
|
|
*/
|
|
public async getWebhooks(id: Snowflake) {
|
|
return this.rest.get(Routes.channelWebhooks(id)) as Promise<RESTGetAPIChannelWebhooksResult>;
|
|
}
|
|
}
|